This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, fedora/2.14/master, updated. glibc-2.14-911-g6c8f017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, fedora/2.14/master has been updated
       via  6c8f01757b1539e43b30a4bcdb5f22004c4501d1 (commit)
       via  ae0f462bfd5ce158dee29e41b47a3e4862a04f92 (commit)
       via  af0639697455b54e2ade8556867a15893197ffe2 (commit)
       via  3cc745c62f872df8b88068907ab7a646d827a122 (commit)
       via  4eddf93f5cc2711187e5e397a76ed727b440e972 (commit)
       via  f370dd3dc5372011236ea41d54452231b4ca7858 (commit)
       via  f47fcd632e676612ff7c74d2cfa83506b2cb4f85 (commit)
       via  3ae1021beaaff6d17198959ce21a301992b1f776 (commit)
      from  6ab60dd658b65ff9ea73601771a2dc50f80a87be (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=6c8f01757b1539e43b30a4bcdb5f22004c4501d1

commit 6c8f01757b1539e43b30a4bcdb5f22004c4501d1
Author: Andreas Schwab <schwab@redhat.com>
Date:   Mon Aug 15 14:29:16 2011 +0200

    2.14-6

diff --git a/fedora/glibc.spec.in b/fedora/glibc.spec.in
index a7d2eda..eb6d4cf 100644
--- a/fedora/glibc.spec.in
+++ b/fedora/glibc.spec.in
@@ -23,7 +23,7 @@
 Summary: The GNU libc libraries
 Name: glibc
 Version: %{glibcversion}
-Release: 5
+Release: 6
 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries.
 # Things that are linked directly into dynamically linked programs
 # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional
@@ -1038,6 +1038,12 @@ rm -f *.filelist*
 %endif
 
 %changelog
+* Mon Aug 15 2011 Andreas Schwab <schwab@redhat.com> - 2.14-6
+- Update from 2.14 branch
+  - Locale-independent parsing in libintl (#726536)
+  - Fix stack alignment on x86_64 (#728762)
+- Filter out GLIBC_PRIVATE symbols again
+
 * Fri Aug  5 2011 Andreas Schwab <schwab@redhat.com> - 2.14-5
 - Update from 2.14 branch
   - Properly tokenize nameserver line for servers with IPv6 address

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=ae0f462bfd5ce158dee29e41b47a3e4862a04f92

commit ae0f462bfd5ce158dee29e41b47a3e4862a04f92
Merge: af06396 4eddf93
Author: Andreas Schwab <schwab@redhat.com>
Date:   Mon Aug 15 14:25:11 2011 +0200

    Merge remote-tracking branch 'origin/release/2.14/master' into fedora/2.14/master


http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=af0639697455b54e2ade8556867a15893197ffe2

commit af0639697455b54e2ade8556867a15893197ffe2
Author: Andreas Schwab <schwab@redhat.com>
Date:   Mon Aug 8 18:01:47 2011 +0200

    Fix pattern when collecting getconf.speclist

diff --git a/posix/Makefile b/posix/Makefile
index 6681932..e668ff4 100644
--- a/posix/Makefile
+++ b/posix/Makefile
@@ -327,6 +327,6 @@ $(inst_libexecdir)/getconf: $(inst_bindir)/getconf \
 
 $(objpfx)getconf.speclist: getconf.speclist.h
 	$(CC) -E $(CFLAGS) $(CPPFLAGS) $< \
-	  | sed -n -e '/START_OF_STRINGS/,$${/\(POSIX_V[67]\|_XBS5\)_/{s/^[^"]*"//;s/".*$$//;p}}' \
+	  | sed -n -e '/START_OF_STRINGS/,$${/\(POSIX_V[67]\|XBS5\)_/{s/^[^"]*"//;s/".*$$//;p}}' \
 	  > $@.new
 	mv -f $@.new $@

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=3cc745c62f872df8b88068907ab7a646d827a122

commit 3cc745c62f872df8b88068907ab7a646d827a122
Author: Andreas Schwab <schwab@redhat.com>
Date:   Fri Aug 12 14:18:02 2011 +0200

    Filter out GLIBC_PRIVATE symbols again

diff --git a/fedora/glibc.spec.in b/fedora/glibc.spec.in
index 57a5aab..a7d2eda 100644
--- a/fedora/glibc.spec.in
+++ b/fedora/glibc.spec.in
@@ -86,8 +86,7 @@ BuildRequires: gcc >= 4.1.0-0.17
 BuildRequires: elfutils >= 0.72
 BuildRequires: rpm >= 4.2-0.56
 %endif
-%define __find_provides %{_builddir}/%{glibcsrcdir}/find_provides.sh
-%define _filter_GLIBC_PRIVATE 1
+%global __filter_GLIBC_PRIVATE 1
 
 %description
 The glibc package contains standard libraries which are used by
@@ -265,12 +264,6 @@ rm -f sysdeps/powerpc/powerpc32/power4/hp-timing.[ch]
 %endif
 
 find . -type f -size 0 -o -name "*.orig" -exec rm -f {} \;
-cat > find_provides.sh <<EOF
-#!/bin/sh
-/usr/lib/rpm/find-provides | grep -v GLIBC_PRIVATE
-exit 0
-EOF
-chmod +x find_provides.sh
 touch `find . -name configure`
 touch locale/programs/*-kw.h
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                                          |   21 +++++++++++++
 fedora/glibc.spec.in                               |   17 +++++------
 intl/l10nflist.c                                   |   24 +++++++++------
 locale/Makefile                                    |   31 ++++++++++++-------
 nptl/ChangeLog                                     |    7 ++++
 nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S |    6 ++-
 .../sysv/linux/x86_64/pthread_cond_timedwait.S     |    6 ++--
 .../unix/sysv/linux/x86_64/pthread_cond_wait.S     |    4 +-
 posix/Makefile                                     |    2 +-
 9 files changed, 79 insertions(+), 39 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]