[arch-commits] Commit in glibc/trunk (7 files)

2018-01-17 Thread Bartłomiej Piotrowski via arch-commits
Date: Wednesday, January 17, 2018 @ 21:18:11
  Author: bpiotrowski
Revision: 315023

2.26-11: bump to de51f431

Includes fix for CVE-2018-101.

Modified:
  glibc/trunk/PKGBUILD
Deleted:
  glibc/trunk/0001-manual-Update-to-mention-ENODEV-for-ttyname-and-ttyn.patch
  glibc/trunk/0002-linux-ttyname-Update-a-reference-to-kernel-docs-for-.patch
  glibc/trunk/0003-linux-ttyname-Change-return-type-of-is_pty-from-int-.patch
  glibc/trunk/0004-linux-ttyname-_r-Make-tty-checks-consistent.patch
  glibc/trunk/0005-linux-ttyname-_r-Don-t-bail-prematurely-BZ-22145.patch
  glibc/trunk/0006-linux-ttyname-_r-Add-tests.patch

-+
 0001-manual-Update-to-mention-ENODEV-for-ttyname-and-ttyn.patch |   34 
 0002-linux-ttyname-Update-a-reference-to-kernel-docs-for-.patch |   34 
 0003-linux-ttyname-Change-return-type-of-is_pty-from-int-.patch |   30 
 0004-linux-ttyname-_r-Make-tty-checks-consistent.patch  |  270 ---
 0005-linux-ttyname-_r-Don-t-bail-prematurely-BZ-22145.patch |  132 -
 0006-linux-ttyname-_r-Add-tests.patch   |  696 
--
 PKGBUILD|   16 
 7 files changed, 2 insertions(+), 1210 deletions(-)

Deleted: 0001-manual-Update-to-mention-ENODEV-for-ttyname-and-ttyn.patch
===
--- 0001-manual-Update-to-mention-ENODEV-for-ttyname-and-ttyn.patch 
2018-01-17 21:03:19 UTC (rev 315022)
+++ 0001-manual-Update-to-mention-ENODEV-for-ttyname-and-ttyn.patch 
2018-01-17 21:18:11 UTC (rev 315023)
@@ -1,34 +0,0 @@
-From 495a56fdeb05d20a88304ff5da577d23a8e81ae1 Mon Sep 17 00:00:00 2001
-From: Luke Shumaker 
-Date: Wed, 15 Nov 2017 20:28:40 +0100
-Subject: [PATCH 1/6] manual: Update to mention ENODEV for ttyname and
- ttyname_r
-
-Commit 15e9a4f378c8607c2ae1aa465436af4321db0e23 introduced ENODEV as a possible
-error condition for ttyname and ttyname_r. Update the manual to mention this 
GNU
-extension.
-
-Reviewed-by: Christian Brauner 

- ChangeLog| 5 +
- manual/terminal.texi | 5 +
- 2 files changed, 10 insertions(+)
-
-diff --git a/manual/terminal.texi b/manual/terminal.texi
-index 4fef5045b8..4aace48b14 100644
 a/manual/terminal.texi
-+++ b/manual/terminal.texi
-@@ -109,6 +109,11 @@ The @var{filedes} is not associated with a terminal.
- @item ERANGE
- The buffer length @var{len} is too small to store the string to be
- returned.
-+
-+@item ENODEV
-+The @var{filedes} is associated with a terminal device that is a slave
-+pseudo-terminal, but the file name associated with that device could
-+not be determined.  This is a GNU extension.
- @end table
- @end deftypefun
-
---
-2.14.1

Deleted: 0002-linux-ttyname-Update-a-reference-to-kernel-docs-for-.patch
===
--- 0002-linux-ttyname-Update-a-reference-to-kernel-docs-for-.patch 
2018-01-17 21:03:19 UTC (rev 315022)
+++ 0002-linux-ttyname-Update-a-reference-to-kernel-docs-for-.patch 
2018-01-17 21:18:11 UTC (rev 315023)
@@ -1,34 +0,0 @@
-From 9b5a87502d048905c383b65c51768f4a1db8c685 Mon Sep 17 00:00:00 2001
-From: Luke Shumaker 
-Date: Wed, 15 Nov 2017 20:31:32 +0100
-Subject: [PATCH 2/6] linux ttyname: Update a reference to kernel docs for
- kernel 4.10
-
-Linux 4.10 moved many of the documentation files around.
-
-4.10 came out between the time the patch adding the comment (commit
-15e9a4f378c8607c2ae1aa465436af4321db0e23) was submitted and the time
-it was applied (in February, January, and March 2017; respectively).
-
-Reviewed-by: Christian Brauner 

- ChangeLog | 2 ++
- sysdeps/unix/sysv/linux/ttyname.h | 3 ++-
- 2 files changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/sysdeps/unix/sysv/linux/ttyname.h 
b/sysdeps/unix/sysv/linux/ttyname.h
-index 2e415e4e9c..cbcdbab607 100644
 a/sysdeps/unix/sysv/linux/ttyname.h
-+++ b/sysdeps/unix/sysv/linux/ttyname.h
-@@ -21,7 +21,8 @@
- #include 
-
- /* Return true if this is a UNIX98 pty device, as defined in
--   linux/Documentation/devices.txt.  */
-+   linux/Documentation/devices.txt (on linux < 4.10) or
-+   linux/Documentation/admin-guide/devices.txt (on linux >= 4.10).  */
- static inline int
- is_pty (struct stat64 *sb)
- {
---
-2.14.1

Deleted: 0003-linux-ttyname-Change-return-type-of-is_pty-from-int-.patch
===
--- 0003-linux-ttyname-Change-return-type-of-is_pty-from-int-.patch 
2018-01-17 21:03:19 UTC (rev 315022)
+++ 0003-linux-ttyname-Change-return-type-of-is_pty-from-int-.patch 
2018-01-17 21:18:11 UTC (rev 315023)
@@ -1,30 +0,0 @@
-From d10d6cab168ffa26ef6a506655ee5dc8537c8ed7 Mon Sep 17 00:00:00 2001
-From: Luke Shumaker 
-Date: Wed, 15 Nov 2017 20:33:11 +0100
-Subject: 

[arch-commits] Commit in glibc/trunk (7 files)

2012-02-03 Thread Allan McRae
Date: Saturday, February 4, 2012 @ 01:40:44
  Author: allan
Revision: 148587

upgpkg: glibc 2.15-5

fix x86_64 ifunc relocations, fix avx detection, fix gb18030 charmap, fix 
crashes in __nscd_get_mapping if nscd not running, fix realloc usage in vfscanf

Added:
  glibc/trunk/glibc-2.15-avx.patch
  glibc/trunk/glibc-2.15-gb18030.patch
  glibc/trunk/glibc-2.15-ifunc.patch
  glibc/trunk/glibc-2.15-revert-netlink-cache.patch
  glibc/trunk/glibc-2.15-scanf.patch
Modified:
  glibc/trunk/PKGBUILD
Deleted:
  glibc/trunk/glibc-2.15-strcmp-disable-avx.patch

---+
 PKGBUILD  |   61 
 glibc-2.15-avx.patch  |  196 
 glibc-2.15-gb18030.patch  |49081 
 glibc-2.15-ifunc.patch|  285 
 glibc-2.15-revert-netlink-cache.patch |  700 
 glibc-2.15-scanf.patch|   32 
 glibc-2.15-strcmp-disable-avx.patch   |   48 
 7 files changed, 50337 insertions(+), 66 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 148586:148587 to see the changes.