* Change the default for NORECOMMENDS to 1 for consistency with

NOSUGGESTS. Closes: #598196
* Documentation patches
This commit is contained in:
Steve McIntyre 2010-09-29 13:13:04 +00:00
parent 9210fca346
commit f3928178e9
4 changed files with 21 additions and 18 deletions

18
CONF.sh
View File

@ -181,8 +181,8 @@ export ISOLINUX=1
# them too
export MAX_PKG_SIZE=600000000
# uncoment this to make build_all.sh try to build a simple CD image if
# the proper official CD run does not work
# Should build_all.sh try to build a simple CD image if the proper official
# CD run does not work?
ATTEMPT_FALLBACK=yes
# Set your disk type here. Known types are:
@ -205,7 +205,7 @@ export DISKTYPE=CD
export TASK_LANGLIST=tasksel_d-i.languages
# Extra variants to enable. See docs/README.variants for more information.
# export VARIANTS=
export VARIANTS=
# We don't want certain packages to take up space on CD1...
#export EXCLUDE1=exclude
@ -216,12 +216,12 @@ export TASK_LANGLIST=tasksel_d-i.languages
# excluded completely. The same goes for packages listed in EXCLUDE.
# Set this if the recommended packages should be skipped when adding
# package on the CD. The default is 'false'.
export NORECOMMENDS=1
# package on the CD. The default is 'true'.
# export NORECOMMENDS=1
# Set this if the suggested packages should be skipped when adding
# package on the CD. The default is 'true'.
#export NOSUGGESTS=1
# export NOSUGGESTS=1
# Set to 1 to generate MD5/SHA1/SHA256/SHA512 sums for generated images
export IMAGESUMS=1
@ -357,14 +357,14 @@ done
# If so we will link to them on the web site.
export OMIT_RELEASE_NOTES=1
# Set this to override the default location
#export RELEASE_NOTES_LOCATION="http://www.debian.org/releases/$CODENAME"
# Set to 1 to not include the doc/tools directories on CD1
# Useful to save space and avoids failures if you have a mirror
# without those directories.
#export OMIT_DOC_TOOLS=1
# Set this to override the default location
#export RELEASE_NOTES_LOCATION="http://www.debian.org/releases/$CODENAME"
case "$OFFICIAL" in
"Official")
export OFFICIAL_VAL=2

16
debian/CONF.sh vendored
View File

@ -181,8 +181,8 @@ export ISOLINUX=1
# them too
export MAX_PKG_SIZE=600000000
# uncoment this to make build_all.sh try to build a simple CD image if
# the proper official CD run does not work
# Should build_all.sh try to build a simple CD image if the proper official
# CD run does not work?
ATTEMPT_FALLBACK=yes
# Set your disk type here. Known types are:
@ -216,12 +216,12 @@ export VARIANTS=
# excluded completely. The same goes for packages listed in EXCLUDE.
# Set this if the recommended packages should be skipped when adding
# package on the CD. The default is 'false'.
export NORECOMMENDS=1
# package on the CD. The default is 'true'.
# export NORECOMMENDS=1
# Set this if the suggested packages should be skipped when adding
# package on the CD. The default is 'true'.
#export NOSUGGESTS=1
# export NOSUGGESTS=1
# Set to 1 to generate MD5/SHA1/SHA256/SHA512 sums for generated images
export IMAGESUMS=1
@ -357,14 +357,14 @@ done
# If so we will link to them on the web site.
export OMIT_RELEASE_NOTES=1
# Set this to override the default location
#export RELEASE_NOTES_LOCATION="http://www.debian.org/releases/$CODENAME"
# Set to 1 to not include the doc/tools directories on CD1
# Useful to save space and avoids failures if you have a mirror
# without those directories.
#export OMIT_DOC_TOOLS=1
# Set this to override the default location
#export RELEASE_NOTES_LOCATION="http://www.debian.org/releases/$CODENAME"
case "$OFFICIAL" in
"Official")
export OFFICIAL_VAL=2

3
debian/changelog vendored
View File

@ -18,6 +18,9 @@ debian-cd (3.1.4) unstable; urgency=low
* Minor tweaks to Debian packaging to make lintian happy.
Closes: #592932
* Minor whitespace/wording fixes for the README file. Closes: #592933
* Change the default for NORECOMMENDS to 1 for consistency with
NOSUGGESTS. Closes: #598196
* Documentation patches
[ Steve McIntyre ]
* Rename log.add_packages to add_packages.log

View File

@ -21,7 +21,7 @@ my $extranonfree = $ENV{'EXTRANONFREE'} || 0;
my $force_firmware = $ENV{'FORCE_FIRMWARE'} || 0;
my $local = $ENV{'LOCAL'} || 0;
my $complete = $ENV{'COMPLETE'} || 0;
my $norecommends = $ENV{'NORECOMMENDS'} || 0;
my $norecommends = $ENV{'NORECOMMENDS'} || 1;
my $nosuggests = $ENV{'NOSUGGESTS'} || 1;
my $apt = "$ENV{'BASEDIR'}/tools/apt-selection";