]> CyberLeo.Net >> Repos - FreeBSD/releng/8.2.git/blob - release/scripts/package-split.py
Adjust package set for 8.2-RELEASE. Packages keep being removed due
[FreeBSD/releng/8.2.git] / release / scripts / package-split.py
1 #!/usr/local/bin/python
2 #
3 # This script generates a master INDEX file for the CD images built by the
4 # FreeBSD release engineers.  Each disc is given a list of desired packages.
5 # Dependencies of these packages are placed on either the same disc or an
6 # earlier disc.  The resulting master INDEX file is then written out.
7 #
8 # Usage: package-split.py <INDEX> <master INDEX>
9 #
10 # $FreeBSD$
11
12 import os
13 import sys
14
15 try:
16     arch = os.environ["PKG_ARCH"]
17 except:
18     arch = os.uname()[4]
19 print "Using arch %s" % (arch)
20
21 if 'PKG_VERBOSE' in os.environ:
22     verbose = 1
23 else:
24     verbose = 0
25
26 if 'PKG_DVD' in os.environ:
27     doing_dvd = 1
28 else:
29     doing_dvd = 0
30
31 # List of packages for disc1.
32 def disc1_packages():
33     pkgs = ['misc/freebsd-doc-bn', 
34             'misc/freebsd-doc-da',
35             'misc/freebsd-doc-de',
36             'misc/freebsd-doc-el',
37             'misc/freebsd-doc-en',
38             'misc/freebsd-doc-es',
39             'misc/freebsd-doc-fr',
40             'misc/freebsd-doc-hu',
41             'misc/freebsd-doc-it',
42             'misc/freebsd-doc-ja',
43             'misc/freebsd-doc-mn',
44             'misc/freebsd-doc-nl',
45             'misc/freebsd-doc-pl',
46             'misc/freebsd-doc-pt',
47             'misc/freebsd-doc-ru',
48             'misc/freebsd-doc-sr',
49             'misc/freebsd-doc-tr',
50             'misc/freebsd-doc-zh_cn',
51             'misc/freebsd-doc-zh_tw']
52
53     if doing_dvd:
54         pkgs.extend([ 'archivers/unzip',
55             'lang/perl5.10',
56             'ports-mgmt/p5-FreeBSD-Portindex',
57             'ports-mgmt/portaudit',
58             'ports-mgmt/portmaster',
59             'ports-mgmt/portupgrade',
60             'shells/bash',
61             'shells/zsh',
62             'security/sudo',
63             'x11/gnome2',
64             'x11/kde4',
65             'x11/xorg'])
66     return pkgs
67
68 # The list of desired packages
69 def desired_packages():
70     disc1 = disc1_packages()
71     return [disc1]
72
73 # Suck the entire INDEX file into a two different dictionaries.  The first
74 # dictionary maps port names (origins) to package names.  The second
75 # dictionary maps a package name to a list of its dependent packages.
76 PACKAGE_COL=0
77 ORIGIN_COL=1
78 DEPENDS_COL=8
79
80 def load_index(index):
81     deps = {}
82     pkgs = {}
83     line_num = 1
84     for line in index:
85         fields = line.split('|')
86         name = fields[PACKAGE_COL]
87         if name in deps:
88             sys.stderr.write('%d: Duplicate package %s\n' % (line_num, name))
89             sys.exit(1)
90         origin = fields[ORIGIN_COL].replace('/usr/ports/', '', 1)
91         if origin in pkgs:
92             sys.stderr.write('%d: Duplicate port %s\n' % (line_num, origin))
93             sys.exit(1)
94         deps[name] = fields[DEPENDS_COL].split()
95         pkgs[origin] = name
96         line_num = line_num + 1
97     return (deps, pkgs)
98
99 # Layout the packages on the various CD images.  Here's how it works.  We walk
100 # each disc in the list of discs.  Within each disc we walk the list of ports.
101 # For each port, we add the package name to a dictionary with the value being
102 # the current disc number.  We also add all of the dependent packages.  If
103 # a package is already in the dictionary when we go to add it, we just leave
104 # the dictionary as it is.  This means that each package ends up on the first
105 # disc that either lists it or contains it as a dependency.
106 def layout_discs(discs, pkgs, deps):
107     disc_num = 1
108     layout = {}
109     for disc in discs:
110         for port in disc:
111             if port not in pkgs:
112                 sys.stderr.write('Disc %d: Unable to find package for %s\n' %
113                                  (disc_num, port))
114                 continue
115             pkg = pkgs[port]
116             pkg_list = [pkg] + deps[pkg]
117             for pkg in pkg_list:
118                 if pkg not in layout:
119                     if verbose:
120                         print "--> Adding %s to Disc %d" % (pkg, disc_num)
121                     layout[pkg] = disc_num
122         disc_num = disc_num + 1
123     return layout
124
125 # Generate a master INDEX file based on the generated layout.  The way this
126 # works is that for each INDEX line, we check to see if the package is in the
127 # layout.  If it is, we put that INDEX line into the master INDEX and append
128 # a new field with the disc number to the line.
129 def generate_index(index, layout, master_index):
130     for line in index:
131         pkg = line.split('|')[PACKAGE_COL]
132         if pkg in layout:
133             new_line = '%s|%d\n' % (line.splitlines()[0], layout[pkg])
134             master_index.write(new_line)
135
136 # Verify the command line arguments
137 if len(sys.argv) != 3:
138     sys.stderr.write('Invalid number of arguments\n')
139     sys.stderr.write('Usage: package-split.py <source INDEX> <master INDEX>\n')
140     sys.exit(1)
141
142 print "Loading %s..." % (sys.argv[1])
143 index = file(sys.argv[1])
144 (deps, pkgs) = load_index(index)
145 discs = desired_packages()
146 layout = layout_discs(discs, pkgs, deps)
147 index.seek(0)
148 print "Generating %s..." % (sys.argv[2])
149 master_index = file(sys.argv[2], 'w')
150 generate_index(index, layout, master_index)
151 index.close()
152 master_index.close()