diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2005-03-21 20:03:56 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2005-03-21 20:03:56 +0000 |
| commit | b885fa0e8399a7f3d372e91c703381febd29f31b (patch) | |
| tree | 739a9cf08816b646a1ba8c2b38d3881ae8112a9f /release/scripts | |
| parent | 0dd0e637dcca517753b3c77ea1a9ddd7236789ca (diff) | |
Notes
Diffstat (limited to 'release/scripts')
| -rw-r--r-- | release/scripts/package-split.py | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/release/scripts/package-split.py b/release/scripts/package-split.py index b208ef9f40c1..90a6f910d9dc 100644 --- a/release/scripts/package-split.py +++ b/release/scripts/package-split.py @@ -28,18 +28,13 @@ else: def disc1_packages(): # 5.x only pkgs = ['lang/perl5.8'] - pkgs.append('x11/xorg') - pkgs.append('x11/xorg-manpages') - pkgs.append('devel/imake-6') + pkgs.extend(['x11/xorg', + 'x11/xorg-manpages', + 'devel/imake-6']) if arch == 'alpha': pkgs.append('emulators/osf1_base') elif arch == 'i386': pkgs.append('emulators/linux_base-8') - # 5.x only - if arch == 'i386': - pkgs.append('misc/compat22') - pkgs.append('misc/compat3x') - pkgs.append('misc/compat4x') return pkgs # List of packages for disc2. This includes packages that the X desktop @@ -104,9 +99,9 @@ def disc2_packages(): 'www/apache13-modssl', 'www/apache2'] if arch == 'i386': - pkgs.append('comms/ltmdm') - pkgs.append('print/acroread') - pkgs.append('www/opera') + pkgs.extend(['comms/ltmdm', + 'print/acroread', + 'www/opera']) return pkgs # The list of desired packages |
