Created
December 9, 2011 02:20
-
-
Save springmeyer/1449821 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/debian-nightlies/nightly-build.sh b/debian-nightlies/nightly-build.sh | |
index 50966b7..4dac566 100755 | |
--- a/debian-nightlies/nightly-build.sh | |
+++ b/debian-nightlies/nightly-build.sh | |
@@ -11,30 +11,34 @@ DEST="mapnik" # the launchpad account name | |
GPGKEY=80B52FF1 | |
DEBFULLNAME="Robert Coup (Mapnik Nightly Builds)" | |
DEBEMAIL="robert+mapniknightly@coup.net.nz" | |
+#GPGKEY=89DBC525 | |
+#DEBFULLNAME="Dane Springmeyer (Mapnik Nightly Builds)" | |
+#DEBEMAIL="dane.springmeyer@gmail.com" | |
+ | |
# Branches to build | |
# branch keys here should match the build directory structure (./foo/svn/, ./foo/debian/) | |
# branch values are the latest official release from the branch | |
declare -A BRANCHES | |
-BRANCHES["master"]="2.0.0" | |
-BRANCHES["2.0.x"]="2.0.0" | |
-BRANCHES["0.7.2-dev"]="0.7.2" | |
+BRANCHES["master"]="2.1.0~dev" | |
+BRANCHES["2.0.x"]="2.0.1~dev" | |
+BRANCHES["0.7.x"]="0.7.2~dev" | |
# PPA names, keys are branches | |
declare -A PPAS | |
PPAS["master"]="ppa:$DEST/nightly-trunk" | |
-PPAS["0.7.2-dev"]="ppa:$DEST/nightly-0.7" | |
+PPAS["0.7.x"]="ppa:$DEST/nightly-0.7" | |
PPAS["2.0.x"]="ppa:$DEST/nightly-2.0" | |
# Package names, keys are branches | |
declare -A PACKAGES | |
PACKAGES["master"]="mapnik" | |
PACKAGES["2.0.x"]="mapnik" | |
-PACKAGES["0.7.2-dev"]="mapnik" | |
+PACKAGES["0.7.x"]="mapnik" | |
# Ubuntu Distributions to build (space-separated) | |
# TODO: different dists per branch? | |
-DISTS="lucid maverick natty oneiric" | |
+DISTS="lucid maverick natty oneiric precise" | |
######### Shouldn't need to edit anything past here ######### | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment