diff options
author | Richard Kreuter <richard@10gen.com> | 2010-04-29 16:54:02 -0400 |
---|---|---|
committer | Richard Kreuter <richard@10gen.com> | 2010-04-29 16:54:02 -0400 |
commit | e812c222710dc0eaa138c7d0f6f1f2959b3eea15 (patch) | |
tree | 114d4d9e8875912045e439a8c912a4129e64a404 /buildscripts | |
parent | 95025562ff8c94b536fe5cac2e8b7ffa62d4f3a0 (diff) | |
download | mongo-e812c222710dc0eaa138c7d0f6f1f2959b3eea15.tar.gz |
Tweaked some comments in makedist.py Partially resolves SERVER-534.
Diffstat (limited to 'buildscripts')
-rw-r--r-- | buildscripts/makedist.py | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/buildscripts/makedist.py b/buildscripts/makedist.py index 6f146710573..5f92a30871a 100644 --- a/buildscripts/makedist.py +++ b/buildscripts/makedist.py @@ -1,6 +1,7 @@ #!/usr/bin/env python -# makedist.py: make a distro package (on an EC2 instance) +# makedist.py: make a distro package (on an EC2 (or sometimes +# RackSpace) instance) # For ease of use, put a file called settings.py someplace in your # sys.path, containing something like the following: @@ -855,11 +856,12 @@ def processArguments(): MONGO-VERSION-SPEC has the syntax Commit(:Pkg-Name-Suffix(:Pkg-Version)). If Commit starts with an 'r', -build from a tagged release; if Commit starts with a 'v', build from -the HEAD of a version branch; otherwise, build whatever git commit is -identified by Commit. Pkg-Name-Suffix gets appended to the package -name, and defaults to "-stable" and "-unstable" if Commit looks like -it designates a stable or unstable release/branch, respectively. +build from a tagged release; if Commit starts with an 'n', package up +a nightly build; if Commit starts with a 'v', build from the HEAD of a +version branch; otherwise, build whatever git commit is identified by +Commit. Pkg-Name-Suffix gets appended to the package name, and +defaults to "-stable" and "-unstable" if Commit looks like it +designates a stable or unstable release/branch, respectively. Pkg-Version is used as the package version, and defaults to YYYYMMDD. Examples: @@ -904,4 +906,5 @@ if __name__ == "__main__": # Examples: -# ./makedist.py /tmp/ubuntu ubuntu 8.10 x86_64 HEAD:-snapshot +# ./makedist.py /tmp/ubuntu ubuntu 8.10 x86_64 HEAD:-snapshot,v1.4:-stable,v1.5:-unstable +# ./makedist.py /tmp/ubuntu ubuntu 8.10 x86_64 nlatest:-snapshot,n1.4.2:-stable,n1.5.0:-unstable |