Bug#1018071: glibc causes ftbfs in c-t-b-*

2022-08-25 Thread Matthias Klose

Package: src:glibc
Version: 2.34-5
Severity: serious

https://salsa.debian.org/glibc-team/glibc/-/commit/776abab
introduces

sed -i \
+   -e "usr/lib/.*\.a/d" \
-e "/LIBDIR.*\.a /d" \
-e "s#TMPDIR#$(debian-tmp)#g" \
-e "s#RTLDDIR#$$rtlddir#g" \

that probably should be -e "/usr\/lib\/.*\.a/d", plus Makefile quoting

[...]
for t in $templates ; do \

  for s in debian/$t$pass.* ; do \

t=`echo $s | sed -e "s#libc\(.*\)$pass#libc6\1$suffix#"` ; \

echo "Generating $t ..."; \

if [ "$s" != "$t" ] ; then \

  cp $s $t ; \

fi ; \

sed -i \

-e "usr/lib/.*\.a/d" \

-e "/LIBDIR.*\.a /d" \

-e "s#TMPDIR#debian/tmp#g" \

-e "s#RTLDDIR#$rtlddir#g" \

-e "s#SLIBDIR#$slibdir#g" \

-e "s#LIBDIR#$libdir#g" \

-e "/gdb/d" \

-e "/audit/d" \

  $t; \

  done ; \

done

Generating debian/libc6-dev.NEWS ...

sed: -e expression #1, char 1: unknown command: `u'

Generating debian/libc6-dev.install ...

sed: -e expression #1, char 1: unknown command: `u'

Generating debian/libc6-dev.install.hurd-i386 ...

sed: -e expression #1, char 1: unknown command: `u'

Generating debian/libc6-dev.lintian-overrides ...

sed: -e expression #1, char 1: unknown command: `u'

make[1]: *** [debian/rules.d/debhelper.mk:152: 
/home/packages/cross/base/p/cross-toolchain-base-ports/glibc-2.34/stamp-dir/debhelper_libc] 
Error 1




Bug#1017590: marked as done (glibc 2.34 broke getpwnam calls under fakechroot)

2022-08-25 Thread Debian Bug Tracking System
Your message dated Thu, 25 Aug 2022 12:19:17 +
with message-id 
and subject line Bug#1017590: fixed in fakechroot 2.20.1+ds-6
has caused the Debian Bug report #1017590,
regarding glibc 2.34 broke getpwnam calls under fakechroot
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.)


-- 
1017590: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1017590
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: glibc
Version: 2.34-1
Severity: normal
X-Debbugs-Cc: jo...@debian.org
Control: affects -1 + fakechroot mmdebstrap

Hi,

ultimately this probably needs to be fixed in fakechroot but I need some
help solving this problem from somebody who understands glibc.

Since the upload of glibc 2.34, getpwnam (and friends) under fakechroot
are not wrapped anymore. This means that instead of accessing
/etc/passwd from the chroot, the version from the host will be accessed,
leading to incorrect behaviour.

Since mmdebstrap uses fakechroot, this problem affects mmdebstrap as
well and breaks its autopkgtest.

There was a similar problem in the past. See
https://bugs.debian.org/993946 which in the end was fixed by letting
fakechroot wrap __nss_files_fopen.

I bisected glibc from git between 2.33 and 2.34 and found out, that this
fix broke again in this commit:

https://sourceware.org/git/?p=glibc.git;a=commit;h=6212bb67f4695962748a5981e1b9fea105af74f6

Do you have any idea why this commit is responsible and what fakechroot
could do to fix it? Attached the script I used to setup a minimal chroot
to bisect glibc git (this is for future-me in case I need to do this
ever again in the future).

Thanks!

cheers, josch

#!/bin/sh
set -e
rm -rf /install ./*
/glibc/configure --prefix=/usr && make -j
wget -c 
http://snapshot.debian.org/archive/debian/20211216T150239Z/pool/main/f/fakechroot/fakechroot_2.20.1%2Bds-2_all.deb
wget -c 
http://snapshot.debian.org/archive/debian/20211216T150239Z/pool/main/f/fakechroot/libfakechroot_2.20.1%2Bds-2_amd64.deb
mkdir -p /install/bin /install/lib /install/lib64 /install/dev /install/usr/lib
ln -s ../lib/ld.so /install/lib64/ld-linux-x86-64.so.2
ln -s ../../lib64 /install/usr/lib/x86_64-linux-gnu
ln -s ../bin /install/usr/bin
cp /bin/dash /install/bin/sh
cp ./elf/ldconfig /install/bin/
cp /usr/bin/seq /usr/bin/env /bin/bash /usr/bin/tr /usr/bin/basename 
/usr/bin/getopt /usr/sbin/chroot /bin/echo /install/bin/
cp -a /lib/x86_64-linux-gnu/libtinfo.so.6.2 /install/lib64
ln -s libtinfo.so.6.2 /install/lib64/libtinfo.so.6
cp ./elf/ld.so /install/lib
find -name '*.so' -or -name '*.so.*' | xargs -I'{}' cp '{}' /install/lib64
dpkg-deb --fsys-tarfile fakechroot_2.20.1+ds-2_all.deb | tar -C /install 
--keep-directory-symlink -x
dpkg-deb --fsys-tarfile libfakechroot_2.20.1+ds-2_amd64.deb | tar -C /install 
--keep-directory-symlink -x
cp /fakechroot/test/src/test-nss_files_fopen /install/bin/
cp -a /install /chroot
mv /chroot /install/chroot
echo "user:x:1337:1337:user:/home/user:/bin/bash" > /install/chroot/etc/passwd
chroot /install fakechroot --lib 
/usr/lib/x86_64-linux-gnu/fakechroot/libfakechroot.so /bin/chroot /chroot 
/bin/test-nss_files_fopen user
--- End Message ---
--- Begin Message ---
Source: fakechroot
Source-Version: 2.20.1+ds-6
Done: Johannes Schauer Marin Rodrigues 

We believe that the bug you reported is fixed in the latest version of
fakechroot, 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 1017...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Johannes Schauer Marin Rodrigues  (supplier of updated 
fakechroot 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: Thu, 25 Aug 2022 13:59:58 +0200
Source: fakechroot
Architecture: source
Version: 2.20.1+ds-6
Distribution: unstable
Urgency: medium
Maintainer: Johannes Schauer Marin Rodrigues 
Changed-By: Johannes Schauer Marin Rodrigues 
Closes: 1017590
Changes:
 fakechroot (2.20.1+ds-6) unstable; urgency=medium
 .
   * mmdebstrap autopkgtest succeeds on salsa and debi, so getpwent and friends
 work correctly again (closes: #1017590)
Checksums-Sha1:
 53b4c9d7dcf2eca5d97d4b927183f52aba89dba3 2224 fakechroot_2.20.1+ds-6.dsc
 34df27a4f01

[Git][glibc-team/glibc][sid] debian/rules.d/debhelper.mk: fix regular expression to remove static libraries...

2022-08-25 Thread Aurelien Jarno (@aurel32)


Aurelien Jarno pushed to branch sid at GNU Libc Maintainers / glibc


Commits:
3be5901c by Aurelien Jarno at 2022-08-25T19:13:52+02:00
debian/rules.d/debhelper.mk: fix regular expression to remove static libraries 
in the stage1 build profile.  Closes: #1018071.

- - - - -


2 changed files:

- debian/changelog
- debian/rules.d/debhelper.mk


View it on GitLab: 
https://salsa.debian.org/glibc-team/glibc/-/commit/3be5901cc714b11df775d92a4997d573eb853f19

-- 
View it on GitLab: 
https://salsa.debian.org/glibc-team/glibc/-/commit/3be5901cc714b11df775d92a4997d573eb853f19
You're receiving this email because of your account on salsa.debian.org.




[Git][glibc-team/glibc][sid] releasing package glibc version 2.34-6

2022-08-25 Thread Aurelien Jarno (@aurel32)


Aurelien Jarno pushed to branch sid at GNU Libc Maintainers / glibc


Commits:
f47608dc by Aurelien Jarno at 2022-08-25T19:16:42+02:00
releasing package glibc version 2.34-6

- - - - -


1 changed file:

- debian/changelog


View it on GitLab: 
https://salsa.debian.org/glibc-team/glibc/-/commit/f47608dc4e3a9b1ef2329274a1e1f6cb48dc7955

-- 
View it on GitLab: 
https://salsa.debian.org/glibc-team/glibc/-/commit/f47608dc4e3a9b1ef2329274a1e1f6cb48dc7955
You're receiving this email because of your account on salsa.debian.org.




[Git][glibc-team/glibc] Pushed new tag debian/2.34-6

2022-08-25 Thread Aurelien Jarno (@aurel32)


Aurelien Jarno pushed new tag debian/2.34-6 at GNU Libc Maintainers / glibc

-- 
View it on GitLab: 
https://salsa.debian.org/glibc-team/glibc/-/tree/debian/2.34-6
You're receiving this email because of your account on salsa.debian.org.




[Git][glibc-team/glibc][glibc-2.35] 6 commits: debian/control.in/main: bump Standards-Version to 4.6.1 (no changes).

2022-08-25 Thread Aurelien Jarno (@aurel32)


Aurelien Jarno pushed to branch glibc-2.35 at GNU Libc Maintainers / glibc


Commits:
8c95f2ce by Aurelien Jarno at 2022-08-24T23:12:45+02:00
debian/control.in/main: bump Standards-Version to 4.6.1 (no changes).

- - - - -
bfcecdf4 by Aurelien Jarno at 2022-08-24T23:20:27+02:00
releasing package glibc version 2.34-5

- - - - -
3be5901c by Aurelien Jarno at 2022-08-25T19:13:52+02:00
debian/rules.d/debhelper.mk: fix regular expression to remove static libraries 
in the stage1 build profile.  Closes: #1018071.

- - - - -
f47608dc by Aurelien Jarno at 2022-08-25T19:16:42+02:00
releasing package glibc version 2.34-6

- - - - -
18a3685e by Aurelien Jarno at 2022-08-25T19:23:21+02:00
Merge branch 'sid' into glibc-2.35

- - - - -
1cd75786 by Aurelien Jarno at 2022-08-25T19:30:31+02:00
releasing package glibc version 2.35-0experimental2

- - - - -


4 changed files:

- debian/changelog
- debian/control
- debian/control.in/main
- debian/rules.d/debhelper.mk


View it on GitLab: 
https://salsa.debian.org/glibc-team/glibc/-/compare/6bf99cde1d12c7fbf41e7b3b7bad7fcafe881b99...1cd75786ca8f5c47b657309e22969c58f2c93d6b

-- 
View it on GitLab: 
https://salsa.debian.org/glibc-team/glibc/-/compare/6bf99cde1d12c7fbf41e7b3b7bad7fcafe881b99...1cd75786ca8f5c47b657309e22969c58f2c93d6b
You're receiving this email because of your account on salsa.debian.org.




[Git][glibc-team/glibc] Pushed new tag debian/2.35-0experimental2

2022-08-25 Thread Aurelien Jarno (@aurel32)


Aurelien Jarno pushed new tag debian/2.35-0experimental2 at GNU Libc 
Maintainers / glibc

-- 
View it on GitLab: 
https://salsa.debian.org/glibc-team/glibc/-/tree/debian/2.35-0experimental2
You're receiving this email because of your account on salsa.debian.org.




Processed: Bug#1018071 marked as pending in glibc

2022-08-25 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #1018071 [src:glibc] glibc causes ftbfs in c-t-b-*
Added tag(s) pending.

-- 
1018071: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1018071
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processing of glibc_2.34-6_source.changes

2022-08-25 Thread Debian FTP Masters
glibc_2.34-6_source.changes uploaded successfully to localhost
along with the files:
  glibc_2.34-6.dsc
  glibc_2.34-6.debian.tar.xz
  glibc_2.34-6_source.buildinfo

Greetings,

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



[bts-link] source package glibc

2022-08-25 Thread debian-bts-link
#
# bts-link upstream status pull for source package glibc
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
# https://bts-link-team.pages.debian.net/bts-link/
#

user debian-bts-l...@lists.debian.org

# remote status report for #1017852 (http://bugs.debian.org/1017852)
# Bug title: libc6: mb* functions consider C locale as 7-bit (128 characters) 
instead of 8-bit (256 characters) since POSIX Issue 7 TC2/Issue 8
#  * http://sourceware.org/bugzilla/show_bug.cgi?id=29511
#  * remote status changed: (?) -> UNCONFIRMED
usertags 1017852 + status-UNCONFIRMED

thanks



Processing of glibc_2.35-0experimental2_source.changes

2022-08-25 Thread Debian FTP Masters
glibc_2.35-0experimental2_source.changes uploaded successfully to localhost
along with the files:
  glibc_2.35-0experimental2.dsc
  glibc_2.35-0experimental2.debian.tar.xz
  glibc_2.35-0experimental2_source.buildinfo

Greetings,

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



Bug#1018071: marked as done (glibc causes ftbfs in c-t-b-*)

2022-08-25 Thread Debian Bug Tracking System
Your message dated Thu, 25 Aug 2022 17:53:49 +
with message-id 
and subject line Bug#1018071: fixed in glibc 2.34-6
has caused the Debian Bug report #1018071,
regarding glibc causes ftbfs in c-t-b-*
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.)


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

Package: src:glibc
Version: 2.34-5
Severity: serious

https://salsa.debian.org/glibc-team/glibc/-/commit/776abab
introduces

sed -i \
+   -e "usr/lib/.*\.a/d" \
-e "/LIBDIR.*\.a /d" \
-e "s#TMPDIR#$(debian-tmp)#g" \
-e "s#RTLDDIR#$$rtlddir#g" \

that probably should be -e "/usr\/lib\/.*\.a/d", plus Makefile quoting

[...]
for t in $templates ; do \

  for s in debian/$t$pass.* ; do \

t=`echo $s | sed -e "s#libc\(.*\)$pass#libc6\1$suffix#"` ; \

echo "Generating $t ..."; \

if [ "$s" != "$t" ] ; then \

  cp $s $t ; \

fi ; \

sed -i \

-e "usr/lib/.*\.a/d" \

-e "/LIBDIR.*\.a /d" \

-e "s#TMPDIR#debian/tmp#g" \

-e "s#RTLDDIR#$rtlddir#g" \

-e "s#SLIBDIR#$slibdir#g" \

-e "s#LIBDIR#$libdir#g" \

-e "/gdb/d" \

-e "/audit/d" \

  $t; \

  done ; \

done

Generating debian/libc6-dev.NEWS ...

sed: -e expression #1, char 1: unknown command: `u'

Generating debian/libc6-dev.install ...

sed: -e expression #1, char 1: unknown command: `u'

Generating debian/libc6-dev.install.hurd-i386 ...

sed: -e expression #1, char 1: unknown command: `u'

Generating debian/libc6-dev.lintian-overrides ...

sed: -e expression #1, char 1: unknown command: `u'

make[1]: *** [debian/rules.d/debhelper.mk:152: 
/home/packages/cross/base/p/cross-toolchain-base-ports/glibc-2.34/stamp-dir/debhelper_libc] 
Error 1
--- End Message ---
--- Begin Message ---
Source: glibc
Source-Version: 2.34-6
Done: Aurelien Jarno 

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 1018...@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: Thu, 25 Aug 2022 19:16:34 +0200
Source: glibc
Architecture: source
Version: 2.34-6
Distribution: unstable
Urgency: medium
Maintainer: GNU Libc Maintainers 
Changed-By: Aurelien Jarno 
Closes: 1018071
Changes:
 glibc (2.34-6) unstable; urgency=medium
 .
   [ Aurelien Jarno ]
   * debian/rules.d/debhelper.mk: fix regular expression to remove static
 libraries in the stage1 build profile.  Closes: #1018071.
Checksums-Sha1:
 c680374b505c49946c65fc34e200cf9ad06dd472 9679 glibc_2.34-6.dsc
 6985017a5a806eb5bb712be78ba49b896991f247 997204 glibc_2.34-6.debian.tar.xz
 fc14666dfdab32158daae415be6bc0a1463e77ff 9921 glibc_2.34-6_source.buildinfo
Checksums-Sha256:
 f2185c634221c7d282bdba5bf43a9b546511a8183962bd1f9f78d29b1f8235c0 9679 
glibc_2.34-6.dsc
 7d0558a43ecc496464acd856955105d73dd18107c1b4a6c65f4765a34e15 997204 
glibc_2.34-6.debian.tar.xz
 140c541026c0a796dcd554aeed55b08c210077a5f0187982488811da25501480 9921 
glibc_2.34-6_source.buildinfo
Files:
 257f3034e4ab38bc42775960e3ca3a2b 9679 libs required glibc_2.34-6.dsc
 a0be03183a34c27d4c2ecd666c103f40 997204 libs required 
glibc_2.34-6.debian.tar.xz
 505892a0719785d5ad297e71ae003491 9921 libs required 
glibc_2.34-6_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEUryGlb40+QrX1Ay4E4jA+JnoM2sFAmMHr6MACgkQE4jA+Jno
M2uuSQ/8CSeCDwf2+BNxEOMVjulNDosf4kaByrmffQ/+rgOygzJ1wsEmu5twu5qW
2gVJ60Ex2kS6/KDH1L0/dGNVWqFD9z382MGuUK0dwipIO1s6olFkO8D1hEyHPNxN
twrsOGo2BxFkaAbgqtALwgKQF3dkOzzLQ1mLfGUkV7iAUutMIWosyY+8kCA1FMO0
ca+nPZxUs7V03K5wyyKVs4PaRQPwwl8DuZ+n+QJ+leAeubs5VEVCTNAtKb9CekXr
p2QEDmC7sp4Fr7NTVcpAnboWrkFd7I9crujEVUPZYcfQ36uxdqFKjWDSr2hFNLzp
Vn7+X+O+GG33bPmEUHOTBOshxqMg1tVTSeX22pvic0rNTZJlIm+AaDKlinpKB2aM
aGxTd8BDqMYstm0CztYdItfPOZ4HoKyAFtSK7ZCFsYl2LuRPv3Grg7OcAd6xL0rK
Gynh0vKxgqzXyduL95UY2gXV1/vGHcp3pTNF9WIiXbrLLJWk3Jtlx2Ls3C9Z1nhk
pHtsqVxF13/SJJmmWBdFRFa7DQDbbYa4axnRUw

glibc_2.34-6_source.changes ACCEPTED into unstable

2022-08-25 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 25 Aug 2022 19:16:34 +0200
Source: glibc
Architecture: source
Version: 2.34-6
Distribution: unstable
Urgency: medium
Maintainer: GNU Libc Maintainers 
Changed-By: Aurelien Jarno 
Closes: 1018071
Changes:
 glibc (2.34-6) unstable; urgency=medium
 .
   [ Aurelien Jarno ]
   * debian/rules.d/debhelper.mk: fix regular expression to remove static
 libraries in the stage1 build profile.  Closes: #1018071.
Checksums-Sha1:
 c680374b505c49946c65fc34e200cf9ad06dd472 9679 glibc_2.34-6.dsc
 6985017a5a806eb5bb712be78ba49b896991f247 997204 glibc_2.34-6.debian.tar.xz
 fc14666dfdab32158daae415be6bc0a1463e77ff 9921 glibc_2.34-6_source.buildinfo
Checksums-Sha256:
 f2185c634221c7d282bdba5bf43a9b546511a8183962bd1f9f78d29b1f8235c0 9679 
glibc_2.34-6.dsc
 7d0558a43ecc496464acd856955105d73dd18107c1b4a6c65f4765a34e15 997204 
glibc_2.34-6.debian.tar.xz
 140c541026c0a796dcd554aeed55b08c210077a5f0187982488811da25501480 9921 
glibc_2.34-6_source.buildinfo
Files:
 257f3034e4ab38bc42775960e3ca3a2b 9679 libs required glibc_2.34-6.dsc
 a0be03183a34c27d4c2ecd666c103f40 997204 libs required 
glibc_2.34-6.debian.tar.xz
 505892a0719785d5ad297e71ae003491 9921 libs required 
glibc_2.34-6_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEUryGlb40+QrX1Ay4E4jA+JnoM2sFAmMHr6MACgkQE4jA+Jno
M2uuSQ/8CSeCDwf2+BNxEOMVjulNDosf4kaByrmffQ/+rgOygzJ1wsEmu5twu5qW
2gVJ60Ex2kS6/KDH1L0/dGNVWqFD9z382MGuUK0dwipIO1s6olFkO8D1hEyHPNxN
twrsOGo2BxFkaAbgqtALwgKQF3dkOzzLQ1mLfGUkV7iAUutMIWosyY+8kCA1FMO0
ca+nPZxUs7V03K5wyyKVs4PaRQPwwl8DuZ+n+QJ+leAeubs5VEVCTNAtKb9CekXr
p2QEDmC7sp4Fr7NTVcpAnboWrkFd7I9crujEVUPZYcfQ36uxdqFKjWDSr2hFNLzp
Vn7+X+O+GG33bPmEUHOTBOshxqMg1tVTSeX22pvic0rNTZJlIm+AaDKlinpKB2aM
aGxTd8BDqMYstm0CztYdItfPOZ4HoKyAFtSK7ZCFsYl2LuRPv3Grg7OcAd6xL0rK
Gynh0vKxgqzXyduL95UY2gXV1/vGHcp3pTNF9WIiXbrLLJWk3Jtlx2Ls3C9Z1nhk
pHtsqVxF13/SJJmmWBdFRFa7DQDbbYa4axnRUwXBz0BS+ykovNggG+4IdBXOfz4S
yP7S39FSJCrlrdOflWcXUMr8OR98BjDWynsPl3ArKVyf+L8v/vOurpw2NDdIViN1
6tIDwvi4AkaI4g/bevJ/D2OVm0bAH8DFw5YpThSxXcPZBp2gZAo=
=B8+X
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



glibc_2.35-0experimental2_source.changes ACCEPTED into experimental

2022-08-25 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 25 Aug 2022 19:30:20 +0200
Source: glibc
Architecture: source
Version: 2.35-0experimental2
Distribution: experimental
Urgency: medium
Maintainer: GNU Libc Maintainers 
Changed-By: Aurelien Jarno 
Changes:
 glibc (2.35-0experimental2) experimental; urgency=medium
 .
   [ Aurelien Jarno ]
   * debian/control.in/libc: add a breaks against chrony (<< 4.2-3~). See
 #1017790.
 .
   [ Samuel Thibault ]
   * debian/testsuite-xfail-debian.mk: Update tests results for hurd-i386.
   * debian/patches/hurd-i386/git-static-pie.diff: Fix starting static binaries
 with stack protection enabled.
Checksums-Sha1:
 bba8adb25c1b2040ecd827efb182c2f05e12ed20 9731 glibc_2.35-0experimental2.dsc
 03f87f7b45e234e6026c92c40fccffd69947c7aa 890960 
glibc_2.35-0experimental2.debian.tar.xz
 b540b3433bb90a55d2d4c3b97195701fb3748c21 9973 
glibc_2.35-0experimental2_source.buildinfo
Checksums-Sha256:
 5df59df2f2182bb4967e93448ee1bcb883b4e18c19b7c9248bf9226a19ab81ac 9731 
glibc_2.35-0experimental2.dsc
 0fa91e9b3d29076087f5c4fc6c32b3de53d8ef0ea42e3a4c70c778a83def62cb 890960 
glibc_2.35-0experimental2.debian.tar.xz
 79146dfe109a2c63cf4a82fffee6ce6efc0dd51f7b490d965059fbce6737 9973 
glibc_2.35-0experimental2_source.buildinfo
Files:
 f5163998c12c9ce46ab7268172f29030 9731 libs required 
glibc_2.35-0experimental2.dsc
 91de2cbb8bbbf06c7cf45728e8990c0f 890960 libs required 
glibc_2.35-0experimental2.debian.tar.xz
 844d02d4420dd4339d45cf15c7ef4b49 9973 libs required 
glibc_2.35-0experimental2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEUryGlb40+QrX1Ay4E4jA+JnoM2sFAmMHsjIACgkQE4jA+Jno
M2vPFQ/+JujeRfSRgKFGkas3VIb9gXdMzleCE8D4bdiSDTVgw/qIxde0kFG0J66O
bHxXcEe9jd5RFgNr8zxBabMI8wWsKOBVIc+bnZvdhjOZuEDSPDRC+c+7/nHTLGz+
yMgmuB115eoD6zNHB9WKvdL8RsIRqosHWdTKOxb4s6AzBirUTWuwFBzXPG+jr0FW
gzr0YW59MRy7bDOfNwFtxToHDtlO0+7wGbwg+CVd3yeUli/QT2ymsMn8pKBGgJiT
yVJKHxHEGibdE6FV9XDRgxsV3k2haIDbwKuHd4X249jDQWG1aOnUNUzwrTX7lyOM
0U0mOjTJGFmtlf+Vf07cMWLh5N5onvMbaMcn5K2UpIlSqst9uKYRR4CkbfHd5h6Q
sOOiSEsMmQ1B0m9ch+9tJDkfytL67gECMvz8LTBIm5uJxnsABGtjCJWISJMxKheA
aQ4ISaFB1UU+88hActaRZd6so/RvPkRf/qxaPmXCNWosSE6j9U4qGjJtlfrTmjcP
9Ri8dqjk+e/G/L1h6yOWY2fZaQ/FPOFuMjZrkJXntfYgRE7lr7BGOpZ7QEzZrNpP
nervWxhgJCpuo+Ggqhqc5LgBEoY7VItaTG3TbBSIXJBHx5FR0GqsTSwMUa0jcMi9
UO0u9+s8dvk2JSzWW+vQ0kdH5GZTVcBih8D8z4BWRoh9VTL4kRQ=
=msnp
-END PGP SIGNATURE-


Thank you for your contribution to Debian.