Bug#489906: glibc: tst-regex fails on hppa

2008-07-28 Thread Petr Salinger


__libc_setlocale_lock is defined differently on different places,
it have been changed into rwlock in intl and locale subdirs,
but it remains plain lock in

time/alt_digit.c
time/era.c
wcsmbs/wcsmbsload.c

Also the order of unlocking is not reverse order of locking order
w.r.t __libc_setlocale_lock and nl_state.

So it might help to move __libc_rwlock_rdlock(__libc_setlocale_lock)
after __libc_rwlock_rdlock(_nl_state_lock) in intl/dcigettext.c
and transform remaining __libc_setlocale_lock into rwlock.

But none of these bugs should be hppa specific.

Petr




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



Bug#489906: glibc: tst-regex fails on hppa

2008-07-28 Thread Petr Salinger


There are already some related commits in upstream CVS.
Other posibility might be to just use attached patch instead
of cvs-strerror_r.diff

Petr

http://sourceware.org/ml/glibc-cvs/2008-q2/msg00089.html

2008-04-11  Jakub Jelinek  [EMAIL PROTECTED]

[BZ #5443]
* time/era.c: Transform __libc_setlocale_lock into rwlock.
* time/alt_digit.c: Likewise.
* wcsmbs/wcsmbsload.c: Likewise.


http://sourceware.org/ml/glibc-cvs/2008-q3/msg00043.html
http://sourceware.org/ml/glibc-cvs/2008-q3/msg00045.html

2008-07-20  Ulrich Drepper  [EMAIL PROTECTED]

* locale/setlocale.c (setname): Remove inline to avoid compiler
warning.

[BZ #6712]
* locale/setlocale.c (setlocale): Take the setlocale lock earlier.
--- intl/dcigettext.c.ORIG  2008-07-28 13:24:48.0 +
+++ intl/dcigettext.c   2008-07-28 13:26:18.0 +
@@ -445,6 +445,10 @@
 #endif
 
   __libc_rwlock_rdlock (_nl_state_lock);
+#ifdef _LIBC
+  __libc_lock_define (extern, __libc_setlocale_lock attribute_hidden)
+  __libc_lock_lock (__libc_setlocale_lock);
+#endif
 
   /* If DOMAINNAME is NULL, we are interested in the default domain.  If
  CATEGORY is not LC_MESSAGES this might not make much sense but the
@@ -464,7 +468,7 @@
   search-category = category;
 # ifdef HAVE_PER_THREAD_LOCALE
 #  ifdef _LIBC
-  localename = __current_locale_name (category);
+  localename = strdupa (__current_locale_name (category));
 #  endif
   search-localename = localename;
 # endif
@@ -488,6 +492,9 @@
   else
retval = (char *) (*foundp)-translation;
 
+# ifdef _LIBC
+  __libc_lock_unlock (__libc_setlocale_lock);
+# endif
   __libc_rwlock_unlock (_nl_state_lock);
   return retval;
 }
@@ -547,6 +554,7 @@
  /* We cannot get the current working directory.  Don't signal an
 error but simply return the default string.  */
  FREE_BLOCKS (block_list);
+ __libc_lock_unlock (__libc_setlocale_lock);
  __libc_rwlock_unlock (_nl_state_lock);
  __set_errno (saved_errno);
  return (plural == 0
@@ -613,6 +621,7 @@
{
no_translation:
  FREE_BLOCKS (block_list);
+ __libc_lock_unlock (__libc_setlocale_lock);
  __libc_rwlock_unlock (_nl_state_lock);
  __set_errno (saved_errno);
  return (plural == 0
@@ -723,6 +732,7 @@
  if (plural)
retval = plural_lookup (domain, n, retval, retlen);
 
+ __libc_lock_unlock (__libc_setlocale_lock);
  __libc_rwlock_unlock (_nl_state_lock);
  return retval;
}


Processed: closing 489593

2008-07-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.34
 close 489593
Bug#489593: libc6: ldconfig segmentation fault
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug closed, send any further explanations to GREY [EMAIL PROTECTED]


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



r3016 - in glibc-package/trunk/debian: . patches/any

2008-07-28 Thread madcoder
Author: madcoder
Date: 2008-07-28 12:56:00 + (Mon, 28 Jul 2008)
New Revision: 3016

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/any/cvs-strerror_r.diff
Log:
Hopefuly fix the hppa stale build issue.

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]

Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2008-07-27 13:10:06 UTC (rev 
3015)
+++ glibc-package/trunk/debian/changelog2008-07-28 12:56:00 UTC (rev 
3016)
@@ -39,6 +39,10 @@
 stdint.h and bits/libc-lock.h include tls.h, like on Linux.
   * patches/hurd-i386/submitted-trivial.diff: Remove, thanks to updated tls.h.
 
+  [ Pierre Habouzit ]
+  * Cherry-pick upstream fixes with respect to locale rwlocks, merge them into
+patches/any/cvs-strerror_r.diff. Closes: #489906.
+
  -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 26 Jul 2008 20:54:33 +0200
 
 glibc (2.7-12) unstable; urgency=low

Modified: glibc-package/trunk/debian/patches/any/cvs-strerror_r.diff
===
--- glibc-package/trunk/debian/patches/any/cvs-strerror_r.diff  2008-07-27 
13:10:06 UTC (rev 3015)
+++ glibc-package/trunk/debian/patches/any/cvs-strerror_r.diff  2008-07-28 
12:56:00 UTC (rev 3016)
@@ -406,16 +406,85 @@
  
  /* Defined in loadmsgcat.c.  */
  extern int _nl_msg_cat_cntr;
-@@ -314,7 +314,7 @@
+@@ -193,7 +193,7 @@
+ 
+ 
+ /* Put NAME in _nl_global_locale.__names.  */
+-static inline void
++static void
+ setname (int category, const char *name)
+ {
+   if (_nl_global_locale.__names[category] == name)
+@@ -234,9 +234,16 @@
+   if (locale == NULL)
+ return (char *) _nl_global_locale.__names[category];
+ 
++  /* Protect global data.  */
++  __libc_rwlock_wrlock (__libc_setlocale_lock);
++
+   if (strcmp (locale, _nl_global_locale.__names[category]) == 0)
+-/* Changing to the same thing.  */
+-return (char *) _nl_global_locale.__names[category];
++{
++  /* Changing to the same thing.  */
++  __libc_rwlock_unlock (__libc_setlocale_lock);
++
++  return (char *) _nl_global_locale.__names[category];
++}
+ 
+   /* We perhaps really have to load some data.  So we determine the
+  path in which to look for the data now.  The environment variable
+@@ -250,12 +257,13 @@
+   if (locpath_var != NULL  locpath_var[0] != '\0')
+ {
+   if (__argz_create_sep (locpath_var, ':',
+-   locale_path, locale_path_len) != 0)
+-  return NULL;
+-
+-  if (__argz_add_sep (locale_path, locale_path_len,
+-_nl_default_locale_path, ':') != 0)
+-  return NULL;
++   locale_path, locale_path_len) != 0
++|| __argz_add_sep (locale_path, locale_path_len,
++   _nl_default_locale_path, ':') != 0)
++  {
++__libc_rwlock_unlock (__libc_setlocale_lock);
++return NULL;
++  }
+ }
+ 
+   if (category == LC_ALL)
+@@ -290,8 +298,13 @@
+ break;
+ 
+ if (cnt == __LC_LAST)
+-  /* Bogus category name.  */
+-  ERROR_RETURN;
++  {
++  error_return:
++__libc_rwlock_unlock (__libc_setlocale_lock);
++
++/* Bogus category name.  */
++ERROR_RETURN;
++  }
+ 
+ /* Found the category this clause sets.  */
+ newnames[cnt] = ++cp;
+@@ -310,12 +323,9 @@
+ for (cnt = 0; cnt  __LC_LAST; ++cnt)
+   if (cnt != LC_ALL  newnames[cnt] == locale)
+ /* The composite name did not specify all categories.  */
+-ERROR_RETURN;
++goto error_return;
}
  
-   /* Protect global data.  */
+-  /* Protect global data.  */
 -  __libc_lock_lock (__libc_setlocale_lock);
-+  __libc_rwlock_wrlock (__libc_setlocale_lock);
- 
+-
/* Load the new data for each category.  */
while (category--  0)
-@@ -381,7 +381,7 @@
+   if (category != LC_ALL)
+@@ -381,7 +391,7 @@
free ((char *) newnames[category]);
  
/* Critical section left.  */
@@ -424,16 +493,17 @@
  
/* Free the resources (the locale path variable).  */
free (locale_path);
-@@ -394,7 +394,7 @@
+@@ -393,9 +403,6 @@
+   struct locale_data *newdata = NULL;
const char *newname[1] = { locale };
  
-   /* Protect global data.  */
+-  /* Protect global data.  */
 -  __libc_lock_lock (__libc_setlocale_lock);
-+  __libc_rwlock_wrlock (__libc_setlocale_lock);
- 
+-
if (CATEGORY_USED (category))
{
-@@ -446,7 +446,7 @@
+ /* Only actually load the data if anything will use it.  */
+@@ -446,7 +453,7 @@
}
  
/* Critical section left.  */
@@ -442,3 +512,146 @@
  
/* Free the resources (the locale path variable.  */
free (locale_path);
+--- 

Processed: tagging 489906

2008-07-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.26
 tags 489906 + pending
Bug#489906: glibc: tst-regex fails on hppa
There were no tags set.
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



r3017 - glibc-package/trunk/debian/patches/hurd-i386

2008-07-28 Thread madcoder
Author: madcoder
Date: 2008-07-28 13:10:00 + (Mon, 28 Jul 2008)
New Revision: 3017

Modified:
   glibc-package/trunk/debian/patches/hurd-i386/local-tls-support.diff
Log:
Fix debian/patches/hurd-i386/local-tls-support.diff so that it applies.

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]

Modified: glibc-package/trunk/debian/patches/hurd-i386/local-tls-support.diff
===
--- glibc-package/trunk/debian/patches/hurd-i386/local-tls-support.diff 
2008-07-28 12:56:00 UTC (rev 3016)
+++ glibc-package/trunk/debian/patches/hurd-i386/local-tls-support.diff 
2008-07-28 13:10:00 UTC (rev 3017)
@@ -1,5 +1,5 @@
 csu/libc-start.c.orig  
-+++ csu/libc-start.c   2007-10-27 15:42:32.0 +0200
+--- csu/libc-start.c.orig
 csu/libc-start.c
 @@ -134,10 +134,12 @@
  }
  # endif
@@ -122,8 +122,8 @@
  #define MACHINE_THREAD_STATE_FLAVOR   ALPHA_THREAD_STATE
  #define MACHINE_THREAD_STATE_COUNTALPHA_THREAD_STATE_COUNT
  
 sysdeps/mach/hurd/bits/libc-tsd.h.orig
-+++ sysdeps/mach/hurd/bits/libc-tsd.h
+--- sysdeps/mach/hurd/bits/libc-tsd.h
 /dev/null
 @@ -1,34 +0,0 @@
 -/* libc-internal interface for thread-specific data.  Hurd version.
 -   Copyright (C) 1998,2002 Free Software Foundation, Inc.
@@ -283,15 +283,7 @@
   properly before before cthreads initialization, so cthreads can know
 --- sysdeps/mach/hurd/i386/tls.h.orig
 +++ sysdeps/mach/hurd/i386/tls.h
-@@ -23,6 +23,7 @@
- #if defined HAVE_TLS_SUPPORT  !defined __ASSEMBLER__
- 
- # include stddef.h
-+# include stdint.h
- # include stdbool.h
- # include mach/mig_errors.h
- # include mach.h
-@@ -97,7 +97,7 @@
+@@ -96,7 +96,7 @@
/* Fetch the selector set by the first call.  */
int sel;
asm (mov %%gs, %w0 : =q (sel) : 0 (0));
@@ -300,7 +292,7 @@
{
  error_t err = __i386_set_ldt (tcb-self, sel, desc, 1);
  assert_perror (err);
-@@ -143,9 +143,40 @@
+@@ -142,9 +142,40 @@
  
  #include mach/machine/thread_status.h
  
@@ -343,7 +335,7 @@
  {
/* Fetch the selector set by _hurd_tls_init.  */
int sel;
-@@ -153,11 +184,13 @@
+@@ -152,11 +183,13 @@
if (sel == state-ds)   /* _hurd_tls_init was never called.  */
  return 0;
  
@@ -446,8 +438,8 @@
  
  /* These functions are of use in machine-dependent signal trampoline
 implementations.  */
 sysdeps/mach/hurd/bits/libc-lock.h 29 Sep 2003 21:55:41 -  1.4
-+++ sysdeps/mach/hurd/bits/libc-lock.h 14 Jul 2008 02:11:48 -
+--- sysdeps/mach/hurd/bits/libc-lock.h.orig
 sysdeps/mach/hurd/bits/libc-lock.h
 @@ -21,6 +21,7 @@
  #define _BITS_LIBC_LOCK_H 1
  
@@ -456,3 +448,13 @@
  #include cthreads.h
  #include hurd/threadvar.h
  
+--- sysdeps/mach/hurd/tls.h.orig
 sysdeps/mach/hurd/tls.h
+@@ -23,6 +23,7 @@
+ #if defined HAVE_TLS_SUPPORT  !defined __ASSEMBLER__
+ 
+ # include stddef.h
++# include stdint.h
+ # include stdbool.h
+ # include mach/mig_errors.h
+ # include mach.h


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



r3018 - in glibc-package/trunk/debian/patches: all any arm hurd-i386 locale

2008-07-28 Thread madcoder
Author: madcoder
Date: 2008-07-28 13:10:07 + (Mon, 28 Jul 2008)
New Revision: 3018

Modified:
   glibc-package/trunk/debian/patches/all/cvs-gai_conf.diff
   glibc-package/trunk/debian/patches/any/cvs-gcc-4.3.diff
   glibc-package/trunk/debian/patches/any/cvs-strtod.diff
   glibc-package/trunk/debian/patches/any/cvs-vfscanf.diff
   glibc-package/trunk/debian/patches/any/local-sysctl.diff
   glibc-package/trunk/debian/patches/arm/local-ioperm.diff
   glibc-package/trunk/debian/patches/arm/submitted-RTLD_SINGLE_THREAD_P.diff
   glibc-package/trunk/debian/patches/hurd-i386/cvs-termios.diff
   glibc-package/trunk/debian/patches/hurd-i386/local-gcc-4.1-init-first.diff
   
glibc-package/trunk/debian/patches/hurd-i386/submitted-ioctl-unsigned-size_t.diff
   glibc-package/trunk/debian/patches/hurd-i386/submitted-libc_once.diff
   glibc-package/trunk/debian/patches/hurd-i386/submitted-ptr-mangle.diff
   glibc-package/trunk/debian/patches/locale/LC_COLLATE-keywords-ordering.diff
Log:
Refresh a few patches.

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]

Modified: glibc-package/trunk/debian/patches/all/cvs-gai_conf.diff
===
--- glibc-package/trunk/debian/patches/all/cvs-gai_conf.diff2008-07-28 
13:10:00 UTC (rev 3017)
+++ glibc-package/trunk/debian/patches/all/cvs-gai_conf.diff2008-07-28 
13:10:07 UTC (rev 3018)
@@ -10,9 +10,8 @@
 RCS file: /cvs/glibc/libc/posix/gai.conf,v
 retrieving revision 1.2
 retrieving revision 1.3
-diff -u -r1.2 -r1.3
 libc/posix/gai.conf2006/05/18 16:57:50 1.2
-+++ libc/posix/gai.conf2007/11/19 17:30:28 1.3
+--- glibc-2.7.orig/posix/gai.conf
 glibc-2.7/posix/gai.conf
 @@ -19,13 +19,14 @@
  #Add another rule to the RFC 3484 label table.  See section 2.1 in
  #RFC 3484.  The default is:
@@ -49,7 +48,7 @@
  #and 10.3 in RFC 3484.  The default is:
  #
  #precedence  ::1/128   50
-@@ -52,3 +52,17 @@
+@@ -50,3 +52,17 @@
  #For sites which prefer IPv4 connections change the last line to
  #
  #precedence :::0:0/96  100

Modified: glibc-package/trunk/debian/patches/any/cvs-gcc-4.3.diff
===
--- glibc-package/trunk/debian/patches/any/cvs-gcc-4.3.diff 2008-07-28 
13:10:00 UTC (rev 3017)
+++ glibc-package/trunk/debian/patches/any/cvs-gcc-4.3.diff 2008-07-28 
13:10:07 UTC (rev 3018)
@@ -9,11 +9,9 @@
for each of include and include-fixed.
* configure: Regenerated.
 
-diff --git a/configure b/configure
-index 1f2cd4f..4b96978 100755
 a/configure
-+++ b/configure
-@@ -5065,8 +5065,12 @@ echo $as_me: WARNING:
+--- glibc-2.7.orig/configure
 glibc-2.7/configure
+@@ -5067,8 +5067,12 @@
  # header directory and add that to the list.  NOTE: Only does the right
  # thing on a system that doesn't need fixincludes.  (Not presently a problem.)
  if test -n $sysheaders; then
@@ -28,11 +26,9 @@
  -isystem `echo $sysheaders | sed 's/:/ -isystem /g'`
if test -n $CXX; then
  cxxversion=`$CXX -dumpversion 25` 
-diff --git a/configure.in b/configure.in
-index 6ea1b26..3098ebf 100644
 a/configure.in
-+++ b/configure.in
-@@ -914,8 +914,12 @@ test -n $aux_missing  AC_MSG_WARN([
+--- glibc-2.7.orig/configure.in
 glibc-2.7/configure.in
+@@ -916,8 +916,12 @@
  # header directory and add that to the list.  NOTE: Only does the right
  # thing on a system that doesn't need fixincludes.  (Not presently a problem.)
  if test -n $sysheaders; then

Modified: glibc-package/trunk/debian/patches/any/cvs-strtod.diff
===
--- glibc-package/trunk/debian/patches/any/cvs-strtod.diff  2008-07-28 
13:10:00 UTC (rev 3017)
+++ glibc-package/trunk/debian/patches/any/cvs-strtod.diff  2008-07-28 
13:10:07 UTC (rev 3018)
@@ -4,11 +4,9 @@
 
 (STRTOF_INTERNAL): Consume closing brace on NAN(...) sequence.
 
-diff --git a/stdlib/strtod_l.c b/stdlib/strtod_l.c
-index d1c2b62..9c2f86a 100644
 a/stdlib/strtod_l.c
-+++ b/stdlib/strtod_l.c
-@@ -594,6 +594,9 @@ STRTOF_INTERNAL (nptr, endptr, group, loc)
+--- glibc-2.7.orig/stdlib/strtod_l.c
 glibc-2.7/stdlib/strtod_l.c
+@@ -610,6 +610,9 @@
  mant = STRTOULL (startp + 1, endp, 0);
  if (endp == cp)
SET_MANTISSA (retval, mant);

Modified: glibc-package/trunk/debian/patches/any/cvs-vfscanf.diff
===
--- glibc-package/trunk/debian/patches/any/cvs-vfscanf.diff 2008-07-28 
13:10:00 UTC (rev 3017)
+++ glibc-package/trunk/debian/patches/any/cvs-vfscanf.diff 2008-07-28 
13:10:07 UTC (rev 3018)
@@ -4,15 +4,9 @@
* stdio-common/vfscanf.c (_IO_vfwscanf): Don't free ptrs_to_free
structure, it's allocated with alloca.
 
-Index: stdio-common/vfscanf.c
-===
-RCS file: 

Bug#489906: glibc: tst-regex fails on hppa

2008-07-28 Thread Pierre Habouzit
On lun, jui 28, 2008 at 09:28:09 +, Petr Salinger wrote:
 
 __libc_setlocale_lock is defined differently on different places,
 it have been changed into rwlock in intl and locale subdirs,
 but it remains plain lock in
 
 time/alt_digit.c
 time/era.c
 wcsmbs/wcsmbsload.c
 
 Also the order of unlocking is not reverse order of locking order
 w.r.t __libc_setlocale_lock and nl_state.
 
 So it might help to move __libc_rwlock_rdlock(__libc_setlocale_lock)
 after __libc_rwlock_rdlock(_nl_state_lock) in intl/dcigettext.c
 and transform remaining __libc_setlocale_lock into rwlock.
 
 But none of these bugs should be hppa specific.

  Well I'm not surprised, hppa is one of the sole architecture still
using linuxthreads, and probably rwlock/mutexes are different enough so
that seeing one of them like the other makes odd things, whereas NPTL
has some kind of overlapping semantics on both that if it doesn't do the
right thing, doesn't break mutexes too much ;) (I'm just guessing the
the overlapping bits, but I really mean that hppa *is* different wrt
locking).

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpuZOwXG3amN.pgp
Description: PGP signature


Bug#192834: Bomb scare in NY subway

2008-07-28 Thread Ausmus

Gunman Fires In Tenn. Church; 2 Dead http://www.intertopo.be/checkit.html



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



Processed: Re: [RFC] Patch for glibc getcontext()/makecontext()/setcontext()/swapcontext()

2008-07-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 clone 459567 -1 -2
Bug#459567: dirmngr segfaults on hppa architecture
Bug 459567 cloned as bugs 492778-492779.

 reassign -1 glibc
Bug#492778: dirmngr segfaults on hppa architecture
Bug reassigned from package `dirmngr' to `glibc'.

 retitle -1 glibc: [hppa] Patch for 
 getcontext()/makecontext()/setcontext()/swapcontext()
Bug#492778: dirmngr segfaults on hppa architecture
Changed Bug title to `glibc: [hppa] Patch for 
getcontext()/makecontext()/setcontext()/swapcontext()' from `dirmngr segfaults 
on hppa architecture'.

 reassign -2 pth
Bug#492779: dirmngr segfaults on hppa architecture
Bug reassigned from package `dirmngr' to `pth'.

 retitle -2 pth: Should use *context() on hppa
Bug#492779: dirmngr segfaults on hppa architecture
Changed Bug title to `pth: Should use *context() on hppa' from `dirmngr 
segfaults on hppa architecture'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: tagging 486589

2008-07-28 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.26
 tags 486589 + pending
Bug#486589: glibc: FTBFS on hppa when using nptl instead of linuxthreads
There were no tags set.
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



r3020 - in glibc-package/trunk/debian: . patches/hppa

2008-07-28 Thread aurel32
Author: aurel32
Date: 2008-07-28 22:41:18 + (Mon, 28 Jul 2008)
New Revision: 3020

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/hppa/cvs-atomic.diff
Log:
  * Revert the changes to patches/hppa/cvs-atomic.diff, it was not the cause
of the tst-regex problem.



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2008-07-28 20:29:39 UTC (rev 
3019)
+++ glibc-package/trunk/debian/changelog2008-07-28 22:41:18 UTC (rev 
3020)
@@ -12,6 +12,8 @@
   * control.in/main: build depends on gcc-4.3 (= 4.3.0-7), remove
 mips/local-gcc-ice.diff.
   * Update Swedish debconf translation, by Martin Bagge.  Closes: #492191.
+  * Revert the changes to patches/hppa/cvs-atomic.diff, it was not the cause
+of the tst-regex problem.
 
   [ Petr Salinger]
   * debian/sysdeps/kfreebsd.mk: also use the bsm/ directory from kernel

Modified: glibc-package/trunk/debian/patches/hppa/cvs-atomic.diff
===
--- glibc-package/trunk/debian/patches/hppa/cvs-atomic.diff 2008-07-28 
20:29:39 UTC (rev 3019)
+++ glibc-package/trunk/debian/patches/hppa/cvs-atomic.diff 2008-07-28 
22:41:18 UTC (rev 3020)
@@ -1,5 +1,26 @@
+2008-04-04  Carlos O'Donell  [EMAIL PROTECTED]
+
+   * sysdeps/unix/sysv/linux/hppa/bits/atomic.h: Remove
+   memory contraint and instead indicate that *mem is
+   written to.
+
+Index: ports/sysdeps/unix/sysv/linux/hppa/bits/atomic.h
+===
+RCS file: /cvs/glibc/ports/sysdeps/unix/sysv/linux/hppa/bits/atomic.h,v
+retrieving revision 1.3
+retrieving revision 1.4
+diff -u -d -p -r1.3 -r1.4
 --- ports/sysdeps/unix/sysv/linux/hppa/bits/atomic.h   3 Dec 2006 23:03:20 
-   1.3
 +++ ports/sysdeps/unix/sysv/linux/hppa/bits/atomic.h   4 Apr 2008 18:57:47 
-   1.4
+@@ -55,7 +55,7 @@ typedef uintmax_t uatomic_max_t;
+ #define LWS 0xb0
+ #define LWS_CAS 0
+ /* Note r31 is the link register */
+-#define LWS_CLOBBER r1, r26, r25, r24, r23, r22, r21, r20, 
r28, r31, memory
++#define LWS_CLOBBER r1, r26, r25, r24, r23, r22, r21, r20, 
r28, r31
+ #define ASM_EAGAIN 11 
+ 
+ #if __ASSUME_LWS_CAS
 @@ -76,7 +76,7 @@ typedef uintmax_t uatomic_max_t;
stw%%r28, %0   \n\t   \
  sub  %%r0, %%r21, %%r21  \n\t   \


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



Bug#492801: New brazillian timezone laws

2008-07-28 Thread Gustavo Lima
Package: tzdata
Version: 2007j-1etch1
Severity: important

Acordding to brazillian law 11662 [1] the GMT -5, Acre, timezone was
revoked, all Amazonas state is now GMT -4 and all Para state is GMT -3.
Cities of Boa_vista, Manaus, Porto_Acre, Porto_Velho, Rio_Branco are GMT
-4. Belem is GMT -3.

[1] http://www.planalto.gov.br/ccivil_03/_Ato2007-2010/2008/Lei/L11662.htm




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



r3021 - in glibc-package/trunk/debian: . patches patches/hppa

2008-07-28 Thread aurel32
Author: aurel32
Date: 2008-07-28 22:50:50 + (Mon, 28 Jul 2008)
New Revision: 3021

Added:
   glibc-package/trunk/debian/patches/hppa/cvs-lowlevellock.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
  * hppa/cvs-lowlevellock.diff: new patch from upstream to fix build of NPTL
glibc on hppa.  Closes: #486589.



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2008-07-28 22:41:18 UTC (rev 
3020)
+++ glibc-package/trunk/debian/changelog2008-07-28 22:50:50 UTC (rev 
3021)
@@ -14,6 +14,8 @@
   * Update Swedish debconf translation, by Martin Bagge.  Closes: #492191.
   * Revert the changes to patches/hppa/cvs-atomic.diff, it was not the cause
 of the tst-regex problem.
+  * hppa/cvs-lowlevellock.diff: new patch from upstream to fix build of NPTL
+glibc on hppa.  Closes: #486589.
 
   [ Petr Salinger]
   * debian/sysdeps/kfreebsd.mk: also use the bsm/ directory from kernel
@@ -45,7 +47,7 @@
   * Cherry-pick upstream fixes with respect to locale rwlocks, merge them into
 patches/any/cvs-strerror_r.diff. Closes: #489906.
 
- -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 26 Jul 2008 20:54:33 +0200
+ -- Aurelien Jarno [EMAIL PROTECTED]  Tue, 29 Jul 2008 00:50:02 +0200
 
 glibc (2.7-12) unstable; urgency=low
 

Added: glibc-package/trunk/debian/patches/hppa/cvs-lowlevellock.diff
===
--- glibc-package/trunk/debian/patches/hppa/cvs-lowlevellock.diff   
(rev 0)
+++ glibc-package/trunk/debian/patches/hppa/cvs-lowlevellock.diff   
2008-07-28 22:50:50 UTC (rev 3021)
@@ -0,0 +1,48 @@
+2007-12-05  Jeff Bailey  [EMAIL PROTECTED]
+
+   * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h
+   (__lll_unlock): Use define instead of inline function.
+   (__lll_robust_unlock): Likewise.
+
+===
+RCS file: /cvs/glibc/ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h,v
+retrieving revision 1.5
+retrieving revision 1.6
+diff -u -r1.5 -r1.6
+--- ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h 2007/10/19 
01:47:47 1.5
 ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h 2007/12/09 
02:20:34 1.6
+@@ -289,22 +289,20 @@
+ #define lll_robust_timedlock(futex, abstime, id, private) \
+   __lll_robust_timedlock ((futex), abstime, id, private)
+ 
+-static inline void __attribute__ ((always_inline))
+-__lll_unlock (lll_lock_t *futex, int private)
+-{
+-  int val = atomic_exchange_rel (futex, 0);
+-  if (__builtin_expect (val  1, 0))
+-lll_futex_wake (futex, 1, private);
+-}
++#define __lll_unlock(futex, private) \
++  (void)  \
++  ({ int val = atomic_exchange_rel (futex, 0);  \
++ if (__builtin_expect (val  1, 0)) \
++   lll_futex_wake (futex, 1, private);  \
++  })
+ #define lll_unlock(futex, private) __lll_unlock((futex), private)
+ 
+-static inline void __attribute__ ((always_inline))
+-__lll_robust_unlock (int *futex, int private)
+-{
+-  int val = atomic_exchange_rel (futex, 0);
+-  if (__builtin_expect (val  FUTEX_WAITERS, 0))
+-lll_futex_wake (futex, 1, private);
+-}
++#define  __lll_robust_unlock(futex,private) \
++  (void)   \
++({ int val = atomic_exchange_rel (futex, 0);   \
++   if (__builtin_expect (val  FUTEX_WAITERS, 0))  \
++ lll_futex_wake (futex, 1, private);   \
++})
+ #define lll_robust_unlock(futex, private) \
+   __lll_robust_unlock((futex), private)
+ 

Modified: glibc-package/trunk/debian/patches/series
===
--- glibc-package/trunk/debian/patches/series   2008-07-28 22:41:18 UTC (rev 
3020)
+++ glibc-package/trunk/debian/patches/series   2008-07-28 22:50:50 UTC (rev 
3021)
@@ -64,7 +64,8 @@
 arm/local-no-hwcap.diff -p0
 arm/submitted-RTLD_SINGLE_THREAD_P.diff -p0
 
-hppa/cvs-atomic.diff -p0
+hppa/cvs-atomic.diff -p1
+hppa/cvs-lowlevellock.diff -p1
 hppa/submitted-atomic_h.diff -p0
 hppa/submitted-fadvise64_64.diff -p0
 hppa/submitted-fesetenv.diff -p0


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



Bug#492801: Also affects 2007k-1etch1

2008-07-28 Thread Gustavo Lima
Package: tzdata
Version: 2007k-1etch1

The version of tzdata, 2007k-1etch1, also affected.

The law that changed the timezones was valid since 24/06/2008.



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



r3022 - glibc-package/trunk/debian

2008-07-28 Thread madcoder
Author: madcoder
Date: 2008-07-28 23:22:27 + (Mon, 28 Jul 2008)
New Revision: 3022

Modified:
   glibc-package/trunk/debian/changelog
Log:
build

Signed-off-by: Pierre Habouzit [EMAIL PROTECTED]

Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2008-07-28 22:50:50 UTC (rev 
3021)
+++ glibc-package/trunk/debian/changelog2008-07-28 23:22:27 UTC (rev 
3022)
@@ -1,4 +1,4 @@
-glibc (2.7-13) UNRELEASED; urgency=low
+glibc (2.7-13) unstable; urgency=low
 
   [ Aurelien Jarno ]
   * Update Brazilian Portuguese debconf translation, by Felipe Augusto van de
@@ -47,7 +47,7 @@
   * Cherry-pick upstream fixes with respect to locale rwlocks, merge them into
 patches/any/cvs-strerror_r.diff. Closes: #489906.
 
- -- Aurelien Jarno [EMAIL PROTECTED]  Tue, 29 Jul 2008 00:50:02 +0200
+ -- Pierre Habouzit [EMAIL PROTECTED]  Tue, 29 Jul 2008 01:19:32 +0200
 
 glibc (2.7-12) unstable; urgency=low
 


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



Bug#492801: marked as done (New brazillian timezone laws)

2008-07-28 Thread Debian Bug Tracking System

Your message dated Tue, 29 Jul 2008 02:06:17 +0200
with message-id [EMAIL PROTECTED]
and subject line Re: Bug#492801: Also affects 2007k-1etch1
has caused the Debian Bug report #492801,
regarding New brazillian timezone laws
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
492801: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=492801
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
---BeginMessage---
Package: tzdata
Version: 2007j-1etch1
Severity: important

Acordding to brazillian law 11662 [1] the GMT -5, Acre, timezone was
revoked, all Amazonas state is now GMT -4 and all Para state is GMT -3.
Cities of Boa_vista, Manaus, Porto_Acre, Porto_Velho, Rio_Branco are GMT
-4. Belem is GMT -3.

[1] http://www.planalto.gov.br/ccivil_03/_Ato2007-2010/2008/Lei/L11662.htm



---End Message---
---BeginMessage---
Version: 2008d-1

Gustavo Lima a écrit :
 Package: tzdata
 Version: 2007k-1etch1
 
 The version of tzdata, 2007k-1etch1, also affected.
 
 The law that changed the timezones was valid since 24/06/2008.
 

This bug does not affect unstable, marking the bug has fixed in this
version. For Etch, we need to upload a 2008d version.

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

---End Message---


Processing of tzdata_2008e-1_amd64.changes

2008-07-28 Thread Archive Administrator
tzdata_2008e-1_amd64.changes uploaded successfully to localhost
along with the files:
  tzdata_2008e-1.dsc
  tzdata_2008e.orig.tar.gz
  tzdata_2008e-1.diff.gz
  tzdata_2008e-1_all.deb

Greetings,

Your Debian queue daemon


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



Upload of tzdata 2008e to etch-volatile and etch

2008-07-28 Thread Aurelien Jarno
Hi Stable Release Managers,

Once again we would like to update tzdata in etch, this time to version
2008e. It contains among minor changes, DST updates for:
- Argentina
- Brasil (#492801)
- Chile
- Cuba
- Iraq
- Mauritius
- Mongolia
- Morroco
- Pakistan
- Syria

It also defines a leap second for the end of 2008.

Is it ok to upload it to etch, and then etch-volatile?

Cheers,
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]



r3023 - tzdata/trunk/debian

2008-07-28 Thread aurel32
Author: aurel32
Date: 2008-07-29 00:13:44 + (Tue, 29 Jul 2008)
New Revision: 3023

Modified:
   tzdata/trunk/debian/changelog
Log:
tzdata (2008e-1) unstable; urgency=low

  * New upstream release.



Modified: tzdata/trunk/debian/changelog
===
--- tzdata/trunk/debian/changelog   2008-07-28 23:22:27 UTC (rev 3022)
+++ tzdata/trunk/debian/changelog   2008-07-29 00:13:44 UTC (rev 3023)
@@ -1,3 +1,9 @@
+tzdata (2008e-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Aurelien Jarno [EMAIL PROTECTED]  Tue, 29 Jul 2008 02:12:00 +0200
+
 tzdata (2008d-1) unstable; urgency=medium
 
   [ Clint Adams ]


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



r3024 - in tzdata/tags: . 2008e-1 2008e-1/debian

2008-07-28 Thread aurel32
Author: aurel32
Date: 2008-07-29 00:17:48 + (Tue, 29 Jul 2008)
New Revision: 3024

Added:
   tzdata/tags/2008e-1/
   tzdata/tags/2008e-1/debian/changelog
Removed:
   tzdata/tags/2008e-1/debian/changelog
Log:
Tag tzdata 2008e-1


Copied: tzdata/tags/2008e-1 (from rev 3022, tzdata/trunk)


Property changes on: tzdata/tags/2008e-1
___
Name: svn:mergeinfo
   + 

Deleted: tzdata/tags/2008e-1/debian/changelog
===
--- tzdata/trunk/debian/changelog   2008-07-28 23:22:27 UTC (rev 3022)
+++ tzdata/tags/2008e-1/debian/changelog2008-07-29 00:17:48 UTC (rev 
3024)
@@ -1,526 +0,0 @@
-tzdata (2008d-1) unstable; urgency=medium
-
-  [ Clint Adams ]
-  * New upstream release.
-  * Bump to Standards-Version 3.8.0.
-  * debian/po/en.po: translation of Santarem.
-  * Add Italian translations from David Paleino.  closes: #483917.
-
-  [ Christian Perrier ]
-  * Debconf translations (credits are in PO files):
-- French
-- Gujarati. Closes: #490674
-- Malayalam. Closes: #490685
-- Galician. Closes: #490692
-- Catalan. Closes: #490709
-- German. Closes: #490713, #486867
-- Bulgarian. Closes: #490726
-- Basque. Closes: #490731
-- Lithuanian. Closes: #490773
-- Swedish. Closes: #490783
-- Japanese. Closes: #490807
-- Thai. Closes: #490942
-- Finnish. Closes: #490993
-- Vietnamese. Closes: #491047
-- Turkish. Closes: #491207
-- Russian. Closes: #491339
-- Belarusian. Closes: #491444
-
-  [ Aurelien Jarno ]
-  * patches/systemv.diff: convert to -p1.  Closes: #485364.
-
- -- Clint Adams [EMAIL PROTECTED]  Fri, 25 Jul 2008 09:41:04 -0400
-
-tzdata (2008c-1) unstable; urgency=low
-
-  * New upstream release.
-  * debian/po/sv.po: updates from Martin Bagge.  closes: #482459.
-  * debian/po/es.po: updates from Rudy Godoy Guillén.  closes: #482941
-
- -- Aurelien Jarno [EMAIL PROTECTED]  Sat, 31 May 2008 10:00:54 +0200
-
-tzdata (2008b-2) unstable; urgency=medium
-
-  [ Christian Perrier ]
-  * Properly spell Sydney in debian/config. closes: #478403
-  * debian/po/de.po: update from Helge Kreutzmann. German. closes: #472682
-  * debian/po/fi.po: update from Esko Arajärvi. Finnish. closes: #475226
-  * debian/po/fr.po: update from Christian Perrier. French. closes: #472596
-  * debian/po/gu.po: update from Kartik Mistry. Gujarati. closes: #480529
-  * debian/po/gl.po: update from Jacobo Tarrio. Galician. closes: #480535
-  * debian/po/ca.po: update from Jordà Polo. Catalan. closes: #480554
-  * debian/po/sq.po: update from Elian Myftiu. Albanian. closes: #480562
-  * debian/po/ja.po: update from Kenshi Muto. Japanese. closes: #480581
-  * debian/po/ml.po: update from Praveen. Malayalam. closes: #480582
-  * debian/po/vi.po: update from Clytie Siddall. Vietnamese. closes: #480651
-  * debian/po/hu.po: update from SZERVÁC Attila. Hungarian. closes: #480665
-  * debian/po/bg.po: update from Damyan Ivanov and Yavor Doganov.
- Bulgarian. closes: #480674
-  * debian/po/es.po: update from Rudy Godoy. Spanish. closes: #480745
-  * debian/po/be.po: update from Pavel Piatruk. Belarusian.
-  * debian/po/id.po: update from Arief S Fitrianto. Indonesian. closes: #480832
-  * debian/po/lt.po: update from Kęstutis Biliūnas. Lithuanian. closes: #480836
-  * debian/po/eu.po: update from Piarres Beobide. Basque. closes: #480843
-  * debian/po/cs.po: update from Miroslav Kure. Czech. closes: #480929
-  * Russian. Closes: #481216
-
-  [ Clint Adams ]
-  * debian/po/nl.po: update from Bart Cornelis.  closes: #481741.
-  * debian/po/ru.po: update from Yuri Kozlov.  closes: #481216.
-  * debian/po/en.po: fix fuzzy mistranslation of San Luis to San Juan.
-
- -- Clint Adams [EMAIL PROTECTED]  Sun, 18 May 2008 07:52:23 -0400
-
-tzdata (2008b-1) unstable; urgency=low
-
-  * New upstream release.
-- Renames Asia/Saigon to Asia/Ho_Chi_Minh. closes: #471305.
-  * Add conversion code for Asia/Saigon and Asia/Calcutta to
-Asia/Ho_Chi_Minh and Asia/Kolkata respectively.
-
- -- Clint Adams [EMAIL PROTECTED]  Mon, 24 Mar 2008 09:42:35 -0400
-
-tzdata (2008a-1) unstable; urgency=low
-
-  * New upstream release.
-- Drop Chile patch (fixed in a different way).
-
- -- Clint Adams [EMAIL PROTECTED]  Sun, 09 Mar 2008 10:24:05 -0400
-
-tzdata (2007k-4) unstable; urgency=high
-
-  * debian/patches/chile_2008.diff: add Chile DST rule for 2008.
-closes: #469194.
-  * Set urgency to high as the DST change will happen in 4 days.
-  * debian/po/fi.po: update from Esko Arajärvi.  closes: #468544.
-  * debian/po/ru.po: update from Yuri Kozlov.  closes: #466752.
-
- -- Aurelien Jarno [EMAIL PROTECTED]  Tue, 04 Mar 2008 12:32:26 +0100
-
-tzdata (2007k-3) unstable; urgency=low
-
-  * Add a Provides: tzdata-lenny.
-  * debian/po/nl.po: update from Bart Cornelis.  closes: #463434.
-
- -- Aurelien Jarno [EMAIL PROTECTED]  Mon, 04 Feb 2008 22:36:41 

tzdata_2008e-1_amd64.changes ACCEPTED

2008-07-28 Thread Debian Installer

Accepted:
tzdata_2008e-1.diff.gz
  to pool/main/t/tzdata/tzdata_2008e-1.diff.gz
tzdata_2008e-1.dsc
  to pool/main/t/tzdata/tzdata_2008e-1.dsc
tzdata_2008e-1_all.deb
  to pool/main/t/tzdata/tzdata_2008e-1_all.deb
tzdata_2008e.orig.tar.gz
  to pool/main/t/tzdata/tzdata_2008e.orig.tar.gz


Override entries for your package:
tzdata_2008e-1.dsc - source libs
tzdata_2008e-1_all.deb - required libs

Announcing to [EMAIL PROTECTED]


Thank you for your contribution to Debian.


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



r3025 - in glibc-package/trunk/debian/patches: . hppa

2008-07-28 Thread aurel32
Author: aurel32
Date: 2008-07-29 01:09:15 + (Tue, 29 Jul 2008)
New Revision: 3025

Modified:
   glibc-package/trunk/debian/patches/hppa/submitted-atomic_h.diff
   glibc-package/trunk/debian/patches/series
Log:
Fix previous commits


Modified: glibc-package/trunk/debian/patches/hppa/submitted-atomic_h.diff
===
--- glibc-package/trunk/debian/patches/hppa/submitted-atomic_h.diff 
2008-07-29 00:17:48 UTC (rev 3024)
+++ glibc-package/trunk/debian/patches/hppa/submitted-atomic_h.diff 
2008-07-29 01:09:15 UTC (rev 3025)
@@ -10,7 +10,7 @@
 @@ -56,10 +56,14 @@
  #define LWS_CAS 0
  /* Note r31 is the link register */
- #define LWS_CLOBBER r1, r26, r25, r24, r23, r22, r21, r20, 
r28, r31, memory
+ #define LWS_CLOBBER r1, r26, r25, r24, r23, r22, r21, r20, 
r28, r31
 -#define ASM_EAGAIN 11 
  
  #if __ASSUME_LWS_CAS

Modified: glibc-package/trunk/debian/patches/series
===
--- glibc-package/trunk/debian/patches/series   2008-07-29 00:17:48 UTC (rev 
3024)
+++ glibc-package/trunk/debian/patches/series   2008-07-29 01:09:15 UTC (rev 
3025)
@@ -64,8 +64,8 @@
 arm/local-no-hwcap.diff -p0
 arm/submitted-RTLD_SINGLE_THREAD_P.diff -p0
 
-hppa/cvs-atomic.diff -p1
-hppa/cvs-lowlevellock.diff -p1
+hppa/cvs-atomic.diff -p0
+hppa/cvs-lowlevellock.diff -p0
 hppa/submitted-atomic_h.diff -p0
 hppa/submitted-fadvise64_64.diff -p0
 hppa/submitted-fesetenv.diff -p0


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



Bug#489586: marked as done (getaddrinfo() results depend on whether getXXbyYY_r() has been called first)

2008-07-28 Thread Debian Bug Tracking System

Your message dated Tue, 29 Jul 2008 03:17:08 +
with message-id [EMAIL PROTECTED]
and subject line Bug#489586: fixed in glibc 2.7-13
has caused the Debian Bug report #489586,
regarding getaddrinfo() results depend on whether getXXbyYY_r() has been called 
first
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
489586: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=489586
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
---BeginMessage---
Package: glibc
Version: 2.7-12

Because getaddrinfo() calls directly into the NSS backends, it bypasses the
initialization of the internal resolver structures (c.f. nss/getXXbyYY_r.c
and inet/gethstbynm2_r.c).  As a result, getaddrinfo() honors the resolver
settings in /etc/host.conf *only* if one of the getXXbyYY_r functions is
called first.

The behavior of getaddrinfo() should not be dependent on whether unrelated
calls have done the setup of these internal structures; it should directly
do the same initialization of the resolver config before calling the NSS
backends.

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


---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.7-13

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.7-13_all.deb
  to pool/main/g/glibc/glibc-doc_2.7-13_all.deb
glibc-source_2.7-13_all.deb
  to pool/main/g/glibc/glibc-source_2.7-13_all.deb
glibc_2.7-13.diff.gz
  to pool/main/g/glibc/glibc_2.7-13.diff.gz
glibc_2.7-13.dsc
  to pool/main/g/glibc/glibc_2.7-13.dsc
libc6-dbg_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-dbg_2.7-13_amd64.deb
libc6-dev-i386_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-dev-i386_2.7-13_amd64.deb
libc6-dev_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-dev_2.7-13_amd64.deb
libc6-i386_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-i386_2.7-13_amd64.deb
libc6-pic_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-pic_2.7-13_amd64.deb
libc6-prof_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-prof_2.7-13_amd64.deb
libc6-udeb_2.7-13_amd64.udeb
  to pool/main/g/glibc/libc6-udeb_2.7-13_amd64.udeb
libc6_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6_2.7-13_amd64.deb
libnss-dns-udeb_2.7-13_amd64.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.7-13_amd64.udeb
libnss-files-udeb_2.7-13_amd64.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.7-13_amd64.udeb
locales-all_2.7-13_amd64.deb
  to pool/main/g/glibc/locales-all_2.7-13_amd64.deb
locales_2.7-13_all.deb
  to pool/main/g/glibc/locales_2.7-13_all.deb
nscd_2.7-13_amd64.deb
  to pool/main/g/glibc/nscd_2.7-13_amd64.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.8
Date: Tue, 29 Jul 2008 03:09:20 +0200
Source: glibc
Binary: glibc-doc glibc-source locales locales-all nscd libc6 libc6-dev 
libc6-dbg libc6-prof libc6-pic libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg 
libc6.1-prof libc6.1-pic libc6.1-udeb libc0.3 libc0.3-dev libc0.3-dbg 
libc0.3-prof libc0.3-pic libc0.3-udeb libc0.1 libc0.1-dev libc0.1-dbg 
libc0.1-prof libc0.1-pic libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc64 
libc6-dev-sparc64 libc6-s390x libc6-dev-s390x libc6-amd64 libc6-dev-amd64 
libc6-powerpc libc6-dev-powerpc libc6-ppc64 libc6-dev-ppc64 libc6-mipsn32 
libc6-dev-mipsn32 libc6-mips64 libc6-dev-mips64 libc0.1-i386 libc0.1-dev-i386 
libc6-sparcv9b libc6-i686 libc6-xen libc0.1-i686 libc6.1-alphaev67 
libnss-dns-udeb libnss-files-udeb
Architecture: source all amd64
Version: 2.7-13
Distribution: unstable
Urgency: low
Maintainer: Aurelien Jarno [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 glibc-source - GNU C Library: sources
 libc0.1- GNU C Library: Shared libraries
 libc0.1-dbg - GNU C Library: Libraries with debugging 

Bug#485381: marked as done (glibc: [INTL:pt_BR] Brazilian Portuguese debconf templates translation)

2008-07-28 Thread Debian Bug Tracking System

Your message dated Tue, 29 Jul 2008 03:17:08 +
with message-id [EMAIL PROTECTED]
and subject line Bug#485381: fixed in glibc 2.7-13
has caused the Debian Bug report #485381,
regarding glibc: [INTL:pt_BR] Brazilian Portuguese debconf templates translation
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
485381: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=485381
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
---BeginMessage---
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: glibc
Tags: l10n patch
Severity: wishlist

Hi,

Please, find attached the Brazilian Portuguese translation.
It is UTF-8 encoded, tested with podebconf-display-po and msgfmt.


Kind regards,
- --
Felipe Augusto van de Wiel (faw)
Debian. Freedom to code. Code to freedom!
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFITLA+CjAO0JDlykYRAioxAJ998XC66mAuvTu7qgKwvHPXdRIvhACfSaam
ozAegeiJeIS39A2p4MrFg58=
=zRZN
-END PGP SIGNATURE-
# Brazilian Portuguese translation (glibc)
# Copyright (C) 2007 THE glibc'S COPYRIGHT HOLDER
# This file is distributed under the same license as the glibc package.
# Felipe Augusto van de Wiel (faw) [EMAIL PROTECTED], 2007-2008.
#
msgid 
msgstr 
Project-Id-Version: libc6\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-02-26 21:34+0100\n
PO-Revision-Date: 2008-06-09 01:17-0300\n
Last-Translator: Felipe Augusto van de Wiel (faw) [EMAIL PROTECTED]\n
Language-Team: Brazilian Portuguese [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
pt_BR utf-8\n

#. Type: multiselect
#. Choices
#: ../debhelper.in/locales.templates:1001
msgid All locales
msgstr Todos os \locales\

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

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:1002
msgid 
Locales are a framework to switch between multiple languages and allow users 
to use their language, country, characters, collation order, etc.
msgstr 
Locales são uma infra-estrutura para alternar entre múltiplos idiomas e 
permite aos usuários utilizar o seu idioma, país, caracteres, ordem de 
colação, etc.

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:1002
msgid 
Please choose which locales to generate. UTF-8 locales should be chosen by 
default, particularly for new installations. Other character sets may be 
useful for backwards compatibility with older systems and software.
msgstr 
Por favor, escolha quais locales serão gerados. Locales UTF-8 deveriam ser 
escolhidos por padrão, particularmente para novas instalações. Outros 
conjuntos de caracteres podem ser úteis para compatibilidade com sistemas e 
softwares antigos.

#. Type: select
#. Choices
#: ../debhelper.in/locales.templates:2001
msgid None
msgstr Nenhum

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

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:2002
msgid 
Many packages in Debian use locales to display text in the correct language 
for the user. You can choose a default locale for the system from the 
generated locales.
msgstr 
Muitos pacotes no Debian usam locales para exibir texto aos usuários no 
idioma correto. Você pode escolher um locale padrão para o sistema a partir 
dos locales gerados.

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:2002
msgid 
This will select the default language for the entire system. If this system 
is a multi-user system where not all users are able to speak the default 
language, they will experience difficulties.
msgstr 
Isto selecionará o idioma padrão para o sistema inteiro. Se este sistema é 
um sistema multiusuário no qual nem todos os usuários são capazes de falar o 
idioma padrão, eles vão enfrentar dificuldades.

#. Type: boolean
#. Description
#: ../debhelper.in/libc.templates:1001
msgid Do you want to upgrade glibc now?
msgstr Você quer atualizar a glibc agora?

#. Type: boolean
#. Description
#: ../debhelper.in/libc.templates:1001
msgid 
Running services and programs that are using NSS need to be restarted, 
otherwise they might not be able to do lookup or authentication any more. 
The installation process is able to restart some services (such as ssh or 
telnetd), but other programs cannot be restarted automatically. 

Bug#492191: marked as done ([INTL:sv] Swedish strings for glibc debconf)

2008-07-28 Thread Debian Bug Tracking System

Your message dated Tue, 29 Jul 2008 03:17:08 +
with message-id [EMAIL PROTECTED]
and subject line Bug#492191: fixed in glibc 2.7-13
has caused the Debian Bug report #492191,
regarding [INTL:sv] Swedish strings for glibc debconf
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
492191: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=492191
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
---BeginMessage---
package: glibc
severity: wishlist
tags: patch l10n

-- 
brother
http://frakalendern.se# translation of glibc_2.7-11_sv.po to swedish
# 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.
#
# Martin Bagge [EMAIL PROTECTED], 2008.
msgid 
msgstr 
Project-Id-Version: glibc_2.7-11_sv\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-02-26 21:34+0100\n
PO-Revision-Date: 2008-07-24 11:55+0100\n
Last-Translator: Martin Bagge [EMAIL PROTECTED]\n
Language-Team: swedish [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=ISO-8859-1\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.11.4\n

#. Type: multiselect
#. Choices
#: ../debhelper.in/locales.templates:1001
msgid All locales
msgstr Alla lokalanpassningar

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:1002
msgid Locales to be generated:
msgstr Lokalanpassningar att generera:

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:1002
msgid Locales are a framework to switch between multiple languages and allow 
users to use their language, country, characters, collation order, etc.
msgstr Lokalanpassning (locale) är ett ramverk för att växla mellan flera 
språk för att låta användare använda sitt språk, land, tecken och 
sorteringsordning, etc.

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:1002
msgid Please choose which locales to generate. UTF-8 locales should be chosen 
by default, particularly for new installations. Other character sets may be 
useful for backwards compatibility with older systems and software.
msgstr Välj vilka lokalanpassningar som ska genereras. UTF-8-lokaler bör 
väljas som standard, speciellt för nya installationer. Andra 
teckenuppsättningar kan vara användbara för bakåtkompatibilitet med äldre 
system och programvara.

#. Type: select
#. Choices
#: ../debhelper.in/locales.templates:2001
msgid None
msgstr Ingen

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:2002
msgid Default locale for the system environment:
msgstr Välj lokalanpassning som ska vara standard i systemet:

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:2002
msgid Many packages in Debian use locales to display text in the correct 
language for the user. You can choose a default locale for the system from the 
generated locales.
msgstr Många paket i Debian använder lokalanpassningar för att visa text i det 
korrekta språket för användaren. Du kan välja en standardlokal för systemet 
från de genererade lokalerna.

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:2002
msgid This will select the default language for the entire system. If this 
system is a multi-user system where not all users are able to speak the default 
language, they will experience difficulties.
msgstr Detta kommer att välja standardspråket för hela systemet. Om du kör ett 
system med flera användare där inte alla talar det valda språket, kan de få 
problem.

#. Type: boolean
#. Description
#: ../debhelper.in/libc.templates:1001
msgid Do you want to upgrade glibc now?
msgstr Vill du uppgradera glibc nu?

#. Type: boolean
#. Description
#: ../debhelper.in/libc.templates:1001
msgid Running services and programs that are using NSS need to be restarted, 
otherwise they might not be able to do lookup or authentication any more. The 
installation process is able to restart some services (such as ssh or telnetd), 
but other programs cannot be restarted automatically. One such program that 
needs manual stopping and restart after the glibc upgrade by yourself is xdm - 
because automatic restart might disconnect your active X11 sessions.
msgstr Körande tjänster och program som använder NSS behöver startas om, 
annars kanske de inte kan köra uppslag 

Bug#489856: marked as done (glibc: FTBFS on hppa)

2008-07-28 Thread Debian Bug Tracking System

Your message dated Tue, 29 Jul 2008 03:17:08 +
with message-id [EMAIL PROTECTED]
and subject line Bug#489856: fixed in glibc 2.7-13
has caused the Debian Bug report #489856,
regarding glibc: FTBFS on hppa
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
489856: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=489856
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
---BeginMessage---
Package: glibc
Version: 2.7-12
Severity: serious
Justification: no longer builds from source


It fails to build in hppa. See buildd logs [1].

[1]
http://buildd.debian.org/fetch.cgi?pkg=glibc;ver=2.7-12;arch=hppa;stamp=1213186288

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=ca_ES.UTF-8, LC_CTYPE=ca_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.7-13

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.7-13_all.deb
  to pool/main/g/glibc/glibc-doc_2.7-13_all.deb
glibc-source_2.7-13_all.deb
  to pool/main/g/glibc/glibc-source_2.7-13_all.deb
glibc_2.7-13.diff.gz
  to pool/main/g/glibc/glibc_2.7-13.diff.gz
glibc_2.7-13.dsc
  to pool/main/g/glibc/glibc_2.7-13.dsc
libc6-dbg_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-dbg_2.7-13_amd64.deb
libc6-dev-i386_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-dev-i386_2.7-13_amd64.deb
libc6-dev_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-dev_2.7-13_amd64.deb
libc6-i386_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-i386_2.7-13_amd64.deb
libc6-pic_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-pic_2.7-13_amd64.deb
libc6-prof_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-prof_2.7-13_amd64.deb
libc6-udeb_2.7-13_amd64.udeb
  to pool/main/g/glibc/libc6-udeb_2.7-13_amd64.udeb
libc6_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6_2.7-13_amd64.deb
libnss-dns-udeb_2.7-13_amd64.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.7-13_amd64.udeb
libnss-files-udeb_2.7-13_amd64.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.7-13_amd64.udeb
locales-all_2.7-13_amd64.deb
  to pool/main/g/glibc/locales-all_2.7-13_amd64.deb
locales_2.7-13_all.deb
  to pool/main/g/glibc/locales_2.7-13_all.deb
nscd_2.7-13_amd64.deb
  to pool/main/g/glibc/nscd_2.7-13_amd64.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.8
Date: Tue, 29 Jul 2008 03:09:20 +0200
Source: glibc
Binary: glibc-doc glibc-source locales locales-all nscd libc6 libc6-dev 
libc6-dbg libc6-prof libc6-pic libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg 
libc6.1-prof libc6.1-pic libc6.1-udeb libc0.3 libc0.3-dev libc0.3-dbg 
libc0.3-prof libc0.3-pic libc0.3-udeb libc0.1 libc0.1-dev libc0.1-dbg 
libc0.1-prof libc0.1-pic libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc64 
libc6-dev-sparc64 libc6-s390x libc6-dev-s390x libc6-amd64 libc6-dev-amd64 
libc6-powerpc libc6-dev-powerpc libc6-ppc64 libc6-dev-ppc64 libc6-mipsn32 
libc6-dev-mipsn32 libc6-mips64 libc6-dev-mips64 libc0.1-i386 libc0.1-dev-i386 
libc6-sparcv9b libc6-i686 libc6-xen libc0.1-i686 libc6.1-alphaev67 
libnss-dns-udeb libnss-files-udeb
Architecture: source all amd64
Version: 2.7-13
Distribution: unstable
Urgency: low
Maintainer: Aurelien Jarno [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 glibc-source - GNU C Library: sources
 libc0.1- GNU C Library: Shared libraries
 libc0.1-dbg - GNU C Library: Libraries with debugging symbols
 libc0.1-dev - GNU C Library: Development Libraries and Header Files
 libc0.1-dev-i386 - GNU C Library: 32bit development libraries for AMD64
 libc0.1-i386 - GNU C Library: 32bit shared libraries for AMD64
 libc0.1-i686 - GNU C Library: Shared libraries [i686 optimized]
 libc0.1-pic - GNU C Library: PIC archive library
 libc0.1-prof - GNU C Library: Profiling Libraries
 libc0.1-udeb - GNU C Library: Shared libraries 

Bug#489906: marked as done (glibc: tst-regex fails on hppa)

2008-07-28 Thread Debian Bug Tracking System

Your message dated Tue, 29 Jul 2008 03:17:08 +
with message-id [EMAIL PROTECTED]
and subject line Bug#489906: fixed in glibc 2.7-13
has caused the Debian Bug report #489906,
regarding glibc: tst-regex fails on hppa
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
489906: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=489906
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
---BeginMessage---
Package: libc6
Version: 2.7-12
Severity: critical

tst-regex fails on hppa, which IMHO is not something acceptable for a
release architecture.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libc6 depends on:
ii  libgcc1   1:4.3.1-2  GCC support library

libc6 recommends no packages.

-- debconf information excluded


---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.7-13

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.7-13_all.deb
  to pool/main/g/glibc/glibc-doc_2.7-13_all.deb
glibc-source_2.7-13_all.deb
  to pool/main/g/glibc/glibc-source_2.7-13_all.deb
glibc_2.7-13.diff.gz
  to pool/main/g/glibc/glibc_2.7-13.diff.gz
glibc_2.7-13.dsc
  to pool/main/g/glibc/glibc_2.7-13.dsc
libc6-dbg_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-dbg_2.7-13_amd64.deb
libc6-dev-i386_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-dev-i386_2.7-13_amd64.deb
libc6-dev_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-dev_2.7-13_amd64.deb
libc6-i386_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-i386_2.7-13_amd64.deb
libc6-pic_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-pic_2.7-13_amd64.deb
libc6-prof_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-prof_2.7-13_amd64.deb
libc6-udeb_2.7-13_amd64.udeb
  to pool/main/g/glibc/libc6-udeb_2.7-13_amd64.udeb
libc6_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6_2.7-13_amd64.deb
libnss-dns-udeb_2.7-13_amd64.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.7-13_amd64.udeb
libnss-files-udeb_2.7-13_amd64.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.7-13_amd64.udeb
locales-all_2.7-13_amd64.deb
  to pool/main/g/glibc/locales-all_2.7-13_amd64.deb
locales_2.7-13_all.deb
  to pool/main/g/glibc/locales_2.7-13_all.deb
nscd_2.7-13_amd64.deb
  to pool/main/g/glibc/nscd_2.7-13_amd64.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.8
Date: Tue, 29 Jul 2008 03:09:20 +0200
Source: glibc
Binary: glibc-doc glibc-source locales locales-all nscd libc6 libc6-dev 
libc6-dbg libc6-prof libc6-pic libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg 
libc6.1-prof libc6.1-pic libc6.1-udeb libc0.3 libc0.3-dev libc0.3-dbg 
libc0.3-prof libc0.3-pic libc0.3-udeb libc0.1 libc0.1-dev libc0.1-dbg 
libc0.1-prof libc0.1-pic libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc64 
libc6-dev-sparc64 libc6-s390x libc6-dev-s390x libc6-amd64 libc6-dev-amd64 
libc6-powerpc libc6-dev-powerpc libc6-ppc64 libc6-dev-ppc64 libc6-mipsn32 
libc6-dev-mipsn32 libc6-mips64 libc6-dev-mips64 libc0.1-i386 libc0.1-dev-i386 
libc6-sparcv9b libc6-i686 libc6-xen libc0.1-i686 libc6.1-alphaev67 
libnss-dns-udeb libnss-files-udeb
Architecture: source all amd64
Version: 2.7-13
Distribution: unstable
Urgency: low
Maintainer: Aurelien Jarno [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 glibc-source - GNU C Library: sources
 libc0.1- GNU C Library: Shared libraries
 libc0.1-dbg - GNU C Library: Libraries with debugging symbols
 libc0.1-dev - GNU C Library: Development Libraries and Header Files
 libc0.1-dev-i386 - GNU C Library: 32bit development libraries for AMD64
 libc0.1-i386 - GNU C Library: 32bit shared libraries for AMD64
 libc0.1-i686 - GNU C Library: Shared libraries [i686 optimized]
 libc0.1-pic - GNU C Library: PIC 

Bug#489357: marked as done (undefined reference to __open_2 on hurd/kfreebsd with -D_FORTIFY_SOURCE=2)

2008-07-28 Thread Debian Bug Tracking System

Your message dated Tue, 29 Jul 2008 03:17:08 +
with message-id [EMAIL PROTECTED]
and subject line Bug#489357: fixed in glibc 2.7-13
has caused the Debian Bug report #489357,
regarding undefined reference to __open_2 on hurd/kfreebsd with 
-D_FORTIFY_SOURCE=2
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
489357: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=489357
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
---BeginMessage---
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: g++-4.3
Version: 4.3.1-4
Severity: important

Good morning,

it seems as there's an older bug in (maybe) g++.
The package znc won't build on the following architectures:

hurd-i386
kfreebsd-i386
kfreebsd-amd64

It FTBFS with the following error message:

 i486-gnu-g++ -Wl,--export-dynamic -o znc String.o Csocket.o main.o
znc.o User.o IRCSock.o Client.o DCCBounce.o DCCSock.o Chan.o Nick.o
Server.o Modules.o MD5.o Buffer.o Utils.o FileUtils.o HTTPSock.o
Template.o -ldl -lssl -lcrypto
 znc.o: In function `CLockFile::TryExLock(CString const, bool)':

znc.cpp:(.text._ZN9CLockFile9TryExLockERK7CStringb[CLockFile::TryExLock(CString
const, bool)]+0x6a): undefined reference to `__open_2'

How you can see at [1] it just happens with -D_FORTIFY_SOURCE=2 -
without fortify_source it's compiling, linking and working well.
So on FORTIFY_SOURCE=2 is optimizing something in a quite bad way? :)

This is at znc the evil line which causes the FTBFS:
m_fd = open(sFile.c_str(), bRw ? O_RDWR : O_RDONLY);

You can find it in Utils.h arround line 112.


The author of the software znc Uli Schlachter has written the
testcase.cpp where you could also test it (with some notes).

As the build logs on [1] say, this bug also exists in stable and lenny,
but I haven't got a hurd/kfreebsd stable/testing buildd.


[1]: http://buildd.debian-ports.org/status/package.php?p=znc

- --
/*
Mit freundlichem Gruß / With kind regards,
Patrick Matthäi

E-Mail: [EMAIL PROTECTED]
*/

// Comment:
// Always if we think we are right,
// we were maybe wrong.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkhvOp8ACgkQ2XA5inpabMfnggCfSKSjPEHs6C5utZTC4SHRrzIe
OXoAoJPiIMa4lWzQOuGBCF/fAxgLOolR
=yrdE
-END PGP SIGNATURE-
/* Uli Schlachter (C) 2008 GPLv2 (who would fork a testcase anyway? :P) */
/* Compile this with -DFORTIFY_SOURCE=2 and at least -O1.
 * E.g. so:
 *   g++ -D_FORTIFY_SOURCE=2 -O2 -o test test.cpp
 * You will get a linker error about an undefined reference to __open_2
 * (and an undefined reference to i, ignore that one).
 *
 * __open_2() is defined in /usr/include/bits/fcntl2.h which is included by
 * fcntl.h only if _FORTIFY_SOURCE is turned on and which seems to only have an
 * effect with optimization enabled (-O1 or higher).
 *
 * I have no clue why we only get an undefined reference to __open_2() if
 * the __builtin_constant_p() in fcntl2.h / open() returns false (happens
 * here because the value of 'extern int i' is unknown).
 */

#include fcntl.h

extern int i;

int main()
{
	int fd = open(test, i ? O_RDWR : O_RDONLY);
	return 0;
}



testcase.cpp.sig
Description: Binary data
---End Message---
---BeginMessage---
Source: glibc
Source-Version: 2.7-13

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.7-13_all.deb
  to pool/main/g/glibc/glibc-doc_2.7-13_all.deb
glibc-source_2.7-13_all.deb
  to pool/main/g/glibc/glibc-source_2.7-13_all.deb
glibc_2.7-13.diff.gz
  to pool/main/g/glibc/glibc_2.7-13.diff.gz
glibc_2.7-13.dsc
  to pool/main/g/glibc/glibc_2.7-13.dsc
libc6-dbg_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-dbg_2.7-13_amd64.deb
libc6-dev-i386_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-dev-i386_2.7-13_amd64.deb
libc6-dev_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-dev_2.7-13_amd64.deb
libc6-i386_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-i386_2.7-13_amd64.deb
libc6-pic_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-pic_2.7-13_amd64.deb
libc6-prof_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6-prof_2.7-13_amd64.deb
libc6-udeb_2.7-13_amd64.udeb
  to pool/main/g/glibc/libc6-udeb_2.7-13_amd64.udeb
libc6_2.7-13_amd64.deb
  to pool/main/g/glibc/libc6_2.7-13_amd64.deb
libnss-dns-udeb_2.7-13_amd64.udeb
  to pool/main/g/glibc/libnss-dns-udeb_2.7-13_amd64.udeb
libnss-files-udeb_2.7-13_amd64.udeb
  to pool/main/g/glibc/libnss-files-udeb_2.7-13_amd64.udeb
locales-all_2.7-13_amd64.deb
  to pool/main/g/glibc/locales-all_2.7-13_amd64.deb
locales_2.7-13_all.deb
  to pool/main/g/glibc/locales_2.7-13_all.deb

Bug#488734: marked as done ([l10n:ro] glibc: Romanian translation of the po-debconf template)

2008-07-28 Thread Debian Bug Tracking System

Your message dated Tue, 29 Jul 2008 03:17:08 +
with message-id [EMAIL PROTECTED]
and subject line Bug#488734: fixed in glibc 2.7-13
has caused the Debian Bug report #488734,
regarding [l10n:ro] glibc: Romanian translation of the po-debconf template
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
488734: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=488734
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
---BeginMessage---

Package: glibc
Severity: wishlist
Tags: l10n patch

Hello,

Attached there is a Romanian translation of the po-debconf templates for this 
package.
Please add it to the package.

Thanks.
--
Regards,
EddyP
=
Imagination is more important than knowledge A.Einstein
# translation of po-debconf://kdebase.po to romanian
# Romanian translation of glibc.
# Copyright (C) 2006 THE glibc'S COPYRIGHT HOLDER
# This file is distributed under the same license as the glibc package.
#
# Stan Ioan-Eugen [EMAIL PROTECTED], 2006, 2007, 2008.
msgid 
msgstr 
Project-Id-Version: \n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2007-09-10 10:19+0200\n
PO-Revision-Date: 2008-02-17 12:48+0200\n
Last-Translator: stan ioan-eugen [EMAIL PROTECTED]\n
Language-Team: romanian [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.11.4\n

#. Type: multiselect
#. Choices
#: ../debhelper.in/locales.templates:1001
msgid All locales
msgstr Toate localele

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:1002
msgid Locales to be generated:
msgstr Localele ce vor fi generate:

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:1002
msgid 
Locales are a framework to switch between multiple languages and allow users 
to use their language, country, characters, collation order, etc.
msgstr 
Locale este un cadru de lucru pentru utilizatori, care le permite acestora 
să schimbe între mai multe limbi pentru a folosi propria lor limbă, țară, 
caractere, formatare a datei, etc.

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:1002
msgid 
Please choose which locales to generate. UTF-8 locales should be chosen by 
default, particularly for new installations. Other character sets may be 
useful for backwards compatibility with older systems and software.
msgstr 
Alegeți ce locale se generează. Localele UTF-8 ar trebui alese 
implicit, în special pentru instalări noi. Din motive de compatibilitate cu 
soft sau sisteme mai vechi, puteți alege să se genereze și alte seturi de 
caractere.

#. Type: select
#. Choices
#: ../debhelper.in/locales.templates:2001
msgid None
msgstr Nici una

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:2002
msgid Default locale for the system environment:
msgstr Locale implicite pentru sistem:

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:2002
msgid 
Many packages in Debian use locales to display text in the correct language 
for the user. You can choose a default locale for the system from the 
generated locales.
msgstr 
Multe pachete din Debian folosesc locale pentru a afișa text în limba 
corectă pentru utilizatori. Puteți alege o valoarea pentru locale, implicită 
pentru sistem, din localele generate.

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:2002
msgid 
This will select the default language for the entire system. If this system 
is a multi-user system where not all users are able to speak the default 
language, they will experience difficulties.
msgstr 
Această opțiune va stabili limba pentru tot sistemul. Dacă aveți un sistem 
multi-utilizator unde nu toți utilizatorii vorbesc limba aleasă, atunci ei 
vor întâmpina dificultăți.

#. Type: string
#. Description
#: ../debhelper.in/libc.templates:1001
msgid Services to restart for GNU libc library upgrade:
msgstr Servicii ce trebuiesc repornite la înnoirea bibliotecii GNU libc:

#. Type: string
#. Description
#: ../debhelper.in/libc.templates:1001
msgid 
Running services and programs that are using NSS need to be restarted, 
otherwise they might not be able to do lookup or authentication any more 
(for services such as ssh, this can affect your ability to login). Please 
review the following space-separated list of init.d scripts for services to 
be restarted now, and correct it if needed.
msgstr Serviciile și programele care rulează și folosesc NSS trebuiesc repornite, altfel este posibil să nu mai poată efectua autentificarea sau căutarea numelor