summaryrefslogtreecommitdiffstats
path: root/release/scripts
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2005-03-21 20:03:56 +0000
committerjhb <jhb@FreeBSD.org>2005-03-21 20:03:56 +0000
commitfd8feeef9c59e304272dae5c114de407a43b2a2c (patch)
tree739a9cf08816b646a1ba8c2b38d3881ae8112a9f /release/scripts
parentb2a25b8a9e8bdd03beb82b6e50ec5c7c26373b47 (diff)
downloadFreeBSD-src-fd8feeef9c59e304272dae5c114de407a43b2a2c.zip
FreeBSD-src-fd8feeef9c59e304272dae5c114de407a43b2a2c.tar.gz
- Use the extend method of list objects to append a new list rather than a
bunch of append calls when adding more ports to an existing list. - Remove the compatXY packages from disc1 as they are only intended for use on 5.x (6.x doesn't have them as dists anymore) and on 5.x they aren't packages but are old-fashioned distribution tarballs anyway.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/package-split.py17
1 files changed, 6 insertions, 11 deletions
diff --git a/release/scripts/package-split.py b/release/scripts/package-split.py
index b208ef9..90a6f91 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
OpenPOWER on IntegriCloud