Your message dated Tue, 25 May 2004 13:32:04 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#244019: fixed in base-installer 0.082
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 16 Apr 2004 08:02:49 +0000
>From [EMAIL PROTECTED] Fri Apr 16 01:02:49 2004
Return-path: <[EMAIL PROTECTED]>
Received: from 217-13-7-10.dd.nextgentel.com (minerva.hungry.com) [217.13.7.10] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1BEOJF-000110-00; Fri, 16 Apr 2004 01:02:49 -0700
Received: from pere by minerva.hungry.com with local (Exim 3.35 #1 (Debian))
        id 1BEOIj-0003Y7-00; Fri, 16 Apr 2004 10:02:17 +0200
To: [EMAIL PROTECTED]
Subject: base-installer: Language specific code should be moved to languagechooser
From: Petter Reinholdtsen <[EMAIL PROTECTED]>
Message-Id: <[EMAIL PROTECTED]>
Sender: Petter Reinholdtsen <[EMAIL PROTECTED]>
Date: Fri, 16 Apr 2004 10:02:17 +0200
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-7.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 1


Package: base-installer
Version: 0.067
Severity: minor

The code to check the installation language and install extra packages
into /target/ do not relly belong to base-installer.  It should be
moved to languagechooser instead.  This is the code in question (from
current SVN):

queue_language_debs () {
        # Language specific packages.

        info "Installing language specific packages."

        db_get debian-installer/language || true

        if [ "$RET" != "en" ]; then
                info "Trying to install package iso-codes into /target/."
                # Package iso-codes is missing in Woody.  Do not fail
                # if it is missing to make d-i capable of installing
                # Woody and Skolelinux.
                if apt-install iso-codes ; then
                    :
                else
                    warning "Installing package iso-codes failed."
                fi
        fi

        case "`echo $RET | sed 's/:.*//'`" in
                ja|ko|ko_KR|el|zh|zh_CN|zh_TW|bg|ar|he|tr|uk|uk_UA)
                        # Japanese, Korean, Greek, Chinese, Bulgarian, Arabic, Hebrew, 
Turkish, Ukranian
                        apt-install jfbterm || true
                        apt-install unifont || true
                ;;
                ru)
                        # Russian
                        apt-install console-cyrillic || true
                        apt-install console-terminus || true
                ;;
                *)
                ;;
        esac
}
        
If this code is moved to languagechooser, the request packages will be
installed when the apt-install queue is processed.

---------------------------------------
Received: (at 244019-close) by bugs.debian.org; 25 May 2004 17:38:51 +0000
>From [EMAIL PROTECTED] Tue May 25 10:38:51 2004
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1BSft5-0003Zo-00; Tue, 25 May 2004 10:38:51 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
        id 1BSfmW-0002de-00; Tue, 25 May 2004 13:32:04 -0400
From: Joey Hess <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.49 $
Subject: Bug#244019: fixed in base-installer 0.082
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 25 May 2004 13:32:04 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Source: base-installer
Source-Version: 0.082

We believe that the bug you reported is fixed in the latest version of
base-installer, which is due to be installed in the Debian FTP archive:

base-installer_0.082.dsc
  to pool/main/b/base-installer/base-installer_0.082.dsc
base-installer_0.082.tar.gz
  to pool/main/b/base-installer/base-installer_0.082.tar.gz
base-installer_0.082_i386.udeb
  to pool/main/b/base-installer/base-installer_0.082_i386.udeb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Joey Hess <[EMAIL PROTECTED]> (supplier of updated base-installer package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Tue, 25 May 2004 12:47:13 -0300
Source: base-installer
Binary: base-installer
Architecture: source i386
Version: 0.082
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team <[EMAIL PROTECTED]>
Changed-By: Joey Hess <[EMAIL PROTECTED]>
Description: 
 base-installer - Install the base system (udeb)
Closes: 244019
Changes: 
 base-installer (0.082) unstable; urgency=low
 .
   * Petter Reinholdtsen
     - Move code installing language dependent packages into package
       languagechooser. (Closes: #244019)
   * Colin Watson
     - Bump powerpc 2.6 to 2.6.6.
   * Updated translations:
     - Basque (eu.po) by Piarres Beobide Egaņa
     - Polish (pl.po) by Bartosz Fenski
Files: 
 34fc4175b8d88edc564e383919d7b586 1338 debian-installer required 
base-installer_0.082.dsc
 324507e3703eccb8738cb50ed3262794 81977 debian-installer required 
base-installer_0.082.tar.gz
 615420289c05004c0f43cf57810f2d25 53004 debian-installer required 
base-installer_0.082_i386.udeb
package-type: udeb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)
Comment: http://triplehelix.org/~joshk/pubkey_gpg.asc

iQIVAwUBQLN83qOILr94RG8mAQKjww//dg3oIMINQwAurJEUPiOrLI/Vnz3+BdDh
iiY1ywdPGEIDEIfM1K/F4wbgsi7dfbLNoM/LiVGYu6oq6eUDdMxngKU9wKtCOsSQ
lEPhFdC8ixzbzioLXdH+ibWHgfZupKSDJbSw6UWhj6yiHH4jw37ES8RlEKeV2Vsm
8sk3eE1IJKvpkboLClRwa8rW44sRlvov1MzD+JH53U5AswqzdVhF9xlABSZqHBUX
Wp/5HApNNGOCY5AZtcBbButfXQVERi5+rNGNOUGQ/IEA/tC4pP8Qzg2QOcXiDWOt
5z/EPcDkyetn7SzWN1101Zn4gf0xohUUxQrvRa/TjDk4bvPYLJZOaj0+sye0/vIu
L3Qqr0vG4ed6nfByck8JVMl7UNYsDhjgOH4I3vF6UpJKWMHUH3yQakdrpO/+8l9q
ZNMYdqJ9Prm1kfpgrBGauYgXgzAoreS7KIoGkkXUg1sOl9mNuTm5Wihu64DfVpBf
QVYstbcHjWsz3PsxUN0qUCR94ynWCWXmSlTDkTPCSTC1RvC8LDJ4pUjcUkgu0/My
OaHkj8uWRHAGKF1AJ5M1VvH4OHs6c6lAz6Zln5EwZQz+5yIIA+EH1QtTULr3xAZ0
NvFWxsbOXJkQ0mFRGQBjdwzQ1aAqe1JcKzhTa2Qi609llbF+WsJ/VR0bKX6tW0T9
onm8rMgSpG8=
=gOJp
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to