[glibc] branch sid updated (8808c30 -> 19a58de)

2016-10-16 Thread Samuel Thibault
This is an automated email from the git hooks/post-receive script.

sthibault pushed a change to branch sid
in repository glibc.

  from  8808c30   New changelog entry
   new  d2df8d2   Document that tg-gsync-libc contains both t/gsync-libc 
and t/libc_cleanup
   new  19a58de   hurd: fix weak references when linking in libpthread 
statically.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog   |  5 +
 .../hurd-i386/cvs-libpthread-static-weak.diff  | 22 ++
 debian/patches/hurd-i386/tg-gsync-libc.diff|  7 +++
 debian/patches/series  |  1 +
 4 files changed, 35 insertions(+)
 create mode 100644 debian/patches/hurd-i386/cvs-libpthread-static-weak.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] 01/02: Document that tg-gsync-libc contains both t/gsync-libc and t/libc_cleanup

2016-10-16 Thread Samuel Thibault
This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch sid
in repository glibc.

commit d2df8d2de1b715f5074a31d233c23c4fd717f2c1
Author: Samuel Thibault 
Date:   Mon Oct 17 00:25:59 2016 +0200

Document that tg-gsync-libc contains both t/gsync-libc and t/libc_cleanup
---
 debian/patches/hurd-i386/tg-gsync-libc.diff | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/debian/patches/hurd-i386/tg-gsync-libc.diff 
b/debian/patches/hurd-i386/tg-gsync-libc.diff
index 5a58ae4..721d030 100644
--- a/debian/patches/hurd-i386/tg-gsync-libc.diff
+++ b/debian/patches/hurd-i386/tg-gsync-libc.diff
@@ -1,3 +1,4 @@
+t/gsync-libc
 From: Agustina Arzille 
 Subject: [PATCH] Introduce gsync-based locks to glibc.
 
@@ -23,6 +24,12 @@ Subject: [PATCH] Introduce gsync-based locks to glibc.
 * sysdeps/mach/hurd/setpgid.c: (setpgid): Use gsync for synchronization.
 * sysdeps/mach/hurd/setsid.c: (setsid): Likewise.
 
+t/libc_cleanup
+From: Agustina Arzille 
+Subject: [PATCH] Use gcc's cleanup attributes
+
+cleanup routines now use gcc's cleanup attribute
+
 ---
  hurd/Makefile  |   1 +
  hurd/Versions  |   9 ++

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] 02/02: hurd: fix weak references when linking in libpthread statically.

2016-10-16 Thread Samuel Thibault
This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch sid
in repository glibc.

commit 19a58de176cba6f7bc4fa089557965064cd45fbd
Author: Samuel Thibault 
Date:   Mon Oct 17 02:33:39 2016 +0200

hurd: fix weak references when linking in libpthread statically.

hurd-i386/cvs-libpthread-static-weak.diff: New patch
---
 debian/changelog   |  5 +
 .../hurd-i386/cvs-libpthread-static-weak.diff  | 22 ++
 debian/patches/series  |  1 +
 3 files changed, 28 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 1996eef..a6a5d33 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,12 @@
 glibc (2.24-5) UNRELEASED; urgency=medium
 
+  [ Aurelien Jarno ]
   * 
 
+  [ Samuel Thibault ]
+  * hurd-i386/cvs-libpthread-static-weak.diff: New patch to fix weak
+references when linking in libpthread statically.
+
  -- Aurelien Jarno   Sun, 16 Oct 2016 13:08:40 +0200
 
 glibc (2.24-4) unstable; urgency=medium
diff --git a/debian/patches/hurd-i386/cvs-libpthread-static-weak.diff 
b/debian/patches/hurd-i386/cvs-libpthread-static-weak.diff
new file mode 100644
index 000..dbd52e7
--- /dev/null
+++ b/debian/patches/hurd-i386/cvs-libpthread-static-weak.diff
@@ -0,0 +1,22 @@
+commit 2ca42af6c07afed6a5e94e8e3c889c728869fd2f
+Author: Samuel Thibault 
+Date:   Mon Oct 17 02:30:14 2016 +0200
+
+Fix too weak references when linking libpthread statically
+
+* sysdeps/pthread/libc-lockP.h [IS_IN (libpthread)]: Do not make __pthread
+symbols weak.
+
+diff --git a/libpthread/sysdeps/pthread/libc-lockP.h 
b/libpthread/sysdeps/pthread/libc-lockP.h
+index 2631e0c..c04881d 100644
+--- a/libpthread/sysdeps/pthread/libc-lockP.h
 b/libpthread/sysdeps/pthread/libc-lockP.h
+@@ -106,7 +106,7 @@ extern int __pthread_atfork (void (*__prepare) (void),
+ 
+ /* Make the pthread functions weak so that we can elide them from
+single-threaded processes.  */
+-#ifndef __NO_WEAK_PTHREAD_ALIASES
++#if !defined(__NO_WEAK_PTHREAD_ALIASES) && !IS_IN (libpthread)
+ # ifdef weak_extern
+ weak_extern (__pthread_mutex_init)
+ weak_extern (__pthread_mutex_destroy)
diff --git a/debian/patches/series b/debian/patches/series
index 819834e..7486fb8 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -133,6 +133,7 @@ hurd-i386/cvs-adjtime-NULL.diff
 hurd-i386/tg-pthread_deps.diff
 hurd-i386/cvs-mallocfork.diff
 hurd-i386/cvs-setcancelstate.diff
+hurd-i386/cvs-libpthread-static-weak.diff
 
 i386/local-biarch.diff
 i386/local-cmov.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



glibc_2.24-4_source.changes ACCEPTED into unstable

2016-10-16 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Oct 2016 13:06:08 +0200
Source: glibc
Binary: libc-bin libc-dev-bin libc-l10n glibc-doc glibc-source locales 
locales-all nscd multiarch-support libc6 libc6-dev libc6-dbg libc6-pic 
libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg libc6.1-pic libc6.1-udeb libc0.3 
libc0.3-dev libc0.3-dbg libc0.3-pic libc0.3-udeb libc0.1 libc0.1-dev 
libc0.1-dbg libc0.1-pic libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc 
libc6-dev-sparc libc6-sparc64 libc6-dev-sparc64 libc6-s390 libc6-dev-s390 
libc6-amd64 libc6-dev-amd64 libc6-powerpc libc6-dev-powerpc libc6-ppc64 
libc6-dev-ppc64 libc6-mips32 libc6-dev-mips32 libc6-mipsn32 libc6-dev-mipsn32 
libc6-mips64 libc6-dev-mips64 libc0.1-i386 libc0.1-dev-i386 libc6-x32 
libc6-dev-x32 libc6-xen libc0.3-xen libc6.1-alphaev67 libc0.1-i686 libc0.3-i686 
libc6-i686
Architecture: source
Version: 2.24-4
Distribution: unstable
Urgency: medium
Maintainer: GNU Libc Maintainers 
Changed-By: Aurelien Jarno 
Description:
 glibc-doc  - GNU C Library: Documentation
 glibc-source - GNU C Library: sources
 libc-bin   - GNU C Library: Binaries
 libc-dev-bin - GNU C Library: Development binaries
 libc-l10n  - GNU C Library: localization files
 libc0.1- GNU C Library: Shared libraries
 libc0.1-dbg - GNU C Library: detached 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 - transitional dummy package
 libc0.1-pic - GNU C Library: PIC archive library
 libc0.1-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libc0.3- GNU C Library: Shared libraries
 libc0.3-dbg - GNU C Library: detached debugging symbols
 libc0.3-dev - GNU C Library: Development Libraries and Header Files
 libc0.3-i686 - transitional dummy package
 libc0.3-pic - GNU C Library: PIC archive library
 libc0.3-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libc0.3-xen - GNU C Library: Shared libraries [Xen version]
 libc6  - GNU C Library: Shared libraries
 libc6-amd64 - GNU C Library: 64bit Shared libraries for AMD64
 libc6-dbg  - GNU C Library: detached debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-dev-amd64 - GNU C Library: 64bit Development Libraries for AMD64
 libc6-dev-i386 - GNU C Library: 32-bit development libraries for AMD64
 libc6-dev-mips32 - GNU C Library: o32 Development Libraries for MIPS
 libc6-dev-mips64 - GNU C Library: 64bit Development Libraries for MIPS64
 libc6-dev-mipsn32 - GNU C Library: n32 Development Libraries for MIPS64
 libc6-dev-powerpc - GNU C Library: 32bit powerpc development libraries for 
ppc64
 libc6-dev-ppc64 - GNU C Library: 64bit Development Libraries for PowerPC64
 libc6-dev-s390 - GNU C Library: 32bit Development Libraries for IBM zSeries
 libc6-dev-sparc - GNU C Library: 32bit Development Libraries for SPARC
 libc6-dev-sparc64 - GNU C Library: 64bit Development Libraries for UltraSPARC
 libc6-dev-x32 - GNU C Library: X32 ABI Development Libraries for AMD64
 libc6-i386 - GNU C Library: 32-bit shared libraries for AMD64
 libc6-i686 - transitional dummy package
 libc6-mips32 - GNU C Library: o32 Shared libraries for MIPS
 libc6-mips64 - GNU C Library: 64bit Shared libraries for MIPS64
 libc6-mipsn32 - GNU C Library: n32 Shared libraries for MIPS64
 libc6-pic  - GNU C Library: PIC archive library
 libc6-powerpc - GNU C Library: 32bit powerpc shared libraries for ppc64
 libc6-ppc64 - GNU C Library: 64bit Shared libraries for PowerPC64
 libc6-s390 - GNU C Library: 32bit Shared libraries for IBM zSeries
 libc6-sparc - GNU C Library: 32bit Shared libraries for SPARC
 libc6-sparc64 - GNU C Library: 64bit Shared libraries for UltraSPARC
 libc6-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libc6-x32  - GNU C Library: X32 ABI Shared libraries for AMD64
 libc6-xen  - GNU C Library: Shared libraries [Xen version]
 libc6.1- GNU C Library: Shared libraries
 libc6.1-alphaev67 - GNU C Library: Shared libraries (EV67 optimized)
 libc6.1-dbg - GNU C Library: detached debugging symbols
 libc6.1-dev - GNU C Library: Development Libraries and Header Files
 libc6.1-pic - GNU C Library: PIC archive library
 libc6.1-udeb - GNU C Library: Shared libraries - udeb (udeb)
 locales- GNU C Library: National Language (locale) data [support]
 locales-all - GNU C Library: Precompiled locale data
 multiarch-support - Transitional package to ensure multiarch compatibility
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 767707 793649 838574 839742 840199 840901
Changes:
 glibc (2.24-4) unstable; urgency=medium
 .
   [ Samuel Thibault ]
   * hurd-i386/tg-hurdsig-SA_SIGINFO.diff: Fix preemptors and thus
 hurd_safe_*.
   * hurd-i386/tg-hurdsig-fixes.diff: Fix uninitialized value.
   * 

Processing of glibc_2.24-4_source.changes

2016-10-16 Thread Debian FTP Masters
glibc_2.24-4_source.changes uploaded successfully to localhost
along with the files:
  glibc_2.24-4.dsc
  glibc_2.24-4.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)



Bug#838574: marked as done (glibc: FTBFS on hppa - nptl/tst-stack4 fails)

2016-10-16 Thread Debian Bug Tracking System
Your message dated Sun, 16 Oct 2016 11:23:10 +
with message-id 
and subject line Bug#838574: fixed in glibc 2.24-4
has caused the Debian Bug report #838574,
regarding glibc: FTBFS on hppa - nptl/tst-stack4 fails
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 ow...@bugs.debian.org
immediately.)


-- 
838574: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=838574
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: glibc
Version: 2.24-3
Severity: normal
Tags: patch

Dear Maintainer,

In the previous change which fixed various cancellation tests on hppa, I
removed nptl/tst-stack4 from the expected fail list.  Probably, it should
be added back to the xfail list.  However, with the attached change, the
test does not fail on my test system.  It optimizes the atomic compare
and exchange code on hppa to avoid conditional branches.

The patch has been submitted upstream:
https://sourceware.org/ml/libc-alpha/2016-09/msg00456.html

Regards,
Dave Anglin

-- System Information:
Debian Release: stretch/sid
  APT prefers buildd-unstable
  APT policy: (500, 'buildd-unstable'), (500, 'unstable')
Architecture: hppa (parisc64)

Kernel: Linux 4.7.4+ (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to en_US.utf8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)
2016-09-22  John David Anglin  

	* sysdeps/unix/sysv/linux/hppa/atomic-machine.h: Don't include
	abort-instr.h.
	(EFAULT): Remove conditional define.
	(ENOSYS): Likewise.
	(atomic_compare_and_exchange_val_acq): Use instruction nullification
	instead of conditional branch instructions.

Index: glibc-2.23/sysdeps/unix/sysv/linux/hppa/atomic-machine.h
===
--- glibc-2.23.orig/sysdeps/unix/sysv/linux/hppa/atomic-machine.h
+++ glibc-2.23/sysdeps/unix/sysv/linux/hppa/atomic-machine.h
@@ -17,13 +17,6 @@
.  */
 
 #include  /*  Required for type definitions e.g. uint8_t.  */
-#include  /*  Required for ABORT_INSTRUCTIUON.  */
-
-/* We need EFAULT, ENONSYS */
-#if !defined EFAULT && !defined ENOSYS
-#define EFAULT	14
-#define ENOSYS	251
-#endif
 
 #ifndef _ATOMIC_MACHINE_H
 #define _ATOMIC_MACHINE_H	1
@@ -62,7 +55,7 @@ typedef uintmax_t uatomic_max_t;
 #define _ASM_EDEADLOCK "-45"
 
 /* The only basic operation needed is compare and exchange.  The mem
-   pointer must be word aligned.  */
+   pointer must be word aligned.  We no longer loop on deadlock.  */
 #define atomic_compare_and_exchange_val_acq(mem, newval, oldval)	\
   ({	\
  register long lws_errno asm("r21");\
@@ -74,20 +67,15 @@ typedef uintmax_t uatomic_max_t;
 	"0:	\n\t"			\
 	"ble	" _LWS "(%%sr2, %%r0)		\n\t"			\
 	"ldi	" _LWS_CAS ", %%r20		\n\t"			\
-	"ldi	" _ASM_EAGAIN ", %%r20		\n\t"			\
-	"cmpb,=,n %%r20, %%r21, 0b		\n\t"			\
-	"nop	\n\t"			\
-	"ldi	" _ASM_EDEADLOCK ", %%r20	\n\t"			\
-	"cmpb,=,n %%r20, %%r21, 0b		\n\t"			\
-	"nop	\n\t"			\
+	"cmpiclr,<> " _ASM_EAGAIN ", %%r21, %%r0\n\t"			\
+	"b,n 0b	\n\t"			\
+	"cmpclr,= %%r0, %%r21, %%r0		\n\t"			\
+	"iitlbp %%r0,(%%sr0, %%r0)		\n\t"			\
 	: "=r" (lws_ret), "=r" (lws_errno)\
 	: "r" (lws_mem), "r" (lws_old), "r" (lws_new)			\
 	: _LWS_CLOBBER			\
  );	\
 	\
- if (lws_errno == -EFAULT || lws_errno == -ENOSYS)			\
-	ABORT_INSTRUCTION;		\
-	\
  (__typeof (oldval)) lws_ret;	\
})
 
--- End Message ---
--- Begin Message ---
Source: glibc
Source-Version: 2.24-4

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.

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 838...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aurelien Jarno  (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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Oct 2016 13:06:08 +0200
Source: glibc
Binary: libc-bin libc-dev-bin libc-l10n glibc-doc glibc-source locales 
locales-all nscd multiarch-support libc6 libc6-dev libc6-dbg libc6-pic 
libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg libc6.1-pic libc6.1-udeb libc0.3 

Bug#840199: marked as done (libc6: setlocale(LC_ALL, "C.UTF-8") used to work in jessie)

2016-10-16 Thread Debian Bug Tracking System
Your message dated Sun, 16 Oct 2016 11:23:10 +
with message-id 
and subject line Bug#840199: fixed in glibc 2.24-4
has caused the Debian Bug report #840199,
regarding libc6: setlocale(LC_ALL, "C.UTF-8") used to work in jessie
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 ow...@bugs.debian.org
immediately.)


-- 
840199: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=840199
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libc6
Version: 2.24-3
Severity: normal

Hi,

This used to work in jessie:

export LC_ALL="C.UTF-8"
echo "ça va" | iconv -f UTF-8 -t "ascii//TRANSLIT"
> ca va

Now it doesn't:
> ?a va

Jérémy


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

Kernel: Linux 4.6.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libc6 depends on:
ii  libgcc1  1:6.2.0-5

libc6 recommends no packages.

Versions of packages libc6 suggests:
ii  debconf [debconf-2.0]  1.5.59
pn  glibc-doc  
ii  libc-l10n  2.24-3
ii  locales2.24-3

-- debconf information excluded
--- End Message ---
--- Begin Message ---
Source: glibc
Source-Version: 2.24-4

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.

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 840...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aurelien Jarno  (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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Oct 2016 13:06:08 +0200
Source: glibc
Binary: libc-bin libc-dev-bin libc-l10n glibc-doc glibc-source locales 
locales-all nscd multiarch-support libc6 libc6-dev libc6-dbg libc6-pic 
libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg libc6.1-pic libc6.1-udeb libc0.3 
libc0.3-dev libc0.3-dbg libc0.3-pic libc0.3-udeb libc0.1 libc0.1-dev 
libc0.1-dbg libc0.1-pic libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc 
libc6-dev-sparc libc6-sparc64 libc6-dev-sparc64 libc6-s390 libc6-dev-s390 
libc6-amd64 libc6-dev-amd64 libc6-powerpc libc6-dev-powerpc libc6-ppc64 
libc6-dev-ppc64 libc6-mips32 libc6-dev-mips32 libc6-mipsn32 libc6-dev-mipsn32 
libc6-mips64 libc6-dev-mips64 libc0.1-i386 libc0.1-dev-i386 libc6-x32 
libc6-dev-x32 libc6-xen libc0.3-xen libc6.1-alphaev67 libc0.1-i686 libc0.3-i686 
libc6-i686
Architecture: source
Version: 2.24-4
Distribution: unstable
Urgency: medium
Maintainer: GNU Libc Maintainers 
Changed-By: Aurelien Jarno 
Description:
 glibc-doc  - GNU C Library: Documentation
 glibc-source - GNU C Library: sources
 libc-bin   - GNU C Library: Binaries
 libc-dev-bin - GNU C Library: Development binaries
 libc-l10n  - GNU C Library: localization files
 libc0.1- GNU C Library: Shared libraries
 libc0.1-dbg - GNU C Library: detached 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 - transitional dummy package
 libc0.1-pic - GNU C Library: PIC archive library
 libc0.1-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libc0.3- GNU C Library: Shared libraries
 libc0.3-dbg - GNU C Library: detached debugging symbols
 libc0.3-dev - GNU C Library: Development Libraries and Header Files
 libc0.3-i686 - transitional dummy package
 libc0.3-pic - GNU C Library: PIC archive library
 libc0.3-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libc0.3-xen - GNU C Library: Shared libraries [Xen version]
 libc6  - GNU C Library: Shared libraries
 libc6-amd64 - GNU C Library: 64bit Shared libraries for AMD64
 libc6-dbg  - GNU C Library: detached debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-dev-amd64 - GNU C Library: 64bit Development Libraries for AMD64
 libc6-dev-i386 - GNU C 

Bug#840901: marked as done (locales: Claims that locales-all is installed, even if it is not)

2016-10-16 Thread Debian Bug Tracking System
Your message dated Sun, 16 Oct 2016 11:23:10 +
with message-id 
and subject line Bug#840901: fixed in glibc 2.24-4
has caused the Debian Bug report #840901,
regarding locales: Claims that locales-all is installed, even if it is not
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 ow...@bugs.debian.org
immediately.)


-- 
840901: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=840901
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: locales
Version: 2.24-3
Severity: minor


  [179]/home/robert> sudo dpkg-reconfigure locales
  locales-all installed, skipping locales generation
  ^^

  [180]/home/robert> dpkg-query -s locales-all  
  
  Package: locales-all
  Status: install ok not-installed
 ^
  Priority: extra
  Section: localization
  Architecture: i386

(Most probably I marked locales-all for installation in dselect
 years ago, and never used `apt-get dselect-upgrade' afterwards)

Regards,
robert


-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (200, 'testing')
Architecture: i386 (i686)

Kernel: Linux 4.7.0-1-686-pae (SMP w/1 CPU core)
Locale: LANG=pl_PL.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages locales depends on:
ii  debconf [debconf-2.0]  1.5.59
ii  libc-bin   2.24-3
ii  libc-l10n  2.24-3

locales recommends no packages.

locales suggests no packages.

-- debconf information excluded
--- End Message ---
--- Begin Message ---
Source: glibc
Source-Version: 2.24-4

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.

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 840...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aurelien Jarno  (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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Oct 2016 13:06:08 +0200
Source: glibc
Binary: libc-bin libc-dev-bin libc-l10n glibc-doc glibc-source locales 
locales-all nscd multiarch-support libc6 libc6-dev libc6-dbg libc6-pic 
libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg libc6.1-pic libc6.1-udeb libc0.3 
libc0.3-dev libc0.3-dbg libc0.3-pic libc0.3-udeb libc0.1 libc0.1-dev 
libc0.1-dbg libc0.1-pic libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc 
libc6-dev-sparc libc6-sparc64 libc6-dev-sparc64 libc6-s390 libc6-dev-s390 
libc6-amd64 libc6-dev-amd64 libc6-powerpc libc6-dev-powerpc libc6-ppc64 
libc6-dev-ppc64 libc6-mips32 libc6-dev-mips32 libc6-mipsn32 libc6-dev-mipsn32 
libc6-mips64 libc6-dev-mips64 libc0.1-i386 libc0.1-dev-i386 libc6-x32 
libc6-dev-x32 libc6-xen libc0.3-xen libc6.1-alphaev67 libc0.1-i686 libc0.3-i686 
libc6-i686
Architecture: source
Version: 2.24-4
Distribution: unstable
Urgency: medium
Maintainer: GNU Libc Maintainers 
Changed-By: Aurelien Jarno 
Description:
 glibc-doc  - GNU C Library: Documentation
 glibc-source - GNU C Library: sources
 libc-bin   - GNU C Library: Binaries
 libc-dev-bin - GNU C Library: Development binaries
 libc-l10n  - GNU C Library: localization files
 libc0.1- GNU C Library: Shared libraries
 libc0.1-dbg - GNU C Library: detached 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 - transitional dummy package
 libc0.1-pic - GNU C Library: PIC archive library
 libc0.1-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libc0.3- GNU C Library: Shared libraries
 libc0.3-dbg - GNU C Library: detached debugging symbols
 libc0.3-dev - GNU C Library: Development Libraries and Header Files
 libc0.3-i686 - transitional dummy package
 libc0.3-pic - GNU C Library: PIC archive library
 libc0.3-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libc0.3-xen - GNU C Library: Shared libraries [Xen version]
 libc6  

Bug#839742: marked as done (hurd: system() is broken after dlclose() of SO which links to curl-gnutls)

2016-10-16 Thread Debian Bug Tracking System
Your message dated Sun, 16 Oct 2016 11:23:10 +
with message-id 
and subject line Bug#839742: fixed in glibc 2.24-4
has caused the Debian Bug report #839742,
regarding hurd: system() is broken after dlclose() of SO which links to 
curl-gnutls
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 ow...@bugs.debian.org
immediately.)


-- 
839742: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=839742
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libc0.3
Version: 2.24-3
Severity: normal
Control: affects -1 cupt

[ Not sure if it's libc or kernel or something else, please reassign if
needed. ]

Dear Maintainer,

Thank you for maintaining Glibc.

On Hurd, if one loads and unloads the shared object which was linked to
curl-gnutls library, system() stops to work. Namely, it then returns 11
without executing a command passed.

A test case is attached. To run:
1) install cmake and libcurl4-gnutls-dev;
2) unpack attached .tar
3) $ ./run.sh


-- System Information:
Debian Release: 8.0
Architecture: amd64 (x86_64)

Kernel: Linux 4.3.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fi_FI.UTF-8, LC_CTYPE=fi_FI.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)


dlclose.tar
Description: Unix tar archive
--- End Message ---
--- Begin Message ---
Source: glibc
Source-Version: 2.24-4

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.

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 839...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aurelien Jarno  (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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Oct 2016 13:06:08 +0200
Source: glibc
Binary: libc-bin libc-dev-bin libc-l10n glibc-doc glibc-source locales 
locales-all nscd multiarch-support libc6 libc6-dev libc6-dbg libc6-pic 
libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg libc6.1-pic libc6.1-udeb libc0.3 
libc0.3-dev libc0.3-dbg libc0.3-pic libc0.3-udeb libc0.1 libc0.1-dev 
libc0.1-dbg libc0.1-pic libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc 
libc6-dev-sparc libc6-sparc64 libc6-dev-sparc64 libc6-s390 libc6-dev-s390 
libc6-amd64 libc6-dev-amd64 libc6-powerpc libc6-dev-powerpc libc6-ppc64 
libc6-dev-ppc64 libc6-mips32 libc6-dev-mips32 libc6-mipsn32 libc6-dev-mipsn32 
libc6-mips64 libc6-dev-mips64 libc0.1-i386 libc0.1-dev-i386 libc6-x32 
libc6-dev-x32 libc6-xen libc0.3-xen libc6.1-alphaev67 libc0.1-i686 libc0.3-i686 
libc6-i686
Architecture: source
Version: 2.24-4
Distribution: unstable
Urgency: medium
Maintainer: GNU Libc Maintainers 
Changed-By: Aurelien Jarno 
Description:
 glibc-doc  - GNU C Library: Documentation
 glibc-source - GNU C Library: sources
 libc-bin   - GNU C Library: Binaries
 libc-dev-bin - GNU C Library: Development binaries
 libc-l10n  - GNU C Library: localization files
 libc0.1- GNU C Library: Shared libraries
 libc0.1-dbg - GNU C Library: detached 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 - transitional dummy package
 libc0.1-pic - GNU C Library: PIC archive library
 libc0.1-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libc0.3- GNU C Library: Shared libraries
 libc0.3-dbg - GNU C Library: detached debugging symbols
 libc0.3-dev - GNU C Library: Development Libraries and Header Files
 libc0.3-i686 - transitional dummy package
 libc0.3-pic - GNU C Library: PIC archive library
 libc0.3-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libc0.3-xen - GNU C Library: Shared libraries [Xen version]
 libc6  - GNU C Library: Shared libraries
 libc6-amd64 - GNU C Library: 64bit Shared libraries for AMD64
 libc6-dbg  - GNU C Library: detached debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-dev-amd64 - GNU C Library: 64bit Development Libraries for AMD64
 libc6-dev-i386 - GNU C Library: 32-bit development libraries for 

Bug#767707: marked as done (nscd: Please include .service and .tmpfiles file)

2016-10-16 Thread Debian Bug Tracking System
Your message dated Sun, 16 Oct 2016 11:23:10 +
with message-id 
and subject line Bug#767707: fixed in glibc 2.24-4
has caused the Debian Bug report #767707,
regarding nscd: Please include .service and .tmpfiles file
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 ow...@bugs.debian.org
immediately.)


-- 
767707: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=767707
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: nscd
Version: 2.19-12
Severity: wishlist
User: pkg-systemd-maintain...@lists.alioth.debian.org
Usertag: systemd-units

Hello,

Upstream is providing both a .service and .tmpfiles file for nscd.

Could you please ship them in the nscd package? It would probably
require to call dh_systemd_* helpers in the proper sequence[0] during
the build.

Cheers,

Laurent Bigonville


[0] https://wiki.debian.org/systemd/Packaging
--- End Message ---
--- Begin Message ---
Source: glibc
Source-Version: 2.24-4

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.

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 767...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aurelien Jarno  (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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Oct 2016 13:06:08 +0200
Source: glibc
Binary: libc-bin libc-dev-bin libc-l10n glibc-doc glibc-source locales 
locales-all nscd multiarch-support libc6 libc6-dev libc6-dbg libc6-pic 
libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg libc6.1-pic libc6.1-udeb libc0.3 
libc0.3-dev libc0.3-dbg libc0.3-pic libc0.3-udeb libc0.1 libc0.1-dev 
libc0.1-dbg libc0.1-pic libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc 
libc6-dev-sparc libc6-sparc64 libc6-dev-sparc64 libc6-s390 libc6-dev-s390 
libc6-amd64 libc6-dev-amd64 libc6-powerpc libc6-dev-powerpc libc6-ppc64 
libc6-dev-ppc64 libc6-mips32 libc6-dev-mips32 libc6-mipsn32 libc6-dev-mipsn32 
libc6-mips64 libc6-dev-mips64 libc0.1-i386 libc0.1-dev-i386 libc6-x32 
libc6-dev-x32 libc6-xen libc0.3-xen libc6.1-alphaev67 libc0.1-i686 libc0.3-i686 
libc6-i686
Architecture: source
Version: 2.24-4
Distribution: unstable
Urgency: medium
Maintainer: GNU Libc Maintainers 
Changed-By: Aurelien Jarno 
Description:
 glibc-doc  - GNU C Library: Documentation
 glibc-source - GNU C Library: sources
 libc-bin   - GNU C Library: Binaries
 libc-dev-bin - GNU C Library: Development binaries
 libc-l10n  - GNU C Library: localization files
 libc0.1- GNU C Library: Shared libraries
 libc0.1-dbg - GNU C Library: detached 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 - transitional dummy package
 libc0.1-pic - GNU C Library: PIC archive library
 libc0.1-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libc0.3- GNU C Library: Shared libraries
 libc0.3-dbg - GNU C Library: detached debugging symbols
 libc0.3-dev - GNU C Library: Development Libraries and Header Files
 libc0.3-i686 - transitional dummy package
 libc0.3-pic - GNU C Library: PIC archive library
 libc0.3-udeb - GNU C Library: Shared libraries - udeb (udeb)
 libc0.3-xen - GNU C Library: Shared libraries [Xen version]
 libc6  - GNU C Library: Shared libraries
 libc6-amd64 - GNU C Library: 64bit Shared libraries for AMD64
 libc6-dbg  - GNU C Library: detached debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files
 libc6-dev-amd64 - GNU C Library: 64bit Development Libraries for AMD64
 libc6-dev-i386 - GNU C Library: 32-bit development libraries for AMD64
 libc6-dev-mips32 - GNU C Library: o32 Development Libraries for MIPS
 libc6-dev-mips64 - GNU C Library: 64bit Development Libraries for MIPS64
 libc6-dev-mipsn32 - GNU C Library: n32 Development Libraries for MIPS64
 libc6-dev-powerpc - GNU C Library: 32bit powerpc development libraries for 
ppc64
 libc6-dev-ppc64 - GNU C Library: 64bit Development Libraries for PowerPC64
 libc6-dev-s390 - 

Bug#793649: marked as done (nscd does not invalidate all caches (esp. netgroup))

2016-10-16 Thread Debian Bug Tracking System
Your message dated Sun, 16 Oct 2016 11:23:10 +
with message-id 
and subject line Bug#793649: fixed in glibc 2.24-4
has caused the Debian Bug report #793649,
regarding nscd does not invalidate all caches (esp. netgroup)
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 ow...@bugs.debian.org
immediately.)


-- 
793649: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=793649
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: nscd
Version: 2.19-18
Severity: important
Tags: patch
User: debian-...@lists.debian.org
Usertags: debian-edu
X-Debbugs-Cc: debian-...@lists.debian.org

Dear maintainer(s) of nscd,

these days I upgraded a Debian Edu mainserver from squeeze to Debian jessie.

I really spent several hours with NFSv4 problems due to a  
non-invalidated netgroup cache on reboot. Seemingly, the nscd cache of  
nscd in Debian squeeze is incompatible with the nscd cache of nscd in  
Debian jessie. So checking if a host is in a given netgroup always  
fails if nscd is running.


Steps to reproduce (you don't wanna do this, as it takes hours):

  Install a Debian Edu squeeze server
  Upgrade it to Debian (Edu) jessie
  Add a new test-host to the workstation-hosts netgroup (in LDAP)
  Check if the test-host is in the netgroup:

  $ innetgroup -h test-host.intern workstation-hosts && echo TRUE ||  
echo FALSE

  FALSE
  Result: test-host.intern is not in the workstation-hosts netgroup

  Then stop nscd and test again...
  $ innetgroup -h test-host.intern workstation-hosts && echo TRUE ||  
echo FALSE

  TRUE
  Result: test-host.intern is in the workstation-hosts netgroup

  Then stop nscd and remove all files in /var/cache/nscd/
  Start nscd again and test again...
  $ innetgroup -h test-host.intern workstation-hosts && echo TRUE ||  
echo FALSE

  TRUE
  Result: test-host.intern is in the workstation-hosts netgroup, now  
reported via nscd



In /etc/init.d/nscd, we find this:

"""
invalidate_cache()
{
for table in passwd group hosts ; do
$DAEMON --invalidate $table
done
}
"""

This should be either replaced by

"""
invalidate_cache()
{
	for table in $(grep -P "^[\ \t]+enable-cache[\ \t]+\w+[\ \t]+yes$"  
/etc/nscd.conf | awk '{ print $2 }'); do

$DAEMON --invalidate $table
done
}
"""

or by
invalidate_cache()
{
rm -f /var/cache/nscd/*
}

As this issue will be bugging people upgrading a Debian Edu main  
server from squeeze to wheezy/jessie, the Debian Edu team will highly  
appreciate it to such a change as proposed above enter Debian jessie.


light+love,
Mike

--

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgpHo3F7zLGVG.pgp
Description: Digitale PGP-Signatur
--- End Message ---
--- Begin Message ---
Source: glibc
Source-Version: 2.24-4

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.

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 793...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aurelien Jarno  (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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 Oct 2016 13:06:08 +0200
Source: glibc
Binary: libc-bin libc-dev-bin libc-l10n glibc-doc glibc-source locales 
locales-all nscd multiarch-support libc6 libc6-dev libc6-dbg libc6-pic 
libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg libc6.1-pic libc6.1-udeb libc0.3 
libc0.3-dev libc0.3-dbg libc0.3-pic libc0.3-udeb libc0.1 libc0.1-dev 
libc0.1-dbg libc0.1-pic libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc 
libc6-dev-sparc libc6-sparc64 libc6-dev-sparc64 libc6-s390 libc6-dev-s390 
libc6-amd64 libc6-dev-amd64 libc6-powerpc libc6-dev-powerpc libc6-ppc64 
libc6-dev-ppc64 libc6-mips32 libc6-dev-mips32 libc6-mipsn32 libc6-dev-mipsn32 
libc6-mips64 libc6-dev-mips64 libc0.1-i386 libc0.1-dev-i386 libc6-x32 
libc6-dev-x32 libc6-xen libc0.3-xen libc6.1-alphaev67 libc0.1-i686 libc0.3-i686 
libc6-i686

[glibc] annotated tag debian/2.24-4 created (now 13ad2b4)

2016-10-16 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a change to annotated tag debian/2.24-4
in repository glibc.

at  13ad2b4   (tag)
   tagging  dd9e78dcc2723497ab7a43d83e3c50027dc80a46 (commit)
  replaces  debian/2.24-3
 tagged by  Aurelien Jarno
on  Sun Oct 16 13:06:12 2016 +0200

- Log -
tagging package glibc version debian/2.24-4
-BEGIN PGP SIGNATURE-

iQIcBAABCgAGBQJYA18kAAoJELqceAYd3YybO4wQAJEiy+5hXFr6N7Rzu9UtHn9U
Q/CDnx2ozeI2GJ1td9Sf7BLlTrW9m3RZr1A43yPQybEMVqbaBbuqHiPMPpPFk2WO
/nZ97Cvtzx4c0aL1RNEWKkBam6UQPjrRVW5fToFQ5j4/b1W1H3BXLKmCSTLXo/jI
YLVMVnC9Pe/MXdbfllbPh5BiDIUj3gQ/0w9vkFA+fYfne+spJ/ICAw6H1gbN4S6d
+n+OVsnC6sitLPDsCI8/M0xtLecKjJSImP380FweLTrg0Wo/7O2p1jKpmI9vDR4u
QO5E7kSj8F909ksGcLKb6rkpyR0gUMUaxy2rwzndFU4Ix8emJTl517hM57utUJzS
a192T9BK4GQuMKrbKhMgVc8oUJbb29qGp6wqxzh8W2FVvB81jDFJSMxMFXoNB8Z1
7Tyn7/ZKsGV1F7mwqZzZUWJDEqIpEakG8zF+wwwlvraZgLaPdmk9PEJis/tVP5Ig
XFYgFCMBTPxJgDd7zO6qFdeqA6ZUntP9rT1WMkDG8EtbzWRHlcyZTmBXf0nZ1MXF
m4mJS6WJEveSm49992aoXBpWCE0JtOx9zdGz+IGKYSRqV9lcQgVivqPbDJMjl7o8
szek8oNkv7TwQmh/5wy8OChIiYTXdrE5RQyKmHZhrrPuW+X+nG4yryLU7elYtjHz
xZGGCZuDwrmqU+7ZPAdt
=JfDY
-END PGP SIGNATURE-

Adam Conrad (2):
  Fix up git update target to work more reliably
  Spell "path" correctly.

Aurelien Jarno (12):
  New changelog entry
  debian/patches/hppa/cvs-atomic-machine.diff: New patch from upstream to 
fix nptl/tst-stack4 on hppa.  Closes: #838574.
  debian/sysdeps/linux.mk: Install both kernel and library headers symlinks 
using a singlee for loop.
  debian/sysdeps/linux.mk: Also install a /usr/include//arch 
symlink if it exists, needed for the tilegx architecture.
  debian/control.in/main: add a dependency on lsb-base (>= 3.0-6) for ncsd.
  debian/debhelper.in/nscd.init: also invalidate services and netgroup 
during reload.
  debian/control.in/main, debian/rules.d/debhelper.mk: install nscd systemd 
files. Closes: #767707.
  debian/patches/localedata/locale-C.diff: switch back transliterations to 
combining.  Closes: #840199.
  debian/debhelper.in/locales.postinst: improve locales-all detection. 
Closes: #840901.
  debian/patches/i386/local-cpuid-level2.diff: replace by upstream patch 
cvs-cpuid-level2.diff.
  debian/control.in/main: slightly relax the build-dependency on g++-6 to 
make lintian happy.
  releasing package glibc version 2.24-4

Samuel Thibault (19):
  testsuite-xfail-debian.mk: Clear fixed hurd-i386 test.
  hurd-i386/tg-hurdsig-SA_SIGINFO.diff: Fix preemptors
  hurd-i386/tg-hurdsig-fixes.diff: Fix uninitialized value
  hurd-i386/submitted-exec_filename.diff: Add missing include.
  hurd-i386/submitted-exec_filename.diff: fix const warning
  hurd-i386/cvs-mallocfork.diff: New patch to fix concurrency
  hurd-i386/cvs-libpthread.diff: Update to latest upstream version.
  Drop old patch
  control: Drop hurd dependency from libc-bin
  hurd-i386/unsubmitted-libc_alloca_cutoff.diff: Rename to 
hurd-i386/tg-allocalim.diff.
  hurd-i386/unsubmitted-timer_routines.diff: Rename to 
hurd-i386/tg-timer_routines.diff.
  Use a git command to build cvs-libpthread.diff
  Update cvs-libpthread.diff again to get atfork+dlclose fix
  Drop unused variable
  Fix warning by adding missing includes
  Add missing include to fix warning
  hurd: Restore malloc_hook for now for mach-defpager
  refresh
  hurd-i386/cvs-setcancelstate.diff: work around a bug with newer 
libpthread snapshot.

---

This annotated tag includes the following new commits:

   new  72c4008   debian/control.in/main: slightly relax the 
build-dependency on g++-6 to make lintian happy.
   new  dd9e78d   releasing package glibc version 2.24-4

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] branch sid updated (058cf72 -> dd9e78d)

2016-10-16 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a change to branch sid
in repository glibc.

  from  058cf72   debian/patches/i386/local-cpuid-level2.diff: replace by 
upstream patch cvs-cpuid-level2.diff.
   new  72c4008   debian/control.in/main: slightly relax the 
build-dependency on g++-6 to make lintian happy.
   new  dd9e78d   releasing package glibc version 2.24-4

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog   | 6 --
 debian/control | 2 +-
 debian/control.in/main | 2 +-
 3 files changed, 6 insertions(+), 4 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] branch sid updated (dd9e78d -> 8808c30)

2016-10-16 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a change to branch sid
in repository glibc.

  from  dd9e78d   releasing package glibc version 2.24-4
   new  8808c30   New changelog entry

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] 01/01: New changelog entry

2016-10-16 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a commit to branch sid
in repository glibc.

commit 8808c30d71a2d39bd179bbda98f5284877871c48
Author: Aurelien Jarno 
Date:   Sun Oct 16 13:08:43 2016 +0200

New changelog entry
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index e3c81ff..1996eef 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+glibc (2.24-5) UNRELEASED; urgency=medium
+
+  * 
+
+ -- Aurelien Jarno   Sun, 16 Oct 2016 13:08:40 +0200
+
 glibc (2.24-4) unstable; urgency=medium
 
   [ Samuel Thibault ]

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] 02/02: releasing package glibc version 2.24-4

2016-10-16 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a commit to branch sid
in repository glibc.

commit dd9e78dcc2723497ab7a43d83e3c50027dc80a46
Author: Aurelien Jarno 
Date:   Sun Oct 16 13:06:12 2016 +0200

releasing package glibc version 2.24-4
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 5201ad8..e3c81ff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-glibc (2.24-4) UNRELEASED; urgency=medium
+glibc (2.24-4) unstable; urgency=medium
 
   [ Samuel Thibault ]
   * hurd-i386/tg-hurdsig-SA_SIGINFO.diff: Fix preemptors and thus
@@ -66,7 +66,7 @@ glibc (2.24-4) UNRELEASED; urgency=medium
   * debian/control.in/main: slightly relax the build-dependency on g++-6 to
 make lintian happy.
 
- -- Aurelien Jarno   Sat, 17 Sep 2016 20:03:04 +0200
+ -- Aurelien Jarno   Sun, 16 Oct 2016 13:06:08 +0200
 
 glibc (2.24-3) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] 01/02: debian/control.in/main: slightly relax the build-dependency on g++-6 to make lintian happy.

2016-10-16 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a commit to branch sid
in repository glibc.

commit 72c40082ec6f7c5b4253942bda5abfca0cb2edb1
Author: Aurelien Jarno 
Date:   Sun Oct 16 13:06:03 2016 +0200

debian/control.in/main: slightly relax the build-dependency on g++-6 to 
make lintian happy.
---
 debian/changelog   | 2 ++
 debian/control | 2 +-
 debian/control.in/main | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a0b424c..5201ad8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -63,6 +63,8 @@ glibc (2.24-4) UNRELEASED; urgency=medium
 Closes: #840901.
   * debian/patches/i386/local-cpuid-level2.diff: replace by upstream patch
 cvs-cpuid-level2.diff.
+  * debian/control.in/main: slightly relax the build-dependency on g++-6 to
+make lintian happy.
 
  -- Aurelien Jarno   Sat, 17 Sep 2016 20:03:04 +0200
 
diff --git a/debian/control b/debian/control
index aef6947..8e35787 100644
--- a/debian/control
+++ b/debian/control
@@ -11,7 +11,7 @@ Build-Depends: gettext, dpkg (>= 1.18.7), dpkg-dev (>= 
1.17.14), xz-utils, file,
  kfreebsd-kernel-headers [kfreebsd-any],
  binutils (>= 2.21),
  g++-6, g++-6-multilib [amd64 i386 kfreebsd-amd64 mips mipsel mipsn32 
mipsn32el mips64 mips64el powerpc ppc64 s390x sparc sparc64 x32],
- g++-6 (>= 6.1.1-1) [hurd-i386 i386 kfreebsd-i386],
+ g++-6 (>= 6.1.1-1~) [hurd-i386 i386 kfreebsd-i386],
  libc-bin (>= 2.24) 
 Build-Depends-Indep: perl, po-debconf (>= 1.0)
 Maintainer: GNU Libc Maintainers 
diff --git a/debian/control.in/main b/debian/control.in/main
index 562ed73..fc14a55 100644
--- a/debian/control.in/main
+++ b/debian/control.in/main
@@ -11,7 +11,7 @@ Build-Depends: gettext, dpkg (>= 1.18.7), dpkg-dev (>= 
1.17.14), xz-utils, file,
  kfreebsd-kernel-headers [kfreebsd-any],
  binutils (>= 2.21),
  g++-6, g++-6-multilib [amd64 i386 kfreebsd-amd64 mips mipsel mipsn32 
mipsn32el mips64 mips64el powerpc ppc64 s390x sparc sparc64 x32],
- g++-6 (>= 6.1.1-1) [hurd-i386 i386 kfreebsd-i386],
+ g++-6 (>= 6.1.1-1~) [hurd-i386 i386 kfreebsd-i386],
  libc-bin (>= @GLIBC_VERSION@) 
 Build-Depends-Indep: perl, po-debconf (>= 1.0)
 Maintainer: GNU Libc Maintainers 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git