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

Bug#766605: marked as done (glibc patch for hppa architecture)



Your message dated Thu, 06 Nov 2014 21:22:27 +0000
with message-id <E1XmUVf-000585-Gl@franck.debian.org>
and subject line Bug#766605: fixed in glibc 2.19-13
has caused the Debian Bug report #766605,
regarding glibc patch for hppa architecture
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 owner@bugs.debian.org
immediately.)


-- 
766605: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=766605
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Source: glibc
Version: 2.19-11
Severity: important
Tags: patch

Dear debian glibc maintainers,

Can you please apply this hppa-arch-specific patch to debian glibc and keep it until you upgrade to sources of glibc 2.21 ?

Main reason for this patch is to make it possible to use systemd on hppa.
Without this patch people who will by mistake install systemd (e.g. because of dependencies) will render their machines unbootable.
The patch breaks the ABI on hppa, but in a way which will not affect people, because it changes the signals which are usually not used. This has been tested by installing and booting mixtures of glibc and kernel with corresponding patches.
I'll send in a bug report with patch for debian kernel shortly too.

Upstream Linux kernel commit is 1f25df2eff5b25f52c139d3ff31bc883eee9a0ab
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=1f25df2eff5b25f52c139d3ff31bc883eee9a0ab&utm_source=anzwix

Upstream glibc commit is:
https://sourceware.org/git/?p=glibc.git;a=commit;h=13d845549e41823e6658122dcf268154bcbbcfde

I've adjusted the attached patch (only changes path names) so that it applies to debian's glibc 2.19

To better understand what we fix here, the glibc changelog description of Carlos is probably best (copied in here):

This is a conscious ABI break for hppa.

We find ourselves unable to run systemd because it expects
SIGRTMIN+29 signals to be available and with hppa starting
at 37 that exceeds the 64 signals available. It is arguable
that the systemd code could compact their signal usage (the
have a gap and don't check SIGRTMAX to see if they are over).
However, that would require pursuing this upstream with systemd.
The least work option is to make hppa more like other arches.

The best option is to free up 3 signals for use with SIGXCPU,
SIGXFSZ and SIGSTKFLT, and move those below 31. We make SIGSYS
equal to SIGUNUSED as is expected. We remove SIGEMT and SIGLOST
as HPUX signal we won't ever use. With that change we match all
other machines.

Given that these signals are so esoteric, testing by other users
building minimal systems from scratch showed no problems. In fact
Tcl fails to build if you make SIGEMT == SIGABRT, so we just removed
SIGEMT (they use a large switch statement in C to handle signals, and
I don't think it's valid to assume they will all have distinct values
to fit into a switch).

Committed as the only solution we possibly have here.

Signed-off-by: Carlos O'Donell <carlos@systemhalted.org>
Signed-off-by: Helge Deller <deller@gmx.de>

>From 13d845549e41823e6658122dcf268154bcbbcfde Mon Sep 17 00:00:00 2001
From: Carlos O'Donell <carlos@redhat.com>
Date: Thu, 23 Oct 2014 23:14:12 -0400
Subject: [PATCH] hppa: Make __SIGRTMIN 32 (ABI break).

In the Linux kernel version 3.17 the signal numbers were rearranged in
order to make hppa like every other arch. Previously we started
__SIGRTMIN at 37, and that meant several pieces of important software,
including systemd, would fail to build. To support systemd we removed
SIGEMT and SIGLOST, and rearranged the others according to expected
values. This is technically an ABI incompatible change, but because
zero applications use SIGSTKFLT, SIGXCPU, SIGXFSZ and SIGSYS nothing
broke.  Nothing uses SIGEMT and SIGLOST, and they were present for
HPUX compatibility which is no longer supported. Thus because nothing
breaks we don't do any compatibility work here.

Upstream kernel commit is 1f25df2eff5b25f52c139d3ff31bc883eee9a0ab.

Signed-off-by: Carlos O'Donell <carlos@systemhalted.org>
Signed-off-by: Helge Deller <deller@gmx.de>

2014-10-23  Carlos O'Donell  <carlos@systemhalted.org>
	    Helge Deller <deller@gmx.de>

	[BZ #17508]
	* sysdeps/unix/sysv/linux/hppa/bits/signum.h: Remove SIGEMT.
	Define SIGSTKFLT as 7. Define SIGSYS as 31. Define SIGXCPU as 12.
	Remove SIGLOST. Define SIGXFSZ as 30. Define __SIGRTMIN as 32.
---


diff -up ./ports/sysdeps/unix/sysv/linux/hppa/bits/signum.h.org ./ports/sysdeps/unix/sysv/linux/hppa/bits/signum.h
--- ./ports/sysdeps/unix/sysv/linux/hppa/bits/signum.h.org	2014-10-24 12:47:51.039590372 +0200
+++ ./ports/sysdeps/unix/sysv/linux/hppa/bits/signum.h	2014-10-24 12:47:59.707589170 +0200
@@ -36,12 +36,12 @@
 #define	SIGTRAP		5	/* Trace trap (POSIX).  */
 #define	SIGABRT		6	/* Abort (ANSI).  */
 #define	SIGIOT		6	/* IOT trap (4.2 BSD).  */
-#define	SIGEMT		7
+#define	SIGSTKFLT	7	/* Stack fault.  */
 #define	SIGFPE		8	/* Floating-point exception (ANSI).  */
 #define	SIGKILL		9	/* Kill, unblockable (POSIX).  */
 #define	SIGBUS		10	/* BUS error (4.2 BSD).  */
 #define	SIGSEGV		11	/* Segmentation violation (ANSI).  */
-#define SIGSYS		12	/* Bad system call.  */
+#define	SIGXCPU		12	/* CPU limit exceeded (4.2 BSD).  */
 #define	SIGPIPE		13	/* Broken pipe (POSIX).  */
 #define	SIGALRM		14	/* Alarm clock (POSIX).  */
 #define	SIGTERM		15	/* Termination (ANSI).  */
@@ -61,11 +61,9 @@
 #define	SIGTTIN		27	/* Background read from tty (POSIX).  */
 #define	SIGTTOU		28	/* Background write to tty (POSIX).  */
 #define	SIGURG		29	/* Urgent condition on socket (4.2 BSD).  */
-#define SIGLOST		30	/* Operating System Has Lost (HP/UX). */
+#define	SIGXFSZ		30	/* File size limit exceeded (4.2 BSD).  */
+#define SIGSYS		31	/* Bad system call.  */
 #define SIGUNUSED	31
-#define	SIGXCPU		33	/* CPU limit exceeded (4.2 BSD).  */
-#define	SIGXFSZ		34	/* File size limit exceeded (4.2 BSD).  */
-#define	SIGSTKFLT	36	/* Stack fault.  */
 
 #define	_NSIG		65	/* Biggest signal number + 1
 				   (including real-time signals).  */
@@ -75,7 +73,17 @@
 
 /* These are the hard limits of the kernel.  These values should not be
    used directly at user level.  */
-#define __SIGRTMIN	37
+/* In the Linux kernel version 3.17, and glibc 2.21, the signal numbers
+   were rearranged in order to make hppa like every other arch. Previously
+   we started __SIGRTMIN at 37, and that meant several pieces of important
+   software, including systemd, would fail to build. To support systemd we
+   removed SIGEMT and SIGLOST, and rearranged the others according to
+   expected values. This is technically an ABI incompatible change, but
+   because zero applications use SIGSTKFLT, SIGXCPU, SIGXFSZ and SIGSYS
+   nothing broke.  Nothing uses SIGEMT and SIGLOST, and they were present
+   for HPUX compatibility which is no longer supported.  Thus because
+   nothing breaks we don't do any compatibility work here.  */
+#define __SIGRTMIN	32	/* Kernel > 3.17.  */
 #define __SIGRTMAX	(_NSIG - 1)
 
 #endif	/* <signal.h> included.  */

--- End Message ---
--- Begin Message ---
Source: glibc
Source-Version: 2.19-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.

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

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


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Thu, 06 Nov 2014 20:28:41 +0100
Source: glibc
Binary: libc-bin libc-dev-bin 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-i686 libc6-xen libc0.1-i686 libc0.3-i686 libc0.3-xen libc6.1-alphaev67 libc6-loongson2f libnss-dns-udeb libnss-files-udeb
Architecture: source all amd64
Version: 2.19-13
Distribution: sid
Urgency: medium
Maintainer: Aurelien Jarno <aurel32@debian.org>
Changed-By: Aurelien Jarno <aurel32@debian.org>
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
 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 - GNU C Library: Shared libraries [i686 optimized]
 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 - GNU C Library: Shared libraries [i686 optimized]
 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 - GNU C Library: Shared libraries [i686 optimized]
 libc6-loongson2f - GNU C Library: Shared libraries (Loongson 2F optimized)
 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)
 libnss-dns-udeb - GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - GNU C Library: NSS helper for files - udeb (udeb)
 locales    - GNU C Library: National Language (locale) data [support]
 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: 740509 766605 767225
Changes:
 glibc (2.19-13) unstable; urgency=medium
 .
   [ Aurelien Jarno ]
   * kfreebsd/local-fbtl.diff: update to revision 5677 (from glibc-bsd).
     Workarounds a kfreebsd 9.0 to 10.1 ABI break. Closes: #740509.
   * patches/hppa/cvs-sigrtmin.diff: backport patch from upstream to change
     __SIGRTMIN to match other architectures. Closes: #766605.
   * patches/amd64/cvs-slow-sse42.diff: backport patch from upstream to fix
     a performance issue with strcmp and friends functions on some machines.
   * patches/any/cvs-regex-alloca.diff: new patch from upstream to fix a
     segmentation fault in regex in case of heap allocation failure. Closes:
     #767225.
   * Don't fail to build in case of testsuite regressions, so that changes
     in the environment (e.g.: kernel) do not prevent security or stable
     versions to be built. It will be re-enabled after the Jessie release.
   * debian/control.in/main: build-depends on debhelper (>= 9.20141010) to
     get Build-Profiles features. This fixes the following lintian warning:
     restriction-formula-with-debhelper-without-debhelper-version.
 .
   [ Samuel Thibault ]
   * hurd-i386/cvs-libpthread.diff: Update to Sun Nov 2.
   * hurd-i386/libpthread_clean.diff: Refresh, most of it merged into
     cvs-libpthread.diff.
   * hurd-i386/cvs-libpthread-pthread_condattr_setclock.diff,
     cvs-libpthread_guardsize.diff, cvs-libpthread_std_thread.diff: Remove,
     merged into cvs-libpthread.diff.
Checksums-Sha1:
 c9017133bc4454357e7b509c326a5dd3df286b73 8197 glibc_2.19-13.dsc
 44ebd828c7467bc3d189e646790fd2373b653c8e 1010276 glibc_2.19-13.debian.tar.xz
 1120e34d9b395564b8ff3f121e86e1c35a3dc08f 2262408 glibc-doc_2.19-13_all.deb
 56f26567ef4e580b3fab59f0a3990361247a2005 13949006 glibc-source_2.19-13_all.deb
 38697f24161ca83adf2f4e4ad2648e953810183a 3941614 locales_2.19-13_all.deb
 74fe3c00b6e5d7ff4f38546d3fbcd1e65836d8b9 4660152 libc6_2.19-13_amd64.deb
 2c846dd8ecd8c440413785c94aff9882649f1830 1997826 libc6-dev_2.19-13_amd64.deb
 27bc81c27fd7605de4eb4910c24b19d50d4ed342 1472698 libc6-pic_2.19-13_amd64.deb
 b4d75c320e569ceeb608e811173a8fcaf23df2b6 1282258 libc-bin_2.19-13_amd64.deb
 12e0573cca320050a01ea65b3722e421696cb2d9 235576 libc-dev-bin_2.19-13_amd64.deb
 14b46f68f1f45e548268e2a4a8ad9d8ee2e920d4 177534 multiarch-support_2.19-13_amd64.deb
 854506bb96e90948d70568279351e1c24e8b762a 3227208 locales-all_2.19-13_amd64.deb
 4a9b31d06ff75ed40d61edd8e8ed16ddad459914 2371156 libc6-i386_2.19-13_amd64.deb
 d22f23c925cc3e1127c072a2eae2737c93cd04e0 1313590 libc6-dev-i386_2.19-13_amd64.deb
 05763ddc95cf6f5bf58ac94fd435b55c2b2f0ab3 2597468 libc6-x32_2.19-13_amd64.deb
 0333029c51e72951ee5ff834a4581f7c01893916 1581896 libc6-dev-x32_2.19-13_amd64.deb
 fdbca906a1365370b3ef7728fede54ffc7d2c4cb 240898 nscd_2.19-13_amd64.deb
 0a0cf21266971dbb56c0a37e9d37b509026471af 3419162 libc6-dbg_2.19-13_amd64.deb
 000f11865f4204dd64382e1aa49d95a3fd28e55d 1057586 libc6-udeb_2.19-13_amd64.udeb
 352a848d0d3ab1e181d1be8431ecf0d3f49ef285 10044 libnss-dns-udeb_2.19-13_amd64.udeb
 7730ca9091efbec40c94b0f443f1ebe70026519c 16450 libnss-files-udeb_2.19-13_amd64.udeb
Checksums-Sha256:
 8c9d32792253442cd9895d265177cbff243571088eef412beea47278de762272 8197 glibc_2.19-13.dsc
 07ad892195b96a03aefa7fdc4b904b30b5f4bbcb42575c1483f2ee84bfeaaedb 1010276 glibc_2.19-13.debian.tar.xz
 21b66e42932fcc17bf756522e59a762cbc7c0ad9595ab25aa078d8e0055b9ab9 2262408 glibc-doc_2.19-13_all.deb
 bcb3fb7c4d242b0bedf0da840cab51f026cf755f23b40a8590e5f08e4c02a237 13949006 glibc-source_2.19-13_all.deb
 525df1ac645b569c8f4c2ebf6f8018f36f7b5ad71ffd6f3c50d956508b6607c3 3941614 locales_2.19-13_all.deb
 0d19cbd222a1eb2ff367c489aa0a9eb3b81d82b1276b4cef98fee723166d2cc5 4660152 libc6_2.19-13_amd64.deb
 dac4e37a1a9afaaeee798715a304285c2bfb9bfce0a41dd8c7974bd83971e7b6 1997826 libc6-dev_2.19-13_amd64.deb
 2a917d724cb2c53f1277b3466b73493e747803d6acdf78f1719b13a996b803bf 1472698 libc6-pic_2.19-13_amd64.deb
 ccf29e585e60f72ed0e9724cb64f42c9392224dbe5d7ea45c4e52321891ddbc4 1282258 libc-bin_2.19-13_amd64.deb
 03a1887e0b031d97d0088e5cdf1c30b6b0454e66b600822e6210f2b676137cf0 235576 libc-dev-bin_2.19-13_amd64.deb
 2bac7e4387b8589a4ee4b4b167ce35e5c4c77be4ba3ab914e0bd6c997645f4e0 177534 multiarch-support_2.19-13_amd64.deb
 8e281ce87f983db4fdce3add6f64a21a146e73618fdf890252b0ea78264d495c 3227208 locales-all_2.19-13_amd64.deb
 623f8542d8d5ad30a115079e60431dc4b6c656c94f6decc79cc203c1bbac977e 2371156 libc6-i386_2.19-13_amd64.deb
 3ee9baef67e3e283e32f3ab65112509250775ee84190bce2793152267a796cfc 1313590 libc6-dev-i386_2.19-13_amd64.deb
 269f0b711c17ce4900a6c2cb6c864619389799050a1d5737fff7fdc44254800b 2597468 libc6-x32_2.19-13_amd64.deb
 53867f71b23a87a620b1b65c737eca9521f24f5b3ddb95aabf9046a960ca43a4 1581896 libc6-dev-x32_2.19-13_amd64.deb
 4c8583cd73037df8b6e4d73a77e1e399ff5dd8e892073751b800aeafec1d8037 240898 nscd_2.19-13_amd64.deb
 3b0fd623ae1776d7fdd44e797e3011163cd8c8fd3500981f97f8f37c22690655 3419162 libc6-dbg_2.19-13_amd64.deb
 478fe0fd94ab0680d6e55d6c8b2b2667bae10dd6a76ab2a5f658b63bde12dc53 1057586 libc6-udeb_2.19-13_amd64.udeb
 0a6a06c58150b6c3a30bceaf47e473a07754ac2abfab13fc7a2fff97bcb4c99d 10044 libnss-dns-udeb_2.19-13_amd64.udeb
 d34b84863a04733099eaa7567d42705bd0a36e211113b75123129d9e09122239 16450 libnss-files-udeb_2.19-13_amd64.udeb
Files:
 142c711c6a3d1fb4eac04bc468baab62 8197 libs required glibc_2.19-13.dsc
 711e1298cfba0e61a6910329c4d76719 1010276 libs required glibc_2.19-13.debian.tar.xz
 5a2755dcf1a86aba42bbcf8588f8a5e2 2262408 doc optional glibc-doc_2.19-13_all.deb
 69a5f7f9e62c90d233d32259ad28ebf2 13949006 devel optional glibc-source_2.19-13_all.deb
 09c256228ab739fb6931bde9e628c446 3941614 localization standard locales_2.19-13_all.deb
 6d62c8071dce96407beab5f6d5fea767 4660152 libs required libc6_2.19-13_amd64.deb
 88dd8d59cd84645fcec9745f8451dea0 1997826 libdevel optional libc6-dev_2.19-13_amd64.deb
 d3a2e492aa338d4573a2232700b38da7 1472698 libdevel optional libc6-pic_2.19-13_amd64.deb
 e7944e4948b6450d3961e83363fbd8bd 1282258 libs required libc-bin_2.19-13_amd64.deb
 201e185cb1504d908661df7dea3931dc 235576 libdevel optional libc-dev-bin_2.19-13_amd64.deb
 b02317d3eabe6df33e11d1f8370a071f 177534 libs required multiarch-support_2.19-13_amd64.deb
 aafa0b777e26de7e434772849182c92a 3227208 localization extra locales-all_2.19-13_amd64.deb
 8fa064f0c003580e94dbecf4e66e3e7a 2371156 libs optional libc6-i386_2.19-13_amd64.deb
 63e4f2b8648639828a088f9694eafff0 1313590 libdevel optional libc6-dev-i386_2.19-13_amd64.deb
 d40301abef4707c735e9558ab58b2e31 2597468 libs optional libc6-x32_2.19-13_amd64.deb
 cea1184188c5993d7b0c5f596fec1f07 1581896 libdevel optional libc6-dev-x32_2.19-13_amd64.deb
 e18adaff17979bf3875ee66268c561ad 240898 admin optional nscd_2.19-13_amd64.deb
 5857a66ea243ba6b4c31cfb70277837c 3419162 debug extra libc6-dbg_2.19-13_amd64.deb
 3d363a6c38c585ed36055cb86fd402fc 1057586 debian-installer extra libc6-udeb_2.19-13_amd64.udeb
 c717ad9cf21530ac462381521d0083e0 10044 debian-installer extra libnss-dns-udeb_2.19-13_amd64.udeb
 bce44d6b39140424623f2c67e2389ddc 16450 debian-installer extra libnss-files-udeb_2.19-13_amd64.udeb
Package-Type: udeb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBAgAGBQJUW+CsAAoJELqceAYd3YybZhEP/iB8Zz9ET+tT5R+nOSuRUgYY
k7lO9/8g/XsGaGbVXsugjBnt4dPFUkRXYTsX8YBNMs/mzWIJWLuz5aR8r4pitWza
R+uvka7x/Zd9fw7xQ6Jcibhrc/PKrMM2hHFs/gqppFa7lCuEwbI6d4S8tFDvWV1/
lpX9S15o5iZ2Rq4tPbrjGrbXr4bRgwVYI8nseKuzD/4/iprJYBKjrd4Vvs/+iFqb
Vp6wjzDORkVs/BEvVjYz2IajWYaSWsjbw0jHfgXUs3j73qh5RRzC3Mq2KiXs66mk
W3JKhT4qK9VF5z4/97t1+mNJTD24f7oA2fg4HLPq/EJLltVO8fBdl7nYw1QkApEb
m7GOfgx405H1JxREh2N9CYOVTnPhn9XbRsZFTXZgrd78oYEHK6ru1RAwz8QvPAg0
7BhXo5K6Xrenj0hhqgD0s9Os1/yyA1+/ihYUs0yeDZB8sRYaccgwDwaK4f4gE11C
bKZU3voRc50bSauMMw8MUr3Yn+LxLRVaSY4QaOY0pVmB7XI/uq8RvzWrn+OrvUve
HBnDRDvbMjRGFaUfPOVXbgNgCc8hEPuiqbvpCpPuhLJcjz/mbph0bumdV4sNMWkM
C5+ex+KaeSqC3CUmTJmOOK9S/4hmM0/ate+s/OkckvxhPBEndXeZCl0styOqHLLX
309mTYo8bKQEwwuzRjvh
=XHPC
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: