r1216 - in glibc-package/trunk/debian: . control.in

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 09:51:27 + (Thu, 23 Feb 2006)
New Revision: 1216

Modified:
   glibc-package/trunk/debian/control
   glibc-package/trunk/debian/control.in/main
Log:
Actually do this change on debian/control.in/main, not only debian/control

  * Lintian cleans:
- Remove build-dependencies on tar and debianutils, they are
  build-essential packages



Modified: glibc-package/trunk/debian/control
===
--- glibc-package/trunk/debian/control  2006-02-22 20:16:44 UTC (rev 1215)
+++ glibc-package/trunk/debian/control  2006-02-23 09:51:27 UTC (rev 1216)
@@ -1,7 +1,7 @@
 Source: glibc
 Section: libs
 Priority: required
-Build-Depends: gettext, make (= 3.80-1), dpkg-dev (= 1.13.5), debianutils, 
tar, bzip2,
+Build-Depends: gettext, make (= 3.80-1), dpkg-dev (= 1.13.5), bzip2,
  texinfo, texi2html, file,
  linux-kernel-headers (= 2.6.13+0rc3-2) [!hurd-i386 !kfreebsd-i386],
  mig (= 1.3-2) [hurd-i386], hurd-dev (= 20020608-1) [hurd-i386], gnumach-dev 
[hurd-i386],

Modified: glibc-package/trunk/debian/control.in/main
===
--- glibc-package/trunk/debian/control.in/main  2006-02-22 20:16:44 UTC (rev 
1215)
+++ glibc-package/trunk/debian/control.in/main  2006-02-23 09:51:27 UTC (rev 
1216)
@@ -1,7 +1,7 @@
 Source: @glibc@
 Section: libs
 Priority: required
-Build-Depends: gettext, make (= 3.80-1), dpkg-dev (= 1.13.5), debianutils, 
tar, bzip2,
+Build-Depends: gettext, make (= 3.80-1), dpkg-dev (= 1.13.5), bzip2,
  texinfo, texi2html, file,
  linux-kernel-headers (= 2.6.13+0rc3-2) [!hurd-i386 !kfreebsd-i386],
  mig (= 1.3-2) [hurd-i386], hurd-dev (= 20020608-1) [hurd-i386], gnumach-dev 
[hurd-i386],


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



r1217 - glibc-package/trunk/debian/sysdeps

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 09:55:31 + (Thu, 23 Feb 2006)
New Revision: 1217

Modified:
   glibc-package/trunk/debian/sysdeps/i386.mk
Log:
Fix to the changes introduced in revision 1200



Modified: glibc-package/trunk/debian/sysdeps/i386.mk
===
--- glibc-package/trunk/debian/sysdeps/i386.mk  2006-02-23 09:51:27 UTC (rev 
1216)
+++ glibc-package/trunk/debian/sysdeps/i386.mk  2006-02-23 09:55:31 UTC (rev 
1217)
@@ -42,6 +42,7 @@
 endef
 
 define libc6-dev-amd64_extra_pkg_install
+mkdir -p debian/libc6-dev-amd64/usr/include
 cp -af debian/tmp-amd64/usr/include/x86_64-linux-gnu \
debian/libc6-dev-amd64/usr/include
 endef


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



r1218 - in glibc-package/trunk/debian: . patches

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 09:59:27 + (Thu, 23 Feb 2006)
New Revision: 1218

Added:
   glibc-package/trunk/debian/patches/ld-multiarch.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
 * Multiarch support:
   - Add ld-multiarch.diff (Add (/usr)/lib/$(config-machine)-$(config-os))
 to the search path of the dynamic linker) from Tollef Fog Heen.
 (Closes: #295855)



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2006-02-23 09:55:31 UTC (rev 
1217)
+++ glibc-package/trunk/debian/changelog2006-02-23 09:59:27 UTC (rev 
1218)
@@ -90,6 +90,10 @@
 gcc-3.4.
   * Remove --with-tls and --with-__thread in sysdeps/* as they are the
 default option since version 2.3.5.
+  * Multiarch support:
+- Add ld-multiarch.diff (Add (/usr)/lib/$(config-machine)-$(config-os)) 
+  to the search path of the dynamic linker) from Tollef Fog Heen.
+  (Closes: #295855)
 
  -- Clint Adams [EMAIL PROTECTED]  Sun, 12 Feb 2006 11:04:38 -0500
 

Added: glibc-package/trunk/debian/patches/ld-multiarch.diff
===
--- glibc-package/trunk/debian/patches/ld-multiarch.diff2006-02-23 
09:55:31 UTC (rev 1217)
+++ glibc-package/trunk/debian/patches/ld-multiarch.diff2006-02-23 
09:59:27 UTC (rev 1218)
@@ -0,0 +1,29 @@
+2005-01-20  Tollef Fog Heen  [EMAIL PROTECTED] 
+
+   * Makeconfig: add multiarch support
+
+--- glibc-2.3.6/Makeconfig 2006-02-22 12:44:52.424091146 +0100
 glibc-2.3.6/Makeconfig 2006-02-22 12:45:52.161604171 +0100
+@@ -176,6 +176,11 @@
+ endif
+ inst_libdir = $(install_root)$(libdir)
+ 
++# Extra places to look for libraries
++ifndef extra_libdir
++extra_libdir = 
/lib/$(config-machine)-$(config-os):$(exec_prefix)/lib/$(config-machine)-$(config-os)
++endif
++
+ # Where to install the shared library and dynamic linker.
+ ifndef slibdir
+ slibdir = $(exec_prefix)/lib
+@@ -479,6 +484,10 @@
+ default-rpath = $(libdir)
+ endif
+ 
++ifdef extra_libdir
++default-rpath += :$(extra_libdir)
++endif
++
+ ifndef link-extra-libs
+ link-extra-libs = $(LDLIBS-$(@F))
+ link-extra-libs-static = $(link-extra-libs)

Modified: glibc-package/trunk/debian/patches/series
===
--- glibc-package/trunk/debian/patches/series   2006-02-23 09:55:31 UTC (rev 
1217)
+++ glibc-package/trunk/debian/patches/series   2006-02-23 09:59:27 UTC (rev 
1218)
@@ -126,3 +126,4 @@
 glibc-manual-memory.diff -p1
 hurd-ioctl-decode-argument.diff -p0
 glibc-manual-string.diff -p1
+ld-multiarch.diff -p1


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



r1219 - in glibc-package/trunk/debian: . patches

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 10:04:15 + (Thu, 23 Feb 2006)
New Revision: 1219

Added:
   glibc-package/trunk/debian/patches/ldconfig-multiarch.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
 * Multiarch support:
   - Add ldconfig-multiarch.diff (add directories pointed from /lib/ldconfig/
 to the search path).



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2006-02-23 09:59:27 UTC (rev 
1218)
+++ glibc-package/trunk/debian/changelog2006-02-23 10:04:15 UTC (rev 
1219)
@@ -94,6 +94,8 @@
 - Add ld-multiarch.diff (Add (/usr)/lib/$(config-machine)-$(config-os)) 
   to the search path of the dynamic linker) from Tollef Fog Heen.
   (Closes: #295855)
+- Add ldconfig-multiarch.diff (add directories pointed from /lib/ldconfig
+  to the search path).
 
  -- Clint Adams [EMAIL PROTECTED]  Sun, 12 Feb 2006 11:04:38 -0500
 

Added: glibc-package/trunk/debian/patches/ldconfig-multiarch.diff
===
--- glibc-package/trunk/debian/patches/ldconfig-multiarch.diff  2006-02-23 
09:59:27 UTC (rev 1218)
+++ glibc-package/trunk/debian/patches/ldconfig-multiarch.diff  2006-02-23 
10:04:15 UTC (rev 1219)
@@ -0,0 +1,147 @@
+2006-02-23  Aurelien Jarno  [EMAIL PROTECTED] 
+
+   * elf/ldconfig.c: add directories pointed from /lib/ldconfig
+ to the search path.
+
+--- glibc-2.3.6/elf/ldconfig.c 2006-02-21 16:00:32.0 +0100
 glibc-2.3.6/elf/ldconfig.c 2006-02-23 03:08:45.0 +0100
+@@ -1052,6 +1027,129 @@
+   fclose (file);
+ }
+ 
++static void
++add_multiarch_dirs (const char *path)
++{
++  DIR *dir;
++  struct dirent64 *direntry;
++  char *file_name, *dir_name, *real_file_name, *link_path;
++  int file_name_len, real_file_name_len, link_path_len, len;
++  struct stat64 lstat_buf, stat_buf;
++  int is_link, is_dir;
++
++  file_name_len = PATH_MAX;
++  file_name = alloca (file_name_len);
++  
++  link_path_len = PATH_MAX;
++  link_path = alloca (link_path_len);
++ 
++  if (opt_chroot)
++{
++  dir_name = chroot_canon (opt_chroot, path);
++  real_file_name_len = PATH_MAX;
++  real_file_name = alloca (real_file_name_len);
++}
++  else
++{
++  dir_name = xstrdup(path);
++  real_file_name_len = 0;
++  real_file_name = file_name;
++}
++
++  if (dir_name == NULL || (dir = opendir (dir_name)) == NULL)
++{
++  if (opt_verbose)
++error (0, errno, _(Can't open directory %s), path);
++  if (opt_chroot  dir_name)
++free (dir_name);
++  return;
++}
++
++  while ((direntry = readdir64 (dir)) != NULL)
++{
++#ifdef _DIRENT_HAVE_D_TYPE
++  /* We only look at links.  */
++  if (direntry-d_type != DT_LNK)
++  continue;
++#endif /* _DIRENT_HAVE_D_TYPE  */
++
++  len = strlen (path) + strlen (direntry-d_name);
++  if (len  file_name_len)
++  {
++file_name_len = len + 1;
++file_name = alloca (file_name_len);
++if (!opt_chroot)
++  real_file_name = file_name;
++  }
++  sprintf (file_name, %s/%s, path, direntry-d_name);
++  if (opt_chroot)
++{
++  len = strlen (dir_name) + strlen (direntry-d_name);
++  if (len  real_file_name_len)
++{
++  real_file_name_len = len + 1;
++  real_file_name = alloca (real_file_name_len);
++}
++  sprintf (real_file_name, %s/%s, dir_name, direntry-d_name);
++}
++
++  if (__builtin_expect (lstat64 (real_file_name, lstat_buf), 0))
++{
++  error (0, errno, _(Cannot lstat %s), file_name);
++  continue;
++}
++
++  /* We only look at links.  */
++  is_link = S_ISLNK (lstat_buf.st_mode);
++  if (!is_link)
++{
++if (opt_verbose)
++  error (0, errno, _(%s is not a symlink), file_name);
++  continue;
++}
++
++  /* Check the symlink refers to a directory.  */
++  if (__builtin_expect (stat64 (real_file_name, stat_buf), 0))
++{
++if (opt_verbose)
++  error (0, errno, _(Cannot stat %s), file_name);
++  continue;
++}
++
++  is_dir = S_ISDIR (stat_buf.st_mode);
++  if (!is_dir)
++{
++if (opt_verbose)
++  error (0, errno, _(%s is not a directory), file_name);
++  continue;
++}
++
++  /* Read the link.  */
++  if (realpath(real_file_name, link_path) == NULL)
++  {
++if (opt_verbose)
++  error (0, errno, _(Cannot read link %s), file_name);
++  continue;
++  }
++
++  if (opt_chroot)
++  {
++ len = strlen(opt_chroot);
++ if (strncmp(opt_chroot, link_path, len) == 0)
++   add_dir(link_path + len);
++ else
++   error (0, errno, _(Link %s 

r1220 - in glibc-package/trunk/debian: . debhelper.in rules.d

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 10:07:58 + (Thu, 23 Feb 2006)
New Revision: 1220

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/debhelper.in/libc-alt.install
   glibc-package/trunk/debian/debhelper.in/libc.install
   glibc-package/trunk/debian/rules.d/build.mk
Log:
  * Multiarch support:
- Create (/usr)/lib/$(config-machine)-$(config-os) and add symlinks to
  these directories in /lib/ldconfig/



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2006-02-23 10:04:15 UTC (rev 
1219)
+++ glibc-package/trunk/debian/changelog2006-02-23 10:07:58 UTC (rev 
1220)
@@ -96,6 +96,8 @@
   (Closes: #295855)
 - Add ldconfig-multiarch.diff (add directories pointed from /lib/ldconfig
   to the search path).
+- Create (/usr)/lib/$(config-machine)-$(config-os) and add symlinks to
+  these directories in /lib/ldconfig/
 
  -- Clint Adams [EMAIL PROTECTED]  Sun, 12 Feb 2006 11:04:38 -0500
 

Modified: glibc-package/trunk/debian/debhelper.in/libc-alt.install
===
--- glibc-package/trunk/debian/debhelper.in/libc-alt.install2006-02-23 
10:04:15 UTC (rev 1219)
+++ glibc-package/trunk/debian/debhelper.in/libc-alt.install2006-02-23 
10:07:58 UTC (rev 1220)
@@ -1,3 +1,6 @@
 # This file is used for 64-bit libraries.
 TMPDIR/lib*/*.so* libDESTLIBDIR
 TMPDIR/usr/lib*/gconv/*.so* usr/libDESTLIBDIR/gconv
+TMPDIR/lib/ldconfig/
+TMPDIR/lib/*-*-gnu/ lib
+TMPDIR/usr/lib/*-*-gnu/ usr/lib

Modified: glibc-package/trunk/debian/debhelper.in/libc.install
===
--- glibc-package/trunk/debian/debhelper.in/libc.install2006-02-23 
10:04:15 UTC (rev 1219)
+++ glibc-package/trunk/debian/debhelper.in/libc.install2006-02-23 
10:07:58 UTC (rev 1220)
@@ -21,3 +21,7 @@
 debian/tmp-libc/usr/lib/pt_chown usr/lib
 
 debian/local/usr_sbin/tzconfig usr/sbin
+
+debian/tmp-libc/lib/ldconfig/
+debian/tmp-libc/lib/*-*-gnu/ lib
+debian/tmp-libc/usr/lib/*-*-gnu/ usr/lib

Modified: glibc-package/trunk/debian/rules.d/build.mk
===
--- glibc-package/trunk/debian/rules.d/build.mk 2006-02-23 10:04:15 UTC (rev 
1219)
+++ glibc-package/trunk/debian/rules.d/build.mk 2006-02-23 10:07:58 UTC (rev 
1220)
@@ -122,5 +122,13 @@
  ln -sf /lib/tls/librt.so.1 debian/tmp-libc/usr/lib/nptl/; \
fi
 
+   # Create the multidir directories, and the symlinks in /lib/ldconfig
+   mkdir -p debian/tmp-$(curpass)/lib/ldconfig; \
+   machine=`sed '/^ *config-machine *=/!d;s/.*= *//g' 
$(DEB_BUILDDIR)/config.make`; \
+   os=`sed '/^ *config-os *=/!d;s/.*= *//g' $(DEB_BUILDDIR)/config.make`; \
+   mkdir -p debian/tmp-$(curpass)/lib/$$machine-$$os 
debian/tmp-$(curpass)/usr/lib/$$machine-$$os; \
+   ln -s /lib/$$machine-$$os 
debian/tmp-$(curpass)/lib/ldconfig/$$machine-$$os-lib; \
+   ln -s /usr/lib/$$machine-$$os 
debian/tmp-$(curpass)/lib/ldconfig/$$machine-$$os-usr-lib 
+ 
$(call xx,extra_install)
touch $@


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



r1221 - in glibc-package/trunk/debian: . patches rules.d

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 10:15:26 + (Thu, 23 Feb 2006)
New Revision: 1221

Added:
   glibc-package/trunk/debian/patches/rtld.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
   glibc-package/trunk/debian/rules
   glibc-package/trunk/debian/rules.d/build.mk
Log:
  * Multiarch support:
- Add rtld.diff (add a new configuration variable rtlddir to change the
  dynamic linker in the ELF binaries) partly from Andreas Jochen. This is
  necessary to be able to install a glibc in the multiarch dir while still
  conforming to the various ABIs which specify a linker in /lib or /lib64.




Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2006-02-23 10:07:58 UTC (rev 
1220)
+++ glibc-package/trunk/debian/changelog2006-02-23 10:15:26 UTC (rev 
1221)
@@ -98,6 +98,10 @@
   to the search path).
 - Create (/usr)/lib/$(config-machine)-$(config-os) and add symlinks to
   these directories in /lib/ldconfig/
+- Add rtld.diff (add a new configuration variable rtlddir to change the
+  dynamic linker in the ELF binaries) partly from Andreas Jochen. This is
+  necessary to be able to install a glibc in the multiarch dir while still
+  conforming to the various ABIs which specify a linker in /lib or /lib64.
 
  -- Clint Adams [EMAIL PROTECTED]  Sun, 12 Feb 2006 11:04:38 -0500
 

Added: glibc-package/trunk/debian/patches/rtld.diff
===
--- glibc-package/trunk/debian/patches/rtld.diff2006-02-23 10:07:58 UTC 
(rev 1220)
+++ glibc-package/trunk/debian/patches/rtld.diff2006-02-23 10:15:26 UTC 
(rev 1221)
@@ -0,0 +1,55 @@
+2006-01-21  Aurelien Jarno  [EMAIL PROTECTED] 
+
+   * Makeconfig: new configuration variable rtlddir to change the
+ dynamic linker in the ELF binaries, which defaults to slibdir
+ 
+2005-08-30  Andreas Jochen  Andreas Jochens
+   * Makeconfig: use rtlddir instead of slibdir
+   * dlfcn/Makefile: likewise
+   * elf/Makefile: likewise
+
+--- glibc-2.3.6/Makeconfig 2005-08-30 17:48:26.0 +
 glibc-2.3.6/Makeconfig 2005-08-30 18:38:37.0 +
+@@ -187,6 +187,11 @@
+ endif
+ inst_slibdir = $(install_root)$(slibdir)
+ 
++# Directory of the dynamic linker in the ELF binaries
++ifndef rtlddir
++rtlddir := $(slibdir)
++endif
++
+ # Prefix to put on files installed in $(libdir).  For libraries `libNAME.a',
+ # the prefix is spliced between `lib' and the name, so the linker switch
+ # `-l$(libprefix)NAME' finds the library; for other files the prefix is
+@@ -438,7 +443,7 @@
+ endif
+ ifndef config-LDFLAGS
+ ifeq (yesyes,$(build-shared)$(elf))
+-config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
++config-LDFLAGS = -Wl,-dynamic-linker=$(rtlddir)/$(rtld-installed-name)
+ endif
+ endif
+ ifndef link-libc
+--- glibc-2.3.6/dlfcn/Makefile 2004-10-18 23:08:31.0 +
 glibc-2.3.6/dlfcn/Makefile 2005-08-30 18:38:37.0 +
+@@ -65,7 +65,7 @@
+ 
+ include ../Rules
+ 
+-LDFLAGS-dl.so = -Wl,-dynamic-linker,$(slibdir)/$(rtld-installed-name)
++LDFLAGS-dl.so = -Wl,-dynamic-linker,$(rtlddir)/$(rtld-installed-name)
+ 
+ test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(modules-names)))
+ $(test-modules): $(objpfx)%.so: $(objpfx)%.os $(common-objpfx)shlib.lds
+--- glibc-2.3.6/elf/Makefile   2005-08-30 17:48:26.0 +
 glibc-2.3.6/elf/Makefile   2005-08-30 18:38:37.0 +
+@@ -296,7 +296,7 @@
+   rm -f [EMAIL PROTECTED]
+ 
+ # interp.c exists just to get this string into the libraries.
+-CFLAGS-interp.c = -D'RUNTIME_LINKER=$(slibdir)/$(rtld-installed-name)' \
++CFLAGS-interp.c = -D'RUNTIME_LINKER=$(rtlddir)/$(rtld-installed-name)' \
+ -DNOT_IN_libc=1
+ $(objpfx)interp.os: $(common-objpfx)config.make
+ 

Modified: glibc-package/trunk/debian/patches/series
===
--- glibc-package/trunk/debian/patches/series   2006-02-23 10:07:58 UTC (rev 
1220)
+++ glibc-package/trunk/debian/patches/series   2006-02-23 10:15:26 UTC (rev 
1221)
@@ -128,3 +128,4 @@
 glibc-manual-string.diff -p1
 ld-multiarch.diff -p1
 ldconfig-multiarch.diff -p1
+rtld.diff -p1

Modified: glibc-package/trunk/debian/rules
===
--- glibc-package/trunk/debian/rules2006-02-23 10:07:58 UTC (rev 1220)
+++ glibc-package/trunk/debian/rules2006-02-23 10:15:26 UTC (rev 1221)
@@ -79,7 +79,6 @@
 datadir=$(prefix)/share
 includedir=$(prefix)/include
 infodir=$(prefix)/share/info
-libdir=$(prefix)/lib
 docdir=$(prefix)/share/doc
 mandir=$(prefix)/share/man
 sbindir=$(prefix)/sbin

Modified: glibc-package/trunk/debian/rules.d/build.mk
===
--- 

r1222 - in glibc-package/trunk/debian: . sysdeps

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 10:22:36 + (Thu, 23 Feb 2006)
New Revision: 1222

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/sysdeps/amd64.mk
Log:
Remove previous changes concerning the dynamic linker path on amd64, as they
appear to break the installer. Use that instead:

 * Remove the patch to install the libc into /lib instead of /lib64 on
   amd64. Use the new libdir, slibdir and rtlddir options in configparm to
   install the glibc in (/usr)/lib, and to use the dynamic linker path
   specified by the ABI for path for libc objects.  (Closes: #325226)



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2006-02-23 10:15:26 UTC (rev 
1221)
+++ glibc-package/trunk/debian/changelog2006-02-23 10:22:36 UTC (rev 
1222)
@@ -49,9 +49,6 @@
   [ Aurelien Jarno ]
   * Move dependency on lib64gcc1 from libc6-amd64 to libc6-dev-amd64 to 
 avoid a dependency loop.  (Closes: #352263)
-  * Remove the patch to install the libc into /lib instead of /lib64 on
-amd64 and move files after the call to 'make install'. This fixes 
-the wrong dynamic linker path for libc objects.  (Closes: #325226)
   * Use sed and test in /etc/init.d/glibc.sh to compare kernel versions.
 Put the Debian architecture name in the script at build time instead
 of using 'dpkg --print-architecture'. Thanks to Florent Bayle for 
@@ -84,8 +81,6 @@
 from Randolph Chung.  (Closes: #326581)
   * Switch to gcc-4.0 on hppa.
   * Add support for extra_pkg_install hooks for udeb packages.
-  * Add symlinks /lib64 - /lib and /usr/lib64 - /usr/lib in libc6-udeb
-on amd64.
   * Build back with -g1 on amd64, it was removed to permit the build with
 gcc-3.4.
   * Remove --with-tls and --with-__thread in sysdeps/* as they are the
@@ -102,7 +97,11 @@
   dynamic linker in the ELF binaries) partly from Andreas Jochen. This is
   necessary to be able to install a glibc in the multiarch dir while still
   conforming to the various ABIs which specify a linker in /lib or /lib64.
-
+  * Remove the patch to install the libc into /lib instead of /lib64 on
+amd64. Use the new libdir, slibdir and rtlddir options in configparm to 
+install the glibc in (/usr)/lib, and to use the dynamic linker path
+specified by the ABI for path for libc objects.  (Closes: #325226)
+
  -- Clint Adams [EMAIL PROTECTED]  Sun, 12 Feb 2006 11:04:38 -0500
 
 glibc (2.3.6-1) unstable; urgency=low

Modified: glibc-package/trunk/debian/sysdeps/amd64.mk
===
--- glibc-package/trunk/debian/sysdeps/amd64.mk 2006-02-23 10:15:26 UTC (rev 
1221)
+++ glibc-package/trunk/debian/sysdeps/amd64.mk 2006-02-23 10:22:36 UTC (rev 
1222)
@@ -2,22 +2,13 @@
 libc_MIN_KERNEL_SUPPORTED = 2.6.0
 libc_add-ons = nptl $(add-ons)
 libc_extra_cflags = -O3 -g1
+slibdir = /lib
+libdir = /usr/lib
+rtlddir = /lib64
 
 # /lib64 and /usr/lib64 are provided by glibc instead base-files: #259302.
 define libc6_extra_pkg_install
 ln -sf /lib debian/$(curpass)/lib64
 ln -sf lib debian/$(curpass)/usr/lib64
 endef
-define libc6-udeb_extra_pkg_install
-ln -sf /lib debian/$(curpass)/lib64
-mkdir -p debian/$(curpass)/usr/lib
-ln -sf lib debian/$(curpass)/usr/lib64
-endef
 
-define libc_extra_install
-mv debian/tmp-libc/lib64 debian/tmp-libc/lib
-mv debian/tmp-libc/usr/lib64/* debian/tmp-libc/usr/lib
-for link in $$(find debian/tmp-libc/usr/lib -type l) ; do ln -sf $$(readlink 
$$link | sed -e s#64##g) $$link ; done
-for so in $$(find debian/tmp-libc/usr/lib -maxdepth 1 -type f -name *.so) ; do 
perl -pi -e s#/lib64/#/lib/#g $$so ; done
-endef
-


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



r1223 - in glibc-package/trunk/debian: . local/manpages

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 10:30:14 + (Thu, 23 Feb 2006)
New Revision: 1223

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/local/manpages/ldd.1
Log:
 * Add -u option to the ldd manpage.  (Closes: #354074)



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2006-02-23 10:22:36 UTC (rev 
1222)
+++ glibc-package/trunk/debian/changelog2006-02-23 10:30:14 UTC (rev 
1223)
@@ -101,6 +101,7 @@
 amd64. Use the new libdir, slibdir and rtlddir options in configparm to 
 install the glibc in (/usr)/lib, and to use the dynamic linker path
 specified by the ABI for path for libc objects.  (Closes: #325226)
+  * Add -u option to the ldd manpage.  (Closes: #354074)
 
  -- Clint Adams [EMAIL PROTECTED]  Sun, 12 Feb 2006 11:04:38 -0500
 

Modified: glibc-package/trunk/debian/local/manpages/ldd.1
===
--- glibc-package/trunk/debian/local/manpages/ldd.1 2006-02-23 10:22:36 UTC 
(rev 1222)
+++ glibc-package/trunk/debian/local/manpages/ldd.1 2006-02-23 10:30:14 UTC 
(rev 1223)
@@ -33,6 +33,9 @@
 Perform relocations for both data objects and functions, and
 report any missing objects or functions (ELF only).
 .TP
+.B \-u\ \-\-unused
+Print unused direct dependencies.
+.TP
 .B \-\-help
 Usage information.
 .SH BUGS


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



Bug#325226: libc6: Wrong dynamic linker on amd64

2006-02-23 Thread Aurelien Jarno

Andreas Jochens a écrit :

Hello,

Hi,

[..]



Yes, without the /lib64 symlink the system breaks in any case because
the path to the linker /lib64/ld-linux-x86-64.so.2 - which is hardcoded 
by gcc into every binary - no longer exists without the /lib64 symlink.


But I liked the fact that up to now this was the _only_ thing
which really used the /lib64 symlink. I do not like the ugly
(/usr)/lib64 directories at all and I think they should be dropped
in the long term. Again, this point is just my personal opinion
and not really technically important to make things work now.



I reverted the changes done in the SVN, and used a modified version from 
the patch you sent before. Basically my changes are that nothing is 
hardcoded and no conditional patching is used, as it is possible to 
change slibdir and rtlddir in the configparams file of the build tree, 
and directly via sysdeps/*.mk.


This patch is also necessary for proper multiarch support, therefore I 
will send it to upstream.


--
  .''`.  Aurelien Jarno | GPG: 1024D/F1BCDB73
 : :' :  Debian developer   | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net


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



Re: Use gcc 4.0 to build glibc on all architectures

2006-02-23 Thread Aurelien Jarno

Michael Banck a écrit :

On Thu, Feb 16, 2006 at 12:00:36AM +0100, Aurelien Jarno wrote:

A few Debian architectures, are still using and old gcc to build the 
glibc. I think we should try to move slowly to gcc 4.0, as other

versions (mainly gcc-3.4), won't be supported as gcc 4.0 will be. Also
I have hurd they've been some discussions about shipping etch without
gcc-3.4.

- hurd-i386 is using gcc 3.3. I will contact the hurd porters the same
 way as for m68k.



glibc-2.3.6 supports gcc-4.0 on GNU/Hurd upstream.  There have been some
binutils issues involving z_relro nobody was able to track down yet,
however.

The attached patch makes glibc build fine on hurd-i386.


Thanks, patch applied.

Aurelien

--
  .''`.  Aurelien Jarno | GPG: 1024D/F1BCDB73
 : :' :  Debian developer   | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net


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



r1224 - in glibc-package/trunk/debian: . control.in sysdeps

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 11:03:27 + (Thu, 23 Feb 2006)
New Revision: 1224

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/control
   glibc-package/trunk/debian/control.in/main
   glibc-package/trunk/debian/sysdeps/hurd.mk
Log:
 * Merged a patch from Michael Bank to use gcc-4.0 on Hurd.



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2006-02-23 10:30:14 UTC (rev 
1223)
+++ glibc-package/trunk/debian/changelog2006-02-23 11:03:27 UTC (rev 
1224)
@@ -102,6 +102,7 @@
 install the glibc in (/usr)/lib, and to use the dynamic linker path
 specified by the ABI for path for libc objects.  (Closes: #325226)
   * Add -u option to the ldd manpage.  (Closes: #354074)
+  * Merged a patch from Michael Bank to use gcc-4.0 on Hurd.
 
  -- Clint Adams [EMAIL PROTECTED]  Sun, 12 Feb 2006 11:04:38 -0500
 

Modified: glibc-package/trunk/debian/control
===
--- glibc-package/trunk/debian/control  2006-02-23 10:30:14 UTC (rev 1223)
+++ glibc-package/trunk/debian/control  2006-02-23 11:03:27 UTC (rev 1224)
@@ -6,7 +6,7 @@
  linux-kernel-headers (= 2.6.13+0rc3-2) [!hurd-i386 !kfreebsd-i386],
  mig (= 1.3-2) [hurd-i386], hurd-dev (= 20020608-1) [hurd-i386], gnumach-dev 
[hurd-i386],
  kfreebsd-kernel-headers [kfreebsd-i386],
- gcc-4.0 [!m68k !hurd-i386], gcc-3.4 [m68k], gcc-3.3 [hurd-i386], binutils (= 
2.16.1cvs20051109-1),
+ gcc-4.0 [!m68k], gcc-3.4 [m68k], binutils (= 2.16.1cvs20051109-1),
  autoconf, sed (= 4.0.5-4), gawk, debhelper (= 4.1.76),
  libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc],
  quilt

Modified: glibc-package/trunk/debian/control.in/main
===
--- glibc-package/trunk/debian/control.in/main  2006-02-23 10:30:14 UTC (rev 
1223)
+++ glibc-package/trunk/debian/control.in/main  2006-02-23 11:03:27 UTC (rev 
1224)
@@ -6,7 +6,7 @@
  linux-kernel-headers (= 2.6.13+0rc3-2) [!hurd-i386 !kfreebsd-i386],
  mig (= 1.3-2) [hurd-i386], hurd-dev (= 20020608-1) [hurd-i386], gnumach-dev 
[hurd-i386],
  kfreebsd-kernel-headers [kfreebsd-i386],
- gcc-4.0 [!m68k !hurd-i386], gcc-3.4 [m68k], gcc-3.3 [hurd-i386], binutils (= 
2.16.1cvs20051109-1),
+ gcc-4.0 [!m68k], gcc-3.4 [m68k], binutils (= 2.16.1cvs20051109-1),
  autoconf, sed (= 4.0.5-4), gawk, debhelper (= 4.1.76),
  libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc],
  quilt

Modified: glibc-package/trunk/debian/sysdeps/hurd.mk
===
--- glibc-package/trunk/debian/sysdeps/hurd.mk  2006-02-23 10:30:14 UTC (rev 
1223)
+++ glibc-package/trunk/debian/sysdeps/hurd.mk  2006-02-23 11:03:27 UTC (rev 
1224)
@@ -6,10 +6,6 @@
 libc = libc0.3
 slibdir = /lib
 
-# work around to build, gcc-3.4/gcc-4.0 are not tested yet.
-CC = gcc-3.3
-BUILD_CC = gcc-3.3
-
 # Glibc should really do this for us.
 define libc_extra_install
 mkdir -p debian/tmp-$(curpass)/lib
@@ -21,6 +17,7 @@
 true
 endef
 
-# TLS is broken currently and results in Mach panicing
-libc_extra_config_options := $(extra_config_options) --without-tls
+# TLS is broken currently and results in Mach panicing.
+# ld.so is broken currently if z_relro is used.
+libc_extra_config_options := $(extra_config_options) --without-tls 
libc_cv_z_relro=no
 


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



r1225 - in glibc-package/trunk/debian: . patches

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 11:18:30 + (Thu, 23 Feb 2006)
New Revision: 1225

Added:
   glibc-package/trunk/debian/patches/resource_h.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
 * Add resource_h.diff (RLIMIT_NICE and RLIMIT_RTPRIO support) from MAIN.
   (Closes: #352636)



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2006-02-23 11:03:27 UTC (rev 
1224)
+++ glibc-package/trunk/debian/changelog2006-02-23 11:18:30 UTC (rev 
1225)
@@ -103,6 +103,8 @@
 specified by the ABI for path for libc objects.  (Closes: #325226)
   * Add -u option to the ldd manpage.  (Closes: #354074)
   * Merged a patch from Michael Bank to use gcc-4.0 on Hurd.
+  * Add resource_h.diff (RLIMIT_NICE and RLIMIT_RTPRIO support) from MAIN.  
+(Closes: #352636)
 
  -- Clint Adams [EMAIL PROTECTED]  Sun, 12 Feb 2006 11:04:38 -0500
 

Added: glibc-package/trunk/debian/patches/resource_h.diff
===
--- glibc-package/trunk/debian/patches/resource_h.diff  2006-02-23 11:03:27 UTC 
(rev 1224)
+++ glibc-package/trunk/debian/patches/resource_h.diff  2006-02-23 11:18:30 UTC 
(rev 1225)
@@ -0,0 +1,146 @@
+Modified files:
+sysdeps/unix/sysv/linux/bits: resource.h 
+sysdeps/unix/sysv/linux/alpha/bits: resource.h 
+sysdeps/unix/sysv/linux/sparc/bits: resource.h 
+sysdeps/unix/sysv/linux/mips/bits: resource.h 
+
+Log message:
+(RLIMIT_NICE, RLIMIT_RTPRIO): Add.
+(RLIMIT_NLIMITS): Adjust.
+
+===
+RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/bits/resource.h,v
+retrieving revision 1.17
+retrieving revision 1.19
+diff -u -r1.17 -r1.19
+--- libc/sysdeps/unix/sysv/linux/bits/resource.h   2004/08/16 08:51:45 
1.17
 libc/sysdeps/unix/sysv/linux/bits/resource.h   2005/06/21 18:38:46 
1.19
+@@ -1,5 +1,5 @@
+ /* Bit values  structures for resource limits.  Linux version.
+-   Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2004
++   Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2004, 2005
+Free Software Foundation, Inc.
+This file is part of the GNU C Library.
+ 
+@@ -89,7 +89,18 @@
+   __RLIMIT_MSGQUEUE = 12,
+ #define RLIMIT_MSGQUEUE __RLIMIT_MSGQUEUE
+ 
+-  __RLIMIT_NLIMITS = 13,
++  /* Maximum nice priority allowed to raise to.
++ Nice levels 19 .. -20 correspond to 0 .. 39
++ values of this resource limit.  */
++  __RLIMIT_NICE = 13,
++#define RLIMIT_NICE __RLIMIT_NICE
++
++  /* Maximum realtime priority allowed for non-priviledged
++ processes.  */
++  __RLIMIT_RTPRIO = 14,
++#define RLIMIT_RTPRIO __RLIMIT_RTPRIO
++
++  __RLIMIT_NLIMITS = 15,
+   __RLIM_NLIMITS = __RLIMIT_NLIMITS
+ #define RLIMIT_NLIMITS __RLIMIT_NLIMITS
+ #define RLIM_NLIMITS __RLIM_NLIMITS
+===
+RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/alpha/bits/resource.h,v
+retrieving revision 1.6
+retrieving revision 1.8
+diff -u -r1.6 -r1.8
+--- libc/sysdeps/unix/sysv/linux/alpha/bits/resource.h 2004/08/16 08:51:46 
1.6
 libc/sysdeps/unix/sysv/linux/alpha/bits/resource.h 2005/06/21 18:38:49 
1.8
+@@ -1,5 +1,5 @@
+ /* Bit values  structures for resource limits.  Alpha/Linux version.
+-   Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2004
++   Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2004, 2005
+Free Software Foundation, Inc.
+This file is part of the GNU C Library.
+ 
+@@ -89,7 +89,18 @@
+   __RLIMIT_MSGQUEUE = 12,
+ #define RLIMIT_MSGQUEUE __RLIMIT_MSGQUEUE
+ 
+-  __RLIMIT_NLIMITS = 13,
++  /* Maximum nice priority allowed to raise to.
++ Nice levels 19 .. -20 correspond to 0 .. 39
++ values of this resource limit.  */
++  __RLIMIT_NICE = 13,
++#define RLIMIT_NICE __RLIMIT_NICE
++
++  /* Maximum realtime priority allowed for non-priviledged
++ processes.  */
++  __RLIMIT_RTPRIO = 14,
++#define RLIMIT_RTPRIO __RLIMIT_RTPRIO
++
++  __RLIMIT_NLIMITS = 15,
+   __RLIM_NLIMITS = __RLIMIT_NLIMITS
+ #define RLIMIT_NLIMITS __RLIMIT_NLIMITS
+ #define RLIM_NLIMITS __RLIM_NLIMITS
+===
+RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/sparc/bits/resource.h,v
+retrieving revision 1.7
+retrieving revision 1.9
+diff -u -r1.7 -r1.9
+--- libc/sysdeps/unix/sysv/linux/sparc/bits/resource.h 2004/08/16 08:51:46 
1.7
 libc/sysdeps/unix/sysv/linux/sparc/bits/resource.h 2005/06/21 18:38:50 
1.9
+@@ -1,5 +1,5 @@
+ /* Bit values  structures for resource limits.  Linux/SPARC version.
+-   Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2004
++   Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2004, 2005
+Free Software Foundation, Inc.
+This file is part of the GNU C Library.
+ 
+@@ -89,7 +89,18 @@
+   

r1226 - in glibc-package/trunk/debian: . patches

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 11:33:46 + (Thu, 23 Feb 2006)
New Revision: 1226

Added:
   glibc-package/trunk/debian/patches/hppa-inlining.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
  * Add hppa-inlining.diff (Increase the maximal overall growth of the
compilation unit caused by inlining for dl-reloc.c on hppa).



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2006-02-23 11:18:30 UTC (rev 
1225)
+++ glibc-package/trunk/debian/changelog2006-02-23 11:33:46 UTC (rev 
1226)
@@ -105,6 +105,8 @@
   * Merged a patch from Michael Bank to use gcc-4.0 on Hurd.
   * Add resource_h.diff (RLIMIT_NICE and RLIMIT_RTPRIO support) from MAIN.  
 (Closes: #352636)
+  * Add hppa-inlining.diff (Increase the maximal overall growth of the
+compilation unit caused by inlining for dl-reloc.c on hppa).
 
  -- Clint Adams [EMAIL PROTECTED]  Sun, 12 Feb 2006 11:04:38 -0500
 

Added: glibc-package/trunk/debian/patches/hppa-inlining.diff
===
--- glibc-package/trunk/debian/patches/hppa-inlining.diff   2006-02-23 
11:18:30 UTC (rev 1225)
+++ glibc-package/trunk/debian/patches/hppa-inlining.diff   2006-02-23 
11:33:46 UTC (rev 1226)
@@ -0,0 +1,14 @@
+Increase the maximal overall growth of the compilation unit caused
+by inlining for dl-reloc.c on hppa. This remove some warnings and 
+strangely it reduces the size of the final binary.
+
+--- glibc-2.3.6/sysdeps/hppa/Makefile   2006-02-14 17:28:55.0 +0100
 glibc-2.3.6/sysdeps/hppa/Makefile   2006-02-14 17:29:29.0 +0100
+@@ -24,6 +24,7 @@
+
+ ifeq ($(subdir),elf)
+ CFLAGS-rtld.c += -mdisable-fpregs
++CFLAGS-dl-reloc.c += --param inline-unit-growth=100
+ sysdep-dl-routines += dl-symaddr dl-fptr
+ sysdep_routines += $(sysdep-dl-routines)
+ sysdep-rtld-routines += $(sysdep-dl-routines)

Modified: glibc-package/trunk/debian/patches/series
===
--- glibc-package/trunk/debian/patches/series   2006-02-23 11:18:30 UTC (rev 
1225)
+++ glibc-package/trunk/debian/patches/series   2006-02-23 11:33:46 UTC (rev 
1226)
@@ -130,3 +130,4 @@
 ldconfig-multiarch.diff -p1
 rtld.diff -p1
 resource_h.diff -p1
+hppa-inlining.diff -p1


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



Bug#227386: libc6-dev: ENOTSUP==EOPNOTSUPP, which violates SUSv3

2006-02-23 Thread Gabor Gombas
On Thu, Feb 23, 2006 at 04:30:55AM +, Brian M. Carlson wrote:

  By introducing a new define, you are breaking standard compliance.
 
 Well, there is no better way.  You want to preserve binary compatibility
 at the expense of all else.  I want to preserve standards compliance at
 the expense of all else.  I am trying to offer a compromise.

You can not preseve standards compliance by breaking standards
compliance, so that's out. What remains is preserving binary compliance,
and that can be achieved by doing nothing.

 Actually, no it won't.  It will continue to return the wrong value
 (EOPNOTSUPP) that existing code returns.  At some point, one might want
 to fix that with new @GLIBC_2.3.7 symbols, but I'm not going to
 implement that right now.  Also, see the paragraph above.

Oh, so you _do_ know how to fix it properly:

- Make ENOTSUP and EOPNOTSUPP have different values in the header
- Ensure that the implementations with the current symbol versions
  continue to return the old value to preserve binary compatibility
- Create a new version for every affected function that does the desired
  error-code remapping

So do it and propose a patch to upstream (or hire someone to do it for
you). Handwaving and posting completely broken patches will not help.
(Oh, and be prepared for Ulrich Drepper rejecting this exact change, as
he already did in 1999).

 If and when that happens, my code will be broken, and I will be happy to
 fix it.  Expecting that I act as if something will happen, when I cannot
 be certain it will, is silly.

By the same argument, expecting that ENOTSUP and EOPNOTSUPP having
different values in the future, when you cannot be certain they will
(i.e. you haven't written a patch that got accepted upstream, and you
have forced every Linux user to upgrade), is silly. So you should fix
your code _now_, and remove the extra handling of ENOTSUP/EOPNOTSUPP
if/when they will have separate values.

Gabor

-- 
 -
 MTA SZTAKI Computer and Automation Research Institute
Hungarian Academy of Sciences
 -



Bug#347173: glibc: Romanian days are written with mixed case letters/Romanian alplhabet reordered

2006-02-23 Thread Eddy Petrişor
On 2/23/06, Eddy Petrişor [EMAIL PROTECTED] wrote:
You may also define
  lang_term U0072U006FU006E
  lang_lib  U0072U0075U006D
  
   lang_term ron ?
   lang_lib rud ?
  
   Are you sure?
   What are the meanings of these items?
 
  These are ISO 639-2 codes, see
http://www.loc.gov/standards/iso639-2/langcodes.html
  They are provided in locale/iso-639.def, this is why you could
  add them.

 Oh, ok. I will add this info, and also the first_weekday will be added
 (I will send another patch tomorrow).


I managed to do it today, so here it is (hopefully) the final version
of the patch for locale ro_RO.

This fixes also:
+   * locales/ro_RO: first_weekday and first_workday are both Monday
+   * locales/ro_RO: added terminology and bibliographic codes for RO
+   reference: http://www.loc.gov/standards/iso639-2/langcodes.html#qr


Thanks for all your assistance.

Note: these latest changes were not tested yet.
--
Regards,
EddyP
=
Imagination is more important than knowledge A.Einstein


ro_RO_massive_fix-200602231426.diff.gz
Description: GNU Zip compressed data


r1227 - in glibc-package/trunk/debian: . control.in rules.d sysdeps

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 16:18:45 + (Thu, 23 Feb 2006)
New Revision: 1227

Added:
   glibc-package/trunk/debian/control.in/i386
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/control.in/main
   glibc-package/trunk/debian/rules.d/control.mk
   glibc-package/trunk/debian/rules.d/debhelper.mk
   glibc-package/trunk/debian/sysdeps/amd64.mk
Log:
  * Build a 32-bit libc on amd64, using the new multiarch directories.
(Closes: #274367)



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2006-02-23 11:33:46 UTC (rev 
1226)
+++ glibc-package/trunk/debian/changelog2006-02-23 16:18:45 UTC (rev 
1227)
@@ -107,6 +107,8 @@
 (Closes: #352636)
   * Add hppa-inlining.diff (Increase the maximal overall growth of the
 compilation unit caused by inlining for dl-reloc.c on hppa).
+  * Build a 32-bit libc on amd64, using the new multiarch directories.
+(Closes: #274367)
 
  -- Clint Adams [EMAIL PROTECTED]  Sun, 12 Feb 2006 11:04:38 -0500
 

Added: glibc-package/trunk/debian/control.in/i386
===
--- glibc-package/trunk/debian/control.in/i386  2006-02-23 11:33:46 UTC (rev 
1226)
+++ glibc-package/trunk/debian/control.in/i386  2006-02-23 16:18:45 UTC (rev 
1227)
@@ -0,0 +1,22 @@
+Package: libc6-i386
+Architecture: amd64
+Section: libs
+Priority: standard
+Depends: libc6 (= ${Source-Version})
+Conflicts: ia32-libs (= 1.5)
+Description: GNU C Library: 32bit shared libraries for AMD64
+ This package includes shared versions of the standard C
+ library and the standard math library, as well as many others.
+ This is the 32bit version of the library, meant for AMD64 systems.
+
+Package: libc6-dev-i386
+Architecture: amd64
+Section: libdevel
+Priority: optional
+Provides: lib32c-dev
+Depends: libc6-i386 (= ${Source-Version}), libc6-dev (= ${Source-Version}), 
lib32gcc1
+Description: GNU C Library: 32bit development libraries for AMD64
+ Contains the symlinks and object files needed to compile and link programs
+ which use the standard C library. This is the 32bit version of the
+ library, meant for AMD64 systems.
+

Modified: glibc-package/trunk/debian/control.in/main
===
--- glibc-package/trunk/debian/control.in/main  2006-02-23 11:33:46 UTC (rev 
1226)
+++ glibc-package/trunk/debian/control.in/main  2006-02-23 16:18:45 UTC (rev 
1227)
@@ -8,7 +8,7 @@
  kfreebsd-kernel-headers [kfreebsd-i386],
  gcc-4.0 [!m68k], gcc-3.4 [m68k], binutils (= 2.16.1cvs20051109-1),
  autoconf, sed (= 4.0.5-4), gawk, debhelper (= 4.1.76),
- libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc],
+ libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc], libc6-dev-i386 [amd64] | 
ia32-libs-dev [amd64] (= 1.5),
  quilt
 Build-Depends-Indep: perl, po-debconf
 Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org

Modified: glibc-package/trunk/debian/rules.d/control.mk
===
--- glibc-package/trunk/debian/rules.d/control.mk   2006-02-23 11:33:46 UTC 
(rev 1226)
+++ glibc-package/trunk/debian/rules.d/control.mk   2006-02-23 16:18:45 UTC 
(rev 1227)
@@ -23,6 +23,7 @@
cat debian/control.in/libc6.1[EMAIL PROTECTED]
cat debian/control.in/libc0.3[EMAIL PROTECTED]
cat debian/control.in/libc0.1[EMAIL PROTECTED]
+   cat debian/control.in/i386   [EMAIL PROTECTED]
cat debian/control.in/sparc64[EMAIL PROTECTED]
cat debian/control.in/s390x  [EMAIL PROTECTED]
cat debian/control.in/amd64  [EMAIL PROTECTED]

Modified: glibc-package/trunk/debian/rules.d/debhelper.mk
===
--- glibc-package/trunk/debian/rules.d/debhelper.mk 2006-02-23 11:33:46 UTC 
(rev 1226)
+++ glibc-package/trunk/debian/rules.d/debhelper.mk 2006-02-23 16:18:45 UTC 
(rev 1227)
@@ -188,16 +188,17 @@
  esac; \
done
 
-   # Hack: special-case passes whose destdir is 64 (i.e. /lib64)
-   # to use a different install template, which includes more
-   # libraries.  Also generate a -dev.  Non-64 libraries get scripts
+   # Hack: special-case passes whose destdir is 32, 64 or a multiarch
+   # directory to use a different install template, which includes more
+   # libraries.  Also generate a -dev.  Other libraries get scripts
# to temporarily disable hwcap.  This needs some cleaning up.
set -- $(OPT_DESTDIRS); \
for x in $(OPT_PASSES); do \
  destdir=$$1; \
  shift; \
  z=debian/$(libc)-$$x.install; \
- if test $$destdir = 64; then \
+ case $$destdir in \
+ 32 | 64 | /*-*-gnu) \
cp debian/debhelper.in/libc-alt.install 

r1228 - glibc-package/trunk/debian

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 16:50:25 + (Thu, 23 Feb 2006)
New Revision: 1228

Modified:
   glibc-package/trunk/debian/changelog
Log:
- Cosmetic fixes by debchanges
- Change the distribution to unstable



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2006-02-23 16:18:45 UTC (rev 
1227)
+++ glibc-package/trunk/debian/changelog2006-02-23 16:50:25 UTC (rev 
1228)
@@ -1,4 +1,4 @@
-glibc (2.3.6-2) UNRELEASED; urgency=low
+glibc (2.3.6-2) unstable; urgency=low
 
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
@@ -18,7 +18,7 @@
  locales.  (Closes: #240901)
* Fix the week definition for the C locale.
* Check first_weekday fields against current CLDR snapshot.  Modified
- locales are *_GB (=2), ar_SY (=5), ms_MY (=2), id_ID (=2).  Add 
+ locales are *_GB (=2), ar_SY (=5), ms_MY (=2), id_ID (=2).  Add
  this field to more locales.
* locale-gen: Replace 'test ... -a ...' by two tests.
* Add an All locales option to the locales/locales_to_be_generated
@@ -45,21 +45,21 @@
 (Closes: #344836).
   * debian/local/manpages/locale.1: remove double quotes from
 synopsis.  (Closes: #352597)
-
+
   [ Aurelien Jarno ]
-  * Move dependency on lib64gcc1 from libc6-amd64 to libc6-dev-amd64 to 
+  * Move dependency on lib64gcc1 from libc6-amd64 to libc6-dev-amd64 to
 avoid a dependency loop.  (Closes: #352263)
   * Use sed and test in /etc/init.d/glibc.sh to compare kernel versions.
 Put the Debian architecture name in the script at build time instead
-of using 'dpkg --print-architecture'. Thanks to Florent Bayle for 
+of using 'dpkg --print-architecture'. Thanks to Florent Bayle for
 the idea.  (Closes: #325802, #328088, #339482)
-  * Fix example code showing how to use hooks for malloc.  (Closes: 
+  * Fix example code showing how to use hooks for malloc.  (Closes:
 bug#333565).
-  * Add hurd-ioctl-decode-argument.diff (fixes decoding of ioctl 
+  * Add hurd-ioctl-decode-argument.diff (fixes decoding of ioctl
 arguments) from Samuel Thibault.  (Closes: #320273)
   * Fix the prototype of sbrk() in the manual.  (Closes: #281863)
   * Fix the strcasestr() examples in the manual.  (Closes: #289853)
-  * Install libc_nonshared.a in /usr/lib/nptl, and fix the location 
+  * Install libc_nonshared.a in /usr/lib/nptl, and fix the location
 of the static libraries of the NPTL ld scripts. (Closes: #347762)
   * Update debian/ files for GNU/kFreeBSD.  (Closes: #351638)
   * Regenerate debian/control, generate debian/control.in/libc0.1.
@@ -72,12 +72,12 @@
   * Add myself to Uploaders.
   * Switch to gcc-4.0 on powerpc.
   * Remove old hack for gcc-3.4 on amd64.
-  * Build with the compiler defined as default for glibc (ie currently 
+  * Build with the compiler defined as default for glibc (ie currently
 gcc-4.0) instead of gcc on amd64.
-  * Decrease priorities of 64-bit main and -dev packages to standard 
-and optional for all architectures. It better matches override, 
+  * Decrease priorities of 64-bit main and -dev packages to standard
+and optional for all architectures. It better matches override,
 though it will still have to be changed.
-  * Fix glibc235-hppa-lt.diff (restore ret0 across calls to CDISABLE) 
+  * Fix glibc235-hppa-lt.diff (restore ret0 across calls to CDISABLE)
 from Randolph Chung.  (Closes: #326581)
   * Switch to gcc-4.0 on hppa.
   * Add support for extra_pkg_install hooks for udeb packages.
@@ -86,7 +86,7 @@
   * Remove --with-tls and --with-__thread in sysdeps/* as they are the
 default option since version 2.3.5.
   * Multiarch support:
-- Add ld-multiarch.diff (Add (/usr)/lib/$(config-machine)-$(config-os)) 
+- Add ld-multiarch.diff (add (/usr)/lib/$(config-machine)-$(config-os))
   to the search path of the dynamic linker) from Tollef Fog Heen.
   (Closes: #295855)
 - Add ldconfig-multiarch.diff (add directories pointed from /lib/ldconfig
@@ -98,20 +98,20 @@
   necessary to be able to install a glibc in the multiarch dir while still
   conforming to the various ABIs which specify a linker in /lib or /lib64.
   * Remove the patch to install the libc into /lib instead of /lib64 on
-amd64. Use the new libdir, slibdir and rtlddir options in configparm to 
+amd64. Use the new libdir, slibdir and rtlddir options in configparm to
 install the glibc in (/usr)/lib, and to use the dynamic linker path
 specified by the ABI for path for libc objects.  (Closes: #325226)
   * Add -u option to the ldd manpage.  (Closes: #354074)
   * Merged a patch from Michael Bank to use gcc-4.0 on Hurd.
-  * Add resource_h.diff (RLIMIT_NICE and RLIMIT_RTPRIO support) from MAIN.  
+  * Add resource_h.diff (RLIMIT_NICE and RLIMIT_RTPRIO support) from MAIN.
 (Closes: #352636)
   * Add hppa-inlining.diff 

r1229 - in glibc-package/trunk/debian: . control.in patches

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 17:06:15 + (Thu, 23 Feb 2006)
New Revision: 1229

Modified:
   glibc-package/trunk/debian/control
   glibc-package/trunk/debian/control.in/main
   glibc-package/trunk/debian/patches/resource_h.diff
Log:
Fixes that I forget to put back in the SVN from my local tree
- regenerate control
- small fix to resource_h.diff



Modified: glibc-package/trunk/debian/control
===
--- glibc-package/trunk/debian/control  2006-02-23 16:50:25 UTC (rev 1228)
+++ glibc-package/trunk/debian/control  2006-02-23 17:06:15 UTC (rev 1229)
@@ -8,7 +8,7 @@
  kfreebsd-kernel-headers [kfreebsd-i386],
  gcc-4.0 [!m68k], gcc-3.4 [m68k], binutils (= 2.16.1cvs20051109-1),
  autoconf, sed (= 4.0.5-4), gawk, debhelper (= 4.1.76),
- libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc],
+ libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc], libc6-dev-i386 [amd64] | 
ia32-libs-dev (= 1.5) [amd64],
  quilt
 Build-Depends-Indep: perl, po-debconf
 Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
@@ -343,6 +343,28 @@
  This package contains a minimal set of libraries needed for the Debian
  installer.  Do not install it on a normal system.
 
+Package: libc6-i386
+Architecture: amd64
+Section: libs
+Priority: standard
+Depends: libc6 (= ${Source-Version})
+Conflicts: ia32-libs (= 1.5)
+Description: GNU C Library: 32bit shared libraries for AMD64
+ This package includes shared versions of the standard C
+ library and the standard math library, as well as many others.
+ This is the 32bit version of the library, meant for AMD64 systems.
+
+Package: libc6-dev-i386
+Architecture: amd64
+Section: libdevel
+Priority: optional
+Provides: lib32c-dev
+Depends: libc6-i386 (= ${Source-Version}), libc6-dev (= ${Source-Version}), 
lib32gcc1
+Description: GNU C Library: 32bit development libraries for AMD64
+ Contains the symlinks and object files needed to compile and link programs
+ which use the standard C library. This is the 32bit version of the
+ library, meant for AMD64 systems.
+
 Package: libc6-sparc64
 Architecture: sparc
 Section: libs

Modified: glibc-package/trunk/debian/control.in/main
===
--- glibc-package/trunk/debian/control.in/main  2006-02-23 16:50:25 UTC (rev 
1228)
+++ glibc-package/trunk/debian/control.in/main  2006-02-23 17:06:15 UTC (rev 
1229)
@@ -8,7 +8,7 @@
  kfreebsd-kernel-headers [kfreebsd-i386],
  gcc-4.0 [!m68k], gcc-3.4 [m68k], binutils (= 2.16.1cvs20051109-1),
  autoconf, sed (= 4.0.5-4), gawk, debhelper (= 4.1.76),
- libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc], libc6-dev-i386 [amd64] | 
ia32-libs-dev [amd64] (= 1.5),
+ libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc], libc6-dev-i386 [amd64] | 
ia32-libs-dev (= 1.5) [amd64],
  quilt
 Build-Depends-Indep: perl, po-debconf
 Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org

Modified: glibc-package/trunk/debian/patches/resource_h.diff
===
--- glibc-package/trunk/debian/patches/resource_h.diff  2006-02-23 16:50:25 UTC 
(rev 1228)
+++ glibc-package/trunk/debian/patches/resource_h.diff  2006-02-23 17:06:15 UTC 
(rev 1229)
@@ -111,12 +111,12 @@
  #define RLIMIT_NLIMITS __RLIMIT_NLIMITS
  #define RLIM_NLIMITS __RLIM_NLIMITS
 ===
-RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/mips/bits/Attic/resource.h,v
+RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/mips/bits/resource.h,v
 retrieving revision 1.7
 retrieving revision 1.8
 diff -u -r1.7 -r1.8
 libc/sysdeps/unix/sysv/linux/mips/bits/Attic/resource.h2004/08/16 
08:51:46 1.7
-+++ libc/sysdeps/unix/sysv/linux/mips/bits/Attic/resource.h2005/06/20 
15:07:34 1.8
+--- libc/sysdeps/unix/sysv/linux/mips/bits/resource.h  2004/08/16 08:51:46 
1.7
 libc/sysdeps/unix/sysv/linux/mips/bits/resource.h  2005/06/20 15:07:34 
1.8
 @@ -1,5 +1,5 @@
  /* Bit values  structures for resource limits.  Linux/MIPS version.
 -   Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2004


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



Bug#347173: glibc: Romanian days are written with mixed case letters/Romanian alplhabet reordered

2006-02-23 Thread Denis Barbier
On Thu, Feb 23, 2006 at 02:39:46PM +0200, Eddy Petrişor wrote:
 I managed to do it today, so here it is (hopefully) the final version
 of the patch for locale ro_RO.
 
 This fixes also:
 + * locales/ro_RO: first_weekday and first_workday are both Monday
 + * locales/ro_RO: added terminology and bibliographic codes for RO
 + reference: http://www.loc.gov/standards/iso639-2/langcodes.html#qr

It looks good, I will commit it.
Thanks.

Denis



r1230 - glibc-package/trunk/debian/debhelper.in

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 19:52:14 + (Thu, 23 Feb 2006)
New Revision: 1230

Modified:
   glibc-package/trunk/debian/debhelper.in/libc-alt.install
   glibc-package/trunk/debian/debhelper.in/libc.install
Log:
One more small fix before upload.



Modified: glibc-package/trunk/debian/debhelper.in/libc-alt.install
===
--- glibc-package/trunk/debian/debhelper.in/libc-alt.install2006-02-23 
17:06:15 UTC (rev 1229)
+++ glibc-package/trunk/debian/debhelper.in/libc-alt.install2006-02-23 
19:52:14 UTC (rev 1230)
@@ -1,6 +1,6 @@
 # This file is used for 64-bit libraries.
 TMPDIR/lib*/*.so* libDESTLIBDIR
 TMPDIR/usr/lib*/gconv/*.so* usr/libDESTLIBDIR/gconv
-TMPDIR/lib/ldconfig/
+TMPDIR/lib/ldconfig/* lib/ldconfig
 TMPDIR/lib/*-*-gnu/ lib
 TMPDIR/usr/lib/*-*-gnu/ usr/lib

Modified: glibc-package/trunk/debian/debhelper.in/libc.install
===
--- glibc-package/trunk/debian/debhelper.in/libc.install2006-02-23 
17:06:15 UTC (rev 1229)
+++ glibc-package/trunk/debian/debhelper.in/libc.install2006-02-23 
19:52:14 UTC (rev 1230)
@@ -22,6 +22,6 @@
 
 debian/local/usr_sbin/tzconfig usr/sbin
 
-debian/tmp-libc/lib/ldconfig/
+debian/tmp-libc/lib/ldconfig/* lib/ldconfig
 debian/tmp-libc/lib/*-*-gnu/ lib
 debian/tmp-libc/usr/lib/*-*-gnu/ usr/lib


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



r1231 - glibc-package/tags

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 20:45:50 + (Thu, 23 Feb 2006)
New Revision: 1231

Added:
   glibc-package/tags/2.3.6-2/
Log:
Tagging glibc 2.3.6-2



Copied: glibc-package/tags/2.3.6-2 (from rev 1230, glibc-package/trunk)


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



r1232 - glibc-package/trunk/debian

2006-02-23 Thread Aurelien Jarno
Author: aurel32
Date: 2006-02-23 20:47:02 + (Thu, 23 Feb 2006)
New Revision: 1232

Modified:
   glibc-package/trunk/debian/changelog
Log:
Update changelog for version 2.3.6-3.



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2006-02-23 20:45:50 UTC (rev 
1231)
+++ glibc-package/trunk/debian/changelog2006-02-23 20:47:02 UTC (rev 
1232)
@@ -1,3 +1,9 @@
+glibc (2.3.6-3) UNRELEASED; urgency=low
+
+  * 
+
+ -- Aurelien Jarno [EMAIL PROTECTED]  Thu, 23 Feb 2006 21:46:25 +0100
+
 glibc (2.3.6-2) unstable; urgency=low
 
[ Denis Barbier ]


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



glibc 2.3.6-3

2006-02-23 Thread Aurelien Jarno

Hi all!

I have just uploaded glibc 2.3.6-2. It is now time to think to the next
upload, glibc 2.3.6-3.

Personally here is the things I would like to see in it:

- Split of libc6 and libc6-dev into libraries and binaries. This is
required as per policy, but become more important for multiarch support. 
But maybe there is a reason for having binaries and libraries in the 
same package?


- More architectures using the multiarch directories for the 64-bit
version of the glibc. This will however depends on other packages

- A policy for the debian/patches directory. This is currently a bit a 
mess (and I contributed to it) in this directory, except for the locale 
data which is separated. I think the information we need in the patch 
filename is:

  - a short part telling what the patch does
  - the architecture for which it applies
  - the upstream status (debian specific, in upstream BTS, fixed in 
CVS). For example xfree86 uses number to define that: 000 (patches from 
upstream or merged in upstream), 001-899 (patches that should be merged 
in upstream), 900-999 (patches that are specific to debian or were 
rejected by upstream).


Maybe some more information could be put in the filename. Don't hesitate 
to give ideas. Then we could put a README file containing the policy in 
this directory.


- A lot of bug fixes!


Don't hesitate to comment that, and to share your plans.

Bye,
Aurelien

--
  .''`.  Aurelien Jarno | GPG: 1024D/F1BCDB73
 : :' :  Debian developer   | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net


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



Multiarch support (was Moving 32-bit libraries to (/usr)/lib32 on amd64)

2006-02-23 Thread Aurelien Jarno

Hi!

Some update on this, as we have evolved a lot since the last mail.

Bdale Garbee a écrit :

On Tue, 2006-02-21 at 07:10 +0100, Aurelien Jarno wrote:


Moving 32-bit libraries to (/usr)/lib32 won't make the amd64 port 
compliant with the FHS, which is almost impossible given the current 
setup, ie 64-bit libraries in /lib. However, it would make it compliant 
with the part of the FHS which says that alternative libraries have to 
be in (/usr)/libqual. And it would make us compatible with other 
distributions like Gentoo or Ubuntu that have choosen to use (/usr)/lib32.



What sort of value should we assign to achieving that level of
compatibility with other distributions before multiarch, where I
expect us to be in the lead and others to be trying to figure out if/how
to be compatible with Debian?

Part of the reason I'm unhappy about the current FHS situation is that
qual seems generally to get defined as 32 or 64 and the definition
of what belongs in the unqualified version of the directories feels
inconsistent across architectures.  Part of what I like about our
multiarch strategy is generalizing this to handle more interesting
cases like emulated execution environments, etc.  The world just isn't
as simple as 32 vs 64 implies...

I'm inclined to make as few structural changes to ia32-libs as
possible pending multiarch implementation.  The reason is that anything
we change is going to make work for people, including work we can't
anticipate or judge the scale of, like users who have laboriously worked
to manually install additional libraries on their systems.  If we're
going to put people through a transition process, I'd prefer it be the
transition to multiarch!


You have been heard! The glibc currently in incoming has a preliminary
multiarch support. It currently looks to librairies in both (/usr)/lib
and (/usr)/lib/$(host-triplet)/. It support additional libraries (like
the current one in multilib), via ldconfig, with /lib/ldconfig/ being
the configuration directory.

Using this it will be possible to add a link from (/usr)/lib64 to the
multiarch directories to be compliant with the FHS. And that let time to
discuss if we want a (/usr)/lib32 or not on amd64 :).

Currently those directories are supported on all architectures, but only
amd64 has files in them, a libc6 for i386. It will be used as a test
architecture before doing the same on other 32/64 bit architectures, as
there are very few packages to changes.

The next step is to add support to gcc, and to move all 32-bit libraries
on amd64 to (/usr)/lib/i486-linux-gnu.

I will send you some update and some patches for gcc, zlib (needed for
gcc) and ia32-libs soon.

Bye,
Aurelien

--
  .''`.  Aurelien Jarno | GPG: 1024D/F1BCDB73
 : :' :  Debian developer   | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net


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



Bug#240901: marked as done (Add am_pm strings to the en_GB locale)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#240901: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.2.ds1-11
Severity: wishlist
Tags: l10n

I was wondering if it would be possible to add am_pm strings to the en_GB
locale. I realise that 24h time is now the preferred format but I know
myself and many other people in the UK still prefer to see AM/PM time.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.4
Locale: LANG=en_GB.ISO-8859-15, LC_CTYPE=en_GB.ISO-8859-15 (ignored: LC_ALL set 
to en_GB.ISO-8859-15)

Versions of packages libc6 depends on:
ii  libdb1-compat 2.1.3-7The Berkeley database routines [gl

-- no debconf information

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  

Bug#274367: marked as done (glibc: [amd64] New GLIBC pass to create 32bit libc6-i386 and libc6-dev-i386 packages)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#274367: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: glibc
Severity: wishlist
Tags: patch

Finally, there is a patch which creates a 32bit i386 version of libc6
on amd64 by adding an extra pass to glibc. The new packages 'libc6-i386'
and 'libc6-dev-i386' install the 32bit libc6 files in /usr/lib32, which
is a symlink to '/emul/ia32-linux/usr/lib'. This location may look a 
bit strange first, but this is where the 'ia32-libs' package
installs all 32bit i386 libraries and files at the moment. 

The 'ia32-libs' package currently installs a libc6 binary package
which has been compiled by the i386 distribution. This is ugly because
it makes the whole amd64 distribution, especially the amd64 gcc compiler,
depend on binary packages from the i386 distribution.

Of course the 'ia32-libs' package will also have to be changed, 
so that it no longer installs libc6 by itself 
but simply depends on libc6-i386 instead.

The attached patch - together with a corresponding patch to ia32-libs -
has been used for a few weeks by the experimental amd64/gcc-3.4 archive
without problems so far.

Regards
Andreas Jochens


This patch changes the following files of the glibc package:

* debian/sysdeps/amd64.mk:

Add an extra 'i386' pass which creates the packages 'libc6-i386' and 
'libc6-dev-i386' containing a 32bit i386 version of the library 
(this is much like the 'libc6-sparc64' or 'libc6-s390x' cases, 
but this time the 64bit library is the native library and the 
32bit library is the addititional one). 

All following changes are necessary to correctly build the 'libc6-i386' 
and 'libc6-dev-i386' packages on amd64:

* debian/control.in/main:
  
Add Build-Depends on 'gcc-3.4 [amd64]' to be able to create 32bit 
binaries.

* debian/control.in/amd64-i386 (new file):

Control information for the 'libc6-i386' and 'libc6-dev-i386' packages.
  
* debian/debhelper.in/libc-dev-i386.install (new file),
  debian/debhelper.in/libc-i386.install (newfile),
  debian/debhelper.in/libc-i386.links (new file):

Define the contents of the packages 'libc6-i386' and 'libc6-dev-i386'
and move the files to the correct directories.
Provide the symlinks /lib/ld-linux.so.2 and /usr/lib32.

* debian/debhelper.in/libc.preinst:

On amd64 exclude '/usr/lib32' from the directories which are checked 
for an installed version of libc. The 32bit i386 libc will be installed
in '/usr/lib32' which is a symlink to '/emul/ia32-linux/usr/lib'.

* debian/rules.d/debhelper.mk:

Prevent the use of the libc-otherbuild.* files if there is a special
libc-*.install file for the pass. Without this patch the
'libc-i386.install' file mentioned above would be overwritten by the
'libc-otherbuild.install' file.

* debian/patches/arch-fixup-attribute.dpatch (new file):

Patch from upstream CVS (necessary to compile the 32bit library on amd64):
* sysdeps/i386/dl-machine.h: Define ARCH_FIXUP_ATTRIBUTE and use
  it in the fixup function declarations.
* elf/dl-runtime.c: If ARCH_FIXUP_ATTRIBUTE is not defined,
  provide dummy definition.  Use macro in fixup function definitions.

* debian/patches/00list:

Enable the new 'arch-fixup-attribute' patch.


diff -urN ../tmp-orig/glibc-2.3.2.ds1/debian/sysdeps/amd64.mk 
./debian/sysdeps/amd64.mk
--- ../tmp-orig/glibc-2.3.2.ds1/debian/sysdeps/amd64.mk 2004-09-29 
15:17:10.633727680 +0200
+++ ./debian/sysdeps/amd64.mk   2004-09-29 09:11:39.071831872 +0200
@@ -12,3 +12,18 @@
 ifeq ($(BUILD_CC_VERSION),3.4)
libc_extra_cflags += -g0
 endif
+
+# build 32bit i386 library
+GLIBC_PASSES += i386
+DEB_ARCH_REGULAR_PACKAGES += libc6-i386 libc6-dev-i386
+i386_CC = gcc-3.4 -m32
+i386_MIN_KERNEL_SUPPORTED = 2.6.0
+i386_configure_build = x86_64-linux
+i386_configure_target = i486-linux
+i386_add-ons = nptl $(add-ons)
+libc6-i386_shlib_dep = libc6-i386 (= $(shlib_dep_ver))
+i386_extra_cflags = -O3 -fomit-frame-pointer -D__USE_STRING_INLINES
+i386_extra_cflags += -g0 -fno-unit-at-a-time
+i386_extra_config_options = $(extra_config_options) --with-tls --with-__thread 
\
+ --host=i486-linux --with-headers=/usr/include/i386-linux \
+ --prefix=/emul/ia32-linux/usr 
diff -urN ../tmp-orig/glibc-2.3.2.ds1/debian/control ./debian/control
--- ../tmp-orig/glibc-2.3.2.ds1/debian/control  2004-09-29 15:17:10.321775104 
+0200
+++ ./debian/control

Bug#281863: marked as done (glibc-doc: sbrk returns 'void *' and not 'int')

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#281863: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: glibc-doc
Version: 2.3.2.ds1-18
Severity: normal

file:///usr/share/doc/glibc-doc/html/libc_3.html#SEC59

libc.info(Resizing the Data Segment) (I hope that is the correct way to 
refer to a node in an info file).

This section claims that the prototype for the sbrk function is:

int sbrk (ptrdiff_t delta)

In fact, the header declares it as:

extern void *sbrk (intptr_t __delta) __THROW;

Particularly the return type should be fixed.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-686
Locale: LANG=fi_FI.UTF-8, LC_CTYPE=fi_FI.UTF-8 (charmap=UTF-8)

-- no debconf information

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a 

Bug#289853: marked as done (glibc-doc: errors in strcasestr examples)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#289853: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: glibc-doc
Version: 2.2.5-11.5
Severity: normal

Hi,

In the Search Functions page, the function strcasestr is documented. The
examples below it are:

 For example,
  strstr (hello, world, L)
  = llo, world
  strstr (hello, World, wo)
  = World

These are incorrect. They should read:

 For example,
  strcasestr (hello, world, L)
  = llo, world
  strcasestr (hello, World, wo)
  = World

Regards,

Matthew


--- System Information
Debian Release: 3.0
Architecture: i386
Kernel: Linux rapun 2.2.19 #3 Wed Jun 19 11:25:32 BST 2002 i686
Locale: LANG=C, LC_CTYPE=C


---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require 

Bug#320273: marked as done (libc0.3: ioctl() incorrectly decodes argument)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#320273: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc0.3
Version: 2.3.2.ds1-22
Severity: normal
Tags: patch, upstream

Hi,

The following code was failing with error
ioctl: (ipc/mig) server type check failure

#include sys/ioctl.h
#include stdio.h
int main(void)
{
  if (ioctl(1, TIOCDRAIN)  0)
perror(ioctl);
  return 0;
}

And actually any ioctl with no parameter will trigger the same error. I
posted a bug and wrote the attached patch which corrects things. For
details, see upstream bts:

http://sources.redhat.com/bugzilla/show_bug.cgi?id=766

Regards,
Samuel
--- sysdeps/mach/hurd/ioctl.c   2005-07-26 23:26:28.0 +0200
+++ sysdeps/mach/hurd/ioctl.c   2005-07-26 23:24:07.0 +0200
@@ -79,7 +79,7 @@ __ioctl (int fd, unsigned long int reque
   void *p;
 #endif
 
-  void *arg;
+  void *arg = NULL;
 
   error_t err;
 
@@ -130,7 +130,7 @@ __ioctl (int fd, unsigned long int reque
  in (_IOT_COUNT1 (type), _IOT_TYPE1 (type));
  in (_IOT_COUNT2 (type), _IOT_TYPE2 (type));
}
-  else if (_IOC_INOUT (request) == IOC_VOID)
+  else if ((_IOC_INOUT (request) == IOC_VOID)  _IOT_COUNT0 (type))
{
  /* The RPC takes a single integer_t argument.
 Rather than pointing to the value, ARG is the value itself.  */
@@ -197,11 +197,15 @@ __ioctl (int fd, unsigned long int reque
   return msg.header.RetCode;
 }
 
-  va_list ap;
+  if (_IOT_COUNT0 (type))
+{
+  /* Data need either be sent, received, or even both.  */
+  va_list ap;
 
-  va_start (ap, request);
-  arg = va_arg (ap, void *);
-  va_end (ap);
+  va_start (ap, request);
+  arg = va_arg (ap, void *);
+  va_end (ap);
+}
 
   {
 /* Check for a registered handler for REQUEST.  */
--- sysdeps/mach/hurd/bits/ioctls.h 2005-07-26 23:29:54.0 +0200
+++ sysdeps/mach/hurd/bits/ioctls.h 2005-07-26 23:19:56.0 +0200
@@ -118,6 +118,7 @@
_IOT_foobar is defined either in this file,
or where struct foobar is defined.  */
 #define_IO(g, n)   _IOC (IOC_VOID, (g), (n), 0)
+#define_IOIW(g, n, t)  _IOC (IOC_VOID, (g), (n), _IOC_ENCODE_TYPE (t))
 #define_IOR(g, n, t)   _IOC (IOC_OUT, (g), (n), _IOC_ENCODE_TYPE (t))
 #define_IOW(g, n, t)   _IOC (IOC_IN, (g), (n), _IOC_ENCODE_TYPE (t))
 #define_IOWR(g, n, t)  _IOC (IOC_INOUT, (g), (n), _IOC_ENCODE_TYPE (t))
---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 

Bug#295855: marked as done (glibc: please include multiarch support in ld-linux)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#295855: fixed in glibc 2.3.6-2
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)

---BeginMessage---

Package: glibc
Severity: wishlist
Tags: patch

Could you please apply the patch available at
http://arch.err.no/index.cgi/[EMAIL 
PROTECTED]/pkg-glibc--multiarch--0--patch-2?cmd=cs_newfile=debian/patches/99_multiarch-ld.dpatch
?

It enables multiarch support in ld-linux.so.

-- 
Tollef Fog Heen,''`.
UNIX is user friendly, it's just picky about who its friends are  : :' :
  `. `' 
`-  

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require changes in localedef.
  This is the first part for solving 

Bug#323013: marked as done (locale generation fails for several locales)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#323013: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: locales
Version: 2.3.5-3
Severity: normal

Locale generation fails, as detailed below.  Looking at #321634 and
#322655 and #321580, perhaps all the locales in SUPPORTED should be
generated during the build, to ensure that they work (even though
they won't be packaged), or at least included in your own regression
tests prior to upload.


Regards,
Roger


Setting up locales (2.3.5-3) ...
Generating locales (this might take a while)...
  aa_ER.UTF-8... done
  aa_ET.UTF-8... done
  am_ET.UTF-8... done
  ar_AE.UTF-8... done
  ar_BH.UTF-8... done
  ar_DZ.UTF-8... done
  ar_EG.UTF-8... done
  ar_IN.UTF-8... done
  ar_IQ.UTF-8... done
  ar_JO.UTF-8... done
  ar_KW.UTF-8... done
  ar_LB.UTF-8... done
  ar_LY.UTF-8... done
  ar_MA.UTF-8... done
  ar_OM.UTF-8... done
  ar_QA.UTF-8... done
  ar_SA.UTF-8... done
  ar_SD.UTF-8... done
  ar_SY.UTF-8... done
  ar_TN.UTF-8... done
  ar_YE.UTF-8... done
  be_BY.UTF-8... done
  bg_BG.UTF-8... done
  bn_BD.UTF-8... done
  bn_IN.UTF-8... done
  byn_ER.UTF-8... done
  ca_ES.UTF-8... done
  cs_CZ.UTF-8... done
  cy_GB.UTF-8... done
  da_DK.UTF-8... done
  de_AT.UTF-8... done
  [EMAIL PROTECTED] done
  de_BE.UTF-8... done
  [EMAIL PROTECTED] done
  de_CH.UTF-8... done
  de_DE.UTF-8... done
  [EMAIL PROTECTED] done
  de_LU.UTF-8... done
  [EMAIL PROTECTED] done
  el_GR.UTF-8... done
  en_AU.UTF-8... done
  en_BW.UTF-8... done
  en_CA.UTF-8... done
  en_DK.UTF-8... done
  en_GB.UTF-8... done
  en_HK.UTF-8... done
  en_IE.UTF-8... done
  [EMAIL PROTECTED] done
  en_IN.UTF-8... done
  en_NZ.UTF-8... done
  en_SG.UTF-8... done
  en_US.UTF-8... done
  en_ZA.UTF-8... done
  en_ZW.UTF-8... done
  es_AR.UTF-8... done
  es_BO.UTF-8... done
  es_CL.UTF-8... done
  es_CO.UTF-8... done
  es_CR.UTF-8... done
  es_DO.UTF-8... done
  es_EC.UTF-8... done
  es_ES.UTF-8... done
  [EMAIL PROTECTED] done
  es_GT.UTF-8... done
  es_HN.UTF-8... done
  es_MX.UTF-8... done
  es_NI.UTF-8... done
  es_PA.UTF-8... done
  es_PE.UTF-8... done
  es_PR.UTF-8... done
  es_PY.UTF-8... done
  es_SV.UTF-8... done
  es_US.UTF-8... done
  es_UY.UTF-8... done
  es_VE.UTF-8... done
  et_EE.UTF-8... done
  eu_ES.UTF-8... done
  [EMAIL PROTECTED] done
  eu_FR.UTF-8... done
  fa_IR.UTF-8... done
  fi_FI.UTF-8... done
  [EMAIL PROTECTED] done
  fo_FO.UTF-8... done
  fr_BE.UTF-8... done
  [EMAIL PROTECTED] done
  fr_CA.UTF-8... done
  fr_CH.UTF-8... done
  fr_FR.UTF-8... done
  [EMAIL PROTECTED] done
  fr_LU.UTF-8... done
  [EMAIL PROTECTED] done
  ga_IE.UTF-8... done
  [EMAIL PROTECTED] done
  [EMAIL PROTECTED] done
  [EMAIL PROTECTED] done
  gl_ES.UTF-8... done
  [EMAIL PROTECTED] done
  gv_GB.UTF-8... done
  he_IL.UTF-8... done
  hi_IN.UTF-8... done
  hr_HR.UTF-8... done
  hu_HU.UTF-8... done
  id_ID.UTF-8... done
  is_IS.UTF-8... done
  it_CH.UTF-8... done
  it_IT.UTF-8... done
  [EMAIL PROTECTED] done
  iw_IL.UTF-8... done
  ja_JP.UTF-8... done
  kl_GL.UTF-8... done
  kn_IN.UTF-8... done
  ko_KR.UTF-8... done
  kw_GB.UTF-8... done
  lo_LA.UTF-8... done
  lt_LT.UTF-8... done
  lv_LV.UTF-8... done
  mk_MK.UTF-8... done
  ml_IN.UTF-8... done
  mn_MN.UTF-8.../usr/share/i18n/locales/mn_MN:221: LC_TIME: syntax error
dpkg: error processing locales (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 locales
E: Sub-process /usr/bin/dpkg returned an error code (1)


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages locales depends on:
ii  debconf   1.4.57 Debian configuration management sy
ii  libc6 [glibc-2.3.5-3] 2.3.5-3GNU C Library: Shared libraries an

locales recommends no packages.

-- debconf information:
* locales/default_environment_locale: None
* locales/locales_to_be_generated: aa_ER UTF-8, aa_ET UTF-8, am_ET UTF-8, 
ar_AE.UTF-8 UTF-8, ar_BH.UTF-8 UTF-8, ar_DZ.UTF-8 UTF-8, ar_EG.UTF-8 UTF-8, 
ar_IN UTF-8, ar_IQ.UTF-8 UTF-8, ar_JO.UTF-8 UTF-8, ar_KW.UTF-8 UTF-8, 
ar_LB.UTF-8 UTF-8, ar_LY.UTF-8 UTF-8, ar_MA.UTF-8 UTF-8, ar_OM.UTF-8 UTF-8, 
ar_QA.UTF-8 UTF-8, ar_SA.UTF-8 UTF-8, ar_SD.UTF-8 UTF-8, ar_SY.UTF-8 UTF-8, 

Bug#325226: marked as done (libc6: Wrong dynamic linker on amd64.)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#325226: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.2.ds1-22

Hi,

It seems that on amd64, all binaries and libraries in the libc6
pacakge have a wrong dynamic linker in the binaries.

ldd /lib/libc.so.6
/lib/ld-linux-x86-64.so.2 (0x002a95556000)
ldd /usr/bin/iconv
libc.so.6 = /lib/libc.so.6 (0x002a9566e000)
/lib/ld-linux-x86-64.so.2 (0x002a95556000)
...

The ABI says that it should be /lib64/ld-linux-x86-64.so.2, and
every other binary and lib does have that, except for things in
the libc6 package.

Note that that we have a /lib64 - lib symlinks, and that
everything should get installed in /lib, it's just that the path
in the binaries itself is wrong.

I don't think it's really important, but it's probably nice to
have this fixed.

If you're going to fix this, could you please provide a patch for
this so I can test it before you upload it?

This bug exists in both sarge (2.3.2.ds1-22) and sid (2.3.5-4).


Kurt


---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 

Bug#325802: marked as done (libc6: glibc.sh uses dpkg)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#325802: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-5
Severity: normal

/etc/init.d/glibc.sh uses dpkg --compare-versions extensively.

[EMAIL PROTECTED]:~% which dpkg
/usr/bin/dpkg

Init scripts, at least this early, can't use /usr.  It isn't mounted yet!

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-rc6
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

-- no debconf information

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require changes in localedef.
  This is the first part for solving #352620, the proper dependency for
  locales will be 

Bug#328088: marked as done (libc6: /etc/init.d/glibc.sh uses /usr/bin/dpkg to check for kernel versions.)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#325802: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-6
Severity: normal

/etc/init.d/glibc.sh is called very early on in the boot process. /usr
may not be mounted so using /usr/bin/dpkg may fail for some people. So
would using /proc since the may not be mounted either. /bin/uname should
be there and /bin/sh can do maths.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.p4
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

-- no debconf information


---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require changes in localedef.
  This is the first part for solving #352620, 

Bug#339482: marked as done (libc6: /etc/init.d/glibc.sh uses /usr/bin/dpkg before /usr is mounted.)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#325802: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-6
Severity: normal

/etc/init.d/glibc.sh is called by init before anything else in the boot
sequence. When it is called there is no guarantee that /usr is mounted
so using dpkg may not work. /proc and /sys won't be mounted either and
/dev may not be fully populated.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

-- no debconf information

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require changes in localedef.
  This is the first part for solving #352620, the 

Bug#328088: marked as done (libc6: /etc/init.d/glibc.sh uses /usr/bin/dpkg to check for kernel versions.)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#328088: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-6
Severity: normal

/etc/init.d/glibc.sh is called very early on in the boot process. /usr
may not be mounted so using /usr/bin/dpkg may fail for some people. So
would using /proc since the may not be mounted either. /bin/uname should
be there and /bin/sh can do maths.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.p4
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

-- no debconf information


---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require changes in localedef.
  This is the first part for solving #352620, 

Bug#339482: marked as done (libc6: /etc/init.d/glibc.sh uses /usr/bin/dpkg before /usr is mounted.)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#328088: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-6
Severity: normal

/etc/init.d/glibc.sh is called by init before anything else in the boot
sequence. When it is called there is no guarantee that /usr is mounted
so using dpkg may not work. /proc and /sys won't be mounted either and
/dev may not be fully populated.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

-- no debconf information

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require changes in localedef.
  This is the first part for solving #352620, the 

Bug#333565: marked as done (glibc-doc: Hooks for Malloc example code bug (info pages))

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#333565: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: glibc-doc
Version: 2.3.5-6
Severity: minor
Tags: patch

Hello, this is a (very very very) small issue (small in ascii, but large in 
C/C++). In the libc info pages ( type info libc, /mtrac, scroll down to *not 
Hooks for Malloc:: and press enter. In this page the prototypes are defined 
and explained. A certain prototype here is the one for __free_hook which is:

  void FUNCTION (void *PTR, const void *CALLER)

Lower on the page there is some example code:

 static void *
 my_free_hook (void *ptr, const void *caller)
 {
   /* Restore all old hooks */
   __malloc_hook = old_malloc_hook;
   __free_hook = old_free_hook;
   /* Call recursively */

So in this case you define a new function for free returning a pointer (to 
void) while it should simply return void (as the prototype defines). So in this 
case the patch is simply removing the * which is located in manual/memory.texi 
or as diff would say:

qntal:/tmp/glibc-2.3.5/glibc-2.3.5/manual# diff memory.texi.old memory.texi 
987c987
 static void *
---
 static void 


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.5
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

-- no debconf information

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU 

Bug#339482: marked as done (libc6: /etc/init.d/glibc.sh uses /usr/bin/dpkg before /usr is mounted.)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#339482: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-6
Severity: normal

/etc/init.d/glibc.sh is called by init before anything else in the boot
sequence. When it is called there is no guarantee that /usr is mounted
so using dpkg may not work. /proc and /sys won't be mounted either and
/dev may not be fully populated.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

-- no debconf information

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require changes in localedef.
  This is the first part for solving #352620, the 

Bug#325802: marked as done (libc6: glibc.sh uses dpkg)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#339482: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-5
Severity: normal

/etc/init.d/glibc.sh uses dpkg --compare-versions extensively.

[EMAIL PROTECTED]:~% which dpkg
/usr/bin/dpkg

Init scripts, at least this early, can't use /usr.  It isn't mounted yet!

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-rc6
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

-- no debconf information

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require changes in localedef.
  This is the first part for solving #352620, the proper dependency for
  locales will be 

Processing of glibc_2.3.6-2_hppa.changes

2006-02-23 Thread Archive Administrator
glibc_2.3.6-2_hppa.changes uploaded successfully to localhost
along with the files:
  glibc_2.3.6-2.dsc
  glibc_2.3.6-2.diff.gz
  glibc-doc_2.3.6-2_all.deb
  locales_2.3.6-2_all.deb
  libc6_2.3.6-2_hppa.deb
  libc6-dev_2.3.6-2_hppa.deb
  libc6-prof_2.3.6-2_hppa.deb
  libc6-pic_2.3.6-2_hppa.deb
  nscd_2.3.6-2_hppa.deb
  libc6-dbg_2.3.6-2_hppa.deb
  libc6-udeb_2.3.6-2_hppa.udeb
  libnss-dns-udeb_2.3.6-2_hppa.udeb
  libnss-files-udeb_2.3.6-2_hppa.udeb

Greetings,

Your Debian queue daemon


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



Bug#325802: marked as done (libc6: glibc.sh uses dpkg)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:15 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#328088: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-5
Severity: normal

/etc/init.d/glibc.sh uses dpkg --compare-versions extensively.

[EMAIL PROTECTED]:~% which dpkg
/usr/bin/dpkg

Init scripts, at least this early, can't use /usr.  It isn't mounted yet!

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-rc6
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

-- no debconf information

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require changes in localedef.
  This is the first part for solving #352620, the proper dependency for
  locales will be 

Bug#328088: marked as done (libc6: /etc/init.d/glibc.sh uses /usr/bin/dpkg to check for kernel versions.)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#339482: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-6
Severity: normal

/etc/init.d/glibc.sh is called very early on in the boot process. /usr
may not be mounted so using /usr/bin/dpkg may fail for some people. So
would using /proc since the may not be mounted either. /bin/uname should
be there and /bin/sh can do maths.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.p4
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

-- no debconf information


---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require changes in localedef.
  This is the first part for solving #352620, 

Bug#344836: marked as done (libc6: strtold is broken on hppa)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#344836: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-8
Severity: normal

The following program produces incorrect results:

#include stdlib.h
int
main ()
{
  printf (%Lf\n, strtold (1, NULL));
  return 0;
}

[EMAIL PROTECTED]:~/gcc_test$ gcc -o ld1 ld1.c
[EMAIL PROTECTED]:~/gcc_test$ ./ld1
0.00


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (650, 'testing'), (90, 'unstable')
Architecture: hppa (parisc64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-pa1
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

-- no debconf information

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require changes in localedef.
  This is the first part for solving #352620, the proper 

Bug#345481: marked as done (Wrong thousand separator for Swiss locale)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#345481: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: locales
Version: 2.3.5-10
Severity: minor

The thousand grouping separator in Switzerland is ' (U0027)

See also:

- http://lists.freebsd.org/pipermail/freebsd-bugs/2004-December/010911.html
- http://de.wikipedia.org/wiki/Schreibweise_von_Zahlen (in German)

Thanks,
  David


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13
Locale: LANG=de_CH, LC_CTYPE=de_CH (charmap=ISO-8859-1)

Versions of packages locales depends on:
ii  debconf [debconf-2.0] 1.4.66 Debian configuration management sy
ii  libc6 [glibc-2.3.5-3] 2.3.5-9GNU C Library: Shared libraries an

locales recommends no packages.

-- debconf information excluded

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis 

Bug#347762: marked as done (libc6-dev: broken ld scripts under /usr/lib/ntpl)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#347762: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6-dev
Version: 2.3.5-11
Severity: normal

/usr/lib/nptl/libpthread.so links to /usr/lib/tls/libpthread_nonshared.a
but the file is /usr/lib/nptl/libpthread_nonshared.a
/usr/lib/nptl/libc.so links to /usr/lib/tls/libc_nonshared.a which is
located in /usr/lib

g++ -shared  -Iinclude -I/usr/include/nptl -DFLOWVR_OS=Linux
-DFLOWVR_OS_Linux=1 -DFLOWVR_USE_MPTHREAD -O3 -DFLOWVR_VERSION=\CVS\
-Wall -fpic -fPIC -o lib/libflowvr-mod.so tmp/obj/moduleapi.o
tmp/obj/moduleapifactory.o tmp/obj/moduleapimultiprocessimpl.o
tmp/obj/moduleapifileimpl.o tmp/obj/module.o tmp/obj/parallel.o  -Llib
-lpthread  -L/usr/lib/nptl -lflowvr-base -Wl,-soname,libflowvr-mod.so
/usr/bin/ld: ne peut trouver /usr/lib/tls/libpthread_nonshared.a
collect2: ld a retourné 1 code d'état d'exécution
make: *** [lib/libflowvr-mod.so] Erreur 1

Also /usr/lib/nptl/libc.so is executable and it probably should not.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages libc6-dev depends on:
ii  libc6  2.3.5-11  GNU C Library: Shared libraries an
ii  linux-kernel-headers   2.6.13+0rc3-2 Linux Kernel Headers for developme

Versions of packages libc6-dev recommends:
ii  gcc [c-compiler]  4:4.0.2-2  The GNU C compiler
ii  gcc-4.0 [c-compiler]  4.0.2-6The GNU C compiler
ii  gcc-4.1 [c-compiler]  4.1-0exp0  The GNU C compiler

-- no debconf information

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 

Bug#351638: marked as done (glibc: update for GNU/kFreeBSD)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#351638: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: glibc
Severity: wishlist
Tags: patch

Hi,

Please find attached an update of the debian/ directory to support
GNU/kFreeBSD. Note that the file sysdeps/kfreebsd-gnu.mk has to be
removed in favor of sysdeps/kfreebsd.mk. 

Patches to the glibc tree is also necessary, we will send the patches
later.

Don't hesitate to contact me if you have any question.

Thanks,
Aurelien

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-amd64-k8
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to fr_FR.UTF-8)
diff -u glibc-2.3.5/debian/control.in/main glibc-2.3.5/debian/control.in/main
--- glibc-2.3.5/debian/control.in/main
+++ glibc-2.3.5/debian/control.in/main
@@ -1,7 +1,7 @@
 Source: @glibc@
 Section: libs
 Priority: required
-Build-Depends: gettext (= 0.10.37-1), make (= 3.80-1), dpkg-dev (= 1.13.5), 
debianutils (= 1.13.1), tar (= 1.13.11), bzip2, texinfo (= 4.0), 
linux-kernel-headers (= 2.6.13+0rc3-2) [!hurd-i386], mig (= 1.3-2) 
[hurd-i386], hurd-dev (= 20020608-1) [hurd-i386], gnumach-dev [hurd-i386], 
texi2html, file, gcc-4.0 [!powerpc !m68k !hppa !hurd-i386], gcc-3.4 (= 
3.4.4-6) [powerpc], gcc-3.4 [m68k hppa], gcc-3.3 [hurd-i386], autoconf, 
binutils (= 2.16.1cvs20051109-1), sed (= 4.0.5-4), gawk, debhelper (= 
4.1.76), libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc], quilt
+Build-Depends: gettext (= 0.10.37-1), make (= 3.80-1), dpkg-dev (= 1.13.5), 
debianutils (= 1.13.1), tar (= 1.13.11), bzip2, texinfo (= 4.0), 
linux-kernel-headers (= 2.6.13+0rc3-2) [!hurd-i386 !kfreebsd-i386], mig (= 
1.3-2) [hurd-i386], hurd-dev (= 20020608-1) [hurd-i386], gnumach-dev 
[hurd-i386], kfreebsd-kernel-headers (= 0.01) [kfreebsd-i386], texi2html, 
file, gcc-4.0 [!powerpc !m68k !hppa !hurd-i386], gcc-3.4 (= 3.4.4-6) 
[powerpc], gcc-3.4 [m68k hppa], gcc-3.3 [hurd-i386], autoconf, binutils (= 
2.16.1cvs20051109-1), sed (= 4.0.5-4), gawk, debhelper (= 4.1.76), 
libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc], quilt
 Build-Depends-Indep: perl, po-debconf, po4a
 Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
 Uploaders: Ben Collins [EMAIL PROTECTED], GOTO Masanori [EMAIL PROTECTED], 
Philip Blundell [EMAIL PROTECTED], Jeff Bailey [EMAIL PROTECTED], Daniel 
Jacobowitz [EMAIL PROTECTED], Clint Adams [EMAIL PROTECTED], Denis Barbier 
[EMAIL PROTECTED]
--- glibc-2.3.5/debian/sysdeps/kfreebsd-gnu.mk
+++ glibc-2.3.5.orig/debian/sysdeps/kfreebsd-gnu.mk
@@ -1,11 +0,0 @@
-# This is for a Glibc-using FreeBSD system.
-
-GLIBC_OVERLAYS ?= $(shell ls glibc-linuxthreads* glibc-ports* glibc-libidn*)
-
-libc = libc1
-
-# Linuxthreads Config
-threads = yes
-libc_add-ons = linuxthreads $(add-ons)
-
-extra_config_options = $(extra_config_options) --disable-compatible-utmp 
--enable-kernel-include=4.6
diff -u glibc-2.3.5/debian/sysdeps/linux.mk glibc-2.3.5/debian/sysdeps/linux.mk
--- glibc-2.3.5/debian/sysdeps/linux.mk
+++ glibc-2.3.5/debian/sysdeps/linux.mk
@@ -39,7 +39,7 @@
 nptl_MIN_KERNEL_SUPPORTED = 2.6.0
 nptl_LIBDIR = /tls
 
-LINUX_HEADER_DIR = $(stamp)mkincludedir
+KERNEL_HEADER_DIR = $(stamp)mkincludedir
 $(stamp)mkincludedir:
rm -rf debian/include
mkdir debian/include
diff -u glibc-2.3.5/debian/rules.d/build.mk glibc-2.3.5/debian/rules.d/build.mk
--- glibc-2.3.5/debian/rules.d/build.mk
+++ glibc-2.3.5/debian/rules.d/build.mk
@@ -13,7 +13,7 @@
 
 
 $(patsubst %,mkbuilddir_%,$(GLIBC_PASSES)) :: mkbuilddir_% : 
$(stamp)mkbuilddir_%
-$(stamp)mkbuilddir_%: $(stamp)patch-stamp $(LINUX_HEADER_DIR)
+$(stamp)mkbuilddir_%: $(stamp)patch-stamp $(KERNEL_HEADER_DIR)
@echo Making builddir for $(curpass)
test -d $(DEB_BUILDDIR) || mkdir $(DEB_BUILDDIR)
touch $@
--- glibc-2.3.5/debian/control.in/opt~  2006-01-12 14:48:52.0 +0100
+++ glibc-2.3.5/debian/control.in/opt   2006-01-12 14:49:46.0 +0100
@@ -56,3 +56,23 @@
  Most notably, IBM's JDK. If you experience problems with such
  applications, you will need to remove this package.
 
+Package: libc0.1-i686
+Architecture: kfreebsd-i386
+Section: libs
+Priority: extra
+Pre-Depends: @libc@ (= ${Source-Version})
+Description: GNU C Library: Shared libraries [i686 optimized]
+ Contains the standard 

Bug#352263: marked as done (libc6-amd64: unneeded dependency on lib64gcc1 creates a dependency loop)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#352263: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6-amd64
Version: 2.3.5-13
Severity: minor
Tags: patch

Hi,

libc6-amd64 depends on lib64gcc1, whereas no library from this package
link to /lib64/libgcc_s.so.1. This creates a dependency loop as
lib64gcc1 depends on libc6-amd64.

The solution is to move this dependency to libc6-dev-amd64, as it is
already the case on similar packages (sparc64, s390x, ppc64). That's 
the purpose of the attached patch.

Thanks,
Aurelien

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-amd64-k8
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to fr_FR.UTF-8)

Versions of packages libc6-amd64 depends on:
ii  lib64gcc1 1:4.0.2-8  GCC support library (64bit)
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an

libc6-amd64 recommends no packages.

-- no debconf information
Index: amd64
===
--- amd64   (révision 1167)
+++ amd64   (copie de travail)
@@ -2,7 +2,7 @@
 Architecture: i386
 Section: libs
 Priority: standard
-Depends: libc6 (= ${Source-Version}), lib64gcc1
+Depends: libc6 (= ${Source-Version})
 Conflicts: amd64-libs (= 1.2)
 Description: GNU C Library: 64bit Shared libraries for AMD64
  This package includes shared versions of the standard C library and the
@@ -13,7 +13,7 @@
 Architecture: i386
 Section: libdevel
 Priority: optional
-Depends: libc6-amd64 (= ${Source-Version}), libc6-dev (= ${Source-Version})
+Depends: libc6-amd64 (= ${Source-Version}), libc6-dev (= ${Source-Version}), 
lib64gcc1
 Replaces: amd64-libs-dev (= 1.2)
 Provides: lib64c-dev
 Description: GNU C Library: 64bit Development Libraries for AMD64
---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable

Bug#352416: marked as done (libc6: [INTL:pt_BR] Please consider applying attached patch to update pt_BR debconf translation)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#352416: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-13
Severity: wishlist
Tags: patch l10n


Hello,

Would you please be so kind to apply the attached patch (or alternatively
use the fully updated pt_BR.po file also attached) so libc6's Brazilian
Portuguese (pt_BR) translation would be up-to-date again ?

Thanks,


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=pt_BR, LC_CTYPE=pt_BR (charmap=ISO-8859-1) (ignored: LC_ALL set to 
pt_BR)

-- no debconf information
--- pt_BR.po.old	2006-02-11 17:28:53.0 -0200
+++ pt_BR.po	2006-02-11 17:30:16.0 -0200
@@ -13,10 +13,10 @@
 #
 msgid 
 msgstr 
-Project-Id-Version: libc6_2.3.2.ds1-10\n
+Project-Id-Version: libc6\n
 Report-Msgid-Bugs-To: [EMAIL PROTECTED]
 POT-Creation-Date: 2006-01-23 17:33+0100\n
-PO-Revision-Date: 2003-11-09 15:47-0300\n
+PO-Revision-Date: 2006-02-11 17:30-0200\n
 Last-Translator: André Luís Lopes [EMAIL PROTECTED]\n
 Language-Team: Debian-BR Project debian-l10n-portuguese@lists.debian.org\n
 MIME-Version: 1.0\n
@@ -26,9 +26,8 @@
 #. Type: multiselect
 #. Description
 #: ../debhelper.in/locales.templates:4
-#, fuzzy
 msgid Locales to be generated:
-msgstr Selecione os locales a serem gerados.
+msgstr Locales a serem gerados :
 
 #. Type: multiselect
 #. Description
@@ -62,9 +61,8 @@
 #. Type: select
 #. Description
 #: ../debhelper.in/locales.templates:16
-#, fuzzy
 msgid Default locale for the system environment:
-msgstr Qual locale deverá ser o padrão do ambiente de seu sistema ?
+msgstr Locale padrão para o ambiente do sistema :
 
 #. Type: select
 #. Description
#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#Developers do not need to manually edit POT or PO files.
#
msgid 
msgstr 
Project-Id-Version: libc6\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2006-01-23 17:33+0100\n
PO-Revision-Date: 2006-02-11 17:30-0200\n
Last-Translator: André Luís Lopes [EMAIL PROTECTED]\n
Language-Team: Debian-BR Project debian-l10n-portuguese@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=ISO-8859-1\n
Content-Transfer-Encoding: 8bit\n

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:4
msgid Locales to be generated:
msgstr Locales a serem gerados :

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:4
msgid 
Locale is a framework to switch between multiple languages for users who can 
select to use their language, country, characters, collation order, etc.
msgstr 
Locale é um framework para alternar entre múltiplos idiomas para usuários, 
os quais podem selecionar seu idioma, país, caracteres, ordem de colação, 
etc.

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:4
msgid 
Choose which locales to generate.  The selection will be saved to `/etc/
locale.gen', which you can also edit manually (you need to run `locale-gen' 
afterwards).
msgstr 
Escolha quais locales gerar. Sua escolha será gravada no arquivo `/etc/
locale.gen', o qual você também pode editar manualmente (nesse caso, você 
precisará excutar `locale-gen' após a edição manual).

#. Type: select
#. Choices
#: ../debhelper.in/locales.templates:14
msgid None, ${locales}
msgstr Nenhum, ${locales}

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:16
msgid Default locale for the system environment:
msgstr Locale padrão para o ambiente do sistema :

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:16
msgid 
Many packages in Debian use locales to display text in the correct language 
for users. You can change the default locale if you're not a native English 
speaker. These choices are based on which locales you have chosen to 
generate.
msgstr 
Muitos pacotes Debian usam os locales para exibir texto aos usuários no 
idioma correto. Você pode mudar o locale 

Bug#352597: marked as done (locale.1.gz: remove quote marks)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#352597: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-8.1
Severity: minor
File: /usr/share/man/man1/locale.1.gz

SYNOPSIS
   locale [ -a | -m]
Remove the quote marks.

P.S.:
This line goes off the screen, unwrapped:
   The directory where locale data is stored.  In default, 
/usr/lib/locale is used.

Probably no examples on any of the locale(1,5,7) man pages on how to
view /usr/share/i18n/locales/* nicely:
Example: ascii2uni -A  /usr/share/i18n/locales/zh_TW #|iconv -f utf8 -t ...

Could say SEE ALSO file:///usr/share/doc/glibc-doc/html/libc_7.html

These environment variables affect each locale categories for all
locale-aware programs:: each categories? Plural problem. Also say
what categories are.

Also reading elsewhere, I found that I can do
$ locale charmap
But just reading the man page, I would never know I could do that!

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; 

Bug#352636: marked as done (libc6-dev: Please define RLIMIT_RTPRIO and RLIMIT_NICE)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#352636: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6-dev
Version: 2.3.5-13
Severity: wishlist

Linux 2.6.12 added two new resource limits, RLIMIT_NICE and
RLIMIT_RTPRIO. In order for apps and libraries (such as pam) to take
advantage of this, glibc should export the definitions.

A patch for this has been commited to upstream glibc cvs.

http://sourceware.org/ml/glibc-cvs/2005-q2/msg00434.html and
http://sourceware.org/ml/glibc-cvs/2005-q2/msg00445.html

It would be very nice if debian could backport these patches into the
current libc6-dev package so that other packages (such as pam) could
enable these features in the near term without taking the somewhat
hackish step of providing their own definitions of RLIMIT_NICE and
RLIMIT_RTPRIO.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-rc2-g7a21ef6f-dirty
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages libc6-dev depends on:
ii  libc6  2.3.5-13  GNU C Library: Shared libraries an
ii  linux-kernel-headers   2.6.13+0rc3-2 Linux Kernel Headers for developme

Versions of packages libc6-dev recommends:
ii  bcc [c-compiler]  0.16.14-1.2.0.1.pure64 16-bit x86 C compiler
ii  gcc [c-compiler]  4:4.0.2-2  The GNU C compiler
ii  gcc-3.3 [c-compil 1:3.3.6-12 The GNU C compiler
ii  gcc-3.4 [c-compil 3.4.5-2The GNU C compiler
ii  gcc-4.0 [c-compil 4.0.2-8The GNU C compiler

-- no debconf information

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C 

Bug#353611: marked as done (debconf PO translations for the package locales are outdated)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#353611: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: locales
Version: 2.3.6-1
Severity: wishlist
Tags: l10n

Debconf templates for the package locales have been modified.
The following debconf translations are outdated:
  cs.po da.po de.po el.po es.po fi.po it.po ja.po nl.po pl.po
  pt.po pt_BR.po ru.po tr.po uk.po vi.po zh_CN.po

Translators, please send your translation to this bugreport,
or file a new one if it has already been closed.
Thanks.

Below are the changes applied against locales.templates:
   --- locales.templates
   +++ locales.templates
   @@ -1,6 +1,6 @@
Template: locales/locales_to_be_generated
Type: multiselect
   -Choices: ${locales}
   +__Choices: All locales, ${locales}
_Description: Locales to be generated:
 Locale is a framework to switch between multiple languages for users w=
ho can
 select to use their language, country, characters, collation order, et=
c.
   @@ -8,6 +8,9 @@
 Choose which locales to generate.  The selection will be saved to
 `/etc/locale.gen', which you can also edit manually (you need to run
 `locale-gen' afterwards).
   + .
   + When `All locales' is selected, /etc/locale.gen will be set as a symli=
nk to
   + /usr/share/i18n/SUPPORTED.
=20=20=20=20
Template: locales/default_environment_locale
Type: select

Denis


---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS 

Bug#354074: marked as done (libc6: Please document -u option in ldd.1)

2006-02-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Feb 2006 14:02:16 -0800
with message-id [EMAIL PROTECTED]
and subject line Bug#354074: fixed in glibc 2.3.6-2
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)

---BeginMessage---
Package: libc6
Version: 2.3.5-13
Severity: wishlist

Please document -u option in the ldd manpage:
  -u, --unusedprint unused direct dependencies

---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.3.6-2

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

glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb



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.
Aurelien Jarno [EMAIL PROTECTED] (supplier of updated glibc 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: Thu, 23 Feb 2006 17:47:58 +0100
Source: glibc
Binary: libc0.1-prof libc6-dev-amd64 libc6-i686 libc6-dev-ppc64 libc0.3-pic 
glibc-doc libc0.3 libc0.1-i686 libc6.1-dev libc6-s390x libnss-files-udeb 
libc6-dev-sparc64 libc6-i386 libc0.3-dev libc6-udeb libc6-dbg libc6.1-pic 
libc6-dev libc0.3-prof libc6-sparcv9 libc0.1-udeb libc6-dev-i386 libc6.1-prof 
libc0.1-dev locales libc6-pic libc0.3-udeb libc0.1-pic libc6-ppc64 libc0.3-dbg 
libc0.1-dbg libc6-amd64 libc0.1 libc6-prof libc6 libc6-sparcv9b libc6.1-udeb 
libc6.1-dbg nscd libc6-sparc64 libnss-dns-udeb libc6.1 libc6-dev-s390x
Architecture: source hppa all
Version: 2.3.6-2
Distribution: unstable
Urgency: low
Maintainer: GNU Libc Maintainers debian-glibc@lists.debian.org
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 240901 274367 281863 289853 295855 320273 321580 323013 325226 325802 
326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 352500 
352597 352636 353611 354074
Changes: 
 glibc (2.3.6-2) unstable; urgency=low
 .
[ Denis Barbier ]
* Modify debver2localesdep.pl, locales-depver and control files to provide
  a smooth upgrade in unstable when locales require changes in localedef.
  This is the first part for solving #352620, the proper dependency for
  locales will be set by the next upload.
* debian/control: Clean up. Remove versioned dependencies on gettext,
  debianutils, tar, texinfo; these versions were already in oldstable.
  Drop references to localebin, wg15-locale, i18ndata, locale-ja, locale-ko,
  locale-vi, locale-zh, libc6-doc, glibcdoc and libc6 ( 2.1-4).
* debian/control: Split Build-Depends on several lines 

glibc_2.3.6-2_hppa.changes ACCEPTED

2006-02-23 Thread Debian Installer

Accepted:
glibc-doc_2.3.6-2_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.6-2_all.deb
glibc_2.3.6-2.diff.gz
  to pool/main/g/glibc/glibc_2.3.6-2.diff.gz
glibc_2.3.6-2.dsc
  to pool/main/g/glibc/glibc_2.3.6-2.dsc
libc6-dbg_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dbg_2.3.6-2_hppa.deb
libc6-dev_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-dev_2.3.6-2_hppa.deb
libc6-pic_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-pic_2.3.6-2_hppa.deb
libc6-prof_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6-prof_2.3.6-2_hppa.deb
libc6-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libc6-udeb_2.3.6-2_hppa.udeb
libc6_2.3.6-2_hppa.deb
  to pool/main/g/glibc/libc6_2.3.6-2_hppa.deb
libnss-dns-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.3.6-2_hppa.udeb
libnss-files-udeb_2.3.6-2_hppa.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.3.6-2_hppa.udeb
locales_2.3.6-2_all.deb
  to pool/main/g/glibc/locales_2.3.6-2_all.deb
nscd_2.3.6-2_hppa.deb
  to pool/main/g/glibc/nscd_2.3.6-2_hppa.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 240901 274367 281863 289853 295855 320273 321580 323013 325226 
325802 326581 328088 333565 339482 344836 345481 347762 351638 352263 352416 
352500 352597 352636 353611 354074 


Thank you for your contribution to Debian.


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



Re: Multiarch support (was Moving 32-bit libraries to (/usr)/lib32 on amd64)

2006-02-23 Thread Steve Langasek
On Thu, Feb 23, 2006 at 10:58:15PM +0100, Aurelien Jarno wrote:

 Some update on this, as we have evolved a lot since the last mail.

 Bdale Garbee a écrit :
 On Tue, 2006-02-21 at 07:10 +0100, Aurelien Jarno wrote:
 
 
 Moving 32-bit libraries to (/usr)/lib32 won't make the amd64 port 
 compliant with the FHS, which is almost impossible given the current 
 setup, ie 64-bit libraries in /lib. However, it would make it compliant 
 with the part of the FHS which says that alternative libraries have to 
 be in (/usr)/libqual. And it would make us compatible with other 
 distributions like Gentoo or Ubuntu that have choosen to use (/usr)/lib32.
 
 
 What sort of value should we assign to achieving that level of
 compatibility with other distributions before multiarch, where I
 expect us to be in the lead and others to be trying to figure out if/how
 to be compatible with Debian?
 
 Part of the reason I'm unhappy about the current FHS situation is that
 qual seems generally to get defined as 32 or 64 and the definition
 of what belongs in the unqualified version of the directories feels
 inconsistent across architectures.  Part of what I like about our
 multiarch strategy is generalizing this to handle more interesting
 cases like emulated execution environments, etc.  The world just isn't
 as simple as 32 vs 64 implies...

 I'm inclined to make as few structural changes to ia32-libs as
 possible pending multiarch implementation.  The reason is that anything
 we change is going to make work for people, including work we can't
 anticipate or judge the scale of, like users who have laboriously worked
 to manually install additional libraries on their systems.  If we're
 going to put people through a transition process, I'd prefer it be the
 transition to multiarch!

 You have been heard! The glibc currently in incoming has a preliminary
 multiarch support. It currently looks to librairies in both (/usr)/lib
 and (/usr)/lib/$(host-triplet)/. It support additional libraries (like
 the current one in multilib), via ldconfig, with /lib/ldconfig/ being
 the configuration directory.

 Using this it will be possible to add a link from (/usr)/lib64 to the
 multiarch directories to be compliant with the FHS. And that let time to
 discuss if we want a (/usr)/lib32 or not on amd64 :).

 Currently those directories are supported on all architectures, but only
 amd64 has files in them, a libc6 for i386. It will be used as a test
 architecture before doing the same on other 32/64 bit architectures, as
 there are very few packages to changes.

I'm concerned that putting files in /usr/lib/i486-linux-gnu/ may be
premature.  Has thought been given to what this means for the upgrade path
when (...if) dpkg is extended to support installing Arch: i386 multiarch
debs directly on amd64?  I suppose it should just be a Replaces:, but it
still seems like it will be an extra unnecessary transition.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Re: Multiarch support (was Moving 32-bit libraries to (/usr)/lib32 on amd64)

2006-02-23 Thread Aurelien Jarno

Steve Langasek a écrit :

On Thu, Feb 23, 2006 at 10:58:15PM +0100, Aurelien Jarno wrote:



Some update on this, as we have evolved a lot since the last mail.




Bdale Garbee a écrit :


On Tue, 2006-02-21 at 07:10 +0100, Aurelien Jarno wrote:



Moving 32-bit libraries to (/usr)/lib32 won't make the amd64 port 
compliant with the FHS, which is almost impossible given the current 
setup, ie 64-bit libraries in /lib. However, it would make it compliant 
with the part of the FHS which says that alternative libraries have to 
be in (/usr)/libqual. And it would make us compatible with other 
distributions like Gentoo or Ubuntu that have choosen to use (/usr)/lib32.



What sort of value should we assign to achieving that level of
compatibility with other distributions before multiarch, where I
expect us to be in the lead and others to be trying to figure out if/how
to be compatible with Debian?

Part of the reason I'm unhappy about the current FHS situation is that
qual seems generally to get defined as 32 or 64 and the definition
of what belongs in the unqualified version of the directories feels
inconsistent across architectures.  Part of what I like about our
multiarch strategy is generalizing this to handle more interesting
cases like emulated execution environments, etc.  The world just isn't
as simple as 32 vs 64 implies...




I'm inclined to make as few structural changes to ia32-libs as
possible pending multiarch implementation.  The reason is that anything
we change is going to make work for people, including work we can't
anticipate or judge the scale of, like users who have laboriously worked
to manually install additional libraries on their systems.  If we're
going to put people through a transition process, I'd prefer it be the
transition to multiarch!




You have been heard! The glibc currently in incoming has a preliminary
multiarch support. It currently looks to librairies in both (/usr)/lib
and (/usr)/lib/$(host-triplet)/. It support additional libraries (like
the current one in multilib), via ldconfig, with /lib/ldconfig/ being
the configuration directory.




Using this it will be possible to add a link from (/usr)/lib64 to the
multiarch directories to be compliant with the FHS. And that let time to
discuss if we want a (/usr)/lib32 or not on amd64 :).




Currently those directories are supported on all architectures, but only
amd64 has files in them, a libc6 for i386. It will be used as a test
architecture before doing the same on other 32/64 bit architectures, as
there are very few packages to changes.



I'm concerned that putting files in /usr/lib/i486-linux-gnu/ may be
premature.  Has thought been given to what this means for the upgrade path
when (...if) dpkg is extended to support installing Arch: i386 multiarch
debs directly on amd64?  I suppose it should just be a Replaces:, but it
still seems like it will be an extra unnecessary transition.



After a discussion on IRC, it seems there is no consensus about how 
multiarch should be done. Therefore I stop working on that (patches are 
still welcome for glibc).


The only change planned is to make libc6-dev-i386 and libc6-i386 provide 
a glibc on amd64 instead of ia32-libs. It will be in /emul/ia32-linux (I 
still have to find how to do that cleanly in the debhelper files).


Bdale, do you agree with such a change?

--
  .''`.  Aurelien Jarno | GPG: 1024D/F1BCDB73
 : :' :  Debian GNU/Linux developer | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net


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



Re: Multiarch support (was Moving 32-bit libraries to (/usr)/lib32 on amd64)

2006-02-23 Thread Bdale Garbee
On Fri, 2006-02-24 at 01:12 +0100, Aurelien Jarno wrote:

 The only change planned is to make libc6-dev-i386 and libc6-i386 provide 
 a glibc on amd64 instead of ia32-libs. It will be in /emul/ia32-linux (I 
 still have to find how to do that cleanly in the debhelper files).
 
 Bdale, do you agree with such a change?

Yes, I think we can handle that.  It means some small work on ia32-libs
to stop delivering any conflicting files, but I'm sure we can work that
out easily enough.  If you want to provide me a patch for ia32-libs that
does what you want it to do, that would be welcome.

Bdale


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



Re: Multiarch support (was Moving 32-bit libraries to (/usr)/lib32 on amd64)

2006-02-23 Thread Matthias Klose
Bdale Garbee writes:
 On Fri, 2006-02-24 at 01:12 +0100, Aurelien Jarno wrote:
 
  The only change planned is to make libc6-dev-i386 and libc6-i386 provide 
  a glibc on amd64 instead of ia32-libs. It will be in /emul/ia32-linux (I 
  still have to find how to do that cleanly in the debhelper files).
  
  Bdale, do you agree with such a change?
 
 Yes, I think we can handle that.  It means some small work on ia32-libs
 to stop delivering any conflicting files, but I'm sure we can work that
 out easily enough.  If you want to provide me a patch for ia32-libs that
 does what you want it to do, that would be welcome.

thanks.  with this setup we are able to build our toolchain without
build dependencies on ia32-libs or with packages conflicting with
future multiarch packages (maybe additionally building lib32z1 from
zlib).

Will ia32-libs on ia64 still be supported for the etch release?

  Matthias


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



Re: Multiarch support (was Moving 32-bit libraries to (/usr)/lib32 on amd64)

2006-02-23 Thread Christian Perrier

 After a discussion on IRC, it seems there is no consensus about how 
 multiarch should be done. Therefore I stop working on that (patches are 
 still welcome for glibc).

Is this really the best thing to do?

Even though there is no consensus (I overread the thread and anyway
most parts of it fly in the stratosphere from my point of view), I'm
not sure that abandoning the work is really the answer in this
situation.

OK, more talk is needed, maybe use a good BOFH at Debconf is worth it
because controversial issues are better being talked in live
discussions, but I think that the probably good work you did here
should not be left as is.

I'm maybe over-explaining but it seems that you're a little upset here
(correct me if I'm wrong...but IRC excerpts I've seen on #d-d-fr make
me think it)and you're maybe overreacting (no offence intended:
you know me and you know how I respect your work).

In short, please keep up the good work, the discussions and the
like. Debian needs such melting pot of ideas. This will not be the
last time that people won't agree with your ideas or proposals
anyway..:=)


/end of bubulle philosophical thoughts.



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