1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
#!/usr/bin/python
#
# Paul Nasrat <pnasrat@redhat.com>
# Copyright 2005 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# library public license.
#
# You should have received a copy of the GNU Library Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
import os.path
import glob
import rpm
import rpmUtils
import shutil
import string
import sys
import yum
sys.path.append("/usr/lib/anaconda")
import anaconda_log
import logging
logger = logging.getLogger("anaconda")
handler = logging.StreamHandler()
handler.setLevel(logging.ERROR)
logger.addHandler(handler)
from optparse import OptionParser
from yum.packageSack import PackageSack
from yum.packages import PackageObject
from yuminstall import YumSorter
import iutil
class PackageOrderer(YumSorter):
def __init__(self, arch=None):
YumSorter.__init__(self)
self.arch = arch
self._installed = PackageSack()
def setup(self, fn="/etc/yum.conf", root="/", excludes=[]):
self.doConfigSetup(fn, root, init_plugins = False)
self.conf.cache = 0
# if hasattr(self.repos, 'sqlite'):
# self.repos.sqlite = False
# self.repos._selectSackType()
exclude = self.conf.exclude
exclude.extend(excludes)
self.conf.exclude = exclude
cachedir = yum.misc.getCacheDir()
self.repos.setCacheDir(cachedir)
self.repos.setCache(0)
self.doRepoSetup()
self.doSackSetup(rpmUtils.arch.getArchList(self.arch))
self.doTsSetup()
self.doGroupSetup()
self.repos.populateSack(with='filelists')
def errorlog(self, value, msg):
pass
def filelog(self, value, msg):
pass
def log(self, value, msg):
pass
def getDownloadPkgs(self):
pass
#XXX: sigh
processed = {}
def processTransaction(ds):
# ds.tsInfo.makelists()
# print len(ds.tsInfo.installed)
# import pdb; pdb.set_trace()
for pkgtup in ds.tsInfo.sort():
fname = ds.tsInfo.pkgdict[pkgtup][0].po.returnSimple('relativepath')
fpattern = "%s/%s*" % (toppath, fname.rsplit('.', 2)[0])
printMatchingPkgs(fpattern)
def printMatchingPkgs(fpattern):
global processed
matches = glob.glob(fpattern)
for match in matches:
mname = os.path.basename(match)
if processed.has_key(mname): continue
processed[mname] = True
print mname
def addGroups(ds, groupLst):
ds.initActionTs()
map(ds.selectGroup, filter(lambda x: ds.comps.has_group(x), groupLst))
ds.resolveDeps()
processTransaction(ds)
def createConfig(toppath):
yumconfstr = """
[main]
distroverpkg=redhat-release
gpgcheck=0
reposdir=/dev/null
exclude=*debuginfo*
[anaconda]
name=Anaconda
baseurl=file://%s
enabled=1
""" % (toppath)
try:
(fd, path) = tempfile.mkstemp("", "yum-conf-", toppath)
except (OSError, IOError), e:
print >> sys.stderr, "Error writing to %s" % (toppath,)
sys.exit(1)
os.write(fd, yumconfstr)
os.close(fd)
return path
def usage():
print >> sys.stderr, "pkgorder <toppath> <arch> <productpath>"
print >> sys.stderr, "<arch>: use rpm architecture for tree, eg i686"
if __name__ == "__main__":
import tempfile
parser = OptionParser()
parser.add_option("--debug", action="store_true", dest="debug", default=False)
parser.add_option("--file", action="store", dest="file")
parser.add_option("--product", action="store", dest="productPath", )
parser.add_option("--exclude", action="append", dest="excludeList",
default=[])
(options, args) = parser.parse_args()
if len(args) != 3:
usage()
sys.exit(1)
(toppath, arch, product) = args
config = createConfig(toppath)
# Boo.
if arch == "i386":
arch = "i686"
# print out kernel related packages first
printMatchingPkgs("%s/%s/RPMS/%s" % (toppath, product, "kernel-*"))
testpath = "/tmp/pkgorder-%d" %(os.getpid(),)
os.system("mkdir -p %s/var/lib/rpm" %(testpath,))
ds = PackageOrderer(arch=arch)
ds.setup(fn=config, excludes=options.excludeList, root = testpath)
addGroups(ds, ["Core", "Base", "Text-based Internet"])
addGroups(ds, ["X Window System", "Dialup Networking Support",
"Graphical Internet", "Editors",
"Graphics", "GNOME Desktop Environment", "Sound and Video",
"Printing Support", "Dialup Networking Support"])
addGroups(ds, ["Office/Productivity", "Engineering and Scientific",
"Authoring and Publishing", "Games and Entertainment"])
addGroups(ds, ["Web Server", "FTP Server", "MySQL Database",
"Server Configuration Tools", "DNS Name Server",
"Windows File Server", "Administration Tools"])
addGroups(ds, ["KDE (K Desktop Environment)", "Development Tools",
"GNOME Software Development", "Eclipse",
"Java Development", "KDE Software Development",
"PostgreSQL Database", "Mail Server",
"Legacy Network Server"])
addGroups(ds, ["News Server", "Legacy Software Development"])
#Everthing else but kernels - don't depsolve
for po in ds.pkgSack.returnPackages():
if po.pkgtup not in ds._installed.returnPackages():
if po.name.find("kernel") == -1:
member = ds.tsInfo.addInstall(po)
processTransaction(ds)
os.unlink(config)
shutil.rmtree(testpath)
|