2 # Copyright (C) 2009, Thomas Leonard
3 # See the README file for details, or visit http://0install.net.
5 from optparse
import OptionParser
8 zi
= os
.environ
.get("0RELEASE_ZEROINSTALL", None)
10 # NOT the first element... that's us!
11 # (and we want our setup.py, not 0install's)
12 sys
.path
.insert(1, zi
)
13 from zeroinstall
import SafeException
14 from zeroinstall
.injector
import qdom
18 parser
= OptionParser(usage
= """usage: %prog [options] LOCAL-FEED
20 Run this command from a new empty directory to set things up.""")
22 parser
.add_option("", "--builders", help="comma-separated list of builders for binaries", metavar
='LIST')
23 parser
.add_option("", "--build-slave", help="compile a binary a source release candidate", action
='store_true')
24 parser
.add_option("-k", "--key", help="GPG key to use for signing", action
='store', metavar
='KEYID')
25 parser
.add_option("-v", "--verbose", help="more verbose output", action
='count')
26 parser
.add_option("-r", "--release", help="make a new release", action
='store_true')
27 parser
.add_option("", "--archive-dir-public-url", help="remote directory for releases", metavar
='URL')
28 parser
.add_option("", "--master-feed-file", help="local file to extend with new releases", metavar
='PATH')
29 parser
.add_option("", "--archive-upload-command", help="shell command to upload releases", metavar
='COMMAND')
30 parser
.add_option("", "--master-feed-upload-command", help="shell command to upload feed", metavar
='COMMAND')
31 parser
.add_option("", "--public-scm-repository", help="the name of the repository to push to", metavar
='REPOS')
32 parser
.add_option("-V", "--version", help="display version information", action
='store_true')
34 (options
, args
) = parser
.parse_args()
37 print "0release (zero-install) " + version
38 print "Copyright (C) 2009 Thomas Leonard"
39 print "This program comes with ABSOLUTELY NO WARRANTY,"
40 print "to the extent permitted by law."
41 print "You may redistribute copies of this program"
42 print "under the terms of the GNU General Public License."
43 print "For more information about these matters, see the file named COPYING."
48 logger
= logging
.getLogger()
49 if options
.verbose
== 1:
50 logger
.setLevel(logging
.INFO
)
52 logger
.setLevel(logging
.DEBUG
)
54 if options
.build_slave
:
58 src_feed
, archive_file
, archive_dir_public_url
, target_feed
= args
60 compile.build_slave(src_feed
, archive_file
, archive_dir_public_url
, target_feed
)
67 local_feed_path
= os
.path
.abspath(args
[0])
70 if not os
.path
.exists(local_feed_path
):
71 raise SafeException("Local feed file '%s' does not exist" % local_feed_path
)
73 with
open(local_feed_path
, 'rb') as stream
:
74 root
= qdom
.parse(stream
)
77 feed
= support
.load_feed(local_feed_path
)
81 release
.do_release(feed
, options
)
84 setup
.init_releases_directory(feed
)
85 except KeyboardInterrupt, ex
:
86 print >>sys
.stderr
, "Interrupted"
89 if options
.verbose
: raise
90 print >>sys
.stderr
, str(ex
)
93 if options
.verbose
: raise
94 print >>sys
.stderr
, str(ex
)
96 except SafeException
, ex
:
97 if options
.verbose
: raise
98 print >>sys
.stderr
, str(ex
)