* tools/update_tasks: ignore comments and blank lines in tasks.list.

* tasks/tasks.list
  - add missing l10n tasks: gujarati-desktop, malayalam-desktop, tamil
  - comment out l10n tasks for languages not supported in D-I, for
    Icelandic, Irish, Serbian, Welsh and Xhosa
This commit is contained in:
Frans Pop 2007-12-17 19:59:42 +00:00
parent ced27feb2f
commit acc04558ee
3 changed files with 26 additions and 12 deletions

7
debian/changelog vendored
View File

@ -55,8 +55,13 @@ debian-cd (3.0.4) UNRELEASED; urgency=low
that both "<a href=" and "<A HREF=" are recognized. that both "<a href=" and "<A HREF=" are recognized.
* Include busybox for architectures that use initramfs-tools; base-installer * Include busybox for architectures that use initramfs-tools; base-installer
will try to install it. will try to install it.
* tools/update_tasks: ignore comments and blank lines in tasks.list.
* tasks/tasks.list
- add missing l10n tasks: gujarati-desktop, malayalam-desktop, tamil
- comment out l10n tasks for languages not supported in D-I, for
Icelandic, Irish, Serbian, Welsh and Xhosa
-- Frans Pop <fjp@debian.org> Thu, 13 Dec 2007 17:32:10 +0100 -- Frans Pop <fjp@debian.org> Mon, 17 Dec 2007 20:54:57 +0100
debian-cd (3.0.3) unstable; urgency=low debian-cd (3.0.3) unstable; urgency=low

View File

@ -1,3 +1,4 @@
# Main tasks
gnome-desktop gnome-desktop
desktop desktop
web-server web-server
@ -7,6 +8,9 @@ print-server
database-server database-server
dns-server dns-server
file-server file-server
# Language tasks
# Commented out means the language is currently not supported in D-I
arabic arabic
arabic-desktop arabic-desktop
basque-desktop basque-desktop
@ -50,16 +54,17 @@ german
german-desktop german-desktop
greek greek
greek-desktop greek-desktop
gujarati-desktop
hebrew hebrew
hebrew-desktop hebrew-desktop
hindi hindi
hindi-desktop hindi-desktop
hungarian hungarian
hungarian-desktop hungarian-desktop
icelandic #icelandic
icelandic-desktop #icelandic-desktop
irish #irish
irish-desktop #irish-desktop
italian italian
italian-desktop italian-desktop
japanese japanese
@ -73,6 +78,7 @@ lithuanian
lithuanian-desktop lithuanian-desktop
macedonian macedonian
macedonian-desktop macedonian-desktop
malayalam-desktop
nepali-desktop nepali-desktop
northern-sami-desktop northern-sami-desktop
norwegian norwegian
@ -89,8 +95,8 @@ romanian
romanian-desktop romanian-desktop
russian russian
russian-desktop russian-desktop
serbian #serbian
serbian-desktop #serbian-desktop
slovak slovak
slovak-desktop slovak-desktop
slovenian slovenian
@ -100,6 +106,7 @@ spanish-desktop
swedish swedish
swedish-desktop swedish-desktop
tagalog tagalog
tamil
tamil-desktop tamil-desktop
thai thai
thai-desktop thai-desktop
@ -108,8 +115,10 @@ turkish-desktop
ukrainian ukrainian
ukrainian-desktop ukrainian-desktop
vietnamese-desktop vietnamese-desktop
welsh #welsh
welsh-desktop #welsh-desktop
xhosa-desktop #xhosa-desktop
# Alternative desktop environments
kde-desktop kde-desktop
xfce-desktop xfce-desktop

View File

@ -17,7 +17,7 @@ update_full_list () {
tasklist=$2 tasklist=$2
grep '\*' $file > $file.new grep '\*' $file > $file.new
for i in $(cat $tasklist); do for i in $(grep -Ev "^(#.*)?[[:space:]]*$" $tasklist); do
grep-aptavail -e -F Task "(^| )$i(,|$)" -s Package -n; grep-aptavail -e -F Task "(^| )$i(,|$)" -s Package -n;
done >> $file.new done >> $file.new
mv $file.new $file mv $file.new $file
@ -29,7 +29,7 @@ update_essential_list () {
desktoptask=$3 desktoptask=$3
grep '\*' $file > $file.new grep '\*' $file > $file.new
for i in $(cat $tasklist); do for i in $(grep -Ev "^(#.*)?[[:space:]]*$" $tasklist); do
if ( [ "$i" != gnome-dekstop ] && if ( [ "$i" != gnome-dekstop ] &&
[ "$i" != kde-desktop ] && [ "$i" != kde-desktop ] &&
[ "$i" != xfce-desktop ] ) || [ "$i" != xfce-desktop ] ) ||