3 """ Display information about package(s) (suite, version, etc.) """
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 James Troup <james@nocrew.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 ################################################################################
22 # <aj> ooo, elmo has "special powers"
23 # <neuro> ooo, does he have lasers that shoot out of his eyes?
25 # <aj> maybe he can turn invisible? that'd sure help with improved transparency!
27 ################################################################################
31 from daklib import database
32 from daklib import utils
34 ################################################################################
39 ################################################################################
41 def usage (exit_code=0):
42 print """Usage: dak ls [OPTION] PACKAGE[...]
43 Display information about PACKAGE(s).
45 -a, --architecture=ARCH only show info for ARCH(s)
46 -b, --binary-type=TYPE only show info for binary TYPE
47 -c, --component=COMPONENT only show info for COMPONENT(s)
48 -g, --greaterorequal show buildd 'dep-wait pkg >= {highest version}' info
49 -G, --greaterthan show buildd 'dep-wait pkg >> {highest version}' info
50 -h, --help show this help and exit
51 -r, --regex treat PACKAGE as a regex
52 -s, --suite=SUITE only show info for this suite
53 -S, --source-and-binary show info for the binary children of source pkgs
55 ARCH, COMPONENT and SUITE can be comma (or space) separated lists, e.g.
56 --architecture=m68k,i386"""
59 ################################################################################
64 Cnf = utils.get_conf()
66 Arguments = [('a', "architecture", "Ls::Options::Architecture", "HasArg"),
67 ('b', "binarytype", "Ls::Options::BinaryType", "HasArg"),
68 ('c', "component", "Ls::Options::Component", "HasArg"),
69 ('f', "format", "Ls::Options::Format", "HasArg"),
70 ('g', "greaterorequal", "Ls::Options::GreaterOrEqual"),
71 ('G', "greaterthan", "Ls::Options::GreaterThan"),
72 ('r', "regex", "Ls::Options::Regex"),
73 ('s', "suite", "Ls::Options::Suite", "HasArg"),
74 ('S', "source-and-binary", "Ls::Options::Source-And-Binary"),
75 ('h', "help", "Ls::Options::Help")]
76 for i in [ "architecture", "binarytype", "component", "format",
77 "greaterorequal", "greaterthan", "regex", "suite",
78 "source-and-binary", "help" ]:
79 if not Cnf.has_key("Ls::Options::%s" % (i)):
80 Cnf["Ls::Options::%s" % (i)] = ""
82 packages = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv)
83 Options = Cnf.SubTree("Ls::Options")
88 utils.fubar("need at least one package name as an argument.")
90 projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]))
91 database.init(Cnf, projectB)
93 # If cron.daily is running; warn the user that our output might seem strange
94 if os.path.exists(os.path.join(Cnf["Dir::Root"], "Archive_Maintenance_In_Progress")):
95 utils.warn("Archive maintenance is in progress; database inconsistencies are possible.")
97 # Handle buildd maintenance helper options
98 if Options["GreaterOrEqual"] or Options["GreaterThan"]:
99 if Options["GreaterOrEqual"] and Options["GreaterThan"]:
100 utils.fubar("-g/--greaterorequal and -G/--greaterthan are mutually exclusive.")
101 if not Options["Suite"]:
102 Options["Suite"] = "unstable"
104 # Parse -a/--architecture, -c/--component and -s/--suite
105 (con_suites, con_architectures, con_components, check_source) = \
106 utils.parse_args(Options)
108 if Options["BinaryType"]:
109 if Options["BinaryType"] != "udeb" and Options["BinaryType"] != "deb":
110 utils.fubar("Invalid binary type. 'udeb' and 'deb' recognised.")
111 con_bintype = "AND b.type = '%s'" % (Options["BinaryType"])
113 if Options["BinaryType"] == "udeb":
119 comparison_operator = "~"
121 comparison_operator = "="
123 if Options["Source-And-Binary"]:
125 for package in packages:
126 q = projectB.query("SELECT DISTINCT b.package FROM binaries b, bin_associations ba, suite su, source s WHERE b.source = s.id AND su.id = ba.suite AND b.id = ba.bin AND s.source %s '%s' %s" % (comparison_operator, package, con_suites))
127 new_packages.extend([ i[0] for i in q.getresult() ])
128 if package not in new_packages:
129 new_packages.append(package)
130 packages = new_packages
133 for package in packages:
134 q = projectB.query("""
135 SELECT b.package, b.version, a.arch_string, su.suite_name, c.name, m.name
136 FROM binaries b, architecture a, suite su, bin_associations ba,
137 files f, location l, component c, maintainer m
138 WHERE b.package %s '%s' AND a.id = b.architecture AND su.id = ba.suite
139 AND b.id = ba.bin AND b.file = f.id AND f.location = l.id
140 AND l.component = c.id AND b.maintainer = m.id %s %s %s
141 """ % (comparison_operator, package, con_suites, con_architectures, con_bintype))
144 q = projectB.query("""
145 SELECT s.source, s.version, 'source', su.suite_name, c.name, m.name
146 FROM source s, suite su, src_associations sa, files f, location l,
147 component c, maintainer m
148 WHERE s.source %s '%s' AND su.id = sa.suite AND s.id = sa.source
149 AND s.file = f.id AND f.location = l.id AND l.component = c.id
150 AND s.maintainer = m.id %s
151 """ % (comparison_operator, package, con_suites))
152 ql.extend(q.getresult())
157 (pkg, version, architecture, suite, component, maintainer) = i
158 if component != "main":
159 suite = "%s/%s" % (suite, component)
160 if not d.has_key(pkg):
162 highver.setdefault(pkg,"")
163 if not d[pkg].has_key(version):
165 if apt_pkg.VersionCompare(version, highver[pkg]) > 0:
166 highver[pkg] = version
167 if not d[pkg][version].has_key(suite):
168 d[pkg][version][suite] = []
169 d[pkg][version][suite].append(architecture)
174 versions = d[pkg].keys()
175 versions.sort(apt_pkg.VersionCompare)
176 for version in versions:
177 suites = d[pkg][version].keys()
180 arches = d[pkg][version][suite]
181 arches.sort(utils.arch_compare_sw)
182 if Options["Format"] == "": #normal
183 sys.stdout.write("%10s | %10s | %13s | " % (pkg, version, suite))
184 sys.stdout.write(", ".join(arches))
185 sys.stdout.write('\n')
186 elif Options["Format"] in [ "control-suite", "heidi" ]:
188 sys.stdout.write("%s %s %s\n" % (pkg, version, arch))
189 if Options["GreaterOrEqual"]:
190 print "\n%s (>= %s)" % (pkg, highver[pkg])
191 if Options["GreaterThan"]:
192 print "\n%s (>> %s)" % (pkg, highver[pkg])
197 #######################################################################################
199 if __name__ == '__main__':