annotate bin/treepkgbuilder.py @ 213:98c5aab790bb

Add --bind-mount option to bin/treepkgbuilder.py's login command and a corresponding parameter to the login method of the PBuilder class
author Bernhard Herzog <bh@intevation.de>
date Fri, 28 Nov 2008 15:36:10 +0000
parents 63f73bb9c459
children f4a636ed5d07
rev   line source
177
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
1 #! /usr/bin/python2.4
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
2 # Copyright (C) 2007, 2008 by Intevation GmbH
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
3 # Authors:
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
4 # Bernhard Herzog <bh@intevation.de>
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
5 #
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
6 # This program is free software under the GPL (>=v2)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
7 # Read the file COPYING coming with the software for details.
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
8
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
9 """Usage: treepkgbuilder COMMAND [options]
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
10
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
11 Manage the pbuilder environment for a tree packager installation. The
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
12 pbuilder settings are taken from the configuration file, either the
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
13 default treepkg.cfg or the one given with the --config-file option.
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
14 Also, this script assumes that there is only one pbuilder setting for
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
15 all packagers. Use treepkgbuilder COMMAND --help for more details about
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
16 the commands.
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
17 """
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
18
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
19 import sys
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
20
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
21 import treepkgcmd
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
22 from treepkg.options import create_parser
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
23 from treepkg.packager import create_package_track, PackagerGroup
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
24 from treepkg.readconfig import read_config
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
25
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
26
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
27 class Command(object):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
28
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
29 names = ()
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
30
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
31 def __init__(self, arguments):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
32 parser = self.create_parser()
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
33 self.opts, self.rest = parser.parse_args(arguments)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
34
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
35 def create_parser(self):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
36 return create_parser()
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
37
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
38 def read_config(self):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
39 self.treepkg_opts, self.packager_opts \
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
40 = read_config(self.opts.config_file)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
41
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
42 def get_builder(self):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
43 self.read_config()
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
44 group = PackagerGroup([create_package_track(**opts)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
45 for opts in self.packager_opts],
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
46 **self.treepkg_opts)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
47 track = group.get_package_tracks()[0]
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
48 return track.builder
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
49
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
50
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
51
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
52 class InitCommand(Command):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
53
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
54 names = ("init",)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
55
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
56 def __init__(self, arguments):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
57 super(InitCommand, self).__init__(arguments)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
58 if self.opts.mirrorsite is None:
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
59 print >>sys.stderr, "Missing required option --mirrorsite"
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
60 sys.exit(1)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
61
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
62 def create_parser(self):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
63 parser = super(InitCommand, self).create_parser()
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
64 parser.set_defaults(distribution="etch")
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
65 parser.add_option("--mirrorsite",
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
66 help=("The debian mirror site"
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
67 " (pbuilder MIRRORSITE setting). Required."))
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
68 parser.add_option("--othermirror",
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
69 help=("Extra contents of the OTHERMIRROR setting."
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
70 " See the pbuilder documentation for the"
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
71 " format."))
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
72 parser.add_option("--distribution",
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
73 help=("The debian distribution for the pbuilder"
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
74 " chroot. Default is etch."))
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
75 return parser
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
76
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
77 def run(self):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
78 builder = self.get_builder()
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
79 builder.init_pbuilder(distribution=self.opts.distribution,
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
80 mirrorsite=self.opts.mirrorsite,
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
81 extramirrors=self.opts.othermirror)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
82
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
83
192
eaadf5350a1a Add the add-binaries command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 184
diff changeset
84 class AddBinariesCommand(Command):
eaadf5350a1a Add the add-binaries command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 184
diff changeset
85
eaadf5350a1a Add the add-binaries command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 184
diff changeset
86 names = ("add-binaries",)
eaadf5350a1a Add the add-binaries command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 184
diff changeset
87
eaadf5350a1a Add the add-binaries command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 184
diff changeset
88 def run(self):
eaadf5350a1a Add the add-binaries command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 184
diff changeset
89 builder = self.get_builder()
eaadf5350a1a Add the add-binaries command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 184
diff changeset
90 builder.add_binaries_to_extra_pkg(self.rest)
eaadf5350a1a Add the add-binaries command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 184
diff changeset
91
eaadf5350a1a Add the add-binaries command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 184
diff changeset
92
177
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
93 class UpdateCommand(Command):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
94
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
95 names = ("update",)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
96
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
97 def run(self):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
98 builder = self.get_builder()
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
99 builder.update(suppress_output=False, log_info=False)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
100
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
101
184
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
102 class AddKeyCommand(Command):
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
103
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
104 names = ("addkey", "add-key")
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
105
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
106 def __init__(self, arguments):
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
107 super(AddKeyCommand, self).__init__(arguments)
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
108 if not self.opts.key_id:
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
109 print >>sys.stderr, "No key id given"
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
110 sys.exit(1)
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
111
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
112 def create_parser(self):
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
113 parser = super(AddKeyCommand, self).create_parser()
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
114 parser.add_option("--key-id",
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
115 help=("The id of the key to add. Required."))
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
116 return parser
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
117
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
118 def run(self):
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
119 builder = self.get_builder()
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
120 builder.add_apt_key(self.opts.key_id)
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
121
83c77307ffb1 Add the addkey command to bin/treepkgbuilder.py and a corresponding
Bernhard Herzog <bh@intevation.de>
parents: 177
diff changeset
122
201
6624e731e218 Add login command to bin/treepkgbuilder.py and corresponding method in
Bernhard Herzog <bh@intevation.de>
parents: 192
diff changeset
123 class LoginCommand(Command):
6624e731e218 Add login command to bin/treepkgbuilder.py and corresponding method in
Bernhard Herzog <bh@intevation.de>
parents: 192
diff changeset
124
6624e731e218 Add login command to bin/treepkgbuilder.py and corresponding method in
Bernhard Herzog <bh@intevation.de>
parents: 192
diff changeset
125 names = ("login",)
6624e731e218 Add login command to bin/treepkgbuilder.py and corresponding method in
Bernhard Herzog <bh@intevation.de>
parents: 192
diff changeset
126
213
98c5aab790bb Add --bind-mount option to bin/treepkgbuilder.py's login command and a
Bernhard Herzog <bh@intevation.de>
parents: 210
diff changeset
127 def create_parser(self):
98c5aab790bb Add --bind-mount option to bin/treepkgbuilder.py's login command and a
Bernhard Herzog <bh@intevation.de>
parents: 210
diff changeset
128 parser = super(LoginCommand, self).create_parser()
98c5aab790bb Add --bind-mount option to bin/treepkgbuilder.py's login command and a
Bernhard Herzog <bh@intevation.de>
parents: 210
diff changeset
129 parser.set_defaults(bind_mount=[])
98c5aab790bb Add --bind-mount option to bin/treepkgbuilder.py's login command and a
Bernhard Herzog <bh@intevation.de>
parents: 210
diff changeset
130 parser.add_option("--bind-mount", action="append",
98c5aab790bb Add --bind-mount option to bin/treepkgbuilder.py's login command and a
Bernhard Herzog <bh@intevation.de>
parents: 210
diff changeset
131 help=("Directories to bind-mount in the chroot"
98c5aab790bb Add --bind-mount option to bin/treepkgbuilder.py's login command and a
Bernhard Herzog <bh@intevation.de>
parents: 210
diff changeset
132 " environment."))
98c5aab790bb Add --bind-mount option to bin/treepkgbuilder.py's login command and a
Bernhard Herzog <bh@intevation.de>
parents: 210
diff changeset
133 return parser
98c5aab790bb Add --bind-mount option to bin/treepkgbuilder.py's login command and a
Bernhard Herzog <bh@intevation.de>
parents: 210
diff changeset
134
98c5aab790bb Add --bind-mount option to bin/treepkgbuilder.py's login command and a
Bernhard Herzog <bh@intevation.de>
parents: 210
diff changeset
135
201
6624e731e218 Add login command to bin/treepkgbuilder.py and corresponding method in
Bernhard Herzog <bh@intevation.de>
parents: 192
diff changeset
136 def run(self):
213
98c5aab790bb Add --bind-mount option to bin/treepkgbuilder.py's login command and a
Bernhard Herzog <bh@intevation.de>
parents: 210
diff changeset
137 self.get_builder().login(bindmounts=self.opts.bind_mount)
201
6624e731e218 Add login command to bin/treepkgbuilder.py and corresponding method in
Bernhard Herzog <bh@intevation.de>
parents: 192
diff changeset
138
6624e731e218 Add login command to bin/treepkgbuilder.py and corresponding method in
Bernhard Herzog <bh@intevation.de>
parents: 192
diff changeset
139
210
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
140 class BuildCommand(Command):
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
141
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
142 names = ("build",)
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
143
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
144 def create_parser(self):
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
145 parser = super(BuildCommand, self).create_parser()
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
146 parser.add_option("--logfile", help=("The file for the build log."))
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
147 parser.add_option("--binary-dir",
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
148 help=("Directory for the binary packages."))
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
149 return parser
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
150
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
151 def run(self):
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
152 if len(self.rest) != 1:
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
153 print >>sys.stderr, "Exactly one .dsc file must be specified"
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
154 sys.exit(1)
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
155 dsc_file = self.rest[0]
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
156 self.get_builder().build(dsc_file, binary_dir=self.opts.binary_dir,
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
157 logfile=self.opts.logfile)
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
158
63f73bb9c459 Add build command to bin/treepkgbuilder.py
Bernhard Herzog <bh@intevation.de>
parents: 201
diff changeset
159
177
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
160 class HelpCommand(Command):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
161
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
162 names = ("help", "--help", "-h")
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
163
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
164 def run(self):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
165 print __doc__.rstrip()
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
166 print "Supported commands:"
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
167 commands = sorted((cmd for cmd in iter_commands() if cmd.names),
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
168 key=lambda cmd: cmd.names[0])
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
169 for cmd in commands:
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
170 print " ", " ".join(cmd.names)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
171
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
172
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
173 def iter_commands():
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
174 for key, obj in globals().items():
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
175 if key.endswith("Command"):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
176 yield obj
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
177
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
178 def get_command_class(name):
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
179 for obj in iter_commands():
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
180 if name in obj.names:
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
181 return obj
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
182 return None
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
183
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
184
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
185 def main():
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
186 arguments = sys.argv[1:]
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
187
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
188 if len(arguments) < 1:
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
189 print >>sys.stderr, "Missing command"
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
190 sys.exit(1)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
191
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
192 command_name = arguments[0]
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
193 arguments = arguments[1:]
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
194
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
195 command_class = get_command_class(command_name)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
196 if command_class is None:
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
197 print >>sys.stderr, "Unknown command %r" % command_name
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
198 sys.exit(1)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
199
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
200 command = command_class(arguments)
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
201 command.run()
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
202
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
203
df7498d0bd9d Add bin/treepkgbuilder.py, a script to manage treepkg's pbuilder instance
Bernhard Herzog <bh@intevation.de>
parents:
diff changeset
204 main()
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)