[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#109705: marked as done (locales 2.2.4-1 debonf template 2)



Your message dated Sun, 23 Mar 2003 00:25:31 +0900
with message-id <80d6kjl8yc.wl@oris.opensource.jp>
and subject line locales debconf templates
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; 23 Aug 2001 01:07:37 +0000
>From lhs0@jtechsys.com Wed Aug 22 20:07:37 2001
Return-path: <lhs0@jtechsys.com>
Received: from (jtechsys.com) [211.111.165.112] 
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 15Ziy8-0001rS-00; Wed, 22 Aug 2001 20:07:36 -0500
Received: by jtechsys.com (Postfix, from userid 1000)
	id 4799161D; Thu, 23 Aug 2001 10:07:04 +0900 (KST)
Date: Thu, 23 Aug 2001 10:07:04 +0900
From: Ho-seok Lee <alee@debian.or.kr>
To: submit@bugs.debian.org
Subject: locales 2.2.4-1 debonf template 2
Message-ID: <20010823100704.A14315@jtechsys.com>
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="zhXaljGHf11kAtnf"
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
Delivered-To: submit@bugs.debian.org


--zhXaljGHf11kAtnf
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Package: locales
Version: 2.2.4-1
Severity: wishlist

Oh.. It's the right patch. I'm sorry.

-- 
Ho-seok Lee <alee@debian.or.kr>  ICQ#: 7251440
GnuPG Key fingerprint = D419 9C02 39C6 A5AF BE2E  97AA 464D E301 B749 52A9

--zhXaljGHf11kAtnf
Content-Type: text/plain; charset=euc-kr
Content-Disposition: attachment; filename="locales_2.2.4-1.diff"
Content-Transfer-Encoding: quoted-printable

diff -Naur glibc-2.2.4.orig/debian/control glibc-2.2.4/debian/control
--- glibc-2.2.4.orig/debian/control	Thu Aug 23 10:02:54 2001
+++ glibc-2.2.4/debian/control	Thu Aug 23 10:03:09 2001
@@ -23,6 +23,7 @@
 Architecture: all
 Section: base
 Priority: standard
+Depends: debconf (>=3D 0.2.26)
 Provides: i18ndata
 Conflicts: localebin, wg15-locale, i18ndata
 Replaces: localebin, wg15-locale, libc6-bin, i18ndata, glibc2
diff -Naur glibc-2.2.4.orig/debian/control.in/main glibc-2.2.4/debian/contr=
ol.in/main
--- glibc-2.2.4.orig/debian/control.in/main	Thu Aug 23 10:02:15 2001
+++ glibc-2.2.4/debian/control.in/main	Thu Aug 23 10:04:13 2001
@@ -23,6 +23,7 @@
 Architecture: all
 Section: base
 Priority: standard
+Depends: debconf (>=3D 0.2.26)
 Provides: i18ndata
 Conflicts: localebin, wg15-locale, i18ndata
 Replaces: localebin, wg15-locale, @libc@-bin, i18ndata, glibc2
diff -Naur glibc-2.2.4.orig/debian/locales/DEBIAN/postinst glibc-2.2.4/debi=
an/locales/DEBIAN/postinst
--- glibc-2.2.4.orig/debian/locales/DEBIAN/postinst	Thu Aug 23 09:27:30 2001
+++ glibc-2.2.4/debian/locales/DEBIAN/postinst	Thu Aug 23 09:30:24 2001
@@ -2,6 +2,9 @@
 set -e
=20
 if [ "$1" =3D configure ]; then
+    . /usr/share/debconf/confmodule
+    db_version 2.0
+
     if [ -d /usr/doc ]; then
 	package=3D$(basename $0 .postinst)
 	if [ ! -e /usr/doc/$package ]; then
@@ -35,6 +38,18 @@
 	    fi
 	fi
     fi
+
+	LOCALES=3D$(grep -v "^#" /etc/locale.gen | grep -v "^$" | sed 's/$/,/' | =
tr "\n" " ")
+	db_set $package/locales_to_be_generated "${LOCALES%,*}"
+	db_capb multiselect
+	db_input medium $package/locales_to_be_generated || true
+	db_go
+	db_get $package/locales_to_be_generated && LOCALES=3D$RET
+	echo -e "# This file lists locales that you wish to have built. You can f=
ind a list\
+			\n# of valid supported locales at /usr/share/doc/locales/SUPPORTED.gz. =
Other\
+			\n# combinations are possible, but may not be well tested. If you chang=
e\
+			\n# this file, you need to rerun locale-gen.\n" > /etc/locale.gen
+	echo $LOCALES | tr "," "\n" | sed -e 's/^\ //' >> /etc/locale.gen
=20
     # Update requested locales
     /usr/sbin/locale-gen
diff -Naur glibc-2.2.4.orig/debian/locales/DEBIAN/postrm glibc-2.2.4/debian=
/locales/DEBIAN/postrm
--- glibc-2.2.4.orig/debian/locales/DEBIAN/postrm	Thu Jan  1 09:00:00 1970
+++ glibc-2.2.4/debian/locales/DEBIAN/postrm	Thu Aug 23 09:32:25 2001
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+if [ "$1" =3D purge -a -e /usr/share/debconf/confmodule ]; then
+    . /usr/share/debconf/confmodule
+    db_purge
+fi
+
diff -Naur glibc-2.2.4.orig/debian/locales/DEBIAN/templates glibc-2.2.4/deb=
ian/locales/DEBIAN/templates
--- glibc-2.2.4.orig/debian/locales/DEBIAN/templates	Thu Jan  1 09:00:00 19=
70
+++ glibc-2.2.4/debian/locales/DEBIAN/templates	Thu Aug 23 09:46:54 2001
@@ -0,0 +1,11 @@
+Template: locales/locales_to_be_generated
+Type: multiselect
+Choices: af_ZA ISO-8859-1, ar_AE ISO-8859-6, ar_BH ISO-8859-6, ar_DZ ISO-8=
859-6, ar_EG ISO-8859-6, ar_IN UTF-8, ar_IQ ISO-8859-6, ar_JO ISO-8859-6, a=
r_KW ISO-8859-6, ar_LB ISO-8859-6, ar_LY ISO-8859-6, ar_MA ISO-8859-6, ar_O=
M ISO-8859-6, ar_QA ISO-8859-6, ar_SA ISO-8859-6, ar_SD ISO-8859-6, ar_SY I=
SO-8859-6, ar_TN ISO-8859-6, ar_YE ISO-8859-6, be_BY CP1251, bg_BG CP1251, =
br_FR ISO-8859-1, bs_BA ISO-8859-2, ca_ES ISO-8859-1, ca_ES@euro ISO-8859-1=
5, cs_CZ ISO-8859-2, cy_GB ISO-8859-14, da_DK ISO-8859-1, de_AT ISO-8859-1,=
 de_AT@euro ISO-8859-15, de_BE ISO-8859-1, de_BE@euro ISO-8859-15, de_CH IS=
O-8859-1, de_DE ISO-8859-1, de_DE.UTF-8 UTF-8, de_DE@euro ISO-8859-15, de_L=
U ISO-8859-1, de_LU@euro ISO-8859-15, el_GR ISO-8859-7, el_GR.UTF-8 UTF-8, =
en_AU ISO-8859-1, en_BW ISO-8859-1, en_CA ISO-8859-1, en_DK ISO-8859-1, en_=
GB ISO-8859-1, en_GB.UTF-8 UTF-8, en_HK ISO-8859-1, en_IE ISO-8859-1, en_IE=
@euro ISO-8859-15, en_IN UTF-8, en_NZ ISO-8859-1, en_PH ISO-8859-1, en_SG I=
SO-8859-1, en_US ISO-8859-1, en_US.UTF-8 UTF-8, en_ZA ISO-8859-1, en_ZW ISO=
-8859-1, es_AR ISO-8859-1, es_BO ISO-8859-1, es_CL ISO-8859-1, es_CO ISO-88=
59-1, es_CR ISO-8859-1, es_DO ISO-8859-1, es_EC ISO-8859-1, es_ES ISO-8859-=
1, es_ES@euro ISO-8859-15, es_GT ISO-8859-1, es_HN ISO-8859-1, es_MX ISO-88=
59-1, es_NI ISO-8859-1, es_PA ISO-8859-1, es_PE ISO-8859-1, es_PR ISO-8859-=
1, es_PY ISO-8859-1, es_SV ISO-8859-1, es_US ISO-8859-1, es_UY ISO-8859-1, =
es_VE ISO-8859-1, et_EE ISO-8859-1, eu_ES ISO-8859-1, eu_ES@euro ISO-8859-1=
5, fa_IR.UTF-8 UTF-8, fi_FI ISO-8859-1, fi_FI@euro ISO-8859-15, fo_FO ISO-8=
859-1, fr_BE ISO-8859-1, fr_BE@euro ISO-8859-15, fr_CA ISO-8859-1, fr_CH IS=
O-8859-1, fr_FR ISO-8859-1, fr_FR.UTF-8 UTF-8, fr_FR@euro ISO-8859-15, fr_L=
U ISO-8859-1, fr_LU@euro ISO-8859-15, ga_IE ISO-8859-1, ga_IE@euro ISO-8859=
-15, gl_ES ISO-8859-1, gl_ES@euro ISO-8859-15, gv_GB ISO-8859-1, he_IL ISO-=
8859-8, hi_IN.UTF-8 UTF-8, hr_HR ISO-8859-2, hu_HU ISO-8859-2, id_ID ISO-88=
59-1, is_IS ISO-8859-1, it_CH ISO-8859-1, it_IT ISO-8859-1, it_IT@euro ISO-=
8859-15, iw_IL ISO-8859-8, ja_JP.EUC-JP EUC-JP, ja_JP.UTF-8 UTF-8, ka_GE GE=
ORGIAN-PS, kl_GL ISO-8859-1, ko_KR.EUC-KR EUC-KR, ko_KR.UTF-8 UTF-8, kw_GB =
ISO-8859-1, lt_LT ISO-8859-13, lv_LV ISO-8859-13, mi_NZ ISO-8859-13, mk_MK =
ISO-8859-5, mr_IN.UTF-8 UTF-8, ms_MY ISO-8859-1, mt_MT ISO-8859-3, nl_BE IS=
O-8859-1, nl_BE@euro ISO-8859-15, nl_NL ISO-8859-1, nl_NL@euro ISO-8859-15,=
 nn_NO ISO-8859-1, no_NO ISO-8859-1, oc_FR ISO-8859-1, pl_PL ISO-8859-2, pt=
_BR ISO-8859-1, pt_PT ISO-8859-1, pt_PT@euro ISO-8859-15, ro_RO ISO-8859-2,=
 ru_RU ISO-8859-5, ru_RU.UTF-8 UTF-8, ru_RU.KOI8-R KOI8-R, ru_UA KOI8-U, sk=
_SK ISO-8859-2, sl_SI ISO-8859-2, sq_AL ISO-8859-1, sr_YU ISO-8859-2, sr_YU=
@cyrillic ISO-8859-5, sv_FI ISO-8859-1, sv_FI@euro ISO-8859-15, sv_SE ISO-8=
859-1, ta_IN UTF-8, te_IN UTF-8, tg_TJ KOI8-T, th_TH TIS-620, tl_PH ISO-885=
9-1, tr_TR ISO-8859-9, uk_UA KOI8-U, ur_PK UTF-8, uz_UZ ISO-8859-1, vi_VN.U=
TF-8 UTF-8, yi_US CP1255, zh_CN GB2312, zh_CN.GB18030 GB18030, zh_CN.GBK GB=
K, zh_CN.UTF-8 UTF-8, zh_HK BIG5-HKSCS, zh_HK.UTF-8 UTF-8, zh_TW BIG5, zh_T=
W.EUC-TW EUC-TW, zh_TW.UTF-8 UTF-8
+Description: Select locales to be generated.
+ You can choose locales to be generated by selecting locales you want.
+ Selected locales will be saved to `/etc/locale.gen' file. You can also
+ manually edit this file. You need to run `locale-gen' after edit the file.
+Description-ko: =BB=FD=BC=BA=C7=D2 =B7=CE=C4=C9=C0=CF=C0=BB =BC=B1=C5=C3=
=C7=CF=BD=CA=BD=C3=BF=C0.
+ =BB=FD=BC=BA=C7=CF=B0=ED =BD=CD=C0=BA =B7=CE=C4=C9=C0=CF=C0=BB =BC=B1=C5=
=C3=C7=CF=BD=CA=BD=C3=BF=C0. =BC=B1=C5=C3=B5=C8 =B7=CE=C4=C9=C0=CF=C0=BA `/=
etc/locale.gen'
+ =C6=C4=C0=CF=BF=A1 =C0=FA=C0=E5=B5=CB=B4=CF=B4=D9. =C0=CC =C6=C4=C0=CF=C0=
=BB =C1=F7=C1=A2 =C6=ED=C1=FD=C7=D2=BC=F6=B5=B5 =C0=D6=BD=C0=B4=CF=B4=D9. =
=C6=C4=C0=CF=C0=BB =C1=F7=C1=A2 =C6=ED=C1=FD=C7=D1
+ =C8=C4=BF=A1=B4=C2 =B9=DD=B5=E5=BD=C3 `locale-gen'=B8=ED=B7=C9=C0=BB =BD=
=C7=C7=E0=C7=D8=BE=DF =C7=D5=B4=CF=B4=D9.

--zhXaljGHf11kAtnf--

---------------------------------------
Received: (at 109296-done) by bugs.debian.org; 22 Mar 2003 15:25:35 +0000
>From gotom@debian.or.jp Sat Mar 22 09:25:33 2003
Return-path: <gotom@debian.or.jp>
Received: from oris.opensource.jp (oris.opensource.gr.jp) [218.44.239.73] (postfix)
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 18wksG-0004Ln-00; Sat, 22 Mar 2003 09:25:32 -0600
Received: from oris.opensource.jp (oris.opensource.jp [218.44.239.73])
	by oris.opensource.gr.jp (Postfix) with ESMTP
	id 313BBC33C6; Sun, 23 Mar 2003 00:25:31 +0900 (JST)
Date: Sun, 23 Mar 2003 00:25:31 +0900
Message-ID: <80d6kjl8yc.wl@oris.opensource.jp>
From: GOTO Masanori <gotom@debian.or.jp>
To: 109296-done@bugs.debian.org, 109702-done@bugs.debian.org,
	109705-done@bugs.debian.org
Subject: Re: locales debconf templates
User-Agent: Wanderlust/2.9.9 (Unchained Melody) SEMI/1.14.3 (Ushinoya)
 FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 Emacs/21.2
 (i386-debian-linux-gnu) MULE/5.0 (SAKAKI)
MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya")
Content-Type: text/plain; charset=US-ASCII
Delivered-To: 109296-done@bugs.debian.org
X-Spam-Status: No, hits=0.3 required=4.0
	tests=SPAM_PHRASE_00_01,USER_AGENT
	version=2.44
X-Spam-Level: 

locales debconf templates made by Ho-seok Lee was applied already:

	glibc (2.2.4-2) unstable; urgency=low
	
	  * Apply patch to make /etc/locale.gen generated by debconf interface.
	    Thanks to Ho-seok Lee, closes: #110980, #110661

I close this bug.  Thanks!

Regards,
-- gotom



Reply to: