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

r2110 - in glibc-package/trunk/debian: . patches patches/all patches/any



Author: aurel32
Date: 2007-04-21 23:49:32 +0000 (Sat, 21 Apr 2007)
New Revision: 2110

Added:
   glibc-package/trunk/debian/patches/all/submitted-iconv-E13B.diff
   glibc-package/trunk/debian/patches/any/submitted-iconv-colon.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
  * patches/all/submitted-iconv-E13B.diff: new patch to fix wrong E13B 
    charset alias. patches/any/submitted-iconv-colon.diff: new patch to 
    allow colons in charset names.  Closes: #91935.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2007-04-21 22:07:49 UTC (rev 2109)
+++ glibc-package/trunk/debian/changelog	2007-04-21 23:49:32 UTC (rev 2110)
@@ -23,8 +23,11 @@
     specified on the command line.  Closes: #340911.
   * debian/patches/any/submitted-strfry.diff: new patch (fix strfry()
     distribution) by Steinar H. Gunderson.  Closes: #341903.
+  * patches/all/submitted-iconv-E13B.diff: new patch to fix wrong E13B 
+    charset alias. patches/any/submitted-iconv-colon.diff: new patch to 
+    allow colons in charset names.  Closes: #91935.
 
- -- Aurelien Jarno <aurel32@debian.org>  Sun, 22 Apr 2007 00:06:38 +0200
+ -- Aurelien Jarno <aurel32@debian.org>  Sun, 22 Apr 2007 01:47:59 +0200
 
 glibc (2.5-3) unstable; urgency=low
 

Added: glibc-package/trunk/debian/patches/all/submitted-iconv-E13B.diff
===================================================================
--- glibc-package/trunk/debian/patches/all/submitted-iconv-E13B.diff	2007-04-21 22:07:49 UTC (rev 2109)
+++ glibc-package/trunk/debian/patches/all/submitted-iconv-E13B.diff	2007-04-21 23:49:32 UTC (rev 2110)
@@ -0,0 +1,11 @@
+--- iconvdata/gconv-modules	2007-04-19 07:57:08.000000000 +0200
++++ iconvdata/gconv-modules	2007-04-22 00:58:09.000000000 +0200
+@@ -1376,7 +1376,7 @@
+ #	from			to			module		cost
+ alias	ISO-IR-98//		ISO_2033//
+ alias	ISO_2033-1983//		ISO_2033//
+-alias	E13B/			ISO_2033//
++alias	E13B//			ISO_2033//
+ alias	CSISO2033//		ISO_2033//
+ module	ISO_2033//		INTERNAL		ISO_2033	1
+ module	INTERNAL		ISO_2033//		ISO_2033	1

Added: glibc-package/trunk/debian/patches/any/submitted-iconv-colon.diff
===================================================================
--- glibc-package/trunk/debian/patches/any/submitted-iconv-colon.diff	2007-04-21 22:07:49 UTC (rev 2109)
+++ glibc-package/trunk/debian/patches/any/submitted-iconv-colon.diff	2007-04-21 23:49:32 UTC (rev 2110)
@@ -0,0 +1,22 @@
+--- iconv/gconv_charset.h	2005-12-21 08:27:27.000000000 +0100
++++ iconv/gconv_charset.h	2007-04-22 00:57:25.000000000 +0200
+@@ -30,7 +30,7 @@
+   while (*s != '\0')
+     {
+       if (__isalnum_l (*s, _nl_C_locobj_ptr)
+-	  || *s == '_' || *s == '-' || *s == '.' || *s == ',')
++	  || *s == '_' || *s == '-' || *s == '.' || *s == ',' || *s == ':')
+ 	*wp++ = __toupper_l (*s, _nl_C_locobj_ptr);
+       else if (*s == '/')
+ 	{
+--- iconv/iconv_open.c	2001-11-29 05:57:52.000000000 +0100
++++ iconv/iconv_open.c	2007-04-22 00:59:08.000000000 +0200
+@@ -38,7 +38,7 @@
+   int res;
+ 
+   /* Normalize the name.  We remove all characters beside alpha-numeric,
+-     '_', '-', '/', and '.'.  */
++     '_', '-', '/', '.' and ':'.  */
+   tocode_len = strlen (tocode);
+   tocode_conv = (char *) alloca (tocode_len + 3);
+   strip (tocode_conv, tocode);

Modified: glibc-package/trunk/debian/patches/series
===================================================================
--- glibc-package/trunk/debian/patches/series	2007-04-21 22:07:49 UTC (rev 2109)
+++ glibc-package/trunk/debian/patches/series	2007-04-21 23:49:32 UTC (rev 2110)
@@ -94,6 +94,7 @@
 all/local-remove-manual.diff
 all/local-ru_RU.diff -p1
 all/local-pt_BR.diff -p1
+all/submitted-iconv-E13B.diff -p0
 all/submitted-new-brf-encoding.diff -p0
 
 any/cvs-2.5-branch-update.diff -p1
@@ -141,6 +142,7 @@
 any/submitted-clock-settime.diff -p0
 any/submitted-date-and-unknown-tz.diff -p0
 any/submitted-gethostbyname_r.diff -p0
+any/submitted-iconv-colon.diff -p0
 any/submitted-strfry.diff -p0
 any/submitted-unistd_XOPEN_VERSION.diff
 any/cvs-glob-c.diff



Reply to: