Generate tasks dynamically; separate task files per distro release

All tasks files are moved to ./tasks/<codename> subdirectories so they
can be more easily kept up-to-date with specific distro releases.

Always generate the debian-installer and tasksel tasks dynamically:
- all task files for the desired suite are copied to the working
  directory at the beginning of each build, and are used from there;
- the debian-installer and tasksel tasks are no longer included in
  releases but are always created automatically at build time; this
  means users no longer need to run the generate_di_* scripts or the
  update_tasksel script;
- the popcon task file will remain included as a static file, but plan
  is to add an option to update it automatically for each build; reason
  is that updating it requires network access.

Bump version to 3.1.
This commit is contained in:
Frans Pop 2008-11-13 23:19:30 +00:00
parent ddba48c519
commit 1eac5a9d65
58 changed files with 716 additions and 42766 deletions

10
CONF.sh
View File

@ -186,10 +186,10 @@ export DISKTYPE=CD
#export CUSTOMSIZE=XXXX
# We don't want certain packages to take up space on CD1...
#export EXCLUDE1="$BASEDIR"/tasks/exclude-$CODENAME
#export EXCLUDE1=exclude
# ...but they are okay for other CDs (UNEXCLUDEx == may be included
# on CD x if not already covered)
#export UNEXCLUDE2="$BASEDIR"/tasks/unexclude-CD2-$CODENAME
#export UNEXCLUDE2=unexclude-CD2
# Any packages listed in EXCLUDE but not in any UNEXCLUDE will be
# excluded completely.
@ -298,10 +298,10 @@ done
# and if you're not using build.sh then also make sure you set TASK
# appropriately here)
# INSTALLER_CD=0: nothing special (default)
# INSTALLER_CD=1: just add debian-installer (use TASK=tasks/debian-installer-$CODENAME)
# INSTALLER_CD=2: add d-i and base (use TASK=tasks/debian-installer+kernel-$CODENAME)
# INSTALLER_CD=1: just add debian-installer (use TASK=debian-installer)
# INSTALLER_CD=2: add d-i and base (use TASK=debian-installer+kernel)
#export INSTALLER_CD=2
#export TASK=tasks/debian-installer+kernel-$CODENAME
#export TASK=debian-installer+kernel
# Parameters to pass to kernel (or d-i) when the CD boots. Not currently
# supported for all architectures.

View File

@ -18,7 +18,7 @@ ifndef VERBOSE_MAKE
Q=@
endif
ifndef TASK
TASK=$(BASEDIR)/tasks/Debian_$(CODENAME)
TASK=Debian
endif
ifndef MKISOFS
export MKISOFS=$(shell which genisoimage mkisofs | head -1)
@ -56,12 +56,14 @@ grab_source_list=$(BASEDIR)/tools/grab_source_list
which_deb=$(BASEDIR)/tools/which_deb
BDIR=$(TDIR)/$(CODENAME)
TASKDIR=$(BDIR)/tasks
ADIR=$(APTTMP)
DB_DIR=$(BDIR)/debootstrap
export DEBOOTSTRAP_DIR := $(DB_DIR)/usr/lib/debootstrap
export PATH := $(DB_DIR)/usr/sbin:$(PATH)
export BDIR
export TASKDIR
## DEBUG STUFF ##
@ -106,7 +108,7 @@ endif
## INITIALIZATION ##
# Creation of the directories needed
init: ok $(OUT) $(TDIR) $(BDIR) $(ADIR) $(BDIR)/DATE $(DB_DIR) unstable-map
init: ok $(OUT) $(TDIR) $(BDIR) $(ADIR) $(TASKDIR) $(BDIR)/DATE $(DB_DIR) unstable-map
$(OUT):
$(Q)mkdir -p $(OUT)
$(TDIR):
@ -115,6 +117,13 @@ $(BDIR):
$(Q)mkdir -p $(BDIR)
$(ADIR):
$(Q)mkdir -p $(ADIR)
$(TASKDIR):
$(Q)mkdir -p $(TASKDIR)
$(Q)cp -r $(BASEDIR)/tasks/$(CODENAME)/* $(TASKDIR)
$(Q)set -e; cd $(TASKDIR); \
$(BASEDIR)/tools/update_tasks; \
$(BASEDIR)/tools/generate_di_list; \
$(BASEDIR)/tools/generate_di+k_list
$(BDIR)/DATE:
$(Q)date '+%Y%m%d' > $(BDIR)/DATE
@ -146,6 +155,7 @@ unstable-map:
clean: ok dir-clean
dir-clean:
$(Q)rm -rf $(BDIR)/CD[1234567890]*
$(Q)rm -rf $(TASKDIR)
$(Q)rm -f $(BDIR)/*.filelist*
$(Q)rm -f $(BDIR)/packages-stamp $(BDIR)/upgrade-stamp $(BDIR)/md5-check
@ -294,11 +304,11 @@ $(BDIR)/rawlist:
ARCHUNDEFS="$$ARCHUNDEFS -U $$ARCH"; \
done; \
if [ "$(SOURCEONLY)"x != "yes"x ] ; then \
cat $(TASK) | \
cat $(TASKDIR)/$(TASK) | \
cpp -nostdinc -nostdinc++ -P -undef $$ARCHDEFS \
$$ARCHUNDEFS -U i386 -U linux -U unix \
-DFORCENONUSONCD1=0 \
-I $(BASEDIR)/tasks -I $(BDIR) - - >> $(BDIR)/rawlist; \
-I $(TASKDIR) - - >> $(BDIR)/rawlist; \
fi
# If we're *only* doing source, then we need to build a list of all the
@ -363,10 +373,7 @@ mirrorcheck: ok
done
update-popcon:
$(update_popcon) tasks/popularity-contest-$(CODENAME)
update-tasks: $(BDIR)
$(update_tasks) $(CODENAME)
$(update_popcon) tasks/$(CODENAME)/popularity-contest
# Little trick to simplify things
official_images: ok init packagelists image-trees images

15
README
View File

@ -106,15 +106,24 @@ The process of building a CD is composed of the following steps:
- now you can decide what you want on your CDs
$ make packagelists TASK=tasks/debian-2.2 COMPLETE=1
Note that task files are always taken from the subdirectory in ./tasks/
that matches the CODENAME environment variable. At the beginning of a
build these "static" task files are copied to the working directory.
During the build some additional task files - that are referenced from
the static task files - are generated automatically using scripts from
the ./tools directory.
Examples:
$ make packagelists TASK=Debian COMPLETE=1
or
$ make packagelists TASK=tasks/gnome COMPLETE=0
$ make packagelists TASK=gnome COMPLETE=0
or
$ export NONFREE=1; make packagelists TASK=tasks/your-task-here COMPLETE=1
$ export NONFREE=1; make packagelists TASK=your-task-here COMPLETE=1
or for something like an official image for the USA (without non-US &
non-free) :

View File

@ -61,8 +61,8 @@ images are filled up to capacity with packages in the following order:
- other packages sorted by popularity (popcon score)
The basic order in which packages are included on full CDs and DVDs is
defined in 'tasks/Debian-<codename>'. The order in which tasksel tasks are
included is defined in 'tasks/task.list*'.
defined in 'tasks/<CODENAME>/Debian'. The order in which tasksel tasks are
included is defined in 'tasks/<CODENAME>/task.list*'.
Current GNOME and KDE desktop environments are so large that only the
packages needed to install one of them can be included on the first full CD.

View File

@ -26,11 +26,11 @@ export PATH
if [ "$TASK"x = ""x ] ; then
case "$INSTALLER_CD"x in
"1"x)
TASK=tasks/debian-installer-$DI_CODENAME
TASK=debian-installer
unset COMPLETE
;;
"2"x)
TASK=tasks/debian-installer+kernel-$CODENAME
TASK=debian-installer+kernel
unset COMPLETE
;;
*)

View File

@ -19,11 +19,11 @@ export PATH
if [ "$TASK"x = ""x ] ; then
case "$INSTALLER_CD"x in
"1"x)
TASK=tasks/debian-installer-$DI_CODENAME
TASK=debian-installer
unset COMPLETE
;;
"2"x)
TASK=tasks/debian-installer+kernel-$CODENAME
TASK=debian-installer+kernel
unset COMPLETE
;;
*)

10
debian/CONF.sh vendored
View File

@ -186,10 +186,10 @@ export DISKTYPE=CD
#export CUSTOMSIZE=XXXX
# We don't want certain packages to take up space on CD1...
#export EXCLUDE1="$BASEDIR"/tasks/exclude-$CODENAME
#export EXCLUDE1=exclude
# ...but they are okay for other CDs (UNEXCLUDEx == may be included
# on CD x if not already covered)
#export UNEXCLUDE2="$BASEDIR"/tasks/unexclude-CD2-$CODENAME
#export UNEXCLUDE2=unexclude-CD2
# Any packages listed in EXCLUDE but not in any UNEXCLUDE will be
# excluded completely.
@ -298,10 +298,10 @@ done
# and if you're not using build.sh then also make sure you set TASK
# appropriately here)
# INSTALLER_CD=0: nothing special (default)
# INSTALLER_CD=1: just add debian-installer (use TASK=tasks/debian-installer-$CODENAME)
# INSTALLER_CD=2: add d-i and base (use TASK=tasks/debian-installer+kernel-$CODENAME)
# INSTALLER_CD=1: just add debian-installer (use TASK=debian-installer)
# INSTALLER_CD=2: add d-i and base (use TASK=debian-installer+kernel)
#export INSTALLER_CD=2
#export TASK=tasks/debian-installer+kernel-$CODENAME
#export TASK=debian-installer+kernel
# Parameters to pass to kernel (or d-i) when the CD boots. Not currently
# supported for all architectures.

26
debian/changelog vendored
View File

@ -1,4 +1,4 @@
debian-cd (3.0.6) UNRELEASED; urgency=low
debian-cd (3.1.0) UNRELEASED; urgency=low
[ Frans Pop ]
* Don't include brltty on netinst images as it pulls in libicu which causes
@ -10,17 +10,33 @@ debian-cd (3.0.6) UNRELEASED; urgency=low
* Clean up no longer needed compatibility code in lenny x86 boot script.
[ Steve McIntyre ]
* Rename list2cds to sort_deps
* Fix how directory trees are created in update-cd. Closes: #503911
* Rename list2cds to sort_deps.
* Fix how directory trees are created in update-cd. Closes: #503911.
* Update update_popcon to cope better with errors; now uses curl instead
of wget
of wget.
[ Raphael Hertzog ]
* Don't try to copy sbm on etch CD images as it got removed.
* Also extract isolinux.bin from the syslinux package in the case of etch
CD images (since it's no more provided by debian-cd itself).
-- Frans Pop <fjp@debian.org> Sun, 02 Nov 2008 00:03:00 +0100
[ Frans Pop ]
* Rework the way tasks are handled:
- all tasks files are moved to ./tasks/<codename> subdirectories so they
can be more easily kept up-to-date with specific distro releases
- always generate the debian-installer and tasksel tasks dynamically:
. all task files for the desired suite are copied to the working
directory at the beginning of each build, and are used from there
. the debian-installer and tasksel tasks are no longer included in
releases but are always created automatically at build time; this
means users no longer need to run the generate_di_* scripts or the
update_tasksel script
. the popcon task file will remain included as a static file, but plan
is to add an option to update it automatically for each build; reason
is that updating it requires network access
- bump version to 3.1
-- Frans Pop <fjp@debian.org> Thu, 13 Nov 2008 22:17:21 +0100
debian-cd (3.0.5) unstable; urgency=low

View File

@ -99,8 +99,6 @@ export MAXJIGDOS=0
# Include proposed-updates
#export PROPOSED_UPDATES=$CODENAME-proposed-updates
#export EXCLUDE1="$BASEDIR"/tasks/exclude-$CODENAME
#export UNEXCLUDE2="$BASEDIR"/tasks/unexclude-CD2-$CODENAME
#export UDEB_INCLUDE="$BASEDIR"/data/$CODENAME/udeb_include
#export UDEB_EXCLUDE="$BASEDIR"/data/$CODENAME/udeb_exclude
#export BASE_INCLUDE="$BASEDIR"/data/$CODENAME/base_include
@ -135,9 +133,9 @@ esac
# By default a GNOME CD/DVD is built, but KDE and Xfce are supported too
if [ "$desktop" ] && ([ $DISKTYPE = CD ] || [ $DISKTYPE = DVD ]); then
TASK=tasks/Debian_${CODENAME}-${desktop}
if [ $CODENAME = etch ]; then
KERNEL_PARAMS="tasks=\"${desktop}-desktop, standard\""
TASK=Debian-$desktop
if [ "$CODENAME" = etch ]; then
KERNEL_PARAMS="tasks=\"$desktop-desktop, standard\""
else
KERNEL_PARAMS="desktop=$desktop"
fi
@ -151,35 +149,8 @@ if [ "$LOCAL" ] && [ "$UPDATE_LOCAL" ]; then
./tools/Packages-gen.sh $CODENAME $arch
./tools/Packages-gen.sh -i $DI_CODENAME $arch
done
echo
fi
if [ -d tasks ]; then
if [ $DISKTYPE = CD ] || [ $DISKTYPE = DVD ]; then
echo "Updating task files derived from tasksel..."
make update-tasks
fi
echo "Updating debian-installer task files..."
(
cd tasks
../tools/generate_di_list
../tools/generate_di+k_list
)
else
echo "Error: cannot find tasks directory"
exit 1
fi
echo
echo "Starting the actual debian-cd build..."
./build.sh "$ARCHES"
# Avoid conflicts when the repository is updated later
if [ -d .svn ]; then
echo
echo "Cleanup: reverting generated changes in tasks..."
svn revert tasks/debian-installer-* \
tasks/debian-installer+kernel-* \
tasks/task-essential-* \
tasks/task-full-*
fi

View File

@ -1,191 +0,0 @@
/* These packages + the ones needed by debootstrap are the ones needed for
* debian-installer to be able to install a base Debian system.
*
* These packages are installed by various parts of the debian-installer,
* mostly via its apt-install command.
*
* This list can be generated with the command:
* ../tools/generate_di+k_list
*
* DO NOT EDIT THIS FILE, edit the above script
*
* Last update: Sun Aug 19 00:53:39 CEST 2007
*/
#include <debian-installer-etch>
eject
locales
libdevmapper1.02
lvm-common
lvm2
mdadm
aptitude
jfbterm
unifont
hotplug
usbutils
console-cyrillic
console-terminus
pcmcia-cs
pcmciautils
wireless-tools
xfsprogs
jfsutils
dosfsutils
reiserfsprogs
libfribidi0
localization-config
acpid
ppp
pppoeconf
udev
installation-report
openssh-server
cryptsetup
brltty
/* libsysfs2-udeb provides libsysfs2 so we have to make sure the deb
* gets included on the first CD too
*/
libsysfs2
/* Needed for rootless installs. */
sudo
/* libdiscover1-udeb provides libdiscover1 so we have to make sure the
* deb gets included on the first CD too for arches that get discover1
*/
/* #231583: Make life easier for Australian ISP users */
bpalogin
#ifdef ARCH_i386
initramfs-tools
discover
discover1
libdiscover1
grub
lilo
elilo
libc6-i686
/* Note that we do not have to include every optimised kernel flavor for
* i386, but this does control what kernels are available on the netinst CD.
* Kernel headers are included as third party modules are commonly
* used on this architecture.
*/
linux-image-2.6-486
linux-headers-2.6-486
linux-image-2.6-686
linux-headers-2.6-686
#endif
#ifdef ARCH_amd64
initramfs-tools
discover
discover1
libdiscover1
grub
lilo
linux-image-2.6-amd64
linux-headers-2.6-amd64
#endif
#ifdef ARCH_alpha
initramfs-tools
aboot
aboot-base
discover1
libdiscover1
linux-image-2.6-alpha-generic
linux-image-2.6-alpha-smp
#endif
#ifdef ARCH_hppa
initramfs-tools
discover1
libdiscover1
linux-image-2.6-parisc
linux-image-2.6-parisc-smp
linux-image-2.6-parisc64
linux-image-2.6-parisc64-smp
palo
#endif
#ifdef ARCH_ia64
initramfs-tools
discover1
libdiscover1
linux-image-2.6-itanium
linux-image-2.6-itanium-smp
linux-image-2.6-mckinley
linux-image-2.6-mckinley-smp
elilo
#endif
#ifdef ARCH_mips
arcboot
sibyl
linux-image-2.6-r4k-ip22
linux-image-2.6-r5k-ip32
linux-image-2.6-sb1-bcm91250a
linux-image-2.6-sb1a-bcm91480b
#endif
#ifdef ARCH_mipsel
sibyl
colo
delo
linux-image-2.6-r3k-kn02
linux-image-2.6-r4k-kn04
linux-image-2.6-r5k-cobalt
linux-image-2.6-sb1-bcm91250a
linux-image-2.6-sb1a-bcm91480b
#endif
#ifdef ARCH_arm
initramfs-tools
discover1
libdiscover1
nwutil
slugimage
glantank
flash-kernel
nslu2-utils
apex-nslu2
linux-image-2.6-footbridge
linux-image-2.6-iop32x
linux-image-2.6-ixp4xx
linux-image-2.6-nslu2
linux-image-2.6-rpc
linux-image-2.6-s3c2410
#endif
#ifdef ARCH_sparc
initramfs-tools
silo
discover1
libdiscover1
libc6-sparcv9b
libc6-sparcv9
linux-image-2.6-sparc32
linux-image-2.6-sparc32-smp
linux-image-2.6-sparc64
linux-image-2.6-sparc64-smp
#endif
#ifdef ARCH_powerpc
initramfs-tools
discover1
libdiscover1
quik
yaboot
powerpc-utils
hfsutils
mkvmlinuz
module-init-tools
linux-image-2.6-powerpc
linux-image-2.6-powerpc-smp
linux-image-2.6-powerpc64
linux-image-2.6-prep
#endif

View File

@ -1,281 +0,0 @@
/* These packages + the ones needed by debootstrap are the ones needed for
* debian-installer to be able to install a base Debian system.
*
* These packages are installed by various parts of the debian-installer,
* mostly via its apt-install command.
*
* This list can be generated with the command:
* ../tools/generate_di+k_list
*
* DO NOT EDIT THIS FILE, edit the above script
*
* Last update: Thu Nov 13 23:52:42 CET 2008
*/
#include <debian-installer-lenny>
eject
locales
libdevmapper1.02
lvm-common
lvm2
mdadm
aptitude
hotplug
usbutils
console-data
console-common
console-tools
console-cyrillic
console-terminus
pcmcia-cs
pcmciautils
wireless-tools
xfsprogs
jfsutils
dosfsutils
reiserfsprogs
libfribidi0
localization-config
acpid
acpi-support-base
ppp
pppoeconf
pptp-linux
udev
installation-report
openssh-server
cryptsetup
loop-aes-utils
dmraid
/* In etch, libsysfs2-udeb provides libsysfs2 so use this to
* make sure the deb gets included on the first CD too
*/
libsysfs2
/* Needed for rootless installs. */
sudo
/* libdiscover1-udeb provides libdiscover1 so we have to make sure the
* deb gets included on the first CD too for arches that get discover1
*/
/* laptop-detect is used by tasksel when checking if the system is a
* laptop so we have to make sure to get it included on first CD for
* arches that are know to have laptops
*/
/* grub-pc is used when selecting GPT disk label */
/* #231583: Make life easier for Australian ISP users */
bpalogin
/* multipath-tools-boot is used for multipath support and installed
* during installation process if multipath is used
*/
multipath-tools-boot
#ifdef ARCH_i386
initramfs-tools
busybox
discover
discover1
libdiscover1
grub
grub-pc
laptop-detect
lilo
elilo
libc6-i686
/* Note that we do not have to include every optimised kernel flavor for
* i386, but this does control what kernels are available on the netinst CD.
* Kernel headers are included as third party modules are commonly
* used on this architecture.
*/
linux-image-2.6-486
linux-headers-2.6-486
linux-image-2.6-686
linux-headers-2.6-686
loop-aes-modules-2.6-486
loop-aes-modules-2.6-686
atl2-modules-2.6-486
atl2-modules-2.6-686
speakup-modules-2.6-486
speakup-modules-2.6-686
#endif
#ifdef ARCH_amd64
initramfs-tools
busybox
discover
discover1
libdiscover1
grub
grub-pc
laptop-detect
lilo
linux-image-2.6-amd64
linux-headers-2.6-amd64
loop-aes-modules-2.6-amd64
atl2-modules-2.6-amd64
speakup-modules-2.6-amd64
#endif
#ifdef ARCH_alpha
initramfs-tools
busybox
aboot
aboot-base
discover1
libdiscover1
linux-image-2.6-alpha-generic
linux-image-2.6-alpha-smp
loop-aes-modules-2.6-alpha-generic
loop-aes-modules-2.6-alpha-smp
#endif
#ifdef ARCH_hppa
initramfs-tools
busybox
discover1
libdiscover1
linux-image-2.6-parisc
linux-image-2.6-parisc-smp
linux-image-2.6-parisc64
linux-image-2.6-parisc64-smp
loop-aes-modules-2.6-parisc
loop-aes-modules-2.6-parisc-smp
loop-aes-modules-2.6-parisc64
loop-aes-modules-2.6-parisc64-smp
palo
#endif
#ifdef ARCH_ia64
initramfs-tools
busybox
discover1
libdiscover1
linux-image-2.6-itanium
linux-image-2.6-itanium-smp
linux-image-2.6-mckinley
linux-image-2.6-mckinley-smp
loop-aes-modules-2.6-itanium
loop-aes-modules-2.6-itanium-smp
loop-aes-modules-2.6-mckinley
loop-aes-modules-2.6-mckinley-smp
elilo
#endif
#ifdef ARCH_mips
/* doesn't use a initrd to boot */
arcboot
sibyl
linux-image-2.6-r4k-ip22
linux-image-2.6-r5k-ip32
linux-image-2.6-sb1-bcm91250a
linux-image-2.6-sb1a-bcm91480b
loop-aes-modules-2.6-r4k-ip22
loop-aes-modules-2.6-r5k-ip32
loop-aes-modules-2.6-sb1-bcm91250a
loop-aes-modules-2.6-sb1a-bcm91480b
#endif
#ifdef ARCH_mipsel
/* doesn't use a initrd to boot */
sibyl
colo
delo
linux-image-2.6-r3k-kn02
linux-image-2.6-r4k-kn04
linux-image-2.6-r5k-cobalt
linux-image-2.6-sb1-bcm91250a
linux-image-2.6-sb1a-bcm91480b
loop-aes-modules-2.6-r3k-kn02
loop-aes-modules-2.6-r4k-kn04
loop-aes-modules-2.6-r5k-cobalt
loop-aes-modules-2.6-sb1-bcm91250a
loop-aes-modules-2.6-sb1a-bcm91480b
#endif
#ifdef ARCH_arm
initramfs-tools
busybox
discover1
libdiscover1
nwutil
slugimage
glantank
flash-kernel
nslu2-utils
apex-nslu2
linux-image-2.6-footbridge
linux-image-2.6-iop32x
linux-image-2.6-ixp4xx
linux-image-2.6-nslu2
linux-image-2.6-rpc
linux-image-2.6-s3c2410
loop-aes-modules-2.6-footbridge
loop-aes-modules-2.6-iop32x
loop-aes-modules-2.6-ixp4xx
loop-aes-modules-2.6-nslu2
loop-aes-modules-2.6-rpc
loop-aes-modules-2.6-s3c2410
#endif
#ifdef ARCH_armel
initramfs-tools
busybox
discover1
libdiscover1
slugimage
flash-kernel
nslu2-utils
apex-nslu2
linux-image-2.6-iop32x
linux-image-2.6-ixp4xx
linux-image-2.6-versatile
loop-aes-modules-2.6-iop32x
loop-aes-modules-2.6-ixp4xx
loop-aes-modules-2.6-versatile
#endif
#ifdef ARCH_sparc
initramfs-tools
busybox
silo
discover1
libdiscover1
libc6-sparcv9b
libc6-sparcv9
linux-image-2.6-sparc32
linux-image-2.6-sparc32-smp
linux-image-2.6-sparc64
linux-image-2.6-sparc64-smp
loop-aes-modules-2.6-sparc32
loop-aes-modules-2.6-sparc32-smp
loop-aes-modules-2.6-sparc64
loop-aes-modules-2.6-sparc64-smp
#endif
#ifdef ARCH_powerpc
initramfs-tools
busybox
discover1
libdiscover1
laptop-detect
quik
yaboot
powerpc-utils
hfsutils
mkvmlinuz
module-init-tools
linux-image-2.6-powerpc
linux-image-2.6-powerpc-smp
linux-image-2.6-powerpc64
linux-image-2.6-prep
loop-aes-modules-2.6-powerpc
loop-aes-modules-2.6-powerpc-smp
loop-aes-modules-2.6-powerpc64
loop-aes-modules-2.6-prep
#endif

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -5,13 +5,13 @@
*/
/* Packages that should really be on CD1 */
#include <debian-installer+kernel-etch>
#include <forcd1-etch>
#include <task-essential-etch>
#include <debian-installer+kernel>
#include <forcd1>
#include <task-essential>
/* Other interesting packages */
#include <task-full-etch>
#include <task-full>
#include <interesting-fromcd23>
/* The rest ordered by popularity */
#include <popularity-contest-etch>
#include <popularity-contest>

View File

@ -6,13 +6,13 @@
*/
/* Packages that should really be on CD1 */\
#include <debian-installer+kernel-etch>
#include <forcd1-etch>
#include <task-essential-etch-kde>
#include <debian-installer+kernel>
#include <forcd1>
#include <task-essential-kde>
/* Other interesting packages */
#include <task-full-etch-kde>
#include <task-full-kde>
#include <interesting-fromcd23>
/* The rest ordered by popularity */
#include <popularity-contest-etch>
#include <popularity-contest>

View File

@ -6,13 +6,13 @@
*/
/* Packages that should really be on CD1 */\
#include <debian-installer+kernel-etch>
#include <forcd1-etch>
#include <task-essential-etch-xfce>
#include <debian-installer+kernel>
#include <forcd1>
#include <task-essential-xfce>
/* Other interesting packages */
#include <task-full-etch-xfce>
#include <task-full-xfce>
#include <interesting-fromcd23>
/* The rest ordered by popularity */
#include <popularity-contest-etch>
#include <popularity-contest>

1
tasks/etch/unexclude-CD2 Symbolic link
View File

@ -0,0 +1 @@
exclude

View File

@ -5,13 +5,13 @@
*/
/* Packages that should really be on CD1 */
#include <debian-installer+kernel-lenny>
#include <forcd1-lenny>
#include <task-essential-lenny>
#include <debian-installer+kernel>
#include <forcd1>
#include <task-essential>
/* Other interesting packages */
#include <task-full-lenny>
#include <task-full>
#include <interesting-fromcd23>
/* The rest ordered by popularity */
#include <popularity-contest-lenny>
#include <popularity-contest>

View File

@ -6,13 +6,13 @@
*/
/* Packages that should really be on CD1 */\
#include <debian-installer+kernel-lenny>
#include <forcd1-lenny>
#include <task-essential-lenny-kde>
#include <debian-installer+kernel>
#include <forcd1>
#include <task-essential-kde>
/* Other interesting packages */
#include <task-full-lenny-kde>
#include <task-full-kde>
#include <interesting-fromcd23>
/* The rest ordered by popularity */
#include <popularity-contest-lenny>
#include <popularity-contest>

View File

@ -6,13 +6,13 @@
*/
/* Packages that should really be on CD1 */\
#include <debian-installer+kernel-lenny>
#include <forcd1-lenny>
#include <task-essential-lenny-xfce>
#include <debian-installer+kernel>
#include <forcd1>
#include <task-essential-xfce>
/* Other interesting packages */
#include <task-full-lenny-xfce>
#include <task-full-xfce>
#include <interesting-fromcd23>
/* The rest ordered by popularity */
#include <popularity-contest-lenny>
#include <popularity-contest>

1
tasks/lenny/empty Normal file
View File

@ -0,0 +1 @@
/* The empty task */

View File

@ -0,0 +1,62 @@
/* Generally useful/interesting (and mostly small) packages that
many people expect on one of the first CDs even if there's no room for
everything from popcon. */
dpkg-repack
grep-dctrl
smartmontools
irda-tools
hwtools
acpid
apmd
noflushd
gpm
anacron
mc
iptables
host
bzip2
unzip
lockfile-progs
alien
dict
screen
zsh
vim
joe
xpdf-reader
gv
gnucash
wdm
gdm
kdm
pdmenu
slay
vlock
cvs
wget
masqmail
fetchmailconf
ntp-simple
w3m
mtr
netcat
rsync
pstotext
wv
a2ps
sane
xsane
xscreensaver
bplay
id3
xmms
cd-discid
cdrecord
mkisofs
csh
mysql-client
xfonts-base-transcoded
dictd
dict-vera
dict-jargon

185
tasks/lenny/task.list Normal file
View File

@ -0,0 +1,185 @@
# Main tasks
gnome-desktop
desktop
web-server
laptop
mail-server
print-server
database-server
dns-server
file-server
# Language tasks
# Commented out means the language is currently not supported in D-I
arabic
arabic-desktop
arabic-gnome-desktop
basque-desktop
basque-gnome-desktop
belarusian
belarusian-desktop
belarusian-gnome-desktop
bengali
bengali-desktop
bengali-gnome-desktop
bosnian
bosnian-desktop
bosnian-gnome-desktop
brazilian-portuguese
brazilian-portuguese-desktop
brazilian-portuguese-gnome-desktop
bulgarian
bulgarian-desktop
bulgarian-gnome-desktop
catalan
catalan-desktop
catalan-gnome-desktop
chinese-s
chinese-s-desktop
chinese-s-gnome-desktop
chinese-t
chinese-t-desktop
chinese-t-gnome-desktop
croatian
croatian-desktop
croatian-gnome-desktop
cyrillic
cyrillic-desktop
cyrillic-gnome-desktop
czech
czech-desktop
czech-gnome-desktop
danish
danish-desktop
danish-gnome-desktop
dutch
dutch-desktop
dutch-gnome-desktop
dzongkha-desktop
dzongkha-gnome-desktop
esperanto-desktop
esperanto-gnome-desktop
estonian-desktop
estonian-gnome-desktop
finnish
finnish-desktop
finnish-gnome-desktop
french
french-desktop
french-gnome-desktop
galician
galician-desktop
galician-gnome-desktop
georgian-desktop
georgian-gnome-desktop
german
german-desktop
german-gnome-desktop
greek
greek-desktop
greek-gnome-desktop
gujarati-desktop
gujarati-gnome-desktop
hebrew
hebrew-desktop
hebrew-gnome-desktop
hindi
hindi-desktop
hindi-gnome-desktop
hungarian
hungarian-desktop
hungarian-gnome-desktop
#icelandic
#icelandic-desktop
#icelandic-gnome-desktop
#irish
#irish-desktop
#irish-gnome-desktop
italian
italian-desktop
italian-gnome-desktop
japanese
japanese-desktop
japanese-gnome-desktop
khmer
khmer-desktop
khmer-gnome-desktop
korean
korean-desktop
korean-gnome-desktop
latvian-desktop
latvian-gnome-desktop
lithuanian
lithuanian-desktop
lithuanian-gnome-desktop
macedonian
macedonian-desktop
macedonian-gnome-desktop
malayalam-desktop
malayalam-gnome-desktop
nepali-desktop
nepali-gnome-desktop
northern-sami-desktop
northern-sami-gnome-desktop
norwegian
norwegian-desktop
norwegian-gnome-desktop
persian
persian-desktop
persian-gnome-desktop
polish
polish-desktop
polish-gnome-desktop
portuguese
portuguese-desktop
portuguese-gnome-desktop
punjabi
punjabi-desktop
punjabi-gnome-desktop
romanian
romanian-desktop
romanian-gnome-desktop
russian
russian-desktop
russian-gnome-desktop
#serbian
#serbian-desktop
#serbian-gnome-desktop
slovak
slovak-desktop
slovak-gnome-desktop
slovenian
slovenian-desktop
slovenian-gnome-desktop
spanish
spanish-desktop
spanish-gnome-desktop
swedish
swedish-desktop
swedish-gnome-desktop
tagalog
tamil
tamil-desktop
tamil-gnome-desktop
thai
thai-desktop
thai-gnome-desktop
turkish
turkish-desktop
turkish-gnome-desktop
ukrainian
ukrainian-desktop
ukrainian-gnome-desktop
vietnamese-desktop
vietnamese-gnome-desktop
#welsh
#welsh-desktop
#welsh-gnome-desktop
#xhosa-desktop
#xhosa-gnome-desktop
# Alternative desktop environments
kde-desktop
kde-gnome-desktop
xfce-desktop
xfce-gnome-desktop

173
tasks/lenny/task.list.kde Normal file
View File

@ -0,0 +1,173 @@
# Main tasks
kde-desktop
desktop
laptop
# Language tasks
# Commented out means the language is currently not supported in D-I
arabic
arabic-desktop
arabic-kde-desktop
basque-desktop
basque-kde-desktop
belarusian
belarusian-desktop
belarusian-kde-desktop
bengali
bengali-desktop
bengali-kde-desktop
bosnian
bosnian-desktop
bosnian-kde-desktop
brazilian-portuguese
brazilian-portuguese-desktop
brazilian-portuguese-kde-desktop
bulgarian
bulgarian-desktop
bulgarian-kde-desktop
catalan
catalan-desktop
catalan-kde-desktop
chinese-s
chinese-s-desktop
chinese-s-kde-desktop
chinese-t
chinese-t-desktop
chinese-t-kde-desktop
croatian
croatian-desktop
croatian-kde-desktop
cyrillic
cyrillic-desktop
cyrillic-kde-desktop
czech
czech-desktop
czech-kde-desktop
danish
danish-desktop
danish-kde-desktop
dutch
dutch-desktop
dutch-kde-desktop
dzongkha-desktop
dzongkha-kde-desktop
esperanto-desktop
esperanto-kde-desktop
estonian-desktop
estonian-kde-desktop
finnish
finnish-desktop
finnish-kde-desktop
french
french-desktop
french-kde-desktop
galician
galician-desktop
galician-kde-desktop
georgian-desktop
georgian-kde-desktop
german
german-desktop
german-kde-desktop
greek
greek-desktop
greek-kde-desktop
gujarati-desktop
gujarati-kde-desktop
hebrew
hebrew-desktop
hebrew-kde-desktop
hindi
hindi-desktop
hindi-kde-desktop
hungarian
hungarian-desktop
hungarian-kde-desktop
#icelandic
#icelandic-desktop
#icelandic-kde-desktop
#irish
#irish-desktop
#irish-kde-desktop
italian
italian-desktop
italian-kde-desktop
japanese
japanese-desktop
japanese-kde-desktop
khmer
khmer-desktop
khmer-kde-desktop
korean
korean-desktop
korean-kde-desktop
latvian-desktop
latvian-kde-desktop
lithuanian
lithuanian-desktop
lithuanian-kde-desktop
macedonian
macedonian-desktop
macedonian-kde-desktop
malayalam-desktop
malayalam-kde-desktop
nepali-desktop
nepali-kde-desktop
northern-sami-desktop
northern-sami-kde-desktop
norwegian
norwegian-desktop
norwegian-kde-desktop
persian
persian-desktop
persian-kde-desktop
polish
polish-desktop
polish-kde-desktop
portuguese
portuguese-desktop
portuguese-kde-desktop
punjabi
punjabi-desktop
punjabi-kde-desktop
romanian
romanian-desktop
romanian-kde-desktop
russian
russian-desktop
russian-kde-desktop
#serbian
#serbian-desktop
#serbian-kde-desktop
slovak
slovak-desktop
slovak-kde-desktop
slovenian
slovenian-desktop
slovenian-kde-desktop
spanish
spanish-desktop
spanish-kde-desktop
swedish
swedish-desktop
swedish-kde-desktop
tagalog
tamil
tamil-desktop
tamil-kde-desktop
thai
thai-desktop
thai-kde-desktop
turkish
turkish-desktop
turkish-kde-desktop
ukrainian
ukrainian-desktop
ukrainian-kde-desktop
vietnamese-desktop
vietnamese-kde-desktop
#welsh
#welsh-desktop
#welsh-kde-desktop
#xhosa-desktop
#xhosa-kde-desktop

173
tasks/lenny/task.list.xfce Normal file
View File

@ -0,0 +1,173 @@
# Main tasks
xfce-desktop
desktop
laptop
# Language tasks
# Commented out means the language is currently not supported in D-I
arabic
arabic-desktop
arabic-xfce-desktop
basque-desktop
basque-xfce-desktop
belarusian
belarusian-desktop
belarusian-xfce-desktop
bengali
bengali-desktop
bengali-xfce-desktop
bosnian
bosnian-desktop
bosnian-xfce-desktop
brazilian-portuguese
brazilian-portuguese-desktop
brazilian-portuguese-xfce-desktop
bulgarian
bulgarian-desktop
bulgarian-xfce-desktop
catalan
catalan-desktop
catalan-xfce-desktop
chinese-s
chinese-s-desktop
chinese-s-xfce-desktop
chinese-t
chinese-t-desktop
chinese-t-xfce-desktop
croatian
croatian-desktop
croatian-xfce-desktop
cyrillic
cyrillic-desktop
cyrillic-xfce-desktop
czech
czech-desktop
czech-xfce-desktop
danish
danish-desktop
danish-xfce-desktop
dutch
dutch-desktop
dutch-xfce-desktop
dzongkha-desktop
dzongkha-xfce-desktop
esperanto-desktop
esperanto-xfce-desktop
estonian-desktop
estonian-xfce-desktop
finnish
finnish-desktop
finnish-xfce-desktop
french
french-desktop
french-xfce-desktop
galician
galician-desktop
galician-xfce-desktop
georgian-desktop
georgian-xfce-desktop
german
german-desktop
german-xfce-desktop
greek
greek-desktop
greek-xfce-desktop
gujarati-desktop
gujarati-xfce-desktop
hebrew
hebrew-desktop
hebrew-xfce-desktop
hindi
hindi-desktop
hindi-xfce-desktop
hungarian
hungarian-desktop
hungarian-xfce-desktop
#icelandic
#icelandic-desktop
#icelandic-xfce-desktop
#irish
#irish-desktop
#irish-xfce-desktop
italian
italian-desktop
italian-xfce-desktop
japanese
japanese-desktop
japanese-xfce-desktop
khmer
khmer-desktop
khmer-xfce-desktop
korean
korean-desktop
korean-xfce-desktop
latvian-desktop
latvian-xfce-desktop
lithuanian
lithuanian-desktop
lithuanian-xfce-desktop
macedonian
macedonian-desktop
macedonian-xfce-desktop
malayalam-desktop
malayalam-xfce-desktop
nepali-desktop
nepali-xfce-desktop
northern-sami-desktop
northern-sami-xfce-desktop
norwegian
norwegian-desktop
norwegian-xfce-desktop
persian
persian-desktop
persian-xfce-desktop
polish
polish-desktop
polish-xfce-desktop
portuguese
portuguese-desktop
portuguese-xfce-desktop
punjabi
punjabi-desktop
punjabi-xfce-desktop
romanian
romanian-desktop
romanian-xfce-desktop
russian
russian-desktop
russian-xfce-desktop
#serbian
#serbian-desktop
#serbian-xfce-desktop
slovak
slovak-desktop
slovak-xfce-desktop
slovenian
slovenian-desktop
slovenian-xfce-desktop
spanish
spanish-desktop
spanish-xfce-desktop
swedish
swedish-desktop
swedish-xfce-desktop
tagalog
tamil
tamil-desktop
tamil-xfce-desktop
thai
thai-desktop
thai-xfce-desktop
turkish
turkish-desktop
turkish-xfce-desktop
ukrainian
ukrainian-desktop
ukrainian-xfce-desktop
vietnamese-desktop
vietnamese-xfce-desktop
#welsh
#welsh-desktop
#welsh-xfce-desktop
#xhosa-desktop
#xhosa-xfce-desktop

1
tasks/lenny/unexclude-CD2 Symbolic link
View File

@ -0,0 +1 @@
exclude

File diff suppressed because it is too large Load Diff

1
tasks/sid Symbolic link
View File

@ -0,0 +1 @@
lenny/

View File

@ -1,83 +0,0 @@
/* Essential task packages
*
* The list should be regenerated from time to time, using the
* update-tasks target of the Makefile.
*
* Last updated: $Date$
*/
gnome-desktop-environment
xorg
xserver-xorg-video-all
xserver-xorg-input-all
desktop-base
menu
iceweasel
discover1
xresprobe
alsa-utils
alsa-base
eject
apache2-mpm-prefork
exim4
cupsys
cupsys-client
cupsys-bsd
postgresql-8.1
bind9
nfs-kernel-server
samba
language-env
language-env
language-env
locales
manpages-pt
language-env
jfbterm
zhcon
jfbterm
zhcon
locales
console-cyrillic
t1-cyrillic
language-env
language-env
manpages-fr
language-env
manpages-de
language-env
language-env
gsfonts-x11
ttf-dejavu
ttf-freefont
xfonts-base
language-env
manpages-it
language-env
jfbterm
unifont
manpages-ja
lv
language-env
jfbterm
manpages-ko
language-env
language-env
locales
language-env
language-env
manpages-pl
language-env
language-env
language-env
locales
language-env
manpages-ru
language-env
language-env
manpages-es
locales
language-env
language-env
locales
manpages-tr
language-env

View File

@ -1,82 +0,0 @@
/* Essential task packages for KDE
*
* The list should be regenerated from time to time, using the
* update-tasks target of the Makefile.
*
* Last updated: $Date: 2006-10-28 17:40:33 -0400 (Sat, 28 Oct 2006) $
*/
kde-core
kdeadmin
kdeartwork
kdegraphics
kdemultimedia
kdenetwork
kdeutils
kdepim
kdm
xorg
xserver-xorg-video-all
xserver-xorg-input-all
desktop-base
menu
iceweasel
discover1
xresprobe
alsa-utils
alsa-base
eject
language-env
language-env
language-env
locales
manpages-pt
language-env
jfbterm
zhcon
jfbterm
zhcon
locales
console-cyrillic
t1-cyrillic
language-env
language-env
manpages-fr
language-env
manpages-de
language-env
language-env
gsfonts-x11
ttf-dejavu
ttf-freefont
xfonts-base
language-env
manpages-it
language-env
jfbterm
unifont
manpages-ja
lv
language-env
jfbterm
manpages-ko
language-env
language-env
locales
language-env
language-env
manpages-pl
language-env
language-env
language-env
locales
language-env
manpages-ru
language-env
language-env
manpages-es
locales
language-env
language-env
locales
manpages-tr
language-env

View File

@ -1,75 +0,0 @@
/* Essential task packages for Xfce
*
* The list should be regenerated from time to time, using the
* update-tasks target of the Makefile.
*
* Last updated: $Date: 2006-10-28 17:40:33 -0400 (Sat, 28 Oct 2006) $
*/
xfce4
gdm
xorg
xserver-xorg-video-all
xserver-xorg-input-all
desktop-base
menu
iceweasel
discover1
xresprobe
alsa-utils
alsa-base
eject
language-env
language-env
language-env
locales
manpages-pt
language-env
jfbterm
zhcon
jfbterm
zhcon
locales
console-cyrillic
t1-cyrillic
language-env
language-env
manpages-fr
language-env
manpages-de
language-env
language-env
gsfonts-x11
ttf-dejavu
ttf-freefont
xfonts-base
language-env
manpages-it
language-env
jfbterm
unifont
manpages-ja
lv
language-env
jfbterm
manpages-ko
language-env
language-env
locales
language-env
language-env
manpages-pl
language-env
language-env
language-env
locales
language-env
manpages-ru
language-env
language-env
manpages-es
locales
language-env
language-env
locales
manpages-tr
language-env

View File

@ -1,75 +0,0 @@
/* Essential task packages
*
* The list should be regenerated from time to time, using the
* update-tasks target of the Makefile.
*
* Last updated: $Date$
*/
gnome-desktop-environment
xorg
xserver-xorg-video-all
xserver-xorg-input-all
desktop-base
menu
iceweasel
apache2-mpm-prefork
acpid
hibernate
anacron
exim4
cupsys
cupsys-client
cupsys-bsd
postgresql
bind9
nfs-kernel-server
samba
language-env
language-env
language-env
locales
manpages-pt
language-env
jfbterm
zhcon
locales
t1-cyrillic
language-env
language-env
manpages-fr
language-env
manpages-de
language-env
language-env
gsfonts-x11
ttf-dejavu
ttf-liberation
ttf-freefont
xfonts-base
language-env
manpages-it
manpages-ja
lv
language-env
language-env
ttf-malayalam-fonts
scim-tables-additional
locales
language-env
language-env
manpages-pl
language-env
language-env
language-env
locales
language-env
manpages-ru
language-env
manpages-es
locales
language-env
language-env
language-env
locales
manpages-tr
language-env

View File

@ -1,74 +0,0 @@
/* Essential task packages for KDE
*
* The list should be regenerated from time to time, using the
* update-tasks target of the Makefile.
*
* Last updated: $Date$
*/
kde-core
kdeadmin
kdeartwork
kdegraphics
kdemultimedia
kdenetwork
kdeutils
kdepim
kdm
xorg
xserver-xorg-video-all
xserver-xorg-input-all
desktop-base
menu
iceweasel
acpid
hibernate
anacron
language-env
language-env
language-env
locales
manpages-pt
language-env
jfbterm
zhcon
locales
t1-cyrillic
language-env
language-env
manpages-fr
language-env
manpages-de
language-env
language-env
gsfonts-x11
ttf-dejavu
ttf-liberation
ttf-freefont
xfonts-base
language-env
manpages-it
manpages-ja
lv
language-env
language-env
ttf-malayalam-fonts
scim-tables-additional
locales
language-env
language-env
manpages-pl
language-env
language-env
language-env
locales
language-env
manpages-ru
language-env
manpages-es
locales
language-env
language-env
language-env
locales
manpages-tr
language-env

View File

@ -1,67 +0,0 @@
/* Essential task packages for Xfce
*
* The list should be regenerated from time to time, using the
* update-tasks target of the Makefile.
*
* Last updated: $Date$
*/
xfce4
gdm
xorg
xserver-xorg-video-all
xserver-xorg-input-all
desktop-base
menu
iceweasel
acpid
hibernate
anacron
language-env
language-env
language-env
locales
manpages-pt
language-env
jfbterm
zhcon
locales
t1-cyrillic
language-env
language-env
manpages-fr
language-env
manpages-de
language-env
language-env
gsfonts-x11
ttf-dejavu
ttf-liberation
ttf-freefont
xfonts-base
language-env
manpages-it
manpages-ja
lv
language-env
language-env
ttf-malayalam-fonts
scim-tables-additional
locales
language-env
language-env
manpages-pl
language-env
language-env
language-env
locales
language-env
manpages-ru
language-env
manpages-es
locales
language-env
language-env
language-env
locales
manpages-tr
language-env

View File

@ -1,705 +0,0 @@
/* This file lists the packages that have a Task: field
* and that should be included on CDs 1 and 2
*
* The list should be regenerated from time to time, using the
* update-tasks target of the Makefile.
*
* Last update: $Date$
*
*/
alacarte
bluez-gnome
deskbar-applet
evolution-exchange
evolution-plugins
evolution-webcal
gaim
gdebi
gnome-btdownload
gnome-cups-manager
gnome-desktop-environment
gnome-power-manager
gnome-screensaver
gnome-themes-extras
gnomebaker
gparted
grdesktop
iceweasel-gnome-support
libgnome2-perl
menu-xdg
network-manager-gnome
rhythmbox
synaptic
totem-mozilla
update-notifier
epiphany-browser
epiphany-extensions
gstreamer0.10-ffmpeg
hardinfo
liferea
openoffice.org-evolution
openoffice.org-gnome
xsane
alsa-base
anacron
cupsys
cupsys-bsd
cupsys-client
cupsys-driver-gutenprint
desktop-base
discover1
eject
foomatic-db-engine
foomatic-db-gutenprint
foomatic-db-hpijs
foomatic-filters-ppds
foomatic-gui
gimp
gimp-print
hotkey-setup
hpijs
hplip
iceweasel
menu
myspell-en-us
openoffice.org-thesaurus-en-us
printconf
twm
xresprobe
alsa-utils
avahi-daemon
libnss-mdns
openoffice.org
openoffice.org-gcj
openoffice.org-help-en-us
xdg-utils
xorg
xserver-xorg-input-all
xserver-xorg-video-all
analog
apache2-doc
apache2-mpm-prefork
libapache2-mod-perl2
libapache2-mod-php4
libapache2-mod-python
acpid
anacron
apmd
bluetooth
cpufrequtils
hibernate
hotkey-setup
pcmciautils
wireless-tools
acpi
acpi-support
uswsusp
wpasupplicant
mailagent
mailx
mutt
procmail
qpopper
spamassassin
uw-imapd
exim4
exim4-config
exim4-daemon-light
sa-exim
cupsys
cupsys-bsd
cupsys-client
cupsys-driver-gutenprint
foomatic-db-engine
foomatic-db-gutenprint
foomatic-db-hpijs
foomatic-filters-ppds
hpijs
hplip
printconf
postgresql-8.1
postgresql-client-8.1
postgresql-contrib-8.1
postgresql-doc-8.1
dlint
bind9
bind9-doc
dnsutils
lwresd
samba
samba-doc
smbclient
smbfs
swat
winbind
netatalk
nfs-kernel-server
aspell-ar
itools
language-env
ttf-arabeyes
xfonts-intl-arabic
iceweasel-l10n-ar
kde-i18n-ar
openoffice.org-l10n-ar
ttf-farsiweb
ttf-kacst
iceweasel-l10n-eu
kde-i18n-eu
language-env
openoffice.org-l10n-be-by
aspell-bn
language-env
ttf-bengali-fonts
kde-i18n-bn
openoffice.org-l10n-bn
ttf-bengali-fonts
aspell-hr
dict-freedict-scr-eng
doc-linux-hr
itools
myspell-hr
locales
kde-i18n-bs
openoffice.org-l10n-bs
xfonts-biznet-100dpi
xfonts-biznet-75dpi
xfonts-biznet-base
xfonts-terminus
aspell-pt-br
ibrazilian
manpages-pt
myspell-pt-br
wbrazilian
util-linux-locales
iceweasel-l10n-pt-br
kde-i18n-ptbr
broffice.org
aspell-bg
ibulgarian
myspell-bg
wbulgarian
iceweasel-l10n-bg
kde-i18n-bg
ttf-dejavu
openoffice.org-l10n-bg
aspell-ca
icatalan
language-env
myspell-ca
wcatalan
util-linux-locales
iceweasel-l10n-ca
kde-i18n-ca
openoffice.org-l10n-ca
debian-zh-faq-s
fortune-zh
manpages-zh
ttf2pt1
ttf2pt1-chinese
zh-autoconvert
zhcon
jfbterm
chinput
fcitx
iceweasel-l10n-zh-cn
im-switch
kde-i18n-zhcn
mlterm
paps
rxvt-ml
rxvt-unicode-ml
scim-pinyin
scim-tables-zh
stardic
ttf-arphic-gbsn00lp
ttf-arphic-gkai00mp
unifont
x-ttcidfont-conf
xfonts-intl-chinese
xfonts-intl-chinese-big
openoffice.org-help-zh-cn
openoffice.org-l10n-zh-cn
xfonts-wqy
debian-zh-faq-t
fortune-zh
manpages-zh
ttf2pt1
ttf2pt1-chinese
zh-autoconvert
zhcon
jfbterm
iceweasel-l10n-zh-tw
im-switch
kde-i18n-zhtw
mlterm
mlterm-tools
paps
rxvt-beta
rxvt-unicode-ml
scim-chewing
scim-tables-zh
stardict
ttf-arphic-bkai00mp
ttf-arphic-uming
unifont
x-ttcidfont-conf
xfonts-intl-chinese
gcin
openoffice.org-help-zh-tw
openoffice.org-l10n-zh-tw
xfonts-wqy
aspell-hr
dict-freedict-cro-eng
dict-freedict-eng-cro
dict-freedict-scr-eng
doc-linux-hr
enca
myspell-hr
texlive-lang-croatian
locales
kde-i18n-hr
openoffice.org-hyphenation-hr
sylpheed-claws-gtk2-i18n
openoffice.org-l10n-hr
xfonts-biznet-100dpi
xfonts-biznet-75dpi
xfonts-biznet-base
xfonts-terminus
konwert
language-env
console-cyrillic
t1-cyrillic
t1-teams
ttf-arhangai
xfonts-bolkhov-75dpi
xfonts-bolkhov-cp1251-75dpi
xfonts-bolkhov-cp1251-misc
xfonts-bolkhov-koi8r-75dpi
xfonts-bolkhov-koi8r-misc
xfonts-bolkhov-koi8u-75dpi
xfonts-bolkhov-koi8u-misc
xfonts-bolkhov-misc
xfonts-cronyx-100dpi
xfonts-cronyx-cp1251-100dpi
xfonts-cronyx-isocyr-100dpi
xfonts-cronyx-isocyr-75dpi
xfonts-cronyx-isocyr-misc
xfonts-cronyx-koi8r-100dpi
xfonts-cronyx-koi8u-100dpi
xxkb
openoffice.org-l10n-be-by
openoffice.org-l10n-bg
openoffice.org-l10n-ru
openoffice.org-l10n-sr-cs
ttf-thryomanes
aspell-cs
iczech
myspell-cs-cz
iceweasel-l10n-cs
kde-i18n-cs
openoffice.org-thesaurus-cs
openoffice.org-help-cs
openoffice.org-l10n-cs
xfonts-terminus
aspell-da
idanish
language-env
wdanish
util-linux-locales
iceweasel-l10n-da
kde-i18n-da
openoffice.org-help-da
openoffice.org-l10n-da
aspell-nl
idutch
myspell-nl
wdutch
iceweasel-l10n-nl
kde-i18n-nl
openoffice.org-help-nl
openoffice.org-l10n-nl
openoffice.org-help-dz
openoffice.org-l10n-dz
ttf-dzongkha
kde-i18n-eo
myspell-eo
openoffice.org-l10n-eo
kde-i18n-et
openoffice.org-help-et
openoffice.org-l10n-et
aspell-fi
ifinnish
myspell-fi
wfinnish
iceweasel-l10n-fi
kde-i18n-fi
openoffice.org-l10n-fi
aspell-fr
doc-debian-fr
doc-linux-fr-text
ifrench-gut
language-env
manpages-fr
myspell-fr-gut
wfrench
iceweasel-l10n-fr
kde-i18n-fr
xfonts-intl-european
openoffice.org-help-fr
openoffice.org-l10n-fr
aspell-gl-minimos
kde-i18n-gl
ttf-bpg-georgian-fonts
openoffice.org-l10n-ka
ding
doc-linux-de
language-env
manpages-de
trans-de-en
ingerman
myspell-de-at
myspell-de-ch
myspell-de-de
wngerman
iceweasel-l10n-de
kde-i18n-de
openoffice.org-hyphenation-de
openoffice.org-thesaurus-de
openoffice.org-thesaurus-de-ch
openoffice.org-help-de
openoffice.org-l10n-de
language-env
myspell-el-gr
iceweasel-l10n-el
kde-i18n-el
ttf-mgopen
xfonts-intl-european
openoffice.org-l10n-el
ttf-freefont
ttf-thryomanes
aspell-he
bidiv
culmus
hspell
libfribidi0
libhdate1
mlterm
myspell-he
hdate-applet
hspell-gui
iceweasel-l10n-he
kde-i18n-he
openoffice.org-l10n-he
aspell-hi
language-env
ttf-devanagari-fonts
kde-i18n-hi
openoffice.org-help-hi-in
openoffice.org-l10n-hi-in
ttf-devanagari-fonts
aspell-hu
hunspell
ihungarian
manpages-hu
myspell-hu
gsfonts-x11
iceweasel-l10n-hu
kde-i18n-hu
myspell-hu
openoffice.org-hyphenation-hu
ttf-dejavu
ttf-georgewilliams
ttf-isabella
ttf-sil-charis
ttf-sil-doulos
xfonts-100dpi-transcoded
xfonts-base
openoffice.org-help-hu
openoffice.org-l10n-hu
ttf-freefont
ttf-junicode
ttf-opensymbol
ttf-thryomanes
xfonts-terminus
aspell-is
kde-i18n-is
aspell-ga
myspell-ga
iceweasel-l10n-ga-ie
kde-i18n-ga
openoffice.org-l10n-ga
apt-howto-it
aspell-it
debian-reference-it
doc-linux-it
doc-linux-it-text
fortunes-it
iitalian
language-env
maint-guide-it
manpages-it
myspell-it
witalian
iceweasel-l10n-it
kde-i18n-it
openoffice.org-thesaurus-it
xfonts-intl-european
openoffice.org-help-it
openoffice.org-l10n-it
doc-linux-ja-text
language-env
lv
nkf
uim-anthy
uim-fep
uim-utils
unifont
anthy
jfbterm
manpages-ja
manpages-ja-dev
doc-linux-ja-html
iceweasel-l10n-ja
kde-i18n-ja
ttf-kochi-gothic
ttf-kochi-mincho
uim
openoffice.org-help-ja
openoffice.org-l10n-ja
ttf-vlgothic
khmerconverter
kde-i18n-km
ttf-khmeros
openoffice.org-help-km
openoffice.org-l10n-km
language-env
manpages-ko
jfbterm
iceweasel-l10n-ko
imhangul
imhangul-status-applet
kde-i18n-ko
nabi
ttf-baekmuk
ttf-unfonts
xfonts-baekmuk
openoffice.org-help-ko
openoffice.org-l10n-ko
kde-i18n-lv
openoffice.org-l10n-lv
aspell-lt
ilithuanian
language-env
myspell-lt
iceweasel-l10n-lt
kde-i18n-lt
openoffice.org-hyphenation-lt
openoffice.org-l10n-lt
language-env
iceweasel-l10n-mk
kde-i18n-mk
ttf-dejavu
openoffice.org-l10n-mk
openoffice.org-l10n-ne
ttf-devanagari-fonts
kde-i18n-se
aspell-no
inorwegian
language-env
myspell-nb
myspell-nn
wnorwegian
locales
util-linux-locales
iceweasel-l10n-nb-no
iceweasel-l10n-nn-no
kde-i18n-nb
kde-i18n-nn
openoffice.org-l10n-nb
openoffice.org-l10n-nn
language-env
aspell-fa
ttf-farsiweb
kde-i18n-fa
openoffice.org-l10n-fa
doc-linux-pl
doc-linux-pl-html
fonty
ipolish
konwert
language-env
manpages-pl
manpages-pl-dev
myspell-pl
wpolish
iceweasel-l10n-pl
kde-i18n-pl
openoffice.org-help-pl
openoffice.org-l10n-pl
xfonts-terminus
aspell-pt-pt
iportuguese
myspell-pt-pt
wportuguese
kde-i18n-pt
xfonts-intl-european
openoffice.org-l10n-pt
aspell-pa
language-env
iceweasel-l10n-pa-in
kde-i18n-pa
openoffice.org-l10n-pa-in
ttf-punjabi-fonts
aspell-ro
language-env
console-terminus
locales
util-linux-locales
kde-i18n-ro
ttf-dejavu
ttf-freefont
xfonts-terminus
irussian
konwert
language-env
manpages-ru
mueller7-dict
myspell-ru
re
console-cyrillic
iceweasel-l10n-ru
kde-i18n-ru
xfonts-bolkhov-koi8r-75dpi
xfonts-bolkhov-koi8r-misc
xfonts-cronyx-koi8r-100dpi
xfonts-intl-european
openoffice.org-help-ru
openoffice.org-l10n-ru
dict-freedict-scr-eng
doc-linux-hr
language-env
texlive-lang-other
kde-i18n-sr
kde-i18n-srlatin
koffice-i18n-sr
koffice-i18n-srlatin
sylpheed-claws-gtk2-i18n
openoffice.org-l10n-sr-cs
xfonts-biznet-100dpi
xfonts-biznet-75dpi
xfonts-biznet-base
xfonts-terminus
aspell-sk
fonty
myspell-sk
iceweasel-l10n-sk
kde-i18n-sk
openoffice.org-thesaurus-sk
openoffice.org-l10n-sk
xfonts-terminus
aspell-sl
myspell-sl
iceweasel-l10n-sl
kde-i18n-sl
openoffice.org-help-sl
openoffice.org-l10n-sl
xfonts-terminus
aspell-es
debian-reference-es
doc-debian-es
doc-linux-es
ispanish
language-env
manpages-es
myspell-es
wspanish
util-linux-locales
iceweasel-l10n-es-ar
iceweasel-l10n-es-es
kde-i18n-es
openoffice.org-help-es
openoffice.org-l10n-es
aspell-sv
iswedish
myspell-sv-se
wswedish
locales
util-linux-locales
gimp-help-sv
iceweasel-l10n-sv-se
kde-i18n-sv
openoffice.org-help-sv
openoffice.org-l10n-sv
aspell-tl
kde-i18n-ta
tamil-gtk2im
openoffice.org-l10n-ta-in
ttf-tamil-fonts
language-env
myspell-th
swath
gtk-im-libthai
pango-libthai
xfonts-thai
xiterm+thai
openoffice.org-l10n-th
language-env
manpages-tr
console-terminus
locales
util-linux-locales
iceweasel-l10n-tr
kde-i18n-tr
openoffice.org-l10n-tr
xfonts-terminus
apt-howto-uk
aspell-uk
doc-debian-uk
iukrainian
konwert
language-env
myspell-uk
console-cyrillic
kde-i18n-uk
ttf-dejavu
xfonts-bolkhov-75dpi
xfonts-bolkhov-koi8u-75dpi
xfonts-bolkhov-koi8u-misc
xfonts-bolkhov-misc
xfonts-cronyx-100dpi
xfonts-cronyx-koi8u-100dpi
xfonts-intl-european
openoffice.org-l10n-uk
openoffice.org-l10n-vi
aspell-cy
kde-i18n-cy
openoffice.org-l10n-cy
openoffice.org-l10n-xh
k3b
kde
kde-core
kdeartwork
kdemultimedia
kdeutils
kdm
libqt-perl
menu-xdg
kdeadmin
kdegraphics
kdenetwork
kdepim
kpackage
network-manager-kde
openoffice.org-kde
gdm
xfce4
xfce4-goodies
xfce4-mixer
xfmedia
xfprint4
mousepad
openoffice.org-gtk
orage
xfce4-terminal
xsane

View File

@ -1,616 +0,0 @@
/* This file lists the packages that have a Task: field
* and that should be included on CDs 1 and 2 for KDE
*
* The list should be regenerated from time to time, using the
* update-tasks target of the Makefile.
*
* Last update: $Date: 2006-10-28 17:40:33 -0400 (Sat, 28 Oct 2006) $
*
*/
k3b
kde
kde-core
kdeartwork
kdemultimedia
kdeutils
kdm
libqt-perl
menu-xdg
kdeadmin
kdegraphics
kdenetwork
kdepim
kpackage
network-manager-kde
openoffice.org-kde
alsa-base
anacron
cupsys
cupsys-bsd
cupsys-client
cupsys-driver-gutenprint
desktop-base
discover1
eject
foomatic-db-engine
foomatic-db-gutenprint
foomatic-db-hpijs
foomatic-filters-ppds
foomatic-gui
gimp
gimp-print
hotkey-setup
hpijs
hplip
iceweasel
menu
myspell-en-us
openoffice.org-thesaurus-en-us
printconf
twm
xresprobe
alsa-utils
avahi-daemon
libnss-mdns
openoffice.org
openoffice.org-gcj
openoffice.org-help-en-us
xdg-utils
xorg
xserver-xorg-input-all
xserver-xorg-video-all
acpid
anacron
apmd
bluetooth
cpufrequtils
hibernate
hotkey-setup
pcmciautils
wireless-tools
acpi
acpi-support
uswsusp
wpasupplicant
aspell-ar
itools
language-env
ttf-arabeyes
xfonts-intl-arabic
iceweasel-l10n-ar
kde-i18n-ar
openoffice.org-l10n-ar
ttf-farsiweb
ttf-kacst
iceweasel-l10n-eu
kde-i18n-eu
language-env
openoffice.org-l10n-be-by
aspell-bn
language-env
ttf-bengali-fonts
kde-i18n-bn
openoffice.org-l10n-bn
ttf-bengali-fonts
aspell-hr
dict-freedict-scr-eng
doc-linux-hr
itools
myspell-hr
locales
kde-i18n-bs
openoffice.org-l10n-bs
xfonts-biznet-100dpi
xfonts-biznet-75dpi
xfonts-biznet-base
xfonts-terminus
aspell-pt-br
ibrazilian
manpages-pt
myspell-pt-br
wbrazilian
util-linux-locales
iceweasel-l10n-pt-br
kde-i18n-ptbr
broffice.org
aspell-bg
ibulgarian
myspell-bg
wbulgarian
iceweasel-l10n-bg
kde-i18n-bg
ttf-dejavu
openoffice.org-l10n-bg
aspell-ca
icatalan
language-env
myspell-ca
wcatalan
util-linux-locales
iceweasel-l10n-ca
kde-i18n-ca
openoffice.org-l10n-ca
debian-zh-faq-s
fortune-zh
manpages-zh
ttf2pt1
ttf2pt1-chinese
zh-autoconvert
zhcon
jfbterm
chinput
fcitx
iceweasel-l10n-zh-cn
im-switch
kde-i18n-zhcn
mlterm
paps
rxvt-ml
rxvt-unicode-ml
scim-pinyin
scim-tables-zh
stardic
ttf-arphic-gbsn00lp
ttf-arphic-gkai00mp
unifont
x-ttcidfont-conf
xfonts-intl-chinese
xfonts-intl-chinese-big
openoffice.org-help-zh-cn
openoffice.org-l10n-zh-cn
xfonts-wqy
debian-zh-faq-t
fortune-zh
manpages-zh
ttf2pt1
ttf2pt1-chinese
zh-autoconvert
zhcon
jfbterm
iceweasel-l10n-zh-tw
im-switch
kde-i18n-zhtw
mlterm
mlterm-tools
paps
rxvt-beta
rxvt-unicode-ml
scim-chewing
scim-tables-zh
stardict
ttf-arphic-bkai00mp
ttf-arphic-uming
unifont
x-ttcidfont-conf
xfonts-intl-chinese
gcin
openoffice.org-help-zh-tw
openoffice.org-l10n-zh-tw
xfonts-wqy
aspell-hr
dict-freedict-cro-eng
dict-freedict-eng-cro
dict-freedict-scr-eng
doc-linux-hr
enca
myspell-hr
texlive-lang-croatian
locales
kde-i18n-hr
openoffice.org-hyphenation-hr
sylpheed-claws-gtk2-i18n
openoffice.org-l10n-hr
xfonts-biznet-100dpi
xfonts-biznet-75dpi
xfonts-biznet-base
xfonts-terminus
konwert
language-env
console-cyrillic
t1-cyrillic
t1-teams
ttf-arhangai
xfonts-bolkhov-75dpi
xfonts-bolkhov-cp1251-75dpi
xfonts-bolkhov-cp1251-misc
xfonts-bolkhov-koi8r-75dpi
xfonts-bolkhov-koi8r-misc
xfonts-bolkhov-koi8u-75dpi
xfonts-bolkhov-koi8u-misc
xfonts-bolkhov-misc
xfonts-cronyx-100dpi
xfonts-cronyx-cp1251-100dpi
xfonts-cronyx-isocyr-100dpi
xfonts-cronyx-isocyr-75dpi
xfonts-cronyx-isocyr-misc
xfonts-cronyx-koi8r-100dpi
xfonts-cronyx-koi8u-100dpi
xxkb
openoffice.org-l10n-be-by
openoffice.org-l10n-bg
openoffice.org-l10n-ru
openoffice.org-l10n-sr-cs
ttf-thryomanes
aspell-cs
iczech
myspell-cs-cz
iceweasel-l10n-cs
kde-i18n-cs
openoffice.org-thesaurus-cs
openoffice.org-help-cs
openoffice.org-l10n-cs
xfonts-terminus
aspell-da
idanish
language-env
wdanish
util-linux-locales
iceweasel-l10n-da
kde-i18n-da
openoffice.org-help-da
openoffice.org-l10n-da
aspell-nl
idutch
myspell-nl
wdutch
iceweasel-l10n-nl
kde-i18n-nl
openoffice.org-help-nl
openoffice.org-l10n-nl
openoffice.org-help-dz
openoffice.org-l10n-dz
ttf-dzongkha
kde-i18n-eo
myspell-eo
openoffice.org-l10n-eo
kde-i18n-et
openoffice.org-help-et
openoffice.org-l10n-et
aspell-fi
ifinnish
myspell-fi
wfinnish
iceweasel-l10n-fi
kde-i18n-fi
openoffice.org-l10n-fi
aspell-fr
doc-debian-fr
doc-linux-fr-text
ifrench-gut
language-env
manpages-fr
myspell-fr-gut
wfrench
iceweasel-l10n-fr
kde-i18n-fr
xfonts-intl-european
openoffice.org-help-fr
openoffice.org-l10n-fr
aspell-gl-minimos
kde-i18n-gl
ttf-bpg-georgian-fonts
openoffice.org-l10n-ka
ding
doc-linux-de
language-env
manpages-de
trans-de-en
ingerman
myspell-de-at
myspell-de-ch
myspell-de-de
wngerman
iceweasel-l10n-de
kde-i18n-de
openoffice.org-hyphenation-de
openoffice.org-thesaurus-de
openoffice.org-thesaurus-de-ch
openoffice.org-help-de
openoffice.org-l10n-de
language-env
myspell-el-gr
iceweasel-l10n-el
kde-i18n-el
ttf-mgopen
xfonts-intl-european
openoffice.org-l10n-el
ttf-freefont
ttf-thryomanes
aspell-he
bidiv
culmus
hspell
libfribidi0
libhdate1
mlterm
myspell-he
hdate-applet
hspell-gui
iceweasel-l10n-he
kde-i18n-he
openoffice.org-l10n-he
aspell-hi
language-env
ttf-devanagari-fonts
kde-i18n-hi
openoffice.org-help-hi-in
openoffice.org-l10n-hi-in
ttf-devanagari-fonts
aspell-hu
hunspell
ihungarian
manpages-hu
myspell-hu
gsfonts-x11
iceweasel-l10n-hu
kde-i18n-hu
myspell-hu
openoffice.org-hyphenation-hu
ttf-dejavu
ttf-georgewilliams
ttf-isabella
ttf-sil-charis
ttf-sil-doulos
xfonts-100dpi-transcoded
xfonts-base
openoffice.org-help-hu
openoffice.org-l10n-hu
ttf-freefont
ttf-junicode
ttf-opensymbol
ttf-thryomanes
xfonts-terminus
aspell-is
kde-i18n-is
aspell-ga
myspell-ga
iceweasel-l10n-ga-ie
kde-i18n-ga
openoffice.org-l10n-ga
apt-howto-it
aspell-it
debian-reference-it
doc-linux-it
doc-linux-it-text
fortunes-it
iitalian
language-env
maint-guide-it
manpages-it
myspell-it
witalian
iceweasel-l10n-it
kde-i18n-it
openoffice.org-thesaurus-it
xfonts-intl-european
openoffice.org-help-it
openoffice.org-l10n-it
doc-linux-ja-text
language-env
lv
nkf
uim-anthy
uim-fep
uim-utils
unifont
anthy
jfbterm
manpages-ja
manpages-ja-dev
doc-linux-ja-html
iceweasel-l10n-ja
kde-i18n-ja
ttf-kochi-gothic
ttf-kochi-mincho
uim
openoffice.org-help-ja
openoffice.org-l10n-ja
ttf-vlgothic
khmerconverter
kde-i18n-km
ttf-khmeros
openoffice.org-help-km
openoffice.org-l10n-km
language-env
manpages-ko
jfbterm
iceweasel-l10n-ko
imhangul
imhangul-status-applet
kde-i18n-ko
nabi
ttf-baekmuk
ttf-unfonts
xfonts-baekmuk
openoffice.org-help-ko
openoffice.org-l10n-ko
kde-i18n-lv
openoffice.org-l10n-lv
aspell-lt
ilithuanian
language-env
myspell-lt
iceweasel-l10n-lt
kde-i18n-lt
openoffice.org-hyphenation-lt
openoffice.org-l10n-lt
language-env
iceweasel-l10n-mk
kde-i18n-mk
ttf-dejavu
openoffice.org-l10n-mk
openoffice.org-l10n-ne
ttf-devanagari-fonts
kde-i18n-se
aspell-no
inorwegian
language-env
myspell-nb
myspell-nn
wnorwegian
locales
util-linux-locales
iceweasel-l10n-nb-no
iceweasel-l10n-nn-no
kde-i18n-nb
kde-i18n-nn
openoffice.org-l10n-nb
openoffice.org-l10n-nn
language-env
aspell-fa
ttf-farsiweb
kde-i18n-fa
openoffice.org-l10n-fa
doc-linux-pl
doc-linux-pl-html
fonty
ipolish
konwert
language-env
manpages-pl
manpages-pl-dev
myspell-pl
wpolish
iceweasel-l10n-pl
kde-i18n-pl
openoffice.org-help-pl
openoffice.org-l10n-pl
xfonts-terminus
aspell-pt-pt
iportuguese
myspell-pt-pt
wportuguese
kde-i18n-pt
xfonts-intl-european
openoffice.org-l10n-pt
aspell-pa
language-env
iceweasel-l10n-pa-in
kde-i18n-pa
openoffice.org-l10n-pa-in
ttf-punjabi-fonts
aspell-ro
language-env
console-terminus
locales
util-linux-locales
kde-i18n-ro
ttf-dejavu
ttf-freefont
xfonts-terminus
irussian
konwert
language-env
manpages-ru
mueller7-dict
myspell-ru
re
console-cyrillic
iceweasel-l10n-ru
kde-i18n-ru
xfonts-bolkhov-koi8r-75dpi
xfonts-bolkhov-koi8r-misc
xfonts-cronyx-koi8r-100dpi
xfonts-intl-european
openoffice.org-help-ru
openoffice.org-l10n-ru
dict-freedict-scr-eng
doc-linux-hr
language-env
texlive-lang-other
kde-i18n-sr
kde-i18n-srlatin
koffice-i18n-sr
koffice-i18n-srlatin
sylpheed-claws-gtk2-i18n
openoffice.org-l10n-sr-cs
xfonts-biznet-100dpi
xfonts-biznet-75dpi
xfonts-biznet-base
xfonts-terminus
aspell-sk
fonty
myspell-sk
iceweasel-l10n-sk
kde-i18n-sk
openoffice.org-thesaurus-sk
openoffice.org-l10n-sk
xfonts-terminus
aspell-sl
myspell-sl
iceweasel-l10n-sl
kde-i18n-sl
openoffice.org-help-sl
openoffice.org-l10n-sl
xfonts-terminus
aspell-es
debian-reference-es
doc-debian-es
doc-linux-es
ispanish
language-env
manpages-es
myspell-es
wspanish
util-linux-locales
iceweasel-l10n-es-ar
iceweasel-l10n-es-es
kde-i18n-es
openoffice.org-help-es
openoffice.org-l10n-es
aspell-sv
iswedish
myspell-sv-se
wswedish
locales
util-linux-locales
gimp-help-sv
iceweasel-l10n-sv-se
kde-i18n-sv
openoffice.org-help-sv
openoffice.org-l10n-sv
aspell-tl
kde-i18n-ta
tamil-gtk2im
openoffice.org-l10n-ta-in
ttf-tamil-fonts
language-env
myspell-th
swath
gtk-im-libthai
pango-libthai
xfonts-thai
xiterm+thai
openoffice.org-l10n-th
language-env
manpages-tr
console-terminus
locales
util-linux-locales
iceweasel-l10n-tr
kde-i18n-tr
openoffice.org-l10n-tr
xfonts-terminus
apt-howto-uk
aspell-uk
doc-debian-uk
iukrainian
konwert
language-env
myspell-uk
console-cyrillic
kde-i18n-uk
ttf-dejavu
xfonts-bolkhov-75dpi
xfonts-bolkhov-koi8u-75dpi
xfonts-bolkhov-koi8u-misc
xfonts-bolkhov-misc
xfonts-cronyx-100dpi
xfonts-cronyx-koi8u-100dpi
xfonts-intl-european
openoffice.org-l10n-uk
openoffice.org-l10n-vi
aspell-cy
kde-i18n-cy
openoffice.org-l10n-cy
openoffice.org-l10n-xh

View File

@ -1,611 +0,0 @@
/* This file lists the packages that have a Task: field
* and that should be included on CDs 1 and 2 for Xfce
*
* The list should be regenerated from time to time, using the
* update-tasks target of the Makefile.
*
* Last update: $Date: 2006-10-28 17:40:33 -0400 (Sat, 28 Oct 2006) $
*
*/
gdm
xfce4
xfce4-goodies
xfce4-mixer
xfmedia
xfprint4
mousepad
openoffice.org-gtk
orage
xfce4-terminal
xsane
alsa-base
anacron
cupsys
cupsys-bsd
cupsys-client
cupsys-driver-gutenprint
desktop-base
discover1
eject
foomatic-db-engine
foomatic-db-gutenprint
foomatic-db-hpijs
foomatic-filters-ppds
foomatic-gui
gimp
gimp-print
hotkey-setup
hpijs
hplip
iceweasel
menu
myspell-en-us
openoffice.org-thesaurus-en-us
printconf
twm
xresprobe
alsa-utils
avahi-daemon
libnss-mdns
openoffice.org
openoffice.org-gcj
openoffice.org-help-en-us
xdg-utils
xorg
xserver-xorg-input-all
xserver-xorg-video-all
acpid
anacron
apmd
bluetooth
cpufrequtils
hibernate
hotkey-setup
pcmciautils
wireless-tools
acpi
acpi-support
uswsusp
wpasupplicant
aspell-ar
itools
language-env
ttf-arabeyes
xfonts-intl-arabic
iceweasel-l10n-ar
kde-i18n-ar
openoffice.org-l10n-ar
ttf-farsiweb
ttf-kacst
iceweasel-l10n-eu
kde-i18n-eu
language-env
openoffice.org-l10n-be-by
aspell-bn
language-env
ttf-bengali-fonts
kde-i18n-bn
openoffice.org-l10n-bn
ttf-bengali-fonts
aspell-hr
dict-freedict-scr-eng
doc-linux-hr
itools
myspell-hr
locales
kde-i18n-bs
openoffice.org-l10n-bs
xfonts-biznet-100dpi
xfonts-biznet-75dpi
xfonts-biznet-base
xfonts-terminus
aspell-pt-br
ibrazilian
manpages-pt
myspell-pt-br
wbrazilian
util-linux-locales
iceweasel-l10n-pt-br
kde-i18n-ptbr
broffice.org
aspell-bg
ibulgarian
myspell-bg
wbulgarian
iceweasel-l10n-bg
kde-i18n-bg
ttf-dejavu
openoffice.org-l10n-bg
aspell-ca
icatalan
language-env
myspell-ca
wcatalan
util-linux-locales
iceweasel-l10n-ca
kde-i18n-ca
openoffice.org-l10n-ca
debian-zh-faq-s
fortune-zh
manpages-zh
ttf2pt1
ttf2pt1-chinese
zh-autoconvert
zhcon
jfbterm
chinput
fcitx
iceweasel-l10n-zh-cn
im-switch
kde-i18n-zhcn
mlterm
paps
rxvt-ml
rxvt-unicode-ml
scim-pinyin
scim-tables-zh
stardic
ttf-arphic-gbsn00lp
ttf-arphic-gkai00mp
unifont
x-ttcidfont-conf
xfonts-intl-chinese
xfonts-intl-chinese-big
openoffice.org-help-zh-cn
openoffice.org-l10n-zh-cn
xfonts-wqy
debian-zh-faq-t
fortune-zh
manpages-zh
ttf2pt1
ttf2pt1-chinese
zh-autoconvert
zhcon
jfbterm
iceweasel-l10n-zh-tw
im-switch
kde-i18n-zhtw
mlterm
mlterm-tools
paps
rxvt-beta
rxvt-unicode-ml
scim-chewing
scim-tables-zh
stardict
ttf-arphic-bkai00mp
ttf-arphic-uming
unifont
x-ttcidfont-conf
xfonts-intl-chinese
gcin
openoffice.org-help-zh-tw
openoffice.org-l10n-zh-tw
xfonts-wqy
aspell-hr
dict-freedict-cro-eng
dict-freedict-eng-cro
dict-freedict-scr-eng
doc-linux-hr
enca
myspell-hr
texlive-lang-croatian
locales
kde-i18n-hr
openoffice.org-hyphenation-hr
sylpheed-claws-gtk2-i18n
openoffice.org-l10n-hr
xfonts-biznet-100dpi
xfonts-biznet-75dpi
xfonts-biznet-base
xfonts-terminus
konwert
language-env
console-cyrillic
t1-cyrillic
t1-teams
ttf-arhangai
xfonts-bolkhov-75dpi
xfonts-bolkhov-cp1251-75dpi
xfonts-bolkhov-cp1251-misc
xfonts-bolkhov-koi8r-75dpi
xfonts-bolkhov-koi8r-misc
xfonts-bolkhov-koi8u-75dpi
xfonts-bolkhov-koi8u-misc
xfonts-bolkhov-misc
xfonts-cronyx-100dpi
xfonts-cronyx-cp1251-100dpi
xfonts-cronyx-isocyr-100dpi
xfonts-cronyx-isocyr-75dpi
xfonts-cronyx-isocyr-misc
xfonts-cronyx-koi8r-100dpi
xfonts-cronyx-koi8u-100dpi
xxkb
openoffice.org-l10n-be-by
openoffice.org-l10n-bg
openoffice.org-l10n-ru
openoffice.org-l10n-sr-cs
ttf-thryomanes
aspell-cs
iczech
myspell-cs-cz
iceweasel-l10n-cs
kde-i18n-cs
openoffice.org-thesaurus-cs
openoffice.org-help-cs
openoffice.org-l10n-cs
xfonts-terminus
aspell-da
idanish
language-env
wdanish
util-linux-locales
iceweasel-l10n-da
kde-i18n-da
openoffice.org-help-da
openoffice.org-l10n-da
aspell-nl
idutch
myspell-nl
wdutch
iceweasel-l10n-nl
kde-i18n-nl
openoffice.org-help-nl
openoffice.org-l10n-nl
openoffice.org-help-dz
openoffice.org-l10n-dz
ttf-dzongkha
kde-i18n-eo
myspell-eo
openoffice.org-l10n-eo
kde-i18n-et
openoffice.org-help-et
openoffice.org-l10n-et
aspell-fi
ifinnish
myspell-fi
wfinnish
iceweasel-l10n-fi
kde-i18n-fi
openoffice.org-l10n-fi
aspell-fr
doc-debian-fr
doc-linux-fr-text
ifrench-gut
language-env
manpages-fr
myspell-fr-gut
wfrench
iceweasel-l10n-fr
kde-i18n-fr
xfonts-intl-european
openoffice.org-help-fr
openoffice.org-l10n-fr
aspell-gl-minimos
kde-i18n-gl
ttf-bpg-georgian-fonts
openoffice.org-l10n-ka
ding
doc-linux-de
language-env
manpages-de
trans-de-en
ingerman
myspell-de-at
myspell-de-ch
myspell-de-de
wngerman
iceweasel-l10n-de
kde-i18n-de
openoffice.org-hyphenation-de
openoffice.org-thesaurus-de
openoffice.org-thesaurus-de-ch
openoffice.org-help-de
openoffice.org-l10n-de
language-env
myspell-el-gr
iceweasel-l10n-el
kde-i18n-el
ttf-mgopen
xfonts-intl-european
openoffice.org-l10n-el
ttf-freefont
ttf-thryomanes
aspell-he
bidiv
culmus
hspell
libfribidi0
libhdate1
mlterm
myspell-he
hdate-applet
hspell-gui
iceweasel-l10n-he
kde-i18n-he
openoffice.org-l10n-he
aspell-hi
language-env
ttf-devanagari-fonts
kde-i18n-hi
openoffice.org-help-hi-in
openoffice.org-l10n-hi-in
ttf-devanagari-fonts
aspell-hu
hunspell
ihungarian
manpages-hu
myspell-hu
gsfonts-x11
iceweasel-l10n-hu
kde-i18n-hu
myspell-hu
openoffice.org-hyphenation-hu
ttf-dejavu
ttf-georgewilliams
ttf-isabella
ttf-sil-charis
ttf-sil-doulos
xfonts-100dpi-transcoded
xfonts-base
openoffice.org-help-hu
openoffice.org-l10n-hu
ttf-freefont
ttf-junicode
ttf-opensymbol
ttf-thryomanes
xfonts-terminus
aspell-is
kde-i18n-is
aspell-ga
myspell-ga
iceweasel-l10n-ga-ie
kde-i18n-ga
openoffice.org-l10n-ga
apt-howto-it
aspell-it
debian-reference-it
doc-linux-it
doc-linux-it-text
fortunes-it
iitalian
language-env
maint-guide-it
manpages-it
myspell-it
witalian
iceweasel-l10n-it
kde-i18n-it
openoffice.org-thesaurus-it
xfonts-intl-european
openoffice.org-help-it
openoffice.org-l10n-it
doc-linux-ja-text
language-env
lv
nkf
uim-anthy
uim-fep
uim-utils
unifont
anthy
jfbterm
manpages-ja
manpages-ja-dev
doc-linux-ja-html
iceweasel-l10n-ja
kde-i18n-ja
ttf-kochi-gothic
ttf-kochi-mincho
uim
openoffice.org-help-ja
openoffice.org-l10n-ja
ttf-vlgothic
khmerconverter
kde-i18n-km
ttf-khmeros
openoffice.org-help-km
openoffice.org-l10n-km
language-env
manpages-ko
jfbterm
iceweasel-l10n-ko
imhangul
imhangul-status-applet
kde-i18n-ko
nabi
ttf-baekmuk
ttf-unfonts
xfonts-baekmuk
openoffice.org-help-ko
openoffice.org-l10n-ko
kde-i18n-lv
openoffice.org-l10n-lv
aspell-lt
ilithuanian
language-env
myspell-lt
iceweasel-l10n-lt
kde-i18n-lt
openoffice.org-hyphenation-lt
openoffice.org-l10n-lt
language-env
iceweasel-l10n-mk
kde-i18n-mk
ttf-dejavu
openoffice.org-l10n-mk
openoffice.org-l10n-ne
ttf-devanagari-fonts
kde-i18n-se
aspell-no
inorwegian
language-env
myspell-nb
myspell-nn
wnorwegian
locales
util-linux-locales
iceweasel-l10n-nb-no
iceweasel-l10n-nn-no
kde-i18n-nb
kde-i18n-nn
openoffice.org-l10n-nb
openoffice.org-l10n-nn
language-env
aspell-fa
ttf-farsiweb
kde-i18n-fa
openoffice.org-l10n-fa
doc-linux-pl
doc-linux-pl-html
fonty
ipolish
konwert
language-env
manpages-pl
manpages-pl-dev
myspell-pl
wpolish
iceweasel-l10n-pl
kde-i18n-pl
openoffice.org-help-pl
openoffice.org-l10n-pl
xfonts-terminus
aspell-pt-pt
iportuguese
myspell-pt-pt
wportuguese
kde-i18n-pt
xfonts-intl-european
openoffice.org-l10n-pt
aspell-pa
language-env
iceweasel-l10n-pa-in
kde-i18n-pa
openoffice.org-l10n-pa-in
ttf-punjabi-fonts
aspell-ro
language-env
console-terminus
locales
util-linux-locales
kde-i18n-ro
ttf-dejavu
ttf-freefont
xfonts-terminus
irussian
konwert
language-env
manpages-ru
mueller7-dict
myspell-ru
re
console-cyrillic
iceweasel-l10n-ru
kde-i18n-ru
xfonts-bolkhov-koi8r-75dpi
xfonts-bolkhov-koi8r-misc
xfonts-cronyx-koi8r-100dpi
xfonts-intl-european
openoffice.org-help-ru
openoffice.org-l10n-ru
dict-freedict-scr-eng
doc-linux-hr
language-env
texlive-lang-other
kde-i18n-sr
kde-i18n-srlatin
koffice-i18n-sr
koffice-i18n-srlatin
sylpheed-claws-gtk2-i18n
openoffice.org-l10n-sr-cs
xfonts-biznet-100dpi
xfonts-biznet-75dpi
xfonts-biznet-base
xfonts-terminus
aspell-sk
fonty
myspell-sk
iceweasel-l10n-sk
kde-i18n-sk
openoffice.org-thesaurus-sk
openoffice.org-l10n-sk
xfonts-terminus
aspell-sl
myspell-sl
iceweasel-l10n-sl
kde-i18n-sl
openoffice.org-help-sl
openoffice.org-l10n-sl
xfonts-terminus
aspell-es
debian-reference-es
doc-debian-es
doc-linux-es
ispanish
language-env
manpages-es
myspell-es
wspanish
util-linux-locales
iceweasel-l10n-es-ar
iceweasel-l10n-es-es
kde-i18n-es
openoffice.org-help-es
openoffice.org-l10n-es
aspell-sv
iswedish
myspell-sv-se
wswedish
locales
util-linux-locales
gimp-help-sv
iceweasel-l10n-sv-se
kde-i18n-sv
openoffice.org-help-sv
openoffice.org-l10n-sv
aspell-tl
kde-i18n-ta
tamil-gtk2im
openoffice.org-l10n-ta-in
ttf-tamil-fonts
language-env
myspell-th
swath
gtk-im-libthai
pango-libthai
xfonts-thai
xiterm+thai
openoffice.org-l10n-th
language-env
manpages-tr
console-terminus
locales
util-linux-locales
iceweasel-l10n-tr
kde-i18n-tr
openoffice.org-l10n-tr
xfonts-terminus
apt-howto-uk
aspell-uk
doc-debian-uk
iukrainian
konwert
language-env
myspell-uk
console-cyrillic
kde-i18n-uk
ttf-dejavu
xfonts-bolkhov-75dpi
xfonts-bolkhov-koi8u-75dpi
xfonts-bolkhov-koi8u-misc
xfonts-bolkhov-misc
xfonts-cronyx-100dpi
xfonts-cronyx-koi8u-100dpi
xfonts-intl-european
openoffice.org-l10n-uk
openoffice.org-l10n-vi
aspell-cy
kde-i18n-cy
openoffice.org-l10n-cy
openoffice.org-l10n-xh

View File

@ -1,518 +0,0 @@
/* This file lists the packages that have a Task: field
* and that should be included on CDs 1 and 2
*
* The list should be regenerated from time to time, using the
* update-tasks target of the Makefile.
*
* Last update: $Date$
*
*/
epiphany-browser
gksu
gnome
gnome-desktop-environment
gparted
gstreamer0.10-ffmpeg
gthumb
hal-cups-utils
hardinfo
iceweasel-gnome-support
inkscape
liferea
menu-xdg
network-manager-gnome
openoffice.org-evolution
openoffice.org-gnome
pidgin
rarian-compat
tsclient
update-notifier
xsane
alsa-base
alsa-utils
anacron
avahi-daemon
cpufrequtils
cupsys
cupsys-bsd
cupsys-client
cupsys-driver-gutenprint
desktop-base
eject
foo2zjs
foomatic-filters-ppds
gimp
hpijs
hplip
hp-ppd
iceweasel
kerneloops
libgl1-mesa-dri
libnss-mdns
menu
myspell-en-us
openoffice.org
openoffice.org-gcj
openoffice.org-help-en-us
openoffice.org-thesaurus-en-us
printconf
swfdec-mozilla
twm
vbetool
xdg-utils
xorg
xserver-xorg-input-all
xserver-xorg-video-all
xterm
analog
apache2-doc
apache2-mpm-prefork
libapache2-mod-perl2
libapache2-mod-php5
libapache2-mod-python
acpi
acpid
acpi-support
apmd
avahi-autoipd
bluetooth
hibernate
nvclock
pcmciautils
powertop
radeontool
toshset
wireless-tools
wpasupplicant
exim4
exim4-config
exim4-daemon-light
mailagent
mailx
mutt
procmail
qpopper
sa-exim
spamassassin
uw-imapd
openprinting-ppds
postgresql
postgresql-client
postgresql-contrib
postgresql-doc
bind9
bind9-doc
dlint
dnsutils
lwresd
netatalk
nfs-kernel-server
samba
samba-doc
smartmontools
smbclient
smbfs
swat
winbind
aspell-ar
itools
ttf-arabeyes
xfonts-intl-arabic
hunspell-ar
iceweasel-l10n-ar
openoffice.org-l10n-ar
ttf-farsiweb
ttf-kacst
iceweasel-l10n-eu
openoffice.org-l10n-be-by
aspell-bn
ttf-bengali-fonts
openoffice.org-l10n-bn
aspell-hr
dict-freedict-scr-eng
doc-linux-hr
locales
myspell-hr
openoffice.org-l10n-bs
xfonts-biznet-100dpi
xfonts-biznet-75dpi
xfonts-biznet-base
aspell-pt-br
ibrazilian
manpages-pt
util-linux-locales
wbrazilian
broffice.org
iceweasel-l10n-pt-br
myspell-pt-br
aspell-bg
ibulgarian
wbulgarian
iceweasel-l10n-bg
myspell-bg
openoffice.org-l10n-bg
ttf-dejavu
aspell-ca
icatalan
wcatalan
iceweasel-l10n-ca
myspell-ca
openoffice.org-l10n-ca
debian-zh-faq-s
fortune-zh
jfbterm
manpages-zh
ttf2pt1
ttf2pt1-chinese
zh-autoconvert
zhcon
chinput
fcitx
iceweasel-l10n-zh-cn
im-switch
mlterm
openoffice.org-help-zh-cn
openoffice.org-l10n-zh-cn
paps
rxvt-ml
rxvt-unicode-ml
scim-pinyin
scim-tables-zh
stardic
ttf-arphic-gbsn00lp
ttf-arphic-gkai00mp
unifont
xfonts-intl-chinese
xfonts-intl-chinese-big
xfonts-wqy
x-ttcidfont-conf
iceweasel-l10n-zh-tw
openoffice.org-help-zh-tw
openoffice.org-l10n-zh-tw
scim-chewing
stardict
ttf-arphic-ukai
ttf-arphic-uming
xfonts-efont-unicode
dict-freedict-cro-eng
dict-freedict-eng-cro
enca
texlive-lang-croatian
openoffice.org-hyphenation-hr
openoffice.org-l10n-hr
konwert
openoffice.org-l10n-ru
openoffice.org-l10n-sr-cs
t1-cyrillic
t1-teams
ttf-arhangai
xfonts-bolkhov-75dpi
xfonts-bolkhov-cp1251-75dpi
xfonts-bolkhov-cp1251-misc
xfonts-bolkhov-koi8r-75dpi
xfonts-bolkhov-koi8r-misc
xfonts-bolkhov-koi8u-75dpi
xfonts-bolkhov-koi8u-misc
xfonts-bolkhov-misc
xfonts-cronyx-100dpi
xfonts-cronyx-cp1251-100dpi
xfonts-cronyx-isocyr-100dpi
xfonts-cronyx-isocyr-75dpi
xfonts-cronyx-isocyr-misc
xfonts-cronyx-koi8r-100dpi
xfonts-cronyx-koi8u-100dpi
xxkb
aspell-cs
iczech
iceweasel-l10n-cs
myspell-cs-cz
openoffice.org-help-cs
openoffice.org-l10n-cs
openoffice.org-thesaurus-cs
aspell-da
idanish
wdanish
iceweasel-l10n-da
openoffice.org-help-da
openoffice.org-l10n-da
aspell-nl
idutch
wdutch
iceweasel-l10n-nl
myspell-nl
openoffice.org-help-nl
openoffice.org-l10n-nl
openoffice.org-help-dz
openoffice.org-l10n-dz
ttf-dzongkha
myspell-eo
openoffice.org-l10n-eo
openoffice.org-help-et
openoffice.org-l10n-et
tmispell-voikko
voikko-fi
iceweasel-l10n-fi
openoffice.org-l10n-fi
openoffice.org-voikko
aspell-fr
doc-debian-fr
doc-linux-fr-text
ifrench-gut
manpages-fr
manpages-fr-extra
wfrench
iceweasel-l10n-fr
myspell-fr-gut
openoffice.org-help-fr
openoffice.org-l10n-fr
xfonts-intl-european
aspell-gl-minimos
openoffice.org-help-gl
openoffice.org-l10n-gl
openoffice.org-l10n-ka
ttf-bpg-georgian-fonts
ding
doc-linux-de
ingerman
manpages-de
trans-de-en
wngerman
iceweasel-l10n-de
myspell-de-at
myspell-de-ch
myspell-de-de
openoffice.org-help-de
openoffice.org-hyphenation-de
openoffice.org-l10n-de
openoffice.org-thesaurus-de
openoffice.org-thesaurus-de-ch
language-env
iceweasel-l10n-el
myspell-el-gr
openoffice.org-l10n-el
ttf-freefont
ttf-mgopen
iceweasel-l10n-gu-in
openoffice.org-l10n-gu-in
ttf-gujarati-fonts
aspell-he
bidiv
culmus
hspell
libfribidi0
libhdate1
hspell-gui
iceweasel-l10n-he
myspell-he
openoffice.org-l10n-he
hdate-applet
aspell-hi
ttf-devanagari-fonts
openoffice.org-help-hi-in
openoffice.org-l10n-hi-in
aspell-hu
fortunes-debian-hints
hunspell
ihungarian
manpages-hu
myspell-hu
gsfonts-x11
iceweasel-l10n-hu
openoffice.org-help-hu
openoffice.org-hyphenation-hu
openoffice.org-l10n-hu
ttf-georgewilliams
ttf-isabella
ttf-junicode
ttf-liberation
ttf-okolaks
ttf-opensymbol
ttf-sil-andika
ttf-sil-charis
ttf-sil-doulos
ttf-sil-gentium
ttf-tiresias
xfonts-100dpi-transcoded
xfonts-base
aspell-it
debian-reference-it
doc-linux-it
doc-linux-it-text
fortunes-it
iitalian
maint-guide-it
manpages-it
witalian
iceweasel-l10n-it
myspell-it
openoffice.org-help-it
openoffice.org-l10n-it
openoffice.org-thesaurus-it
doc-linux-ja-text
lv
manpages-ja
manpages-ja-dev
nkf
anthy
doc-linux-ja-html
iceweasel-l10n-ja
openoffice.org-help-ja
openoffice.org-l10n-ja
ttf-sazanami-gothic
ttf-sazanami-mincho
ttf-vlgothic
uim
uim-anthy
icedove
icedove-l10n-ja
uim-applet-gnome
khmerconverter
openoffice.org-help-km
openoffice.org-l10n-km
ttf-khmeros
manpages-ko
iceweasel-l10n-ko
nabi
openoffice.org-help-ko
openoffice.org-l10n-ko
ttf-baekmuk
ttf-unfonts-core
xfonts-baekmuk
imhangul
imhangul-status-applet
openoffice.org-l10n-lv
aspell-lt
ilithuanian
iceweasel-l10n-lt
myspell-lt
openoffice.org-hyphenation-lt
openoffice.org-l10n-lt
iceweasel-l10n-mk
openoffice.org-l10n-mk
openoffice.org-l10n-ml-in
scim-tables-additional
ttf-malayalam-fonts
scim-gtk2-immodule
openoffice.org-l10n-ne
aspell-no
inorwegian
wnorwegian
iceweasel-l10n-nb-no
iceweasel-l10n-nn-no
myspell-nb
myspell-nn
openoffice.org-l10n-nb
openoffice.org-l10n-nn
aspell-fa
openoffice.org-l10n-fa
doc-linux-pl
doc-linux-pl-html
ipolish
manpages-pl
manpages-pl-dev
wpolish
iceweasel-l10n-pl
myspell-pl
openoffice.org-help-pl
openoffice.org-l10n-pl
aspell-pt-pt
iportuguese
wportuguese
myspell-pt-pt
openoffice.org-help-pt
openoffice.org-l10n-pt
aspell-pa
iceweasel-l10n-pa-in
openoffice.org-l10n-pa-in
ttf-punjabi-fonts
aspell-ro
console-terminus
iceweasel-l10n-ro
openoffice.org-l10n-ro
console-cyrillic
irussian
manpages-ru
mueller7-dict
re
iceweasel-l10n-ru
myspell-ru
openoffice.org-help-ru
aspell-sk
iceweasel-l10n-sk
myspell-sk
openoffice.org-l10n-sk
openoffice.org-thesaurus-sk
aspell-sl
iceweasel-l10n-sl
myspell-sl
openoffice.org-help-sl
openoffice.org-l10n-sl
aspell-es
debian-reference-es
doc-debian-es
ispanish
manpages-es
wspanish
iceweasel-l10n-es-ar
iceweasel-l10n-es-es
myspell-es
openoffice.org-help-es
openoffice.org-l10n-es
aspell-sv
iswedish
wswedish
gimp-help-sv
iceweasel-l10n-sv-se
myspell-sv-se
openoffice.org-help-sv
openoffice.org-l10n-sv
aspell-tl
aspell-ta
openoffice.org-l10n-ta-in
ttf-tamil-fonts
tamil-gtk2im
swath
myspell-th
openoffice.org-l10n-th
xfonts-thai
xiterm+thai
gtk-im-libthai
manpages-tr
iceweasel-l10n-tr
openoffice.org-l10n-tr
xfonts-terminus
aspell-uk
doc-debian-uk
iukrainian
myspell-uk
openoffice.org-l10n-uk
openoffice.org-l10n-vi
k3b
k3b-i18n
kde
kdeadmin
kdeartwork
kde-core
kdegraphics
kdemultimedia
kdenetwork
kdepim
kdesudo
kdeutils
kdm
kpackage
kpowersave
libqt-perl
network-manager-kde
openoffice.org-kde
foomatic-gui
gdm
mousepad
openoffice.org-gtk
orage
xfce4
xfce4-goodies
xfce4-mixer
xfce4-terminal
xfmedia
xfprint4

View File

@ -1,489 +0,0 @@
/* This file lists the packages that have a Task: field
* and that should be included on CDs 1 and 2 for KDE
*
* The list should be regenerated from time to time, using the
* update-tasks target of the Makefile.
*
* Last update: $Date$
*
*/
k3b
k3b-i18n
kde
kdeadmin
kdeartwork
kde-core
kdegraphics
kdemultimedia
kdenetwork
kdepim
kdesudo
kdeutils
kdm
kpackage
kpowersave
libqt-perl
menu-xdg
network-manager-kde
openoffice.org-kde
alsa-base
alsa-utils
anacron
avahi-daemon
cpufrequtils
cupsys
cupsys-bsd
cupsys-client
cupsys-driver-gutenprint
desktop-base
eject
foo2zjs
foomatic-filters-ppds
gimp
hpijs
hplip
hp-ppd
iceweasel
kerneloops
libgl1-mesa-dri
libnss-mdns
menu
myspell-en-us
openoffice.org
openoffice.org-gcj
openoffice.org-help-en-us
openoffice.org-thesaurus-en-us
printconf
swfdec-mozilla
twm
vbetool
xdg-utils
xorg
xserver-xorg-input-all
xserver-xorg-video-all
xterm
acpi
acpid
acpi-support
apmd
avahi-autoipd
bluetooth
hibernate
nvclock
pcmciautils
powertop
radeontool
toshset
wireless-tools
wpasupplicant
aspell-ar
itools
ttf-arabeyes
xfonts-intl-arabic
hunspell-ar
iceweasel-l10n-ar
openoffice.org-l10n-ar
ttf-farsiweb
ttf-kacst
kde-i18n-ar
iceweasel-l10n-eu
kde-i18n-eu
openoffice.org-l10n-be-by
aspell-bn
ttf-bengali-fonts
openoffice.org-l10n-bn
kde-i18n-bn
aspell-hr
dict-freedict-scr-eng
doc-linux-hr
locales
myspell-hr
openoffice.org-l10n-bs
xfonts-biznet-100dpi
xfonts-biznet-75dpi
xfonts-biznet-base
kde-i18n-bs
aspell-pt-br
ibrazilian
manpages-pt
util-linux-locales
wbrazilian
broffice.org
iceweasel-l10n-pt-br
myspell-pt-br
kde-i18n-ptbr
aspell-bg
ibulgarian
wbulgarian
iceweasel-l10n-bg
myspell-bg
openoffice.org-l10n-bg
ttf-dejavu
kde-i18n-bg
aspell-ca
icatalan
wcatalan
iceweasel-l10n-ca
myspell-ca
openoffice.org-l10n-ca
kde-i18n-ca
debian-zh-faq-s
fortune-zh
jfbterm
manpages-zh
ttf2pt1
ttf2pt1-chinese
zh-autoconvert
zhcon
chinput
fcitx
iceweasel-l10n-zh-cn
im-switch
mlterm
openoffice.org-help-zh-cn
openoffice.org-l10n-zh-cn
paps
rxvt-ml
rxvt-unicode-ml
scim-pinyin
scim-tables-zh
stardic
ttf-arphic-gbsn00lp
ttf-arphic-gkai00mp
unifont
xfonts-intl-chinese
xfonts-intl-chinese-big
xfonts-wqy
x-ttcidfont-conf
kde-i18n-zhcn
iceweasel-l10n-zh-tw
openoffice.org-help-zh-tw
openoffice.org-l10n-zh-tw
scim-chewing
stardict
ttf-arphic-ukai
ttf-arphic-uming
xfonts-efont-unicode
kde-i18n-zhtw
dict-freedict-cro-eng
dict-freedict-eng-cro
enca
texlive-lang-croatian
openoffice.org-hyphenation-hr
openoffice.org-l10n-hr
kde-i18n-hr
konwert
openoffice.org-l10n-ru
openoffice.org-l10n-sr-cs
t1-cyrillic
t1-teams
ttf-arhangai
xfonts-bolkhov-75dpi
xfonts-bolkhov-cp1251-75dpi
xfonts-bolkhov-cp1251-misc
xfonts-bolkhov-koi8r-75dpi
xfonts-bolkhov-koi8r-misc
xfonts-bolkhov-koi8u-75dpi
xfonts-bolkhov-koi8u-misc
xfonts-bolkhov-misc
xfonts-cronyx-100dpi
xfonts-cronyx-cp1251-100dpi
xfonts-cronyx-isocyr-100dpi
xfonts-cronyx-isocyr-75dpi
xfonts-cronyx-isocyr-misc
xfonts-cronyx-koi8r-100dpi
xfonts-cronyx-koi8u-100dpi
xxkb
aspell-cs
iczech
iceweasel-l10n-cs
myspell-cs-cz
openoffice.org-help-cs
openoffice.org-l10n-cs
openoffice.org-thesaurus-cs
kde-i18n-cs
aspell-da
idanish
wdanish
iceweasel-l10n-da
openoffice.org-help-da
openoffice.org-l10n-da
kde-i18n-da
aspell-nl
idutch
wdutch
iceweasel-l10n-nl
myspell-nl
openoffice.org-help-nl
openoffice.org-l10n-nl
kde-i18n-nl
openoffice.org-help-dz
openoffice.org-l10n-dz
ttf-dzongkha
myspell-eo
openoffice.org-l10n-eo
kde-i18n-eo
openoffice.org-help-et
openoffice.org-l10n-et
kde-i18n-et
tmispell-voikko
voikko-fi
iceweasel-l10n-fi
openoffice.org-l10n-fi
openoffice.org-voikko
kde-i18n-fi
aspell-fr
doc-debian-fr
doc-linux-fr-text
ifrench-gut
manpages-fr
manpages-fr-extra
wfrench
iceweasel-l10n-fr
myspell-fr-gut
openoffice.org-help-fr
openoffice.org-l10n-fr
xfonts-intl-european
kde-i18n-fr
aspell-gl-minimos
openoffice.org-help-gl
openoffice.org-l10n-gl
kde-i18n-gl
openoffice.org-l10n-ka
ttf-bpg-georgian-fonts
ding
doc-linux-de
ingerman
manpages-de
trans-de-en
wngerman
iceweasel-l10n-de
myspell-de-at
myspell-de-ch
myspell-de-de
openoffice.org-help-de
openoffice.org-hyphenation-de
openoffice.org-l10n-de
openoffice.org-thesaurus-de
openoffice.org-thesaurus-de-ch
kde-i18n-de
language-env
iceweasel-l10n-el
myspell-el-gr
openoffice.org-l10n-el
ttf-freefont
ttf-mgopen
kde-i18n-el
iceweasel-l10n-gu-in
openoffice.org-l10n-gu-in
ttf-gujarati-fonts
aspell-he
bidiv
culmus
hspell
libfribidi0
libhdate1
hspell-gui
iceweasel-l10n-he
myspell-he
openoffice.org-l10n-he
kde-i18n-he
aspell-hi
ttf-devanagari-fonts
openoffice.org-help-hi-in
openoffice.org-l10n-hi-in
kde-i18n-hi
aspell-hu
fortunes-debian-hints
hunspell
ihungarian
manpages-hu
myspell-hu
gsfonts-x11
iceweasel-l10n-hu
openoffice.org-help-hu
openoffice.org-hyphenation-hu
openoffice.org-l10n-hu
ttf-georgewilliams
ttf-isabella
ttf-junicode
ttf-liberation
ttf-okolaks
ttf-opensymbol
ttf-sil-andika
ttf-sil-charis
ttf-sil-doulos
ttf-sil-gentium
ttf-tiresias
xfonts-100dpi-transcoded
xfonts-base
kde-i18n-hu
aspell-it
debian-reference-it
doc-linux-it
doc-linux-it-text
fortunes-it
iitalian
maint-guide-it
manpages-it
witalian
iceweasel-l10n-it
myspell-it
openoffice.org-help-it
openoffice.org-l10n-it
openoffice.org-thesaurus-it
kde-i18n-it
doc-linux-ja-text
lv
manpages-ja
manpages-ja-dev
nkf
anthy
doc-linux-ja-html
iceweasel-l10n-ja
openoffice.org-help-ja
openoffice.org-l10n-ja
ttf-sazanami-gothic
ttf-sazanami-mincho
ttf-vlgothic
uim
uim-anthy
kde-i18n-ja
uim-applet-kde
khmerconverter
openoffice.org-help-km
openoffice.org-l10n-km
ttf-khmeros
kde-i18n-km
manpages-ko
iceweasel-l10n-ko
nabi
openoffice.org-help-ko
openoffice.org-l10n-ko
ttf-baekmuk
ttf-unfonts-core
xfonts-baekmuk
kde-i18n-ko
openoffice.org-l10n-lv
kde-i18n-lv
aspell-lt
ilithuanian
iceweasel-l10n-lt
myspell-lt
openoffice.org-hyphenation-lt
openoffice.org-l10n-lt
kde-i18n-lt
iceweasel-l10n-mk
openoffice.org-l10n-mk
kde-i18n-mk
openoffice.org-l10n-ml-in
scim-tables-additional
ttf-malayalam-fonts
openoffice.org-l10n-ne
kde-i18n-se
aspell-no
inorwegian
wnorwegian
iceweasel-l10n-nb-no
iceweasel-l10n-nn-no
myspell-nb
myspell-nn
openoffice.org-l10n-nb
openoffice.org-l10n-nn
kde-i18n-nb
kde-i18n-nn
aspell-fa
openoffice.org-l10n-fa
kde-i18n-fa
doc-linux-pl
doc-linux-pl-html
ipolish
manpages-pl
manpages-pl-dev
wpolish
iceweasel-l10n-pl
myspell-pl
openoffice.org-help-pl
openoffice.org-l10n-pl
kde-i18n-pl
aspell-pt-pt
iportuguese
wportuguese
myspell-pt-pt
openoffice.org-help-pt
openoffice.org-l10n-pt
kde-i18n-pt
aspell-pa
iceweasel-l10n-pa-in
openoffice.org-l10n-pa-in
ttf-punjabi-fonts
kde-i18n-pa
aspell-ro
console-terminus
iceweasel-l10n-ro
openoffice.org-l10n-ro
kde-i18n-ro
console-cyrillic
irussian
manpages-ru
mueller7-dict
re
iceweasel-l10n-ru
myspell-ru
openoffice.org-help-ru
kde-i18n-ru
aspell-sk
iceweasel-l10n-sk
myspell-sk
openoffice.org-l10n-sk
openoffice.org-thesaurus-sk
kde-i18n-sk
aspell-sl
iceweasel-l10n-sl
myspell-sl
openoffice.org-help-sl
openoffice.org-l10n-sl
kde-i18n-sl
aspell-es
debian-reference-es
doc-debian-es
ispanish
manpages-es
wspanish
iceweasel-l10n-es-ar
iceweasel-l10n-es-es
myspell-es
openoffice.org-help-es
openoffice.org-l10n-es
kde-i18n-es
aspell-sv
iswedish
wswedish
gimp-help-sv
iceweasel-l10n-sv-se
myspell-sv-se
openoffice.org-help-sv
openoffice.org-l10n-sv
kde-i18n-sv
aspell-tl
aspell-ta
openoffice.org-l10n-ta-in
ttf-tamil-fonts
kde-i18n-ta
swath
myspell-th
openoffice.org-l10n-th
xfonts-thai
xiterm+thai
manpages-tr
iceweasel-l10n-tr
openoffice.org-l10n-tr
xfonts-terminus
kde-i18n-tr
aspell-uk
doc-debian-uk
iukrainian
myspell-uk
openoffice.org-l10n-uk
kde-i18n-uk
openoffice.org-l10n-vi

View File

@ -1,435 +0,0 @@
/* This file lists the packages that have a Task: field
* and that should be included on CDs 1 and 2 for Xfce
*
* The list should be regenerated from time to time, using the
* update-tasks target of the Makefile.
*
* Last update: $Date$
*
*/
foomatic-gui
gdm
mousepad
openoffice.org-gtk
orage
xfce4
xfce4-goodies
xfce4-mixer
xfce4-terminal
xfmedia
xfprint4
xsane
alsa-base
alsa-utils
anacron
avahi-daemon
cpufrequtils
cupsys
cupsys-bsd
cupsys-client
cupsys-driver-gutenprint
desktop-base
eject
foo2zjs
foomatic-filters-ppds
gimp
hpijs
hplip
hp-ppd
iceweasel
kerneloops
libgl1-mesa-dri
libnss-mdns
menu
myspell-en-us
openoffice.org
openoffice.org-gcj
openoffice.org-help-en-us
openoffice.org-thesaurus-en-us
printconf
swfdec-mozilla
twm
vbetool
xdg-utils
xorg
xserver-xorg-input-all
xserver-xorg-video-all
xterm
acpi
acpid
acpi-support
apmd
avahi-autoipd
bluetooth
hibernate
nvclock
pcmciautils
powertop
radeontool
toshset
wireless-tools
wpasupplicant
aspell-ar
itools
ttf-arabeyes
xfonts-intl-arabic
hunspell-ar
iceweasel-l10n-ar
openoffice.org-l10n-ar
ttf-farsiweb
ttf-kacst
iceweasel-l10n-eu
openoffice.org-l10n-be-by
aspell-bn
ttf-bengali-fonts
openoffice.org-l10n-bn
aspell-hr
dict-freedict-scr-eng
doc-linux-hr
locales
myspell-hr
openoffice.org-l10n-bs
xfonts-biznet-100dpi
xfonts-biznet-75dpi
xfonts-biznet-base
aspell-pt-br
ibrazilian
manpages-pt
util-linux-locales
wbrazilian
broffice.org
iceweasel-l10n-pt-br
myspell-pt-br
aspell-bg
ibulgarian
wbulgarian
iceweasel-l10n-bg
myspell-bg
openoffice.org-l10n-bg
ttf-dejavu
aspell-ca
icatalan
wcatalan
iceweasel-l10n-ca
myspell-ca
openoffice.org-l10n-ca
debian-zh-faq-s
fortune-zh
jfbterm
manpages-zh
ttf2pt1
ttf2pt1-chinese
zh-autoconvert
zhcon
chinput
fcitx
iceweasel-l10n-zh-cn
im-switch
mlterm
openoffice.org-help-zh-cn
openoffice.org-l10n-zh-cn
paps
rxvt-ml
rxvt-unicode-ml
scim-pinyin
scim-tables-zh
stardic
ttf-arphic-gbsn00lp
ttf-arphic-gkai00mp
unifont
xfonts-intl-chinese
xfonts-intl-chinese-big
xfonts-wqy
x-ttcidfont-conf
iceweasel-l10n-zh-tw
openoffice.org-help-zh-tw
openoffice.org-l10n-zh-tw
scim-chewing
stardict
ttf-arphic-ukai
ttf-arphic-uming
xfonts-efont-unicode
dict-freedict-cro-eng
dict-freedict-eng-cro
enca
texlive-lang-croatian
openoffice.org-hyphenation-hr
openoffice.org-l10n-hr
konwert
openoffice.org-l10n-ru
openoffice.org-l10n-sr-cs
t1-cyrillic
t1-teams
ttf-arhangai
xfonts-bolkhov-75dpi
xfonts-bolkhov-cp1251-75dpi
xfonts-bolkhov-cp1251-misc
xfonts-bolkhov-koi8r-75dpi
xfonts-bolkhov-koi8r-misc
xfonts-bolkhov-koi8u-75dpi
xfonts-bolkhov-koi8u-misc
xfonts-bolkhov-misc
xfonts-cronyx-100dpi
xfonts-cronyx-cp1251-100dpi
xfonts-cronyx-isocyr-100dpi
xfonts-cronyx-isocyr-75dpi
xfonts-cronyx-isocyr-misc
xfonts-cronyx-koi8r-100dpi
xfonts-cronyx-koi8u-100dpi
xxkb
aspell-cs
iczech
iceweasel-l10n-cs
myspell-cs-cz
openoffice.org-help-cs
openoffice.org-l10n-cs
openoffice.org-thesaurus-cs
aspell-da
idanish
wdanish
iceweasel-l10n-da
openoffice.org-help-da
openoffice.org-l10n-da
aspell-nl
idutch
wdutch
iceweasel-l10n-nl
myspell-nl
openoffice.org-help-nl
openoffice.org-l10n-nl
openoffice.org-help-dz
openoffice.org-l10n-dz
ttf-dzongkha
myspell-eo
openoffice.org-l10n-eo
openoffice.org-help-et
openoffice.org-l10n-et
tmispell-voikko
voikko-fi
iceweasel-l10n-fi
openoffice.org-l10n-fi
openoffice.org-voikko
aspell-fr
doc-debian-fr
doc-linux-fr-text
ifrench-gut
manpages-fr
manpages-fr-extra
wfrench
iceweasel-l10n-fr
myspell-fr-gut
openoffice.org-help-fr
openoffice.org-l10n-fr
xfonts-intl-european
aspell-gl-minimos
openoffice.org-help-gl
openoffice.org-l10n-gl
openoffice.org-l10n-ka
ttf-bpg-georgian-fonts
ding
doc-linux-de
ingerman
manpages-de
trans-de-en
wngerman
iceweasel-l10n-de
myspell-de-at
myspell-de-ch
myspell-de-de
openoffice.org-help-de
openoffice.org-hyphenation-de
openoffice.org-l10n-de
openoffice.org-thesaurus-de
openoffice.org-thesaurus-de-ch
language-env
iceweasel-l10n-el
myspell-el-gr
openoffice.org-l10n-el
ttf-freefont
ttf-mgopen
iceweasel-l10n-gu-in
openoffice.org-l10n-gu-in
ttf-gujarati-fonts
aspell-he
bidiv
culmus
hspell
libfribidi0
libhdate1
hspell-gui
iceweasel-l10n-he
myspell-he
openoffice.org-l10n-he
aspell-hi
ttf-devanagari-fonts
openoffice.org-help-hi-in
openoffice.org-l10n-hi-in
aspell-hu
fortunes-debian-hints
hunspell
ihungarian
manpages-hu
myspell-hu
gsfonts-x11
iceweasel-l10n-hu
openoffice.org-help-hu
openoffice.org-hyphenation-hu
openoffice.org-l10n-hu
ttf-georgewilliams
ttf-isabella
ttf-junicode
ttf-liberation
ttf-okolaks
ttf-opensymbol
ttf-sil-andika
ttf-sil-charis
ttf-sil-doulos
ttf-sil-gentium
ttf-tiresias
xfonts-100dpi-transcoded
xfonts-base
aspell-it
debian-reference-it
doc-linux-it
doc-linux-it-text
fortunes-it
iitalian
maint-guide-it
manpages-it
witalian
iceweasel-l10n-it
myspell-it
openoffice.org-help-it
openoffice.org-l10n-it
openoffice.org-thesaurus-it
doc-linux-ja-text
lv
manpages-ja
manpages-ja-dev
nkf
anthy
doc-linux-ja-html
iceweasel-l10n-ja
openoffice.org-help-ja
openoffice.org-l10n-ja
ttf-sazanami-gothic
ttf-sazanami-mincho
ttf-vlgothic
uim
uim-anthy
khmerconverter
openoffice.org-help-km
openoffice.org-l10n-km
ttf-khmeros
manpages-ko
iceweasel-l10n-ko
nabi
openoffice.org-help-ko
openoffice.org-l10n-ko
ttf-baekmuk
ttf-unfonts-core
xfonts-baekmuk
openoffice.org-l10n-lv
aspell-lt
ilithuanian
iceweasel-l10n-lt
myspell-lt
openoffice.org-hyphenation-lt
openoffice.org-l10n-lt
iceweasel-l10n-mk
openoffice.org-l10n-mk
openoffice.org-l10n-ml-in
scim-tables-additional
ttf-malayalam-fonts
openoffice.org-l10n-ne
aspell-no
inorwegian
wnorwegian
iceweasel-l10n-nb-no
iceweasel-l10n-nn-no
myspell-nb
myspell-nn
openoffice.org-l10n-nb
openoffice.org-l10n-nn
aspell-fa
openoffice.org-l10n-fa
doc-linux-pl
doc-linux-pl-html
ipolish
manpages-pl
manpages-pl-dev
wpolish
iceweasel-l10n-pl
myspell-pl
openoffice.org-help-pl
openoffice.org-l10n-pl
aspell-pt-pt
iportuguese
wportuguese
myspell-pt-pt
openoffice.org-help-pt
openoffice.org-l10n-pt
aspell-pa
iceweasel-l10n-pa-in
openoffice.org-l10n-pa-in
ttf-punjabi-fonts
aspell-ro
console-terminus
iceweasel-l10n-ro
openoffice.org-l10n-ro
console-cyrillic
irussian
manpages-ru
mueller7-dict
re
iceweasel-l10n-ru
myspell-ru
openoffice.org-help-ru
aspell-sk
iceweasel-l10n-sk
myspell-sk
openoffice.org-l10n-sk
openoffice.org-thesaurus-sk
aspell-sl
iceweasel-l10n-sl
myspell-sl
openoffice.org-help-sl
openoffice.org-l10n-sl
aspell-es
debian-reference-es
doc-debian-es
ispanish
manpages-es
wspanish
iceweasel-l10n-es-ar
iceweasel-l10n-es-es
myspell-es
openoffice.org-help-es
openoffice.org-l10n-es
aspell-sv
iswedish
wswedish
gimp-help-sv
iceweasel-l10n-sv-se
myspell-sv-se
openoffice.org-help-sv
openoffice.org-l10n-sv
aspell-tl
aspell-ta
openoffice.org-l10n-ta-in
ttf-tamil-fonts
swath
myspell-th
openoffice.org-l10n-th
xfonts-thai
xiterm+thai
manpages-tr
iceweasel-l10n-tr
openoffice.org-l10n-tr
xfonts-terminus
aspell-uk
doc-debian-uk
iukrainian
myspell-uk
openoffice.org-l10n-uk
openoffice.org-l10n-vi

View File

@ -1 +0,0 @@
exclude-etch

View File

@ -1 +0,0 @@
exclude-lenny

View File

@ -4,7 +4,7 @@ set -e
# Generate a list of packages required for debian-installer
# This script makes use of the following variables that need to be preset:
# MIRROR, CODENAME, DI_CODENAME
# MIRROR, CODENAME
if [ "$MIRROR"x = ""x ] ; then
echo "\$MIRROR unset; abort!"
exit 1
@ -19,7 +19,7 @@ if [ "$DI_CODENAME"x = ""x ] ; then
fi
DATE=`date`
cat > debian-installer+kernel-$CODENAME << EOF
cat > debian-installer+kernel << EOF
/* These packages + the ones needed by debootstrap are the ones needed for
* debian-installer to be able to install a base Debian system.
*
@ -34,7 +34,7 @@ cat > debian-installer+kernel-$CODENAME << EOF
* Last update: $DATE
*/
#include <debian-installer-$DI_CODENAME>
#include <debian-installer>
eject
locales
libdevmapper1.02

View File

@ -10,7 +10,7 @@ my @ARCHES=qw{alpha arm armel hppa hurd-i386 i386 ia64 mips mipsel
powerpc s390 sparc amd64};
my $DATE=`date`;
chomp $DATE;
open(OUT, ">debian-installer-$ENV{DI_CODENAME}") || die "write: $!";
open(OUT, ">debian-installer") || die "write: $!";
print OUT << "EOF";
/* List of udebs to be included so that debian-installer works fine
*

View File

@ -578,7 +578,7 @@ sub start_disc {
undef @unexclude_packages;
if (defined ($ENV{"EXCLUDE"})) {
my $excl_file = $ENV{"EXCLUDE"};
my $excl_file = $ENV{"TASKDIR"} . "/" . $ENV{"EXCLUDE"};
print LOG "Adding excludes from $excl_file\n";
open (EXCLUDE_FILE, "< $excl_file") || die "Can't open exclude file $excl_file: $!\n";
while (defined (my $excl_pkg = <EXCLUDE_FILE>)) {
@ -588,7 +588,7 @@ sub start_disc {
close (EXCLUDE_FILE);
}
if (defined ($ENV{"EXCLUDE$disknum"})) {
my $excl_file = $ENV{"EXCLUDE$disknum"};
my $excl_file = $ENV{"TASKDIR"} . "/" . $ENV{"EXCLUDE$disknum"};
print LOG "Adding excludes from $excl_file\n";
open (EXCLUDE_FILE, "< $excl_file") || die "Can't open exclude file $excl_file: $!\n";
while (defined (my $excl_pkg = <EXCLUDE_FILE>)) {
@ -598,7 +598,7 @@ sub start_disc {
close (EXCLUDE_FILE);
}
if (defined ($ENV{"UNEXCLUDE$disknum"})) {
my $excl_file = $ENV{"UNEXCLUDE$disknum"};
my $excl_file = $ENV{"TASKDIR"} . "/" . $ENV{"UNEXCLUDE$disknum"};
print LOG "Adding unexcludes from $excl_file\n";
open (EXCLUDE_FILE, "< $excl_file") || die "Can't open unexclude file $excl_file: $!\n";
while (defined (my $excl_pkg = <EXCLUDE_FILE>)) {

View File

@ -1,35 +1,22 @@
#!/bin/sh
set -e
CODENAME="$1"
if [ -z "$CODENAME" ]; then
echo "usage: update_tasks CODENAME" >&2
echo "update_tasks: codename not specified" >&2
exit 1
fi
if [ "$MIRROR"x = ""x ] ; then
echo "update_tasks needs to know where the mirror is" >&2
echo "update_tasks: mirror dir not specified" >&2
exit 1
fi
# Determine temp dir to use
if [ "$BDIR"x = ""x ] ; then
if [ "$TMPDIR"x != ""x ] ; then
BDIR=$TMPDIR
else
BDIR=/tmp
fi
echo "update_tasks not given a temp dir, using $BDIR" >&2
fi
if [ ! -d "$BDIR" ] ; then
echo "update_tasks: temp dir '$BDIR' does not exist" >&2
echo "update_tasks: temp dir not specified" >&2
exit 1
fi
# Create temp dir and ensure cleanup
TDIR=$BDIR/update_tasks.$$
TDIR=$BDIR/update_tasks
mkdir -p $TDIR
trap 'rm -rf $TDIR' EXIT HUP INT QUIT TERM
update_full_list () {
@ -37,7 +24,6 @@ update_full_list () {
tasklist=$2
pkgfile=$3
grep '\*' $file > $file.new
(grep -Ev "^(#.*)?[[:space:]]*$" $tasklist ; echo DONE ; cat $pkgfile) | mawk '
/DONE/ {
in_packages = 1
@ -73,8 +59,7 @@ update_full_list () {
}
}
next
}' | sort -n | cut -d: -f2 >> $file.new
mv $file.new $file
}' | sort -n | cut -d: -f2 > $file
}
update_essential_list () {
@ -83,7 +68,6 @@ update_essential_list () {
desktoptask=$3
tasksel=$4
grep '\*' $file > $file.new
(grep -Ev "^(#.*)?[[:space:]]*$" $tasklist ;
echo DONE ;
cat $tasksel/usr/share/tasksel/debian-tasks.desc) | mawk -v DT=$3 '
@ -129,8 +113,7 @@ update_essential_list () {
}
}
next
}' | sort -s -n -k1 | cut -d: -f2 >> $file.new
mv $file.new $file
}' | sort -s -n -k1 | cut -d: -f2 > $file
}
# We need to gunzip a copy of the appropriate Packages.gz file
@ -145,23 +128,19 @@ TASKSEL_DEB=$MIRROR/`mawk '
dpkg -x $TASKSEL_DEB $TDIR/tasksel
update_essential_list tasks/task-essential-$CODENAME \
tasks/task.list gnome-desktop \
update_essential_list task-essential task.list gnome-desktop \
$TDIR/tasksel
update_essential_list tasks/task-essential-$CODENAME-kde \
tasks/task.list.kde kde-desktop \
update_essential_list task-essential-kde task.list.kde kde-desktop \
$TDIR/tasksel
update_essential_list tasks/task-essential-$CODENAME-xfce \
tasks/task.list.xfce xfce-desktop \
update_essential_list task-essential-xfce task.list.xfce xfce-desktop \
$TDIR/tasksel
update_full_list tasks/task-full-$CODENAME \
tasks/task.list $TMP_PKG
update_full_list task-full task.list $TMP_PKG
update_full_list tasks/task-full-$CODENAME-kde \
tasks/task.list.kde $TMP_PKG
update_full_list task-full-kde task.list.kde $TMP_PKG
update_full_list tasks/task-full-$CODENAME-xfce \
tasks/task.list.xfce $TMP_PKG
update_full_list task-full-xfce task.list.xfce $TMP_PKG
rm -rf $TDIR