From fdc4cd255841846202a103d88c65e06c5c25e399 Mon Sep 17 00:00:00 2001 From: AlmaLinux RelEng Bot Date: Tue, 26 May 2026 07:01:22 -0400 Subject: [PATCH] import UBI glibc-2.39-124.el10_2 --- glibc-RHEL-149709.patch | 180 + glibc-RHEL-159427-1.patch | 369 + glibc-RHEL-159427-2.patch | 107 + glibc-RHEL-159427-3.patch | 70 + glibc-RHEL-159427-4.patch | 681 ++ glibc-RHEL-159427-5.patch | 177 + glibc-RHEL-162885.patch | 321 + patch-git-generated-commit.txt | 2 +- patch-git-generated-log.txt | 11640 ++++++++++++++++--------------- 9 files changed, 7786 insertions(+), 5761 deletions(-) create mode 100644 glibc-RHEL-149709.patch create mode 100644 glibc-RHEL-159427-1.patch create mode 100644 glibc-RHEL-159427-2.patch create mode 100644 glibc-RHEL-159427-3.patch create mode 100644 glibc-RHEL-159427-4.patch create mode 100644 glibc-RHEL-159427-5.patch create mode 100644 glibc-RHEL-162885.patch diff --git a/glibc-RHEL-149709.patch b/glibc-RHEL-149709.patch new file mode 100644 index 0000000..49e72e1 --- /dev/null +++ b/glibc-RHEL-149709.patch @@ -0,0 +1,180 @@ +commit d8997716a1ca22cf038eac86ed286830ba9818cc +Author: DJ Delorie +Date: Wed Apr 1 17:52:25 2026 -0400 + + nss: fix __get_default_domain logic + + Fix logic bug in __nss_get_default_domain that prevents + proper initialization. + + Because this function is not exposed, the test case must link + against the object directly. + + Bug origin commit: 64d1e08ea822bf47cb2796ad0f727136227f983c + + Co-authored-by: Florian Weimer + Reviewed-by: Frédéric Bérat + +diff --git a/nss/Makefile b/nss/Makefile +index 400ee3d5eefe3bd1..a9d0715d885ddb0d 100644 +--- a/nss/Makefile ++++ b/nss/Makefile +@@ -317,6 +317,7 @@ tests := \ + test-netdb \ + test-rpcent \ + testgrp \ ++ tst-default-domain \ + tst-fgetsgent_r \ + tst-getaddrinfo \ + tst-getaddrinfo2 \ +@@ -510,6 +511,8 @@ endif + $(objpfx)tst-nss-files-alias-leak.out: $(objpfx)libnss_files.so + $(objpfx)tst-nss-files-alias-truncated.out: $(objpfx)libnss_files.so + ++$(objpfx)tst-default-domain: $(objpfx)nisdomain.os ++ + tst-nss-gai-hv2-canonname-ENV = \ + MALLOC_TRACE=$(objpfx)tst-nss-gai-hv2-canonname.mtrace \ + LD_PRELOAD=$(common-objpfx)/malloc/libc_malloc_debug.so +diff --git a/nss/nss_compat/nisdomain.c b/nss/nss_compat/nisdomain.c +index 1c9d6423d3dc7e74..90b227f131ac787c 100644 +--- a/nss/nss_compat/nisdomain.c ++++ b/nss/nss_compat/nisdomain.c +@@ -36,7 +36,7 @@ __nss_get_default_domain (char **outdomain) + + __libc_lock_lock (domainname_lock); + +- if (domainname[0] != '\0') ++ if (domainname[0] == '\0') + { + if (getdomainname (domainname, MAXDOMAINNAMELEN) < 0) + result = errno; +diff --git a/nss/tst-default-domain.c b/nss/tst-default-domain.c +new file mode 100644 +index 0000000000000000..2fa9153d8802d4c3 +--- /dev/null ++++ b/nss/tst-default-domain.c +@@ -0,0 +1,123 @@ ++/* Basic test of __nss_get_default_domain ++ Copyright (C) 2026 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ ++#include ++#include ++#include ++ ++#include "nss_compat/nisdomain.h" ++ ++#include ++#include ++#include ++#include ++ ++char unset_domain[] = "unset_domain"; ++char new_domain[] = "new_domain"; ++ ++/* This function checks the __nss_get_default_domain() function in ++ nss_compat/nssdomain.c. Because this is an internal function to ++ libnss_compat.so, the Makefile will link that object to this test ++ case directly. */ ++ ++static int ++do_test (void) ++{ ++ char *domain_name; ++ char buf[1024]; ++ ++ /* We need to be in a network namespace so we can change the domain ++ name without interfering with the host system. */ ++ support_become_root (); ++ support_enter_network_namespace (); ++ if (!support_in_uts_namespace ()) ++ return EXIT_UNSUPPORTED; ++ ++ /* First pass: set an empty domain and make sure it's returned ++ correctly. This should not be cached. */ ++ ++ /* Set the domain name to a known value. */ ++ TEST_VERIFY (setdomainname ("", 0) == 0); ++ ++ /* Make sure it got set. */ ++ TEST_VERIFY (getdomainname (buf, sizeof(buf)) == 0); ++ TEST_COMPARE_STRING (buf, ""); ++ ++ /* Set this to a known "unknown" value so we can detect if it's not ++ changed. */ ++ domain_name = unset_domain; ++ ++ /* This is the function we're testing. */ ++ TEST_VERIFY (__nss_get_default_domain (& domain_name) == 0); ++ ++ /* Make sure the correct domain name is returned. */ ++ TEST_VERIFY (domain_name != NULL); ++ TEST_COMPARE_STRING (domain_name, ""); ++ ++ /* Second pass: set a non-empty domain and make sure it's returned ++ correctly. This works because the empty domain is not ++ cached. */ ++ ++ /* Set the domain name to a known value. */ ++ TEST_VERIFY (setdomainname (new_domain, strlen (new_domain)) == 0); ++ ++ /* Make sure it got set. */ ++ TEST_VERIFY (getdomainname (buf, sizeof(buf)) == 0); ++ TEST_COMPARE_STRING (buf, new_domain); ++ ++ /* Set this to a known "unknown" value so we can detect if it's not ++ changed. */ ++ domain_name = unset_domain; ++ ++ /* This is the function we're testing. */ ++ TEST_VERIFY (__nss_get_default_domain (& domain_name) == 0); ++ ++ /* Make sure the correct domain name is returned. */ ++ TEST_VERIFY (domain_name != NULL); ++ TEST_COMPARE_STRING (domain_name, new_domain); ++ ++ /* The function caches the name, so check it twice. */ ++ TEST_VERIFY (__nss_get_default_domain (& domain_name) == 0); ++ ++ TEST_VERIFY (domain_name != NULL); ++ TEST_COMPARE_STRING (domain_name, new_domain); ++ ++ /* Third pass: set an empty domain again but expect the cached ++ value. */ ++ ++ /* Set the domain name to a known value. */ ++ TEST_VERIFY (setdomainname ("", 0) == 0); ++ ++ /* Make sure it got set. */ ++ TEST_VERIFY (getdomainname (buf, sizeof(buf)) == 0); ++ TEST_COMPARE_STRING (buf, ""); ++ ++ /* Set this to a known "unknown" value so we can detect if it's not ++ changed. */ ++ domain_name = unset_domain; ++ ++ /* This is the function we're testing. */ ++ TEST_VERIFY (__nss_get_default_domain (& domain_name) == 0); ++ ++ TEST_VERIFY (domain_name != NULL); ++ TEST_COMPARE_STRING (domain_name, new_domain); ++ ++ return 0; ++} ++ ++#include diff --git a/glibc-RHEL-159427-1.patch b/glibc-RHEL-159427-1.patch new file mode 100644 index 0000000..57ce0ce --- /dev/null +++ b/glibc-RHEL-159427-1.patch @@ -0,0 +1,369 @@ +commit 332f8e62afef53492dd8285490bcf7aeef18c80a +Author: Frédéric Bérat +Date: Fri Sep 5 16:14:38 2025 +0200 + + tls: Add debug logging for TLS and TCB management + + Introduce the `DL_DEBUG_TLS` debug mask to enable detailed logging for + Thread-Local Storage (TLS) and Thread Control Block (TCB) management. + + This change integrates a new `tls` option into the `LD_DEBUG` + environment variable, allowing developers to trace: + - TCB allocation, deallocation, and reuse events in `dl-tls.c`, + `nptl/allocatestack.c`, and `nptl/nptl-stack.c`. + - Thread startup events, including the TID and TCB address, in + `nptl/pthread_create.c`. + + A new test, `tst-dl-debug-tid`, has been added to validate the + functionality of this new debug logging, ensuring that relevant messages + are correctly generated for both main and worker threads. + + This enhances the debugging capabilities for diagnosing issues related + to TLS allocation and thread lifecycle within the dynamic linker. + + Reviewed-by: DJ Delorie + +diff --git a/elf/dl-tls.c b/elf/dl-tls.c +index b13e752358a059a4..85db1969b921d9e6 100644 +--- a/elf/dl-tls.c ++++ b/elf/dl-tls.c +@@ -497,6 +497,8 @@ _dl_allocate_tls_storage (void) + result = allocate_dtv (result); + if (result == NULL) + free (allocated); ++ else if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ("TCB allocated: 0x%lx\n", (unsigned long int) result); + + _dl_tls_allocate_end (); + return result; +@@ -685,6 +687,10 @@ rtld_hidden_def (_dl_allocate_tls) + void + _dl_deallocate_tls (void *tcb, bool dealloc_tcb) + { ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ("TCB deallocating: 0x%lx (dealloc_tcb=%d)\n", ++ (unsigned long int) tcb, dealloc_tcb); ++ + dtv_t *dtv = GET_DTV (tcb); + + /* We need to free the memory allocated for non-static TLS. */ +diff --git a/elf/rtld.c b/elf/rtld.c +index 8b189a87f76e7e08..c9082bb31643d9ab 100644 +--- a/elf/rtld.c ++++ b/elf/rtld.c +@@ -2469,10 +2469,12 @@ process_dl_debug (struct dl_main_state *state, const char *dl_debug) + DL_DEBUG_VERSIONS | DL_DEBUG_IMPCALLS }, + { LEN_AND_STR ("scopes"), "display scope information", + DL_DEBUG_SCOPES }, ++ { LEN_AND_STR ("tls"), "display TLS structures processing", ++ DL_DEBUG_TLS }, + { LEN_AND_STR ("all"), "all previous options combined", + DL_DEBUG_LIBS | DL_DEBUG_RELOC | DL_DEBUG_FILES | DL_DEBUG_SYMBOLS + | DL_DEBUG_BINDINGS | DL_DEBUG_VERSIONS | DL_DEBUG_IMPCALLS +- | DL_DEBUG_SCOPES }, ++ | DL_DEBUG_SCOPES | DL_DEBUG_TLS }, + { LEN_AND_STR ("statistics"), "display relocation statistics", + DL_DEBUG_STATISTICS }, + { LEN_AND_STR ("unused"), "determined unused DSOs", +diff --git a/nptl/Makefile b/nptl/Makefile +index 4d3271ba71f0bc65..89e2b8c4523714ab 100644 +--- a/nptl/Makefile ++++ b/nptl/Makefile +@@ -373,6 +373,7 @@ tests-container = tst-pthread-getattr + tests-internal := \ + tst-barrier5 \ + tst-cond22 \ ++ tst-dl-debug-tid \ + tst-mutex8 \ + tst-mutex8-static \ + tst-mutexpi8 \ +@@ -559,6 +560,7 @@ xtests-static += tst-setuid1-static + + ifeq ($(run-built-tests),yes) + tests-special += \ ++ $(objpfx)tst-dl-debug-tid.out \ + $(objpfx)tst-oddstacklimit.out \ + # tests-special + ifeq ($(build-shared),yes) +@@ -693,6 +695,11 @@ tst-stackguard1-ARGS = --command "$(host-test-program-cmd) --child" + tst-stackguard1-static-ARGS = --command "$(objpfx)tst-stackguard1-static --child" + + ifeq ($(run-built-tests),yes) ++$(objpfx)tst-dl-debug-tid.out: tst-dl-debug-tid.sh $(objpfx)tst-dl-debug-tid ++ $(SHELL) $< $(common-objpfx) '$(test-wrapper)' '$(rtld-prefix)' \ ++ '$(test-wrapper-env)' '$(run-program-env)' \ ++ $(objpfx)tst-dl-debug-tid > $@; $(evaluate-test) ++ + $(objpfx)tst-oddstacklimit.out: $(objpfx)tst-oddstacklimit $(objpfx)tst-basic1 + $(test-program-prefix) $< --command '$(host-test-program-cmd)' > $@; \ + $(evaluate-test) +diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c +index d9adb5856cefa533..b26ebc8680d7280a 100644 +--- a/nptl/allocatestack.c ++++ b/nptl/allocatestack.c +@@ -116,6 +116,10 @@ get_cached_stack (size_t *sizep, void **memp) + /* Release the lock early. */ + lll_unlock (GL (dl_stack_cache_lock), LLL_PRIVATE); + ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ GLRO (dl_debug_printf) ("TLS TCB reused from cache: 0x%lx\n", ++ (unsigned long int) result); ++ + /* Report size and location of the stack to the caller. */ + *sizep = result->stackblock_size; + *memp = result->stackblock; +@@ -293,6 +297,12 @@ allocate_stack (const struct pthread_attr *attr, struct pthread **pdp, + stack cache nor will the memory (except the TLS memory) be freed. */ + pd->user_stack = true; + ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ GLRO (dl_debug_printf) ( ++ "TCB for user-supplied stack created: 0x%lx, stack=0x%lx, size=%lu\n", ++ (unsigned long int) pd, (unsigned long int) pd->stackblock, ++ (unsigned long int) pd->stackblock_size); ++ + /* This is at least the second thread. */ + pd->header.multiple_threads = 1; + +@@ -427,6 +437,10 @@ allocate_stack (const struct pthread_attr *attr, struct pthread **pdp, + /* Don't allow setxid until cloned. */ + pd->setxid_futex = -1; + ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ GLRO (dl_debug_printf) ("TCB for new stack allocated: 0x%lx\n", ++ (unsigned long int) pd); ++ + /* Allocate the DTV for this thread. */ + if (_dl_allocate_tls (TLS_TPADJ (pd)) == NULL) + { +diff --git a/nptl/nptl-stack.c b/nptl/nptl-stack.c +index 396f2261411aa079..f634d6a29fbdd624 100644 +--- a/nptl/nptl-stack.c ++++ b/nptl/nptl-stack.c +@@ -75,6 +75,11 @@ __nptl_free_stacks (size_t limit) + /* Account for the freed memory. */ + GL (dl_stack_cache_actsize) -= curr->stackblock_size; + ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ GLRO (dl_debug_printf) ( ++ "TCB cache full, deallocating: TID=%ld, TCB=0x%lx\n", ++ (long int) curr->tid, (unsigned long int) curr); ++ + /* Free the memory associated with the ELF TLS. */ + _dl_deallocate_tls (TLS_TPADJ (curr), false); + +@@ -96,6 +101,12 @@ static inline void + __attribute ((always_inline)) + queue_stack (struct pthread *stack) + { ++ /* The 'stack' parameter is a pointer to the TCB (struct pthread), ++ not just the stack. */ ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ GLRO (dl_debug_printf) ("TCB deallocated into cache: TID=%ld, TCB=0x%lx\n", ++ (long int) stack->tid, (unsigned long int) stack); ++ + /* We unconditionally add the stack to the list. The memory may + still be in use but it will not be reused until the kernel marks + the stack as not used anymore. */ +@@ -123,8 +134,16 @@ __nptl_deallocate_stack (struct pthread *pd) + if (__glibc_likely (! pd->user_stack)) + (void) queue_stack (pd); + else +- /* Free the memory associated with the ELF TLS. */ +- _dl_deallocate_tls (TLS_TPADJ (pd), false); ++ { ++ /* User-provided stack. We must not free it. But we must free ++ the TLS memory. */ ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ GLRO (dl_debug_printf) ( ++ "TCB for user-supplied stack deallocated: TID=%ld, TCB=0x%lx\n", ++ (long int) pd->tid, (unsigned long int) pd); ++ /* Free the memory associated with the ELF TLS. */ ++ _dl_deallocate_tls (TLS_TPADJ (pd), false); ++ } + + lll_unlock (GL (dl_stack_cache_lock), LLL_PRIVATE); + } +diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c +index a6254b1204ccfc80..b836a3ca9216245d 100644 +--- a/nptl/pthread_create.c ++++ b/nptl/pthread_create.c +@@ -364,6 +364,10 @@ start_thread (void *arg) + goto out; + } + ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ GLRO (dl_debug_printf) ("Thread starting: TID=%ld, TCB=0x%lx\n", ++ (long int) pd->tid, (unsigned long int) pd); ++ + /* Initialize resolver state pointer. */ + __resp = &pd->res; + +diff --git a/nptl/tst-dl-debug-tid.c b/nptl/tst-dl-debug-tid.c +new file mode 100644 +index 0000000000000000..231fa43516b233b3 +--- /dev/null ++++ b/nptl/tst-dl-debug-tid.c +@@ -0,0 +1,69 @@ ++/* Test for thread ID logging in dynamic linker. ++ Copyright (C) 2025 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ ++/* This test checks that the dynamic linker correctly logs thread creation ++ and destruction. It creates a detached thread followed by a joinable ++ thread to exercise different code paths. A barrier is used to ensure ++ the detached thread has started before the joinable one is created, ++ making the test more deterministic. The tst-dl-debug-tid.sh shell script ++ wrapper then verifies the LD_DEBUG output. */ ++ ++#include ++#include ++#include ++#include ++ ++static void * ++thread_function (void *arg) ++{ ++ if (arg) ++ pthread_barrier_wait ((pthread_barrier_t *) arg); ++ return NULL; ++} ++ ++static int ++do_test (void) ++{ ++ pthread_t thread1; ++ pthread_attr_t attr; ++ pthread_barrier_t barrier; ++ ++ pthread_barrier_init (&barrier, NULL, 2); ++ ++ /* A detached thread. ++ * Deallocation is done by the thread itself upon exit. */ ++ xpthread_attr_init (&attr); ++ xpthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED); ++ /* We don't need the thread handle for the detached thread. */ ++ xpthread_create (&attr, thread_function, &barrier); ++ xpthread_attr_destroy (&attr); ++ ++ /* Wait for the detached thread to be executed. */ ++ pthread_barrier_wait (&barrier); ++ pthread_barrier_destroy (&barrier); ++ ++ /* A joinable thread. ++ * Deallocation is done by the main thread in pthread_join. */ ++ thread1 = xpthread_create (NULL, thread_function, NULL); ++ ++ xpthread_join (thread1); ++ ++ return 0; ++} ++ ++#include +diff --git a/nptl/tst-dl-debug-tid.sh b/nptl/tst-dl-debug-tid.sh +new file mode 100644 +index 0000000000000000..93d27134a09eaca7 +--- /dev/null ++++ b/nptl/tst-dl-debug-tid.sh +@@ -0,0 +1,72 @@ ++#!/bin/sh ++# Test for thread ID logging in dynamic linker. ++# Copyright (C) 2025 Free Software Foundation, Inc. ++# This file is part of the GNU C Library. ++# ++# The GNU C Library is free software; you can redistribute it and/or ++# modify it under the terms of the GNU Lesser General Public ++# License as published by the Free Software Foundation; either ++# version 2.1 of the License, or (at your option) any later version. ++# ++# The GNU C Library is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++# Lesser General Public License for more details. ++# ++# You should have received a copy of the GNU Lesser General Public ++# License along with the GNU C Library; if not, see ++# . ++ ++# This script runs the tst-dl-debug-tid test case and verifies its ++# LD_DEBUG output. It checks for thread creation/destruction messages ++# to ensure the dynamic linker's thread-aware logging is working. ++ ++set -e ++ ++# Arguments are from Makefile. ++common_objpfx="$1" ++test_wrapper="$2" ++rtld_prefix="$3" ++test_wrapper_env="$4" ++run_program_env="$5" ++test_program="$6" ++ ++debug_output="${common_objpfx}elf/tst-dl-debug-tid.debug" ++rm -f "${debug_output}".* ++ ++# Run the test program with LD_DEBUG=tls. ++eval "${test_wrapper_env}" LD_DEBUG=tls LD_DEBUG_OUTPUT="${debug_output}" \ ++ "${test_wrapper}" "${rtld_prefix}" "${test_program}" ++ ++debug_output=$(ls "${debug_output}".*) ++# Check for the "Thread starting" message. ++if ! grep -q 'Thread starting: TID=' "${debug_output}"; then ++ echo "error: 'Thread starting' message not found" ++ cat "${debug_output}" ++ exit 1 ++fi ++ ++# Check that we have a message where the PID (from prefix) is different ++# from the TID (in the message). This indicates a worker thread log. ++if ! grep 'Thread starting: TID=' "${debug_output}" | awk -F '[ \t:]+' '{ ++ sub(/,/, "", $5); ++ sub(/TID=/, "", $5); ++ if ($1 != $5) ++ exit 0; ++ exit 1 ++}'; then ++ echo "error: No 'Thread starting' message from a worker thread found" ++ cat "${debug_output}" ++ exit 1 ++fi ++ ++# We expect messages from thread creation and destruction. ++if ! grep -q 'TCB allocated\|TCB deallocating\|TCB reused\|TCB deallocated' \ ++ "${debug_output}"; then ++ echo "error: Expected TCB allocation/deallocation message not found" ++ cat "${debug_output}" ++ exit 1 ++fi ++ ++cat "${debug_output}" ++rm -f "${debug_output}" +diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h +index 5512c83d536874cb..3b10639e0a8a4de6 100644 +--- a/sysdeps/generic/ldsodefs.h ++++ b/sysdeps/generic/ldsodefs.h +@@ -547,8 +547,9 @@ struct rtld_global_ro + #define DL_DEBUG_STATISTICS (1 << 7) + #define DL_DEBUG_UNUSED (1 << 8) + #define DL_DEBUG_SCOPES (1 << 9) +-/* These two are used only internally. */ ++/* DL_DEBUG_HELP is only used internally. */ + #define DL_DEBUG_HELP (1 << 10) ++#define DL_DEBUG_TLS (1 << 11) + + /* Platform name. */ + EXTERN const char *_dl_platform; diff --git a/glibc-RHEL-159427-2.patch b/glibc-RHEL-159427-2.patch new file mode 100644 index 0000000..f8144a8 --- /dev/null +++ b/glibc-RHEL-159427-2.patch @@ -0,0 +1,107 @@ +commit d4d472366ba69df7b14eba22a75f887b99855d70 +Author: Frédéric Bérat +Date: Thu Oct 2 19:15:29 2025 +0200 + + docs: Add dynamic linker environment variable docs + + The Dynamic Linker chapter now includes a new section detailing + environment variables that influence its behavior. + + This new section documents the `LD_DEBUG` environment variable, + explaining how to enable debugging output and listing its various + keywords like `libs`, `reloc`, `files`, `symbols`, `bindings`, + `versions`, `scopes`, `tls`, `all`, `statistics`, `unused`, and `help`. + + It also documents `LD_DEBUG_OUTPUT`, which controls where the debug + output is written, allowing redirection to a file with the process ID + appended. + + This provides users with essential information for controlling and + debugging the dynamic linker. + + Reviewed-by: DJ Delorie + +diff --git a/manual/dynlink.texi b/manual/dynlink.texi +index 86917c7452ca9f96..be6b0193339d3863 100644 +--- a/manual/dynlink.texi ++++ b/manual/dynlink.texi +@@ -14,6 +14,8 @@ Dynamic linkers are sometimes called @dfn{dynamic loaders}. + + @menu + * Dynamic Linker Invocation:: Explicit invocation of the dynamic linker. ++* Dynamic Linker Environment Variables:: Environment variables that control the ++ dynamic linker. + * Dynamic Linker Introspection:: Interfaces for querying mapping information. + @end menu + +@@ -348,6 +350,70 @@ probed CPU are omitted. Nothing is printed if the system does not + support the XGETBV instruction. + @end table + ++@node Dynamic Linker Environment Variables ++@section Dynamic Linker Environment Variables ++ ++The behavior of the dynamic linker can be modified through various environment ++variables. ++ ++@table @code ++@item LD_DEBUG ++@cindex @code{LD_DEBUG} environment variable ++The @env{LD_DEBUG} environment variable can be set to a comma-separated list ++of keywords to enable debugging output from the dynamic linker. Setting it to ++@code{help} will display a list of all available keywords. The output is ++written to standard output by default. ++ ++@table @code ++@item libs ++Display library search paths. ++ ++@item reloc ++Display relocation processing. ++ ++@item files ++Display progress for input file processing. ++ ++@item symbols ++Display symbol table processing. ++ ++@item bindings ++Display information about symbol binding. ++ ++@item versions ++Display version dependencies. ++ ++@item scopes ++Display scope information. ++ ++@item tls ++Display information about Thread-Local Storage (TLS) handling, including TCB ++allocation, deallocation, and reuse. This is useful for debugging issues ++related to thread creation and lifecycle. ++ ++@item all ++All previous options combined. ++ ++@item statistics ++Display relocation statistics. ++ ++@item unused ++Determined unused DSOs. ++ ++@item help ++Display a help message with all available options and exit. ++@end table ++ ++@item LD_DEBUG_OUTPUT ++@cindex @code{LD_DEBUG_OUTPUT} environment variable ++If @env{LD_DEBUG} is set, the output is written to standard output by ++default. If @env{LD_DEBUG_OUTPUT} is set, the output is written to the ++file specified by its value, with the process ID appended. For example, if ++@env{LD_DEBUG_OUTPUT} is set to @file{/tmp/glibc.debug}, the output will be ++written to a file named @file{/tmp/glibc.debug.12345}, where @code{12345} is ++the process ID. ++@end table ++ + @node Dynamic Linker Introspection + @section Dynamic Linker Introspection + diff --git a/glibc-RHEL-159427-3.patch b/glibc-RHEL-159427-3.patch new file mode 100644 index 0000000..4db5342 --- /dev/null +++ b/glibc-RHEL-159427-3.patch @@ -0,0 +1,70 @@ +commit 20092f2ef601aef57cc184cbacd7cab39bba5a25 +Author: Yury Khrustalev +Date: Mon Dec 1 10:09:14 2025 +0000 + + nptl: tests: Fix test-wrapper use in tst-dl-debug-tid.sh + + Test wrapper script was used twice: once to run the test + command and second time within the text command which + seems unnecessary and results in false errors when running + this test. + + Fixes 332f8e62afef53492dd8285490bcf7aeef18c80a + + Reviewed-by: Frédéric Bérat + +diff --git a/nptl/Makefile b/nptl/Makefile +index 89e2b8c4523714ab..44bc59a2d3fea89f 100644 +--- a/nptl/Makefile ++++ b/nptl/Makefile +@@ -696,8 +696,8 @@ tst-stackguard1-static-ARGS = --command "$(objpfx)tst-stackguard1-static --child + + ifeq ($(run-built-tests),yes) + $(objpfx)tst-dl-debug-tid.out: tst-dl-debug-tid.sh $(objpfx)tst-dl-debug-tid +- $(SHELL) $< $(common-objpfx) '$(test-wrapper)' '$(rtld-prefix)' \ +- '$(test-wrapper-env)' '$(run-program-env)' \ ++ $(SHELL) $< $(common-objpfx) '$(test-wrapper-env)' '$(rtld-prefix)' \ ++ '$(run-program-env)' \ + $(objpfx)tst-dl-debug-tid > $@; $(evaluate-test) + + $(objpfx)tst-oddstacklimit.out: $(objpfx)tst-oddstacklimit $(objpfx)tst-basic1 +diff --git a/nptl/tst-dl-debug-tid.sh b/nptl/tst-dl-debug-tid.sh +index 93d27134a09eaca7..9ee31ac4f241f0b4 100644 +--- a/nptl/tst-dl-debug-tid.sh ++++ b/nptl/tst-dl-debug-tid.sh +@@ -25,18 +25,17 @@ set -e + + # Arguments are from Makefile. + common_objpfx="$1" +-test_wrapper="$2" ++test_wrapper_env="$2" + rtld_prefix="$3" +-test_wrapper_env="$4" +-run_program_env="$5" +-test_program="$6" ++run_program_env="$4" ++test_program="$5" + + debug_output="${common_objpfx}elf/tst-dl-debug-tid.debug" + rm -f "${debug_output}".* + + # Run the test program with LD_DEBUG=tls. + eval "${test_wrapper_env}" LD_DEBUG=tls LD_DEBUG_OUTPUT="${debug_output}" \ +- "${test_wrapper}" "${rtld_prefix}" "${test_program}" ++ "${rtld_prefix}" "${test_program}" + + debug_output=$(ls "${debug_output}".*) + # Check for the "Thread starting" message. +@@ -49,9 +48,9 @@ fi + # Check that we have a message where the PID (from prefix) is different + # from the TID (in the message). This indicates a worker thread log. + if ! grep 'Thread starting: TID=' "${debug_output}" | awk -F '[ \t:]+' '{ +- sub(/,/, "", $5); +- sub(/TID=/, "", $5); +- if ($1 != $5) ++ sub(/,/, "", $4); ++ sub(/TID=/, "", $4); ++ if ($1 != $4) + exit 0; + exit 1 + }'; then diff --git a/glibc-RHEL-159427-4.patch b/glibc-RHEL-159427-4.patch new file mode 100644 index 0000000..02aea3e --- /dev/null +++ b/glibc-RHEL-159427-4.patch @@ -0,0 +1,681 @@ +commit 1e47dbcce4d5cf2ce71377e729014e454a3e15ae +Author: Frédéric Bérat +Date: Fri Dec 12 16:19:43 2025 +0100 + + elf(tls): Add debug logging for TLS operations + + This commit introduces extensive debug logging for thread-local storage + (TLS) operations within the dynamic linker. When `LD_DEBUG=tls` is + enabled, messages are printed for: + - TLS module assignment and release. + - DTV (Dynamic Thread Vector) resizing events. + - TLS block allocations and deallocations. + - `__tls_get_addr` slow path events (DTV updates, lazy allocations, and + static TLS usage). + + The log format is standardized to use a "tls: " prefix and identifies + modules using the "modid %lu" convention. To aid in debugging + multithreaded applications, thread-specific logs include the Thread + Control Block (TCB) address to identify the context of the operation. + + A new test module `tst-tls-debug-mod.c` and a corresponding shell script + `tst-tls-debug-recursive.sh` have been added. Additionally, the existing + `tst-dl-debug-tid` NPTL test has been updated to verify these TLS debug + messages in a multithreaded context. + + Reviewed-by: Adhemerval Zanella + +Conflicts: + elf/Makefile + (fixup context) + elf/dl-tls.c + (missing 5e249192cac7354af02a7347a0d8c984e0c88ed3 downstream) + sysdeps/x86_64/dl-tls.c + (missing 5e249192cac7354af02a7347a0d8c984e0c88ed3 downstream) + +diff --git a/elf/Makefile b/elf/Makefile +index 73c426ae9c1da05c..8651a96bf260416c 100644 +--- a/elf/Makefile ++++ b/elf/Makefile +@@ -1352,6 +1352,7 @@ $(objpfx)tst-glibcelf.out: tst-glibcelf.py elf.h $(..)/scripts/glibcelf.py \ + + ifeq ($(run-built-tests),yes) + tests-special += $(objpfx)tst-tls-allocation-failure-static-patched.out ++tests-special += $(objpfx)tst-tls-debug-recursive.out + endif + + # The test requires shared _and_ PIE because the executable +@@ -3339,3 +3340,15 @@ tst-tls22-mod1.so-no-z-defs = yes + tst-tls22-mod1-gnu2.so-no-z-defs = yes + tst-tls22-mod2.so-no-z-defs = yes + tst-tls22-mod2-gnu2.so-no-z-defs = yes ++ ++ifeq ($(run-built-tests),yes) ++$(objpfx)tst-tls-debug-recursive.out: tst-tls-debug-recursive.sh \ ++ $(objpfx)tst-recursive-tls \ ++ $(objpfx)tst-recursive-tlsmallocmod.so \ ++ $(patsubst %,$(objpfx)tst-recursive-tlsmod%.so, \ ++ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15) ++ $(SHELL) $< $(common-objpfx) '$(test-wrapper-env)' \ ++ '$(rtld-prefix)' '$(run_program_env)' \ ++ $(objpfx)tst-recursive-tls > $@; \ ++ $(evaluate-test) ++endif +diff --git a/elf/dl-close.c b/elf/dl-close.c +index fb27a1231c1c5b66..708e88c68f7d5482 100644 +--- a/elf/dl-close.c ++++ b/elf/dl-close.c +@@ -74,6 +74,11 @@ remove_slotinfo (size_t idx, struct dtv_slotinfo_list *listp, size_t disp, + if (__glibc_likely (old_map != NULL)) + { + /* Mark the entry as unused. These can be read concurrently. */ ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ( ++ "tls: release modid %lu from %s [%ld]\n", ++ (unsigned long int) idx, DSO_FILENAME (old_map->l_name), ++ (long int) old_map->l_ns); + atomic_store_relaxed (&listp->slotinfo[idx - disp].gen, + GL(dl_tls_generation) + 1); + atomic_store_relaxed (&listp->slotinfo[idx - disp].map, NULL); +diff --git a/elf/dl-tls.c b/elf/dl-tls.c +index 85db1969b921d9e6..41f76bff9a1bbebe 100644 +--- a/elf/dl-tls.c ++++ b/elf/dl-tls.c +@@ -209,6 +209,12 @@ _dl_assign_tls_modid (struct link_map *l) + } + + l->l_tls_modid = result; ++ ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ("tls: assign modid %lu to %s [%ld]\n", ++ (unsigned long int) result, ++ DSO_FILENAME (l->l_name), ++ (long int) l->l_ns); + } + + +@@ -498,7 +504,7 @@ _dl_allocate_tls_storage (void) + if (result == NULL) + free (allocated); + else if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) +- _dl_debug_printf ("TCB allocated: 0x%lx\n", (unsigned long int) result); ++ _dl_debug_printf ("tls: allocate TCB 0x%lx\n", (unsigned long int) result); + + _dl_tls_allocate_end (); + return result; +@@ -511,13 +517,18 @@ extern dtv_t _dl_static_dtv[]; + #endif + + static dtv_t * +-_dl_resize_dtv (dtv_t *dtv, size_t max_modid) ++_dl_resize_dtv (dtv_t *dtv, size_t max_modid, void *tcb) + { + /* Resize the dtv. */ + dtv_t *newp; + size_t newsize = max_modid + DTV_SURPLUS; + size_t oldsize = dtv[-1].counter; + ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ("tls: DTV resized for TCB 0x%lx: oldsize=%lu, newsize=%lu\n", ++ (unsigned long int) tcb, ++ (unsigned long int) oldsize, (unsigned long int) newsize); ++ + _dl_tls_allocate_begin (); + if (dtv == GL(dl_initial_dtv)) + { +@@ -586,7 +597,7 @@ _dl_allocate_tls_init (void *result, bool main_thread) + if (dtv[-1].counter < GL(dl_tls_max_dtv_idx)) + { + /* Resize the dtv. */ +- dtv = _dl_resize_dtv (dtv, GL(dl_tls_max_dtv_idx)); ++ dtv = _dl_resize_dtv (dtv, GL(dl_tls_max_dtv_idx), result); + + /* Install this new dtv in the thread data structures. */ + INSTALL_DTV (result, &dtv[-1]); +@@ -677,9 +688,14 @@ rtld_hidden_def (_dl_allocate_tls_init) + void * + _dl_allocate_tls (void *mem) + { +- return _dl_allocate_tls_init (mem == NULL +- ? _dl_allocate_tls_storage () +- : allocate_dtv (mem), false); ++ void *result = _dl_allocate_tls_init (mem == NULL ++ ? _dl_allocate_tls_storage () ++ : allocate_dtv (mem), false); ++ if (__glibc_unlikely (result != NULL ++ && (GLRO (dl_debug_mask) & DL_DEBUG_TLS))) ++ _dl_debug_printf ("tls: TLS initialized for TCB 0x%lx\n", ++ (unsigned long int) result); ++ return result; + } + rtld_hidden_def (_dl_allocate_tls) + +@@ -688,14 +704,22 @@ void + _dl_deallocate_tls (void *tcb, bool dealloc_tcb) + { + if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) +- _dl_debug_printf ("TCB deallocating: 0x%lx (dealloc_tcb=%d)\n", ++ _dl_debug_printf ("tls: deallocate TCB 0x%lx (dealloc_tcb=%d)\n", + (unsigned long int) tcb, dealloc_tcb); + + dtv_t *dtv = GET_DTV (tcb); + + /* We need to free the memory allocated for non-static TLS. */ + for (size_t cnt = 0; cnt < dtv[-1].counter; ++cnt) +- free (dtv[1 + cnt].pointer.to_free); ++ { ++ if (dtv[1 + cnt].pointer.to_free != NULL ++ && __glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ( ++ "tls: deallocate block 0x%lx for modid %lu; TCB=0x%lx\n", ++ (unsigned long int) dtv[1 + cnt].pointer.to_free, ++ (unsigned long int) (1 + cnt), (unsigned long int) tcb); ++ free (dtv[1 + cnt].pointer.to_free); ++ } + + /* The array starts with dtv[-1]. */ + if (dtv != GL(dl_initial_dtv)) +@@ -767,6 +791,12 @@ allocate_and_init (struct link_map *map) + (map->l_tls_align, map->l_tls_blocksize); + if (result.val == NULL) + oom (); ++ else if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ("tls: allocate block 0x%lx for modid %lu; size=%lu, TCB=0x%lx\n", ++ (unsigned long int) result.to_free, ++ (unsigned long int) map->l_tls_modid, ++ (unsigned long int) map->l_tls_blocksize, ++ (unsigned long int) THREAD_SELF); + + /* Initialize the memory. */ + memset (__mempcpy (result.val, map->l_tls_initimage, +@@ -868,7 +898,7 @@ _dl_update_slotinfo (unsigned long int req_modid, size_t new_gen) + continue; + + /* Resizing the dtv aborts on failure: bug 16134. */ +- dtv = _dl_resize_dtv (dtv, max_modid); ++ dtv = _dl_resize_dtv (dtv, max_modid, THREAD_SELF); + + assert (modid <= dtv[-1].counter); + +@@ -889,6 +919,12 @@ _dl_update_slotinfo (unsigned long int req_modid, size_t new_gen) + least some dynamic TLS usage by interposed mallocs. */ + if (dtv[modid].pointer.to_free != NULL) + { ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ( ++ "tls: DTV update for TCB 0x%lx: modid %lu deallocated block 0x%lx\n", ++ (unsigned long int) THREAD_SELF, ++ (unsigned long int) modid, ++ (unsigned long int) dtv[modid].pointer.to_free); + _dl_tls_allocate_begin (); + free (dtv[modid].pointer.to_free); + _dl_tls_allocate_end (); +@@ -969,6 +1005,11 @@ tls_get_addr_tail (GET_ADDR_ARGS, dtv_t *dtv, struct link_map *the_map) + dtv[GET_ADDR_MODULE].pointer.to_free = NULL; + dtv[GET_ADDR_MODULE].pointer.val = p; + ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ("tls: modid %lu using static TLS; TCB=0x%lx\n", ++ (unsigned long int) GET_ADDR_MODULE, ++ (unsigned long int) THREAD_SELF); ++ + return (char *) p + GET_ADDR_OFFSET; + } + else +@@ -1024,18 +1065,28 @@ __tls_get_addr (GET_ADDR_ARGS) + { + if (_dl_tls_allocate_active () + && GET_ADDR_MODULE < _dl_tls_initial_modid_limit) ++ { + /* This is a reentrant __tls_get_addr call, but we can + satisfy it because it's an initially-loaded module ID. + These TLS slotinfo slots do not change, so the + out-of-date generation counter does not matter. However, + if not in a TLS update, still update_get_addr below, to + get off the slow path eventually. */ +- ; ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ("tls: modid %lu reentrant usage; TCB=0x%lx\n", ++ (unsigned long int) GET_ADDR_MODULE, ++ (unsigned long int) THREAD_SELF); ++ } + else + { + /* Update DTV up to the global generation, see CONCURRENCY NOTES + in _dl_update_slotinfo. */ + gen = atomic_load_acquire (&GL(dl_tls_generation)); ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ( ++ "tls: modid %lu update DTV to generation %lu; TCB=0x%lx\n", ++ (unsigned long int) GET_ADDR_MODULE, (unsigned long int) gen, ++ (unsigned long int) THREAD_SELF); + return update_get_addr (GET_ADDR_PARAM, gen); + } + } +@@ -1043,7 +1094,13 @@ __tls_get_addr (GET_ADDR_ARGS) + void *p = dtv[GET_ADDR_MODULE].pointer.val; + + if (__glibc_unlikely (p == TLS_DTV_UNALLOCATED)) +- return tls_get_addr_tail (GET_ADDR_PARAM, dtv, NULL); ++ { ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ("tls: modid %lu lazy allocation; TCB=0x%lx\n", ++ (unsigned long int) GET_ADDR_MODULE, ++ (unsigned long int) THREAD_SELF); ++ return tls_get_addr_tail (GET_ADDR_PARAM, dtv, NULL); ++ } + + return (char *) p + GET_ADDR_OFFSET; + } +@@ -1113,6 +1170,10 @@ _dl_tls_initial_modid_limit_setup (void) + break; + } + _dl_tls_initial_modid_limit = idx; ++ ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ("tls: initial modid limit set to %lu\n", ++ (unsigned long int) idx); + } + + +diff --git a/elf/rtld.c b/elf/rtld.c +index c9082bb31643d9ab..8b09d8389a7050d2 100644 +--- a/elf/rtld.c ++++ b/elf/rtld.c +@@ -1237,6 +1237,11 @@ rtld_setup_main_map (struct link_map *main_map) + + /* This image gets the ID one. */ + GL(dl_tls_max_dtv_idx) = main_map->l_tls_modid = 1; ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ("tls: assign modid %lu to %s [%ld]\n", ++ (unsigned long int) main_map->l_tls_modid, ++ DSO_FILENAME (main_map->l_name), ++ (long int) main_map->l_ns); + } + break; + +diff --git a/elf/tst-recursive-tlsmodN.c b/elf/tst-recursive-tlsmodN.c +index bb7592aee6ed347e..921980605cf32a38 100644 +--- a/elf/tst-recursive-tlsmodN.c ++++ b/elf/tst-recursive-tlsmodN.c +@@ -19,10 +19,10 @@ + /* Compiled with VAR and FUNC set via -D. FUNC requires some + relocation against TLS variable VAR. */ + +-__thread int VAR; ++__thread char VAR[32768]; + + int + FUNC (void) + { +- return VAR; ++ return VAR[0]; + } +diff --git a/elf/tst-tls-debug-recursive.sh b/elf/tst-tls-debug-recursive.sh +new file mode 100755 +index 0000000000000000..083e716f7216ffd5 +--- /dev/null ++++ b/elf/tst-tls-debug-recursive.sh +@@ -0,0 +1,83 @@ ++#!/bin/sh ++# Test for TLS logging in dynamic linker. ++# Copyright (C) 2026 Free Software Foundation, Inc. ++# This file is part of the GNU C Library. ++# ++# The GNU C Library is free software; you can redistribute it and/or ++# modify it under the terms of the GNU Lesser General Public ++# License as published by the Free Software Foundation; either ++# version 2.1 of the License, or (at your option) any later version. ++# ++# The GNU C Library is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++# Lesser General Public License for more details. ++# ++# You should have received a copy of the GNU Lesser General Public ++# License along with the GNU C Library; if not, see ++# . ++ ++# This script runs the tst-tls-debug-recursive test case and verifies its ++# LD_DEBUG=tls output. It checks for various TLS-related messages ++# to ensure the dynamic linker's TLS logging is working correctly. ++ ++set -e ++common_objpfx="$1" ++test_wrapper_env="$2" ++rtld_prefix="$3" ++run_program_env="$4" ++test_program="$5" ++ ++debug_output="${common_objpfx}elf/tst-tls-debug-recursive.debug" ++rm -f "${debug_output}".* ++ ++# Run the test program with LD_DEBUG=tls. ++eval "${test_wrapper_env}" LD_DEBUG=tls LD_DEBUG_OUTPUT="${debug_output}" \ ++ "${rtld_prefix}" "${test_program}" ++ ++debug_output=$(ls "${debug_output}".*) ++ ++fail=0 ++ ++# Check for expected messages ++if ! grep -q 'tls: DTV resized for TCB 0x.*: oldsize' "${debug_output}"; then ++ echo "FAIL: DTV resized message not found" ++ fail=1 ++fi ++ ++if ! grep -q 'tls: DTV update for TCB 0x.*: modid .* deallocated block' "${debug_output}"; then ++ echo "FAIL: module deallocated during DTV update message not found" ++ fail=1 ++fi ++ ++if ! grep -q 'tls: assign modid .* to' "${debug_output}"; then ++ echo "FAIL: module assigned message not found" ++ fail=1 ++fi ++ ++if ! grep -q 'tls: allocate block .* for modid .* size=.*, TCB=0x' "${debug_output}"; then ++ echo "FAIL: module allocated message not found" ++ fail=1 ++fi ++ ++if ! grep -q 'tls: modid .* update DTV to generation .* TCB=0x' "${debug_output}"; then ++ echo "FAIL: update DTV message not found" ++ fail=1 ++fi ++ ++if ! grep -q 'tls: initial modid limit set to' "${debug_output}"; then ++ echo "FAIL: initial modid limit message not found" ++ fail=1 ++fi ++ ++if [ $fail -ne 0 ]; then ++ echo "Test FAILED" ++ cat "${debug_output}" ++ rm -f "${debug_output}" ++ exit 1 ++fi ++ ++echo "Test PASSED" ++cat "${debug_output}" ++rm -f "${debug_output}" ++exit 0 +diff --git a/nptl/Makefile b/nptl/Makefile +index 44bc59a2d3fea89f..fcb0582e3a1c2b1d 100644 +--- a/nptl/Makefile ++++ b/nptl/Makefile +@@ -273,6 +273,7 @@ CFLAGS-tst-thread-exit-clobber.o = -std=gnu++11 + LDLIBS-tst-thread-exit-clobber = -lstdc++ + CFLAGS-tst-minstack-throw.o = -std=gnu++11 + LDLIBS-tst-minstack-throw = -lstdc++ ++LDLIBS-tst-dl-debug-tid = $(libdl) + + tests = \ + tst-attr2 \ +@@ -483,6 +484,7 @@ modules-names = \ + tst-compat-forwarder-mod \ + tst-execstack-threads-mod \ + tst-stack4mod \ ++ tst-tls-debug-mod \ + tst-tls3mod \ + tst-tls5mod \ + tst-tls5moda \ +@@ -695,7 +697,8 @@ tst-stackguard1-ARGS = --command "$(host-test-program-cmd) --child" + tst-stackguard1-static-ARGS = --command "$(objpfx)tst-stackguard1-static --child" + + ifeq ($(run-built-tests),yes) +-$(objpfx)tst-dl-debug-tid.out: tst-dl-debug-tid.sh $(objpfx)tst-dl-debug-tid ++$(objpfx)tst-dl-debug-tid.out: tst-dl-debug-tid.sh $(objpfx)tst-dl-debug-tid \ ++ $(objpfx)tst-tls-debug-mod.so + $(SHELL) $< $(common-objpfx) '$(test-wrapper-env)' '$(rtld-prefix)' \ + '$(run-program-env)' \ + $(objpfx)tst-dl-debug-tid > $@; $(evaluate-test) +diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c +index b26ebc8680d7280a..2876fd7fe306c639 100644 +--- a/nptl/allocatestack.c ++++ b/nptl/allocatestack.c +@@ -117,7 +117,7 @@ get_cached_stack (size_t *sizep, void **memp) + lll_unlock (GL (dl_stack_cache_lock), LLL_PRIVATE); + + if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) +- GLRO (dl_debug_printf) ("TLS TCB reused from cache: 0x%lx\n", ++ GLRO (dl_debug_printf) ("tls: TCB reused from cache: 0x%lx\n", + (unsigned long int) result); + + /* Report size and location of the stack to the caller. */ +@@ -299,9 +299,9 @@ allocate_stack (const struct pthread_attr *attr, struct pthread **pdp, + + if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) + GLRO (dl_debug_printf) ( +- "TCB for user-supplied stack created: 0x%lx, stack=0x%lx, size=%lu\n", +- (unsigned long int) pd, (unsigned long int) pd->stackblock, +- (unsigned long int) pd->stackblock_size); ++ "tls: TCB created (user-supplied stack); stack=0x%lx, size=%lu, TCB=0x%lx\n", ++ (unsigned long int) pd->stackblock, ++ (unsigned long int) pd->stackblock_size, (unsigned long int) pd); + + /* This is at least the second thread. */ + pd->header.multiple_threads = 1; +@@ -438,7 +438,7 @@ allocate_stack (const struct pthread_attr *attr, struct pthread **pdp, + pd->setxid_futex = -1; + + if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) +- GLRO (dl_debug_printf) ("TCB for new stack allocated: 0x%lx\n", ++ GLRO (dl_debug_printf) ("tls: TCB allocated (new stack): 0x%lx\n", + (unsigned long int) pd); + + /* Allocate the DTV for this thread. */ +diff --git a/nptl/nptl-stack.c b/nptl/nptl-stack.c +index f634d6a29fbdd624..3993a7a90d14d80d 100644 +--- a/nptl/nptl-stack.c ++++ b/nptl/nptl-stack.c +@@ -77,7 +77,7 @@ __nptl_free_stacks (size_t limit) + + if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) + GLRO (dl_debug_printf) ( +- "TCB cache full, deallocating: TID=%ld, TCB=0x%lx\n", ++ "tls: TCB deallocating from full cache; TID=%ld, TCB=0x%lx\n", + (long int) curr->tid, (unsigned long int) curr); + + /* Free the memory associated with the ELF TLS. */ +@@ -104,7 +104,7 @@ queue_stack (struct pthread *stack) + /* The 'stack' parameter is a pointer to the TCB (struct pthread), + not just the stack. */ + if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) +- GLRO (dl_debug_printf) ("TCB deallocated into cache: TID=%ld, TCB=0x%lx\n", ++ GLRO (dl_debug_printf) ("tls: TCB deallocated into cache; TID=%ld, TCB=0x%lx\n", + (long int) stack->tid, (unsigned long int) stack); + + /* We unconditionally add the stack to the list. The memory may +@@ -139,7 +139,7 @@ __nptl_deallocate_stack (struct pthread *pd) + the TLS memory. */ + if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) + GLRO (dl_debug_printf) ( +- "TCB for user-supplied stack deallocated: TID=%ld, TCB=0x%lx\n", ++ "tls: TCB deallocated (user-supplied stack); TID=%ld, TCB=0x%lx\n", + (long int) pd->tid, (unsigned long int) pd); + /* Free the memory associated with the ELF TLS. */ + _dl_deallocate_tls (TLS_TPADJ (pd), false); +diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c +index b836a3ca9216245d..381ed68c05f58a1e 100644 +--- a/nptl/pthread_create.c ++++ b/nptl/pthread_create.c +@@ -365,7 +365,7 @@ start_thread (void *arg) + } + + if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) +- GLRO (dl_debug_printf) ("Thread starting: TID=%ld, TCB=0x%lx\n", ++ GLRO (dl_debug_printf) ("tls: thread starting; TID=%ld, TCB=0x%lx\n", + (long int) pd->tid, (unsigned long int) pd); + + /* Initialize resolver state pointer. */ +diff --git a/nptl/tst-dl-debug-tid.c b/nptl/tst-dl-debug-tid.c +index 231fa43516b233b3..f3b443f9786a9a99 100644 +--- a/nptl/tst-dl-debug-tid.c ++++ b/nptl/tst-dl-debug-tid.c +@@ -27,12 +27,25 @@ + #include + #include + #include ++#include ++#include ++#include + + static void * + thread_function (void *arg) + { + if (arg) + pthread_barrier_wait ((pthread_barrier_t *) arg); ++ ++ /* Load a module with TLS to verify allocation/deallocation logs. */ ++ void *h = xdlopen ("tst-tls-debug-mod.so", RTLD_NOW); ++ ++ /* Call a function that accesses TLS. */ ++ int (*fp) (void) = (int (*) (void)) xdlsym (h, "in_dso"); ++ TEST_COMPARE (fp (), 0); ++ ++ xdlclose (h); ++ + return NULL; + } + +diff --git a/nptl/tst-dl-debug-tid.sh b/nptl/tst-dl-debug-tid.sh +index 9ee31ac4f241f0b4..8708ac9f2ea25c9e 100644 +--- a/nptl/tst-dl-debug-tid.sh ++++ b/nptl/tst-dl-debug-tid.sh +@@ -39,7 +39,7 @@ eval "${test_wrapper_env}" LD_DEBUG=tls LD_DEBUG_OUTPUT="${debug_output}" \ + + debug_output=$(ls "${debug_output}".*) + # Check for the "Thread starting" message. +-if ! grep -q 'Thread starting: TID=' "${debug_output}"; then ++if ! grep -q 'tls: thread starting; TID=.*, TCB=0x' "${debug_output}"; then + echo "error: 'Thread starting' message not found" + cat "${debug_output}" + exit 1 +@@ -47,10 +47,10 @@ fi + + # Check that we have a message where the PID (from prefix) is different + # from the TID (in the message). This indicates a worker thread log. +-if ! grep 'Thread starting: TID=' "${debug_output}" | awk -F '[ \t:]+' '{ +- sub(/,/, "", $4); +- sub(/TID=/, "", $4); +- if ($1 != $4) ++if ! grep 'tls: thread starting; TID=.*, TCB=0x' "${debug_output}" | awk -F '[ \t:]+' '{ ++ sub(/TID=/, "", $5); ++ sub(/,/, "", $5); ++ if ($1 != $5) + exit 0; + exit 1 + }'; then +@@ -60,12 +60,33 @@ if ! grep 'Thread starting: TID=' "${debug_output}" | awk -F '[ \t:]+' '{ + fi + + # We expect messages from thread creation and destruction. +-if ! grep -q 'TCB allocated\|TCB deallocating\|TCB reused\|TCB deallocated' \ ++if ! grep -q 'tls: allocate TCB 0x\|tls: deallocate TCB 0x\|tls: TCB reused from cache\|tls: TCB deallocated' \ + "${debug_output}"; then + echo "error: Expected TCB allocation/deallocation message not found" + cat "${debug_output}" + exit 1 + fi + ++# Check for TLS module ID assignment. ++if ! grep -q 'tls: assign modid .* to' "${debug_output}"; then ++ echo "error: Expected 'modid ... assigned to' message not found" ++ cat "${debug_output}" ++ exit 1 ++fi ++ ++# Check for TLS block allocation. ++if ! grep -q 'tls: allocate block .* for modid .* size=.*, TCB=0x' "${debug_output}"; then ++ echo "error: Expected 'modid ... allocated' message not found" ++ cat "${debug_output}" ++ exit 1 ++fi ++ ++# TLS block deallocation might be skipped due to DTV surplus. ++if grep -q 'tls: deallocate block .* for modid .* TCB=0x' "${debug_output}"; then ++ echo "INFO: module deallocated message found" ++else ++ echo "INFO: module deallocated message not found (may be due to DTV surplus)" ++fi ++ + cat "${debug_output}" + rm -f "${debug_output}" +diff --git a/nptl/tst-tls-debug-mod.c b/nptl/tst-tls-debug-mod.c +new file mode 100644 +index 0000000000000000..0308c8a3e2d76fe1 +--- /dev/null ++++ b/nptl/tst-tls-debug-mod.c +@@ -0,0 +1,26 @@ ++/* Test for TLS logging in dynamic linker. ++ Copyright (C) 2026 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ ++__thread char tls_var[32768] __attribute__ ((tls_model ("global-dynamic"))); ++ ++int ++in_dso (void) ++{ ++ tls_var[0] = 42; ++ return tls_var[0] - 42; ++} +diff --git a/sysdeps/x86_64/dl-tls.c b/sysdeps/x86_64/dl-tls.c +index b3c1e4fcd7813b8b..8e550fc7d8efe2ff 100644 +--- a/sysdeps/x86_64/dl-tls.c ++++ b/sysdeps/x86_64/dl-tls.c +@@ -41,11 +41,36 @@ __tls_get_addr_slow (GET_ADDR_ARGS) + dtv_t *dtv = THREAD_DTV (); + + size_t gen = atomic_load_acquire (&GL(dl_tls_generation)); +- if (__glibc_unlikely (dtv[0].counter != gen) ++ if (__glibc_unlikely (dtv[0].counter != gen)) ++ { + /* See comment in __tls_get_addr in elf/dl-tls.c. */ +- && !(_dl_tls_allocate_active () +- && GET_ADDR_MODULE < _dl_tls_initial_modid_limit)) +- return update_get_addr (GET_ADDR_PARAM, gen); ++ if (_dl_tls_allocate_active () ++ && GET_ADDR_MODULE < _dl_tls_initial_modid_limit) ++ { ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ( ++ "tls: modid %lu reentrant usage; TCB=0x%lx\n", ++ (unsigned long int) GET_ADDR_MODULE, ++ (unsigned long int) THREAD_SELF); ++ } ++ else ++ { ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ( ++ "tls: modid %lu update DTV to generation %lu; TCB=0x%lx\n", ++ (unsigned long int) GET_ADDR_MODULE, (unsigned long int) gen, ++ (unsigned long int) THREAD_SELF); ++ return update_get_addr (GET_ADDR_PARAM, gen); ++ } ++ } ++ ++ if (__glibc_unlikely (dtv[GET_ADDR_MODULE].pointer.val == TLS_DTV_UNALLOCATED)) ++ { ++ if (__glibc_unlikely (GLRO (dl_debug_mask) & DL_DEBUG_TLS)) ++ _dl_debug_printf ("tls: modid %lu lazy allocation; TCB=0x%lx\n", ++ (unsigned long int) GET_ADDR_MODULE, ++ (unsigned long int) THREAD_SELF); ++ } + + return tls_get_addr_tail (GET_ADDR_PARAM, dtv, NULL); + } diff --git a/glibc-RHEL-159427-5.patch b/glibc-RHEL-159427-5.patch new file mode 100644 index 0000000..4dd6244 --- /dev/null +++ b/glibc-RHEL-159427-5.patch @@ -0,0 +1,177 @@ +commit 9181dc6eb6084da95d8c14d9defe96189fd0360d +Author: Frédéric Bérat +Date: Tue Jan 27 23:07:17 2026 +0100 + + feat(rtld): Allow LD_DEBUG category exclusion + + Adds support for excluding specific categories from `LD_DEBUG` output. + + The `LD_DEBUG` environment variable now accepts category names prefixed + with a dash (`-`) to disable their debugging output. This allows users + to enable broad categories (e.g., `all`) while suppressing verbose or + irrelevant information from specific sub-categories (e.g., `-tls`). + + The `process_dl_debug` function in `rtld.c` has been updated to parse + these exclusion options and unset the corresponding bits in + `GLRO(dl_debug_mask)`. The `LD_DEBUG=help` output has also been updated + to document this new functionality. A new test `tst-dl-debug-exclude.sh` + is added to verify the correct behavior of category exclusion. + + Reviewed-by: Adhemerval Zanella + +diff --git a/elf/Makefile b/elf/Makefile +index 8651a96bf260416c..46bf893b8f6eb537 100644 +--- a/elf/Makefile ++++ b/elf/Makefile +@@ -1353,6 +1353,7 @@ $(objpfx)tst-glibcelf.out: tst-glibcelf.py elf.h $(..)/scripts/glibcelf.py \ + ifeq ($(run-built-tests),yes) + tests-special += $(objpfx)tst-tls-allocation-failure-static-patched.out + tests-special += $(objpfx)tst-tls-debug-recursive.out ++tests-special += $(objpfx)tst-dl-debug-exclude.out + endif + + # The test requires shared _and_ PIE because the executable +@@ -3351,4 +3352,14 @@ $(objpfx)tst-tls-debug-recursive.out: tst-tls-debug-recursive.sh \ + '$(rtld-prefix)' '$(run_program_env)' \ + $(objpfx)tst-recursive-tls > $@; \ + $(evaluate-test) ++ ++$(objpfx)tst-dl-debug-exclude.out: tst-dl-debug-exclude.sh \ ++ $(objpfx)tst-recursive-tls \ ++ $(objpfx)tst-recursive-tlsmallocmod.so \ ++ $(patsubst %,$(objpfx)tst-recursive-tlsmod%.so, \ ++ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15) ++ $(SHELL) $< $(common-objpfx) '$(test-wrapper-env)' \ ++ '$(rtld-prefix)' '$(run_program_env)' \ ++ $(objpfx)tst-recursive-tls > $@; \ ++ $(evaluate-test) + endif +diff --git a/elf/rtld.c b/elf/rtld.c +index 8b09d8389a7050d2..e18f70349b337173 100644 +--- a/elf/rtld.c ++++ b/elf/rtld.c +@@ -2501,11 +2501,18 @@ process_dl_debug (struct dl_main_state *state, const char *dl_debug) + && dl_debug[len] != ',' && dl_debug[len] != ':') + ++len; + ++ bool exclude = *dl_debug == '-'; ++ const char *name = exclude ? dl_debug + 1 : dl_debug; ++ size_t name_len = exclude ? len - 1 : len; ++ + for (cnt = 0; cnt < ndebopts; ++cnt) +- if (debopts[cnt].len == len +- && memcmp (dl_debug, debopts[cnt].name, len) == 0) ++ if (debopts[cnt].len == name_len ++ && memcmp (name, debopts[cnt].name, name_len) == 0) + { +- GLRO(dl_debug_mask) |= debopts[cnt].mask; ++ if (exclude) ++ GLRO(dl_debug_mask) &= ~debopts[cnt].mask; ++ else ++ GLRO(dl_debug_mask) |= debopts[cnt].mask; + break; + } + +@@ -2547,7 +2554,8 @@ Valid options for the LD_DEBUG environment variable are:\n\n"); + + _dl_printf ("\n\ + To direct the debugging output into a file instead of standard output\n\ +-a filename can be specified using the LD_DEBUG_OUTPUT environment variable.\n"); ++a filename can be specified using the LD_DEBUG_OUTPUT environment variable.\n\ ++Categories can be excluded by prefixing them with a dash (-).\n"); + _exit (0); + } + } +diff --git a/elf/tst-dl-debug-exclude.sh b/elf/tst-dl-debug-exclude.sh +new file mode 100644 +index 0000000000000000..9837ffcea8e07933 +--- /dev/null ++++ b/elf/tst-dl-debug-exclude.sh +@@ -0,0 +1,87 @@ ++#!/bin/sh ++# Test for LD_DEBUG category exclusion. ++# Copyright (C) 2026 Free Software Foundation, Inc. ++# This file is part of the GNU C Library. ++# ++# The GNU C Library is free software; you can redistribute it and/or ++# modify it under the terms of the GNU Lesser General Public ++# License as published by the Free Software Foundation; either ++# version 2.1 of the License, or (at your option) any later version. ++# ++# The GNU C Library is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++# Lesser General Public License for more details. ++# ++# You should have received a copy of the GNU Lesser General Public ++# License along with the GNU C Library; if not, see ++# . ++ ++# This script verifies the LD_DEBUG category exclusion functionality. ++# It checks that: ++# 1. Categories can be excluded using the '-' prefix. ++# 2. Options are processed sequentially, meaning the last specified ++# option for a category (enable or exclude) takes precedence. ++ ++set -e ++ ++common_objpfx="$1" ++test_wrapper_env="$2" ++rtld_prefix="$3" ++run_program_env="$4" ++test_program="$5" ++ ++debug_output="${common_objpfx}elf/tst-dl-debug-exclude.debug" ++rm -f "${debug_output}".* ++ ++# Run the test program with LD_DEBUG=all,-tls. ++# We expect general logs but no TLS logs. ++eval "${test_wrapper_env}" LD_DEBUG=all,-tls LD_DEBUG_OUTPUT="${debug_output}" \ ++ "${rtld_prefix}" "${test_program}" ++ ++fail=0 ++ ++# 1. Check that general logs are present (e.g., file loading) ++if ! grep -q 'file=' "${debug_output}".*; then ++ echo "FAIL: 'file=' message not found (LD_DEBUG=all failed)" ++ fail=1 ++fi ++ ++# 2. Check that TLS logs are NOT present ++if grep -q 'tls: ' "${debug_output}".*; then ++ echo "FAIL: TLS message found (exclusion of -tls failed)" ++ fail=1 ++fi ++ ++rm -f "${debug_output}".* ++# 3. Check for LD_DEBUG=all,-tls,tls (ordering verification) ++# We expect TLS logs to BE present ++eval "${test_wrapper_env}" LD_DEBUG=all,-tls,tls LD_DEBUG_OUTPUT="${debug_output}" \ ++ "${rtld_prefix}" "${test_program}" ++ ++if ! grep -q 'tls: ' "${debug_output}".*; then ++ echo "FAIL: TLS message not found (ordering -tls,tls failed)" ++ fail=1 ++fi ++ ++rm -f "${debug_output}".* ++# 4. Check for LD_DEBUG=tls,-tls ++# We expect TLS logs to NOT be present ++eval "${test_wrapper_env}" LD_DEBUG=tls,-tls LD_DEBUG_OUTPUT="${debug_output}" \ ++ "${rtld_prefix}" "${test_program}" ++ ++if grep -q 'tls: ' "${debug_output}".*; then ++ echo "FAIL: TLS message found (ordering tls,-tls failed)" ++ fail=1 ++fi ++ ++if [ $fail -ne 0 ]; then ++ echo "Test FAILED" ++ cat "${debug_output}".* ++ rm -f "${debug_output}".* ++ exit 1 ++fi ++ ++echo "Test PASSED" ++rm -f "${debug_output}".* ++exit 0 diff --git a/glibc-RHEL-162885.patch b/glibc-RHEL-162885.patch new file mode 100644 index 0000000..b937759 --- /dev/null +++ b/glibc-RHEL-162885.patch @@ -0,0 +1,321 @@ +commit d6f08d1cf027f4eb2ba289a6cc66853722d4badc +Author: Florian Weimer +Date: Thu Apr 16 19:13:43 2026 +0200 + + Use pending character state in IBM1390, IBM1399 character sets (CVE-2026-4046) + + Follow the example in iso-2022-jp-3.c and use the __count state + variable to store the pending character. This avoids restarting + the conversion if the output buffer ends between two 4-byte UCS-4 + code points, so that the assert reported in the bug can no longer + happen. + + Even though the fix is applied to ibm1364.c, the change is only + effective for the two HAS_COMBINED codecs for IBM1390, IBM1399. + + The test case was mostly auto-generated using + claude-4.6-opus-high-thinking, and composer-2-fast shows up in the + log as well. During review, gpt-5.4-xhigh flagged that the original + version of the test case was not exercising the new character + flush logic. + + This fixes bug 33980. + + Assisted-by: LLM + Reviewed-by: Carlos O'Donell + +diff --git a/iconvdata/Makefile b/iconvdata/Makefile +index 7196a8744bb66e8c..090ba929b1ec646e 100644 +--- a/iconvdata/Makefile ++++ b/iconvdata/Makefile +@@ -76,7 +76,7 @@ tests = bug-iconv1 bug-iconv2 tst-loading tst-e2big tst-iconv4 bug-iconv4 \ + tst-iconv6 bug-iconv5 bug-iconv6 tst-iconv7 bug-iconv8 bug-iconv9 \ + bug-iconv10 bug-iconv11 bug-iconv12 tst-iconv-big5-hkscs-to-2ucs4 \ + bug-iconv13 bug-iconv14 bug-iconv15 \ +- tst-iconv-iso-2022-cn-ext ++ tst-iconv-iso-2022-cn-ext tst-bug33980 + ifeq ($(have-thread-library),yes) + tests += bug-iconv3 + endif +@@ -333,6 +333,8 @@ $(objpfx)bug-iconv15.out: $(addprefix $(objpfx), $(gconv-modules)) \ + $(addprefix $(objpfx),$(modules.so)) + $(objpfx)tst-iconv-iso-2022-cn-ext.out: $(addprefix $(objpfx), $(gconv-modules)) \ + $(addprefix $(objpfx),$(modules.so)) ++$(objpfx)tst-bug33980.out: $(addprefix $(objpfx), $(gconv-modules)) \ ++ $(addprefix $(objpfx),$(modules.so)) + + $(objpfx)iconv-test.out: run-iconv-test.sh \ + $(addprefix $(objpfx), $(gconv-modules)) \ +diff --git a/iconvdata/ibm1364.c b/iconvdata/ibm1364.c +index d6c8ce7f682aa64d..47970008f7ef31ec 100644 +--- a/iconvdata/ibm1364.c ++++ b/iconvdata/ibm1364.c +@@ -67,12 +67,29 @@ + + /* Since this is a stateful encoding we have to provide code which resets + the output state to the initial state. This has to be done during the +- flushing. */ ++ flushing. For the to-internal direction (FROM_DIRECTION is true), ++ there may be a pending character that needs flushing. */ + #define EMIT_SHIFT_TO_INIT \ + if ((data->__statep->__count & ~7) != sb) \ + { \ + if (FROM_DIRECTION) \ +- data->__statep->__count &= 7; \ ++ { \ ++ uint32_t ch = data->__statep->__count >> 7; \ ++ if (__glibc_unlikely (ch != 0)) \ ++ { \ ++ if (__glibc_unlikely (outend - outbuf < 4)) \ ++ status = __GCONV_FULL_OUTPUT; \ ++ else \ ++ { \ ++ put32 (outbuf, ch); \ ++ outbuf += 4; \ ++ /* Clear character and db bit. */ \ ++ data->__statep->__count &= 7; \ ++ } \ ++ } \ ++ else \ ++ data->__statep->__count &= 7; \ ++ } \ + else \ + { \ + /* We are not in the initial state. To switch back we have \ +@@ -99,11 +116,13 @@ + *curcsp = save_curcs + + +-/* Current codeset type. */ ++/* Current codeset type. The bit is stored in the __count variable of ++ the conversion state. If the db bit is set, bit 7 and above store ++ a pending UCS-4 code point if non-zero. */ + enum + { +- sb = 0, +- db = 64 ++ sb = 0, /* Single byte mode. */ ++ db = 64 /* Double byte mode. */ + }; + + +@@ -119,21 +138,29 @@ enum + } \ + else \ + { \ +- /* This is a combined character. Make sure we have room. */ \ +- if (__glibc_unlikely (outptr + 8 > outend)) \ +- { \ +- result = __GCONV_FULL_OUTPUT; \ +- break; \ +- } \ +- \ + const struct divide *cmbp \ + = &DB_TO_UCS4_COMB[ch - __TO_UCS4_COMBINED_MIN]; \ + assert (cmbp->res1 != 0 && cmbp->res2 != 0); \ + \ + put32 (outptr, cmbp->res1); \ + outptr += 4; \ +- put32 (outptr, cmbp->res2); \ +- outptr += 4; \ ++ \ ++ /* See whether we have room for the second character. */ \ ++ if (outend - outptr >= 4) \ ++ { \ ++ put32 (outptr, cmbp->res2); \ ++ outptr += 4; \ ++ } \ ++ else \ ++ { \ ++ /* Otherwise store only the first character now, and \ ++ put the second one into the queue. */ \ ++ curcs |= cmbp->res2 << 7; \ ++ inptr += 2; \ ++ /* Tell the caller why we terminate the loop. */ \ ++ result = __GCONV_FULL_OUTPUT; \ ++ break; \ ++ } \ + } \ + } + #else +@@ -153,7 +180,20 @@ enum + #define LOOPFCT FROM_LOOP + #define BODY \ + { \ +- uint32_t ch = *inptr; \ ++ uint32_t ch; \ ++ \ ++ ch = curcs >> 7; \ ++ if (__glibc_unlikely (ch != 0)) \ ++ { \ ++ put32 (outptr, ch); \ ++ outptr += 4; \ ++ /* Remove the pending character, but preserve state bits. */ \ ++ curcs &= (1 << 7) - 1; \ ++ continue; \ ++ } \ ++ \ ++ /* Otherwise read the next input byte. */ \ ++ ch = *inptr; \ + \ + if (__builtin_expect (ch, 0) == SO) \ + { \ +diff --git a/iconvdata/tst-bug33980.c b/iconvdata/tst-bug33980.c +new file mode 100644 +index 0000000000000000..c9693e0efebe4eae +--- /dev/null ++++ b/iconvdata/tst-bug33980.c +@@ -0,0 +1,153 @@ ++/* Test for bug 33980: combining characters in IBM1390/IBM1399. ++ Copyright (C) 2026 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++/* Run iconv in a loop with a small output buffer of OUTBUFSIZE bytes ++ starting at OUTBUF. OUTBUF should be right before an unmapped page ++ so that writing past the end will fault. Skip SHIFT bytes at the ++ start of the input and output, to exercise different buffer ++ alignment. TRUNCATE indicates skipped bytes at the end of ++ input (0 and 1 a valid). */ ++static void ++test_one (const char *encoding, unsigned int shift, unsigned int truncate, ++ char *outbuf, size_t outbufsize) ++{ ++ /* In IBM1390 and IBM1399, the DBCS code 0xECB5 expands to two ++ Unicode code points when translated. */ ++ static char input[] = ++ { ++ /* 8 letters X. */ ++ 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, 0xe7, ++ /* SO, 0xECB5, SI: shift to DBCS, special character, shift back. */ ++ 0x0e, 0xec, 0xb5, 0x0f ++ }; ++ ++ /* Expected output after UTF-8 conversion. */ ++ static char expected[] = ++ { ++ 'X', 'X', 'X', 'X', 'X', 'X', 'X', 'X', ++ /* U+304B (HIRAGANA LETTER KA). */ ++ 0xe3, 0x81, 0x8b, ++ /* U+309A (COMBINING KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK). */ ++ 0xe3, 0x82, 0x9a ++ }; ++ ++ iconv_t cd = iconv_open ("UTF-8", encoding); ++ TEST_VERIFY_EXIT (cd != (iconv_t) -1); ++ ++ char result_storage[64]; ++ struct alloc_buffer result_buf ++ = alloc_buffer_create (result_storage, sizeof (result_storage)); ++ ++ char *inptr = &input[shift]; ++ size_t inleft = sizeof (input) - shift - truncate; ++ ++ while (inleft > 0) ++ { ++ char *outptr = outbuf; ++ size_t outleft = outbufsize; ++ size_t inleft_before = inleft; ++ ++ size_t ret = iconv (cd, &inptr, &inleft, &outptr, &outleft); ++ size_t produced = outptr - outbuf; ++ alloc_buffer_copy_bytes (&result_buf, outbuf, produced); ++ ++ if (ret == (size_t) -1 && errno == E2BIG) ++ { ++ if (produced == 0 && inleft == inleft_before) ++ { ++ /* Output buffer too small to make progress. This is ++ expected for very small output buffer sizes. */ ++ TEST_VERIFY_EXIT (outbufsize < 3); ++ break; ++ } ++ continue; ++ } ++ if (ret == (size_t) -1) ++ FAIL_EXIT1 ("%s (outbufsize %zu): iconv: %m", encoding, outbufsize); ++ break; ++ } ++ ++ /* Flush any pending state (e.g. a buffered combined character). ++ With outbufsize < 3, we could not store the first character, so ++ the second character did not become pending, and there is nothing ++ to flush. */ ++ { ++ char *outptr = outbuf; ++ size_t outleft = outbufsize; ++ ++ size_t ret = iconv (cd, NULL, NULL, &outptr, &outleft); ++ TEST_VERIFY_EXIT (ret == 0); ++ size_t produced = outptr - outbuf; ++ alloc_buffer_copy_bytes (&result_buf, outbuf, produced); ++ ++ /* Second flush does not provide more data. */ ++ outptr = outbuf; ++ outleft = outbufsize; ++ ret = iconv (cd, NULL, NULL, &outptr, &outleft); ++ TEST_VERIFY_EXIT (ret == 0); ++ TEST_VERIFY (outptr == outbuf); ++ } ++ ++ TEST_VERIFY_EXIT (!alloc_buffer_has_failed (&result_buf)); ++ size_t result_used ++ = sizeof (result_storage) - alloc_buffer_size (&result_buf); ++ ++ if (outbufsize >= 3) ++ { ++ TEST_COMPARE (inleft, 0); ++ TEST_COMPARE (result_used, sizeof (expected) - shift); ++ TEST_COMPARE_BLOB (result_storage, result_used, ++ &expected[shift], sizeof (expected) - shift); ++ } ++ else ++ /* If the buffer is too small, only the leading X could be converted. */ ++ TEST_COMPARE (result_used, 8 - shift); ++ ++ TEST_VERIFY_EXIT (iconv_close (cd) == 0); ++} ++ ++static int ++do_test (void) ++{ ++ struct support_next_to_fault ntf ++ = support_next_to_fault_allocate (8); ++ ++ for (int shift = 0; shift <= 8; ++shift) ++ for (int truncate = 0; truncate < 2; ++truncate) ++ for (size_t outbufsize = 1; outbufsize <= 8; outbufsize++) ++ { ++ char *outbuf = ntf.buffer + ntf.length - outbufsize; ++ test_one ("IBM1390", shift, truncate, outbuf, outbufsize); ++ test_one ("IBM1399", shift, truncate, outbuf, outbufsize); ++ } ++ ++ support_next_to_fault_free (&ntf); ++ return 0; ++} ++ ++#include diff --git a/patch-git-generated-commit.txt b/patch-git-generated-commit.txt index d5e6392..bded66c 100644 --- a/patch-git-generated-commit.txt +++ b/patch-git-generated-commit.txt @@ -1,2 +1,2 @@ -3e6989278e3b421cc69180f93e6b3ab73b2ce5fe +8f42d24c37304d4db88237907d86b220cf0ecf3c v1 diff --git a/patch-git-generated-log.txt b/patch-git-generated-log.txt index f1e26e4..e1efa85 100644 --- a/patch-git-generated-log.txt +++ b/patch-git-generated-log.txt @@ -1,3 +1,123 @@ +commit 8f42d24c37304d4db88237907d86b220cf0ecf3c +Author: Frédéric Bérat +AuthorDate: Mon May 11 14:43:27 2026 +0200 +Commit: Frédéric Bérat +CommitDate: Mon May 11 14:43:27 2026 +0200 + + Add LD_DEBUG=tls for tracking thread-local storage and TCB management (RHEL-159427) + + Resolves: RHEL-159427 + +:000000 100644 00000000 57ce0ce5 A glibc-RHEL-159427-1.patch +:000000 100644 00000000 f8144a8b A glibc-RHEL-159427-2.patch +:000000 100644 00000000 4db5342c A glibc-RHEL-159427-3.patch +:000000 100644 00000000 02aea3e7 A glibc-RHEL-159427-4.patch +:000000 100644 00000000 4dd62449 A glibc-RHEL-159427-5.patch + +commit c78778c41919450602dad115471aec95f4c972e3 +Author: Frédéric Bérat +AuthorDate: Thu Apr 30 10:37:51 2026 +0200 +Commit: Florian Weimer +CommitDate: Sat May 9 08:44:48 2026 +0000 + + CVE-2026-4046: Fix assertion failure in IBM1390 and IBM1399 iconv modules (RHEL-162885) + + Resolves: RHEL-162885 + +:000000 100644 00000000 b937759b A glibc-RHEL-162885.patch + +commit efbabb7118e1b4c126874252aeaa3441fc376bff +Author: Frédéric Bérat +AuthorDate: Tue May 5 15:51:41 2026 +0200 +Commit: Frédéric Bérat +CommitDate: Tue May 5 15:51:41 2026 +0200 + + Fix __nss_get_default_domain logic to restore netgroup user enumeration (RHEL-149709) + + Resolves: RHEL-149709 + +:000000 100644 00000000 49e72e11 A glibc-RHEL-149709.patch + +commit e8176bc6c3176576b03f847208337fe279bdac22 +Author: Martin Coufal +AuthorDate: Wed Apr 29 13:17:39 2026 +0000 +Commit: Martin Coufal +CommitDate: Thu Apr 30 10:16:44 2026 +0200 + + gating.yaml: mark power9 and power10 specific jobs as required + + RPM-Changelog: - + RPM-Skip-Release: yes + +:100644 100644 a603d087 1a0987b9 M gating.yaml + +commit 49fd6e779e937e472c8c09507341b17c69c6f3d9 +Author: Sergey Kolosov +AuthorDate: Mon Apr 13 20:16:22 2026 +0200 +Commit: Sergey Kolosov +CommitDate: Mon Apr 13 20:16:22 2026 +0200 + + CI Tests: add Regression/bz2115831-glibc-missing-gnu-debuglink-section-in + + This test was originally missing during the import from Fedora test + plan. + + RPM-Changelog: - + RPM-Skip-Release: yes + +:000000 100644 00000000 36de4261 A tests/Regression/bz2115831-glibc-missing-gnu-debuglink-section-in/main.fmf +:000000 100755 00000000 58545f02 A tests/Regression/bz2115831-glibc-missing-gnu-debuglink-section-in/runtest.sh + +commit 7e8b63eca4ac47e0b03fa078892e239b3912d713 +Author: Sergey Kolosov +AuthorDate: Mon Apr 13 20:15:05 2026 +0200 +Commit: Sergey Kolosov +CommitDate: Mon Apr 13 20:15:05 2026 +0200 + + CI Tests: add Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when + + This test was originally missing during the import from Fedora test + plan. + + RPM-Changelog: - + RPM-Skip-Release: yes + +:000000 100644 00000000 b4a5b47f A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/main.fmf +:000000 100755 00000000 77aaf34b A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/runtest.sh +:000000 100644 00000000 d73c97d0 A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/tst-mktime.c + +commit 1646f760b002eb8bd1edb98fa80d49ab9213d9dd +Author: Sergey Kolosov +AuthorDate: Mon Apr 13 20:12:30 2026 +0200 +Commit: Sergey Kolosov +CommitDate: Mon Apr 13 20:12:30 2026 +0200 + + CI Tests: add Regression/ESTALE-error-message-translation-regression-from-RHEL7 + + This test was originally missing during the import from Fedora test + plan. + + RPM-Changelog: - + RPM-Skip-Release: yes + +:000000 100644 00000000 1a8efe26 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/estale-test.c +:000000 100644 00000000 423fff31 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/main.fmf +:000000 100644 00000000 3719e161 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_de_AT +:000000 100644 00000000 3719e161 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_de_DE +:000000 100644 00000000 00741842 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_en_US +:000000 100644 00000000 99ba3948 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_es_ES +:000000 100644 00000000 cb93f190 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_fr_FR +:000000 100644 00000000 19bb87f7 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_fr_FR.utf8 +:000000 100644 00000000 20e9f4bc A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_it_IT +:000000 100644 00000000 eb01dfe5 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_ja_JP +:000000 100644 00000000 1a4a02ce A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_ja_JP.utf8 +:000000 100644 00000000 78559386 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_ko_KR.utf8 +:000000 100644 00000000 acb9aaac A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_pt_BR.utf8 +:000000 100644 00000000 82324e0b A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_ru_UA.utf8 +:000000 100644 00000000 c45e7719 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_zh_CN.utf8 +:000000 100644 00000000 212c34d1 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_zh_TW.utf8 +:000000 100755 00000000 68859157 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/runtest.sh + commit 3e6989278e3b421cc69180f93e6b3ab73b2ce5fe Author: Frédéric Bérat AuthorDate: Tue Apr 7 13:00:06 2026 +0200 @@ -8,10 +128,10 @@ CommitDate: Tue Apr 7 13:00:38 2026 +0200 Resolves: RHEL-142675 -:000000 100644 0000000 6fcbd16 A glibc-RHEL-142675-1.patch -:000000 100644 0000000 e461bb1 A glibc-RHEL-142675-2.patch -:000000 100644 0000000 17a0306 A glibc-RHEL-142675-3.patch -:000000 100644 0000000 78caae2 A glibc-RHEL-142675-4.patch +:000000 100644 00000000 6fcbd163 A glibc-RHEL-142675-1.patch +:000000 100644 00000000 e461bb11 A glibc-RHEL-142675-2.patch +:000000 100644 00000000 17a03067 A glibc-RHEL-142675-3.patch +:000000 100644 00000000 78caae2b A glibc-RHEL-142675-4.patch commit e7de6b4760a62add4b93abf7ca98ad4aa29c0da6 Author: Florian Weimer @@ -32,13 +152,13 @@ CommitDate: Wed Apr 1 07:15:33 2026 +0000 Resolves: RHEL-163331 Resolves: RHEL-163334 -:000000 100644 0000000 1fc3ef7 A glibc-upstream-2.39-289.patch -:000000 100644 0000000 4b65c0e A glibc-upstream-2.39-290.patch -:000000 100644 0000000 aa5e280 A glibc-upstream-2.39-291.patch -:000000 100644 0000000 a2d2255 A glibc-upstream-2.39-292.patch -:000000 100644 0000000 6849e16 A glibc-upstream-2.39-293.patch -:000000 100644 0000000 045780b A glibc-upstream-2.39-294.patch -:000000 100644 0000000 63b27eb A glibc-upstream-2.39-295.patch +:000000 100644 00000000 1fc3ef74 A glibc-upstream-2.39-289.patch +:000000 100644 00000000 4b65c0ed A glibc-upstream-2.39-290.patch +:000000 100644 00000000 aa5e280f A glibc-upstream-2.39-291.patch +:000000 100644 00000000 a2d22558 A glibc-upstream-2.39-292.patch +:000000 100644 00000000 6849e168 A glibc-upstream-2.39-293.patch +:000000 100644 00000000 045780bb A glibc-upstream-2.39-294.patch +:000000 100644 00000000 63b27ebc A glibc-upstream-2.39-295.patch commit a7198b59f99609e2c63df8b78fe1d4a1d2d959f2 Author: Frédéric Bérat @@ -50,9 +170,9 @@ CommitDate: Mon Mar 30 16:03:58 2026 +0200 Resolves: RHEL-150270 -:000000 100644 0000000 c333823 A glibc-RHEL-150270-1.patch -:000000 100644 0000000 38daeb6 A glibc-RHEL-150270-2.patch -:000000 100644 0000000 67a1d72 A glibc-RHEL-150270-3.patch +:000000 100644 00000000 c3338238 A glibc-RHEL-150270-1.patch +:000000 100644 00000000 38daeb69 A glibc-RHEL-150270-2.patch +:000000 100644 00000000 67a1d727 A glibc-RHEL-150270-3.patch commit b0bfe08c85f5a18f918d352a494685106a223dad Author: Florian Weimer @@ -66,7 +186,7 @@ CommitDate: Mon Mar 23 18:06:48 2026 +0100 Resolves: RHEL-140226 -:100644 100644 63962d8 38e0ee9 M patch-git.lua +:100644 100644 63962d82 38e0ee93 M patch-git.lua commit 6f4573339cb797830f3fb94e5b4c94308e2987b0 Author: Arjun Shankar @@ -78,7 +198,7 @@ CommitDate: Tue Mar 17 10:54:02 2026 +0100 Resolves: RHEL-146428 -:000000 100644 0000000 b9154d7 A glibc-RHEL-146428.patch +:000000 100644 00000000 b9154d79 A glibc-RHEL-146428.patch commit ae8b84b7442fb2d5f979870b77a98fbb2c95bdcd Author: Sergey Kolosov @@ -95,7 +215,7 @@ CommitDate: Tue Mar 10 12:59:50 2026 +0000 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 0ebe339 a603d08 M gating.yaml +:100644 100644 0ebe3399 a603d087 M gating.yaml commit da102a69e4cf32920e1b52b5289d73450a5ed3bf Author: DJ Delorie @@ -107,7 +227,7 @@ CommitDate: Tue Mar 3 10:39:55 2026 +0000 Resolves: RHEL-136312 -:100644 100644 5257de7 7bc79aa M wrap-find-debuginfo.sh +:100644 100644 5257de7c 7bc79aa2 M wrap-find-debuginfo.sh commit 17eca93ea4bd2947ce13a30dae9b4fc3ca302c28 Author: Sergey Kolosov @@ -125,7 +245,7 @@ CommitDate: Mon Mar 2 19:02:20 2026 +0100 RPM-Changelog: - RPM-Skip-Release: yes -:100755 100755 e40714d 31bdebe M tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/runtest.sh +:100755 100755 e40714db 31bdebe8 M tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/runtest.sh commit 16840189f72236af8760532eba3ea95316043fa1 Author: Sergey Kolosov @@ -143,7 +263,7 @@ CommitDate: Mon Mar 2 19:02:20 2026 +0100 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 31302be 39acd0b M tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/main.fmf +:100644 100644 31302be6 39acd0b4 M tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/main.fmf commit fc199b2037139b572b19b71ec09332ed35ab8fcc Author: Frédéric Bérat @@ -155,9 +275,9 @@ CommitDate: Thu Feb 26 14:39:26 2026 +0100 Resolves: RHEL-151711 -:000000 100644 0000000 42a0ccc A glibc-RHEL-151711-1.patch -:000000 100644 0000000 9ea3122 A glibc-RHEL-151711-2.patch -:000000 100644 0000000 5bb6404 A glibc-RHEL-151711-3.patch +:000000 100644 00000000 42a0ccc9 A glibc-RHEL-151711-1.patch +:000000 100644 00000000 9ea3122a A glibc-RHEL-151711-2.patch +:000000 100644 00000000 5bb64044 A glibc-RHEL-151711-3.patch commit 6748bccde4c4bd4e67441781f677a7c93361aa67 Author: Patsy Griffin @@ -169,13 +289,13 @@ CommitDate: Mon Feb 16 18:38:18 2026 +0000 Resolves: RHEL-142193 -:000000 100644 0000000 3652c05 A glibc-RHEL-142193-1.patch -:000000 100644 0000000 0d4b684 A glibc-RHEL-142193-2.patch -:000000 100644 0000000 e1a8ab7 A glibc-RHEL-142193-3.patch -:000000 100644 0000000 eaac987 A glibc-RHEL-142193-4.patch -:000000 100644 0000000 68cdcff A glibc-RHEL-142193-5.patch -:000000 100644 0000000 fa23772 A glibc-RHEL-142193-6.patch -:000000 100644 0000000 65c10f2 A glibc-RHEL-142193-7.patch +:000000 100644 00000000 3652c056 A glibc-RHEL-142193-1.patch +:000000 100644 00000000 0d4b6849 A glibc-RHEL-142193-2.patch +:000000 100644 00000000 e1a8ab7d A glibc-RHEL-142193-3.patch +:000000 100644 00000000 eaac9870 A glibc-RHEL-142193-4.patch +:000000 100644 00000000 68cdcffc A glibc-RHEL-142193-5.patch +:000000 100644 00000000 fa237729 A glibc-RHEL-142193-6.patch +:000000 100644 00000000 65c10f29 A glibc-RHEL-142193-7.patch commit 67904a03a3a391716b66c3a73ce6ad532baf82fd Author: Patsy Griffin @@ -187,7 +307,7 @@ CommitDate: Tue Feb 10 18:54:26 2026 -0500 Resolves: RHEL-140103 -:000000 100644 0000000 1a56c88 A glibc-RHEL-140103.patch +:000000 100644 00000000 1a56c882 A glibc-RHEL-140103.patch commit 009747ac2435216d9b8f525692d00594bf4b6e8e Author: Arjun Shankar @@ -199,7 +319,7 @@ CommitDate: Mon Feb 9 13:38:03 2026 +0100 Resolves: RHEL-137184 -:000000 100644 0000000 dd8dc37 A glibc-RHEL-137184.patch +:000000 100644 00000000 dd8dc377 A glibc-RHEL-137184.patch commit 15606b95064e8a65e530877adb42db8c551ebceb Author: Florian Weimer @@ -226,7 +346,7 @@ CommitDate: Tue Jan 27 14:01:25 2026 +0100 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 6d20c54 63962d8 M patch-git.lua +:100644 100644 6d20c54b 63962d82 M patch-git.lua commit b333c27787552fee72cb7bb164777dc5beb7470e Author: Arjun Shankar @@ -283,31 +403,31 @@ CommitDate: Thu Jan 22 11:25:08 2026 +0100 Resolves: RHEL-141852 Resolves: RHEL-141733 -:000000 100644 0000000 c26d175 A glibc-upstream-2.39-263.patch -:000000 100644 0000000 b020ed3 A glibc-upstream-2.39-264.patch -:000000 100644 0000000 d5770dd A glibc-upstream-2.39-265.patch -:000000 100644 0000000 d10b3f9 A glibc-upstream-2.39-266.patch -:000000 100644 0000000 e568d5c A glibc-upstream-2.39-267.patch -:000000 100644 0000000 0114ec6 A glibc-upstream-2.39-268.patch -:000000 100644 0000000 f0d7178 A glibc-upstream-2.39-269.patch -:000000 100644 0000000 8e8bc5f A glibc-upstream-2.39-270.patch -:000000 100644 0000000 238d221 A glibc-upstream-2.39-271.patch -:000000 100644 0000000 6c30403 A glibc-upstream-2.39-272.patch -:000000 100644 0000000 ae2e5eb A glibc-upstream-2.39-273.patch -:000000 100644 0000000 45e4298 A glibc-upstream-2.39-274.patch -:000000 100644 0000000 adfab4e A glibc-upstream-2.39-275.patch -:000000 100644 0000000 852bdb2 A glibc-upstream-2.39-277.patch -:000000 100644 0000000 50bbc7d A glibc-upstream-2.39-278.patch -:000000 100644 0000000 b6fa010 A glibc-upstream-2.39-279.patch -:000000 100644 0000000 306267f A glibc-upstream-2.39-280.patch -:000000 100644 0000000 44b080e A glibc-upstream-2.39-281.patch -:000000 100644 0000000 727901e A glibc-upstream-2.39-282.patch -:000000 100644 0000000 101226a A glibc-upstream-2.39-283.patch -:000000 100644 0000000 4a46994 A glibc-upstream-2.39-284.patch -:000000 100644 0000000 3764237 A glibc-upstream-2.39-285.patch -:000000 100644 0000000 860550d A glibc-upstream-2.39-286.patch -:000000 100644 0000000 27051da A glibc-upstream-2.39-287.patch -:000000 100644 0000000 f826269 A glibc-upstream-2.39-288.patch +:000000 100644 00000000 c26d1754 A glibc-upstream-2.39-263.patch +:000000 100644 00000000 b020ed3b A glibc-upstream-2.39-264.patch +:000000 100644 00000000 d5770dda A glibc-upstream-2.39-265.patch +:000000 100644 00000000 d10b3f9e A glibc-upstream-2.39-266.patch +:000000 100644 00000000 e568d5c1 A glibc-upstream-2.39-267.patch +:000000 100644 00000000 0114ec6b A glibc-upstream-2.39-268.patch +:000000 100644 00000000 f0d71782 A glibc-upstream-2.39-269.patch +:000000 100644 00000000 8e8bc5f5 A glibc-upstream-2.39-270.patch +:000000 100644 00000000 238d221b A glibc-upstream-2.39-271.patch +:000000 100644 00000000 6c304039 A glibc-upstream-2.39-272.patch +:000000 100644 00000000 ae2e5eb7 A glibc-upstream-2.39-273.patch +:000000 100644 00000000 45e4298a A glibc-upstream-2.39-274.patch +:000000 100644 00000000 adfab4e8 A glibc-upstream-2.39-275.patch +:000000 100644 00000000 852bdb27 A glibc-upstream-2.39-277.patch +:000000 100644 00000000 50bbc7d1 A glibc-upstream-2.39-278.patch +:000000 100644 00000000 b6fa010e A glibc-upstream-2.39-279.patch +:000000 100644 00000000 306267f9 A glibc-upstream-2.39-280.patch +:000000 100644 00000000 44b080e5 A glibc-upstream-2.39-281.patch +:000000 100644 00000000 727901e6 A glibc-upstream-2.39-282.patch +:000000 100644 00000000 101226a9 A glibc-upstream-2.39-283.patch +:000000 100644 00000000 4a469949 A glibc-upstream-2.39-284.patch +:000000 100644 00000000 3764237a A glibc-upstream-2.39-285.patch +:000000 100644 00000000 860550d8 A glibc-upstream-2.39-286.patch +:000000 100644 00000000 27051da3 A glibc-upstream-2.39-287.patch +:000000 100644 00000000 f8262692 A glibc-upstream-2.39-288.patch commit 020ea2096939f47430942c152c8b57cd7943bf57 Author: Rachel Sibley @@ -319,7 +439,7 @@ CommitDate: Wed Jan 21 18:30:20 2026 -0500 Resolves: RHEL-143302 -:000000 100644 0000000 f6410fc A revdep.yaml +:000000 100644 00000000 f6410fc0 A revdep.yaml commit 2f6cce6f8156d09639bd3eafd36a6aed2aa1b2ac Author: Arjun Shankar @@ -331,7 +451,7 @@ CommitDate: Mon Jan 12 15:54:57 2026 +0100 Resolves: RHEL-135228 -:000000 100644 0000000 90df056 A glibc-RHEL-135228.patch +:000000 100644 00000000 90df056f A glibc-RHEL-135228.patch commit 41de17ba48c96b72900b9eb5cc40a848bc161cb0 Author: Arjun Shankar @@ -343,8 +463,8 @@ CommitDate: Thu Jan 8 12:59:49 2026 +0100 Resolves: RHEL-119438 -:000000 100644 0000000 bc4b43b A glibc-RHEL-119438-1.patch -:000000 100644 0000000 7eb4adb A glibc-RHEL-119438-2.patch +:000000 100644 00000000 bc4b43be A glibc-RHEL-119438-1.patch +:000000 100644 00000000 7eb4adb7 A glibc-RHEL-119438-2.patch commit b37741885c18dae927faaba08a7849ca21d35b7c Author: Florian Weimer @@ -358,7 +478,7 @@ CommitDate: Fri Dec 19 22:05:31 2025 +0100 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 c975eb7 6d20c54 M patch-git.lua +:100644 100644 c975eb75 6d20c54b M patch-git.lua commit b520db1431ed2a5db441559aed0dda398e7b6e08 Author: Patsy Griffin @@ -370,7 +490,7 @@ CommitDate: Tue Dec 16 14:45:40 2025 -0500 Resolves: RHEL-87645 -:000000 100644 0000000 83ec4c4 A glibc-RHEL-87645.patch +:000000 100644 00000000 83ec4c47 A glibc-RHEL-87645.patch commit 9852cf6015b0451791ba24a7a638551ab2965913 Author: Arjun Shankar @@ -382,9 +502,9 @@ CommitDate: Mon Dec 8 18:01:49 2025 +0000 Resolves: RHEL-119451 -:000000 100644 0000000 f829d9a A glibc-RHEL-119451-1.patch -:000000 100644 0000000 c14d359 A glibc-RHEL-119451-2.patch -:000000 100644 0000000 f2e1eb2 A glibc-RHEL-119451-3.patch +:000000 100644 00000000 f829d9a6 A glibc-RHEL-119451-1.patch +:000000 100644 00000000 c14d3594 A glibc-RHEL-119451-2.patch +:000000 100644 00000000 f2e1eb2a A glibc-RHEL-119451-3.patch commit 74a8127818e9ffdbcc44e0e40f2c835125af5202 Author: DJ Delorie @@ -396,7 +516,7 @@ CommitDate: Sun Dec 7 13:35:37 2025 +0000 Resolves: RHEL-119398 -:000000 100644 0000000 636bd25 A glibc-RHEL-119398.patch +:000000 100644 00000000 636bd252 A glibc-RHEL-119398.patch commit 6fdef029678322b9b3f6c2cae7de21fa4ebe9f67 Author: Florian Weimer @@ -408,7 +528,7 @@ CommitDate: Sat Dec 6 11:11:23 2025 +0000 Related: RHEL-119431 -:000000 100644 0000000 5e366b6 A glibc-RHEL-119431-6.patch +:000000 100644 00000000 5e366b6b A glibc-RHEL-119431-6.patch commit 1249d90b30c59e2f5ff576a45a4b9a5d9c4926b6 Author: Florian Weimer @@ -422,7 +542,7 @@ CommitDate: Fri Dec 5 16:24:54 2025 +0100 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 a7a9706 168294d M glibc.abignore +:100644 100644 a7a97067 168294d2 M glibc.abignore commit 9dd92cac18272f39e918a11b6b2a65e3eef1abb4 Author: Yuki Inoguchi @@ -482,51 +602,51 @@ CommitDate: Fri Dec 5 16:24:54 2025 +0100 Resolves: RHEL-118273 -:000000 100644 0000000 4862969 A glibc-RHEL-118273-1.patch -:000000 100644 0000000 5a282d6 A glibc-RHEL-118273-10.patch -:000000 100644 0000000 7b13e88 A glibc-RHEL-118273-11.patch -:000000 100644 0000000 73aa260 A glibc-RHEL-118273-12.patch -:000000 100644 0000000 b852325 A glibc-RHEL-118273-13.patch -:000000 100644 0000000 6922f4d A glibc-RHEL-118273-14.patch -:000000 100644 0000000 5f503d7 A glibc-RHEL-118273-15.patch -:000000 100644 0000000 32c1c98 A glibc-RHEL-118273-16.patch -:000000 100644 0000000 d7e1dbf A glibc-RHEL-118273-17.patch -:000000 100644 0000000 5899018 A glibc-RHEL-118273-18.patch -:000000 100644 0000000 0c685e3 A glibc-RHEL-118273-19.patch -:000000 100644 0000000 8d9e4ee A glibc-RHEL-118273-2.patch -:000000 100644 0000000 49e8fa8 A glibc-RHEL-118273-20.patch -:000000 100644 0000000 cb930ba A glibc-RHEL-118273-21.patch -:000000 100644 0000000 1633bc7 A glibc-RHEL-118273-22.patch -:000000 100644 0000000 63ec79e A glibc-RHEL-118273-23.patch -:000000 100644 0000000 965cfa1 A glibc-RHEL-118273-24.patch -:000000 100644 0000000 e87c829 A glibc-RHEL-118273-25.patch -:000000 100644 0000000 8b238dc A glibc-RHEL-118273-26.patch -:000000 100644 0000000 8e8302d A glibc-RHEL-118273-27.patch -:000000 100644 0000000 886ca71 A glibc-RHEL-118273-28.patch -:000000 100644 0000000 7ac05a2 A glibc-RHEL-118273-29.patch -:000000 100644 0000000 e919cfa A glibc-RHEL-118273-3.patch -:000000 100644 0000000 fc9779a A glibc-RHEL-118273-30.patch -:000000 100644 0000000 4e68a14 A glibc-RHEL-118273-31.patch -:000000 100644 0000000 33fdcd2 A glibc-RHEL-118273-32.patch -:000000 100644 0000000 b8ac4de A glibc-RHEL-118273-33.patch -:000000 100644 0000000 053febb A glibc-RHEL-118273-34.patch -:000000 100644 0000000 0af55d0 A glibc-RHEL-118273-35.patch -:000000 100644 0000000 f7972c7 A glibc-RHEL-118273-36.patch -:000000 100644 0000000 c8d9a95 A glibc-RHEL-118273-37.patch -:000000 100644 0000000 8f895a4 A glibc-RHEL-118273-38.patch -:000000 100644 0000000 dc3b229 A glibc-RHEL-118273-39.patch -:000000 100644 0000000 e10d584 A glibc-RHEL-118273-4.patch -:000000 100644 0000000 15ae781 A glibc-RHEL-118273-40.patch -:000000 100644 0000000 92e969e A glibc-RHEL-118273-41.patch -:000000 100644 0000000 4f54c8f A glibc-RHEL-118273-42.patch -:000000 100644 0000000 c9c00ae A glibc-RHEL-118273-43.patch -:000000 100644 0000000 3f2a0be A glibc-RHEL-118273-44.patch -:000000 100644 0000000 a872304 A glibc-RHEL-118273-45.patch -:000000 100644 0000000 ab3eeb8 A glibc-RHEL-118273-5.patch -:000000 100644 0000000 8cf84cb A glibc-RHEL-118273-6.patch -:000000 100644 0000000 dd77eb9 A glibc-RHEL-118273-7.patch -:000000 100644 0000000 cc3ac64 A glibc-RHEL-118273-8.patch -:000000 100644 0000000 bd36048 A glibc-RHEL-118273-9.patch +:000000 100644 00000000 48629690 A glibc-RHEL-118273-1.patch +:000000 100644 00000000 5a282d63 A glibc-RHEL-118273-10.patch +:000000 100644 00000000 7b13e88a A glibc-RHEL-118273-11.patch +:000000 100644 00000000 73aa2607 A glibc-RHEL-118273-12.patch +:000000 100644 00000000 b8523258 A glibc-RHEL-118273-13.patch +:000000 100644 00000000 6922f4d0 A glibc-RHEL-118273-14.patch +:000000 100644 00000000 5f503d70 A glibc-RHEL-118273-15.patch +:000000 100644 00000000 32c1c98a A glibc-RHEL-118273-16.patch +:000000 100644 00000000 d7e1dbfe A glibc-RHEL-118273-17.patch +:000000 100644 00000000 58990187 A glibc-RHEL-118273-18.patch +:000000 100644 00000000 0c685e3a A glibc-RHEL-118273-19.patch +:000000 100644 00000000 8d9e4eeb A glibc-RHEL-118273-2.patch +:000000 100644 00000000 49e8fa86 A glibc-RHEL-118273-20.patch +:000000 100644 00000000 cb930ba4 A glibc-RHEL-118273-21.patch +:000000 100644 00000000 1633bc76 A glibc-RHEL-118273-22.patch +:000000 100644 00000000 63ec79e9 A glibc-RHEL-118273-23.patch +:000000 100644 00000000 965cfa16 A glibc-RHEL-118273-24.patch +:000000 100644 00000000 e87c8298 A glibc-RHEL-118273-25.patch +:000000 100644 00000000 8b238dcb A glibc-RHEL-118273-26.patch +:000000 100644 00000000 8e8302dd A glibc-RHEL-118273-27.patch +:000000 100644 00000000 886ca715 A glibc-RHEL-118273-28.patch +:000000 100644 00000000 7ac05a28 A glibc-RHEL-118273-29.patch +:000000 100644 00000000 e919cfaf A glibc-RHEL-118273-3.patch +:000000 100644 00000000 fc9779a4 A glibc-RHEL-118273-30.patch +:000000 100644 00000000 4e68a14a A glibc-RHEL-118273-31.patch +:000000 100644 00000000 33fdcd26 A glibc-RHEL-118273-32.patch +:000000 100644 00000000 b8ac4dec A glibc-RHEL-118273-33.patch +:000000 100644 00000000 053febb2 A glibc-RHEL-118273-34.patch +:000000 100644 00000000 0af55d05 A glibc-RHEL-118273-35.patch +:000000 100644 00000000 f7972c70 A glibc-RHEL-118273-36.patch +:000000 100644 00000000 c8d9a95c A glibc-RHEL-118273-37.patch +:000000 100644 00000000 8f895a4b A glibc-RHEL-118273-38.patch +:000000 100644 00000000 dc3b229c A glibc-RHEL-118273-39.patch +:000000 100644 00000000 e10d5845 A glibc-RHEL-118273-4.patch +:000000 100644 00000000 15ae781c A glibc-RHEL-118273-40.patch +:000000 100644 00000000 92e969e3 A glibc-RHEL-118273-41.patch +:000000 100644 00000000 4f54c8f9 A glibc-RHEL-118273-42.patch +:000000 100644 00000000 c9c00ae8 A glibc-RHEL-118273-43.patch +:000000 100644 00000000 3f2a0be7 A glibc-RHEL-118273-44.patch +:000000 100644 00000000 a872304e A glibc-RHEL-118273-45.patch +:000000 100644 00000000 ab3eeb86 A glibc-RHEL-118273-5.patch +:000000 100644 00000000 8cf84cb1 A glibc-RHEL-118273-6.patch +:000000 100644 00000000 dd77eb91 A glibc-RHEL-118273-7.patch +:000000 100644 00000000 cc3ac642 A glibc-RHEL-118273-8.patch +:000000 100644 00000000 bd36048c A glibc-RHEL-118273-9.patch commit 7361fbbfabd465608acfabbd5337796c03fe739a Author: Florian Weimer @@ -542,7 +662,7 @@ CommitDate: Fri Dec 5 13:58:05 2025 +0100 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 04cb061 c975eb7 M patch-git.lua +:100644 100644 04cb0612 c975eb75 M patch-git.lua commit c1cf02aec4340e4b23e7d21e4f159a1d7e012c5c Author: Arjun Shankar @@ -554,7 +674,7 @@ CommitDate: Tue Dec 2 17:42:22 2025 +0100 Resolves: RHEL-119418 -:000000 100644 0000000 50df8f3 A glibc-RHEL-119418.patch +:000000 100644 00000000 50df8f3c A glibc-RHEL-119418.patch commit d9b4977bed787a86f6f7bb5d1b7052cfacee4f72 Author: Arjun Shankar @@ -566,8 +686,8 @@ CommitDate: Tue Dec 2 09:23:45 2025 +0100 Resolves: RHEL-119425 -:000000 100644 0000000 ca543e8 A glibc-RHEL-119425-1.patch -:000000 100644 0000000 287ccc2 A glibc-RHEL-119425-2.patch +:000000 100644 00000000 ca543e88 A glibc-RHEL-119425-1.patch +:000000 100644 00000000 287ccc22 A glibc-RHEL-119425-2.patch commit 66c2311e0f3aa3e16cb5fbaa4c70a9a2f4abe764 Author: Arjun Shankar @@ -579,9 +699,9 @@ CommitDate: Mon Dec 1 16:04:03 2025 +0100 Resolves: RHEL-119437 -:000000 100644 0000000 49fa2b5 A glibc-RHEL-119437-1.patch -:000000 100644 0000000 bcb2bb3 A glibc-RHEL-119437-2.patch -:000000 100644 0000000 cab120c A glibc-RHEL-119437-3.patch +:000000 100644 00000000 49fa2b5b A glibc-RHEL-119437-1.patch +:000000 100644 00000000 bcb2bb37 A glibc-RHEL-119437-2.patch +:000000 100644 00000000 cab120c2 A glibc-RHEL-119437-3.patch commit 899101702aaa1cb86b357ee597f152240dacee4d Author: Florian Weimer @@ -593,9 +713,9 @@ CommitDate: Thu Nov 27 14:40:19 2025 +0100 Resolves: RHEL-121108 -:000000 100644 0000000 49e2890 A glibc-RHEL-121108-1.patch -:000000 100644 0000000 a1beb29 A glibc-RHEL-121108-2.patch -:000000 100644 0000000 1a26bf6 A glibc-RHEL-121108-3.patch +:000000 100644 00000000 49e28906 A glibc-RHEL-121108-1.patch +:000000 100644 00000000 a1beb297 A glibc-RHEL-121108-2.patch +:000000 100644 00000000 1a26bf69 A glibc-RHEL-121108-3.patch commit 1239437396ffa02a6663d5af04e24c1e1c884923 Author: DJ Delorie @@ -607,12 +727,12 @@ CommitDate: Tue Nov 25 14:57:31 2025 -0500 Resolves: RHEL-119431 -:000000 100644 0000000 5747c2d A glibc-RHEL-119431-1.patch -:000000 100644 0000000 599adc9 A glibc-RHEL-119431-2.patch -:000000 100644 0000000 795c67e A glibc-RHEL-119431-3.patch -:000000 100644 0000000 1e78d36 A glibc-RHEL-119431-4.patch -:000000 100644 0000000 96e22fe A glibc-RHEL-119431-5.patch -:100644 100644 a7230ab a7a9706 M glibc.abignore +:000000 100644 00000000 5747c2d9 A glibc-RHEL-119431-1.patch +:000000 100644 00000000 599adc98 A glibc-RHEL-119431-2.patch +:000000 100644 00000000 795c67e6 A glibc-RHEL-119431-3.patch +:000000 100644 00000000 1e78d361 A glibc-RHEL-119431-4.patch +:000000 100644 00000000 96e22fe0 A glibc-RHEL-119431-5.patch +:100644 100644 a7230ab6 a7a97067 M glibc.abignore commit b6c93d518720fc58ce9cdb7c3b7114e9f10fe219 Author: Arjun Shankar @@ -624,7 +744,7 @@ CommitDate: Sat Nov 22 06:49:56 2025 +0000 Resolves: RHEL-119402 -:000000 100644 0000000 a32f7e9 A glibc-RHEL-119402.patch +:000000 100644 00000000 a32f7e9a A glibc-RHEL-119402.patch commit 07a8f49504c66c27e0d7eaae6f81ae682409c438 Author: Frédéric Bérat @@ -636,9 +756,9 @@ CommitDate: Fri Nov 21 15:50:33 2025 +0000 Resolves: RHEL-119424 -:000000 100644 0000000 53a3d42 A glibc-RHEL-119424-1.patch -:000000 100644 0000000 be715f9 A glibc-RHEL-119424-2.patch -:000000 100644 0000000 d97c4c0 A glibc-RHEL-119424-3.patch +:000000 100644 00000000 53a3d428 A glibc-RHEL-119424-1.patch +:000000 100644 00000000 be715f90 A glibc-RHEL-119424-2.patch +:000000 100644 00000000 d97c4c00 A glibc-RHEL-119424-3.patch commit 89eb9060127675a5645f2bb489895253509f1559 Author: Florian Weimer @@ -650,8 +770,8 @@ CommitDate: Thu Nov 20 19:17:44 2025 +0000 Resolves: RHEL-127524 -:000000 100644 0000000 92b4a65 A glibc-RHEL-127524.patch -:100644 100644 3602cc9 fc5a513 M glibc.spec +:000000 100644 00000000 92b4a65c A glibc-RHEL-127524.patch +:100644 100644 3602cc90 fc5a513d M glibc.spec commit 66fd2c680c016217945b5b4b34f7696d63f04e38 Author: Florian Weimer @@ -666,7 +786,7 @@ CommitDate: Thu Nov 20 10:50:38 2025 +0100 Related: RHEL-119428 -:100644 100644 8af26de a7230ab M glibc.abignore +:100644 100644 8af26de6 a7230ab6 M glibc.abignore commit 49bae402bf3dc6c3f47017b33da555064026bdc4 Author: Frédéric Bérat @@ -678,7 +798,7 @@ CommitDate: Wed Nov 19 16:56:23 2025 +0100 Related: RHEL-119433 -:000000 100644 0000000 a58a8b7 A glibc-RHEL-119433-15.patch +:000000 100644 00000000 a58a8b7a A glibc-RHEL-119433-15.patch commit c1d6fad5cca18d8e498f85c19a5d9d7b10bca99e Author: Frédéric Bérat @@ -690,20 +810,20 @@ CommitDate: Fri Nov 14 10:32:46 2025 +0000 Resolves: RHEL-119433 -:000000 100644 0000000 1f4f0c2 A glibc-RHEL-119433-1.patch -:000000 100644 0000000 9b86e2e A glibc-RHEL-119433-10.patch -:000000 100644 0000000 667a913 A glibc-RHEL-119433-11.patch -:000000 100644 0000000 6da7a99 A glibc-RHEL-119433-12.patch -:000000 100644 0000000 6eec6ff A glibc-RHEL-119433-13.patch -:000000 100644 0000000 e3c1f80 A glibc-RHEL-119433-14.patch -:000000 100644 0000000 8b08225 A glibc-RHEL-119433-2.patch -:000000 100644 0000000 ca0792b A glibc-RHEL-119433-3.patch -:000000 100644 0000000 7beb5ee A glibc-RHEL-119433-4.patch -:000000 100644 0000000 f0899bf A glibc-RHEL-119433-5.patch -:000000 100644 0000000 a328cbc A glibc-RHEL-119433-6.patch -:000000 100644 0000000 98bfc17 A glibc-RHEL-119433-7.patch -:000000 100644 0000000 ac1782c A glibc-RHEL-119433-8.patch -:000000 100644 0000000 4101173 A glibc-RHEL-119433-9.patch +:000000 100644 00000000 1f4f0c20 A glibc-RHEL-119433-1.patch +:000000 100644 00000000 9b86e2ec A glibc-RHEL-119433-10.patch +:000000 100644 00000000 667a913a A glibc-RHEL-119433-11.patch +:000000 100644 00000000 6da7a99e A glibc-RHEL-119433-12.patch +:000000 100644 00000000 6eec6ff8 A glibc-RHEL-119433-13.patch +:000000 100644 00000000 e3c1f80b A glibc-RHEL-119433-14.patch +:000000 100644 00000000 8b082257 A glibc-RHEL-119433-2.patch +:000000 100644 00000000 ca0792b4 A glibc-RHEL-119433-3.patch +:000000 100644 00000000 7beb5ee2 A glibc-RHEL-119433-4.patch +:000000 100644 00000000 f0899bfb A glibc-RHEL-119433-5.patch +:000000 100644 00000000 a328cbca A glibc-RHEL-119433-6.patch +:000000 100644 00000000 98bfc174 A glibc-RHEL-119433-7.patch +:000000 100644 00000000 ac1782cc A glibc-RHEL-119433-8.patch +:000000 100644 00000000 41011732 A glibc-RHEL-119433-9.patch commit 40ed261d949051ce7b66242a044302783162fd92 Author: Patsy Griffin @@ -715,7 +835,7 @@ CommitDate: Wed Nov 12 13:40:21 2025 +0000 Resolves: RHEL-119419 -:000000 100644 0000000 3aa9a4e A glibc-RHEL-119419.patch +:000000 100644 00000000 3aa9a4ea A glibc-RHEL-119419.patch commit 50e34d07ffa62ec045554d550ac4e849faf14cc5 Author: Florian Weimer @@ -729,7 +849,7 @@ CommitDate: Wed Nov 12 09:37:35 2025 +0000 Resolves: RHEL-121947 -:100644 100644 f95800e 04cb061 M patch-git.lua +:100644 100644 f95800e1 04cb0612 M patch-git.lua commit b16cb36857c9ad71571030fc2fda115a92ba4c46 Author: Frédéric Bérat @@ -741,16 +861,16 @@ CommitDate: Fri Nov 7 07:59:10 2025 +0100 Resolves: RHEL-119428 -:000000 100644 0000000 31e366e A glibc-RHEL-119428-1.patch -:000000 100644 0000000 3481ce9 A glibc-RHEL-119428-10.patch -:000000 100644 0000000 7aa3a12 A glibc-RHEL-119428-2.patch -:000000 100644 0000000 3031c81 A glibc-RHEL-119428-3.patch -:000000 100644 0000000 2a2323e A glibc-RHEL-119428-4.patch -:000000 100644 0000000 79dbe6f A glibc-RHEL-119428-5.patch -:000000 100644 0000000 c314c5b A glibc-RHEL-119428-6.patch -:000000 100644 0000000 9185fd5 A glibc-RHEL-119428-7.patch -:000000 100644 0000000 5224677 A glibc-RHEL-119428-8.patch -:000000 100644 0000000 112aae2 A glibc-RHEL-119428-9.patch +:000000 100644 00000000 31e366e4 A glibc-RHEL-119428-1.patch +:000000 100644 00000000 3481ce9f A glibc-RHEL-119428-10.patch +:000000 100644 00000000 7aa3a126 A glibc-RHEL-119428-2.patch +:000000 100644 00000000 3031c81f A glibc-RHEL-119428-3.patch +:000000 100644 00000000 2a2323e0 A glibc-RHEL-119428-4.patch +:000000 100644 00000000 79dbe6fd A glibc-RHEL-119428-5.patch +:000000 100644 00000000 c314c5b3 A glibc-RHEL-119428-6.patch +:000000 100644 00000000 9185fd5d A glibc-RHEL-119428-7.patch +:000000 100644 00000000 52246777 A glibc-RHEL-119428-8.patch +:000000 100644 00000000 112aae2f A glibc-RHEL-119428-9.patch commit a3fbf571630b09e93a2c5c23b4a069b918b22953 Author: Frédéric Bérat @@ -762,18 +882,18 @@ CommitDate: Thu Nov 6 08:04:39 2025 +0000 Resolves: RHEL-119390 -:000000 100644 0000000 93437f8 A glibc-RHEL-119390-1.patch -:000000 100644 0000000 f4d19b4 A glibc-RHEL-119390-10.patch -:000000 100644 0000000 c0023ee A glibc-RHEL-119390-11.patch -:000000 100644 0000000 e610d51 A glibc-RHEL-119390-12.patch -:000000 100644 0000000 2758db4 A glibc-RHEL-119390-2.patch -:000000 100644 0000000 fba5e0f A glibc-RHEL-119390-3.patch -:000000 100644 0000000 511d9c2 A glibc-RHEL-119390-4.patch -:000000 100644 0000000 ab7c8c0 A glibc-RHEL-119390-5.patch -:000000 100644 0000000 5f05630 A glibc-RHEL-119390-6.patch -:000000 100644 0000000 bc11f0e A glibc-RHEL-119390-7.patch -:000000 100644 0000000 7dace85 A glibc-RHEL-119390-8.patch -:000000 100644 0000000 a35c862 A glibc-RHEL-119390-9.patch +:000000 100644 00000000 93437f80 A glibc-RHEL-119390-1.patch +:000000 100644 00000000 f4d19b43 A glibc-RHEL-119390-10.patch +:000000 100644 00000000 c0023ee4 A glibc-RHEL-119390-11.patch +:000000 100644 00000000 e610d51a A glibc-RHEL-119390-12.patch +:000000 100644 00000000 2758db4a A glibc-RHEL-119390-2.patch +:000000 100644 00000000 fba5e0fb A glibc-RHEL-119390-3.patch +:000000 100644 00000000 511d9c25 A glibc-RHEL-119390-4.patch +:000000 100644 00000000 ab7c8c0f A glibc-RHEL-119390-5.patch +:000000 100644 00000000 5f056306 A glibc-RHEL-119390-6.patch +:000000 100644 00000000 bc11f0e7 A glibc-RHEL-119390-7.patch +:000000 100644 00000000 7dace851 A glibc-RHEL-119390-8.patch +:000000 100644 00000000 a35c862b A glibc-RHEL-119390-9.patch commit ec3eae8e16edbf12e0d96c082dd1cc8caaeaceae Author: DJ Delorie @@ -785,7 +905,7 @@ CommitDate: Wed Nov 5 14:55:33 2025 -0500 Resolves: RHEL-119404 -:000000 100644 0000000 a0fd671 A glibc-RHEL-119404-1.patch +:000000 100644 00000000 a0fd6715 A glibc-RHEL-119404-1.patch commit 804ea8f5b402c579e6337a74084a475c4b16f5af Author: Frédéric Bérat @@ -797,7 +917,7 @@ CommitDate: Wed Nov 5 12:20:03 2025 +0000 Resolves: RHEL-126046 -:000000 100644 0000000 3233e93 A glibc-RHEL-126046.patch +:000000 100644 00000000 3233e931 A glibc-RHEL-126046.patch commit 9b3349f867fa23240413a5f0d867a813baeeaf08 Author: Frédéric Bérat @@ -809,8 +929,8 @@ CommitDate: Tue Nov 4 14:26:15 2025 +0100 Resolves: RHEL-126049 -:000000 100644 0000000 3bdfb8f A glibc-RHEL-126049-1.patch -:000000 100644 0000000 4ea51f1 A glibc-RHEL-126049-2.patch +:000000 100644 00000000 3bdfb8f0 A glibc-RHEL-126049-1.patch +:000000 100644 00000000 4ea51f1e A glibc-RHEL-126049-2.patch commit c3e975cbcf51f834c9b55e6d9d907594b11e856d Author: Florian Weimer @@ -824,7 +944,7 @@ CommitDate: Mon Nov 3 11:33:57 2025 +0100 Resolves: RHEL-121748 -:100644 100644 04f201b f95800e M patch-git.lua +:100644 100644 04f201b8 f95800e1 M patch-git.lua commit 0cdd6d71bb41d74c9a61380326cf020053efd9a1 Author: Frédéric Bérat @@ -839,15 +959,15 @@ CommitDate: Thu Oct 30 13:36:52 2025 +0000 - Add comprehensive tests and document limitations (RHEL-115823) Resolves: RHEL-115823 -:000000 100644 0000000 4f5fec1 A glibc-RHEL-115823-1.patch -:000000 100644 0000000 a97c16a A glibc-RHEL-115823-2.patch -:000000 100644 0000000 b646a53 A glibc-RHEL-115823-3.patch -:000000 100644 0000000 9c17fc2 A glibc-RHEL-115823-4.patch -:000000 100644 0000000 70949cf A glibc-RHEL-115823-5.patch -:000000 100644 0000000 73f83a5 A glibc-RHEL-115823-6.patch -:000000 100644 0000000 8a8a079 A glibc-RHEL-115823-7.patch -:000000 100644 0000000 d65bf05 A glibc-RHEL-115823-8.patch -:000000 100644 0000000 2430cca A glibc-RHEL-115823-9.patch +:000000 100644 00000000 4f5fec1e A glibc-RHEL-115823-1.patch +:000000 100644 00000000 a97c16a6 A glibc-RHEL-115823-2.patch +:000000 100644 00000000 b646a53a A glibc-RHEL-115823-3.patch +:000000 100644 00000000 9c17fc2c A glibc-RHEL-115823-4.patch +:000000 100644 00000000 70949cff A glibc-RHEL-115823-5.patch +:000000 100644 00000000 73f83a5b A glibc-RHEL-115823-6.patch +:000000 100644 00000000 8a8a0799 A glibc-RHEL-115823-7.patch +:000000 100644 00000000 d65bf058 A glibc-RHEL-115823-8.patch +:000000 100644 00000000 2430ccaf A glibc-RHEL-115823-9.patch commit e97a907db2b8e60fb9129aafb1f7753c627def0f Author: Frédéric Bérat @@ -859,7 +979,7 @@ CommitDate: Wed Oct 29 10:01:44 2025 +0100 Resolves: RHEL-119435 -:000000 100644 0000000 70c7441 A glibc-RHEL-119435.patch +:000000 100644 00000000 70c7441b A glibc-RHEL-119435.patch commit e594f0dd8e24179409b06614477de0affb956de5 Author: Patsy Griffin @@ -874,7 +994,7 @@ CommitDate: Mon Oct 27 21:18:38 2025 -0400 Resolves: RHEL-117418 -:000000 100644 0000000 0a1c55d A glibc-RHEL-117418.patch +:000000 100644 00000000 0a1c55d2 A glibc-RHEL-117418.patch commit d686f6fe8b1f75a3aa74e7de39c082720d00d6db Author: Frédéric Bérat @@ -886,14 +1006,14 @@ CommitDate: Thu Oct 23 10:18:53 2025 +0200 Resolves: RHEL-119434 -:000000 100644 0000000 979034d A glibc-RHEL-119434-1.patch -:000000 100644 0000000 26477a0 A glibc-RHEL-119434-2.patch -:000000 100644 0000000 37cd353 A glibc-RHEL-119434-3.patch -:000000 100644 0000000 0e0b8d1 A glibc-RHEL-119434-4.patch -:000000 100644 0000000 59c5844 A glibc-RHEL-119434-5.patch -:000000 100644 0000000 7bda950 A glibc-RHEL-119434-6.patch -:000000 100644 0000000 74b111d A glibc-RHEL-119434-7.patch -:000000 100644 0000000 57ed9d1 A glibc-RHEL-119434-8.patch +:000000 100644 00000000 979034d5 A glibc-RHEL-119434-1.patch +:000000 100644 00000000 26477a06 A glibc-RHEL-119434-2.patch +:000000 100644 00000000 37cd3537 A glibc-RHEL-119434-3.patch +:000000 100644 00000000 0e0b8d14 A glibc-RHEL-119434-4.patch +:000000 100644 00000000 59c5844c A glibc-RHEL-119434-5.patch +:000000 100644 00000000 7bda9501 A glibc-RHEL-119434-6.patch +:000000 100644 00000000 74b111d7 A glibc-RHEL-119434-7.patch +:000000 100644 00000000 57ed9d13 A glibc-RHEL-119434-8.patch commit 02111ad8a762e3419a7108270c64743483d49609 Author: DJ Delorie @@ -905,9 +1025,9 @@ CommitDate: Wed Oct 22 19:14:06 2025 +0000 Resolves: RHEL-119422 -:000000 100644 0000000 6e8de49 A glibc-RHEL-119422-1.patch -:000000 100644 0000000 a740b14 A glibc-RHEL-119422-2.patch -:000000 100644 0000000 c1c5f9b A glibc-RHEL-119422-3.patch +:000000 100644 00000000 6e8de493 A glibc-RHEL-119422-1.patch +:000000 100644 00000000 a740b14f A glibc-RHEL-119422-2.patch +:000000 100644 00000000 c1c5f9b4 A glibc-RHEL-119422-3.patch commit 808ff574ad910982250a3ed0c1a1cc4c0819de37 Author: Frédéric Bérat @@ -919,14 +1039,14 @@ CommitDate: Wed Oct 22 11:55:26 2025 +0200 Resolves: RHEL-119409 -:000000 100644 0000000 de415c9 A glibc-RHEL-119409-1.patch -:000000 100644 0000000 fa65d58 A glibc-RHEL-119409-2.patch -:000000 100644 0000000 f281289 A glibc-RHEL-119409-3.patch -:000000 100644 0000000 de70dfb A glibc-RHEL-119409-4.patch -:000000 100644 0000000 1ce6d10 A glibc-RHEL-119409-5.patch -:000000 100644 0000000 8af26de A glibc.abignore -:100644 100644 24a4975 3602cc9 M glibc.spec -:100644 100644 a15fc09 1855573 M rpminspect.yaml +:000000 100644 00000000 de415c9d A glibc-RHEL-119409-1.patch +:000000 100644 00000000 fa65d58a A glibc-RHEL-119409-2.patch +:000000 100644 00000000 f2812893 A glibc-RHEL-119409-3.patch +:000000 100644 00000000 de70dfb9 A glibc-RHEL-119409-4.patch +:000000 100644 00000000 1ce6d103 A glibc-RHEL-119409-5.patch +:000000 100644 00000000 8af26de6 A glibc.abignore +:100644 100644 24a49757 3602cc90 M glibc.spec +:100644 100644 a15fc097 18555736 M rpminspect.yaml commit bff8e70b16bf68e74178f692ba9a48e83b7afe85 Author: Frédéric Bérat @@ -938,9 +1058,9 @@ CommitDate: Thu Oct 16 10:30:01 2025 +0200 Resolves: RHEL-119386 -:000000 100644 0000000 359be3f A glibc-RHEL-119386-1.patch -:000000 100644 0000000 6c39662 A glibc-RHEL-119386-2.patch -:000000 100644 0000000 a7f3320 A glibc-RHEL-119386-3.patch +:000000 100644 00000000 359be3ff A glibc-RHEL-119386-1.patch +:000000 100644 00000000 6c39662a A glibc-RHEL-119386-2.patch +:000000 100644 00000000 a7f3320c A glibc-RHEL-119386-3.patch commit 18d86a450ad9b390cf1d8eb63ad5adecfed79266 Author: Frédéric Bérat @@ -952,8 +1072,8 @@ CommitDate: Mon Oct 13 14:27:58 2025 +0200 Resolves: RHEL-119400 -:000000 100644 0000000 32da474 A glibc-RHEL-119400-1.patch -:000000 100644 0000000 49bee5c A glibc-RHEL-119400-2.patch +:000000 100644 00000000 32da4745 A glibc-RHEL-119400-1.patch +:000000 100644 00000000 49bee5c2 A glibc-RHEL-119400-2.patch commit 1c8abf48ab093c5f2603a943e425dc78f4a1ebff Author: Frédéric Bérat @@ -965,7 +1085,7 @@ CommitDate: Wed Oct 8 08:55:56 2025 +0000 Resolves: RHEL-119403 -:000000 100644 0000000 3633ba3 A glibc-RHEL-119403.patch +:000000 100644 00000000 3633ba3c A glibc-RHEL-119403.patch commit fd242e7aaeeee210358acda9b7f25771f701c5aa Author: Frédéric Bérat @@ -977,8 +1097,8 @@ CommitDate: Wed Oct 8 05:45:36 2025 +0000 Resolves: RHEL-119392 -:000000 100644 0000000 8d32df9 A glibc-RHEL-119392-1.patch -:000000 100644 0000000 d72cb62 A glibc-RHEL-119392-2.patch +:000000 100644 00000000 8d32df92 A glibc-RHEL-119392-1.patch +:000000 100644 00000000 d72cb62f A glibc-RHEL-119392-2.patch commit ac4d98ccf57faeaae3cca7d3e9e17d1fd96d0828 Author: Arjun Shankar @@ -990,8 +1110,8 @@ CommitDate: Tue Oct 7 15:41:12 2025 +0200 Resolves: RHEL-119657 -:000000 100644 0000000 35838c8 A glibc-RHEL-119657-1.patch -:000000 100644 0000000 01145d9 A glibc-RHEL-119657-2.patch +:000000 100644 00000000 35838c80 A glibc-RHEL-119657-1.patch +:000000 100644 00000000 01145d96 A glibc-RHEL-119657-2.patch commit 9c81ff69adb4fa7c1b0ba5de6a17784db1ed1f40 Author: Arjun Shankar @@ -1003,8 +1123,8 @@ CommitDate: Mon Oct 6 15:29:30 2025 +0200 Resolves: RHEL-115820 -:000000 100644 0000000 6ffdbe5 A glibc-RHEL-115820-1.patch -:000000 100644 0000000 74afe9c A glibc-RHEL-115820-2.patch +:000000 100644 00000000 6ffdbe51 A glibc-RHEL-115820-1.patch +:000000 100644 00000000 74afe9c4 A glibc-RHEL-115820-2.patch commit 6973ecc6b03caaf61efe78374303c9b411d79e4d Author: Frédéric Bérat @@ -1016,7 +1136,7 @@ CommitDate: Fri Oct 3 15:44:27 2025 +0200 Resolves: RHEL-115825 -:000000 100644 0000000 544e287 A glibc-RHEL-115825.patch +:000000 100644 00000000 544e2871 A glibc-RHEL-115825.patch commit d01369479c4de74e320e19bb41751cc03a2f3f6a Author: DJ Delorie @@ -1028,7 +1148,7 @@ CommitDate: Wed Oct 1 16:16:58 2025 -0400 Resolves: RHEL-65838 -:000000 100644 0000000 8f6c6ea A glibc-RHEL-65383.patch +:000000 100644 00000000 8f6c6ead A glibc-RHEL-65383.patch commit 3a6256d93527f3a44af314a9a0d24f0b3e2ecb2d Author: DJ Delorie @@ -1047,7 +1167,7 @@ CommitDate: Tue Sep 30 16:07:41 2025 -0400 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 3829b88 a15fc09 M rpminspect.yaml +:100644 100644 3829b880 a15fc097 M rpminspect.yaml commit 1e958220ab67bef3b4a066e5821e68ff1804af45 Author: DJ Delorie @@ -1059,7 +1179,7 @@ CommitDate: Wed Sep 24 21:19:40 2025 +0000 Resolves: RHEL-72244 -:000000 100644 0000000 05c0649 A glibc-RHEL-72244.patch +:000000 100644 00000000 05c06492 A glibc-RHEL-72244.patch commit 7ef0dba232ea23ba51de53cf4838640fa1c55c7c Author: Frédéric Bérat @@ -1071,8 +1191,8 @@ CommitDate: Wed Sep 24 06:08:12 2025 +0000 Resolves: RHEL-115819 -:000000 100644 0000000 d28762e A glibc-RHEL-115819-1.patch -:000000 100644 0000000 33ae6ce A glibc-RHEL-115819-2.patch +:000000 100644 00000000 d28762e5 A glibc-RHEL-115819-1.patch +:000000 100644 00000000 33ae6ced A glibc-RHEL-115819-2.patch commit e95aa14bd2498d13b32c4aff9aec547a17acb010 Author: Florian Weimer @@ -1089,8 +1209,8 @@ CommitDate: Tue Sep 23 15:10:19 2025 +0000 RPM-Skip-Release: yes Related: RHEL-111490 -:100644 100644 1166500 dfe9c39 M CONTRIBUTING.md -:100644 100644 f5f7637 04f201b M patch-git.lua +:100644 100644 1166500f dfe9c399 M CONTRIBUTING.md +:100644 100644 f5f76374 04f201b8 M patch-git.lua commit a243a59e4e6f9fa22e8bc96654818659ca664a2b Author: Florian Weimer @@ -1104,7 +1224,7 @@ CommitDate: Tue Sep 23 15:10:19 2025 +0000 RPM-Skip-Release: yes Related: RHEL-111490 -:100644 100644 6223f6d f5f7637 M patch-git.lua +:100644 100644 6223f6dd f5f76374 M patch-git.lua commit 6894c74dd11a640d135be9c96de287a09bd92b86 Author: Florian Weimer @@ -1122,7 +1242,7 @@ CommitDate: Tue Sep 23 15:10:19 2025 +0000 RPM-Skip-Release: yes Related: RHEL-111490 -:100644 100644 edb2cd7 6223f6d M patch-git.lua +:100644 100644 edb2cd77 6223f6dd M patch-git.lua commit cf728b3d9fa08025b377f44daa1ca2f655b90f95 Author: Florian Weimer @@ -1140,7 +1260,7 @@ CommitDate: Tue Sep 23 12:18:10 2025 +0200 RPM-Skip-Release: yes Related: RHEL-111490 -:100644 100644 3702777 1166500 M CONTRIBUTING.md +:100644 100644 3702777e 1166500f M CONTRIBUTING.md commit 428f8d6f99c27d0152c509f9a71d89a1a415f6a7 Author: Frédéric Bérat @@ -1152,12 +1272,12 @@ CommitDate: Mon Sep 22 17:01:30 2025 +0200 Resolves: RHEL-111115 -:000000 100644 0000000 32e48af A glibc-RHEL-111115-1.patch -:000000 100644 0000000 ca6bade A glibc-RHEL-111115-2.patch -:000000 100644 0000000 c230044 A glibc-RHEL-111115-3.patch -:000000 100644 0000000 09a32a9 A glibc-RHEL-111115-4.patch -:000000 100644 0000000 585e570 A glibc-RHEL-111115-5.patch -:000000 100644 0000000 d8232fc A glibc-RHEL-111115-6.patch +:000000 100644 00000000 32e48afc A glibc-RHEL-111115-1.patch +:000000 100644 00000000 ca6badef A glibc-RHEL-111115-2.patch +:000000 100644 00000000 c2300444 A glibc-RHEL-111115-3.patch +:000000 100644 00000000 09a32a9b A glibc-RHEL-111115-4.patch +:000000 100644 00000000 585e570e A glibc-RHEL-111115-5.patch +:000000 100644 00000000 d8232fcb A glibc-RHEL-111115-6.patch commit df55530e131e3faf6a7224108b16191cab254908 Author: Arjun Shankar @@ -1169,7 +1289,7 @@ CommitDate: Fri Sep 19 19:50:15 2025 +0200 Resolves: RHEL-114265 -:000000 100644 0000000 15cf58d A glibc-RHEL-114265.patch +:000000 100644 00000000 15cf58d4 A glibc-RHEL-114265.patch commit e06f84e64bbbdb863631f267e60a1176a10a54ac Author: Frédéric Bérat @@ -1181,7 +1301,7 @@ CommitDate: Fri Sep 19 14:41:14 2025 +0000 Resolves: RHEL-113195 -:000000 100644 0000000 3df6ea0 A glibc-RHEL-113196.patch +:000000 100644 00000000 3df6ea01 A glibc-RHEL-113196.patch commit 3b4a80c65eec61a18613dc4fa61058274d9ff4b7 Author: Frédéric Bérat @@ -1193,15 +1313,15 @@ CommitDate: Fri Sep 19 13:11:28 2025 +0200 Resolves: RHEL-111120 -:000000 100644 0000000 5572370 A glibc-RHEL-111120-1.patch -:000000 100644 0000000 8ff604a A glibc-RHEL-111120-2.patch -:000000 100644 0000000 667693e A glibc-RHEL-111120-3.patch -:000000 100644 0000000 a4ccf82 A glibc-RHEL-111120-4.patch -:000000 100644 0000000 967ae12 A glibc-RHEL-111120-5.patch -:000000 100644 0000000 dba5d06 A glibc-RHEL-111120-6.patch -:000000 100644 0000000 ea989a2 A glibc-RHEL-111120-7.patch -:000000 100644 0000000 017d79c A glibc-RHEL-111120-8.patch -:000000 100644 0000000 ed88574 A glibc-RHEL-111120-9.patch +:000000 100644 00000000 55723705 A glibc-RHEL-111120-1.patch +:000000 100644 00000000 8ff604ab A glibc-RHEL-111120-2.patch +:000000 100644 00000000 667693e0 A glibc-RHEL-111120-3.patch +:000000 100644 00000000 a4ccf826 A glibc-RHEL-111120-4.patch +:000000 100644 00000000 967ae129 A glibc-RHEL-111120-5.patch +:000000 100644 00000000 dba5d061 A glibc-RHEL-111120-6.patch +:000000 100644 00000000 ea989a27 A glibc-RHEL-111120-7.patch +:000000 100644 00000000 017d79c9 A glibc-RHEL-111120-8.patch +:000000 100644 00000000 ed88574b A glibc-RHEL-111120-9.patch commit 637af31dc7ad78be8034470a04888d48458d9d18 Author: Frédéric Bérat @@ -1213,8 +1333,8 @@ CommitDate: Tue Sep 16 13:19:48 2025 +0200 Resolves: RHEL-111117 -:000000 100644 0000000 542e89b A glibc-RHEL-111117-1.patch -:000000 100644 0000000 7cfb43b A glibc-RHEL-111117-2.patch +:000000 100644 00000000 542e89bf A glibc-RHEL-111117-1.patch +:000000 100644 00000000 7cfb43b4 A glibc-RHEL-111117-2.patch commit c72dda3ac87aa7c114cf7675d440dab288295062 Author: DJ Delorie @@ -1226,7 +1346,7 @@ CommitDate: Fri Sep 12 12:17:45 2025 -0400 Resolves: RHEL-86590 -:000000 100644 0000000 3829b88 A rpminspect.yaml +:000000 100644 00000000 3829b880 A rpminspect.yaml commit d88424cfecb4e295dcfeb6085d4eadedbfca6c8d Author: Florian Weimer @@ -1241,7 +1361,7 @@ CommitDate: Wed Sep 10 18:48:58 2025 +0200 Related: RHEL-111490 -:100644 100644 6f3d230 edb2cd7 M patch-git.lua +:100644 100644 6f3d2309 edb2cd77 M patch-git.lua commit df18ac835e61211d81026ef7f6c711e8e5f63111 Author: Florian Weimer @@ -1281,10 +1401,10 @@ CommitDate: Tue Sep 9 17:26:56 2025 +0200 RPM-Release: 60%{?dist} RPM-Changelog-Stop: yes -:100644 100644 7a73081 b90bfc6 M .gitignore -:000000 100644 0000000 3702777 A CONTRIBUTING.md -:100644 100644 f0f3485 24a4975 M glibc.spec -:000000 100644 0000000 6f3d230 A patch-git.lua +:100644 100644 7a730813 b90bfc67 M .gitignore +:000000 100644 00000000 3702777e A CONTRIBUTING.md +:100644 100644 f0f34857 24a49757 M glibc.spec +:000000 100644 00000000 6f3d2309 A patch-git.lua commit 92dfd986b2f2c697144be2ebe10a27d72c660ba4 Author: Arjun Shankar @@ -1296,7 +1416,7 @@ CommitDate: Tue Aug 26 12:31:04 2025 +0200 Resolves: RHEL-102553 -:100644 100644 1304173 f0f3485 M glibc.spec +:100644 100644 13041732 f0f34857 M glibc.spec commit f30223ea76f6fcee96dac3b294d4afc77c59ecc8 Author: Florian Weimer @@ -1311,7 +1431,7 @@ CommitDate: Thu Aug 21 14:15:05 2025 +0200 Resolves: RHEL-110559 -:100644 100644 827b2d5 1304173 M glibc.spec +:100644 100644 827b2d5f 13041732 M glibc.spec commit 53f4d259fab007dbb905e634df73f4d867492506 Author: Arjun Shankar @@ -1353,49 +1473,49 @@ CommitDate: Thu Aug 21 10:25:39 2025 +0200 Resolves: RHEL-109702 Resolves: RHEL-109703 -:000000 100644 0000000 17ed68b A glibc-upstream-2.39-213.patch -:000000 100644 0000000 d4732e8 A glibc-upstream-2.39-214.patch -:000000 100644 0000000 75c81e8 A glibc-upstream-2.39-215.patch -:000000 100644 0000000 027370d A glibc-upstream-2.39-216.patch -:000000 100644 0000000 b185066 A glibc-upstream-2.39-217.patch -:000000 100644 0000000 0318190 A glibc-upstream-2.39-218.patch -:000000 100644 0000000 f2ea96e A glibc-upstream-2.39-219.patch -:000000 100644 0000000 d4cd8f9 A glibc-upstream-2.39-220.patch -:000000 100644 0000000 e1b3b2e A glibc-upstream-2.39-221.patch -:000000 100644 0000000 ad625e7 A glibc-upstream-2.39-222.patch -:000000 100644 0000000 7cbb71b A glibc-upstream-2.39-223.patch -:000000 100644 0000000 9b9edbd A glibc-upstream-2.39-224.patch -:000000 100644 0000000 fa133fa A glibc-upstream-2.39-225.patch -:000000 100644 0000000 6d2dc6d A glibc-upstream-2.39-228.patch -:000000 100644 0000000 914735e A glibc-upstream-2.39-229.patch -:000000 100644 0000000 20ab345 A glibc-upstream-2.39-230.patch -:000000 100644 0000000 328ae5c A glibc-upstream-2.39-231.patch -:000000 100644 0000000 2b9f507 A glibc-upstream-2.39-232.patch -:000000 100644 0000000 d3aee3f A glibc-upstream-2.39-233.patch -:000000 100644 0000000 fccdb50 A glibc-upstream-2.39-234.patch -:000000 100644 0000000 829d052 A glibc-upstream-2.39-235.patch -:000000 100644 0000000 f6bc066 A glibc-upstream-2.39-236.patch -:000000 100644 0000000 89b9b06 A glibc-upstream-2.39-237.patch -:000000 100644 0000000 7045d70 A glibc-upstream-2.39-238.patch -:000000 100644 0000000 03526bf A glibc-upstream-2.39-239.patch -:000000 100644 0000000 aea3c22 A glibc-upstream-2.39-240.patch -:000000 100644 0000000 ecdd6c9 A glibc-upstream-2.39-241.patch -:000000 100644 0000000 e735d12 A glibc-upstream-2.39-242.patch -:000000 100644 0000000 277509b A glibc-upstream-2.39-243.patch -:000000 100644 0000000 8bae168 A glibc-upstream-2.39-244.patch -:000000 100644 0000000 79fca89 A glibc-upstream-2.39-245.patch -:000000 100644 0000000 ef0e216 A glibc-upstream-2.39-246.patch -:000000 100644 0000000 c179dc4 A glibc-upstream-2.39-247.patch -:000000 100644 0000000 b270bf2 A glibc-upstream-2.39-248.patch -:000000 100644 0000000 fdfb7a2 A glibc-upstream-2.39-249.patch -:000000 100644 0000000 bede83b A glibc-upstream-2.39-250.patch -:000000 100644 0000000 ede1711 A glibc-upstream-2.39-251.patch -:000000 100644 0000000 9ef5193 A glibc-upstream-2.39-252.patch -:000000 100644 0000000 19ae42a A glibc-upstream-2.39-253.patch -:000000 100644 0000000 8226a1c A glibc-upstream-2.39-256.patch -:000000 100644 0000000 01f5fcd A glibc-upstream-2.39-257.patch -:000000 100644 0000000 52a8a0f A glibc-upstream-2.39-258.patch -:100644 100644 7cd0ac9 827b2d5 M glibc.spec +:000000 100644 00000000 17ed68ba A glibc-upstream-2.39-213.patch +:000000 100644 00000000 d4732e88 A glibc-upstream-2.39-214.patch +:000000 100644 00000000 75c81e82 A glibc-upstream-2.39-215.patch +:000000 100644 00000000 027370df A glibc-upstream-2.39-216.patch +:000000 100644 00000000 b1850663 A glibc-upstream-2.39-217.patch +:000000 100644 00000000 0318190e A glibc-upstream-2.39-218.patch +:000000 100644 00000000 f2ea96e6 A glibc-upstream-2.39-219.patch +:000000 100644 00000000 d4cd8f95 A glibc-upstream-2.39-220.patch +:000000 100644 00000000 e1b3b2e6 A glibc-upstream-2.39-221.patch +:000000 100644 00000000 ad625e71 A glibc-upstream-2.39-222.patch +:000000 100644 00000000 7cbb71b1 A glibc-upstream-2.39-223.patch +:000000 100644 00000000 9b9edbd4 A glibc-upstream-2.39-224.patch +:000000 100644 00000000 fa133fae A glibc-upstream-2.39-225.patch +:000000 100644 00000000 6d2dc6dd A glibc-upstream-2.39-228.patch +:000000 100644 00000000 914735e3 A glibc-upstream-2.39-229.patch +:000000 100644 00000000 20ab3452 A glibc-upstream-2.39-230.patch +:000000 100644 00000000 328ae5cd A glibc-upstream-2.39-231.patch +:000000 100644 00000000 2b9f507d A glibc-upstream-2.39-232.patch +:000000 100644 00000000 d3aee3fc A glibc-upstream-2.39-233.patch +:000000 100644 00000000 fccdb50d A glibc-upstream-2.39-234.patch +:000000 100644 00000000 829d0520 A glibc-upstream-2.39-235.patch +:000000 100644 00000000 f6bc066d A glibc-upstream-2.39-236.patch +:000000 100644 00000000 89b9b066 A glibc-upstream-2.39-237.patch +:000000 100644 00000000 7045d708 A glibc-upstream-2.39-238.patch +:000000 100644 00000000 03526bf9 A glibc-upstream-2.39-239.patch +:000000 100644 00000000 aea3c22f A glibc-upstream-2.39-240.patch +:000000 100644 00000000 ecdd6c95 A glibc-upstream-2.39-241.patch +:000000 100644 00000000 e735d129 A glibc-upstream-2.39-242.patch +:000000 100644 00000000 277509b0 A glibc-upstream-2.39-243.patch +:000000 100644 00000000 8bae1681 A glibc-upstream-2.39-244.patch +:000000 100644 00000000 79fca893 A glibc-upstream-2.39-245.patch +:000000 100644 00000000 ef0e2165 A glibc-upstream-2.39-246.patch +:000000 100644 00000000 c179dc48 A glibc-upstream-2.39-247.patch +:000000 100644 00000000 b270bf2c A glibc-upstream-2.39-248.patch +:000000 100644 00000000 fdfb7a2b A glibc-upstream-2.39-249.patch +:000000 100644 00000000 bede83b4 A glibc-upstream-2.39-250.patch +:000000 100644 00000000 ede1711b A glibc-upstream-2.39-251.patch +:000000 100644 00000000 9ef5193a A glibc-upstream-2.39-252.patch +:000000 100644 00000000 19ae42ac A glibc-upstream-2.39-253.patch +:000000 100644 00000000 8226a1c9 A glibc-upstream-2.39-256.patch +:000000 100644 00000000 01f5fcd9 A glibc-upstream-2.39-257.patch +:000000 100644 00000000 52a8a0fb A glibc-upstream-2.39-258.patch +:100644 100644 7cd0ac9a 827b2d5f M glibc.spec commit 9c6db562f14aa25c114fe3293cf65aa53a16c37e Author: Arjun Shankar @@ -1407,21 +1527,21 @@ CommitDate: Tue Aug 19 10:10:08 2025 +0200 Resolves: RHEL-108823 -:000000 100644 0000000 523f4cb A glibc-RHEL-108823-1.patch -:000000 100644 0000000 3795764 A glibc-RHEL-108823-10.patch -:000000 100644 0000000 bd288f7 A glibc-RHEL-108823-11.patch -:000000 100644 0000000 51097ab A glibc-RHEL-108823-12.patch -:000000 100644 0000000 9d43247 A glibc-RHEL-108823-13.patch -:000000 100644 0000000 ee16c69 A glibc-RHEL-108823-14.patch -:000000 100644 0000000 9b7c559 A glibc-RHEL-108823-2.patch -:000000 100644 0000000 b5e48ab A glibc-RHEL-108823-3.patch -:000000 100644 0000000 3236001 A glibc-RHEL-108823-4.patch -:000000 100644 0000000 aa39f6c A glibc-RHEL-108823-5.patch -:000000 100644 0000000 a86174b A glibc-RHEL-108823-6.patch -:000000 100644 0000000 bdbe840 A glibc-RHEL-108823-7.patch -:000000 100644 0000000 c967f2b A glibc-RHEL-108823-8.patch -:000000 100644 0000000 03dce5d A glibc-RHEL-108823-9.patch -:100644 100644 5e82c9c 7cd0ac9 M glibc.spec +:000000 100644 00000000 523f4cb4 A glibc-RHEL-108823-1.patch +:000000 100644 00000000 3795764b A glibc-RHEL-108823-10.patch +:000000 100644 00000000 bd288f74 A glibc-RHEL-108823-11.patch +:000000 100644 00000000 51097ab5 A glibc-RHEL-108823-12.patch +:000000 100644 00000000 9d43247a A glibc-RHEL-108823-13.patch +:000000 100644 00000000 ee16c69b A glibc-RHEL-108823-14.patch +:000000 100644 00000000 9b7c5592 A glibc-RHEL-108823-2.patch +:000000 100644 00000000 b5e48ab5 A glibc-RHEL-108823-3.patch +:000000 100644 00000000 32360018 A glibc-RHEL-108823-4.patch +:000000 100644 00000000 aa39f6c8 A glibc-RHEL-108823-5.patch +:000000 100644 00000000 a86174b9 A glibc-RHEL-108823-6.patch +:000000 100644 00000000 bdbe8406 A glibc-RHEL-108823-7.patch +:000000 100644 00000000 c967f2b5 A glibc-RHEL-108823-8.patch +:000000 100644 00000000 03dce5df A glibc-RHEL-108823-9.patch +:100644 100644 5e82c9c5 7cd0ac9a M glibc.spec commit ca8e2eea5041e7ba1e533fb6fa2a81a6864c8f97 Author: Arjun Shankar @@ -1433,41 +1553,41 @@ CommitDate: Thu Aug 14 11:21:59 2025 +0200 Resolves: RHEL-108974 -:000000 100644 0000000 5608e8e A glibc-RHEL-108974-1.patch -:000000 100644 0000000 700841f A glibc-RHEL-108974-10.patch -:000000 100644 0000000 e9e4d11 A glibc-RHEL-108974-11.patch -:000000 100644 0000000 e504313 A glibc-RHEL-108974-12.patch -:000000 100644 0000000 73762e4 A glibc-RHEL-108974-13.patch -:000000 100644 0000000 3ff468d A glibc-RHEL-108974-14.patch -:000000 100644 0000000 ca629f2 A glibc-RHEL-108974-15.patch -:000000 100644 0000000 69d20b9 A glibc-RHEL-108974-16.patch -:000000 100644 0000000 7e2532f A glibc-RHEL-108974-17.patch -:000000 100644 0000000 61b300e A glibc-RHEL-108974-18.patch -:000000 100644 0000000 3475b31 A glibc-RHEL-108974-19.patch -:000000 100644 0000000 093af88 A glibc-RHEL-108974-2.patch -:000000 100644 0000000 f94124f A glibc-RHEL-108974-20.patch -:000000 100644 0000000 cbcf694 A glibc-RHEL-108974-21.patch -:000000 100644 0000000 8fac712 A glibc-RHEL-108974-22.patch -:000000 100644 0000000 fac9b8c A glibc-RHEL-108974-23.patch -:000000 100644 0000000 834d182 A glibc-RHEL-108974-24.patch -:000000 100644 0000000 54b66c9 A glibc-RHEL-108974-25.patch -:000000 100644 0000000 e2d1a64 A glibc-RHEL-108974-26.patch -:000000 100644 0000000 665ff17 A glibc-RHEL-108974-27.patch -:000000 100644 0000000 cf8f209 A glibc-RHEL-108974-28.patch -:000000 100644 0000000 2f53691 A glibc-RHEL-108974-29.patch -:000000 100644 0000000 aea3b56 A glibc-RHEL-108974-3.patch -:000000 100644 0000000 1fc1bb8 A glibc-RHEL-108974-30.patch -:000000 100644 0000000 cd96eb5 A glibc-RHEL-108974-31.patch -:000000 100644 0000000 6fc1c7b A glibc-RHEL-108974-32.patch -:000000 100644 0000000 cf770e4 A glibc-RHEL-108974-33.patch -:000000 100644 0000000 fa83a4c A glibc-RHEL-108974-34.patch -:000000 100644 0000000 cbb1d58 A glibc-RHEL-108974-4.patch -:000000 100644 0000000 1ef6c35 A glibc-RHEL-108974-5.patch -:000000 100644 0000000 0d5ec50 A glibc-RHEL-108974-6.patch -:000000 100644 0000000 7606d74 A glibc-RHEL-108974-7.patch -:000000 100644 0000000 96e2962 A glibc-RHEL-108974-8.patch -:000000 100644 0000000 66bb23f A glibc-RHEL-108974-9.patch -:100644 100644 99be6e2 5e82c9c M glibc.spec +:000000 100644 00000000 5608e8ed A glibc-RHEL-108974-1.patch +:000000 100644 00000000 700841f7 A glibc-RHEL-108974-10.patch +:000000 100644 00000000 e9e4d118 A glibc-RHEL-108974-11.patch +:000000 100644 00000000 e5043136 A glibc-RHEL-108974-12.patch +:000000 100644 00000000 73762e44 A glibc-RHEL-108974-13.patch +:000000 100644 00000000 3ff468d1 A glibc-RHEL-108974-14.patch +:000000 100644 00000000 ca629f25 A glibc-RHEL-108974-15.patch +:000000 100644 00000000 69d20b9f A glibc-RHEL-108974-16.patch +:000000 100644 00000000 7e2532fc A glibc-RHEL-108974-17.patch +:000000 100644 00000000 61b300e8 A glibc-RHEL-108974-18.patch +:000000 100644 00000000 3475b313 A glibc-RHEL-108974-19.patch +:000000 100644 00000000 093af880 A glibc-RHEL-108974-2.patch +:000000 100644 00000000 f94124fe A glibc-RHEL-108974-20.patch +:000000 100644 00000000 cbcf6943 A glibc-RHEL-108974-21.patch +:000000 100644 00000000 8fac7124 A glibc-RHEL-108974-22.patch +:000000 100644 00000000 fac9b8c1 A glibc-RHEL-108974-23.patch +:000000 100644 00000000 834d1823 A glibc-RHEL-108974-24.patch +:000000 100644 00000000 54b66c99 A glibc-RHEL-108974-25.patch +:000000 100644 00000000 e2d1a64b A glibc-RHEL-108974-26.patch +:000000 100644 00000000 665ff172 A glibc-RHEL-108974-27.patch +:000000 100644 00000000 cf8f2094 A glibc-RHEL-108974-28.patch +:000000 100644 00000000 2f536911 A glibc-RHEL-108974-29.patch +:000000 100644 00000000 aea3b562 A glibc-RHEL-108974-3.patch +:000000 100644 00000000 1fc1bb80 A glibc-RHEL-108974-30.patch +:000000 100644 00000000 cd96eb5f A glibc-RHEL-108974-31.patch +:000000 100644 00000000 6fc1c7b3 A glibc-RHEL-108974-32.patch +:000000 100644 00000000 cf770e4c A glibc-RHEL-108974-33.patch +:000000 100644 00000000 fa83a4c1 A glibc-RHEL-108974-34.patch +:000000 100644 00000000 cbb1d58a A glibc-RHEL-108974-4.patch +:000000 100644 00000000 1ef6c353 A glibc-RHEL-108974-5.patch +:000000 100644 00000000 0d5ec50d A glibc-RHEL-108974-6.patch +:000000 100644 00000000 7606d746 A glibc-RHEL-108974-7.patch +:000000 100644 00000000 96e29629 A glibc-RHEL-108974-8.patch +:000000 100644 00000000 66bb23f6 A glibc-RHEL-108974-9.patch +:100644 100644 99be6e28 5e82c9c5 M glibc.spec commit d19eb7001321115280e6f8f448ed4fa74ab1b134 Author: Frédéric Bérat @@ -1483,9 +1603,9 @@ CommitDate: Mon Aug 11 14:28:18 2025 +0200 Resolves: RHEL-108475 -:000000 100644 0000000 30eb2de A glibc-RHEL-108475-1.patch -:000000 100644 0000000 a6aa741 A glibc-RHEL-108475-2.patch -:100644 100644 895d978 99be6e2 M glibc.spec +:000000 100644 00000000 30eb2de7 A glibc-RHEL-108475-1.patch +:000000 100644 00000000 a6aa7417 A glibc-RHEL-108475-2.patch +:100644 100644 895d9780 99be6e28 M glibc.spec commit 46a31fdf250a30ae96c082376a8eab95252762c0 Author: Frédéric Bérat @@ -1518,26 +1638,26 @@ CommitDate: Fri Aug 8 10:42:54 2025 +0200 Resolves: RHEL-107695 -:000000 100644 0000000 ad3ab8f A glibc-RHEL-107695-1.patch -:000000 100644 0000000 740e1d1 A glibc-RHEL-107695-10.patch -:000000 100644 0000000 9d10c11 A glibc-RHEL-107695-11.patch -:000000 100644 0000000 c59be2a A glibc-RHEL-107695-12.patch -:000000 100644 0000000 4a45428 A glibc-RHEL-107695-13.patch -:000000 100644 0000000 2045994 A glibc-RHEL-107695-14.patch -:000000 100644 0000000 9548647 A glibc-RHEL-107695-15.patch -:000000 100644 0000000 d87bf94 A glibc-RHEL-107695-16.patch -:000000 100644 0000000 b763fdf A glibc-RHEL-107695-17.patch -:000000 100644 0000000 8a4fd97 A glibc-RHEL-107695-18.patch -:000000 100644 0000000 6863f45 A glibc-RHEL-107695-19.patch -:000000 100644 0000000 c5668ab A glibc-RHEL-107695-2.patch -:000000 100644 0000000 f799f2f A glibc-RHEL-107695-3.patch -:000000 100644 0000000 86a7a48 A glibc-RHEL-107695-4.patch -:000000 100644 0000000 3a715a6 A glibc-RHEL-107695-5.patch -:000000 100644 0000000 b30572d A glibc-RHEL-107695-6.patch -:000000 100644 0000000 b797630 A glibc-RHEL-107695-7.patch -:000000 100644 0000000 f8a2b97 A glibc-RHEL-107695-8.patch -:000000 100644 0000000 10a864d A glibc-RHEL-107695-9.patch -:100644 100644 1977d97 895d978 M glibc.spec +:000000 100644 00000000 ad3ab8ff A glibc-RHEL-107695-1.patch +:000000 100644 00000000 740e1d17 A glibc-RHEL-107695-10.patch +:000000 100644 00000000 9d10c111 A glibc-RHEL-107695-11.patch +:000000 100644 00000000 c59be2aa A glibc-RHEL-107695-12.patch +:000000 100644 00000000 4a454281 A glibc-RHEL-107695-13.patch +:000000 100644 00000000 2045994f A glibc-RHEL-107695-14.patch +:000000 100644 00000000 95486471 A glibc-RHEL-107695-15.patch +:000000 100644 00000000 d87bf943 A glibc-RHEL-107695-16.patch +:000000 100644 00000000 b763fdf4 A glibc-RHEL-107695-17.patch +:000000 100644 00000000 8a4fd970 A glibc-RHEL-107695-18.patch +:000000 100644 00000000 6863f453 A glibc-RHEL-107695-19.patch +:000000 100644 00000000 c5668abb A glibc-RHEL-107695-2.patch +:000000 100644 00000000 f799f2f3 A glibc-RHEL-107695-3.patch +:000000 100644 00000000 86a7a48e A glibc-RHEL-107695-4.patch +:000000 100644 00000000 3a715a66 A glibc-RHEL-107695-5.patch +:000000 100644 00000000 b30572d7 A glibc-RHEL-107695-6.patch +:000000 100644 00000000 b7976300 A glibc-RHEL-107695-7.patch +:000000 100644 00000000 f8a2b97f A glibc-RHEL-107695-8.patch +:000000 100644 00000000 10a864da A glibc-RHEL-107695-9.patch +:100644 100644 1977d97b 895d9780 M glibc.spec commit 22e43fce786754fb1ce3d7de649e5d5227545437 Author: Frédéric Bérat @@ -1551,7 +1671,7 @@ CommitDate: Fri Aug 8 10:17:26 2025 +0200 Related: RHEL-58357 -:100644 100644 ae407b2 1977d97 M glibc.spec +:100644 100644 ae407b21 1977d97b M glibc.spec commit f8b71945b7e9039596e4e8c74d249d9765836f21 Author: Frédéric Bérat @@ -1577,18 +1697,18 @@ CommitDate: Thu Aug 7 16:07:09 2025 +0200 Resolves: RHEL-58357 -:000000 100644 0000000 0666d3c A glibc-RHEL-58357-1.patch -:000000 100644 0000000 a412332 A glibc-RHEL-58357-10.patch -:000000 100644 0000000 376d72b A glibc-RHEL-58357-11.patch -:000000 100644 0000000 be69718 A glibc-RHEL-58357-2.patch -:000000 100644 0000000 97ec4f9 A glibc-RHEL-58357-3.patch -:000000 100644 0000000 e58de6c A glibc-RHEL-58357-4.patch -:000000 100644 0000000 6a42bde A glibc-RHEL-58357-5.patch -:000000 100644 0000000 daf6b65 A glibc-RHEL-58357-6.patch -:000000 100644 0000000 87a8adb A glibc-RHEL-58357-7.patch -:000000 100644 0000000 9e4d933 A glibc-RHEL-58357-8.patch -:000000 100644 0000000 7fe51f5 A glibc-RHEL-58357-9.patch -:100644 100644 f0649be ae407b2 M glibc.spec +:000000 100644 00000000 0666d3cb A glibc-RHEL-58357-1.patch +:000000 100644 00000000 a412332f A glibc-RHEL-58357-10.patch +:000000 100644 00000000 376d72bd A glibc-RHEL-58357-11.patch +:000000 100644 00000000 be69718c A glibc-RHEL-58357-2.patch +:000000 100644 00000000 97ec4f9f A glibc-RHEL-58357-3.patch +:000000 100644 00000000 e58de6c8 A glibc-RHEL-58357-4.patch +:000000 100644 00000000 6a42bde0 A glibc-RHEL-58357-5.patch +:000000 100644 00000000 daf6b65b A glibc-RHEL-58357-6.patch +:000000 100644 00000000 87a8adb9 A glibc-RHEL-58357-7.patch +:000000 100644 00000000 9e4d933b A glibc-RHEL-58357-8.patch +:000000 100644 00000000 7fe51f5d A glibc-RHEL-58357-9.patch +:100644 100644 f0649bec ae407b21 M glibc.spec commit 5a17d4042050c9327ce0447580cc5a89a3a945c2 Author: Frédéric Bérat @@ -1604,9 +1724,9 @@ CommitDate: Thu Aug 7 14:24:15 2025 +0200 Resolves: RHEL-107861 -:000000 100644 0000000 29eec39 A glibc-RHEL-107861-1.patch -:000000 100644 0000000 75bd3ae A glibc-RHEL-107861-2.patch -:100644 100644 686d803 f0649be M glibc.spec +:000000 100644 00000000 29eec395 A glibc-RHEL-107861-1.patch +:000000 100644 00000000 75bd3ae1 A glibc-RHEL-107861-2.patch +:100644 100644 686d803f f0649bec M glibc.spec commit 5e0f6b30b8c981d41ae201d2a03e8d7e77aad8e3 Author: Arjun Shankar @@ -1618,31 +1738,31 @@ CommitDate: Wed Aug 6 15:02:01 2025 +0200 Resolves: RHEL-106562 -:000000 100644 0000000 d9838ff A glibc-RHEL-106562-1.patch -:000000 100644 0000000 e3c1b91 A glibc-RHEL-106562-10.patch -:000000 100644 0000000 ef95c71 A glibc-RHEL-106562-11.patch -:000000 100644 0000000 a5d4fb5 A glibc-RHEL-106562-12.patch -:000000 100644 0000000 84b92cf A glibc-RHEL-106562-13.patch -:000000 100644 0000000 813c7ff A glibc-RHEL-106562-14.patch -:000000 100644 0000000 5df1459 A glibc-RHEL-106562-15.patch -:000000 100644 0000000 e6ee947 A glibc-RHEL-106562-16.patch -:000000 100644 0000000 a6e68a1 A glibc-RHEL-106562-17.patch -:000000 100644 0000000 134781a A glibc-RHEL-106562-18.patch -:000000 100644 0000000 0502db0 A glibc-RHEL-106562-19.patch -:000000 100644 0000000 1ea5b60 A glibc-RHEL-106562-2.patch -:000000 100644 0000000 e4ca16c A glibc-RHEL-106562-20.patch -:000000 100644 0000000 8ae0eae A glibc-RHEL-106562-21.patch -:000000 100644 0000000 c5058ab A glibc-RHEL-106562-22.patch -:000000 100644 0000000 17be8ef A glibc-RHEL-106562-23.patch -:000000 100644 0000000 fc5ce1b A glibc-RHEL-106562-24.patch -:000000 100644 0000000 dcdbff0 A glibc-RHEL-106562-3.patch -:000000 100644 0000000 86c0c97 A glibc-RHEL-106562-4.patch -:000000 100644 0000000 d97d8ff A glibc-RHEL-106562-5.patch -:000000 100644 0000000 959730e A glibc-RHEL-106562-6.patch -:000000 100644 0000000 569a715 A glibc-RHEL-106562-7.patch -:000000 100644 0000000 2eb8c05 A glibc-RHEL-106562-8.patch -:000000 100644 0000000 e7b1bda A glibc-RHEL-106562-9.patch -:100644 100644 c810d91 686d803 M glibc.spec +:000000 100644 00000000 d9838ff7 A glibc-RHEL-106562-1.patch +:000000 100644 00000000 e3c1b91a A glibc-RHEL-106562-10.patch +:000000 100644 00000000 ef95c717 A glibc-RHEL-106562-11.patch +:000000 100644 00000000 a5d4fb5b A glibc-RHEL-106562-12.patch +:000000 100644 00000000 84b92cfe A glibc-RHEL-106562-13.patch +:000000 100644 00000000 813c7ff8 A glibc-RHEL-106562-14.patch +:000000 100644 00000000 5df1459f A glibc-RHEL-106562-15.patch +:000000 100644 00000000 e6ee9474 A glibc-RHEL-106562-16.patch +:000000 100644 00000000 a6e68a12 A glibc-RHEL-106562-17.patch +:000000 100644 00000000 134781a7 A glibc-RHEL-106562-18.patch +:000000 100644 00000000 0502db02 A glibc-RHEL-106562-19.patch +:000000 100644 00000000 1ea5b607 A glibc-RHEL-106562-2.patch +:000000 100644 00000000 e4ca16c4 A glibc-RHEL-106562-20.patch +:000000 100644 00000000 8ae0eae6 A glibc-RHEL-106562-21.patch +:000000 100644 00000000 c5058ab9 A glibc-RHEL-106562-22.patch +:000000 100644 00000000 17be8ef0 A glibc-RHEL-106562-23.patch +:000000 100644 00000000 fc5ce1b7 A glibc-RHEL-106562-24.patch +:000000 100644 00000000 dcdbff05 A glibc-RHEL-106562-3.patch +:000000 100644 00000000 86c0c976 A glibc-RHEL-106562-4.patch +:000000 100644 00000000 d97d8ff5 A glibc-RHEL-106562-5.patch +:000000 100644 00000000 959730ef A glibc-RHEL-106562-6.patch +:000000 100644 00000000 569a7159 A glibc-RHEL-106562-7.patch +:000000 100644 00000000 2eb8c051 A glibc-RHEL-106562-8.patch +:000000 100644 00000000 e7b1bdaf A glibc-RHEL-106562-9.patch +:100644 100644 c810d912 686d803f M glibc.spec commit 0d5bc434145dd63a1f10f56c594a95648f0c7369 Author: Florian Weimer @@ -1654,10 +1774,10 @@ CommitDate: Tue Aug 5 16:30:24 2025 +0200 Resolves: RHEL-107540 -:000000 100644 0000000 e3eedb7 A glibc-RHEL-107540-1.patch -:000000 100644 0000000 0401b32 A glibc-RHEL-107540-2.patch -:000000 100644 0000000 5a0231c A glibc-RHEL-107540-3.patch -:100644 100644 ed4fe29 c810d91 M glibc.spec +:000000 100644 00000000 e3eedb73 A glibc-RHEL-107540-1.patch +:000000 100644 00000000 0401b321 A glibc-RHEL-107540-2.patch +:000000 100644 00000000 5a0231c0 A glibc-RHEL-107540-3.patch +:100644 100644 ed4fe29a c810d912 M glibc.spec commit 3dd56eab8d4c0e5cb50ea69bf6477098118bb698 Author: Frédéric Bérat @@ -1674,10 +1794,10 @@ CommitDate: Mon Aug 4 14:22:06 2025 +0200 Resolves: RHEL-72564 -:000000 100644 0000000 c61dfcb A glibc-RHEL-72564-1.patch -:000000 100644 0000000 ea1afdf A glibc-RHEL-72564-2.patch -:100644 100644 82807c7 ed4fe29 M glibc.spec -:100644 100644 9405390 5928157 M ld-so-abi-s390x.baseline +:000000 100644 00000000 c61dfcb7 A glibc-RHEL-72564-1.patch +:000000 100644 00000000 ea1afdf1 A glibc-RHEL-72564-2.patch +:100644 100644 82807c73 ed4fe29a M glibc.spec +:100644 100644 9405390b 59281573 M ld-so-abi-s390x.baseline commit edbaed16b19cab0a6c833f85e96ced6d661eaa22 Author: Frédéric Bérat @@ -1702,13 +1822,13 @@ CommitDate: Thu Jul 31 16:29:47 2025 +0200 Resolves: RHEL-72564 -:100644 100644 524ab22 82807c7 M glibc.spec -:000000 100644 0000000 f851c7b A ld-so-abi-aarch64.baseline -:000000 100644 0000000 5b1daae A ld-so-abi-ppc64le.baseline -:000000 100644 0000000 6595d04 A ld-so-abi-riscv64.baseline -:000000 100644 0000000 9405390 A ld-so-abi-s390x.baseline -:000000 100644 0000000 855abc6 A ld-so-abi-x86_64.baseline -:000000 100644 0000000 066847e A verify-ld-so-abi.sh +:100644 100644 524ab225 82807c73 M glibc.spec +:000000 100644 00000000 f851c7b6 A ld-so-abi-aarch64.baseline +:000000 100644 00000000 5b1daae2 A ld-so-abi-ppc64le.baseline +:000000 100644 00000000 6595d048 A ld-so-abi-riscv64.baseline +:000000 100644 00000000 9405390b A ld-so-abi-s390x.baseline +:000000 100644 00000000 855abc60 A ld-so-abi-x86_64.baseline +:000000 100644 00000000 066847eb A verify-ld-so-abi.sh commit 7c2d760e4fa0d4d9968e8f40f47745bd5a2133d1 Author: Florian Weimer @@ -1720,8 +1840,8 @@ CommitDate: Thu Jul 24 20:26:33 2025 +0200 Resolves: RHEL-105324 -:000000 100644 0000000 5a4bd50 A glibc-RHEL-105324.patch -:100644 100644 1e500a9 524ab22 M glibc.spec +:000000 100644 00000000 5a4bd506 A glibc-RHEL-105324.patch +:100644 100644 1e500a9a 524ab225 M glibc.spec commit cac5195e9e0418607d123fb9cc52ab1d5a3e03ce Author: Florian Weimer @@ -1733,9 +1853,9 @@ CommitDate: Thu Jul 24 13:25:18 2025 +0200 Resolves: RHEL-95246 -:000000 100644 0000000 0b431c6 A glibc-RHEL-95246-1.patch -:000000 100644 0000000 2358e0c A glibc-RHEL-95246-2.patch -:100644 100644 60672d1 1e500a9 M glibc.spec +:000000 100644 00000000 0b431c6e A glibc-RHEL-95246-1.patch +:000000 100644 00000000 2358e0c2 A glibc-RHEL-95246-2.patch +:100644 100644 60672d15 1e500a9a M glibc.spec commit e8f76ede2b231d2e1fe694bbc632089b30c236b0 Author: Florian Weimer @@ -1747,8 +1867,8 @@ CommitDate: Wed Jul 23 17:07:28 2025 +0200 Resolves: RHEL-104151 -:000000 100644 0000000 8248df4 A glibc-RHEL-104151.patch -:100644 100644 5918cea 60672d1 M glibc.spec +:000000 100644 00000000 8248df40 A glibc-RHEL-104151.patch +:100644 100644 5918ceae 60672d15 M glibc.spec commit 4e827a476bb7127377c451e8a26348a0b802ebde Author: Florian Weimer @@ -1760,7 +1880,7 @@ CommitDate: Wed Jul 9 11:27:43 2025 +0200 Resolves: RHEL-102555 -:100644 100644 d8a0184 5918cea M glibc.spec +:100644 100644 d8a0184c 5918ceae M glibc.spec commit 392c65a97dc3c2c93d3247236303d275ad56097a Author: Florian Weimer @@ -1772,9 +1892,9 @@ CommitDate: Thu Jul 3 18:14:49 2025 +0200 Resolves: RHEL-101754 -:000000 100644 0000000 36e48d9 A glibc-RHEL-101754-1.patch -:000000 100644 0000000 742d153 A glibc-RHEL-101754-2.patch -:100644 100644 bd19100 d8a0184 M glibc.spec +:000000 100644 00000000 36e48d9e A glibc-RHEL-101754-1.patch +:000000 100644 00000000 742d153d A glibc-RHEL-101754-2.patch +:100644 100644 bd191007 d8a0184c M glibc.spec commit 8e16d819de9492281e62b37ac7dc4c2a95eb6515 Author: Florian Weimer @@ -1786,8 +1906,8 @@ CommitDate: Tue Jul 1 14:21:47 2025 +0200 Resolves: RHEL-82285 -:000000 100644 0000000 b654242 A glibc-RHEL-82285.patch -:100644 100644 921a729 bd19100 M glibc.spec +:000000 100644 00000000 b6542428 A glibc-RHEL-82285.patch +:100644 100644 921a7294 bd191007 M glibc.spec commit 70ebc1f0c6e44878f52fccde4fdff87e95faa055 Author: Arjun Shankar @@ -1808,72 +1928,72 @@ CommitDate: Tue Jul 1 11:39:21 2025 +0200 Resolves: RHEL-86433 Resolves: RHEL-95485 -:000000 100644 0000000 1da3b7c A glibc-upstream-2.39-147.patch -:000000 100644 0000000 2975507 A glibc-upstream-2.39-148.patch -:000000 100644 0000000 d02b958 A glibc-upstream-2.39-149.patch -:000000 100644 0000000 d45425f A glibc-upstream-2.39-150.patch -:000000 100644 0000000 d930fc9 A glibc-upstream-2.39-151.patch -:000000 100644 0000000 6f249e1 A glibc-upstream-2.39-152.patch -:000000 100644 0000000 32bee5b A glibc-upstream-2.39-153.patch -:000000 100644 0000000 b192513 A glibc-upstream-2.39-154.patch -:000000 100644 0000000 d8ba7a5 A glibc-upstream-2.39-155.patch -:000000 100644 0000000 12fa961 A glibc-upstream-2.39-156.patch -:000000 100644 0000000 3f1d87d A glibc-upstream-2.39-157.patch -:000000 100644 0000000 0c02585 A glibc-upstream-2.39-158.patch -:000000 100644 0000000 355d2e3 A glibc-upstream-2.39-159.patch -:000000 100644 0000000 eeeaa42 A glibc-upstream-2.39-160.patch -:000000 100644 0000000 6d902f1 A glibc-upstream-2.39-161.patch -:000000 100644 0000000 d71b6b6 A glibc-upstream-2.39-162.patch -:000000 100644 0000000 3ec9e32 A glibc-upstream-2.39-163.patch -:000000 100644 0000000 4c47935 A glibc-upstream-2.39-164.patch -:000000 100644 0000000 8410684 A glibc-upstream-2.39-165.patch -:000000 100644 0000000 1fb60eb A glibc-upstream-2.39-166.patch -:000000 100644 0000000 ef92f21 A glibc-upstream-2.39-167.patch -:000000 100644 0000000 565eb14 A glibc-upstream-2.39-168.patch -:000000 100644 0000000 d1df5b9 A glibc-upstream-2.39-169.patch -:000000 100644 0000000 8ea22b1 A glibc-upstream-2.39-170.patch -:000000 100644 0000000 bdeedbe A glibc-upstream-2.39-171.patch -:000000 100644 0000000 f850918 A glibc-upstream-2.39-172.patch -:000000 100644 0000000 c81f9e7 A glibc-upstream-2.39-173.patch -:000000 100644 0000000 152c6ae A glibc-upstream-2.39-174.patch -:000000 100644 0000000 1858d00 A glibc-upstream-2.39-175.patch -:000000 100644 0000000 130210b A glibc-upstream-2.39-176.patch -:000000 100644 0000000 b550ed7 A glibc-upstream-2.39-177.patch -:000000 100644 0000000 476939e A glibc-upstream-2.39-178.patch -:000000 100644 0000000 b07abba A glibc-upstream-2.39-179.patch -:000000 100644 0000000 2140061 A glibc-upstream-2.39-180.patch -:000000 100644 0000000 5842775 A glibc-upstream-2.39-181.patch -:000000 100644 0000000 cdec3f3 A glibc-upstream-2.39-182.patch -:000000 100644 0000000 d8d52fa A glibc-upstream-2.39-183.patch -:000000 100644 0000000 269e62b A glibc-upstream-2.39-184.patch -:000000 100644 0000000 bfea4d7 A glibc-upstream-2.39-185.patch -:000000 100644 0000000 e66963e A glibc-upstream-2.39-186.patch -:000000 100644 0000000 27bb735 A glibc-upstream-2.39-187.patch -:000000 100644 0000000 37b779f A glibc-upstream-2.39-188.patch -:000000 100644 0000000 0111578 A glibc-upstream-2.39-189.patch -:000000 100644 0000000 ee0e91d A glibc-upstream-2.39-190.patch -:000000 100644 0000000 6a4cdea A glibc-upstream-2.39-191.patch -:000000 100644 0000000 1a69b86 A glibc-upstream-2.39-192.patch -:000000 100644 0000000 2bda9e9 A glibc-upstream-2.39-193.patch -:000000 100644 0000000 52ef411 A glibc-upstream-2.39-194.patch -:000000 100644 0000000 944d1a4 A glibc-upstream-2.39-195.patch -:000000 100644 0000000 d47bb85 A glibc-upstream-2.39-196.patch -:000000 100644 0000000 a413578 A glibc-upstream-2.39-197.patch -:000000 100644 0000000 a0c9d1a A glibc-upstream-2.39-198.patch -:000000 100644 0000000 b5b2458 A glibc-upstream-2.39-199.patch -:000000 100644 0000000 bda619f A glibc-upstream-2.39-200.patch -:000000 100644 0000000 0e6a9a2 A glibc-upstream-2.39-201.patch -:000000 100644 0000000 dd9ebe0 A glibc-upstream-2.39-202.patch -:000000 100644 0000000 140f69f A glibc-upstream-2.39-203.patch -:000000 100644 0000000 2658349 A glibc-upstream-2.39-204.patch -:000000 100644 0000000 637fec3 A glibc-upstream-2.39-205.patch -:000000 100644 0000000 59b1a10 A glibc-upstream-2.39-206.patch -:000000 100644 0000000 8edb2ab A glibc-upstream-2.39-207.patch -:000000 100644 0000000 debabf9 A glibc-upstream-2.39-208.patch -:000000 100644 0000000 230468f A glibc-upstream-2.39-209.patch -:000000 100644 0000000 6267922 A glibc-upstream-2.39-210.patch -:000000 100644 0000000 fd21834 A glibc-upstream-2.39-211.patch -:100644 100644 d3babc8 921a729 M glibc.spec +:000000 100644 00000000 1da3b7c6 A glibc-upstream-2.39-147.patch +:000000 100644 00000000 2975507e A glibc-upstream-2.39-148.patch +:000000 100644 00000000 d02b9585 A glibc-upstream-2.39-149.patch +:000000 100644 00000000 d45425f1 A glibc-upstream-2.39-150.patch +:000000 100644 00000000 d930fc9a A glibc-upstream-2.39-151.patch +:000000 100644 00000000 6f249e1f A glibc-upstream-2.39-152.patch +:000000 100644 00000000 32bee5b9 A glibc-upstream-2.39-153.patch +:000000 100644 00000000 b1925139 A glibc-upstream-2.39-154.patch +:000000 100644 00000000 d8ba7a5e A glibc-upstream-2.39-155.patch +:000000 100644 00000000 12fa9611 A glibc-upstream-2.39-156.patch +:000000 100644 00000000 3f1d87dd A glibc-upstream-2.39-157.patch +:000000 100644 00000000 0c02585a A glibc-upstream-2.39-158.patch +:000000 100644 00000000 355d2e33 A glibc-upstream-2.39-159.patch +:000000 100644 00000000 eeeaa428 A glibc-upstream-2.39-160.patch +:000000 100644 00000000 6d902f1c A glibc-upstream-2.39-161.patch +:000000 100644 00000000 d71b6b62 A glibc-upstream-2.39-162.patch +:000000 100644 00000000 3ec9e320 A glibc-upstream-2.39-163.patch +:000000 100644 00000000 4c47935f A glibc-upstream-2.39-164.patch +:000000 100644 00000000 8410684e A glibc-upstream-2.39-165.patch +:000000 100644 00000000 1fb60ebe A glibc-upstream-2.39-166.patch +:000000 100644 00000000 ef92f212 A glibc-upstream-2.39-167.patch +:000000 100644 00000000 565eb140 A glibc-upstream-2.39-168.patch +:000000 100644 00000000 d1df5b90 A glibc-upstream-2.39-169.patch +:000000 100644 00000000 8ea22b14 A glibc-upstream-2.39-170.patch +:000000 100644 00000000 bdeedbe8 A glibc-upstream-2.39-171.patch +:000000 100644 00000000 f850918e A glibc-upstream-2.39-172.patch +:000000 100644 00000000 c81f9e75 A glibc-upstream-2.39-173.patch +:000000 100644 00000000 152c6aec A glibc-upstream-2.39-174.patch +:000000 100644 00000000 1858d00c A glibc-upstream-2.39-175.patch +:000000 100644 00000000 130210bd A glibc-upstream-2.39-176.patch +:000000 100644 00000000 b550ed79 A glibc-upstream-2.39-177.patch +:000000 100644 00000000 476939ee A glibc-upstream-2.39-178.patch +:000000 100644 00000000 b07abba6 A glibc-upstream-2.39-179.patch +:000000 100644 00000000 2140061c A glibc-upstream-2.39-180.patch +:000000 100644 00000000 58427753 A glibc-upstream-2.39-181.patch +:000000 100644 00000000 cdec3f34 A glibc-upstream-2.39-182.patch +:000000 100644 00000000 d8d52faa A glibc-upstream-2.39-183.patch +:000000 100644 00000000 269e62bd A glibc-upstream-2.39-184.patch +:000000 100644 00000000 bfea4d76 A glibc-upstream-2.39-185.patch +:000000 100644 00000000 e66963e8 A glibc-upstream-2.39-186.patch +:000000 100644 00000000 27bb7357 A glibc-upstream-2.39-187.patch +:000000 100644 00000000 37b779fd A glibc-upstream-2.39-188.patch +:000000 100644 00000000 0111578e A glibc-upstream-2.39-189.patch +:000000 100644 00000000 ee0e91da A glibc-upstream-2.39-190.patch +:000000 100644 00000000 6a4cdeac A glibc-upstream-2.39-191.patch +:000000 100644 00000000 1a69b86d A glibc-upstream-2.39-192.patch +:000000 100644 00000000 2bda9e9b A glibc-upstream-2.39-193.patch +:000000 100644 00000000 52ef4114 A glibc-upstream-2.39-194.patch +:000000 100644 00000000 944d1a45 A glibc-upstream-2.39-195.patch +:000000 100644 00000000 d47bb850 A glibc-upstream-2.39-196.patch +:000000 100644 00000000 a413578a A glibc-upstream-2.39-197.patch +:000000 100644 00000000 a0c9d1a6 A glibc-upstream-2.39-198.patch +:000000 100644 00000000 b5b2458e A glibc-upstream-2.39-199.patch +:000000 100644 00000000 bda619f6 A glibc-upstream-2.39-200.patch +:000000 100644 00000000 0e6a9a2e A glibc-upstream-2.39-201.patch +:000000 100644 00000000 dd9ebe01 A glibc-upstream-2.39-202.patch +:000000 100644 00000000 140f69ff A glibc-upstream-2.39-203.patch +:000000 100644 00000000 26583497 A glibc-upstream-2.39-204.patch +:000000 100644 00000000 637fec38 A glibc-upstream-2.39-205.patch +:000000 100644 00000000 59b1a10b A glibc-upstream-2.39-206.patch +:000000 100644 00000000 8edb2abd A glibc-upstream-2.39-207.patch +:000000 100644 00000000 debabf94 A glibc-upstream-2.39-208.patch +:000000 100644 00000000 230468f7 A glibc-upstream-2.39-209.patch +:000000 100644 00000000 62679227 A glibc-upstream-2.39-210.patch +:000000 100644 00000000 fd218342 A glibc-upstream-2.39-211.patch +:100644 100644 d3babc8e 921a7294 M glibc.spec commit 55a8279a3be2afc505482ac97680d04a55a3e1d0 Author: Martin Coufal @@ -1883,7 +2003,7 @@ CommitDate: Thu Jun 19 13:30:21 2025 +0200 tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6: update relevancy -:100644 100644 c88d3fd 7d3b88f M tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/main.fmf +:100644 100644 c88d3fdf 7d3b88f9 M tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/main.fmf commit 369f3972b72b6ee460977a3c7cfbc3d79b2c4d14 Author: Florian Weimer @@ -1895,7 +2015,7 @@ CommitDate: Tue Jun 17 13:51:26 2025 +0200 Resolves: RHEL-97433 -:100644 100644 820e3ac d3babc8 M glibc.spec +:100644 100644 820e3acb d3babc8e M glibc.spec commit 64d489ff04ef0d400d2be4f663fca16ec5155c4b Author: Andrea Bolognani @@ -1913,7 +2033,7 @@ CommitDate: Fri Apr 18 15:15:24 2025 +0200 Thanks: David Abdurachmanov Signed-off-by: Andrea Bolognani -:100644 100644 a6e5f3f 820e3ac M glibc.spec +:100644 100644 a6e5f3f1 820e3acb M glibc.spec commit 2fac143e74276a52aaebda50d571fdc85781f73b Author: Florian Weimer @@ -1925,9 +2045,9 @@ CommitDate: Fri Jan 24 23:16:09 2025 +0100 Resolves: RHEL-75809 -:000000 100644 0000000 15d865e A glibc-RHEL-75809-2.patch -:000000 100644 0000000 aff1b42 A glibc-RHEL-75809-3.patch -:100644 100644 63699a8 a6e5f3f M glibc.spec +:000000 100644 00000000 15d865ef A glibc-RHEL-75809-2.patch +:000000 100644 00000000 aff1b42b A glibc-RHEL-75809-3.patch +:100644 100644 63699a84 a6e5f3f1 M glibc.spec commit b76546a663f6edf68b35af41db66f22db6977810 Author: Florian Weimer @@ -1939,8 +2059,8 @@ CommitDate: Thu Jan 23 22:35:42 2025 +0100 Resolves: RHEL-75555 -:000000 100644 0000000 ef56105 A glibc-RHEL-75555.patch -:100644 100644 0a924d9 63699a8 M glibc.spec +:000000 100644 00000000 ef561052 A glibc-RHEL-75555.patch +:100644 100644 0a924d95 63699a84 M glibc.spec commit 95d5cf3a67663fdee51086f46412493255446bbd Author: Florian Weimer @@ -1950,8 +2070,8 @@ CommitDate: Thu Jan 23 21:17:23 2025 +0100 Restore compatibility with environ/malloc usage pattern (RHEL-75809) -:000000 100644 0000000 c66091d A glibc-RHEL-75809.patch -:100644 100644 ef89355 0a924d9 M glibc.spec +:000000 100644 00000000 c66091d9 A glibc-RHEL-75809.patch +:100644 100644 ef893559 0a924d95 M glibc.spec commit 7e7241f6206d2f68286aa56853db7594e749c4f6 Author: Florian Weimer @@ -1973,16 +2093,16 @@ CommitDate: Thu Jan 23 09:08:39 2025 +0100 - nptl: initialize cpu_id_start prior to rseq registration - nptl: initialize rseq area prior to registration -:000000 100644 0000000 c2ed486 A glibc-upstream-2.39-138.patch -:000000 100644 0000000 20d6367 A glibc-upstream-2.39-139.patch -:000000 100644 0000000 aa67ae2 A glibc-upstream-2.39-140.patch -:000000 100644 0000000 2801ac0 A glibc-upstream-2.39-141.patch -:000000 100644 0000000 72c8751 A glibc-upstream-2.39-142.patch -:000000 100644 0000000 ade64c9 A glibc-upstream-2.39-143.patch -:000000 100644 0000000 17ca3b3 A glibc-upstream-2.39-144.patch -:000000 100644 0000000 1248613 A glibc-upstream-2.39-145.patch -:000000 100644 0000000 9d16b94 A glibc-upstream-2.39-146.patch -:100644 100644 66c4e1f ef89355 M glibc.spec +:000000 100644 00000000 c2ed4868 A glibc-upstream-2.39-138.patch +:000000 100644 00000000 20d63672 A glibc-upstream-2.39-139.patch +:000000 100644 00000000 aa67ae20 A glibc-upstream-2.39-140.patch +:000000 100644 00000000 2801ac03 A glibc-upstream-2.39-141.patch +:000000 100644 00000000 72c87516 A glibc-upstream-2.39-142.patch +:000000 100644 00000000 ade64c90 A glibc-upstream-2.39-143.patch +:000000 100644 00000000 17ca3b3b A glibc-upstream-2.39-144.patch +:000000 100644 00000000 1248613e A glibc-upstream-2.39-145.patch +:000000 100644 00000000 9d16b94b A glibc-upstream-2.39-146.patch +:100644 100644 66c4e1f4 ef893559 M glibc.spec commit 071446cc9087e895470214bb7d2aa756fb4f740d Author: Florian Weimer @@ -1992,17 +2112,17 @@ CommitDate: Mon Dec 23 14:59:23 2024 +0100 Support in-place file conversion in the iconv tool (RHEL-71530) -:000000 100644 0000000 c4dc954 A glibc-RHEL-71530-1.patch -:000000 100644 0000000 32fcbcb A glibc-RHEL-71530-10.patch -:000000 100644 0000000 4e4de98 A glibc-RHEL-71530-2.patch -:000000 100644 0000000 740ff15 A glibc-RHEL-71530-3.patch -:000000 100644 0000000 9e0824f A glibc-RHEL-71530-4.patch -:000000 100644 0000000 827ef5d A glibc-RHEL-71530-5.patch -:000000 100644 0000000 98fd5eb A glibc-RHEL-71530-6.patch -:000000 100644 0000000 932e4fb A glibc-RHEL-71530-7.patch -:000000 100644 0000000 c652caf A glibc-RHEL-71530-8.patch -:000000 100644 0000000 7d764c7 A glibc-RHEL-71530-9.patch -:100644 100644 3a5f146 66c4e1f M glibc.spec +:000000 100644 00000000 c4dc9540 A glibc-RHEL-71530-1.patch +:000000 100644 00000000 32fcbcb4 A glibc-RHEL-71530-10.patch +:000000 100644 00000000 4e4de983 A glibc-RHEL-71530-2.patch +:000000 100644 00000000 740ff15b A glibc-RHEL-71530-3.patch +:000000 100644 00000000 9e0824fd A glibc-RHEL-71530-4.patch +:000000 100644 00000000 827ef5d0 A glibc-RHEL-71530-5.patch +:000000 100644 00000000 98fd5eba A glibc-RHEL-71530-6.patch +:000000 100644 00000000 932e4fb6 A glibc-RHEL-71530-7.patch +:000000 100644 00000000 c652cafb A glibc-RHEL-71530-8.patch +:000000 100644 00000000 7d764c73 A glibc-RHEL-71530-9.patch +:100644 100644 3a5f1461 66c4e1f4 M glibc.spec commit f0a7516eb02599fff9df4d7055945e51b7203b5a Author: Florian Weimer @@ -2012,8 +2132,8 @@ CommitDate: Mon Dec 16 19:32:20 2024 +0100 Make getenv thread-safe in more cases (RHEL-42410) -:000000 100644 0000000 d7b6226 A glibc-RHEL-42410.patch -:100644 100644 951c747 3a5f146 M glibc.spec +:000000 100644 00000000 d7b6226f A glibc-RHEL-42410.patch +:100644 100644 951c7470 3a5f1461 M glibc.spec commit b7ddd38a9202a76afc40fd716477184f8e16c65f Author: Bruno Goncalves @@ -2025,7 +2145,7 @@ CommitDate: Mon Dec 16 17:26:35 2024 +0000 Related: RHELMISC-7545 -:100644 100644 cc382ad 0ebe339 M gating.yaml +:100644 100644 cc382ade 0ebe3399 M gating.yaml commit 6440988290ed876a60e0c4eb3665c963b5dcce34 Author: Florian Weimer @@ -2035,8 +2155,8 @@ CommitDate: Sun Dec 15 17:30:28 2024 +0100 Minor update to getrandom vDSO handshake -:000000 100644 0000000 4c09288 A glibc-RHEL-12867-3.patch -:100644 100644 f574372 951c747 M glibc.spec +:000000 100644 00000000 4c092889 A glibc-RHEL-12867-3.patch +:100644 100644 f574372c 951c7470 M glibc.spec commit 308f336d614355fafcc85fd266f9c27e2678c89b Author: Florian Weimer @@ -2046,8 +2166,8 @@ CommitDate: Wed Dec 11 19:57:07 2024 +0100 CVE-2024-12455: Incorrect getrandom return value on ppc64le -:000000 100644 0000000 4f67be7 A glibc-RHEL-12867-2.patch -:100644 100644 993cdd7 f574372 M glibc.spec +:000000 100644 00000000 4f67be76 A glibc-RHEL-12867-2.patch +:100644 100644 993cdd70 f574372c M glibc.spec commit 2a30b8f4b251e0c895d75348dfdac726e6d74cc1 Author: Arjun Shankar @@ -2107,50 +2227,50 @@ CommitDate: Wed Nov 20 17:12:17 2024 +0100 Resolves: RHEL-57777 Resolves: RHEL-61392 -:000000 100644 0000000 0eeecc0 A glibc-upstream-2.39-100.patch -:000000 100644 0000000 5d94db8 A glibc-upstream-2.39-101.patch -:000000 100644 0000000 91b388a A glibc-upstream-2.39-102.patch -:000000 100644 0000000 206d5c0 A glibc-upstream-2.39-103.patch -:000000 100644 0000000 5e7d07e A glibc-upstream-2.39-104.patch -:000000 100644 0000000 3bba75f A glibc-upstream-2.39-105.patch -:000000 100644 0000000 8f1c95b A glibc-upstream-2.39-106.patch -:000000 100644 0000000 a9ca460 A glibc-upstream-2.39-107.patch -:000000 100644 0000000 3bf9400 A glibc-upstream-2.39-108.patch -:000000 100644 0000000 026fd73 A glibc-upstream-2.39-109.patch -:000000 100644 0000000 fd10591 A glibc-upstream-2.39-110.patch -:000000 100644 0000000 03ba58b A glibc-upstream-2.39-111.patch -:000000 100644 0000000 784739e A glibc-upstream-2.39-112.patch -:000000 100644 0000000 51b7c89 A glibc-upstream-2.39-113.patch -:000000 100644 0000000 d64ebf8 A glibc-upstream-2.39-114.patch -:000000 100644 0000000 3475ed3 A glibc-upstream-2.39-115.patch -:000000 100644 0000000 3295a2f A glibc-upstream-2.39-116.patch -:000000 100644 0000000 53b7ce9 A glibc-upstream-2.39-117.patch -:000000 100644 0000000 2d12af8 A glibc-upstream-2.39-118.patch -:000000 100644 0000000 18c30ed A glibc-upstream-2.39-119.patch -:000000 100644 0000000 0506252 A glibc-upstream-2.39-120.patch -:000000 100644 0000000 12a3b35 A glibc-upstream-2.39-121.patch -:000000 100644 0000000 4e2c60c A glibc-upstream-2.39-122.patch -:000000 100644 0000000 8eadabd A glibc-upstream-2.39-123.patch -:000000 100644 0000000 6c86939 A glibc-upstream-2.39-124.patch -:000000 100644 0000000 cb7d2e0 A glibc-upstream-2.39-125.patch -:000000 100644 0000000 e53d7b0 A glibc-upstream-2.39-126.patch -:000000 100644 0000000 9353706 A glibc-upstream-2.39-127.patch -:000000 100644 0000000 e83ba4a A glibc-upstream-2.39-128.patch -:000000 100644 0000000 0288cb1 A glibc-upstream-2.39-129.patch -:000000 100644 0000000 3f5c953 A glibc-upstream-2.39-130.patch -:000000 100644 0000000 6a38b42 A glibc-upstream-2.39-131.patch -:000000 100644 0000000 5dfe9f8 A glibc-upstream-2.39-132.patch -:000000 100644 0000000 e0cf207 A glibc-upstream-2.39-133.patch -:000000 100644 0000000 d0cbb12 A glibc-upstream-2.39-134.patch -:000000 100644 0000000 46e16fb A glibc-upstream-2.39-135.patch -:000000 100644 0000000 16babfd A glibc-upstream-2.39-136.patch -:000000 100644 0000000 03324ce A glibc-upstream-2.39-137.patch -:000000 100644 0000000 d3299ca A glibc-upstream-2.39-95.patch -:000000 100644 0000000 a06c76c A glibc-upstream-2.39-96.patch -:000000 100644 0000000 167b979 A glibc-upstream-2.39-97.patch -:000000 100644 0000000 f60c955 A glibc-upstream-2.39-98.patch -:000000 100644 0000000 9661d14 A glibc-upstream-2.39-99.patch -:100644 100644 bc8397c 993cdd7 M glibc.spec +:000000 100644 00000000 0eeecc0f A glibc-upstream-2.39-100.patch +:000000 100644 00000000 5d94db88 A glibc-upstream-2.39-101.patch +:000000 100644 00000000 91b388a3 A glibc-upstream-2.39-102.patch +:000000 100644 00000000 206d5c0b A glibc-upstream-2.39-103.patch +:000000 100644 00000000 5e7d07e4 A glibc-upstream-2.39-104.patch +:000000 100644 00000000 3bba75fb A glibc-upstream-2.39-105.patch +:000000 100644 00000000 8f1c95b4 A glibc-upstream-2.39-106.patch +:000000 100644 00000000 a9ca4601 A glibc-upstream-2.39-107.patch +:000000 100644 00000000 3bf94005 A glibc-upstream-2.39-108.patch +:000000 100644 00000000 026fd73f A glibc-upstream-2.39-109.patch +:000000 100644 00000000 fd105914 A glibc-upstream-2.39-110.patch +:000000 100644 00000000 03ba58b3 A glibc-upstream-2.39-111.patch +:000000 100644 00000000 784739e6 A glibc-upstream-2.39-112.patch +:000000 100644 00000000 51b7c898 A glibc-upstream-2.39-113.patch +:000000 100644 00000000 d64ebf88 A glibc-upstream-2.39-114.patch +:000000 100644 00000000 3475ed38 A glibc-upstream-2.39-115.patch +:000000 100644 00000000 3295a2fa A glibc-upstream-2.39-116.patch +:000000 100644 00000000 53b7ce9c A glibc-upstream-2.39-117.patch +:000000 100644 00000000 2d12af88 A glibc-upstream-2.39-118.patch +:000000 100644 00000000 18c30ed6 A glibc-upstream-2.39-119.patch +:000000 100644 00000000 0506252e A glibc-upstream-2.39-120.patch +:000000 100644 00000000 12a3b357 A glibc-upstream-2.39-121.patch +:000000 100644 00000000 4e2c60c2 A glibc-upstream-2.39-122.patch +:000000 100644 00000000 8eadabd7 A glibc-upstream-2.39-123.patch +:000000 100644 00000000 6c86939d A glibc-upstream-2.39-124.patch +:000000 100644 00000000 cb7d2e07 A glibc-upstream-2.39-125.patch +:000000 100644 00000000 e53d7b0d A glibc-upstream-2.39-126.patch +:000000 100644 00000000 93537064 A glibc-upstream-2.39-127.patch +:000000 100644 00000000 e83ba4a3 A glibc-upstream-2.39-128.patch +:000000 100644 00000000 0288cb19 A glibc-upstream-2.39-129.patch +:000000 100644 00000000 3f5c9538 A glibc-upstream-2.39-130.patch +:000000 100644 00000000 6a38b42b A glibc-upstream-2.39-131.patch +:000000 100644 00000000 5dfe9f81 A glibc-upstream-2.39-132.patch +:000000 100644 00000000 e0cf207a A glibc-upstream-2.39-133.patch +:000000 100644 00000000 d0cbb12d A glibc-upstream-2.39-134.patch +:000000 100644 00000000 46e16fb7 A glibc-upstream-2.39-135.patch +:000000 100644 00000000 16babfd7 A glibc-upstream-2.39-136.patch +:000000 100644 00000000 03324cef A glibc-upstream-2.39-137.patch +:000000 100644 00000000 d3299ca4 A glibc-upstream-2.39-95.patch +:000000 100644 00000000 a06c76c3 A glibc-upstream-2.39-96.patch +:000000 100644 00000000 167b9791 A glibc-upstream-2.39-97.patch +:000000 100644 00000000 f60c9558 A glibc-upstream-2.39-98.patch +:000000 100644 00000000 9661d148 A glibc-upstream-2.39-99.patch +:100644 100644 bc8397c8 993cdd70 M glibc.spec commit 107e77d871ab0e28575f435a3e9e907ad5b51523 Author: Arjun Shankar @@ -2160,8 +2280,8 @@ CommitDate: Fri Nov 15 14:12:38 2024 +0100 Add support for getrandom vDSO (RHEL-12867) -:000000 100644 0000000 9f18ba4 A glibc-RHEL-12867.patch -:100644 100644 1d9e061 bc8397c M glibc.spec +:000000 100644 00000000 9f18ba4a A glibc-RHEL-12867.patch +:100644 100644 1d9e0614 bc8397c8 M glibc.spec commit dcd95b1bb89dbb6b311c19ed4219e61b9e2cdfec Author: Florian Weimer @@ -2182,7 +2302,7 @@ CommitDate: Wed Nov 6 14:12:56 2024 +0100 (This version of this change preserves the glibc-devel.x86_64 contents.) -:100644 100644 5cde2bb 1d9e061 M glibc.spec +:100644 100644 5cde2bbb 1d9e0614 M glibc.spec commit 33b0330cd67b67e253cf9f26d1670dde969197e9 Author: Florian Weimer @@ -2198,7 +2318,7 @@ CommitDate: Tue Nov 5 13:57:28 2024 +0100 to their final locations. The symbolic links are removed again so that they do not end up in the shipped packages. -:100644 100644 160c5d6 5cde2bb M glibc.spec +:100644 100644 160c5d61 5cde2bbb M glibc.spec commit 2adb4529817c0aa79d83e208aa012bebc3c5ccb0 Author: Florian Weimer @@ -2235,7 +2355,7 @@ CommitDate: Mon Nov 4 15:02:33 2024 +0100 Note: Delete the *.src.rpm files because %{arch} has unexpected results for them. -:100644 100644 7a86af8 160c5d6 M glibc.spec +:100644 100644 7a86af83 160c5d61 M glibc.spec commit 0cf6b2eb0ae3feb6d29b51656d009f864f7fb7a5 Author: Florian Weimer @@ -2249,12 +2369,12 @@ CommitDate: Mon Nov 4 14:01:20 2024 +0100 without running them during the build. They can be very slow, so this saves a bit of build time. -:000000 100644 0000000 134acc9 A glibc-build-xtests-1.patch -:000000 100644 0000000 73049c1 A glibc-build-xtests-2.patch -:100644 100644 9bbb1bc 7a86af8 M glibc.spec +:000000 100644 00000000 134acc90 A glibc-build-xtests-1.patch +:000000 100644 00000000 73049c14 A glibc-build-xtests-2.patch +:100644 100644 9bbb1bcd 7a86af83 M glibc.spec commit bf426e9f022dfce3a5ca02aadbf5b8e9266cc249 -Merge: 70153ef a861d57 +Merge: 70153ef0 a861d57f Author: Florian Weimer AuthorDate: Thu Oct 31 09:12:00 2024 +0100 Commit: Florian Weimer @@ -2265,7 +2385,7 @@ CommitDate: Thu Oct 31 09:12:00 2024 +0100 This should allow us to use fast-forward merges for updating c10s going forward. -:100644 100644 196185e 9bbb1bc M glibc.spec +:100644 100644 196185ec 9bbb1bcd M glibc.spec commit 70153ef06d71b8614294db130bc67c758841e712 Author: Florian Weimer @@ -2275,7 +2395,7 @@ CommitDate: Thu Sep 19 17:39:53 2024 +0200 Ensure that xtests can be built (RHEL-59494) -:100644 100644 d777452 196185e M glibc.spec +:100644 100644 d777452f 196185ec M glibc.spec commit f00f7bf0b0f8bc6f99e8b01ee6a4d4655eb8a37c Author: Arjun Shankar @@ -2285,7 +2405,7 @@ CommitDate: Thu Aug 15 16:44:57 2024 +0200 Update gating.yaml to match c10s -:100644 100644 828ab9d cc382ad M gating.yaml +:100644 100644 828ab9db cc382ade M gating.yaml commit 9404e14f4dac97005341d16c86c4de672966d22e Author: Florian Weimer @@ -2297,9 +2417,9 @@ CommitDate: Wed Jul 31 16:02:44 2024 +0200 Related: RHEL-18039 -:000000 100644 0000000 549b26f A RHEL-18039-1.patch -:000000 100644 0000000 9834166 A RHEL-18039-2.patch -:100644 100644 f0e4aaa d777452 M glibc.spec +:000000 100644 00000000 549b26f9 A RHEL-18039-1.patch +:000000 100644 00000000 9834166e A RHEL-18039-2.patch +:100644 100644 f0e4aaaa d777452f M glibc.spec commit b30ff9539f93737240f46e7cbb06a6b6a4e44f8b Author: Arjun Shankar @@ -2331,26 +2451,26 @@ CommitDate: Wed Jul 31 13:39:31 2024 +0200 - math: Fix i386 and m68k fmod/fmodf on static build (BZ 31488) - posix: Fix pidfd_spawn/pidfd_spawnp leak if execve fails (BZ 31695) -:000000 100644 0000000 6203daa A glibc-upstream-2.39-76.patch -:000000 100644 0000000 f4c45e7 A glibc-upstream-2.39-77.patch -:000000 100644 0000000 2f3022c A glibc-upstream-2.39-78.patch -:000000 100644 0000000 fe3ef5c A glibc-upstream-2.39-79.patch -:000000 100644 0000000 793f597 A glibc-upstream-2.39-80.patch -:000000 100644 0000000 9f070f2 A glibc-upstream-2.39-81.patch -:000000 100644 0000000 26e6b1a A glibc-upstream-2.39-82.patch -:000000 100644 0000000 6b531df A glibc-upstream-2.39-83.patch -:000000 100644 0000000 1e5251c A glibc-upstream-2.39-84.patch -:000000 100644 0000000 eb2394a A glibc-upstream-2.39-85.patch -:000000 100644 0000000 b15d1ac A glibc-upstream-2.39-86.patch -:000000 100644 0000000 311203b A glibc-upstream-2.39-87.patch -:000000 100644 0000000 1afdee1 A glibc-upstream-2.39-88.patch -:000000 100644 0000000 a6c7115 A glibc-upstream-2.39-89.patch -:000000 100644 0000000 2c61b36 A glibc-upstream-2.39-90.patch -:000000 100644 0000000 bc0c1a3 A glibc-upstream-2.39-91.patch -:000000 100644 0000000 1847f4f A glibc-upstream-2.39-92.patch -:000000 100644 0000000 b78c675 A glibc-upstream-2.39-93.patch -:000000 100644 0000000 22cf29d A glibc-upstream-2.39-94.patch -:100644 100644 9da781f f0e4aaa M glibc.spec +:000000 100644 00000000 6203daa2 A glibc-upstream-2.39-76.patch +:000000 100644 00000000 f4c45e77 A glibc-upstream-2.39-77.patch +:000000 100644 00000000 2f3022c0 A glibc-upstream-2.39-78.patch +:000000 100644 00000000 fe3ef5c5 A glibc-upstream-2.39-79.patch +:000000 100644 00000000 793f597b A glibc-upstream-2.39-80.patch +:000000 100644 00000000 9f070f22 A glibc-upstream-2.39-81.patch +:000000 100644 00000000 26e6b1a0 A glibc-upstream-2.39-82.patch +:000000 100644 00000000 6b531dff A glibc-upstream-2.39-83.patch +:000000 100644 00000000 1e5251c7 A glibc-upstream-2.39-84.patch +:000000 100644 00000000 eb2394ac A glibc-upstream-2.39-85.patch +:000000 100644 00000000 b15d1acd A glibc-upstream-2.39-86.patch +:000000 100644 00000000 311203b8 A glibc-upstream-2.39-87.patch +:000000 100644 00000000 1afdee1b A glibc-upstream-2.39-88.patch +:000000 100644 00000000 a6c7115b A glibc-upstream-2.39-89.patch +:000000 100644 00000000 2c61b362 A glibc-upstream-2.39-90.patch +:000000 100644 00000000 bc0c1a3f A glibc-upstream-2.39-91.patch +:000000 100644 00000000 1847f4fb A glibc-upstream-2.39-92.patch +:000000 100644 00000000 b78c6750 A glibc-upstream-2.39-93.patch +:000000 100644 00000000 22cf29d0 A glibc-upstream-2.39-94.patch +:100644 100644 9da781fb f0e4aaaa M glibc.spec commit 0fa69c9930bdb67f13b4ca5c927c32aa28c89047 Author: Florian Weimer @@ -2365,10 +2485,10 @@ CommitDate: Mon Jul 22 12:42:08 2024 +0200 /usr/bin/perl to glibc-utils because it's no longer generated automatically. -:000000 100644 0000000 fc5bbfd A glibc-rh2292195-1.patch -:000000 100644 0000000 61436e8 A glibc-rh2292195-2.patch -:000000 100644 0000000 ef2d7f1 A glibc-rh2292195-3.patch -:100644 100644 79de104 9da781f M glibc.spec +:000000 100644 00000000 fc5bbfd1 A glibc-rh2292195-1.patch +:000000 100644 00000000 61436e85 A glibc-rh2292195-2.patch +:000000 100644 00000000 ef2d7f10 A glibc-rh2292195-3.patch +:100644 100644 79de104e 9da781fb M glibc.spec commit 0b92ae19ae64f21d96d45f0b9f0d535093e1c471 Author: Florian Weimer @@ -2384,7 +2504,7 @@ CommitDate: Fri Jul 19 16:22:47 2024 +0200 (cherry picked from commit add3da24f037a9d934eaeb9a6c246a45d3a716cc) -:100644 100644 0b9005a 79de104 M glibc.spec +:100644 100644 0b9005a3 79de104e M glibc.spec commit 9dd8b289e9498499293e4cd1e0006646a533c5cf Author: Florian Weimer @@ -2396,7 +2516,7 @@ CommitDate: Fri Jul 19 16:22:45 2024 +0200 (cherry picked from commit cb26947f73950b581adfac51cd51f8481cc95a94) -:100644 100644 4e8aac8 0b9005a M glibc.spec +:100644 100644 4e8aac8a 0b9005a3 M glibc.spec commit 4d899fdb652936c9460a46b63c72835809d8a583 Author: Arjun Shankar @@ -2409,7 +2529,7 @@ CommitDate: Thu Jul 18 14:40:40 2024 +0200 The --with-rtld-early-cflags configure option was being passed for ppc64 builds instead of for ppc64le. This commit fixes that. -:100644 100644 7dea025 4e8aac8 M glibc.spec +:100644 100644 7dea0251 4e8aac8a M glibc.spec commit 930bcade74b9677304e512683aa28a94db80449a Author: Patsy Griffin @@ -2419,7 +2539,7 @@ CommitDate: Wed Jul 3 10:43:25 2024 -0400 Move ANSI_X3.110-1983 support from main package to glibc-gconv-extra. -:100644 100644 d5fb223 7dea025 M glibc.spec +:100644 100644 d5fb2233 7dea0251 M glibc.spec commit ed89a91b4256ec27519a2f38877d7c0e0508b73a Author: Arjun Shankar @@ -2440,15 +2560,15 @@ CommitDate: Fri Jun 21 15:01:20 2024 +0200 - malloc/Makefile: Split and sort tests - x86/cet: fix shadow stack test scripts -:000000 100644 0000000 5c83c5b A glibc-upstream-2.39-66.patch -:000000 100644 0000000 30bd3b2 A glibc-upstream-2.39-67.patch -:000000 100644 0000000 979f9e0 A glibc-upstream-2.39-68.patch -:000000 100644 0000000 34018ce A glibc-upstream-2.39-69.patch -:000000 100644 0000000 78fef11 A glibc-upstream-2.39-70.patch -:000000 100644 0000000 6e73e1a A glibc-upstream-2.39-71.patch -:000000 100644 0000000 0f06f29 A glibc-upstream-2.39-72.patch -:000000 100644 0000000 49b5c42 A glibc-upstream-2.39-75.patch -:100644 100644 13a57df d5fb223 M glibc.spec +:000000 100644 00000000 5c83c5b4 A glibc-upstream-2.39-66.patch +:000000 100644 00000000 30bd3b27 A glibc-upstream-2.39-67.patch +:000000 100644 00000000 979f9e01 A glibc-upstream-2.39-68.patch +:000000 100644 00000000 34018cee A glibc-upstream-2.39-69.patch +:000000 100644 00000000 78fef11d A glibc-upstream-2.39-70.patch +:000000 100644 00000000 6e73e1a9 A glibc-upstream-2.39-71.patch +:000000 100644 00000000 0f06f297 A glibc-upstream-2.39-72.patch +:000000 100644 00000000 49b5c425 A glibc-upstream-2.39-75.patch +:100644 100644 13a57dfa d5fb2233 M glibc.spec commit fec1cd8ce1001d62922c39fded760a8e2c6fd344 Author: Arjun Shankar @@ -2472,18 +2592,18 @@ CommitDate: Wed Jun 5 19:13:35 2024 +0200 - libsupport: Add xgetpeername - x86_64: Fix missing wcsncat function definition without multiarch (x86-64-v4) -:000000 100644 0000000 0bb52db A glibc-upstream-2.39-55.patch -:000000 100644 0000000 1acf952 A glibc-upstream-2.39-56.patch -:000000 100644 0000000 aee72fa A glibc-upstream-2.39-57.patch -:000000 100644 0000000 cbe201a A glibc-upstream-2.39-58.patch -:000000 100644 0000000 0f4fb1c A glibc-upstream-2.39-59.patch -:000000 100644 0000000 8765056 A glibc-upstream-2.39-60.patch -:000000 100644 0000000 8c4aa98 A glibc-upstream-2.39-61.patch -:000000 100644 0000000 e928935 A glibc-upstream-2.39-62.patch -:000000 100644 0000000 4db9709 A glibc-upstream-2.39-63.patch -:000000 100644 0000000 bbba766 A glibc-upstream-2.39-64.patch -:000000 100644 0000000 60b9efb A glibc-upstream-2.39-65.patch -:100644 100644 a20b9e5 13a57df M glibc.spec +:000000 100644 00000000 0bb52db5 A glibc-upstream-2.39-55.patch +:000000 100644 00000000 1acf9528 A glibc-upstream-2.39-56.patch +:000000 100644 00000000 aee72fa6 A glibc-upstream-2.39-57.patch +:000000 100644 00000000 cbe201a9 A glibc-upstream-2.39-58.patch +:000000 100644 00000000 0f4fb1c8 A glibc-upstream-2.39-59.patch +:000000 100644 00000000 8765056a A glibc-upstream-2.39-60.patch +:000000 100644 00000000 8c4aa981 A glibc-upstream-2.39-61.patch +:000000 100644 00000000 e9289356 A glibc-upstream-2.39-62.patch +:000000 100644 00000000 4db9709b A glibc-upstream-2.39-63.patch +:000000 100644 00000000 bbba7667 A glibc-upstream-2.39-64.patch +:000000 100644 00000000 60b9efb2 A glibc-upstream-2.39-65.patch +:100644 100644 a20b9e57 13a57dfa M glibc.spec commit dc6792e4d372050efd8b8cf7442e33ceb893d563 Author: Florian Weimer @@ -2495,7 +2615,7 @@ CommitDate: Fri May 31 16:08:40 2024 +0200 (cherry picked from commit 207f40b76617449cc02fadaf51f24982382dfb8e) -:100644 100644 0928010 a20b9e5 M glibc.spec +:100644 100644 0928010f a20b9e57 M glibc.spec commit 2c1b0f092c850e5fb38c31bae5c37f69cd23663d Author: Arjun Shankar @@ -2519,7 +2639,7 @@ CommitDate: Wed May 15 17:34:24 2024 +0200 * 2d5af83031edfa8191254814609961e4e57766fc * e9d072eb64a251e09a121122941605f4a22d170a -:100644 100644 5a988d7 0928010 M glibc.spec +:100644 100644 5a988d70 0928010f M glibc.spec commit f892dd803492e4475d5db5c568c3060a970d306f Author: Florian Weimer @@ -2529,8 +2649,8 @@ CommitDate: Fri May 10 18:43:41 2024 +0200 Use unsigned types in / (RHEL-22226) -:000000 100644 0000000 3d09f70 A glibc-RHEL-22226.patch -:100644 100644 6750279 5a988d7 M glibc.spec +:000000 100644 00000000 3d09f70e A glibc-RHEL-22226.patch +:100644 100644 67502792 5a988d70 M glibc.spec commit b3097fa24a289d50b5104d99235d67efa151c74d Author: Florian Weimer @@ -2552,22 +2672,22 @@ CommitDate: Fri May 10 17:54:45 2024 +0200 - login: structs utmp, utmpx, lastlog _TIME_BITS independence (bug 30701) - login: Check default sizes of structs utmp, utmpx, lastlog -:000000 100644 0000000 c3070ad A glibc-upstream-2.39-40.patch -:000000 100644 0000000 659acb3 A glibc-upstream-2.39-41.patch -:000000 100644 0000000 6be162f A glibc-upstream-2.39-42.patch -:000000 100644 0000000 093670f A glibc-upstream-2.39-43.patch -:000000 100644 0000000 92b587a A glibc-upstream-2.39-44.patch -:000000 100644 0000000 208555e A glibc-upstream-2.39-45.patch -:000000 100644 0000000 d2f28d5 A glibc-upstream-2.39-46.patch -:000000 100644 0000000 0ab4156 A glibc-upstream-2.39-47.patch -:000000 100644 0000000 133d6a0 A glibc-upstream-2.39-48.patch -:000000 100644 0000000 a3c6b88 A glibc-upstream-2.39-49.patch -:000000 100644 0000000 d79e2db A glibc-upstream-2.39-50.patch -:000000 100644 0000000 4c9718c A glibc-upstream-2.39-51.patch -:000000 100644 0000000 c03d7cc A glibc-upstream-2.39-52.patch -:000000 100644 0000000 94ec662 A glibc-upstream-2.39-53.patch -:000000 100644 0000000 7ed1911 A glibc-upstream-2.39-54.patch -:100644 100644 5e6fa9fb 6750279 M glibc.spec +:000000 100644 00000000 c3070ada A glibc-upstream-2.39-40.patch +:000000 100644 00000000 659acb3f A glibc-upstream-2.39-41.patch +:000000 100644 00000000 6be162f7 A glibc-upstream-2.39-42.patch +:000000 100644 00000000 093670f2 A glibc-upstream-2.39-43.patch +:000000 100644 00000000 92b587aa A glibc-upstream-2.39-44.patch +:000000 100644 00000000 208555ef A glibc-upstream-2.39-45.patch +:000000 100644 00000000 d2f28d53 A glibc-upstream-2.39-46.patch +:000000 100644 00000000 0ab41562 A glibc-upstream-2.39-47.patch +:000000 100644 00000000 133d6a0b A glibc-upstream-2.39-48.patch +:000000 100644 00000000 a3c6b886 A glibc-upstream-2.39-49.patch +:000000 100644 00000000 d79e2dbc A glibc-upstream-2.39-50.patch +:000000 100644 00000000 4c9718c1 A glibc-upstream-2.39-51.patch +:000000 100644 00000000 c03d7cc4 A glibc-upstream-2.39-52.patch +:000000 100644 00000000 94ec6624 A glibc-upstream-2.39-53.patch +:000000 100644 00000000 7ed1911f A glibc-upstream-2.39-54.patch +:100644 100644 5e6fa9fb 67502792 M glibc.spec commit c6129da0b9d734f66e2ed1fae3cf96bcb4d2970a Author: Florian Weimer @@ -2577,7 +2697,7 @@ CommitDate: Fri May 3 18:04:20 2024 +0200 Update changelog -:100644 100644 a338188 5e6fa9fb M glibc.spec +:100644 100644 a338188b 5e6fa9fb M glibc.spec commit 22d78986caa580c2165ecca462a42cc0e37549a3 Author: Tulio Magno Quites Machado Filho @@ -2590,7 +2710,7 @@ CommitDate: Thu May 2 17:53:09 2024 +0200 Co-authored-by: Florian Weimer (cherry picked from commit 09d1856f529d26545de4651b8415690e934efdf5) -:100644 100644 a727fb4 a338188 M glibc.spec +:100644 100644 a727fb42 a338188b M glibc.spec commit d521284ad19ba71d3ed935df6c339874e546069a Author: Tulio Magno Quites Machado Filho @@ -2602,7 +2722,7 @@ CommitDate: Thu May 2 17:53:09 2024 +0200 (cherry picked from commit 34d14091784c508be9a0b451fdd97d468bad016c) -:100644 100644 c853951 a727fb4 M glibc.spec +:100644 100644 c8539519 a727fb42 M glibc.spec commit 4ccb7475fc7d51a68f56cd9039e7184987bc9173 Author: Florian Weimer @@ -2620,8 +2740,8 @@ CommitDate: Thu May 2 17:53:09 2024 +0200 Co-authored-by: Tulio Magno Quites Machado Filho (cherry picked from commit 7749ea58a9e2198f830d6eb8b162344aaf8acb84) -:100644 100644 cfeb39e c853951 M glibc.spec -:100644 100644 ba1719a 5257de7 M wrap-find-debuginfo.sh +:100644 100644 cfeb39ef c8539519 M glibc.spec +:100644 100644 ba1719a9 5257de7c M wrap-find-debuginfo.sh commit a0d62dc5411a2586f659de92f11a14bfdaedea2a Author: Florian Weimer @@ -2633,7 +2753,7 @@ CommitDate: Thu May 2 17:53:09 2024 +0200 (cherry picked from commit 0d17d18a8862d7737a041d1360d0775b62275dd7) -:100644 100644 ffb4260 cfeb39e M glibc.spec +:100644 100644 ffb42609 cfeb39ef M glibc.spec commit b3da3b4101b07800eafc05d9bfb5b7454a3c3f05 Author: Florian Weimer @@ -2647,7 +2767,7 @@ CommitDate: Thu May 2 17:53:09 2024 +0200 (cherry picked from commit 114492e2a8a0447f90fe19cf4631d58d8ce80b49) -:100644 100644 b784655 ffb4260 M glibc.spec +:100644 100644 b7846553 ffb42609 M glibc.spec commit 94914be52fd61dacfeb2fe1a27b3741545093a36 Author: Florian Weimer @@ -2671,15 +2791,15 @@ CommitDate: Fri Apr 26 10:13:42 2024 +0200 - i386: ulp update for SSE2 --disable-multi-arch configurations - nptl: Fix tst-cancel30 on kernels without ppoll_time64 support -:000000 100644 0000000 f5cf970 A glibc-upstream-2.39-32.patch -:000000 100644 0000000 a13dbfa A glibc-upstream-2.39-33.patch -:000000 100644 0000000 961fedd A glibc-upstream-2.39-34.patch -:000000 100644 0000000 41555b4 A glibc-upstream-2.39-35.patch -:000000 100644 0000000 2851845 A glibc-upstream-2.39-36.patch -:000000 100644 0000000 b0a31a8 A glibc-upstream-2.39-37.patch -:000000 100644 0000000 5bda08b A glibc-upstream-2.39-38.patch -:000000 100644 0000000 4dee6ea A glibc-upstream-2.39-39.patch -:100644 100644 9687912 b784655 M glibc.spec +:000000 100644 00000000 f5cf970d A glibc-upstream-2.39-32.patch +:000000 100644 00000000 a13dbfa2 A glibc-upstream-2.39-33.patch +:000000 100644 00000000 961fedda A glibc-upstream-2.39-34.patch +:000000 100644 00000000 41555b4b A glibc-upstream-2.39-35.patch +:000000 100644 00000000 28518451 A glibc-upstream-2.39-36.patch +:000000 100644 00000000 b0a31a8c A glibc-upstream-2.39-37.patch +:000000 100644 00000000 5bda08be A glibc-upstream-2.39-38.patch +:000000 100644 00000000 4dee6eaf A glibc-upstream-2.39-39.patch +:100644 100644 96879123 b7846553 M glibc.spec commit 1bea1361dc740cb07eff8eace4f58619cf8f4fe4 Author: Florian Weimer @@ -2702,17 +2822,17 @@ CommitDate: Thu Apr 18 19:42:06 2024 +0200 - aarch64/fpu: Sync libmvec routines from 2.39 and before with AOR - i386: Use generic memrchr in libc (bug 31316) -:000000 100644 0000000 fb7281f A glibc-upstream-2.39-22.patch -:000000 100644 0000000 11773cf A glibc-upstream-2.39-23.patch -:000000 100644 0000000 61d3f48 A glibc-upstream-2.39-24.patch -:000000 100644 0000000 f168f15 A glibc-upstream-2.39-25.patch -:000000 100644 0000000 278d238 A glibc-upstream-2.39-26.patch -:000000 100644 0000000 8f136ce A glibc-upstream-2.39-27.patch -:000000 100644 0000000 b5546e0 A glibc-upstream-2.39-28.patch -:000000 100644 0000000 41a85b1 A glibc-upstream-2.39-29.patch -:000000 100644 0000000 3796da6 A glibc-upstream-2.39-30.patch -:000000 100644 0000000 bf21203 A glibc-upstream-2.39-31.patch -:100644 100644 493b171 9687912 M glibc.spec +:000000 100644 00000000 fb7281f8 A glibc-upstream-2.39-22.patch +:000000 100644 00000000 11773cf6 A glibc-upstream-2.39-23.patch +:000000 100644 00000000 61d3f48b A glibc-upstream-2.39-24.patch +:000000 100644 00000000 f168f15d A glibc-upstream-2.39-25.patch +:000000 100644 00000000 278d238e A glibc-upstream-2.39-26.patch +:000000 100644 00000000 8f136ce0 A glibc-upstream-2.39-27.patch +:000000 100644 00000000 b5546e01 A glibc-upstream-2.39-28.patch +:000000 100644 00000000 41a85b1c A glibc-upstream-2.39-29.patch +:000000 100644 00000000 3796da68 A glibc-upstream-2.39-30.patch +:000000 100644 00000000 bf21203d A glibc-upstream-2.39-31.patch +:100644 100644 493b171e 96879123 M glibc.spec commit 24af28d49b2c38436d61f178a68d585f3cdf311e Author: Arjun Shankar @@ -2739,21 +2859,21 @@ CommitDate: Thu Apr 4 17:12:08 2024 +0200 - powerpc: Placeholder and infrastructure/build support to add Power11 related changes. - powerpc: Add HWCAP3/HWCAP4 data to TCB for Power Architecture. -:000000 100644 0000000 858f28e A glibc-upstream-2.39-10.patch -:000000 100644 0000000 d816c3c A glibc-upstream-2.39-11.patch -:000000 100644 0000000 74e0b72 A glibc-upstream-2.39-12.patch -:000000 100644 0000000 0a52189 A glibc-upstream-2.39-13.patch -:000000 100644 0000000 a49f788 A glibc-upstream-2.39-14.patch -:000000 100644 0000000 037a4d3 A glibc-upstream-2.39-15.patch -:000000 100644 0000000 e5fa640 A glibc-upstream-2.39-16.patch -:000000 100644 0000000 050355c A glibc-upstream-2.39-17.patch -:000000 100644 0000000 60a31ff A glibc-upstream-2.39-18.patch -:000000 100644 0000000 fa9220e A glibc-upstream-2.39-19.patch -:000000 100644 0000000 3aac665 A glibc-upstream-2.39-20.patch -:000000 100644 0000000 6ceb90c A glibc-upstream-2.39-21.patch -:000000 100644 0000000 653d5a1 A glibc-upstream-2.39-8.patch -:000000 100644 0000000 4289fa2 A glibc-upstream-2.39-9.patch -:100644 100644 990213c 493b171 M glibc.spec +:000000 100644 00000000 858f28ed A glibc-upstream-2.39-10.patch +:000000 100644 00000000 d816c3c2 A glibc-upstream-2.39-11.patch +:000000 100644 00000000 74e0b728 A glibc-upstream-2.39-12.patch +:000000 100644 00000000 0a52189c A glibc-upstream-2.39-13.patch +:000000 100644 00000000 a49f7881 A glibc-upstream-2.39-14.patch +:000000 100644 00000000 037a4d30 A glibc-upstream-2.39-15.patch +:000000 100644 00000000 e5fa640f A glibc-upstream-2.39-16.patch +:000000 100644 00000000 050355c5 A glibc-upstream-2.39-17.patch +:000000 100644 00000000 60a31ff5 A glibc-upstream-2.39-18.patch +:000000 100644 00000000 fa9220e6 A glibc-upstream-2.39-19.patch +:000000 100644 00000000 3aac6651 A glibc-upstream-2.39-20.patch +:000000 100644 00000000 6ceb90c1 A glibc-upstream-2.39-21.patch +:000000 100644 00000000 653d5a11 A glibc-upstream-2.39-8.patch +:000000 100644 00000000 4289fa2f A glibc-upstream-2.39-9.patch +:100644 100644 990213cc 493b171e M glibc.spec commit 1470fe1da7c7d6de4fe60d92e3f10c6dff5c6400 Author: Florian Weimer @@ -2765,7 +2885,7 @@ CommitDate: Tue Mar 26 18:04:20 2024 +0100 (cherry picked from commit 01911dc70e30a96d5a7835475187ff6241a68a2d) -:100644 100644 56e7925 990213c M glibc.spec +:100644 100644 56e79258 990213cc M glibc.spec commit fc720e6194b23fc24af772fa50cf07caba15c4f9 Author: Joseph Myers @@ -2796,8 +2916,8 @@ CommitDate: Tue Mar 26 18:04:20 2024 +0100 (cherry picked from commit e025effd84d415d98dcebbc97cdf03e6e44465b8) -:100644 100644 2be35da 56e7925 M glibc.spec -:100644 100644 1fae784 ba1719a M wrap-find-debuginfo.sh +:100644 100644 2be35da3 56e79258 M glibc.spec +:100644 100644 1fae7845 ba1719a9 M wrap-find-debuginfo.sh commit 68abc16af72f1726f3fad3369bab8b812b306bbc Author: Arjun Shankar @@ -2817,14 +2937,14 @@ CommitDate: Tue Mar 19 15:28:11 2024 +0100 - arm: Remove wrong ldr from _dl_start_user (BZ 31339) - Replace advisories directory -:000000 100644 0000000 487c192 A glibc-upstream-2.39-1.patch -:000000 100644 0000000 77deb04 A glibc-upstream-2.39-2.patch -:000000 100644 0000000 c98c21c A glibc-upstream-2.39-3.patch -:000000 100644 0000000 cc3350f A glibc-upstream-2.39-4.patch -:000000 100644 0000000 92661f6 A glibc-upstream-2.39-5.patch -:000000 100644 0000000 61f4133 A glibc-upstream-2.39-6.patch -:000000 100644 0000000 5932145 A glibc-upstream-2.39-7.patch -:100644 100644 bd120b2 2be35da M glibc.spec +:000000 100644 00000000 487c192f A glibc-upstream-2.39-1.patch +:000000 100644 00000000 77deb047 A glibc-upstream-2.39-2.patch +:000000 100644 00000000 c98c21ce A glibc-upstream-2.39-3.patch +:000000 100644 00000000 cc3350f4 A glibc-upstream-2.39-4.patch +:000000 100644 00000000 92661f69 A glibc-upstream-2.39-5.patch +:000000 100644 00000000 61f41332 A glibc-upstream-2.39-6.patch +:000000 100644 00000000 5932145d A glibc-upstream-2.39-7.patch +:100644 100644 bd120b29 2be35da3 M glibc.spec commit aa075b2434fabc6cdb7658c6c125659676c29d18 Author: Arjun Shankar @@ -2852,7 +2972,7 @@ CommitDate: Wed Feb 28 15:54:50 2024 +0100 ScanCode toolkit: https://github.com/nexB/scancode-toolkit -:100644 100644 23ae3f7 bd120b2 M glibc.spec +:100644 100644 23ae3f77 bd120b29 M glibc.spec commit 797647f2a81cf749f2e08350ffb68ee0d3425a69 Author: Florian Weimer @@ -2862,7 +2982,7 @@ CommitDate: Wed Feb 7 09:24:40 2024 +0100 Ignore symbolic links to . in sysroot construction -:100644 100644 94f75de 23ae3f7 M glibc.spec +:100644 100644 94f75de4 23ae3f77 M glibc.spec commit 385a689f17fe219dfd74edd5a829f0ad748d2814 Author: Carlos O'Donell @@ -2886,8 +3006,8 @@ CommitDate: Tue Feb 6 17:46:04 2024 -0500 - version.h, include/features.h: Bump version to 2.39 - Create ChangeLog.old/ChangeLog.28 -:100644 100644 6116752 94f75de M glibc.spec -:100644 100644 e829191 d3d5275 M sources +:100644 100644 6116752d 94f75de4 M glibc.spec +:100644 100644 e829191f d3d52750 M sources commit 7ce2803ac6533c4acc0193ea5991e4011b4ccdd1 Author: Martin Coufal @@ -2900,7 +3020,7 @@ CommitDate: Fri Feb 2 14:30:22 2024 +0000 * add '-D_GNU_SOURCE' to compilation as 'inet6_opt_init' is a GNU extension -:100755 100755 44962e1 3649de7 M tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/runtest.sh +:100755 100755 44962e18 3649de7f M tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/runtest.sh commit ea742f068aba4e04ead6670ecf3954260eced0e0 Author: Martin Coufal @@ -2912,7 +3032,7 @@ CommitDate: Fri Feb 2 14:30:22 2024 +0000 * include 'unistd.h' -:100644 100644 965d3d1 4030866 M tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/interp.c +:100644 100644 965d3d1d 4030866e M tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/interp.c commit cace4f829d8f7a5a47719cbf00230af3d705d898 Author: Martin Coufal @@ -2925,10 +3045,10 @@ CommitDate: Fri Feb 2 14:30:22 2024 +0000 * use 'fclose' * add missing includes -:100644 100644 2b4f286 23679f4 M tests/Sanity/basic-linking-sanity/lc.c -:100644 100644 72612b9 ca45637 M tests/Sanity/basic-linking-sanity/lm.c -:100644 100644 65aca15 7ce81d7 M tests/Sanity/basic-linking-sanity/lpthread.c -:100644 100644 2a31e0d daadf29 M tests/Sanity/basic-linking-sanity/lrt.c +:100644 100644 2b4f286c 23679f43 M tests/Sanity/basic-linking-sanity/lc.c +:100644 100644 72612b94 ca456378 M tests/Sanity/basic-linking-sanity/lm.c +:100644 100644 65aca15c 7ce81d78 M tests/Sanity/basic-linking-sanity/lpthread.c +:100644 100644 2a31e0d2 daadf29a M tests/Sanity/basic-linking-sanity/lrt.c commit 82e9f5dfc64db01f3b14e751b4ff661617ed5613 Author: Martin Coufal @@ -2941,8 +3061,8 @@ CommitDate: Fri Feb 2 14:30:22 2024 +0000 * add missing casts to int * add missing includes -:100644 100644 dfc0420 f2491e2 M tests/Regression/double_free_exploit/exploit.c -:100644 100644 b9eb76f be9f77a M tests/Regression/double_free_exploit/exploit2.c +:100644 100644 dfc04209 f2491e23 M tests/Regression/double_free_exploit/exploit.c +:100644 100644 b9eb76f4 be9f77af M tests/Regression/double_free_exploit/exploit2.c commit 9b8bc360e15dd9edf752b9e6c0f26c1ceba37882 Author: Martin Coufal @@ -2954,7 +3074,7 @@ CommitDate: Fri Feb 2 14:30:22 2024 +0000 * include 'wchar.h' -:100644 100644 496fe4c b8636bb M tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/test.c +:100644 100644 496fe4cf b8636bba M tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/test.c commit 306c1b65fae92800002cc1b80a4229f4a43c00cb Author: Martin Coufal @@ -2966,7 +3086,7 @@ CommitDate: Fri Feb 2 14:30:22 2024 +0000 * add includes -:100644 100644 9551435 1153a58 M tests/Regression/bz600457-locally-defined-symbol-resolving-failure/reproducer.tar.gz +:100644 100644 95514353 1153a58f M tests/Regression/bz600457-locally-defined-symbol-resolving-failure/reproducer.tar.gz commit 9ba57dfb0e7318975ca826a925bce880f3b652c3 Author: Martin Coufal @@ -2978,7 +3098,7 @@ CommitDate: Fri Feb 2 14:30:22 2024 +0000 * include 'unistd.h' -:100644 100644 76a5dda 4063dab M tests/Regression/bz549813-dl-close-race-with-C-destructor/C_Only.tar +:100644 100644 76a5ddac 4063dab4 M tests/Regression/bz549813-dl-close-race-with-C-destructor/C_Only.tar commit ec13b9b33e27ebbba3205e77906193b2ddf2406b Author: Martin Coufal @@ -2990,7 +3110,7 @@ CommitDate: Fri Feb 2 14:30:22 2024 +0000 * include 'unistd.h' -:100644 100644 471fe16 c01a116 M tests/Regression/bz529997-sem_timedwait-with-invalid-time/real-reproducer.c +:100644 100644 471fe169 c01a1160 M tests/Regression/bz529997-sem_timedwait-with-invalid-time/real-reproducer.c commit d1b1cc9c2687bf92949bde1342c6296e33b167d2 Author: Martin Coufal @@ -3003,8 +3123,8 @@ CommitDate: Fri Feb 2 14:30:22 2024 +0000 * add 'gcc' to required packages * include 'unistd.h' -:100644 100644 da5ba66 a737a0a M tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/main.fmf -:100644 100644 05c7a33 22f9419 M tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/testcase.c +:100644 100644 da5ba668 a737a0a7 M tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/main.fmf +:100644 100644 05c7a338 22f9419d M tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/testcase.c commit 3eb443a2d195213a0780f0a49f1ce7cc77d413a7 Author: Martin Coufal @@ -3017,8 +3137,8 @@ CommitDate: Fri Feb 2 14:30:22 2024 +0000 * add gcc to required packages * include 'unistd.h' -:100644 100644 422d973 c3601ae M tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/main.fmf -:100644 100644 c2dceb1 fd4f9a0 M tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/tst-getlogin_r.c +:100644 100644 422d973a c3601ae3 M tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/main.fmf +:100644 100644 c2dceb15 fd4f9a03 M tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/tst-getlogin_r.c commit 1b6496d171cb69bbaca97bae285f7d646f5a88e6 Author: Martin Coufal @@ -3029,10 +3149,10 @@ CommitDate: Fri Feb 2 14:30:22 2024 +0000 CI Tests: add Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports test -:000000 100644 0000000 378022c A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/Makefile -:000000 100644 0000000 d77a6de A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/PURPOSE -:000000 100644 0000000 e251cec A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/main.fmf -:000000 100755 0000000 6513c9a A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/runtest.sh +:000000 100644 00000000 378022c6 A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/Makefile +:000000 100644 00000000 d77a6ded A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/PURPOSE +:000000 100644 00000000 e251cecf A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/main.fmf +:000000 100755 00000000 6513c9a0 A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/runtest.sh commit 53a0744ff2eec1d9975343a327d3b70fce61dd66 Author: Martin Coufal @@ -3043,10 +3163,10 @@ CommitDate: Fri Feb 2 14:30:22 2024 +0000 CI Tests: add Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc test -:000000 100644 0000000 3429bda A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/Makefile -:000000 100644 0000000 d31ceb1 A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/PURPOSE -:000000 100644 0000000 f5ff109 A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/main.fmf -:000000 100755 0000000 23438b7 A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/runtest.sh +:000000 100644 00000000 3429bda0 A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/Makefile +:000000 100644 00000000 d31ceb1b A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/PURPOSE +:000000 100644 00000000 f5ff109d A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/main.fmf +:000000 100755 00000000 23438b7c A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/runtest.sh commit 0bd93c5697bc60e4f4a84f5b55c98f351883e689 Author: Florian Weimer @@ -3062,8 +3182,8 @@ CommitDate: Wed Jan 31 17:27:51 2024 +0100 Forward-port of the feature from Fedora 35, with subsequent fixes: Add kernel header files, and do not use = in linker scripts. -:100644 100644 c706813 6116752 M glibc.spec -:100644 100644 d26f8eb 1fae784 M wrap-find-debuginfo.sh +:100644 100644 c7068139 6116752d M glibc.spec +:100644 100644 d26f8ebc 1fae7845 M wrap-find-debuginfo.sh commit 23dbf2db005fc80d9b95ced7a071f295bc0a241d Author: Patsy Griffin @@ -3081,8 +3201,8 @@ CommitDate: Tue Jan 30 13:18:43 2024 -0500 - Use binutils 2.42 branch in build-many-glibcs.py - elf: correct relocation statistics for !ELF_MACHINE_START_ADDRESS -:100644 100644 70f93bf c706813 M glibc.spec -:100644 100644 5c077e4 e829191 M sources +:100644 100644 70f93bf1 c7068139 M glibc.spec +:100644 100644 5c077e43 e829191f M sources commit 9a84f6d2802be4753088e32eb28c414f1794ebf7 Author: Arjun Shankar @@ -3098,8 +3218,8 @@ CommitDate: Mon Jan 29 15:10:24 2024 +0100 - localedata: Use consistent values for grouping and mon_grouping - manual: fix order of arguments of memalign and aligned_alloc (Bug 27547) -:100644 100644 fe83192 70f93bf M glibc.spec -:100644 100644 abf46e9 5c077e4 M sources +:100644 100644 fe83192d 70f93bf1 M glibc.spec +:100644 100644 abf46e97 5c077e43 M sources commit 0d0f91a2e8fd728f9e58d00202ee8ee1ddfbb643 Author: Jens Petersen @@ -3109,7 +3229,7 @@ CommitDate: Thu Jan 25 17:33:00 2024 +0800 no longer supplement langpacks if all-langpacks installed -:100644 100644 c39daeb fe83192 M glibc.spec +:100644 100644 c39daebd fe83192d M glibc.spec commit 1f97fe5ae0dd6b20123624d5e992057fcad93cf7 Author: Florian Weimer @@ -3140,8 +3260,8 @@ CommitDate: Wed Jan 24 14:55:14 2024 +0100 - Update syscall lists for Linux 6.7 - stdlib: Remove unused is_aligned function from qsort.c -:100644 100644 5a28cb5 c39daeb M glibc.spec -:100644 100644 cad6334 abf46e9 M sources +:100644 100644 5a28cb55 c39daebd M glibc.spec +:100644 100644 cad63346 abf46e97 M sources commit b11c9771f72dffde4c755a940879f4a123a773c8 Author: Fedora Release Engineering @@ -3151,7 +3271,7 @@ CommitDate: Fri Jan 19 22:32:17 2024 +0000 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild -:100644 100644 12f5673 5a28cb5 M glibc.spec +:100644 100644 12f56732 5a28cb55 M glibc.spec commit 0239af7b6cb8849822d7c0b6fa2ff5e87b3c8034 Author: DJ Delorie @@ -3168,8 +3288,8 @@ CommitDate: Tue Jan 16 17:12:40 2024 -0500 - stdlib: Fix heapsort for cases with exactly two elements - localedata: anp_IN: Fix abbreviated month names -:100644 100644 6966026 12f5673 M glibc.spec -:100644 100644 8dbf09f cad6334 M sources +:100644 100644 69660264 12f56732 M glibc.spec +:100644 100644 8dbf09f0 cad63346 M sources commit 9aa434eb3feb46b42a0caee1657d72f5efc93ad7 Author: DJ Delorie @@ -3185,8 +3305,8 @@ CommitDate: Mon Jan 15 17:54:52 2024 -0500 - x86-64: Check if mprotect works before rewriting PLT - aarch64: Add NEWS entry about libmvec for 2.39 -:100644 100644 108bcf1 6966026 M glibc.spec -:100644 100644 97cd158 8dbf09f M sources +:100644 100644 108bcf14 69660264 M glibc.spec +:100644 100644 97cd1582 8dbf09f0 M sources commit 5c2b7dda4c82927142e77ca15b6b95e8e0305c0d Author: Carlos O'Donell @@ -3317,10 +3437,10 @@ CommitDate: Mon Jan 15 08:15:54 2024 -0500 - x86-64: Fix the tcb field load for x32 [BZ #31185] - x86-64: Fix the dtv field load for x32 [BZ #31184] -:100644 100644 7328fc8 ae36c51 M glibc-python3.patch -:100644 000000 0b7fa16 0000000 D glibc-rh2255506.patch -:100644 100644 1255700 108bcf1 M glibc.spec -:100644 100644 a2ca4e3 97cd158 M sources +:100644 100644 7328fc8b ae36c516 M glibc-python3.patch +:100644 000000 0b7fa16a 00000000 D glibc-rh2255506.patch +:100644 100644 12557007 108bcf14 M glibc.spec +:100644 100644 a2ca4e39 97cd1582 M sources commit d6f60005eb62ac0f1614e96f76281f719b214ba8 Author: Florian Weimer @@ -3330,8 +3450,8 @@ CommitDate: Wed Jan 3 16:42:48 2024 +0100 Infinite loop in res_mkquery with malformed domain name (#2255506) -:000000 100644 0000000 0b7fa16 A glibc-rh2255506.patch -:100644 100644 86aa9f5 1255700 M glibc.spec +:000000 100644 00000000 0b7fa16a A glibc-rh2255506.patch +:100644 100644 86aa9f58 12557007 M glibc.spec commit ca9e6ac79501d9ee8eeaf795c5764d8733534910 Author: Florian Weimer @@ -3384,8 +3504,8 @@ CommitDate: Fri Dec 22 16:20:43 2023 +0100 - resolv: Fix a few unaligned accesses to fields in HEADER - x86: Check PT_GNU_PROPERTY early -:100644 100644 41c5e7e 86aa9f5 M glibc.spec -:100644 100644 77fe20a a2ca4e3 M sources +:100644 100644 41c5e7eb 86aa9f58 M glibc.spec +:100644 100644 77fe20a0 a2ca4e39 M sources commit 259d575cdf1efb48b486811f4faadbcd836f0cbc Author: Carlos O'Donell @@ -3401,7 +3521,7 @@ CommitDate: Wed Dec 13 20:44:07 2023 -0500 Resolves: RHEL-19045 -:100644 100644 a1d8589 41c5e7e M glibc.spec +:100644 100644 a1d85891 41c5e7eb M glibc.spec commit 37a93f168524cf7664d9c2fb27b496d272b9a067 Author: Carlos O'Donell @@ -3440,9 +3560,9 @@ CommitDate: Tue Dec 12 11:59:01 2023 -0500 - malloc: Improve MAP_HUGETLB with glibc.malloc.hugetlb=2 - elf: Add a way to check if tunable is set (BZ 27069) -:100644 000000 c5d3c7a 0000000 D glibc-rh2248502.patch -:100644 100644 500849b a1d8589 M glibc.spec -:100644 100644 a1f5ecd 77fe20a M sources +:100644 000000 c5d3c7a8 00000000 D glibc-rh2248502.patch +:100644 100644 500849b4 a1d85891 M glibc.spec +:100644 100644 a1f5ecdc 77fe20a0 M sources commit e1c3cc05d0d8b9ebb0a9928f11ddb751ce8bfa27 Author: Arjun Shankar @@ -3466,9 +3586,9 @@ CommitDate: Tue Nov 28 22:00:39 2023 +0100 - malloc: Use __get_nprocs on arena_get2 (BZ 30945) - aarch64: Fix libmvec benchmarks -:100644 000000 4266517 0000000 D glibc-benchtests-aarch64.patch -:100644 100644 185e63d 500849b M glibc.spec -:100644 100644 1924b89 a1f5ecd M sources +:100644 000000 42665170 00000000 D glibc-benchtests-aarch64.patch +:100644 100644 185e63dd 500849b4 M glibc.spec +:100644 100644 1924b890 a1f5ecdc M sources commit 6f9b4d9d90db489a3861286e6ccb4c93994f3dfd Author: Florian Weimer @@ -3478,8 +3598,8 @@ CommitDate: Mon Nov 27 12:54:10 2023 +0100 Fix qsort workaround (#2248502) -:100644 100644 d9eff1c c5d3c7a M glibc-rh2248502.patch -:100644 100644 218a42d 185e63d M glibc.spec +:100644 100644 d9eff1c0 c5d3c7a8 M glibc-rh2248502.patch +:100644 100644 218a42d2 185e63dd M glibc.spec commit 154785c591be3edb273d107bd196d5074c26f937 Author: Florian Weimer @@ -3489,8 +3609,8 @@ CommitDate: Thu Nov 23 09:09:25 2023 +0100 Restore qsort workaround for 389-ds-base. (#2248502) -:000000 100644 0000000 d9eff1c A glibc-rh2248502.patch -:100644 100644 9a3f44f 218a42d M glibc.spec +:000000 100644 00000000 d9eff1c0 A glibc-rh2248502.patch +:100644 100644 9a3f44fc 218a42d2 M glibc.spec commit f94f56a23bebb254ca767dc9a9417c4a4ea25e67 Author: Florian Weimer @@ -3554,13 +3674,13 @@ CommitDate: Wed Nov 22 09:22:15 2023 +0100 - aarch64: Add vector implementations of acos routines - aarch64: Add vector implementations of asin routines -:000000 100644 0000000 4266517 A glibc-benchtests-aarch64.patch -:100644 000000 e2c5f37 0000000 D glibc-rh2244688.patch -:100644 000000 b97861f 0000000 D glibc-rh2244992.patch -:100644 000000 8b296fd 0000000 D glibc-rh2248502-3.patch -:100644 000000 8ff2042 0000000 D glibc-rh2248915.patch -:100644 100644 b08aa54 9a3f44f M glibc.spec -:100644 100644 a0f3c83 1924b89 M sources +:000000 100644 00000000 42665170 A glibc-benchtests-aarch64.patch +:100644 000000 e2c5f37e 00000000 D glibc-rh2244688.patch +:100644 000000 b97861f5 00000000 D glibc-rh2244992.patch +:100644 000000 8b296fde 00000000 D glibc-rh2248502-3.patch +:100644 000000 8ff20423 00000000 D glibc-rh2248915.patch +:100644 100644 b08aa547 9a3f44fc M glibc.spec +:100644 100644 a0f3c836 1924b890 M sources commit 9e361d1258d5abbf55d33a4e9c739f9467ac4ea3 Author: Florian Weimer @@ -3570,8 +3690,8 @@ CommitDate: Wed Nov 15 07:31:04 2023 +0100 Work around another self-comparison application issue in qsort (#2248502) -:000000 100644 0000000 8b296fd A glibc-rh2248502-3.patch -:100644 100644 a258b02 b08aa54 M glibc.spec +:000000 100644 00000000 8b296fde A glibc-rh2248502-3.patch +:100644 100644 a258b023 b08aa547 M glibc.spec commit 7d7642221fcc47416419477b28dda5ba56c02d4c Author: Florian Weimer @@ -3581,8 +3701,8 @@ CommitDate: Sat Nov 11 10:06:02 2023 +0100 Fix missing entries in /etc/ld.so.cache (#2248915) -:000000 100644 0000000 8ff2042 A glibc-rh2248915.patch -:100644 100644 4009d5f a258b02 M glibc.spec +:000000 100644 00000000 8ff20423 A glibc-rh2248915.patch +:100644 100644 4009d5fc a258b023 M glibc.spec commit ce2b6b8073f08a330941e32e99bcf90ea78b1c2f Author: Florian Weimer @@ -3606,10 +3726,10 @@ CommitDate: Sat Nov 11 08:55:02 2023 +0100 - support: Add support_set_vma_name - linux: Add PR_SET_VMA_ANON_NAME support -:100644 000000 b8fe82e 0000000 D glibc-rh2248502-1.patch -:100644 000000 4e37f6c 0000000 D glibc-rh2248502-2.patch -:100644 100644 b4c6e12 4009d5f M glibc.spec -:100644 100644 0ea13e9 a0f3c83 M sources +:100644 000000 b8fe82ec 00000000 D glibc-rh2248502-1.patch +:100644 000000 4e37f6c5 00000000 D glibc-rh2248502-2.patch +:100644 100644 b4c6e12d 4009d5fc M glibc.spec +:100644 100644 0ea13e9e a0f3c836 M sources commit 4e9eab04edbfb5626680985533ce0e3827c5851e Author: Florian Weimer @@ -3619,8 +3739,8 @@ CommitDate: Wed Nov 8 06:33:38 2023 +0100 Fix force-first handling in dlclose, take two (#2244992, #2246048) -:000000 100644 0000000 b97861f A glibc-rh2244992.patch -:100644 100644 7e81c57 b4c6e12 M glibc.spec +:000000 100644 00000000 b97861f5 A glibc-rh2244992.patch +:100644 100644 7e81c579 b4c6e12d M glibc.spec commit 0413a67417c588295ba3a760ad1b4bd6e319eb10 Author: Florian Weimer @@ -3684,10 +3804,10 @@ CommitDate: Tue Nov 7 16:22:46 2023 +0100 - s390: Fix undefined behaviour in feenableexcept, fedisableexcept [BZ #30960] - elf: Do not print the cache entry if --inhibit-cache is used -:000000 100644 0000000 b8fe82e A glibc-rh2248502-1.patch -:000000 100644 0000000 4e37f6c A glibc-rh2248502-2.patch -:100644 100644 0386a1b 7e81c57 M glibc.spec -:100644 100644 90df9ab 0ea13e9 M sources +:000000 100644 00000000 b8fe82ec A glibc-rh2248502-1.patch +:000000 100644 00000000 4e37f6c5 A glibc-rh2248502-2.patch +:100644 100644 0386a1bc 7e81c579 M glibc.spec +:100644 100644 90df9abd 0ea13e9e M sources commit 231d936c48d6f0aca9adf294e983f5e22a122766 Author: Carlos O'Donell @@ -3699,8 +3819,8 @@ CommitDate: Thu Oct 26 17:21:36 2023 -0400 Resolves: #2246048 -:100644 000000 78d54c3 0000000 D glibc-rh2244992.patch -:100644 100644 7fccd3c 0386a1b M glibc.spec +:100644 000000 78d54c31 00000000 D glibc-rh2244992.patch +:100644 100644 7fccd3c3 0386a1bc M glibc.spec commit ff30db342bde49cd7a39ddca45b04d5ea87e1f76 Author: Daan De Meyer @@ -3714,7 +3834,7 @@ CommitDate: Thu Oct 26 11:49:08 2023 +0200 let's make sure -mbackchain is inherited from redhat-rpm-config as well, similar to how -fno-omit-frame-pointer is inherited as well. -:100644 100644 6cd8b01 7fccd3c M glibc.spec +:100644 100644 6cd8b011 7fccd3c3 M glibc.spec commit 79808700a1ccaa7780fa0648bb559d25b0c2f47b Author: Arjun Shankar @@ -3731,7 +3851,7 @@ CommitDate: Tue Oct 24 14:45:44 2023 +0200 reinstates the file at /usr/share/doc/glibc/gai.conf as part of the glibc-doc subpackage. -:100644 100644 a0922b5 6cd8b01 M glibc.spec +:100644 100644 a0922b5c 6cd8b011 M glibc.spec commit c0b92fe18e67d5152db95240b2780c6f77b991b3 Author: Florian Weimer @@ -3741,8 +3861,8 @@ CommitDate: Thu Oct 19 09:09:36 2023 +0200 Fix force-first handling in dlclose (#2244992) -:000000 100644 0000000 78d54c3 A glibc-rh2244992.patch -:100644 100644 8bf170e a0922b5 M glibc.spec +:000000 100644 00000000 78d54c31 A glibc-rh2244992.patch +:100644 100644 8bf170e7 a0922b5c M glibc.spec commit 2e44c0f9f3d371c7bf44b6dcc1b609fe7a4c0cc2 Author: Florian Weimer @@ -3767,9 +3887,9 @@ CommitDate: Wed Oct 18 11:43:30 2023 +0200 - Avoid maybe-uninitialized warning in __kernel_rem_pio2 - Fix WAIT_FOR_DEBUGGER for container tests. -:000000 100644 0000000 e2c5f37 A glibc-rh2244688.patch -:100644 100644 c791311 8bf170e M glibc.spec -:100644 100644 48a809e 90df9ab M sources +:000000 100644 00000000 e2c5f37e A glibc-rh2244688.patch +:100644 100644 c7913115 8bf170e7 M glibc.spec +:100644 100644 48a809ec 90df9abd M sources commit dff2117453f6bd020bfea60bc2c7febe1ffafaf3 Author: Florian Weimer @@ -3797,9 +3917,9 @@ CommitDate: Thu Oct 12 12:43:33 2023 +0200 - inet: Rearrange and sort Makefile variables - Fix off-by-one OOB write in iconv/tst-iconv-mt -:100644 000000 3f19d15 0000000 D glibc-disable-werror-tst-realloc.patch -:100644 100644 4ddb112 c791311 M glibc.spec -:100644 100644 fa720dc 48a809e M sources +:100644 000000 3f19d153 00000000 D glibc-disable-werror-tst-realloc.patch +:100644 100644 4ddb112e c7913115 M glibc.spec +:100644 100644 fa720dcb 48a809ec M sources commit 2538a798df476471298a30da96fb3045effe46cb Author: Arjun Shankar @@ -3816,8 +3936,8 @@ CommitDate: Tue Oct 3 19:29:06 2023 +0200 Resolves: #2241966 -:100644 100644 b3ad1f8 4ddb112 M glibc.spec -:100644 100644 fd5ab90 fa720dc M sources +:100644 100644 b3ad1f8e 4ddb112e M glibc.spec +:100644 100644 fd5ab90a fa720dcb M sources commit d3951beccf663cefae9dbb3a67617faaadf8fd99 Author: Arjun Shankar @@ -3838,8 +3958,8 @@ CommitDate: Tue Oct 3 15:37:35 2023 +0200 - C2x scanf %wN, %wfN support - test-container: Use nftw instead of rm -rf -:100644 100644 fbfc069 b3ad1f8 M glibc.spec -:100644 100644 0eb1c72 fd5ab90 M sources +:100644 100644 fbfc0697 b3ad1f8e M glibc.spec +:100644 100644 0eb1c727 fd5ab90a M sources commit 9e85d70f29a0657ec720cc0541f4741ab597b821 Author: Patsy Griffin @@ -3871,8 +3991,8 @@ CommitDate: Thu Sep 28 12:39:12 2023 -0400 - LoongArch: Add glibc.cpu.hwcap support. - math: Add a no-mathvec flag for sin (-0.0) -:100644 100644 69e7120 fbfc069 M glibc.spec -:100644 100644 7616255 0eb1c72 M sources +:100644 100644 69e71200 fbfc0697 M glibc.spec +:100644 100644 76162553 0eb1c727 M sources commit d95a28acbfc16c5ac1abee29959c790a073ea9cf Author: Arjun Shankar @@ -3898,8 +4018,8 @@ CommitDate: Mon Sep 18 11:42:43 2023 +0200 - resolv: Fix some unaligned accesses in resolver [BZ #30750] - Update syscall lists for Linux 6.5 -:100644 100644 faca681 69e7120 M glibc.spec -:100644 100644 f0e6f03 7616255 M sources +:100644 100644 faca6815 69e71200 M glibc.spec +:100644 100644 f0e6f03f 76162553 M sources commit 3940ace9ec49b1d5e4869d57c13403da6abb67a7 Author: Patsy Griffin @@ -3918,8 +4038,8 @@ CommitDate: Mon Sep 11 16:45:17 2023 -0400 - Use Linux 6.5 in build-many-glibcs.py - elf: Remove unused l_text_end field from struct link_map -:100644 100644 b6b4928 faca681 M glibc.spec -:100644 100644 bcde87d f0e6f03 M sources +:100644 100644 b6b4928b faca6815 M glibc.spec +:100644 100644 bcde87dd f0e6f03f M sources commit ebaa7d3ecee3a43846b8bd691a82e13c169688e7 Author: Florian Weimer @@ -3948,8 +4068,8 @@ CommitDate: Fri Sep 8 14:42:43 2023 +0200 - elf: Fix slow tls access after dlopen [BZ #19924] - x86: Check the lower byte of EAX of CPUID leaf 2 [BZ #30643] -:100644 100644 fd83f85 b6b4928 M glibc.spec -:100644 100644 c16e081 bcde87d M sources +:100644 100644 fd83f855 b6b4928b M glibc.spec +:100644 100644 c16e081e bcde87dd M sources commit 4538b5ade895a09bf78a9cf0e45276ddc82067ec Author: Sergey Kolosov @@ -3959,11 +4079,11 @@ CommitDate: Thu Aug 31 13:18:31 2023 +0000 CI Tests: removes bz699724-Memory-leak-within-NSSLOW-Init-as-called-by as not relevant -:100644 000000 1805d2b 0000000 D tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/Makefile -:100644 000000 e143347 0000000 D tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/PURPOSE -:100644 000000 c134d97 0000000 D tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/main.fmf -:100755 000000 8991a97 0000000 D tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/runtest.sh -:100644 000000 27b02bc 0000000 D tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/test_crypt.py +:100644 000000 1805d2be 00000000 D tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/Makefile +:100644 000000 e143347f 00000000 D tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/PURPOSE +:100644 000000 c134d97a 00000000 D tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/main.fmf +:100755 000000 8991a972 00000000 D tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/runtest.sh +:100644 000000 27b02bca 00000000 D tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/test_crypt.py commit 565f0c30263cdf2ea6a2b1c82d8c474fe4d4d4e9 Author: DJ Delorie @@ -4011,8 +4131,8 @@ CommitDate: Tue Aug 29 13:42:29 2023 -0400 - htl: move pthread_equal into libc - Linux: Avoid conflicting types in ld.so --list-diagnostics -:100644 100644 db0918f fd83f85 M glibc.spec -:100644 100644 48a5e57 c16e081 M sources +:100644 100644 db0918fc fd83f855 M glibc.spec +:100644 100644 48a5e575 c16e081e M sources commit 0deaedc9540fe6abde2c717d679f489862ae7c2c Author: Florian Weimer @@ -4022,7 +4142,7 @@ CommitDate: Wed Aug 23 08:48:21 2023 +0200 diffutils is needed by the testsuite -:100644 100644 ecaccf2 db0918f M glibc.spec +:100644 100644 ecaccf2b db0918fc M glibc.spec commit 266c7da7e03a9c3f27273314edce2e4fab91908c Author: Arjun Shankar @@ -4050,8 +4170,8 @@ CommitDate: Tue Aug 22 15:44:10 2023 +0200 - io/tst-statvfs: fix statfs().f_type comparison test on some arches - fxprintf: Get rid of alloca -:100644 100644 788ed96 ecaccf2 M glibc.spec -:100644 100644 40a8683 48a5e57 M sources +:100644 100644 788ed96f ecaccf2b M glibc.spec +:100644 100644 40a8683e 48a5e575 M sources commit c128c8cb1657aefbd3009bff73a55184f66aaf96 Author: Carlos O'Donell @@ -4061,7 +4181,7 @@ CommitDate: Tue Aug 15 09:18:43 2023 -0400 Collect dynamic loader diagnostics from the build system -:100644 100644 f4d9e2d 788ed96 M glibc.spec +:100644 100644 f4d9e2de 788ed96f M glibc.spec commit 73431ea55b5dec6c82adbf31c4e09cd96431df26 Author: Florian Weimer @@ -4103,8 +4223,8 @@ CommitDate: Tue Aug 15 08:31:42 2023 +0200 - stdlib: Improve tst-realpath compatibility with source fortification - Open master branch for glibc 2.39 development -:100644 100644 dec5270 f4d9e2d M glibc.spec -:100644 100644 9f8d9cb 40a8683 M sources +:100644 100644 dec52707 f4d9e2de M glibc.spec +:100644 100644 9f8d9cbf 40a8683e M sources commit a5464690b5de68fe891f162253e8b160787073a5 Author: Siddhesh Poyarekar @@ -4117,23 +4237,23 @@ CommitDate: Tue Aug 1 14:10:29 2023 -0400 The kernel patches are still stuck and there's a risk that the interfaces may change. -:100644 000000 d2bdfb4 0000000 D 0001-x86-cet-Don-t-set-CET-active.patch -:100644 100644 b7382fa dec5270 M glibc.spec -:100644 000000 25aba86 0000000 D v2-0001-x86-cet-Check-user_shstk-in-proc-cpuinfo.patch -:100644 000000 d2ce592 0000000 D v2-0002-x86-cet-Update-tst-cet-vfork-1.patch -:100644 000000 67b8c31 0000000 D v2-0003-x86-cet-Don-t-assume-that-SHSTK-implies-IBT.patch -:100644 000000 77e90c5 0000000 D v2-0004-x86-cet-Check-legacy-shadow-stack-applications.patch -:100644 000000 1ae6e2c 0000000 D v2-0005-x86-cet-Check-CPU_FEATURE_ACTIVE-when-CET-is-disa.patch -:100644 000000 76f5e00 0000000 D v2-0006-x86-cet-Add-tests-for-GLIBC_TUNABLES-glibc.cpu.hw.patch -:100644 000000 fb73597 0000000 D v2-0007-x86-cet-Check-legacy-shadow-stack-code-in-.init_a.patch -:100644 000000 1c26421 0000000 D v2-0008-x86-cet-Check-CPU_FEATURE_ACTIVE-in-permissive-mo.patch -:100644 000000 01ec3c0 0000000 D v2-0009-x86-Check-PT_GNU_PROPERTY-early.patch -:100644 000000 ca881d2 0000000 D v2-0010-x86-Modularize-sysdeps-x86-dl-cet.c.patch -:100644 000000 1dc95c0 0000000 D v2-0011-x86-64-Add-fixup-asm-unistd.h-and-regenerate-arch.patch -:100644 000000 7b80049 0000000 D v2-0012-x86-cet-Sync-with-the-kernel-shadow-stack-interfa.patch -:100644 000000 a39200d 0000000 D v2-0013-elf-Always-provide-_dl_get_dl_main_map-in-libc.a.patch -:100644 000000 535f499 0000000 D v2-0014-x86-cet-Enable-shadow-stack-during-startup.patch -:100644 000000 88ed83a 0000000 D v2-0015-x86-cet-Check-feature_1-in-TCB-for-active-IBT-and.patch +:100644 000000 d2bdfb41 00000000 D 0001-x86-cet-Don-t-set-CET-active.patch +:100644 100644 b7382fa8 dec52707 M glibc.spec +:100644 000000 25aba86a 00000000 D v2-0001-x86-cet-Check-user_shstk-in-proc-cpuinfo.patch +:100644 000000 d2ce592c 00000000 D v2-0002-x86-cet-Update-tst-cet-vfork-1.patch +:100644 000000 67b8c317 00000000 D v2-0003-x86-cet-Don-t-assume-that-SHSTK-implies-IBT.patch +:100644 000000 77e90c54 00000000 D v2-0004-x86-cet-Check-legacy-shadow-stack-applications.patch +:100644 000000 1ae6e2cd 00000000 D v2-0005-x86-cet-Check-CPU_FEATURE_ACTIVE-when-CET-is-disa.patch +:100644 000000 76f5e001 00000000 D v2-0006-x86-cet-Add-tests-for-GLIBC_TUNABLES-glibc.cpu.hw.patch +:100644 000000 fb73597e 00000000 D v2-0007-x86-cet-Check-legacy-shadow-stack-code-in-.init_a.patch +:100644 000000 1c264210 00000000 D v2-0008-x86-cet-Check-CPU_FEATURE_ACTIVE-in-permissive-mo.patch +:100644 000000 01ec3c03 00000000 D v2-0009-x86-Check-PT_GNU_PROPERTY-early.patch +:100644 000000 ca881d29 00000000 D v2-0010-x86-Modularize-sysdeps-x86-dl-cet.c.patch +:100644 000000 1dc95c0c 00000000 D v2-0011-x86-64-Add-fixup-asm-unistd.h-and-regenerate-arch.patch +:100644 000000 7b800496 00000000 D v2-0012-x86-cet-Sync-with-the-kernel-shadow-stack-interfa.patch +:100644 000000 a39200de 00000000 D v2-0013-elf-Always-provide-_dl_get_dl_main_map-in-libc.a.patch +:100644 000000 535f4996 00000000 D v2-0014-x86-cet-Enable-shadow-stack-during-startup.patch +:100644 000000 88ed83ad 00000000 D v2-0015-x86-cet-Check-feature_1-in-TCB-for-active-IBT-and.patch commit b62f070947106d19e2fff398b62e51518d4fb2c3 Author: Florian Weimer @@ -4143,7 +4263,7 @@ CommitDate: Tue Aug 1 11:40:49 2023 +0200 Fix release number -:100644 100644 3389466 b7382fa M glibc.spec +:100644 100644 33894666 b7382fa8 M glibc.spec commit 38508109e6246418d7c26dec321437332d792660 Author: Florian Weimer @@ -4167,8 +4287,8 @@ CommitDate: Tue Aug 1 10:40:30 2023 +0200 - malloc: Fix set-freeres.c with gcc 6 - nscd: cleanup obsolete _FORTIFY_SOURCE setting -:100644 100644 b8f0c79 3389466 M glibc.spec -:100644 100644 d425331 9f8d9cb M sources +:100644 100644 b8f0c79d 33894666 M glibc.spec +:100644 100644 d4253319 9f8d9cbf M sources commit 33d1497073d3200b6850e7b0bd37572c5aed5713 Author: Patsy Griffin @@ -4180,7 +4300,7 @@ CommitDate: Mon Jul 31 13:36:40 2023 -0400 https://fedoraproject.org/wiki/Changes/AllowRemovalOfTzdata -:100644 100644 6cb7a82 b8f0c79 M glibc.spec +:100644 100644 6cb7a820 b8f0c79d M glibc.spec commit 847a50e46dbc2004ab78857a0b0296e072892a59 Author: DJ Delorie @@ -4224,8 +4344,8 @@ CommitDate: Tue Jul 25 13:05:36 2023 -0400 - i386: make debug wrappers compatible with static PIE - LoongArch: Fix soft-float bug about _dl_runtime_resolve{,lsx,lasx} -:100644 100644 130dace 6cb7a82 M glibc.spec -:100644 100644 29ffc2d d425331 M sources +:100644 100644 130dacec 6cb7a820 M glibc.spec +:100644 100644 29ffc2d3 d4253319 M sources commit d1786a3bd453c6979b20d61c2c18942200a80d5b Author: Fedora Release Engineering @@ -4237,7 +4357,7 @@ CommitDate: Wed Jul 19 23:12:10 2023 +0000 Signed-off-by: Fedora Release Engineering -:100644 100644 eeaec84 130dace M glibc.spec +:100644 100644 eeaec849 130dacec M glibc.spec commit 3a527a095be31e13813dc1a44157d896b5f30b09 Author: mcoufal @@ -4247,12 +4367,12 @@ CommitDate: Wed Jul 12 16:37:44 2023 +0200 CI Tests: add Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value test -:000000 100644 0000000 7006044 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/Makefile -:000000 100644 0000000 7d4d3c8 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/PURPOSE -:000000 100644 0000000 decfbad A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/list.gdb -:000000 100644 0000000 422d973 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/main.fmf -:000000 100755 0000000 6590de7 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/runtest.sh -:000000 100644 0000000 c2dceb1 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/tst-getlogin_r.c +:000000 100644 00000000 7006044e A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/Makefile +:000000 100644 00000000 7d4d3c87 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/PURPOSE +:000000 100644 00000000 decfbad5 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/list.gdb +:000000 100644 00000000 422d973a A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/main.fmf +:000000 100755 00000000 6590de77 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/runtest.sh +:000000 100644 00000000 c2dceb15 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/tst-getlogin_r.c commit b131151b7bfdc1653e306e734a3a0d96f785a8ee Author: Arjun Shankar @@ -4275,8 +4395,8 @@ CommitDate: Tue Jul 11 15:27:32 2023 +0200 - realloc: Limit chunk reuse to only growing requests [BZ #30579] - vfscanf-internal: Remove potentially unbounded allocas -:100644 100644 f007c53 eeaec84 M glibc.spec -:100644 100644 1bf07e1 29ffc2d M sources +:100644 100644 f007c530 eeaec849 M glibc.spec +:100644 100644 1bf07e1b 29ffc2d3 M sources commit f5bc56b5e595a4135cd4b03c6b083d3e03f24a43 Author: Frédéric Bérat @@ -4289,7 +4409,7 @@ CommitDate: Thu Jul 6 14:20:58 2023 +0200 Enable fortify source on the GNU C Library, which got included in the last sync. -:100644 100644 dfcefe2 f007c53 M glibc.spec +:100644 100644 dfcefe2f f007c530 M glibc.spec commit bc2927bcdf6187dab68a5292f2d7da203e4f6994 Author: Frédéric Bérat @@ -4340,8 +4460,8 @@ CommitDate: Thu Jul 6 11:33:31 2023 +0200 - Make sure INSTALL is ASCII plaintext - Update syscall lists for Linux 6.4 -:100644 100644 ff87123 dfcefe2 M glibc.spec -:100644 100644 6485f92 1bf07e1 M sources +:100644 100644 ff871234 dfcefe2f M glibc.spec +:100644 100644 6485f92a 1bf07e1b M sources commit 24a378361d7ce93ee5f6dc945cf7a751333880f7 Author: Martin Coufal @@ -4351,13 +4471,13 @@ CommitDate: Tue Jul 4 12:31:45 2023 +0000 CI Tests: add Regression/bz1305132-segfault-in-hesiod-getgrouplist test. -:000000 100644 0000000 c9b7367 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/Makefile -:000000 100644 0000000 19a6cbb A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/PURPOSE -:000000 100644 0000000 8e8c699 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/hesiod.conf -:000000 100644 0000000 4adbb0f A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/main.fmf -:000000 100644 0000000 356a6a9 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/named.hesiod -:000000 100755 0000000 acb470c A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/runtest.sh -:000000 100644 0000000 3b7fb6a A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/zone-entry +:000000 100644 00000000 c9b73679 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/Makefile +:000000 100644 00000000 19a6cbb7 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/PURPOSE +:000000 100644 00000000 8e8c699c A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/hesiod.conf +:000000 100644 00000000 4adbb0f3 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/main.fmf +:000000 100644 00000000 356a6a95 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/named.hesiod +:000000 100755 00000000 acb470c0 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/runtest.sh +:000000 100644 00000000 3b7fb6a0 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/zone-entry commit eb302655a8320a79729fcc252cd72877fd58503f Author: Carlos O'Donell @@ -4415,8 +4535,8 @@ CommitDate: Wed Jun 28 10:00:46 2023 -0400 - Remove unused DATEMSK file for tst-getdate - resolv_conf: release lock on allocation failure (bug 30527) -:100644 100644 b5da667 ff87123 M glibc.spec -:100644 100644 5b9d256 6485f92 M sources +:100644 100644 b5da667d ff871234 M glibc.spec +:100644 100644 5b9d256a 6485f92a M sources commit 144f61240626f7da26462e44979e9498fa735ccb Author: Siddhesh Poyarekar @@ -4428,23 +4548,23 @@ CommitDate: Thu Jun 8 13:31:34 2023 -0400 Downstream only and disabled by default. -:000000 100644 0000000 d2bdfb4 A 0001-x86-cet-Don-t-set-CET-active.patch -:100644 100644 615a82f b5da667 M glibc.spec -:000000 100644 0000000 25aba86 A v2-0001-x86-cet-Check-user_shstk-in-proc-cpuinfo.patch -:000000 100644 0000000 d2ce592 A v2-0002-x86-cet-Update-tst-cet-vfork-1.patch -:000000 100644 0000000 67b8c31 A v2-0003-x86-cet-Don-t-assume-that-SHSTK-implies-IBT.patch -:000000 100644 0000000 77e90c5 A v2-0004-x86-cet-Check-legacy-shadow-stack-applications.patch -:000000 100644 0000000 1ae6e2c A v2-0005-x86-cet-Check-CPU_FEATURE_ACTIVE-when-CET-is-disa.patch -:000000 100644 0000000 76f5e00 A v2-0006-x86-cet-Add-tests-for-GLIBC_TUNABLES-glibc.cpu.hw.patch -:000000 100644 0000000 fb73597 A v2-0007-x86-cet-Check-legacy-shadow-stack-code-in-.init_a.patch -:000000 100644 0000000 1c26421 A v2-0008-x86-cet-Check-CPU_FEATURE_ACTIVE-in-permissive-mo.patch -:000000 100644 0000000 01ec3c0 A v2-0009-x86-Check-PT_GNU_PROPERTY-early.patch -:000000 100644 0000000 ca881d2 A v2-0010-x86-Modularize-sysdeps-x86-dl-cet.c.patch -:000000 100644 0000000 1dc95c0 A v2-0011-x86-64-Add-fixup-asm-unistd.h-and-regenerate-arch.patch -:000000 100644 0000000 7b80049 A v2-0012-x86-cet-Sync-with-the-kernel-shadow-stack-interfa.patch -:000000 100644 0000000 a39200d A v2-0013-elf-Always-provide-_dl_get_dl_main_map-in-libc.a.patch -:000000 100644 0000000 535f499 A v2-0014-x86-cet-Enable-shadow-stack-during-startup.patch -:000000 100644 0000000 88ed83a A v2-0015-x86-cet-Check-feature_1-in-TCB-for-active-IBT-and.patch +:000000 100644 00000000 d2bdfb41 A 0001-x86-cet-Don-t-set-CET-active.patch +:100644 100644 615a82f0 b5da667d M glibc.spec +:000000 100644 00000000 25aba86a A v2-0001-x86-cet-Check-user_shstk-in-proc-cpuinfo.patch +:000000 100644 00000000 d2ce592c A v2-0002-x86-cet-Update-tst-cet-vfork-1.patch +:000000 100644 00000000 67b8c317 A v2-0003-x86-cet-Don-t-assume-that-SHSTK-implies-IBT.patch +:000000 100644 00000000 77e90c54 A v2-0004-x86-cet-Check-legacy-shadow-stack-applications.patch +:000000 100644 00000000 1ae6e2cd A v2-0005-x86-cet-Check-CPU_FEATURE_ACTIVE-when-CET-is-disa.patch +:000000 100644 00000000 76f5e001 A v2-0006-x86-cet-Add-tests-for-GLIBC_TUNABLES-glibc.cpu.hw.patch +:000000 100644 00000000 fb73597e A v2-0007-x86-cet-Check-legacy-shadow-stack-code-in-.init_a.patch +:000000 100644 00000000 1c264210 A v2-0008-x86-cet-Check-CPU_FEATURE_ACTIVE-in-permissive-mo.patch +:000000 100644 00000000 01ec3c03 A v2-0009-x86-Check-PT_GNU_PROPERTY-early.patch +:000000 100644 00000000 ca881d29 A v2-0010-x86-Modularize-sysdeps-x86-dl-cet.c.patch +:000000 100644 00000000 1dc95c0c A v2-0011-x86-64-Add-fixup-asm-unistd.h-and-regenerate-arch.patch +:000000 100644 00000000 7b800496 A v2-0012-x86-cet-Sync-with-the-kernel-shadow-stack-interfa.patch +:000000 100644 00000000 a39200de A v2-0013-elf-Always-provide-_dl_get_dl_main_map-in-libc.a.patch +:000000 100644 00000000 535f4996 A v2-0014-x86-cet-Enable-shadow-stack-during-startup.patch +:000000 100644 00000000 88ed83ad A v2-0015-x86-cet-Check-feature_1-in-TCB-for-active-IBT-and.patch commit 24deddf0a5f06960a52c528abdf6fdac7cf365f4 Author: Arjun Shankar @@ -4463,8 +4583,8 @@ CommitDate: Wed Jun 7 10:15:39 2023 +0200 - pthreads: Use _exit to terminate the tst-stdio1 test - support: Add delayed__exit (with two underscores) -:100644 100644 e5c66a4 615a82f M glibc.spec -:100644 100644 985d03e 5b9d256 M sources +:100644 100644 e5c66a4d 615a82f0 M glibc.spec +:100644 100644 985d03e4 5b9d256a M sources commit b9457956730eef15066f858c7448ddfee35aea2d Author: Arjun Shankar @@ -4496,8 +4616,8 @@ CommitDate: Mon Jun 5 20:33:36 2023 +0200 - tests: replace write by xwrite - x86-64: Use YMM registers in memcmpeq-evex.S -:100644 100644 a866efc e5c66a4 M glibc.spec -:100644 100644 7dbb004 985d03e M sources +:100644 100644 a866efc6 e5c66a4d M glibc.spec +:100644 100644 7dbb004e 985d03e4 M sources commit 2060ccf6f932a4ee2df158c6f418c53c901240fa Author: Patsy Griffin @@ -4598,8 +4718,8 @@ CommitDate: Thu Jun 1 09:55:00 2023 -0400 - hurd: Align signal stack pointer after allocating stackframe - hurd: Fix aligning signal stack pointer -:100644 100644 6e1437f a866efc M glibc.spec -:100644 100644 682b008 7dbb004 M sources +:100644 100644 6e1437f9 a866efc6 M glibc.spec +:100644 100644 682b0086 7dbb004e M sources commit 102db1b2b1775776260821f312570b159197904e Author: Carlos O'Donell @@ -4629,8 +4749,8 @@ CommitDate: Tue May 16 08:57:31 2023 -0400 - scripts: Add sort-makefile-lines.py to sort Makefile variables. - dlopen: skip debugger notification for DSO loaded from sprof (bug 30258) -:100644 100644 22a2913 6e1437f M glibc.spec -:100644 100644 76076cd 682b008 M sources +:100644 100644 22a2913c 6e1437f9 M glibc.spec +:100644 100644 76076cd2 682b0086 M sources commit 151cd6bca78cb72a575414d339e696d3bcb4cc38 Author: Arjun Shankar @@ -4704,8 +4824,8 @@ CommitDate: Tue May 9 12:02:52 2023 +0200 - if_index: Remove unneeded alloca.h include - gethostid: Do not include alloca.h -:100644 100644 b8750b2 22a2913 M glibc.spec -:100644 100644 7036881 76076cd M sources +:100644 100644 b8750b25 22a2913c M glibc.spec +:100644 100644 7036881e 76076cd2 M sources commit 4432ded54bd865f19cbb5810ea7ec23b7a4597b0 Author: Patsy Griffin @@ -4738,8 +4858,8 @@ CommitDate: Tue Apr 25 17:30:26 2023 -0400 - linux: Re-flow and sort multiline Makefile definitions - posix: Re-flow and sort multiline Makefile definitions -:100644 100644 a003d31 b8750b2 M glibc.spec -:100644 100644 5639639 7036881 M sources +:100644 100644 a003d31a b8750b25 M glibc.spec +:100644 100644 5639639a 7036881e M sources commit 936bce9f4a226fc37c7865e89544f79105b435d3 Author: Florian Weimer @@ -4749,7 +4869,7 @@ CommitDate: Mon Apr 24 13:55:00 2023 +0200 Explicitly provide ldconfig paths (#2188550) -:100644 100644 5c38460 a003d31 M glibc.spec +:100644 100644 5c384605 a003d31a M glibc.spec commit 509721ab91e07222ba857488fe24d419fdce8fe4 Author: Florian Weimer @@ -4824,8 +4944,8 @@ CommitDate: Thu Apr 20 17:58:14 2023 +0200 - Remove --enable-tunables configure option - Remove --disable-experimental-malloc option -:100644 100644 c246bdf 5c38460 M glibc.spec -:100644 100644 fc5a025 5639639 M sources +:100644 100644 c246bdfe 5c384605 M glibc.spec +:100644 100644 fc5a0253 5639639a M sources commit 8944a27aaf1125cec4c48d5c343f99f156964074 Author: Sergey Kolosov @@ -4835,18 +4955,18 @@ CommitDate: Tue Apr 4 23:07:18 2023 +0200 CI Tests: removes Regression/bz2141685-glibc-Restore-IPC-64-support-in-sysvipc-ctl and Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to tests -:100644 000000 8ff19d0 0000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/Makefile -:100644 000000 262ea54 0000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/PURPOSE -:100644 000000 5ffe276 0000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/m1.stp -:100644 000000 3c63874 0000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/m1_p9.stp -:100644 000000 8ae1a03 0000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/main.fmf -:100755 000000 5b08f7d 0000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/runtest.sh -:100644 000000 6b89fc0 0000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/t.c -:100755 000000 f8c41c9 0000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/trigger.sh -:100644 000000 5cd3985 0000000 D tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/Makefile -:100644 000000 b076330 0000000 D tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/PURPOSE -:100644 000000 ba6e682 0000000 D tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/main.fmf -:100755 000000 c232326 0000000 D tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/runtest.sh +:100644 000000 8ff19d05 00000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/Makefile +:100644 000000 262ea54e 00000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/PURPOSE +:100644 000000 5ffe276a 00000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/m1.stp +:100644 000000 3c63874d 00000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/m1_p9.stp +:100644 000000 8ae1a03a 00000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/main.fmf +:100755 000000 5b08f7d1 00000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/runtest.sh +:100644 000000 6b89fc07 00000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/t.c +:100755 000000 f8c41c94 00000000 D tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/trigger.sh +:100644 000000 5cd3985c 00000000 D tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/Makefile +:100644 000000 b076330e 00000000 D tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/PURPOSE +:100644 000000 ba6e6822 00000000 D tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/main.fmf +:100755 000000 c2323264 00000000 D tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/runtest.sh commit ffce034896c8548d832722a78cf4df09ecda5e81 Author: Sergey Kolosov @@ -4856,9 +4976,9 @@ CommitDate: Tue Apr 4 15:55:00 2023 +0200 CI Tests: changes recommend to require for several tests -:100644 100644 68c42bd 3589c47 M tests/Regression/bz1561018-glibc-Enable-annobin-annotations/main.fmf -:100644 100644 a2ba5e6 8ae1a03 M tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/main.fmf -:100644 100644 fe31611 ba6e682 M tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/main.fmf +:100644 100644 68c42bd0 3589c47a M tests/Regression/bz1561018-glibc-Enable-annobin-annotations/main.fmf +:100644 100644 a2ba5e69 8ae1a03a M tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/main.fmf +:100644 100644 fe316118 ba6e6822 M tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/main.fmf commit af3beceadcfe6ffaab5dd5b604421a3750760145 Author: Sergey Kolosov @@ -4868,19 +4988,19 @@ CommitDate: Tue Apr 4 13:25:22 2023 +0200 CI Tests: removes unnecessary library dependencies -:100644 100644 7b74519 77dbeaf M tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/Makefile -:100644 100644 26e6f9d d38f404 M tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/main.fmf -:100644 100644 d68430c 8ff19d0 M tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/Makefile -:100644 100644 1537a32 a2ba5e6 M tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/main.fmf -:100644 100644 1340408 7f373fe M tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/Makefile -:100644 100644 084643d 5acd701 M tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/main.fmf -:100755 100755 d1b98f2 8f62380 M tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/runtest.sh -:100644 100644 f24e81c 27b30c5 M tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/Makefile -:100644 100644 778d0c9 826bc25 M tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/main.fmf -:100644 100644 def913a c2f1a7b M tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/Makefile -:100644 100644 0e61467 8f638fa M tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/main.fmf -:100644 100644 04d8273 5cd3985 M tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/Makefile -:100644 100644 f7088d5 fe31611 M tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/main.fmf +:100644 100644 7b745199 77dbeaf4 M tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/Makefile +:100644 100644 26e6f9df d38f404d M tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/main.fmf +:100644 100644 d68430ce 8ff19d05 M tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/Makefile +:100644 100644 1537a321 a2ba5e69 M tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/main.fmf +:100644 100644 13404086 7f373fe5 M tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/Makefile +:100644 100644 084643d4 5acd7018 M tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/main.fmf +:100755 100755 d1b98f22 8f623805 M tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/runtest.sh +:100644 100644 f24e81cd 27b30c53 M tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/Makefile +:100644 100644 778d0c92 826bc251 M tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/main.fmf +:100644 100644 def913a5 c2f1a7bb M tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/Makefile +:100644 100644 0e61467d 8f638fa0 M tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/main.fmf +:100644 100644 04d82732 5cd3985c M tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/Makefile +:100644 100644 f7088d52 fe316118 M tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/main.fmf commit 642430bf8389b2f8590a238aaa6564087635fcde Author: Sergey Kolosov @@ -4890,78 +5010,78 @@ CommitDate: Tue Apr 4 01:55:48 2023 +0200 CI Tests: test coverage improvement -:000000 100644 0000000 3d930e4 A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/Makefile -:000000 100644 0000000 779fa7f A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/PURPOSE -:000000 100644 0000000 973d679 A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/main.fmf -:000000 100644 0000000 8b0ceda A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/o_tmpfile.c -:000000 100755 0000000 ed49a08 A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/runtest.sh -:000000 100644 0000000 be55ec6 A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/Makefile -:000000 100644 0000000 f327055 A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/PURPOSE -:000000 100644 0000000 68c42bd A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/main.fmf -:000000 100755 0000000 9ce516a A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/runtest.sh -:000000 100644 0000000 7b74519 A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/Makefile -:000000 100644 0000000 a41980e A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/PURPOSE -:000000 100644 0000000 4e1d440 A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/bug.c -:000000 100644 0000000 26e6f9d A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/main.fmf -:000000 100755 0000000 5d3d21b A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/runtest.sh -:000000 100644 0000000 7f1b025 A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/Makefile -:000000 100644 0000000 73b2216 A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/PURPOSE -:000000 100644 0000000 c758153 A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/main.fmf -:000000 100755 0000000 576f18b A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/runtest.sh -:000000 100644 0000000 3bb1315 A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/Makefile -:000000 100644 0000000 9a97bda A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/PURPOSE -:000000 100644 0000000 0171c47 A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/main.fmf -:000000 100755 0000000 dfbd53f A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/runtest.sh -:000000 100644 0000000 39e617d A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/Makefile -:000000 100644 0000000 a12cffb A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/PURPOSE -:000000 100644 0000000 c6d635d A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/au-test.c -:000000 100644 0000000 9d850d1 A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/audit.c -:000000 100644 0000000 ff3273f A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/main.fmf -:000000 100755 0000000 9d3cc22 A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/runtest.sh -:000000 100644 0000000 28bbf08 A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/Makefile -:000000 100644 0000000 7b94f6d A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/PURPOSE -:000000 100644 0000000 31302be A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/main.fmf -:000000 100755 0000000 e40714d A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/runtest.sh -:000000 100644 0000000 482a9ab A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/Makefile -:000000 100644 0000000 e727108 A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/PURPOSE -:000000 100644 0000000 692be22 A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/main.fmf -:000000 100755 0000000 1afe812 A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/runtest.sh -:000000 100644 0000000 b7cbe85 A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/tst-libidl.c -:000000 100644 0000000 d68430c A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/Makefile -:000000 100644 0000000 262ea54 A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/PURPOSE -:000000 100644 0000000 5ffe276 A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/m1.stp -:000000 100644 0000000 3c63874 A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/m1_p9.stp -:000000 100644 0000000 1537a32 A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/main.fmf -:000000 100755 0000000 5b08f7d A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/runtest.sh -:000000 100644 0000000 6b89fc0 A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/t.c -:000000 100755 0000000 f8c41c9 A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/trigger.sh -:000000 100644 0000000 1340408 A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/Makefile -:000000 100644 0000000 bc2419e A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/PURPOSE -:000000 100644 0000000 084643d A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/main.fmf -:000000 100755 0000000 d1b98f2 A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/runtest.sh -:000000 100644 0000000 f24e81c A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/Makefile -:000000 100644 0000000 35c0778 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/PURPOSE -:000000 100644 0000000 778d0c9 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/main.fmf -:000000 100755 0000000 948f902 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/runtest.sh -:000000 100644 0000000 974bf98 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/tst.c -:000000 100644 0000000 def913a A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/Makefile -:000000 100644 0000000 fc8e6a5 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/PURPOSE -:000000 100644 0000000 0e61467 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/main.fmf -:000000 100755 0000000 2c9c6dc A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/runtest.sh -:000000 100644 0000000 88d0036 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/tst.c -:000000 100644 0000000 7a49c36 A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/Makefile -:000000 100644 0000000 a137292 A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/PURPOSE -:000000 100644 0000000 68f887d A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/main.fmf -:000000 100755 0000000 672cdfa A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/runtest.sh -:000000 100644 0000000 600ecac A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/tst-falloc.c -:000000 100644 0000000 04d8273 A tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/Makefile -:000000 100644 0000000 b076330 A tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/PURPOSE -:000000 100644 0000000 f7088d5 A tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/main.fmf -:000000 100755 0000000 c232326 A tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/runtest.sh -:000000 100644 0000000 88cef9d A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/Makefile -:000000 100644 0000000 a058fb4 A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/PURPOSE -:000000 100644 0000000 13cda56 A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/main.fmf -:000000 100755 0000000 83b675a A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/runtest.sh +:000000 100644 00000000 3d930e43 A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/Makefile +:000000 100644 00000000 779fa7f3 A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/PURPOSE +:000000 100644 00000000 973d679b A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/main.fmf +:000000 100644 00000000 8b0ceda1 A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/o_tmpfile.c +:000000 100755 00000000 ed49a08b A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/runtest.sh +:000000 100644 00000000 be55ec62 A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/Makefile +:000000 100644 00000000 f327055c A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/PURPOSE +:000000 100644 00000000 68c42bd0 A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/main.fmf +:000000 100755 00000000 9ce516ae A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/runtest.sh +:000000 100644 00000000 7b745199 A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/Makefile +:000000 100644 00000000 a41980ed A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/PURPOSE +:000000 100644 00000000 4e1d440d A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/bug.c +:000000 100644 00000000 26e6f9df A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/main.fmf +:000000 100755 00000000 5d3d21bf A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/runtest.sh +:000000 100644 00000000 7f1b025b A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/Makefile +:000000 100644 00000000 73b22160 A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/PURPOSE +:000000 100644 00000000 c758153f A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/main.fmf +:000000 100755 00000000 576f18ba A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/runtest.sh +:000000 100644 00000000 3bb13151 A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/Makefile +:000000 100644 00000000 9a97bda5 A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/PURPOSE +:000000 100644 00000000 0171c47f A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/main.fmf +:000000 100755 00000000 dfbd53fe A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/runtest.sh +:000000 100644 00000000 39e617d8 A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/Makefile +:000000 100644 00000000 a12cffb6 A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/PURPOSE +:000000 100644 00000000 c6d635df A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/au-test.c +:000000 100644 00000000 9d850d12 A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/audit.c +:000000 100644 00000000 ff3273fd A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/main.fmf +:000000 100755 00000000 9d3cc223 A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/runtest.sh +:000000 100644 00000000 28bbf08e A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/Makefile +:000000 100644 00000000 7b94f6d5 A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/PURPOSE +:000000 100644 00000000 31302be6 A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/main.fmf +:000000 100755 00000000 e40714db A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/runtest.sh +:000000 100644 00000000 482a9ab2 A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/Makefile +:000000 100644 00000000 e7271080 A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/PURPOSE +:000000 100644 00000000 692be22c A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/main.fmf +:000000 100755 00000000 1afe812f A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/runtest.sh +:000000 100644 00000000 b7cbe85f A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/tst-libidl.c +:000000 100644 00000000 d68430ce A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/Makefile +:000000 100644 00000000 262ea54e A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/PURPOSE +:000000 100644 00000000 5ffe276a A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/m1.stp +:000000 100644 00000000 3c63874d A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/m1_p9.stp +:000000 100644 00000000 1537a321 A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/main.fmf +:000000 100755 00000000 5b08f7d1 A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/runtest.sh +:000000 100644 00000000 6b89fc07 A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/t.c +:000000 100755 00000000 f8c41c94 A tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/trigger.sh +:000000 100644 00000000 13404086 A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/Makefile +:000000 100644 00000000 bc2419e7 A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/PURPOSE +:000000 100644 00000000 084643d4 A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/main.fmf +:000000 100755 00000000 d1b98f22 A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/runtest.sh +:000000 100644 00000000 f24e81cd A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/Makefile +:000000 100644 00000000 35c07787 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/PURPOSE +:000000 100644 00000000 778d0c92 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/main.fmf +:000000 100755 00000000 948f9020 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/runtest.sh +:000000 100644 00000000 974bf986 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/tst.c +:000000 100644 00000000 def913a5 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/Makefile +:000000 100644 00000000 fc8e6a53 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/PURPOSE +:000000 100644 00000000 0e61467d A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/main.fmf +:000000 100755 00000000 2c9c6dc6 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/runtest.sh +:000000 100644 00000000 88d00369 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/tst.c +:000000 100644 00000000 7a49c36b A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/Makefile +:000000 100644 00000000 a1372924 A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/PURPOSE +:000000 100644 00000000 68f887d4 A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/main.fmf +:000000 100755 00000000 672cdfa1 A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/runtest.sh +:000000 100644 00000000 600ecaca A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/tst-falloc.c +:000000 100644 00000000 04d82732 A tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/Makefile +:000000 100644 00000000 b076330e A tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/PURPOSE +:000000 100644 00000000 f7088d52 A tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/main.fmf +:000000 100755 00000000 c2323264 A tests/Sanity/bz1915330-glibc-Implement-find-debuginfo-sh-changes-to/runtest.sh +:000000 100644 00000000 88cef9d7 A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/Makefile +:000000 100644 00000000 a058fb42 A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/PURPOSE +:000000 100644 00000000 13cda56a A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/main.fmf +:000000 100755 00000000 83b675aa A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/runtest.sh commit 6fd5c5a43bdfdae28475beaff3758d0a3263fbb9 Author: Arjun Shankar @@ -5001,9 +5121,9 @@ CommitDate: Fri Mar 31 14:23:15 2023 +0200 - ARC: run child from the separate start block in __clone - ARC: Add the clone3 wrapper -:000000 100644 0000000 3f19d15 A glibc-disable-werror-tst-realloc.patch -:100644 100644 c45bf48 c246bdf M glibc.spec -:100644 100644 97dc03f fc5a025 M sources +:000000 100644 00000000 3f19d153 A glibc-disable-werror-tst-realloc.patch +:100644 100644 c45bf480 c246bdfe M glibc.spec +:100644 100644 97dc03f2 fc5a0253 M sources commit 472dcebe5e58f7f9d87fbf86d99cb3bf312c89a7 Author: Martin Cermak @@ -5023,8 +5143,8 @@ CommitDate: Thu Mar 23 20:33:30 2023 +0100 noarch subrpm). The prepare.sh then installs needed i686 packages. -:100644 100644 d81f782 7ebb797 M plans/ci.fmf -:000000 100755 0000000 4746b4b A plans/prepare.sh +:100644 100644 d81f782c 7ebb7970 M plans/ci.fmf +:000000 100755 00000000 4746b4b0 A plans/prepare.sh commit 3a98e957b04458520ebc08e37a4c8f4dfd841e19 Author: Florian Weimer @@ -5057,8 +5177,8 @@ CommitDate: Mon Mar 13 15:56:12 2023 +0100 - posix: Fix system blocks SIGCHLD erroneously [BZ #30163] - gshadow: Matching sgetsgent, sgetsgent_r ERANGE handling (bug 30151) -:100644 100644 8b500dc c45bf48 M glibc.spec -:100644 100644 5ba07b8 97dc03f M sources +:100644 100644 8b500dc2 c45bf480 M glibc.spec +:100644 100644 5ba07b80 97dc03f2 M sources commit c58b5b31bef90b3d45d18c5fe8af3191a1ef54ca Author: DJ Delorie @@ -5084,8 +5204,8 @@ CommitDate: Mon Mar 6 17:24:09 2023 -0500 - hurd: Fix some broken indentation - hurd: Remove the ecx kludge -:100644 100644 4e3f00a 8b500dc M glibc.spec -:100644 100644 82597b6 5ba07b8 M sources +:100644 100644 4e3f00aa 8b500dc2 M glibc.spec +:100644 100644 82597b6d 5ba07b80 M sources commit ae2a2c23ba78f5e463b71b94ae3cdb6a811da204 Author: Carlos O'Donell @@ -5128,8 +5248,8 @@ CommitDate: Wed Mar 1 17:24:10 2023 -0500 - Ignore MAP_VARIABLE in tst-mman-consts.py - AArch64: Fix HP_TIMING_DIFF computation [BZ# 29329] -:100644 100644 ac992d6 4e3f00a M glibc.spec -:100644 100644 d916428 82597b6 M sources +:100644 100644 ac992d66 4e3f00aa M glibc.spec +:100644 100644 d916428f 82597b6d M sources commit d9759bc576d66d03bc47600b7599ace145f571c2 Author: Arjun Shankar @@ -5258,9 +5378,9 @@ CommitDate: Mon Feb 20 21:34:56 2023 +0100 - linux: Do not reset signal handler in posix_spawn if it is already SIG_DFL - Open master branch for glibc 2.38 development -:100644 000000 dc89dc5 0000000 D glibc-printf-grouping-swbz30068.patch -:100644 100644 968d15d ac992d6 M glibc.spec -:100644 100644 15f941c d916428 M sources +:100644 000000 dc89dc5c 00000000 D glibc-printf-grouping-swbz30068.patch +:100644 100644 968d15de ac992d66 M glibc.spec +:100644 100644 15f941c7 d916428f M sources commit 97c044f99aa55f856211be2a8344d5f429c5702b Author: Carlos O'Donell @@ -5286,10 +5406,10 @@ CommitDate: Sat Feb 4 14:23:17 2023 -0500 - Drop already included glibc-dprintf-length.patch patch. - Apply glibc-printf-grouping-swbz30068.patch to fix swbz#30068. -:100644 000000 a75107c 0000000 D glibc-dprintf-length.patch -:000000 100644 0000000 dc89dc5 A glibc-printf-grouping-swbz30068.patch -:100644 100644 3db9305 968d15d M glibc.spec -:100644 100644 4f7c1bb 15f941c M sources +:100644 000000 a75107cd 00000000 D glibc-dprintf-length.patch +:000000 100644 00000000 dc89dc5c A glibc-printf-grouping-swbz30068.patch +:100644 100644 3db93054 968d15de M glibc.spec +:100644 100644 4f7c1bb8 15f941c7 M sources commit f87342d79fa4fb5264dc557fb4bbde1d8ed9ed1a Author: Florian Weimer @@ -5299,7 +5419,7 @@ CommitDate: Tue Jan 31 18:16:37 2023 +0100 Upload sources -:100644 100644 65529ca 4f7c1bb M sources +:100644 100644 65529ca1 4f7c1bb8 M sources commit 5583ed7061b866eb0258c65c7ac783595be8ba0a Author: Florian Weimer @@ -5318,8 +5438,8 @@ CommitDate: Tue Jan 31 17:00:06 2023 +0100 - Apply glibc-dprintf-length.patch to fix dprintf return value regression. -:000000 100644 0000000 a75107c A glibc-dprintf-length.patch -:100644 100644 1d25069 3db9305 M glibc.spec +:000000 100644 00000000 a75107cd A glibc-dprintf-length.patch +:100644 100644 1d25069b 3db93054 M glibc.spec commit 009042dd2468aec38ea43af97dd493126a9b751f Author: Florian Weimer @@ -5350,8 +5470,8 @@ CommitDate: Wed Jan 25 09:14:47 2023 +0100 - AArch64: Optimize memrchr - AArch64: Optimize memchr -:100644 100644 ca97cab 1d25069 M glibc.spec -:100644 100644 6fc7437 65529ca M sources +:100644 100644 ca97caba 1d25069b M glibc.spec +:100644 100644 6fc7437d 65529ca1 M sources commit a37e67f1e127d142cddd776cd1fdfe7cc903b7cb Author: Fedora Release Engineering @@ -5363,10 +5483,10 @@ CommitDate: Thu Jan 19 05:05:08 2023 +0000 Signed-off-by: Fedora Release Engineering -:100644 100644 419f570 ca97cab M glibc.spec +:100644 100644 419f5707 ca97caba M glibc.spec commit 64c7d00676b5ef42411ec62c2c66976e564ea3f6 -Merge: 8a01f7c 7d66195 +Merge: 8a01f7ca 7d661951 Author: Martin Cermak AuthorDate: Wed Jan 18 16:46:03 2023 +0000 Commit: Martin Cermak @@ -5374,18 +5494,18 @@ CommitDate: Wed Jan 18 16:46:03 2023 +0000 Merge #67 `CI Tests: updates old test cases to use actual beakerlib functions` -:100644 100644 7a2f403 c5f2a74 M tests/Regression/bz434601-timedlock-segfault/main.fmf -:100644 100644 55f1868 da5ba66 M tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/main.fmf -:100755 100755 01236c4 ace7e3e M tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/runtest.sh -:100644 100644 d2ec82f 406212c M tests/Regression/bz464146-sp-corruption/main.fmf -:100755 100755 3a39322 b511b7d M tests/Regression/bz464146-sp-corruption/runtest.sh -:100644 100644 54bf74b ad58ed9 M tests/Regression/bz464146-sp-corruption/testit.c -:100644 100644 33e75f0 a932407 M tests/Regression/bz471298-pthread_cond/main.fmf -:100755 100755 a5cc1ce a8a952f M tests/Regression/bz471298-pthread_cond/runtest.sh -:100644 100644 8ac3fc8 5724e3b M tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/main.fmf -:100644 100644 1919744 3897b03 M tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/main.fmf -:100644 100644 b0e1665 0296162 M tests/Regression/expf-gives-infinity-where-result-finite/main.fmf -:100644 100644 e644373 84ad97b M tests/Regression/setvbuf-to-full-not-working/main.fmf +:100644 100644 7a2f403b c5f2a74e M tests/Regression/bz434601-timedlock-segfault/main.fmf +:100644 100644 55f1868a da5ba668 M tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/main.fmf +:100755 100755 01236c40 ace7e3e4 M tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/runtest.sh +:100644 100644 d2ec82f2 406212cd M tests/Regression/bz464146-sp-corruption/main.fmf +:100755 100755 3a393221 b511b7d9 M tests/Regression/bz464146-sp-corruption/runtest.sh +:100644 100644 54bf74be ad58ed9b M tests/Regression/bz464146-sp-corruption/testit.c +:100644 100644 33e75f0b a9324073 M tests/Regression/bz471298-pthread_cond/main.fmf +:100755 100755 a5cc1ce2 a8a952ff M tests/Regression/bz471298-pthread_cond/runtest.sh +:100644 100644 8ac3fc80 5724e3b9 M tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/main.fmf +:100644 100644 19197448 3897b030 M tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/main.fmf +:100644 100644 b0e1665f 0296162b M tests/Regression/expf-gives-infinity-where-result-finite/main.fmf +:100644 100644 e6443731 84ad97b3 M tests/Regression/setvbuf-to-full-not-working/main.fmf commit 8a01f7cacb7ac2b8f6788f6f5ede703aeae1eb78 Author: Florian Weimer @@ -5403,8 +5523,8 @@ CommitDate: Tue Jan 17 10:01:24 2023 +0100 - scripts/build-many-glibcs.py: Remove unused RANLIB and STRIP option - configure: Move nm, objdump, and readelf to LIBC_PROG_BINUTILS -:100644 100644 2e25450 419f570 M glibc.spec -:100644 100644 ba48d3f 6fc7437 M sources +:100644 100644 2e254508 419f5707 M glibc.spec +:100644 100644 ba48d3f3 6fc7437d M sources commit d000e6b3e679f3fbdeaa8de1087cbda4767ab199 Author: Patsy Griffin @@ -5432,9 +5552,9 @@ CommitDate: Wed Jan 11 22:26:53 2023 -0500 - x86: Check minimum/maximum of non_temporal_threshold [BZ #29953] - i686: Regenerate ulps -:100644 100644 16717a0 7328fc8 M glibc-python3.patch -:100644 100644 9ef1a1c 2e25450 M glibc.spec -:100644 100644 bd31df3 ba48d3f M sources +:100644 100644 16717a09 7328fc8b M glibc-python3.patch +:100644 100644 9ef1a1ce 2e254508 M glibc.spec +:100644 100644 bd31df33 ba48d3f3 M sources commit 2ceebf21f1da4706b8244c4da58f93c6f7c778b3 Author: Arjun Shankar @@ -5479,9 +5599,9 @@ CommitDate: Mon Jan 2 14:17:02 2023 +0100 - Use Linux 6.1 in build-many-glibcs.py - Avoid use of atoi in some places in libc -:100644 000000 5bc2336 0000000 D glibc-rh2155825.patch -:100644 100644 236bfc7 9ef1a1c M glibc.spec -:100644 100644 951eaa2 bd31df3 M sources +:100644 000000 5bc23364 00000000 D glibc-rh2155825.patch +:100644 100644 236bfc75 9ef1a1ce M glibc.spec +:100644 100644 951eaa27 bd31df33 M sources commit b12aa3c1f165415a36f75a79eaa99909458d43f0 Author: Martin Cermak @@ -5491,7 +5611,7 @@ CommitDate: Thu Dec 22 20:53:44 2022 +0100 tests: FMF - fix deprecated beakerlib attribute -:100644 100644 d52cc9b d81f782 M plans/ci.fmf +:100644 100644 d52cc9b3 d81f782c M plans/ci.fmf commit c3dda3d423c48890158efcf37acb3328d2b04c30 Author: Florian Weimer @@ -5501,8 +5621,8 @@ CommitDate: Thu Dec 22 17:23:51 2022 +0100 Fix epoll_create regression (#2155825) -:000000 100644 0000000 5bc2336 A glibc-rh2155825.patch -:100644 100644 14cb817 236bfc7 M glibc.spec +:000000 100644 00000000 5bc23364 A glibc-rh2155825.patch +:100644 100644 14cb8176 236bfc75 M glibc.spec commit 4024998b40c341f18208022a7475dc380053d92f Author: Florian Weimer @@ -5523,8 +5643,8 @@ CommitDate: Mon Dec 19 13:32:55 2022 +0100 - x86: Prevent SIGSEGV in memcmp-sse2 when data is concurrently modified [BZ #29863] - Allow _Qp_fgt in sparc64 localplt.data -:100644 100644 141815e 14cb817 M glibc.spec -:100644 100644 3daa8c4 951eaa2 M sources +:100644 100644 141815ef 14cb8176 M glibc.spec +:100644 100644 3daa8c4b 951eaa27 M sources commit 36c95d06a5307a72b85606ec3e68f89366ada45c Author: DJ Delorie @@ -5574,8 +5694,8 @@ CommitDate: Mon Dec 12 23:54:54 2022 -0500 - configure: Remove check if as is GNU - configure: Move locale tools early -:100644 100644 6935d99 141815e M glibc.spec -:100644 100644 4411ab7 3daa8c4 M sources +:100644 100644 6935d997 141815ef M glibc.spec +:100644 100644 4411ab7f 3daa8c4b M sources commit 1e3db499d665ad2158f0610ed9503e8176a3cfa8 Author: Arjun Shankar @@ -5605,8 +5725,8 @@ CommitDate: Mon Dec 5 17:09:03 2022 +0100 - Use GCC builtins for lrint functions if desired. - LoongArch: Use __builtin_rint{,f} with GCC >= 13 -:100644 100644 34f481e 6935d99 M glibc.spec -:100644 100644 06bfdce 4411ab7 M sources +:100644 100644 34f481eb 6935d997 M glibc.spec +:100644 100644 06bfdced 4411ab7f M sources commit bbbda714f9a500ea89a9ceafda14c6e733f7a7e2 Author: Florian Weimer @@ -5628,8 +5748,8 @@ CommitDate: Mon Nov 28 08:11:24 2022 +0100 - elf: Fix rtld-audit trampoline for aarch64 - Define in_int32_t_range to check if the 64 bit time_t syscall should be used -:100644 100644 7524263 34f481e M glibc.spec -:100644 100644 d54c6a1 06bfdce M sources +:100644 100644 7524263c 34f481eb M glibc.spec +:100644 100644 d54c6a1f 06bfdced M sources commit 7a70647c2176ff3e15e98a4b2f8713bbf17cfbd5 Author: Arjun Shankar @@ -5650,8 +5770,8 @@ CommitDate: Mon Nov 14 15:56:37 2022 +0100 - LoongArch: Hard Float Support for float-point classification functions. - LoongArch: Use __builtin_{fma, fmaf} to implement function {fma, fmaf}. -:100644 100644 28a932f 7524263 M glibc.spec -:100644 100644 5580d13 d54c6a1 M sources +:100644 100644 28a932f9 7524263c M glibc.spec +:100644 100644 5580d131 d54c6a1f M sources commit c22dc5e2f0c7374839521caf8bb5206afe0f7c4d Author: Florian Weimer @@ -5679,8 +5799,8 @@ CommitDate: Thu Nov 10 21:43:41 2022 +0100 - Linux: Add ppoll fortify symbol for 64 bit time_t (BZ# 29746) - hurd: Add sigtimedwait and sigwaitinfo support -:100644 100644 2e8ce98 28a932f M glibc.spec -:100644 100644 4e56933 5580d13 M sources +:100644 100644 2e8ce98b 28a932f9 M glibc.spec +:100644 100644 4e569332 5580d131 M sources commit 1f9fbacd82427f99e6c147c4b67a6baa2097cc92 Author: DJ Delorie @@ -5735,8 +5855,8 @@ CommitDate: Mon Nov 7 16:46:05 2022 -0500 - scripts: Use bool in tunables initializer - longlong.h: update from GCC for LoongArch clz/ctz support -:100644 100644 a145bbc 2e8ce98 M glibc.spec -:100644 100644 7c0ca52 4e56933 M sources +:100644 100644 a145bbc4 2e8ce98b M glibc.spec +:100644 100644 7c0ca527 4e569332 M sources commit 84cb4d0635e44d0b23d42692918a0eac7c2a38f8 Author: Patsy Griffin @@ -5833,8 +5953,8 @@ CommitDate: Thu Oct 27 15:03:13 2022 -0400 - x86: Cleanup pthread_spin_{try}lock.S - Benchtests: Add bench for pthread_spin_{try}lock and mutex_trylock -:100644 100644 3f83130 a145bbc M glibc.spec -:100644 100644 e2bb917 7c0ca52 M sources +:100644 100644 3f83130c a145bbc4 M glibc.spec +:100644 100644 e2bb9173 7c0ca527 M sources commit 1cd731cf293a236f70ed6d54ff711d6a1342a3d3 Author: Carlos O'Donell @@ -5846,7 +5966,7 @@ CommitDate: Mon Oct 17 15:13:38 2022 -0400 Resolves: #2129358 -:100644 100644 3f4f15b 3f83130 M glibc.spec +:100644 100644 3f4f15b6 3f83130c M glibc.spec commit d4efcab16d846fa50758ab54bca55dd5a48be37c Author: DJ Delorie @@ -5874,8 +5994,8 @@ CommitDate: Mon Oct 3 14:40:27 2022 -0400 - hurd: Increase SOMAXCONN to 4096 - Use atomic_exchange_release/acquire -:100644 100644 52700b1 3f4f15b M glibc.spec -:100644 100644 5db70a9 e2bb917 M sources +:100644 100644 52700b17 3f4f15b6 M glibc.spec +:100644 100644 5db70a92 e2bb9173 M sources commit 464d5f14a2e08553f7c59e8154a1b70a199149e3 Author: Patsy Griffin @@ -5922,8 +6042,8 @@ CommitDate: Sat Sep 24 23:14:57 2022 -0400 - Makerules: fix MAKEFLAGS assignment for upcoming make-4.4 [BZ# 29564] - Use relaxed atomics since there is no MO dependence -:100644 100644 d02885d 52700b1 M glibc.spec -:100644 100644 16a2d7b 5db70a9 M sources +:100644 100644 d02885d8 52700b17 M glibc.spec +:100644 100644 16a2d7b1 5db70a92 M sources commit 4c6fa526bfbde7e4f5750635d973f329eb57c49c Author: Florian Weimer @@ -5933,7 +6053,7 @@ CommitDate: Fri Sep 23 10:01:43 2022 +0200 Do not require .annobin symbols in wrap-find-debuginfo.sh -:100644 100644 42b3609 d26f8eb M wrap-find-debuginfo.sh +:100644 100644 42b36097 d26f8ebc M wrap-find-debuginfo.sh commit aa0d1b7d9ff3f53afa55b9dead8e346818f6645f Author: Florian Weimer @@ -5943,7 +6063,7 @@ CommitDate: Wed Sep 14 14:00:17 2022 +0200 Bump release -:100644 100644 0e74f08 d02885d M glibc.spec +:100644 100644 0e74f082 d02885d8 M glibc.spec commit b400cead416e03ca9c1a2965d6aa0addf658eac9 Author: Florian Weimer @@ -5953,8 +6073,8 @@ CommitDate: Wed Sep 14 13:59:13 2022 +0200 Remove .annobin* symbols from ld.so (#2126477) -:100644 100644 1a6f107 0e74f08 M glibc.spec -:100644 100644 6b9a835 42b3609 M wrap-find-debuginfo.sh +:100644 100644 1a6f1075 0e74f082 M glibc.spec +:100644 100644 6b9a835f 42b36097 M wrap-find-debuginfo.sh commit 6c1768439264ddc8b2900cba1a71e0f06bbd2cd9 Author: Florian Weimer @@ -5966,7 +6086,7 @@ CommitDate: Wed Sep 14 12:25:33 2022 +0200 This avoids the need for separate variables for all files. -:100644 100644 3157d69 6b9a835 M wrap-find-debuginfo.sh +:100644 100644 3157d69e 6b9a835f M wrap-find-debuginfo.sh commit 885b520a6d06ff6796c9de465fea604d7509627f Author: Florian Weimer @@ -6003,9 +6123,9 @@ CommitDate: Tue Sep 13 13:20:15 2022 +0200 - elf: Restore how vDSO dependency is printed with LD_TRACE_LOADED_OBJECTS (BZ #29539) - nptl: x86_64: Use same code for CURRENT_STACK_FRAME and stackinfo_get_sp -:100644 000000 c762d02 0000000 D glibc-deprecated-selinux-makedb.patch -:100644 100644 089249d 1a6f107 M glibc.spec -:100644 100644 7999978 16a2d7b M sources +:100644 000000 c762d024 00000000 D glibc-deprecated-selinux-makedb.patch +:100644 100644 089249d5 1a6f1075 M glibc.spec +:100644 100644 79999787 16a2d7b1 M sources commit 8e2d77f7341a666f743f96c6b378b36ea7539ae1 Author: Arjun Shankar @@ -6022,8 +6142,8 @@ CommitDate: Mon Sep 5 16:24:44 2022 +0200 Co-Authored-By: Benjamin Herrenschmidt Reviewed-by: Florian Weimer -:100644 100644 4eb4491 089249d M glibc.spec -:100644 100644 6a558df 3157d69 M wrap-find-debuginfo.sh +:100644 100644 4eb44914 089249d5 M glibc.spec +:100644 100644 6a558df9 3157d69e M wrap-find-debuginfo.sh commit cfb27906580179b3f7fc07453d7b220f36ac1cd4 Author: DJ Delorie @@ -6077,8 +6197,8 @@ CommitDate: Tue Aug 30 17:21:40 2022 -0400 - htl: make __pthread_hurd_cond_timedwait_internal check mutex is held - Add AArch64 HWCAP2_* constants from Linux 5.19 -:100644 100644 7dd4298 4eb4491 M glibc.spec -:100644 100644 5facfea 7999978 M sources +:100644 100644 7dd42989 4eb44914 M glibc.spec +:100644 100644 5facfea0 79999787 M sources commit 318ee02db83a513bf77985f1dd4c0c1b769ec58c Author: Arjun Shankar @@ -6094,8 +6214,8 @@ CommitDate: Mon Aug 22 16:28:04 2022 +0200 - alpha: Fix generic brk system call emulation in __brk_call (bug 29490) - hurd: Assume non-suid during bootstrap -:100644 100644 262e6b0 7dd4298 M glibc.spec -:100644 100644 efb1c65 5facfea M sources +:100644 100644 262e6b03 7dd42989 M glibc.spec +:100644 100644 efb1c65b 5facfea0 M sources commit c6f93d2f6d2d72a2148aeabf1c96c3e3634374a4 Author: Patsy Griffin @@ -6118,8 +6238,8 @@ CommitDate: Thu Aug 18 15:19:38 2022 -0400 - Linux: Terminate subprocess on late failure in tst-pidfd (bug 29485) - non-linux: bits/in.h: Add more RFC options -:100644 100644 b3bb731 262e6b0 M glibc.spec -:100644 100644 31721a7 efb1c65 M sources +:100644 100644 b3bb7317 262e6b03 M glibc.spec +:100644 100644 31721a77 efb1c65b M sources commit 6c465d0ed73efaf15e9f8a60254c5d914c53c60d Author: Florian Weimer @@ -6129,8 +6249,8 @@ CommitDate: Mon Aug 15 07:24:44 2022 +0200 Rotate changelog -:100644 100644 a0b9a7f c927cc3 M ChangeLog.old -:100644 100644 8437d5b b3bb731 M glibc.spec +:100644 100644 a0b9a7f9 c927cc3b M ChangeLog.old +:100644 100644 8437d5bd b3bb7317 M glibc.spec commit ae30d62333ba0c18ee2cf1a39de04185a4422823 Author: Florian Weimer @@ -6183,8 +6303,8 @@ CommitDate: Mon Aug 15 07:24:29 2022 +0200 - Remove spurious references to _dl_open_hook - Open master branch for glibc 2.37 development -:100644 100644 9a7db4f 8437d5b M glibc.spec -:100644 100644 287b44f 31721a7 M sources +:100644 100644 9a7db4fa 8437d5bd M glibc.spec +:100644 100644 287b44fd 31721a77 M sources commit f6ffd5842484e2c2204b09048eb40606ba211410 Author: Carlos O'Donell @@ -6212,8 +6332,8 @@ CommitDate: Fri Aug 5 10:24:15 2022 -0400 No regressions seen in mass-prebuild of critical-path-base packages. -:100644 100644 8a7f9ab 9a7db4f M glibc.spec -:100644 100644 71e6ed4 287b44f M sources +:100644 100644 8a7f9ab9 9a7db4fa M glibc.spec +:100644 100644 71e6ed42 287b44fd M sources commit 78f6644069c08f40c8cada064ba73dcfc707b627 Author: Arjun Shankar @@ -6255,8 +6375,8 @@ CommitDate: Wed Jul 27 15:50:14 2022 +0200 - Update scripts/config.* files from upstream GNU config version - linux: return UNSUPPORTED from tst-mount if entering mount namespace fails -:100644 100644 38b37c2 8a7f9ab M glibc.spec -:100644 100644 f0ccc7a 71e6ed4 M sources +:100644 100644 38b37c25 8a7f9ab9 M glibc.spec +:100644 100644 f0ccc7aa 71e6ed42 M sources commit 7573b35683d83b03642f7cdbc4dc54018f1f13aa Author: Arjun Shankar @@ -6266,7 +6386,7 @@ CommitDate: Mon Jul 25 10:49:18 2022 +0200 Drop unused patch: glibc-swbz27087.patch -:100644 000000 22dbee9 0000000 D glibc-swbz27087.patch +:100644 000000 22dbee9f 00000000 D glibc-swbz27087.patch commit 6501ce7544025aa1f99b54debf9032381cbe9bee Author: Fedora Release Engineering @@ -6278,7 +6398,7 @@ CommitDate: Thu Jul 21 06:26:14 2022 +0000 Signed-off-by: Fedora Release Engineering -:100644 100644 b7882db 38b37c2 M glibc.spec +:100644 100644 b7882db3 38b37c25 M glibc.spec commit 8cafb3e46452506dfb8abeb2909b4c0b826dbe68 Author: Patsy Griffin @@ -6336,11 +6456,11 @@ CommitDate: Sun Jul 17 23:02:38 2022 -0400 - AArch64: Reset HWCAP2_AFP bits in FPCR for default fenv - elf: Fix direction of NODELETE log messages during symbol lookup -:100644 100644 d89def9 b7882db M glibc.spec -:100644 100644 f345250 f0ccc7a M sources +:100644 100644 d89def90 b7882db3 M glibc.spec +:100644 100644 f3452501 f0ccc7aa M sources commit 6d8015208736dd4b494a329b3f025217c858915f -Merge: bcd58c2 3c29e12 +Merge: bcd58c23 3c29e122 Author: Florian Weimer AuthorDate: Fri Jul 15 07:11:46 2022 +0000 Commit: Florian Weimer @@ -6348,67 +6468,67 @@ CommitDate: Fri Jul 15 07:11:46 2022 +0000 Merge #61 `Added tags to main.fmf files as described in tcms` -:100644 100644 948e5ee 8684e0a M tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/main.fmf -:100644 100644 ffa3c96 7a2f403 M tests/Regression/bz434601-timedlock-segfault/main.fmf -:100644 100644 f19de8a 55f1868 M tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/main.fmf -:100644 100644 14062ed d2ec82f M tests/Regression/bz464146-sp-corruption/main.fmf -:100644 100644 8c75741 33e75f0 M tests/Regression/bz471298-pthread_cond/main.fmf -:100644 100644 b0edcfa 0978e0b M tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/main.fmf -:100644 100644 8fc25dd 8ac3fc8 M tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/main.fmf -:100644 100644 c5373ef 2f06afa M tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/main.fmf -:100644 100644 ad867f2 1919744 M tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/main.fmf -:100644 100644 b38df20 b1cde56 M tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/main.fmf -:100644 100644 84b876b 9cd0fec M tests/Regression/bz529997-sem_timedwait-with-invalid-time/main.fmf -:100644 100644 5f0a155 f019508 M tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/main.fmf -:100644 100644 b994a20 f786b6d M tests/Regression/bz549813-dl-close-race-with-C-destructor/main.fmf -:100644 100644 22c0cdf f626d62 M tests/Regression/bz566712-aio-write-ll-corruption/main.fmf -:100644 100644 28f004f 296eb4d M tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/main.fmf -:100644 100644 fc9765f c8a2b1a M tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/main.fmf -:100644 100644 fea4212 b0a168c M tests/Regression/bz585674-free-race-in-mcheck-hooks/main.fmf -:100644 100644 da6468f 1be8ea5 M tests/Regression/bz587360-digraph-matching-differs-across-archs/main.fmf -:100644 100644 5af78b1 beddb06 M tests/Regression/bz600457-locally-defined-symbol-resolving-failure/main.fmf -:100644 100644 1b55a3d 662e657 M tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/main.fmf -:100644 100644 6d91228 b387040 M tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/main.fmf -:100644 100644 c5cc62a 36bfc09 M tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/main.fmf -:100644 100644 499e473 695d1ad M tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/main.fmf -:100644 100644 c62404d 800812b M tests/Regression/bz689471-SSE4-strncmp-failure/main.fmf -:100644 100644 477bc40 5120de1 M tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/main.fmf -:100644 100644 9572be9 c3e271f M tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/main.fmf -:100644 100644 471e141 c134d97 M tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/main.fmf -:100644 100644 c364430 76a3d9b M tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/main.fmf -:100644 100644 c5ba4b9 7098910 M tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/main.fmf -:100644 100644 7e9ae71 88f16cd M tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/main.fmf -:100644 100644 ef8b6af 299c175 M tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/main.fmf -:100644 100644 88a4233 6cfc0c7 M tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/main.fmf -:100644 100644 d82707a 5115794 M tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/main.fmf -:100644 100644 c71bef7 5159507 M tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/main.fmf -:100644 100644 1754c58 58407ec M tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/main.fmf -:100644 100644 cef249d 8e3cb3c M tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/main.fmf -:100644 100644 a0bdad8 24ac144 M tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/main.fmf -:100644 100644 953e121 4768245 M tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/main.fmf -:100644 100644 484c16c 1177cab M tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/main.fmf -:100644 100644 2584dee 25594e5 M tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/main.fmf -:100644 100644 13f11b6 cc9f6b1 M tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/main.fmf -:100644 100644 798b1b4 fc4be7c M tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/main.fmf -:100644 100644 e242d2d 32151d0 M tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/main.fmf -:100644 100644 10a5909 d5414e3 M tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/main.fmf -:100644 100644 026f897 15fabe7 M tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/main.fmf -:100644 100644 85c05f6 cf595ca M tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/main.fmf -:100644 100644 448b0f9 5da1c22 M tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/main.fmf -:100644 100644 cc6041f c88d3fd M tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/main.fmf -:100644 100644 58916e4 95556a7 M tests/Regression/bz868808-backtrace-for-recursive-functions/main.fmf -:100644 100644 0c4fa47 c971eb1 M tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/main.fmf -:100644 100644 26f01c8 518278c M tests/Regression/bz916986-MAP_HUGETLB_support/main.fmf -:100644 100644 4d90b56 d56402d M tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/main.fmf -:100644 100644 32211fc 2b05726 M tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/main.fmf -:100644 100644 af92d0d 7261ef4 M tests/Regression/double_free_exploit/main.fmf -:100644 100644 30c04ab b0e1665 M tests/Regression/expf-gives-infinity-where-result-finite/main.fmf -:100644 100644 1812348 5974203 M tests/Regression/fallocate_156289/main.fmf -:100644 100644 f082804 e644373 M tests/Regression/setvbuf-to-full-not-working/main.fmf -:100644 100644 8ae8f82 75bd5d8 M tests/Sanity/basic-linking-sanity/main.fmf -:100644 100644 0000dcb 3b23534 M tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/main.fmf -:100644 100644 8a475c4 99dc45e M tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/main.fmf -:100644 100644 63aae5d 81e18a2 M tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/main.fmf +:100644 100644 948e5eec 8684e0a4 M tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/main.fmf +:100644 100644 ffa3c961 7a2f403b M tests/Regression/bz434601-timedlock-segfault/main.fmf +:100644 100644 f19de8a3 55f1868a M tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/main.fmf +:100644 100644 14062edb d2ec82f2 M tests/Regression/bz464146-sp-corruption/main.fmf +:100644 100644 8c75741f 33e75f0b M tests/Regression/bz471298-pthread_cond/main.fmf +:100644 100644 b0edcfa9 0978e0b0 M tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/main.fmf +:100644 100644 8fc25dd1 8ac3fc80 M tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/main.fmf +:100644 100644 c5373ef1 2f06afa8 M tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/main.fmf +:100644 100644 ad867f2b 19197448 M tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/main.fmf +:100644 100644 b38df200 b1cde56c M tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/main.fmf +:100644 100644 84b876b6 9cd0fec1 M tests/Regression/bz529997-sem_timedwait-with-invalid-time/main.fmf +:100644 100644 5f0a1556 f0195088 M tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/main.fmf +:100644 100644 b994a204 f786b6d6 M tests/Regression/bz549813-dl-close-race-with-C-destructor/main.fmf +:100644 100644 22c0cdf4 f626d62d M tests/Regression/bz566712-aio-write-ll-corruption/main.fmf +:100644 100644 28f004f5 296eb4d5 M tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/main.fmf +:100644 100644 fc9765ff c8a2b1af M tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/main.fmf +:100644 100644 fea4212f b0a168c4 M tests/Regression/bz585674-free-race-in-mcheck-hooks/main.fmf +:100644 100644 da6468fc 1be8ea54 M tests/Regression/bz587360-digraph-matching-differs-across-archs/main.fmf +:100644 100644 5af78b18 beddb060 M tests/Regression/bz600457-locally-defined-symbol-resolving-failure/main.fmf +:100644 100644 1b55a3db 662e6574 M tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/main.fmf +:100644 100644 6d91228c b3870402 M tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/main.fmf +:100644 100644 c5cc62a9 36bfc09f M tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/main.fmf +:100644 100644 499e4735 695d1ad5 M tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/main.fmf +:100644 100644 c62404d4 800812b8 M tests/Regression/bz689471-SSE4-strncmp-failure/main.fmf +:100644 100644 477bc403 5120de12 M tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/main.fmf +:100644 100644 9572be94 c3e271fb M tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/main.fmf +:100644 100644 471e141a c134d97a M tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/main.fmf +:100644 100644 c364430e 76a3d9b5 M tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/main.fmf +:100644 100644 c5ba4b9e 70989105 M tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/main.fmf +:100644 100644 7e9ae718 88f16cd2 M tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/main.fmf +:100644 100644 ef8b6af4 299c1753 M tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/main.fmf +:100644 100644 88a42335 6cfc0c7f M tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/main.fmf +:100644 100644 d82707ae 51157943 M tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/main.fmf +:100644 100644 c71bef72 51595071 M tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/main.fmf +:100644 100644 1754c58a 58407ec4 M tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/main.fmf +:100644 100644 cef249df 8e3cb3c6 M tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/main.fmf +:100644 100644 a0bdad88 24ac1442 M tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/main.fmf +:100644 100644 953e121f 47682453 M tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/main.fmf +:100644 100644 484c16c8 1177cabe M tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/main.fmf +:100644 100644 2584deed 25594e56 M tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/main.fmf +:100644 100644 13f11b68 cc9f6b1f M tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/main.fmf +:100644 100644 798b1b46 fc4be7c1 M tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/main.fmf +:100644 100644 e242d2d1 32151d0a M tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/main.fmf +:100644 100644 10a59091 d5414e39 M tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/main.fmf +:100644 100644 026f8975 15fabe75 M tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/main.fmf +:100644 100644 85c05f6d cf595caa M tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/main.fmf +:100644 100644 448b0f9d 5da1c22e M tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/main.fmf +:100644 100644 cc6041fe c88d3fdf M tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/main.fmf +:100644 100644 58916e43 95556a7e M tests/Regression/bz868808-backtrace-for-recursive-functions/main.fmf +:100644 100644 0c4fa47f c971eb1d M tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/main.fmf +:100644 100644 26f01c8b 518278cf M tests/Regression/bz916986-MAP_HUGETLB_support/main.fmf +:100644 100644 4d90b568 d56402de M tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/main.fmf +:100644 100644 32211fca 2b057261 M tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/main.fmf +:100644 100644 af92d0d0 7261ef46 M tests/Regression/double_free_exploit/main.fmf +:100644 100644 30c04abc b0e1665f M tests/Regression/expf-gives-infinity-where-result-finite/main.fmf +:100644 100644 1812348a 59742031 M tests/Regression/fallocate_156289/main.fmf +:100644 100644 f0828049 e6443731 M tests/Regression/setvbuf-to-full-not-working/main.fmf +:100644 100644 8ae8f82b 75bd5d8f M tests/Sanity/basic-linking-sanity/main.fmf +:100644 100644 0000dcbb 3b235341 M tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/main.fmf +:100644 100644 8a475c4b 99dc45e6 M tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/main.fmf +:100644 100644 63aae5d3 81e18a2a M tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/main.fmf commit bcd58c23a3ccd227d5cd79efb82e367e5b94d990 Author: Sergey Kolosov @@ -6418,7 +6538,7 @@ CommitDate: Tue Jul 12 21:19:22 2022 +0200 CI Tests: removes redundant check for libstdc++.i686 in bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has testcase -:100755 100755 757b896 d36bb2d M tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/runtest.sh +:100755 100755 757b896d d36bb2d4 M tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/runtest.sh commit 8859e9a9beed881b44942c5e728cdad939f6f94e Author: Sergey Kolosov @@ -6428,7 +6548,7 @@ CommitDate: Tue Jul 12 20:57:52 2022 +0200 CI Tests: adds check for i686 packages in bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has testcase -:100755 100755 f6c6e2e 757b896 M tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/runtest.sh +:100755 100755 f6c6e2e2 757b896d M tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/runtest.sh commit 1bfc6912f16a07dd939a5803d8bdf7c5afb2c0ac Author: Stephen Gallagher @@ -6447,7 +6567,7 @@ CommitDate: Fri Jul 8 13:48:36 2022 +0200 Signed-off-by: Stephen Gallagher -:100644 100644 89f0d3a d89def9 M glibc.spec +:100644 100644 89f0d3a2 d89def90 M glibc.spec commit 70cb41fd34c50170800c50161dccad9a1cce78d3 Author: Florian Weimer @@ -6457,8 +6577,8 @@ CommitDate: Tue Jul 5 12:17:25 2022 +0200 ppc64le: Increase Clang compatibility of float128 redirects (#2100546) -:000000 100644 0000000 22dbee9 A glibc-swbz27087.patch -:100644 100644 0003e2d 89f0d3a M glibc.spec +:000000 100644 00000000 22dbee9f A glibc-swbz27087.patch +:100644 100644 0003e2d2 89f0d3a2 M glibc.spec commit 5d92a617116c5947de3a74bff79f0b0f4ebc20c7 Author: Florian Weimer @@ -6480,8 +6600,8 @@ CommitDate: Tue Jul 5 11:07:58 2022 +0200 - locale: Turn ADDC and ADDS into functions in linereader.c - libc-symbols.h: remove unused macros -:100644 100644 242dec4 0003e2d M glibc.spec -:100644 100644 7c2e0ae f345250 M sources +:100644 100644 242dec48 0003e2d2 M glibc.spec +:100644 100644 7c2e0aee f3452501 M sources commit 5c27a7014bb874375c19f0036c065ce645a39786 Author: Florian Weimer @@ -6493,8 +6613,8 @@ CommitDate: Tue Jul 5 11:03:37 2022 +0200 egrep will start to warn in the next coreutils release. -:100644 100644 9fb7f76 b82c5a1 M glibc.req.in -:100644 100644 83ed24b 242dec4 M glibc.spec +:100644 100644 9fb7f768 b82c5a1c M glibc.req.in +:100644 100644 83ed24b6 242dec48 M glibc.spec commit 9d11138b6b1c0f57d9bb615935362c4bf277eb5a Author: Florian Weimer @@ -6506,7 +6626,7 @@ CommitDate: Tue Jul 5 11:03:37 2022 +0200 This is in support of a potential performance experiment. -:100644 100644 da254cc 83ed24b M glibc.spec +:100644 100644 da254ccc 83ed24b6 M glibc.spec commit f83c4f6ffc07d0d0b4251b193b0d69af00174006 Author: Carlos O'Donell @@ -6538,8 +6658,8 @@ CommitDate: Mon Jul 4 15:08:51 2022 -0400 - Linux: Forward declaration of struct iovec for process_madvise - x86: Add more feature definitions to isa-level.h -:100644 100644 0a51b8b da254cc M glibc.spec -:100644 100644 87d61ce 7c2e0ae M sources +:100644 100644 0a51b8b9 da254ccc M glibc.spec +:100644 100644 87d61ceb 7c2e0aee M sources commit 0ce81051557ca45e2927de91b8dc7cc9557caa30 Author: DJ Delorie @@ -6551,7 +6671,7 @@ CommitDate: Wed Jun 29 16:59:29 2022 -0400 Bumped NVR to rerun CI/CD against fixed regression test. -:100644 100644 5ce08ed 0a51b8b M glibc.spec +:100644 100644 5ce08ed5 0a51b8b9 M glibc.spec commit 856fa5a570c323751d0a37538bf5aa53231887ca Author: Sergey Kolosov @@ -6561,7 +6681,7 @@ CommitDate: Wed Jun 29 15:47:28 2022 +0200 CI Tests: Fix python syntax in bz699724 testcase -:100644 100644 05eac95 27b02bc M tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/test_crypt.py +:100644 100644 05eac95d 27b02bca M tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/test_crypt.py commit d760d0071f0e270ef8185fc305cf1f5b3fe27ca9 Author: DJ Delorie @@ -6603,8 +6723,8 @@ CommitDate: Tue Jun 28 17:30:04 2022 -0400 - s390: use LC_ALL=C for readelf call - s390: use $READELF -:100644 100644 896369c 5ce08ed M glibc.spec -:100644 100644 cf64205 87d61ce M sources +:100644 100644 896369cd 5ce08ed5 M glibc.spec +:100644 100644 cf64205c 87d61ceb M sources commit 4dd3af9227e79cefcd25f46d83c80ca0c4dbfdd1 Author: Arjun Shankar @@ -6643,8 +6763,8 @@ CommitDate: Mon Jun 20 17:20:35 2022 +0200 - x86: Align varshift table to 32-bytes - x86: Add copyright to strpbrk-c.c -:100644 100644 a2c6daa 896369c M glibc.spec -:100644 100644 344f359 cf64205 M sources +:100644 100644 a2c6daac 896369cd M glibc.spec +:100644 100644 344f359e cf64205c M sources commit f07781018c059131e75a09205699081c0df814e7 Author: Luigi Pellecchia @@ -6654,17 +6774,17 @@ CommitDate: Mon Jun 13 15:43:02 2022 +0200 CI tests: Fix testcase requirements -:100644 100644 8dcda7d b0edcfa M tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/main.fmf -:100644 100644 4599d31 c5373ef M tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/main.fmf -:100644 100644 dccf27b 84b876b M tests/Regression/bz529997-sem_timedwait-with-invalid-time/main.fmf -:100755 100755 21ae171 5dcfd22 M tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/runtest.sh -:100644 100644 aaf3792 b994a20 M tests/Regression/bz549813-dl-close-race-with-C-destructor/main.fmf -:100644 100644 08d97c3 22c0cdf M tests/Regression/bz566712-aio-write-ll-corruption/main.fmf -:100644 100644 eca14e9 da6468f M tests/Regression/bz587360-digraph-matching-differs-across-archs/main.fmf -:100755 100755 197186f 965fc78 M tests/Regression/bz587360-digraph-matching-differs-across-archs/runtest.sh -:100644 100644 6adb034 5af78b1 M tests/Regression/bz600457-locally-defined-symbol-resolving-failure/main.fmf -:100644 100644 8d3360b c71bef7 M tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/main.fmf -:100644 100644 743943a 8ae8f82 M tests/Sanity/basic-linking-sanity/main.fmf +:100644 100644 8dcda7d1 b0edcfa9 M tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/main.fmf +:100644 100644 4599d31d c5373ef1 M tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/main.fmf +:100644 100644 dccf27be 84b876b6 M tests/Regression/bz529997-sem_timedwait-with-invalid-time/main.fmf +:100755 100755 21ae1717 5dcfd223 M tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/runtest.sh +:100644 100644 aaf37922 b994a204 M tests/Regression/bz549813-dl-close-race-with-C-destructor/main.fmf +:100644 100644 08d97c33 22c0cdf4 M tests/Regression/bz566712-aio-write-ll-corruption/main.fmf +:100644 100644 eca14e95 da6468fc M tests/Regression/bz587360-digraph-matching-differs-across-archs/main.fmf +:100755 100755 197186f7 965fc787 M tests/Regression/bz587360-digraph-matching-differs-across-archs/runtest.sh +:100644 100644 6adb0345 5af78b18 M tests/Regression/bz600457-locally-defined-symbol-resolving-failure/main.fmf +:100644 100644 8d3360ba c71bef72 M tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/main.fmf +:100644 100644 743943ad 8ae8f82b M tests/Sanity/basic-linking-sanity/main.fmf commit c048a406452d5f0b3046d033555a083be3537f47 Author: Florian Weimer @@ -6697,8 +6817,8 @@ CommitDate: Thu Jun 9 09:46:58 2022 +0200 - x86_64: Add strstr function with 512-bit EVEX - scripts/glibcelf.py: Add PT_AARCH64_MEMTAG_MTE constant -:100644 100644 73c1550 a2c6daa M glibc.spec -:100644 100644 9ebc240 344f359 M sources +:100644 100644 73c15505 a2c6daac M glibc.spec +:100644 100644 9ebc240f 344f359e M sources commit 6dd1d1f29e0840130b9eb65f6567c30617c94abb Author: Carlos O'Donell @@ -6765,8 +6885,8 @@ CommitDate: Mon Jun 6 12:29:45 2022 -0400 - Update kernel version to 5.18 in header constant tests - String: Improve overflow test coverage for strnlen -:100644 100644 4d50737 73c1550 M glibc.spec -:100644 100644 6716d86 9ebc240 M sources +:100644 100644 4d507374 73c15505 M glibc.spec +:100644 100644 6716d868 9ebc240f M sources commit ab4bc8a24e4604e5f91ffe6518a419599b8c6849 Author: Sergey Kolosov @@ -6778,348 +6898,348 @@ CommitDate: Tue May 31 09:29:27 2022 +0200 Move some of the RHEL QE testcases upstream to Fedora. -:000000 100644 0000000 f9f7029 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/Makefile -:000000 100644 0000000 f55c98f A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/PURPOSE -:000000 100644 0000000 948e5ee A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/main.fmf -:000000 100755 0000000 8da787e A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/runtest.sh -:000000 100644 0000000 0c11056 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/tst-getaddrinfo.c -:000000 100644 0000000 bb73776 A tests/Regression/bz434601-timedlock-segfault/Makefile -:000000 100644 0000000 f37d527 A tests/Regression/bz434601-timedlock-segfault/PURPOSE -:000000 100644 0000000 ffa3c96 A tests/Regression/bz434601-timedlock-segfault/main.fmf -:000000 100755 0000000 a451879 A tests/Regression/bz434601-timedlock-segfault/runtest.sh -:000000 100644 0000000 57d8842 A tests/Regression/bz434601-timedlock-segfault/timedlock.c -:000000 100644 0000000 452d4b4 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/Makefile -:000000 100644 0000000 2ac2c13 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/PURPOSE -:000000 100644 0000000 f19de8a A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/main.fmf -:000000 100755 0000000 01236c4 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/runtest.sh -:000000 100644 0000000 05c7a33 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/testcase.c -:000000 100644 0000000 b5d4a4b A tests/Regression/bz464146-sp-corruption/Makefile -:000000 100644 0000000 514ba43 A tests/Regression/bz464146-sp-corruption/PURPOSE -:000000 100644 0000000 14062ed A tests/Regression/bz464146-sp-corruption/main.fmf -:000000 100755 0000000 3a39322 A tests/Regression/bz464146-sp-corruption/runtest.sh -:000000 100644 0000000 54bf74b A tests/Regression/bz464146-sp-corruption/testit.c -:000000 100644 0000000 0760835 A tests/Regression/bz471298-pthread_cond/Makefile -:000000 100644 0000000 a82fbca A tests/Regression/bz471298-pthread_cond/PURPOSE -:000000 100644 0000000 8c75741 A tests/Regression/bz471298-pthread_cond/main.fmf -:000000 100644 0000000 08c96b1 A tests/Regression/bz471298-pthread_cond/pthread_cond_test.c -:000000 100755 0000000 a5cc1ce A tests/Regression/bz471298-pthread_cond/runtest.sh -:000000 100644 0000000 58011ea A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/Makefile -:000000 100644 0000000 5603ef1 A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/PURPOSE -:000000 100644 0000000 8dcda7d A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/main.fmf -:000000 100644 0000000 f1de8f7 A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/optinit.c -:000000 100755 0000000 44962e1 A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/runtest.sh -:000000 100644 0000000 65df609 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/Makefile -:000000 100644 0000000 89a880d A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/PURPOSE -:000000 100644 0000000 8fc25dd A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/main.fmf -:000000 100644 0000000 733830a A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/priv-mutex.c -:000000 100755 0000000 feead28 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/runtest.sh -:000000 100644 0000000 23c4235 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/Makefile -:000000 100644 0000000 8c135e6 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/PURPOSE -:000000 100644 0000000 d389936 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/function-nodename-servname-null.c -:000000 100644 0000000 4599d31 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/main.fmf -:000000 100755 0000000 3cdccd6 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/runtest.sh -:000000 100644 0000000 5cff447 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/Makefile -:000000 100644 0000000 a3bbae3 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/PURPOSE -:000000 100755 0000000 742fc77 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/expected.py2 -:000000 100755 0000000 9180657 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/expected.py3 -:000000 100644 0000000 c39d30b A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/fopen.c -:000000 100644 0000000 ad867f2 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/main.fmf -:000000 100755 0000000 937ff43 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/runtest.sh -:000000 100644 0000000 1443a2b A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/Makefile -:000000 100644 0000000 94e4c56 A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/PURPOSE -:000000 100644 0000000 b38df20 A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/main.fmf -:000000 100644 0000000 a46152d A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/reproducer.c -:000000 100755 0000000 9353d16 A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/runtest.sh -:000000 100644 0000000 b2422b6 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/Makefile -:000000 100644 0000000 0a6f3f0 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/PURPOSE -:000000 100644 0000000 98d27d8 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/golden-real.out -:000000 100644 0000000 7236993 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/golden-repro.out -:000000 100644 0000000 dccf27b A tests/Regression/bz529997-sem_timedwait-with-invalid-time/main.fmf -:000000 100644 0000000 e1f8495 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/newrepr.c -:000000 100644 0000000 5ee283c A tests/Regression/bz529997-sem_timedwait-with-invalid-time/oldrepr.c -:000000 100644 0000000 471fe16 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/real-reproducer.c -:000000 100755 0000000 5dc78e4 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/runtest.sh -:000000 100644 0000000 3462b85 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/Makefile -:000000 100644 0000000 a17f408 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/PURPOSE -:000000 100644 0000000 5f0a155 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/main.fmf -:000000 100644 0000000 5f09f58 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p1.pl -:000000 100644 0000000 b92bb9b A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p2.pl -:000000 100644 0000000 bd57bbb A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p3.py -:000000 100644 0000000 bc49026 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p3_3.py -:000000 100644 0000000 b77ea8c A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p4.py -:000000 100644 0000000 aeb9778 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p4_3.py -:000000 100755 0000000 21ae171 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/runtest.sh -:000000 100644 0000000 76a5dda A tests/Regression/bz549813-dl-close-race-with-C-destructor/C_Only.tar -:000000 100644 0000000 169faf9 A tests/Regression/bz549813-dl-close-race-with-C-destructor/Makefile -:000000 100644 0000000 5327c21 A tests/Regression/bz549813-dl-close-race-with-C-destructor/PURPOSE -:000000 100644 0000000 aaf3792 A tests/Regression/bz549813-dl-close-race-with-C-destructor/main.fmf -:000000 100755 0000000 fef2149 A tests/Regression/bz549813-dl-close-race-with-C-destructor/runtest.sh -:000000 100644 0000000 df7da0e A tests/Regression/bz566712-aio-write-ll-corruption/Makefile -:000000 100644 0000000 7a3f2e6 A tests/Regression/bz566712-aio-write-ll-corruption/PURPOSE -:000000 100644 0000000 981c245 A tests/Regression/bz566712-aio-write-ll-corruption/aio_write.c -:000000 100644 0000000 08d97c3 A tests/Regression/bz566712-aio-write-ll-corruption/main.fmf -:000000 100755 0000000 40d6985 A tests/Regression/bz566712-aio-write-ll-corruption/runtest.sh -:000000 100644 0000000 b75558f A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/Makefile -:000000 100644 0000000 a52a189 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/PURPOSE -:000000 100644 0000000 28f004f A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/main.fmf -:000000 100755 0000000 9a6c135 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/runtest.sh -:000000 100644 0000000 518bd64 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/tst-ftell-with-fdopen.c -:000000 100644 0000000 1e0c9ce A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/tst-ftell-with-fdopen.expected -:000000 100644 0000000 b238472 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/tst-write-ftell.c -:000000 100644 0000000 561ff82 A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/Makefile -:000000 100644 0000000 66b5d4a A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/PURPOSE -:000000 100644 0000000 fc9765f A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/main.fmf -:000000 100644 0000000 e65966c A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/pthread_rwlock_timedwrlock.c -:000000 100755 0000000 21f71d9 A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/runtest.sh -:000000 100644 0000000 52e0573 A tests/Regression/bz585674-free-race-in-mcheck-hooks/Makefile -:000000 100644 0000000 5d3f225 A tests/Regression/bz585674-free-race-in-mcheck-hooks/PURPOSE -:000000 100644 0000000 fea4212 A tests/Regression/bz585674-free-race-in-mcheck-hooks/main.fmf -:000000 100644 0000000 ee5c6f0 A tests/Regression/bz585674-free-race-in-mcheck-hooks/malloc_check.c -:000000 100755 0000000 d01ddac A tests/Regression/bz585674-free-race-in-mcheck-hooks/runtest.sh -:000000 100644 0000000 d4f4d38 A tests/Regression/bz587360-digraph-matching-differs-across-archs/Makefile -:000000 100644 0000000 a928bea A tests/Regression/bz587360-digraph-matching-differs-across-archs/PURPOSE -:000000 100644 0000000 eca14e9 A tests/Regression/bz587360-digraph-matching-differs-across-archs/main.fmf -:000000 100755 0000000 197186f A tests/Regression/bz587360-digraph-matching-differs-across-archs/runtest.sh -:000000 100644 0000000 5b49812 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/Makefile -:000000 100644 0000000 74ca16a A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/PURPOSE -:000000 100644 0000000 4fe6cde A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/golden.out -:000000 100644 0000000 6adb034 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/main.fmf -:000000 100644 0000000 9551435 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/reproducer.tar.gz -:000000 100755 0000000 d7ab15b A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/runtest.sh -:000000 100644 0000000 6122763 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/Makefile -:000000 100644 0000000 0739a92 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/PURPOSE -:000000 100644 0000000 1b55a3d A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/main.fmf -:000000 100755 0000000 6ed2b60 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/runtest.sh -:000000 100644 0000000 76a5b34 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/sqrt.c -:000000 100644 0000000 0e43dbe A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/Makefile -:000000 100644 0000000 8e9b2a0 A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/PURPOSE -:000000 100644 0000000 6d91228 A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/main.fmf -:000000 100755 0000000 2350638 A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/runtest.sh -:000000 100644 0000000 56126f8 A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/strptime.c -:000000 100644 0000000 f8d52b2 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/Makefile -:000000 100644 0000000 bf155d0 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/PURPOSE -:000000 100644 0000000 fcc4c51 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/golden.out -:000000 100644 0000000 c5cc62a A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/main.fmf -:000000 100755 0000000 a4a4b65 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/runtest.sh -:000000 100644 0000000 a1f52ef A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/676039-resolver.c -:000000 100644 0000000 391ce2a A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/Makefile -:000000 100644 0000000 38df2dc A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/PURPOSE -:000000 100644 0000000 e30352f A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/a.out-gold -:000000 100644 0000000 beaee8e A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/getent-gold -:000000 100644 0000000 499e473 A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/main.fmf -:000000 100755 0000000 547e2c6 A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/runtest.sh -:000000 100644 0000000 e00273e A tests/Regression/bz689471-SSE4-strncmp-failure/Makefile -:000000 100644 0000000 2de0bad A tests/Regression/bz689471-SSE4-strncmp-failure/PURPOSE -:000000 100644 0000000 c62404d A tests/Regression/bz689471-SSE4-strncmp-failure/main.fmf -:000000 100644 0000000 b0bdd8b A tests/Regression/bz689471-SSE4-strncmp-failure/repr.c -:000000 100755 0000000 90bfbfa A tests/Regression/bz689471-SSE4-strncmp-failure/runtest.sh -:000000 100644 0000000 d6b081c A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/Makefile -:000000 100644 0000000 3876cd6 A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/PURPOSE -:000000 100644 0000000 477bc40 A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/main.fmf -:000000 100755 0000000 1d193f9 A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/runtest.sh -:000000 100644 0000000 42390d1 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/Makefile -:000000 100644 0000000 8dda079 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/PURPOSE -:000000 100644 0000000 9572be9 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/main.fmf -:000000 100755 0000000 750054b A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/runtest.sh -:000000 100644 0000000 8c7b608 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/strncmp.c -:000000 100644 0000000 1805d2b A tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/Makefile -:000000 100644 0000000 e143347 A tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/PURPOSE -:000000 100644 0000000 471e141 A tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/main.fmf -:000000 100755 0000000 8991a97 A tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/runtest.sh -:000000 100644 0000000 05eac95 A tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/test_crypt.py -:000000 100644 0000000 9bdd683 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/Makefile -:000000 100644 0000000 551ac25 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/PURPOSE -:000000 100644 0000000 c364430 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/main.fmf -:000000 100644 0000000 fb9fa61 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/repr.c -:000000 100755 0000000 90b55e8 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/runtest.sh -:000000 100644 0000000 aecdf7b A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/Makefile -:000000 100644 0000000 fb5cc4f A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/PURPOSE -:000000 100644 0000000 2250865 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/log.golden -:000000 100644 0000000 c5ba4b9 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/main.fmf -:000000 100644 0000000 9e44d87 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/mf.c -:000000 100755 0000000 c378784 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/runtest.sh -:000000 100644 0000000 d08b558 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/Makefile -:000000 100644 0000000 a9db60f A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/PURPOSE -:000000 100644 0000000 7e9ae71 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/main.fmf -:000000 100755 0000000 37a288a A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/runtest.sh -:000000 100644 0000000 987b670 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/test_robust.c -:000000 100644 0000000 efd0e56 A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/Makefile -:000000 100644 0000000 ed27eec A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/PURPOSE -:000000 100644 0000000 ef8b6af A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/main.fmf -:000000 100755 0000000 9120bb9 A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/runtest.sh -:000000 100644 0000000 f084a66 A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/Makefile -:000000 100644 0000000 d5360fe A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/PURPOSE -:000000 100644 0000000 88a4233 A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/main.fmf -:000000 100644 0000000 31d59fc A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/repr.c -:000000 100755 0000000 5872bdb A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/runtest.sh -:000000 100644 0000000 f5d092b A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/4151-sourceware.c -:000000 100644 0000000 42c3ff5 A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/Makefile -:000000 100644 0000000 863db9b A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/PURPOSE -:000000 100644 0000000 d82707a A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/main.fmf -:000000 100755 0000000 9902168 A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/runtest.sh -:000000 100644 0000000 5da5e2c A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/Makefile -:000000 100644 0000000 5951a5c A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/PURPOSE -:000000 100644 0000000 66f1664 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/gold.txt -:000000 100644 0000000 110b3ce A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/locale.c -:000000 100644 0000000 8d3360b A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/main.fmf -:000000 100755 0000000 d864434 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/runtest.sh -:000000 100644 0000000 767c259 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/Makefile -:000000 100644 0000000 4604006 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/PURPOSE -:000000 100644 0000000 066bc87 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/chk-gethost.c -:000000 100644 0000000 1754c58 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/main.fmf -:000000 100755 0000000 843e909 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/runtest.sh -:000000 100644 0000000 29683a6 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/Makefile -:000000 100644 0000000 ee81e49 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/PURPOSE -:000000 100644 0000000 cef249d A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/main.fmf -:000000 100755 0000000 3fe960e A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/runtest.sh -:000000 100644 0000000 5c4ba8d A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/test.c -:000000 100644 0000000 5ecda47 A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/Makefile -:000000 100644 0000000 1ec0f90 A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/PURPOSE -:000000 100644 0000000 20224cf A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/golden.out -:000000 100644 0000000 a0bdad8 A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/main.fmf -:000000 100755 0000000 221cfaa A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/runtest.sh -:000000 100644 0000000 d5f37df A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/Makefile -:000000 100644 0000000 4d5f96e A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/PURPOSE -:000000 100644 0000000 953e121 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/main.fmf -:000000 100644 0000000 40fc103 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/mallocstress.c -:000000 100755 0000000 1c66bc6 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/redshirt-process.sh -:000000 100755 0000000 8c83f40 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/runtest.sh -:000000 100644 0000000 7182880 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/Makefile -:000000 100644 0000000 ffdace4 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/PURPOSE -:000000 100644 0000000 34ca26b A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/log.golden -:000000 100644 0000000 484c16c A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/main.fmf -:000000 100755 0000000 b277386 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/runtest.sh -:000000 100644 0000000 f9f9e48 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/testcase.c -:000000 100644 0000000 e9b0f8e A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/Makefile -:000000 100644 0000000 b560b29 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/PURPOSE -:000000 100644 0000000 2584dee A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/main.fmf -:000000 100644 0000000 f67c9ad A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/named.conf -:000000 100644 0000000 4bb4071 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/named.taktik -:000000 100644 0000000 8c48838 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/resolv.conf -:000000 100755 0000000 380a312 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/runtest.sh -:000000 100644 0000000 a1c3a3d A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/testcase.c -:000000 100644 0000000 b7e5b5b A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/Makefile -:000000 100644 0000000 431ba26 A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/PURPOSE -:000000 100644 0000000 87973ee A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/get.c -:000000 100644 0000000 13f11b6 A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/main.fmf -:000000 100755 0000000 156d933 A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/runtest.sh -:000000 100644 0000000 2c3176c A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/Makefile -:000000 100644 0000000 1bcf189 A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/PURPOSE -:000000 100644 0000000 bd1cc4f A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/arf.c -:000000 100644 0000000 798b1b4 A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/main.fmf -:000000 100755 0000000 5ef2a4d A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/runtest.sh -:000000 100644 0000000 4a76486 A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/Makefile -:000000 100644 0000000 18a5b0e A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/PURPOSE -:000000 100644 0000000 e242d2d A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/main.fmf -:000000 100755 0000000 4f430d0 A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/runtest.sh -:000000 100644 0000000 d108a43 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/Makefile -:000000 100644 0000000 0f0515c A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/PURPOSE -:000000 100644 0000000 1c833c1 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fseek-wchar-j.c -:000000 100644 0000000 a088b1d A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fseek-wchar.c -:000000 100644 0000000 8c7ef8a A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fw.golden -:000000 100644 0000000 c1746f4 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fw.input -:000000 100644 0000000 f752777 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fw.j.golden -:000000 100644 0000000 10a5909 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/main.fmf -:000000 100644 0000000 4aee153 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/output.golden -:000000 100644 0000000 ff8e960 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/output.seeking -:000000 100755 0000000 a99b064 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/runtest.sh -:000000 100644 0000000 496fe4c A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/test.c -:000000 100644 0000000 10df528 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/Makefile -:000000 100644 0000000 2cc1a64 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/PURPOSE -:000000 100644 0000000 026f897 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/main.fmf -:000000 100755 0000000 0b66a48 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/runtest.sh -:000000 100644 0000000 4e6c6d1 A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/Makefile -:000000 100644 0000000 fb4adc1 A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/PURPOSE -:000000 100644 0000000 85c05f6 A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/main.fmf -:000000 100755 0000000 5b89a8f A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/runtest.sh -:000000 100644 0000000 b0de5b1 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/Makefile -:000000 100644 0000000 c2c5200 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/PURPOSE -:000000 100644 0000000 448b0f9 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/main.fmf -:000000 100644 0000000 0cfba0d A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/reproducer.c -:000000 100755 0000000 e744124 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/runtest.sh -:000000 100644 0000000 8402c19 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/Makefile -:000000 100644 0000000 32bea69 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/PURPOSE -:000000 100644 0000000 8f4c2f7 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/gai-tst.c -:000000 100644 0000000 cc6041f A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/main.fmf -:000000 100755 0000000 c133fb0 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/ns.pl -:000000 100755 0000000 9937992 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/runtest.sh -:000000 100644 0000000 251da43 A tests/Regression/bz868808-backtrace-for-recursive-functions/Makefile -:000000 100644 0000000 cade416 A tests/Regression/bz868808-backtrace-for-recursive-functions/PURPOSE -:000000 100644 0000000 a32c040 A tests/Regression/bz868808-backtrace-for-recursive-functions/bt-tst.c -:000000 100644 0000000 58916e4 A tests/Regression/bz868808-backtrace-for-recursive-functions/main.fmf -:000000 100755 0000000 cf83c3c A tests/Regression/bz868808-backtrace-for-recursive-functions/runtest.sh -:000000 100644 0000000 3792789 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/Makefile -:000000 100644 0000000 925ade3 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/PURPOSE -:000000 100644 0000000 0cad333 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/fpathconf-t.c -:000000 100644 0000000 0c4fa47 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/main.fmf -:000000 100755 0000000 2ade365 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/runtest.sh -:000000 100644 0000000 5cdf0e9 A tests/Regression/bz916986-MAP_HUGETLB_support/Makefile -:000000 100644 0000000 d8a04c1 A tests/Regression/bz916986-MAP_HUGETLB_support/PURPOSE -:000000 100644 0000000 4f3656c A tests/Regression/bz916986-MAP_HUGETLB_support/bz916986.c -:000000 100644 0000000 26f01c8 A tests/Regression/bz916986-MAP_HUGETLB_support/main.fmf -:000000 100755 0000000 ed52266 A tests/Regression/bz916986-MAP_HUGETLB_support/runtest.sh -:000000 100644 0000000 0eee073 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/Makefile -:000000 100644 0000000 550d1b0 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/PURPOSE -:000000 100644 0000000 4d90b56 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/main.fmf -:000000 100755 0000000 dacdb69 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/runtest.sh -:000000 100644 0000000 145ccb2 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/tst-getdate.c -:000000 100644 0000000 9f46a2d A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/tst-getdate.tmpl -:000000 100644 0000000 5618609 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/Makefile -:000000 100644 0000000 d6a78d6 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/PURPOSE -:000000 100644 0000000 e28c781 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/bz970854.c -:000000 100644 0000000 32211fc A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/main.fmf -:000000 100755 0000000 94468d6 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/runtest.sh -:000000 100644 0000000 e9c24bf A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/ubz15362.c -:000000 100644 0000000 eb8a3fc A tests/Regression/double_free_exploit/Makefile -:000000 100644 0000000 18c44f6 A tests/Regression/double_free_exploit/PURPOSE -:000000 100644 0000000 dfc0420 A tests/Regression/double_free_exploit/exploit.c -:000000 100644 0000000 b9eb76f A tests/Regression/double_free_exploit/exploit2.c -:000000 100644 0000000 af92d0d A tests/Regression/double_free_exploit/main.fmf -:000000 100755 0000000 35580e4 A tests/Regression/double_free_exploit/runtest.sh -:000000 100644 0000000 94a9bb5 A tests/Regression/expf-gives-infinity-where-result-finite/Makefile -:000000 100644 0000000 3b0f14b A tests/Regression/expf-gives-infinity-where-result-finite/PURPOSE -:000000 100644 0000000 30c04ab A tests/Regression/expf-gives-infinity-where-result-finite/main.fmf -:000000 100755 0000000 ac01945 A tests/Regression/expf-gives-infinity-where-result-finite/runtest.sh -:000000 100644 0000000 cbd1baf A tests/Regression/expf-gives-infinity-where-result-finite/tc1.cpp -:000000 100644 0000000 8afe24a A tests/Regression/fallocate_156289/Makefile -:000000 100644 0000000 2eff71e A tests/Regression/fallocate_156289/PURPOSE -:000000 100644 0000000 ddfabbd A tests/Regression/fallocate_156289/fallocate.c++ -:000000 100644 0000000 1812348 A tests/Regression/fallocate_156289/main.fmf -:000000 100755 0000000 359068e A tests/Regression/fallocate_156289/runtest.sh -:000000 100644 0000000 06f1df1 A tests/Regression/setvbuf-to-full-not-working/Makefile -:000000 100644 0000000 3a0a38c A tests/Regression/setvbuf-to-full-not-working/PURPOSE -:000000 100644 0000000 f082804 A tests/Regression/setvbuf-to-full-not-working/main.fmf -:000000 100755 0000000 4d31e61 A tests/Regression/setvbuf-to-full-not-working/runtest.sh -:000000 100644 0000000 4bc7d9f A tests/Regression/setvbuf-to-full-not-working/testcase.c -:000000 100755 0000000 ed5c619 A tests/Regression/setvbuf-to-full-not-working/try.exp -:000000 100644 0000000 a116188 A tests/Sanity/basic-linking-sanity/Makefile -:000000 100644 0000000 9f0038b A tests/Sanity/basic-linking-sanity/PURPOSE -:000000 100644 0000000 2b4f286 A tests/Sanity/basic-linking-sanity/lc.c -:000000 100644 0000000 a3116eb A tests/Sanity/basic-linking-sanity/lc.golden -:000000 100644 0000000 72612b9 A tests/Sanity/basic-linking-sanity/lm.c -:000000 100644 0000000 ddfa1ca A tests/Sanity/basic-linking-sanity/lm.golden -:000000 100644 0000000 65aca15 A tests/Sanity/basic-linking-sanity/lpthread.c -:000000 100644 0000000 e150192 A tests/Sanity/basic-linking-sanity/lpthread.golden -:000000 100644 0000000 2a31e0d A tests/Sanity/basic-linking-sanity/lrt.c -:000000 100644 0000000 f5ff068 A tests/Sanity/basic-linking-sanity/lrt.golden -:000000 100644 0000000 743943a A tests/Sanity/basic-linking-sanity/main.fmf -:000000 100755 0000000 9831078 A tests/Sanity/basic-linking-sanity/runtest.sh -:000000 100644 0000000 011936c A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/Makefile -:000000 100644 0000000 bb7a657 A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/PURPOSE -:000000 100644 0000000 c20ca2e A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/hello.c -:000000 100644 0000000 965d3d1 A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/interp.c -:000000 100644 0000000 0000dcb A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/main.fmf -:000000 100755 0000000 91a00d5 A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/runtest.sh -:000000 100644 0000000 5283035 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/Makefile -:000000 100644 0000000 3d7835a A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/PURPOSE -:000000 100644 0000000 094e50d A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/cursym.c -:000000 100644 0000000 8a475c4 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/main.fmf -:000000 100755 0000000 fc01c23 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/runtest.sh -:000000 100644 0000000 6d834ba A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/Makefile -:000000 100644 0000000 00e692c A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/PURPOSE -:000000 100644 0000000 63aae5d A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/main.fmf -:000000 100755 0000000 64a6450 A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/runtest.sh -:000000 100644 0000000 2697415 A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/symbol.txt +:000000 100644 00000000 f9f70297 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/Makefile +:000000 100644 00000000 f55c98f8 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/PURPOSE +:000000 100644 00000000 948e5eec A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/main.fmf +:000000 100755 00000000 8da787e4 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/runtest.sh +:000000 100644 00000000 0c110567 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/tst-getaddrinfo.c +:000000 100644 00000000 bb73776a A tests/Regression/bz434601-timedlock-segfault/Makefile +:000000 100644 00000000 f37d5276 A tests/Regression/bz434601-timedlock-segfault/PURPOSE +:000000 100644 00000000 ffa3c961 A tests/Regression/bz434601-timedlock-segfault/main.fmf +:000000 100755 00000000 a451879a A tests/Regression/bz434601-timedlock-segfault/runtest.sh +:000000 100644 00000000 57d88420 A tests/Regression/bz434601-timedlock-segfault/timedlock.c +:000000 100644 00000000 452d4b43 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/Makefile +:000000 100644 00000000 2ac2c13e A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/PURPOSE +:000000 100644 00000000 f19de8a3 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/main.fmf +:000000 100755 00000000 01236c40 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/runtest.sh +:000000 100644 00000000 05c7a338 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/testcase.c +:000000 100644 00000000 b5d4a4b4 A tests/Regression/bz464146-sp-corruption/Makefile +:000000 100644 00000000 514ba435 A tests/Regression/bz464146-sp-corruption/PURPOSE +:000000 100644 00000000 14062edb A tests/Regression/bz464146-sp-corruption/main.fmf +:000000 100755 00000000 3a393221 A tests/Regression/bz464146-sp-corruption/runtest.sh +:000000 100644 00000000 54bf74be A tests/Regression/bz464146-sp-corruption/testit.c +:000000 100644 00000000 07608357 A tests/Regression/bz471298-pthread_cond/Makefile +:000000 100644 00000000 a82fbcab A tests/Regression/bz471298-pthread_cond/PURPOSE +:000000 100644 00000000 8c75741f A tests/Regression/bz471298-pthread_cond/main.fmf +:000000 100644 00000000 08c96b17 A tests/Regression/bz471298-pthread_cond/pthread_cond_test.c +:000000 100755 00000000 a5cc1ce2 A tests/Regression/bz471298-pthread_cond/runtest.sh +:000000 100644 00000000 58011ea2 A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/Makefile +:000000 100644 00000000 5603ef1c A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/PURPOSE +:000000 100644 00000000 8dcda7d1 A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/main.fmf +:000000 100644 00000000 f1de8f7f A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/optinit.c +:000000 100755 00000000 44962e18 A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/runtest.sh +:000000 100644 00000000 65df6098 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/Makefile +:000000 100644 00000000 89a880d0 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/PURPOSE +:000000 100644 00000000 8fc25dd1 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/main.fmf +:000000 100644 00000000 733830a2 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/priv-mutex.c +:000000 100755 00000000 feead289 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/runtest.sh +:000000 100644 00000000 23c4235a A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/Makefile +:000000 100644 00000000 8c135e68 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/PURPOSE +:000000 100644 00000000 d3899368 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/function-nodename-servname-null.c +:000000 100644 00000000 4599d31d A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/main.fmf +:000000 100755 00000000 3cdccd66 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/runtest.sh +:000000 100644 00000000 5cff4476 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/Makefile +:000000 100644 00000000 a3bbae3c A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/PURPOSE +:000000 100755 00000000 742fc777 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/expected.py2 +:000000 100755 00000000 91806575 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/expected.py3 +:000000 100644 00000000 c39d30b9 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/fopen.c +:000000 100644 00000000 ad867f2b A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/main.fmf +:000000 100755 00000000 937ff431 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/runtest.sh +:000000 100644 00000000 1443a2b6 A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/Makefile +:000000 100644 00000000 94e4c56f A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/PURPOSE +:000000 100644 00000000 b38df200 A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/main.fmf +:000000 100644 00000000 a46152d5 A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/reproducer.c +:000000 100755 00000000 9353d16e A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/runtest.sh +:000000 100644 00000000 b2422b6d A tests/Regression/bz529997-sem_timedwait-with-invalid-time/Makefile +:000000 100644 00000000 0a6f3f04 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/PURPOSE +:000000 100644 00000000 98d27d8d A tests/Regression/bz529997-sem_timedwait-with-invalid-time/golden-real.out +:000000 100644 00000000 7236993a A tests/Regression/bz529997-sem_timedwait-with-invalid-time/golden-repro.out +:000000 100644 00000000 dccf27be A tests/Regression/bz529997-sem_timedwait-with-invalid-time/main.fmf +:000000 100644 00000000 e1f8495f A tests/Regression/bz529997-sem_timedwait-with-invalid-time/newrepr.c +:000000 100644 00000000 5ee283c7 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/oldrepr.c +:000000 100644 00000000 471fe169 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/real-reproducer.c +:000000 100755 00000000 5dc78e45 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/runtest.sh +:000000 100644 00000000 3462b854 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/Makefile +:000000 100644 00000000 a17f408a A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/PURPOSE +:000000 100644 00000000 5f0a1556 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/main.fmf +:000000 100644 00000000 5f09f587 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p1.pl +:000000 100644 00000000 b92bb9b8 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p2.pl +:000000 100644 00000000 bd57bbb1 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p3.py +:000000 100644 00000000 bc490269 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p3_3.py +:000000 100644 00000000 b77ea8c4 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p4.py +:000000 100644 00000000 aeb9778f A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p4_3.py +:000000 100755 00000000 21ae1717 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/runtest.sh +:000000 100644 00000000 76a5ddac A tests/Regression/bz549813-dl-close-race-with-C-destructor/C_Only.tar +:000000 100644 00000000 169faf90 A tests/Regression/bz549813-dl-close-race-with-C-destructor/Makefile +:000000 100644 00000000 5327c21b A tests/Regression/bz549813-dl-close-race-with-C-destructor/PURPOSE +:000000 100644 00000000 aaf37922 A tests/Regression/bz549813-dl-close-race-with-C-destructor/main.fmf +:000000 100755 00000000 fef21498 A tests/Regression/bz549813-dl-close-race-with-C-destructor/runtest.sh +:000000 100644 00000000 df7da0ee A tests/Regression/bz566712-aio-write-ll-corruption/Makefile +:000000 100644 00000000 7a3f2e63 A tests/Regression/bz566712-aio-write-ll-corruption/PURPOSE +:000000 100644 00000000 981c245a A tests/Regression/bz566712-aio-write-ll-corruption/aio_write.c +:000000 100644 00000000 08d97c33 A tests/Regression/bz566712-aio-write-ll-corruption/main.fmf +:000000 100755 00000000 40d6985a A tests/Regression/bz566712-aio-write-ll-corruption/runtest.sh +:000000 100644 00000000 b75558fd A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/Makefile +:000000 100644 00000000 a52a189f A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/PURPOSE +:000000 100644 00000000 28f004f5 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/main.fmf +:000000 100755 00000000 9a6c1358 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/runtest.sh +:000000 100644 00000000 518bd645 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/tst-ftell-with-fdopen.c +:000000 100644 00000000 1e0c9cea A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/tst-ftell-with-fdopen.expected +:000000 100644 00000000 b2384728 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/tst-write-ftell.c +:000000 100644 00000000 561ff821 A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/Makefile +:000000 100644 00000000 66b5d4a3 A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/PURPOSE +:000000 100644 00000000 fc9765ff A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/main.fmf +:000000 100644 00000000 e65966c3 A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/pthread_rwlock_timedwrlock.c +:000000 100755 00000000 21f71d97 A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/runtest.sh +:000000 100644 00000000 52e05731 A tests/Regression/bz585674-free-race-in-mcheck-hooks/Makefile +:000000 100644 00000000 5d3f2258 A tests/Regression/bz585674-free-race-in-mcheck-hooks/PURPOSE +:000000 100644 00000000 fea4212f A tests/Regression/bz585674-free-race-in-mcheck-hooks/main.fmf +:000000 100644 00000000 ee5c6f0e A tests/Regression/bz585674-free-race-in-mcheck-hooks/malloc_check.c +:000000 100755 00000000 d01ddacf A tests/Regression/bz585674-free-race-in-mcheck-hooks/runtest.sh +:000000 100644 00000000 d4f4d382 A tests/Regression/bz587360-digraph-matching-differs-across-archs/Makefile +:000000 100644 00000000 a928bea5 A tests/Regression/bz587360-digraph-matching-differs-across-archs/PURPOSE +:000000 100644 00000000 eca14e95 A tests/Regression/bz587360-digraph-matching-differs-across-archs/main.fmf +:000000 100755 00000000 197186f7 A tests/Regression/bz587360-digraph-matching-differs-across-archs/runtest.sh +:000000 100644 00000000 5b498124 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/Makefile +:000000 100644 00000000 74ca16a8 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/PURPOSE +:000000 100644 00000000 4fe6cde5 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/golden.out +:000000 100644 00000000 6adb0345 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/main.fmf +:000000 100644 00000000 95514353 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/reproducer.tar.gz +:000000 100755 00000000 d7ab15b8 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/runtest.sh +:000000 100644 00000000 61227634 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/Makefile +:000000 100644 00000000 0739a92e A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/PURPOSE +:000000 100644 00000000 1b55a3db A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/main.fmf +:000000 100755 00000000 6ed2b601 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/runtest.sh +:000000 100644 00000000 76a5b34a A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/sqrt.c +:000000 100644 00000000 0e43dbe5 A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/Makefile +:000000 100644 00000000 8e9b2a0f A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/PURPOSE +:000000 100644 00000000 6d91228c A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/main.fmf +:000000 100755 00000000 2350638c A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/runtest.sh +:000000 100644 00000000 56126f8d A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/strptime.c +:000000 100644 00000000 f8d52b24 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/Makefile +:000000 100644 00000000 bf155d07 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/PURPOSE +:000000 100644 00000000 fcc4c510 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/golden.out +:000000 100644 00000000 c5cc62a9 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/main.fmf +:000000 100755 00000000 a4a4b65f A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/runtest.sh +:000000 100644 00000000 a1f52ef5 A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/676039-resolver.c +:000000 100644 00000000 391ce2a3 A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/Makefile +:000000 100644 00000000 38df2dcc A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/PURPOSE +:000000 100644 00000000 e30352fa A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/a.out-gold +:000000 100644 00000000 beaee8ed A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/getent-gold +:000000 100644 00000000 499e4735 A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/main.fmf +:000000 100755 00000000 547e2c63 A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/runtest.sh +:000000 100644 00000000 e00273e8 A tests/Regression/bz689471-SSE4-strncmp-failure/Makefile +:000000 100644 00000000 2de0bad2 A tests/Regression/bz689471-SSE4-strncmp-failure/PURPOSE +:000000 100644 00000000 c62404d4 A tests/Regression/bz689471-SSE4-strncmp-failure/main.fmf +:000000 100644 00000000 b0bdd8bf A tests/Regression/bz689471-SSE4-strncmp-failure/repr.c +:000000 100755 00000000 90bfbfa1 A tests/Regression/bz689471-SSE4-strncmp-failure/runtest.sh +:000000 100644 00000000 d6b081cf A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/Makefile +:000000 100644 00000000 3876cd6a A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/PURPOSE +:000000 100644 00000000 477bc403 A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/main.fmf +:000000 100755 00000000 1d193f94 A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/runtest.sh +:000000 100644 00000000 42390d17 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/Makefile +:000000 100644 00000000 8dda0798 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/PURPOSE +:000000 100644 00000000 9572be94 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/main.fmf +:000000 100755 00000000 750054b3 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/runtest.sh +:000000 100644 00000000 8c7b608a A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/strncmp.c +:000000 100644 00000000 1805d2be A tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/Makefile +:000000 100644 00000000 e143347f A tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/PURPOSE +:000000 100644 00000000 471e141a A tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/main.fmf +:000000 100755 00000000 8991a972 A tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/runtest.sh +:000000 100644 00000000 05eac95d A tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/test_crypt.py +:000000 100644 00000000 9bdd6836 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/Makefile +:000000 100644 00000000 551ac25a A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/PURPOSE +:000000 100644 00000000 c364430e A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/main.fmf +:000000 100644 00000000 fb9fa614 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/repr.c +:000000 100755 00000000 90b55e8a A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/runtest.sh +:000000 100644 00000000 aecdf7b9 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/Makefile +:000000 100644 00000000 fb5cc4f2 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/PURPOSE +:000000 100644 00000000 22508651 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/log.golden +:000000 100644 00000000 c5ba4b9e A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/main.fmf +:000000 100644 00000000 9e44d87d A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/mf.c +:000000 100755 00000000 c3787841 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/runtest.sh +:000000 100644 00000000 d08b5581 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/Makefile +:000000 100644 00000000 a9db60f2 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/PURPOSE +:000000 100644 00000000 7e9ae718 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/main.fmf +:000000 100755 00000000 37a288ad A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/runtest.sh +:000000 100644 00000000 987b6709 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/test_robust.c +:000000 100644 00000000 efd0e568 A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/Makefile +:000000 100644 00000000 ed27eece A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/PURPOSE +:000000 100644 00000000 ef8b6af4 A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/main.fmf +:000000 100755 00000000 9120bb98 A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/runtest.sh +:000000 100644 00000000 f084a66b A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/Makefile +:000000 100644 00000000 d5360fec A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/PURPOSE +:000000 100644 00000000 88a42335 A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/main.fmf +:000000 100644 00000000 31d59fc0 A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/repr.c +:000000 100755 00000000 5872bdb0 A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/runtest.sh +:000000 100644 00000000 f5d092bb A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/4151-sourceware.c +:000000 100644 00000000 42c3ff5b A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/Makefile +:000000 100644 00000000 863db9bd A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/PURPOSE +:000000 100644 00000000 d82707ae A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/main.fmf +:000000 100755 00000000 9902168c A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/runtest.sh +:000000 100644 00000000 5da5e2c7 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/Makefile +:000000 100644 00000000 5951a5c3 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/PURPOSE +:000000 100644 00000000 66f16646 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/gold.txt +:000000 100644 00000000 110b3ce2 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/locale.c +:000000 100644 00000000 8d3360ba A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/main.fmf +:000000 100755 00000000 d8644345 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/runtest.sh +:000000 100644 00000000 767c259c A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/Makefile +:000000 100644 00000000 46040069 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/PURPOSE +:000000 100644 00000000 066bc87f A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/chk-gethost.c +:000000 100644 00000000 1754c58a A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/main.fmf +:000000 100755 00000000 843e9092 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/runtest.sh +:000000 100644 00000000 29683a64 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/Makefile +:000000 100644 00000000 ee81e499 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/PURPOSE +:000000 100644 00000000 cef249df A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/main.fmf +:000000 100755 00000000 3fe960e7 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/runtest.sh +:000000 100644 00000000 5c4ba8d2 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/test.c +:000000 100644 00000000 5ecda47c A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/Makefile +:000000 100644 00000000 1ec0f90c A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/PURPOSE +:000000 100644 00000000 20224cf9 A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/golden.out +:000000 100644 00000000 a0bdad88 A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/main.fmf +:000000 100755 00000000 221cfaae A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/runtest.sh +:000000 100644 00000000 d5f37df3 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/Makefile +:000000 100644 00000000 4d5f96e7 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/PURPOSE +:000000 100644 00000000 953e121f A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/main.fmf +:000000 100644 00000000 40fc1036 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/mallocstress.c +:000000 100755 00000000 1c66bc61 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/redshirt-process.sh +:000000 100755 00000000 8c83f40a A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/runtest.sh +:000000 100644 00000000 7182880b A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/Makefile +:000000 100644 00000000 ffdace49 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/PURPOSE +:000000 100644 00000000 34ca26b6 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/log.golden +:000000 100644 00000000 484c16c8 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/main.fmf +:000000 100755 00000000 b2773861 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/runtest.sh +:000000 100644 00000000 f9f9e489 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/testcase.c +:000000 100644 00000000 e9b0f8ed A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/Makefile +:000000 100644 00000000 b560b295 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/PURPOSE +:000000 100644 00000000 2584deed A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/main.fmf +:000000 100644 00000000 f67c9ad5 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/named.conf +:000000 100644 00000000 4bb4071e A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/named.taktik +:000000 100644 00000000 8c488382 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/resolv.conf +:000000 100755 00000000 380a3123 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/runtest.sh +:000000 100644 00000000 a1c3a3d6 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/testcase.c +:000000 100644 00000000 b7e5b5b0 A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/Makefile +:000000 100644 00000000 431ba26e A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/PURPOSE +:000000 100644 00000000 87973ee5 A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/get.c +:000000 100644 00000000 13f11b68 A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/main.fmf +:000000 100755 00000000 156d933f A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/runtest.sh +:000000 100644 00000000 2c3176ce A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/Makefile +:000000 100644 00000000 1bcf1899 A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/PURPOSE +:000000 100644 00000000 bd1cc4fa A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/arf.c +:000000 100644 00000000 798b1b46 A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/main.fmf +:000000 100755 00000000 5ef2a4da A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/runtest.sh +:000000 100644 00000000 4a764860 A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/Makefile +:000000 100644 00000000 18a5b0e7 A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/PURPOSE +:000000 100644 00000000 e242d2d1 A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/main.fmf +:000000 100755 00000000 4f430d05 A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/runtest.sh +:000000 100644 00000000 d108a430 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/Makefile +:000000 100644 00000000 0f0515ca A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/PURPOSE +:000000 100644 00000000 1c833c1f A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fseek-wchar-j.c +:000000 100644 00000000 a088b1dc A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fseek-wchar.c +:000000 100644 00000000 8c7ef8a6 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fw.golden +:000000 100644 00000000 c1746f42 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fw.input +:000000 100644 00000000 f752777b A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fw.j.golden +:000000 100644 00000000 10a59091 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/main.fmf +:000000 100644 00000000 4aee1534 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/output.golden +:000000 100644 00000000 ff8e960c A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/output.seeking +:000000 100755 00000000 a99b0640 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/runtest.sh +:000000 100644 00000000 496fe4cf A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/test.c +:000000 100644 00000000 10df528c A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/Makefile +:000000 100644 00000000 2cc1a641 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/PURPOSE +:000000 100644 00000000 026f8975 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/main.fmf +:000000 100755 00000000 0b66a488 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/runtest.sh +:000000 100644 00000000 4e6c6d10 A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/Makefile +:000000 100644 00000000 fb4adc10 A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/PURPOSE +:000000 100644 00000000 85c05f6d A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/main.fmf +:000000 100755 00000000 5b89a8fe A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/runtest.sh +:000000 100644 00000000 b0de5b11 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/Makefile +:000000 100644 00000000 c2c52006 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/PURPOSE +:000000 100644 00000000 448b0f9d A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/main.fmf +:000000 100644 00000000 0cfba0de A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/reproducer.c +:000000 100755 00000000 e7441240 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/runtest.sh +:000000 100644 00000000 8402c19d A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/Makefile +:000000 100644 00000000 32bea697 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/PURPOSE +:000000 100644 00000000 8f4c2f72 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/gai-tst.c +:000000 100644 00000000 cc6041fe A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/main.fmf +:000000 100755 00000000 c133fb0d A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/ns.pl +:000000 100755 00000000 99379929 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/runtest.sh +:000000 100644 00000000 251da430 A tests/Regression/bz868808-backtrace-for-recursive-functions/Makefile +:000000 100644 00000000 cade416f A tests/Regression/bz868808-backtrace-for-recursive-functions/PURPOSE +:000000 100644 00000000 a32c0400 A tests/Regression/bz868808-backtrace-for-recursive-functions/bt-tst.c +:000000 100644 00000000 58916e43 A tests/Regression/bz868808-backtrace-for-recursive-functions/main.fmf +:000000 100755 00000000 cf83c3c8 A tests/Regression/bz868808-backtrace-for-recursive-functions/runtest.sh +:000000 100644 00000000 37927893 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/Makefile +:000000 100644 00000000 925ade3e A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/PURPOSE +:000000 100644 00000000 0cad3334 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/fpathconf-t.c +:000000 100644 00000000 0c4fa47f A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/main.fmf +:000000 100755 00000000 2ade3658 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/runtest.sh +:000000 100644 00000000 5cdf0e96 A tests/Regression/bz916986-MAP_HUGETLB_support/Makefile +:000000 100644 00000000 d8a04c1e A tests/Regression/bz916986-MAP_HUGETLB_support/PURPOSE +:000000 100644 00000000 4f3656c6 A tests/Regression/bz916986-MAP_HUGETLB_support/bz916986.c +:000000 100644 00000000 26f01c8b A tests/Regression/bz916986-MAP_HUGETLB_support/main.fmf +:000000 100755 00000000 ed52266a A tests/Regression/bz916986-MAP_HUGETLB_support/runtest.sh +:000000 100644 00000000 0eee0736 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/Makefile +:000000 100644 00000000 550d1b00 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/PURPOSE +:000000 100644 00000000 4d90b568 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/main.fmf +:000000 100755 00000000 dacdb694 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/runtest.sh +:000000 100644 00000000 145ccb2e A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/tst-getdate.c +:000000 100644 00000000 9f46a2d4 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/tst-getdate.tmpl +:000000 100644 00000000 5618609b A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/Makefile +:000000 100644 00000000 d6a78d68 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/PURPOSE +:000000 100644 00000000 e28c7818 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/bz970854.c +:000000 100644 00000000 32211fca A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/main.fmf +:000000 100755 00000000 94468d6b A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/runtest.sh +:000000 100644 00000000 e9c24bf5 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/ubz15362.c +:000000 100644 00000000 eb8a3fc8 A tests/Regression/double_free_exploit/Makefile +:000000 100644 00000000 18c44f64 A tests/Regression/double_free_exploit/PURPOSE +:000000 100644 00000000 dfc04209 A tests/Regression/double_free_exploit/exploit.c +:000000 100644 00000000 b9eb76f4 A tests/Regression/double_free_exploit/exploit2.c +:000000 100644 00000000 af92d0d0 A tests/Regression/double_free_exploit/main.fmf +:000000 100755 00000000 35580e48 A tests/Regression/double_free_exploit/runtest.sh +:000000 100644 00000000 94a9bb5f A tests/Regression/expf-gives-infinity-where-result-finite/Makefile +:000000 100644 00000000 3b0f14bb A tests/Regression/expf-gives-infinity-where-result-finite/PURPOSE +:000000 100644 00000000 30c04abc A tests/Regression/expf-gives-infinity-where-result-finite/main.fmf +:000000 100755 00000000 ac01945d A tests/Regression/expf-gives-infinity-where-result-finite/runtest.sh +:000000 100644 00000000 cbd1baf9 A tests/Regression/expf-gives-infinity-where-result-finite/tc1.cpp +:000000 100644 00000000 8afe24af A tests/Regression/fallocate_156289/Makefile +:000000 100644 00000000 2eff71e7 A tests/Regression/fallocate_156289/PURPOSE +:000000 100644 00000000 ddfabbdd A tests/Regression/fallocate_156289/fallocate.c++ +:000000 100644 00000000 1812348a A tests/Regression/fallocate_156289/main.fmf +:000000 100755 00000000 359068eb A tests/Regression/fallocate_156289/runtest.sh +:000000 100644 00000000 06f1df17 A tests/Regression/setvbuf-to-full-not-working/Makefile +:000000 100644 00000000 3a0a38c9 A tests/Regression/setvbuf-to-full-not-working/PURPOSE +:000000 100644 00000000 f0828049 A tests/Regression/setvbuf-to-full-not-working/main.fmf +:000000 100755 00000000 4d31e613 A tests/Regression/setvbuf-to-full-not-working/runtest.sh +:000000 100644 00000000 4bc7d9fa A tests/Regression/setvbuf-to-full-not-working/testcase.c +:000000 100755 00000000 ed5c6199 A tests/Regression/setvbuf-to-full-not-working/try.exp +:000000 100644 00000000 a1161888 A tests/Sanity/basic-linking-sanity/Makefile +:000000 100644 00000000 9f0038be A tests/Sanity/basic-linking-sanity/PURPOSE +:000000 100644 00000000 2b4f286c A tests/Sanity/basic-linking-sanity/lc.c +:000000 100644 00000000 a3116ebc A tests/Sanity/basic-linking-sanity/lc.golden +:000000 100644 00000000 72612b94 A tests/Sanity/basic-linking-sanity/lm.c +:000000 100644 00000000 ddfa1ca5 A tests/Sanity/basic-linking-sanity/lm.golden +:000000 100644 00000000 65aca15c A tests/Sanity/basic-linking-sanity/lpthread.c +:000000 100644 00000000 e150192d A tests/Sanity/basic-linking-sanity/lpthread.golden +:000000 100644 00000000 2a31e0d2 A tests/Sanity/basic-linking-sanity/lrt.c +:000000 100644 00000000 f5ff068c A tests/Sanity/basic-linking-sanity/lrt.golden +:000000 100644 00000000 743943ad A tests/Sanity/basic-linking-sanity/main.fmf +:000000 100755 00000000 98310786 A tests/Sanity/basic-linking-sanity/runtest.sh +:000000 100644 00000000 011936c5 A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/Makefile +:000000 100644 00000000 bb7a657a A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/PURPOSE +:000000 100644 00000000 c20ca2e8 A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/hello.c +:000000 100644 00000000 965d3d1d A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/interp.c +:000000 100644 00000000 0000dcbb A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/main.fmf +:000000 100755 00000000 91a00d5e A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/runtest.sh +:000000 100644 00000000 52830352 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/Makefile +:000000 100644 00000000 3d7835a0 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/PURPOSE +:000000 100644 00000000 094e50d1 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/cursym.c +:000000 100644 00000000 8a475c4b A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/main.fmf +:000000 100755 00000000 fc01c230 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/runtest.sh +:000000 100644 00000000 6d834baf A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/Makefile +:000000 100644 00000000 00e692c0 A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/PURPOSE +:000000 100644 00000000 63aae5d3 A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/main.fmf +:000000 100755 00000000 64a64508 A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/runtest.sh +:000000 100644 00000000 26974157 A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/symbol.txt commit 221d1d8371b3fd44d2f6a62a48f84bb8dad728ad Author: Arjun Shankar @@ -7145,8 +7265,8 @@ CommitDate: Thu May 26 00:15:13 2022 +0200 - Revert "[AArch64][BZ #17711] Fix extern protected data handling" - elf: Rewrite long RESOLVE_MAP macro to an always_inline static function -:100644 100644 74f2d39 4d50737 M glibc.spec -:100644 100644 1a202ab 6716d86 M sources +:100644 100644 74f2d396 4d507374 M glibc.spec +:100644 100644 1a202abd 6716d868 M sources commit 1d46c32e74ade4971644d8eccfa17478bc29ec35 Author: DJ Delorie @@ -7158,7 +7278,7 @@ CommitDate: Mon May 23 18:02:48 2022 -0400 Forgot the source tarball... -:100644 100644 09b7e19 1a202ab M sources +:100644 100644 09b7e19d 1a202abd M sources commit 9a389a777e917f34b060ad9704092a47036e40e6 Author: DJ Delorie @@ -7209,7 +7329,7 @@ CommitDate: Mon May 23 14:48:40 2022 -0400 - fortify: Ensure that __glibc_fortify condition is a constant [BZ #29141] - Update RISC-V specific ELF definitions -:100644 100644 a42e26c 74f2d39 M glibc.spec +:100644 100644 a42e26c1 74f2d396 M glibc.spec commit eb33d47394fe81a96afaf4f2a5377585a5d5bacf Author: Arjun Shankar @@ -7232,8 +7352,8 @@ CommitDate: Mon May 16 15:16:02 2022 +0200 - Add declare_object_symbol_alias for assembly codes (BZ #28128) - wcrtomb: Make behavior POSIX compliant -:100644 100644 00c0922 a42e26c M glibc.spec -:100644 100644 828e7dd 09b7e19 M sources +:100644 100644 00c0922a a42e26c1 M glibc.spec +:100644 100644 828e7dd5 09b7e19d M sources commit deac763a0428758f2206215f18cec298f13a8c1f Author: Patsy Griffin @@ -7260,8 +7380,8 @@ CommitDate: Tue May 10 17:42:01 2022 -0400 - i386: Remove OPTIMIZE_FOR_GCC_5 from Linux libc-do-syscall.S - manual: Clarify that abbreviations of long options are allowed -:100644 100644 507038b 00c0922 M glibc.spec -:100644 100644 58c07d1 828e7dd M sources +:100644 100644 507038bd 00c0922a M glibc.spec +:100644 100644 58c07d11 828e7dd5 M sources commit e07803b9115a41a0b35be377447175a783e2691e Author: Florian Weimer @@ -7299,8 +7419,8 @@ CommitDate: Tue May 3 09:27:11 2022 +0200 - dlfcn: Do not use rtld_active () to determine ld.so state (bug 29078) - INSTALL: Rephrase -with-default-link documentation -:100644 100644 7ea2ef6 507038b M glibc.spec -:100644 100644 bef4a56 58c07d1 M sources +:100644 100644 7ea2ef61 507038bd M glibc.spec +:100644 100644 bef4a565 58c07d11 M sources commit 1be721e2251b6d750cb87cc74d4a7d985431e59b Author: Carlos O'Donell @@ -7330,9 +7450,9 @@ CommitDate: Tue Apr 26 09:21:36 2022 -0400 - x86: Fix missing __wmemcmp def for disable-multiarch build - elf: Remove __libc_init_secure -:100644 100644 518253d d62d7a2 M glibc-fedora-localedata-rh61908.patch -:100644 100644 7e1b334 7ea2ef6 M glibc.spec -:100644 100644 b0440a8 bef4a56 M sources +:100644 100644 518253d1 d62d7a20 M glibc-fedora-localedata-rh61908.patch +:100644 100644 7e1b3343 7ea2ef61 M glibc.spec +:100644 100644 b0440a8b bef4a565 M sources commit b72082ecfb50108613454d7ff2ca08882b0cd1d0 Author: DJ Delorie @@ -7375,8 +7495,8 @@ CommitDate: Tue Apr 19 17:40:07 2022 -0400 - Add .clang-format style file - manual: Avoid name collision in libm ULP table [BZ #28956] -:100644 100644 dffa513 7e1b334 M glibc.spec -:100644 100644 cfdb68b b0440a8 M sources +:100644 100644 dffa5135 7e1b3343 M glibc.spec +:100644 100644 cfdb68ba b0440a8b M sources commit 12a09a5e16c52bbb8eaa28af14a16adfe7e6ed75 Author: Sergey Kolosov @@ -7386,7 +7506,7 @@ CommitDate: Thu Apr 14 13:33:52 2022 +0000 Regression/locale-archive-test: removes glibc-minimal-langpack -:100755 100755 d47197c 7147736 M tests/Regression/locale-archive-test/runtest.sh +:100755 100755 d47197cc 7147736c M tests/Regression/locale-archive-test/runtest.sh commit 157efe36a24cd1fd6071ca22a992a9f38c1d2a12 Author: Sergey Kolosov @@ -7396,11 +7516,11 @@ CommitDate: Thu Apr 14 13:33:52 2022 +0000 adds Regression/locale-archive-test(glibc-all-langpacks) test -:000000 100644 0000000 187e4e9 A tests/Regression/locale-archive-test/Makefile -:000000 100644 0000000 9cb209c A tests/Regression/locale-archive-test/PURPOSE -:000000 100644 0000000 c0d4e04 A tests/Regression/locale-archive-test/main.fmf -:000000 100755 0000000 d47197c A tests/Regression/locale-archive-test/runtest.sh -:000000 100644 0000000 e2177b9 A tests/Regression/locale-archive-test/test-locale.py +:000000 100644 00000000 187e4e97 A tests/Regression/locale-archive-test/Makefile +:000000 100644 00000000 9cb209ce A tests/Regression/locale-archive-test/PURPOSE +:000000 100644 00000000 c0d4e041 A tests/Regression/locale-archive-test/main.fmf +:000000 100755 00000000 d47197cc A tests/Regression/locale-archive-test/runtest.sh +:000000 100644 00000000 e2177b9b A tests/Regression/locale-archive-test/test-locale.py commit fc646497227a2abbe088da4e87db34635c453ff4 Author: Arjun Shankar @@ -7429,8 +7549,8 @@ CommitDate: Tue Apr 12 02:02:11 2022 +0200 - test-memcpy: Actually reverse source and destination - benchtests: Only build libmvec benchmarks iff $(build-mathvec) is set -:100644 100644 7c1e0c7 dffa513 M glibc.spec -:100644 100644 9baee00 cfdb68b M sources +:100644 100644 7c1e0c74 dffa5135 M glibc.spec +:100644 100644 9baee00b cfdb68ba M sources commit 880449658cfe5a3e6264ac8db6571e44d071c720 Author: Florian Weimer @@ -7440,7 +7560,7 @@ CommitDate: Tue Apr 5 17:41:52 2022 +0200 Add missing newline to %changelog -:100644 100644 1e1217c 7c1e0c7 M glibc.spec +:100644 100644 1e1217c1 7c1e0c74 M glibc.spec commit e900cd3e7738fcc23df24c71b162d9ceda7a119b Author: Florian Weimer @@ -7561,8 +7681,8 @@ CommitDate: Tue Apr 5 17:32:38 2022 +0200 - inet: Fix getnameinfo (NI_NOFQDN) race condition (BZ#28566) - benchtests: make compare_strings.py accept string as attribute value -:100644 100644 c7a7f8a 1e1217c M glibc.spec -:100644 100644 1eb780f 9baee00 M sources +:100644 100644 c7a7f8ae 1e1217c1 M glibc.spec +:100644 100644 1eb780fd 9baee00b M sources commit 98fe3887bce4b301e56558f2711b7d97081e0b05 Author: DJ Delorie @@ -7590,8 +7710,8 @@ CommitDate: Tue Mar 15 15:32:25 2022 -0400 - inet: Fix getnameinfo (NI_NOFQDN) race condition (BZ#28566) - benchtests: make compare_strings.py accept string as attribute value -:100644 100644 19f53a8 c7a7f8a M glibc.spec -:100644 100644 81c2fa6 1eb780f M sources +:100644 100644 19f53a83 c7a7f8ae M glibc.spec +:100644 100644 81c2fa64 1eb780fd M sources commit 18a434fccf653aa4dbe8c0adeae745a645e22c97 Author: Florian Weimer @@ -7601,8 +7721,8 @@ CommitDate: Tue Mar 15 08:57:44 2022 +0100 Trim changelog -:100644 100644 2afbfc5 a0b9a7f M ChangeLog.old -:100644 100644 a7f2250 19f53a8 M glibc.spec +:100644 100644 2afbfc5c a0b9a7f9 M ChangeLog.old +:100644 100644 a7f2250d 19f53a83 M glibc.spec commit 9050623a8cefa0f150c0f1cd063e4fcfe5b2e51c Author: Florian Weimer @@ -7612,9 +7732,9 @@ CommitDate: Thu Mar 10 10:33:17 2022 +0100 Remove downstream-only workaround patches for ppc64le, gettext -:100644 000000 3eda1b2 0000000 D glibc-gettext-snapshot-versioncheck.patch -:100644 000000 bc07046 0000000 D glibc-temp-ibmldbl64.patch -:100644 100644 5410d5f a7f2250 M glibc.spec +:100644 000000 3eda1b27 00000000 D glibc-gettext-snapshot-versioncheck.patch +:100644 000000 bc070468 00000000 D glibc-temp-ibmldbl64.patch +:100644 100644 5410d5f5 a7f2250d M glibc.spec commit 37b89add0a020e4ac3017afb62e6211e48a59bbf Author: Arjun Shankar @@ -7627,8 +7747,8 @@ CommitDate: Wed Mar 9 14:47:49 2022 +0100 It was an nscd related patch and no longer relevant since we don't provide nscd any more. -:100644 000000 0975e0f 0000000 D glibc-rh1070416.patch -:100644 100644 1422638 5410d5f M glibc.spec +:100644 000000 0975e0fa 00000000 D glibc-rh1070416.patch +:100644 100644 14226388 5410d5f5 M glibc.spec commit ca8ff78a60d6dd4dd7e3bc4cc5f37fb57fef0a0d Author: Arjun Shankar @@ -7646,8 +7766,8 @@ CommitDate: Tue Mar 8 17:21:01 2022 +0100 - i386: Remove libc-do-syscall from sysdep-dl-routines [BZ #28936] - linux/i386: remove dead assignment of sysdep-dl-routines -:100644 100644 f1b332f 1422638 M glibc.spec -:100644 100644 d277acd 81c2fa6 M sources +:100644 100644 f1b332f2 14226388 M glibc.spec +:100644 100644 d277acdd 81c2fa64 M sources commit 93272df772bf39dd32befdea99455d8af3501e05 Author: Siddhesh Poyarekar @@ -7660,8 +7780,8 @@ CommitDate: Tue Mar 8 20:24:19 2022 +0530 If the gettext snapshots are deemed official upstream, glibc-gettext-snapshot-versioncheck.patch will be posted upstream. -:000000 100644 0000000 3eda1b2 A glibc-gettext-snapshot-versioncheck.patch -:100644 100644 2fdc2ec f1b332f M glibc.spec +:000000 100644 00000000 3eda1b27 A glibc-gettext-snapshot-versioncheck.patch +:100644 100644 2fdc2ecb f1b332f2 M glibc.spec commit 2b9524042d978032dc6e695ce6d5558d57e38348 Author: Carlos O'Donell @@ -7678,8 +7798,8 @@ CommitDate: Tue Mar 1 23:56:46 2022 -0500 - io: Add fsync call in tst-stat - Linux: Consolidate auxiliary vector parsing (redo) -:100644 100644 c3214af 2fdc2ec M glibc.spec -:100644 100644 d555633 d277acd M sources +:100644 100644 c3214af8 2fdc2ecb M glibc.spec +:100644 100644 d555633b d277acdd M sources commit 199391c59dd655ead362b11d88428e4eb39b196c Author: Arjun Shankar @@ -7722,8 +7842,8 @@ CommitDate: Sat Feb 26 01:32:37 2022 +0100 Related: #2057697 -:100644 100644 6b5788e c3214af M glibc.spec -:100644 100644 103eda0 d555633 M sources +:100644 100644 6b5788ea c3214af8 M glibc.spec +:100644 100644 103eda00 d555633b M sources commit e2ef526535d95faf42b0068fb175ae864c2df0fa Author: Carlos O'Donell @@ -7735,7 +7855,7 @@ CommitDate: Wed Feb 23 23:12:00 2022 -0500 Resolves: #2057697 -:100644 100644 ca04c97 6b5788e M glibc.spec +:100644 100644 ca04c97e 6b5788ea M glibc.spec commit 6079b05db62b18fab4978f4500d860645175ee2c Author: Carlos O'Donell @@ -7748,7 +7868,7 @@ CommitDate: Tue Feb 22 15:39:33 2022 -0500 It should be a soft failure if systemctl fails to execute and we cannot restart all the daemons. -:100644 100644 6b5c599 ca04c97 M glibc.spec +:100644 100644 6b5c599e ca04c97e M glibc.spec commit da2736300eb6c1148da47e84ed369f19b48fbb7f Author: Carlos O'Donell @@ -7800,8 +7920,8 @@ CommitDate: Tue Feb 22 15:29:33 2022 -0500 - elf: Merge dl-sysdep.c into the Linux version - hppa: Fix bind-now audit (BZ #28857) -:100644 100644 4d7bad5 6b5c599 M glibc.spec -:100644 100644 2713b81 103eda0 M sources +:100644 100644 4d7bad5a 6b5c599e M glibc.spec +:100644 100644 2713b81b 103eda00 M sources commit 08e0ad8f78ec22885cd488a55f869b97aa85fb6d Author: Zbigniew Jędrzejewski-Szmek @@ -7847,7 +7967,7 @@ CommitDate: Tue Feb 22 20:38:30 2022 +0100 https://github.com/coreos/rpm-ostree/pull/3453 provides a workaround so that rpm-ostree doesn't choke on this. -:100644 100644 4e95224 4d7bad5 M glibc.spec +:100644 100644 4e952244 4d7bad5a M glibc.spec commit f6ed6cf018f7b3bd10fa2fc038d6a3a68bb4df66 Author: Zbigniew Jędrzejewski-Szmek @@ -7866,7 +7986,7 @@ CommitDate: Tue Feb 22 20:37:07 2022 +0100 an error is printed. At least iconvconfig just seems to fail quietly in case of a problem. -:100644 100644 525173f 4e95224 M glibc.spec +:100644 100644 525173fc 4e952244 M glibc.spec commit 4f7d89c5d312a4d15757259e63fb55f0ff84cc4c Author: Zbigniew Jędrzejewski-Szmek @@ -7879,7 +7999,7 @@ CommitDate: Tue Feb 22 19:55:39 2022 +0100 Our packaging guidelines say that %global is preferred, and with %{expand} the line continuations can be removed. -:100644 100644 3ac699e 525173f M glibc.spec +:100644 100644 3ac699ee 525173fc M glibc.spec commit a0bdca4f3f0b5d8fa83b94baa29aee593a6185d7 Author: Arjun Shankar @@ -7895,7 +8015,7 @@ CommitDate: Tue Feb 15 12:11:07 2022 +0100 Reviewed-by: Florian Weimer -:100644 100644 c581cf7 3ac699e M glibc.spec +:100644 100644 c581cf72 3ac699ee M glibc.spec commit cf979ff812591e7190025c9454ab73a9c31baa5b Author: Arjun Shankar @@ -7915,8 +8035,8 @@ CommitDate: Thu Feb 10 12:00:48 2022 +0100 hardlink is also passed a -c flag so that it actually compares file contents and hardlinks identical ones. -:100644 000000 515611a 0000000 D glibc-fedora-localedef.patch -:100644 100644 415c658 c581cf7 M glibc.spec +:100644 000000 515611a9 00000000 D glibc-fedora-localedef.patch +:100644 100644 415c6586 c581cf72 M glibc.spec commit 12d74d739eb141e7fa15e0c7f02541289a84557a Author: Arjun Shankar @@ -7926,7 +8046,7 @@ CommitDate: Thu Feb 10 11:47:40 2022 +0100 Correct NVR in changelog entry -:100644 100644 657680d 415c658 M glibc.spec +:100644 100644 657680d3 415c6586 M glibc.spec commit 4df8fd5b19030624a0051ac82fd664d080e13ee7 Author: Sergey Kolosov @@ -7936,8 +8056,8 @@ CommitDate: Wed Feb 9 20:39:42 2022 +0100 tests: removes uneeded PURPOSE files -:100644 000000 020631c 0000000 D tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/PURPOSE -:100644 000000 ec6d6a4 0000000 D tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/PURPOSE +:100644 000000 020631ca 00000000 D tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/PURPOSE +:100644 000000 ec6d6a4d 00000000 D tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/PURPOSE commit 7b4342f3e8252a957326800ff6cd447a44e71601 Author: Sergey Kolosov @@ -7947,7 +8067,7 @@ CommitDate: Wed Feb 9 20:38:49 2022 +0100 tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting: fixes multiple vdso64.so files procession -:100755 100755 aa53dde 048beaf M tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/runtest.sh +:100755 100755 aa53dde1 048beaf8 M tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/runtest.sh commit 17eea2064ae9d3593d97f2a3bed21d89ddb0903c Author: Florian Weimer @@ -8001,8 +8121,8 @@ CommitDate: Wed Feb 9 13:17:44 2022 +0100 - string/test-str*cmp: remove stupid_[strcmp, strncmp, wcscmp, wcsncmp]. - Open master branch for glibc 2.36 development -:100644 100644 c6bfe23 657680d M glibc.spec -:100644 100644 5c4b641 2713b81 M sources +:100644 100644 c6bfe23d 657680d3 M glibc.spec +:100644 100644 5c4b6416 2713b81b M sources commit 6d97bdd7b390c954843725de41f684ed86dd83fd Author: Florian Weimer @@ -8012,7 +8132,7 @@ CommitDate: Tue Feb 8 16:37:47 2022 +0100 Mention GCC bug in glibc-temp-ibmldbl64.patch -:100644 100644 7d0418d bc07046 M glibc-temp-ibmldbl64.patch +:100644 100644 7d0418d5 bc070468 M glibc-temp-ibmldbl64.patch commit a7b71f9f73fb5f120d89cffbbfbe035cca17584b Author: Florian Weimer @@ -8027,8 +8147,8 @@ CommitDate: Tue Feb 8 15:53:22 2022 +0100 - Add BZ#28860 reference on NEWS - linux: Fix missing __convert_scm_timestamps (BZ #28860) -:100644 100644 643cbbe c6bfe23 M glibc.spec -:100644 100644 19af4c1 5c4b641 M sources +:100644 100644 643cbbea c6bfe23d M glibc.spec +:100644 100644 19af4c15 5c4b6416 M sources commit f155668f0100811328d48913c1bb32a6a5710018 Author: Florian Weimer @@ -8063,8 +8183,8 @@ CommitDate: Thu Feb 3 15:53:04 2022 +0100 - localedef: Fix handling of empty mon_decimal_point (Bug 28847) - malloc: Fix tst-mallocalign1 macro spacing. -:100644 100644 19b8ea9 643cbbe M glibc.spec -:100644 100644 4471b0b 19af4c1 M sources +:100644 100644 19b8ea96 643cbbea M glibc.spec +:100644 100644 4471b0bd 19af4c15 M sources commit 53b2ec4663f8b88dfc2317d1a9afe4b01ca3bbab Author: Florian Weimer @@ -8098,9 +8218,9 @@ CommitDate: Tue Feb 1 14:48:58 2022 +0100 - elf: Fix use-after-free in ldconfig [BZ #26779] - posix: Add terminal control setting support for posix_spawn -:100644 000000 d91bb8b 0000000 D glibc-temp-Wno-use-after-free.patch -:100644 100644 c9bb5f5 19b8ea9 M glibc.spec -:100644 100644 ac9ef1a 4471b0b M sources +:100644 000000 d91bb8b7 00000000 D glibc-temp-Wno-use-after-free.patch +:100644 100644 c9bb5f53 19b8ea96 M glibc.spec +:100644 100644 ac9ef1ab 4471b0bd M sources commit cdf31c9c27de485cc2a9bec86d8463b597f155e5 Author: Sergey Kolosov @@ -8110,10 +8230,10 @@ CommitDate: Wed Jan 26 14:02:40 2022 +0000 adds Regression/bz2007417-glibc-ldd-segfaults-when-inspecting test case -:000000 100644 0000000 4b79acd A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/Makefile -:000000 100644 0000000 ec6d6a4 A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/PURPOSE -:000000 100644 0000000 bcbba50 A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/main.fmf -:000000 100755 0000000 aa53dde A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/runtest.sh +:000000 100644 00000000 4b79acd4 A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/Makefile +:000000 100644 00000000 ec6d6a4d A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/PURPOSE +:000000 100644 00000000 bcbba50c A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/main.fmf +:000000 100755 00000000 aa53dde1 A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/runtest.sh commit 1fd4834f594f42bfa182013bac80f5ec08c8e072 Author: DJ Delorie @@ -8229,11 +8349,11 @@ CommitDate: Tue Jan 25 10:25:45 2022 -0500 - elf: Also try DT_RUNPATH for LD_AUDIT dlopen [BZ #28455] - elf: Fix tst-linkall-static link when pthread is not in libc -:100644 000000 ffd083c 0000000 D glibc-rh2034715.patch -:000000 100644 0000000 d91bb8b A glibc-temp-Wno-use-after-free.patch -:000000 100644 0000000 7d0418d A glibc-temp-ibmldbl64.patch -:100644 100644 4eab88f c9bb5f5 M glibc.spec -:100644 100644 ddf3416 ac9ef1a M sources +:100644 000000 ffd083c6 00000000 D glibc-rh2034715.patch +:000000 100644 00000000 d91bb8b7 A glibc-temp-Wno-use-after-free.patch +:000000 100644 00000000 7d0418d5 A glibc-temp-ibmldbl64.patch +:100644 100644 4eab88f2 c9bb5f53 M glibc.spec +:100644 100644 ddf34165 ac9ef1ab M sources commit 4cc446aac1ec4e5a7e667703704b03ff4bf403bb Author: Fedora Release Engineering @@ -8245,7 +8365,7 @@ CommitDate: Thu Jan 20 06:12:00 2022 +0000 Signed-off-by: Fedora Release Engineering -:100644 100644 9030018 4eab88f M glibc.spec +:100644 100644 90300189 4eab88f2 M glibc.spec commit 514d6266eb295063b252211057b147b22347717d Author: Florian Weimer @@ -8299,9 +8419,9 @@ CommitDate: Tue Jan 4 15:54:08 2022 +0100 - x86-64: Add vector asin/asinf implementation to libmvec - x86-64: Add vector atan/atanf implementation to libmvec -:100644 100644 aaf45cc 16717a0 M glibc-python3.patch -:100644 100644 351127d 9030018 M glibc.spec -:100644 100644 429d323 ddf3416 M sources +:100644 100644 aaf45cc5 16717a09 M glibc-python3.patch +:100644 100644 351127d5 90300189 M glibc.spec +:100644 100644 429d3233 ddf34165 M sources commit 8d17a555f47be08e4dc8350008ac7f08ae86be6e Author: Florian Weimer @@ -8359,8 +8479,8 @@ CommitDate: Wed Dec 29 07:09:16 2021 +0100 - Update copyright header in recently merged ab_GE locale - fortify: Fix spurious warning with realpath -:100644 100644 8a85e20 351127d M glibc.spec -:100644 100644 a1a1352 429d323 M sources +:100644 100644 8a85e209 351127d5 M glibc.spec +:100644 100644 a1a13522 429d3233 M sources commit 3987f952fb8bb3d38d09bb5c264a34339711fe78 Author: Florian Weimer @@ -8370,8 +8490,8 @@ CommitDate: Tue Dec 28 21:41:25 2021 +0100 armhfp, i686: Revert 64-bit time_t/off_t for internal use (#2034715) -:000000 100644 0000000 ffd083c A glibc-rh2034715.patch -:100644 100644 4870777 8a85e20 M glibc.spec +:000000 100644 00000000 ffd083c6 A glibc-rh2034715.patch +:100644 100644 4870777d 8a85e209 M glibc.spec commit 2762250016e3c2113783307d2cc4faed28871d3e Author: Florian Weimer @@ -8400,8 +8520,8 @@ CommitDate: Fri Dec 17 12:11:27 2021 +0100 - powerpc: Use global register variable in - Use LFS and 64 bit time for installed programs (swbz#15333) -:100644 100644 80ea367 4870777 M glibc.spec -:100644 100644 b32ddee a1a1352 M sources +:100644 100644 80ea3679 4870777d M glibc.spec +:100644 100644 b32ddee4 a1a13522 M sources commit 5c459b73d2ee9b11980f88a17232fd8827c5986d Author: Martin Cermak @@ -8411,8 +8531,8 @@ CommitDate: Thu Dec 16 09:42:18 2021 +0100 CI Gating: Avoid installing conflicting headers -:100644 100644 a684432 828ab9d M gating.yaml -:100644 100644 1e07754 d52cc9b M plans/ci.fmf +:100644 100644 a6844328 828ab9db M gating.yaml +:100644 100644 1e07754a d52cc9b3 M plans/ci.fmf commit 201f88a749e81ef1932e3f2a2ac2743c9ddfb517 Author: Arjun Shankar @@ -8426,7 +8546,7 @@ CommitDate: Wed Dec 15 15:06:18 2021 +0100 the build system and static PIE is enabled by default on architectures that support it. -:100644 100644 d800859 80ea367 M glibc.spec +:100644 100644 d8008596 80ea3679 M glibc.spec commit 2d913ac06a4074a5723646238134ebc1614bf15e Author: Florian Weimer @@ -8444,9 +8564,9 @@ CommitDate: Wed Dec 15 09:35:03 2021 +0100 - NEWS: Document LD_PREFER_MAP_32BIT_EXEC as x86-64 only - elf: Align argument of __munmap to page size [BZ #28676] -:100644 000000 ed69252 0000000 D glibc-fedora-revert-PT_LOAD-segment-align.patch -:100644 100644 5f03910 d800859 M glibc.spec -:100644 100644 2dcc95c b32ddee M sources +:100644 000000 ed692522 00000000 D glibc-fedora-revert-PT_LOAD-segment-align.patch +:100644 100644 5f03910b d8008596 M glibc.spec +:100644 100644 2dcc95c5 b32ddee4 M sources commit 0c78549fbcc7bdf354fb87adf487839604444060 Author: Arjun Shankar @@ -8507,9 +8627,9 @@ CommitDate: Tue Dec 14 15:20:32 2021 +0100 - elf: execve statically linked programs instead of crashing [BZ #28648] - Add --with-timeoutfactor=NUM to specify TIMEOUTFACTOR -:000000 100644 0000000 ed69252 A glibc-fedora-revert-PT_LOAD-segment-align.patch -:100644 100644 4039920 5f03910 M glibc.spec -:100644 100644 659c573 2dcc95c M sources +:000000 100644 00000000 ed692522 A glibc-fedora-revert-PT_LOAD-segment-align.patch +:100644 100644 4039920c 5f03910b M glibc.spec +:100644 100644 659c5736 2dcc95c5 M sources commit a7319f331606123a06209b1370abcbac92990c72 Author: Arjun Shankar @@ -8527,11 +8647,11 @@ CommitDate: Mon Dec 13 13:41:58 2021 +0100 Reviewed-by: Carlos O'Donell -:100644 000000 315b6cd 0000000 D glibc-deprecated-selinux-nscd.patch -:100644 000000 6f8f764 0000000 D glibc-fedora-nscd.patch -:100644 000000 03dee9e 0000000 D glibc-nscd-sysconfig.patch -:100644 100644 20ba1ad 4039920 M glibc.spec -:100644 000000 8a24a78 0000000 D nscd.conf +:100644 000000 315b6cd9 00000000 D glibc-deprecated-selinux-nscd.patch +:100644 000000 6f8f764e 00000000 D glibc-fedora-nscd.patch +:100644 000000 03dee9e9 00000000 D glibc-nscd-sysconfig.patch +:100644 100644 20ba1ada 4039920c M glibc.spec +:100644 000000 8a24a785 00000000 D nscd.conf commit cadee80b1316bc264db044180e20dc1e671ed1ea Author: Pavel Březina @@ -8550,8 +8670,8 @@ CommitDate: Fri Dec 10 17:06:38 2021 +0100 Resolves: rhbz#2023741 -:100644 000000 61f0311 0000000 D glibc-fedora-nsswitch.patch -:100644 100644 bf9ed76 20ba1ad M glibc.spec +:100644 000000 61f03111 00000000 D glibc-fedora-nsswitch.patch +:100644 100644 bf9ed76d 20ba1ada M glibc.spec commit 2a12adcea2a1193fd5d038b0e3f38f12593f5cdc Author: Siddhesh Poyarekar @@ -8567,7 +8687,7 @@ CommitDate: Thu Dec 9 06:29:40 2021 +0530 redhat-rpm-config but when testing with annobin disabled (*and* with a rebased gcc), it may end up unnecessarily making gcc look for annobin. -:100644 100644 8dc33cb bf9ed76 M glibc.spec +:100644 100644 8dc33cbf bf9ed76d M glibc.spec commit 333464235d6ef786d969323c7667327460c5cda7 Author: Martin Cermak @@ -8587,7 +8707,7 @@ CommitDate: Wed Dec 8 14:07:49 2021 +0100 Once the aforementioned CI Infrastructure issue is resolved, we can roll this update back. -:100644 100644 de6a6ec a684432 M gating.yaml +:100644 100644 de6a6ec9 a6844328 M gating.yaml commit 4dc7322afff27b0f190aeb36c7e5d5729514763d Author: Florian Weimer @@ -8599,8 +8719,8 @@ CommitDate: Mon Dec 6 19:04:10 2021 +0100 The build failure was actually due to #2026399. -:100644 000000 842bee3 0000000 D glibc-dso-sort-makefile-fail.patch -:100644 100644 ba4057e 8dc33cb M glibc.spec +:100644 000000 842bee32 00000000 D glibc-dso-sort-makefile-fail.patch +:100644 100644 ba4057ea 8dc33cbf M glibc.spec commit ae249dabba7aaf8b8b4c95ee290cc3b7920db188 Author: Florian Weimer @@ -8625,9 +8745,9 @@ CommitDate: Sat Dec 4 10:20:21 2021 +0100 - elf: Include in tst-tls20.c - hurd: Let report-wait use a weak reference to _hurd_itimer_thread -:100644 000000 188d1c2 0000000 D glibc-rh2026399.patch -:100644 100644 cb76ccd ba4057e M glibc.spec -:100644 100644 0685dc4 659c573 M sources +:100644 000000 188d1c2c 00000000 D glibc-rh2026399.patch +:100644 100644 cb76ccdc ba4057ea M glibc.spec +:100644 100644 0685dc4b 659c5736 M sources commit 11567e7d2046152b9d31f1283b1be000e32a6a89 Author: Florian Weimer @@ -8637,8 +8757,8 @@ CommitDate: Sat Dec 4 04:30:47 2021 +0100 x86_64: Disable additional EVEX string functions (#2026399) -:100644 100644 05d3e40 188d1c2 M glibc-rh2026399.patch -:100644 100644 2e55266 cb76ccd M glibc.spec +:100644 100644 05d3e406 188d1c2c M glibc-rh2026399.patch +:100644 100644 2e55266f cb76ccdc M glibc.spec commit 3717b5ea105cac37fd931ffd6e513af6e3bec20a Author: Florian Weimer @@ -8648,8 +8768,8 @@ CommitDate: Fri Dec 3 18:47:40 2021 +0100 x86_64: Disable EVEX *cmp* string functions (#2026399) -:000000 100644 0000000 05d3e40 A glibc-rh2026399.patch -:100644 100644 d3b9495 2e55266 M glibc.spec +:000000 100644 00000000 05d3e406 A glibc-rh2026399.patch +:100644 100644 d3b94951 2e55266f M glibc.spec commit ba4df9283b57d2339aae92a153dff089feac3514 Author: Florian Weimer @@ -8659,8 +8779,8 @@ CommitDate: Thu Dec 2 16:48:08 2021 +0100 Drop glibc-sdt-headers.patch -:100644 000000 d523439 0000000 D glibc-sdt-headers.patch -:100644 100644 e18d635 d3b9495 M glibc.spec +:100644 000000 d5234396 00000000 D glibc-sdt-headers.patch +:100644 100644 e18d635c d3b94951 M glibc.spec commit 980b253a67feedeb6430e4d961a59bc7f45f0bf0 Author: Carlos O'Donell @@ -8670,7 +8790,7 @@ CommitDate: Tue Nov 30 13:42:01 2021 -0500 Fix sources file for glibc-2.34.9000-22. -:100644 100644 908fcf7 0685dc4 M sources +:100644 100644 908fcf7b 0685dc4b M sources commit 8b7229bf79f7ad0630ead17f812e56aa6debbea8 Author: Carlos O'Donell @@ -8704,7 +8824,7 @@ CommitDate: Tue Nov 30 09:44:01 2021 -0500 - elf: Introduce GLRO (dl_libc_freeres), called from __libc_freeres - nptl: Extract from pthread_cond_common.c -:100644 100644 928dca9 e18d635 M glibc.spec +:100644 100644 928dca94 e18d635c M glibc.spec commit 3e067f11c340ca8407777e1ce5c696d26c7f55b0 Author: Sergey Kolosov @@ -8714,7 +8834,7 @@ CommitDate: Thu Nov 18 21:39:10 2021 +0100 adds glibc-headers-x86 to exclude -:100644 100644 ee06e4a 1e07754 M plans/ci.fmf +:100644 100644 ee06e4af 1e07754a M plans/ci.fmf commit 7a3188c863abcade3adacbc768f4dc2d0466e39a Author: Sergey Kolosov @@ -8724,7 +8844,7 @@ CommitDate: Thu Nov 18 19:24:52 2021 +0100 exclude glibc-headers-s390 -:100644 100644 1ad2c12 ee06e4a M plans/ci.fmf +:100644 100644 1ad2c12f ee06e4af M plans/ci.fmf commit 8d488dc38eff2ea62143977d8020dfb7739df04d Author: Sergey Kolosov @@ -8734,14 +8854,14 @@ CommitDate: Thu Nov 18 16:45:23 2021 +0100 introduce Fedora CI -:000000 100644 0000000 d00491f A .fmf/version -:100644 100644 4776906 de6a6ec M gating.yaml -:000000 100644 0000000 1ad2c12 A plans/ci.fmf -:000000 100644 0000000 2852f58 A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/Makefile -:000000 100644 0000000 020631c A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/PURPOSE -:000000 100644 0000000 a6ec8e2 A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/main.fmf -:000000 100755 0000000 f6c6e2e A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/runtest.sh -:000000 100644 0000000 b8a08ec A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/testlib.cc +:000000 100644 00000000 d00491fd A .fmf/version +:100644 100644 4776906c de6a6ec9 M gating.yaml +:000000 100644 00000000 1ad2c12f A plans/ci.fmf +:000000 100644 00000000 2852f585 A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/Makefile +:000000 100644 00000000 020631ca A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/PURPOSE +:000000 100644 00000000 a6ec8e23 A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/main.fmf +:000000 100755 00000000 f6c6e2e2 A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/runtest.sh +:000000 100644 00000000 b8a08ec4 A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/testlib.cc commit e4ca95809b65179df5f1252817417532a0a7952f Author: Florian Weimer @@ -8751,8 +8871,8 @@ CommitDate: Thu Nov 18 11:20:40 2021 +0100 Temporary patch glibc-dso-sort-makefile-fail.patch, to fix x86_64 build -:000000 100644 0000000 842bee3 A glibc-dso-sort-makefile-fail.patch -:100644 100644 84fbcff 928dca9 M glibc.spec +:000000 100644 00000000 842bee32 A glibc-dso-sort-makefile-fail.patch +:100644 100644 84fbcff4 928dca94 M glibc.spec commit 9633d3541e3e1eda7635f1c7531689f2eb45493a Author: Florian Weimer @@ -8762,8 +8882,8 @@ CommitDate: Wed Nov 17 13:43:22 2021 +0100 Temporarily patch glibc-sdt-headers.patch, to fix s390x build failure -:000000 100644 0000000 d523439 A glibc-sdt-headers.patch -:100644 100644 07c6138 84fbcff M glibc.spec +:000000 100644 00000000 d5234396 A glibc-sdt-headers.patch +:100644 100644 07c61388 84fbcff4 M glibc.spec commit a95e35d1eb6125bb6c8a95beebdcb993411eb1f5 Author: Florian Weimer @@ -8792,8 +8912,8 @@ CommitDate: Wed Nov 17 13:14:39 2021 +0100 - Update syscall lists for Linux 5.15 - s390: Use long branches across object boundaries (jgh instead of jh) -:100644 100644 c0de74b 07c6138 M glibc.spec -:100644 100644 c2498fb 908fcf7 M sources +:100644 100644 c0de74bc 07c61388 M glibc.spec +:100644 100644 c2498fb8 908fcf7b M sources commit b96753c45bdc7700f99222c6df87ab1737951caa Author: Arjun Shankar @@ -8811,8 +8931,8 @@ CommitDate: Tue Nov 16 09:53:27 2021 +0100 Reviewed-by: DJ Delorie -:100644 100644 aafa741 40835d2 M glibc-cs-path.patch -:100644 100644 e738c50 c0de74b M glibc.spec +:100644 100644 aafa7419 40835d25 M glibc-cs-path.patch +:100644 100644 e738c504 c0de74bc M glibc.spec commit e879893635e37842a40d7f6bfc78cebac91d499f Author: Arjun Shankar @@ -8828,8 +8948,8 @@ CommitDate: Wed Nov 10 14:57:42 2021 +0100 - Fix build a chec failures after b05fae4d8e34 - elf: Use the minimal malloc on tunables_strdup -:100644 100644 890b0df e738c50 M glibc.spec -:100644 100644 db8e5e6 c2498fb M sources +:100644 100644 890b0dfc e738c504 M glibc.spec +:100644 100644 db8e5e64 c2498fb8 M sources commit 1f6af199784d4788bb1e53821c40af99f36dd0fe Author: Arjun Shankar @@ -8858,8 +8978,8 @@ CommitDate: Mon Nov 8 22:16:31 2021 +0100 - gconv: Do not emit spurious NUL character in ISO-2022-JP-3 (bug 28524) - [powerpc] Tighten contraints for asm constant parameters -:100644 100644 a83e133 890b0df M glibc.spec -:100644 100644 652242d db8e5e6 M sources +:100644 100644 a83e133b 890b0dfc M glibc.spec +:100644 100644 652242dd db8e5e64 M sources commit 7badc6b64384ac7cf4481c2629895c19d3e85bd9 Author: Patsy Griffin @@ -8885,8 +9005,8 @@ CommitDate: Wed Nov 3 11:40:29 2021 -0400 - x86-64: Remove Prefer_AVX2_STRCMP - x86-64: Improve EVEX strcmp with masked load -:100644 100644 86b7417 a83e133 M glibc.spec -:100644 100644 2c6a823 652242d M sources +:100644 100644 86b74178 a83e133b M glibc.spec +:100644 100644 2c6a823d 652242dd M sources commit ea7e5402a9d7e6b19f390f134a40bdc74e9a1bc8 Author: DJ Delorie @@ -8933,8 +9053,8 @@ CommitDate: Fri Oct 29 13:37:45 2021 -0400 - linux: Fix a possibly non-constant expression in _Static_assert - x86-64: Add sysdeps/x86_64/fpu/Makeconfig -:100644 100644 73c7e1e 86b7417 M glibc.spec -:100644 100644 956c179 2c6a823 M sources +:100644 100644 73c7e1e1 86b74178 M glibc.spec +:100644 100644 956c1790 2c6a823d M sources commit 8deb7f51cc79c72aa9f65de803a8b7c486ff2730 Author: Carlos O'Donell @@ -8967,9 +9087,9 @@ CommitDate: Wed Oct 20 17:35:57 2021 -0400 - x86-64: Add test-vector-abi.h/test-vector-abi-sincos.h - elf: Fix dynamic-link.h usage on rtld.c -:100644 000000 b53fdd0 0000000 D glibc-ld-readonly-revert.patch -:100644 100644 172b133 73c7e1e M glibc.spec -:100644 100644 f533818 956c179 M sources +:100644 000000 b53fdd02 00000000 D glibc-ld-readonly-revert.patch +:100644 100644 172b133e 73c7e1e1 M glibc.spec +:100644 100644 f5338189 956c1790 M sources commit 09d2e07988b000058cc9b4f8736369b6d8c8e3e8 Author: Martin Cermak @@ -8983,7 +9103,7 @@ CommitDate: Mon Oct 18 09:02:15 2021 +0200 downstream. Reflecting that change here to make future syncs easier. -:100644 100644 6b9d39d 4776906 M gating.yaml +:100644 100644 6b9d39de 4776906c M gating.yaml commit 4d06523dc151e6e6ebaa976e074b0dcaf8c657db Author: Arjun Shankar @@ -8993,7 +9113,7 @@ CommitDate: Thu Oct 14 13:59:17 2021 +0200 Update sources file -:100644 100644 cf05965 f533818 M sources +:100644 100644 cf05965d f5338189 M sources commit e7c31c4b27b37af87aad756c52bcd27465e0c31b Author: Arjun Shankar @@ -9026,8 +9146,8 @@ CommitDate: Thu Oct 14 02:33:34 2021 +0200 - io: Fix ftw internal realloc buffer (BZ #28126) - Fix subscript error with odd TZif file [BZ #28338] -:100644 100644 7c2bbf6 b53fdd0 M glibc-ld-readonly-revert.patch -:100644 100644 030e245 172b133 M glibc.spec +:100644 100644 7c2bbf61 b53fdd02 M glibc-ld-readonly-revert.patch +:100644 100644 030e2457 172b133e M glibc.spec commit 7c3f6c985ee4041de78b82313e51f6b1eef6135c Author: Carlos O'Donell @@ -9056,8 +9176,8 @@ CommitDate: Thu Oct 7 10:03:24 2021 -0400 - io: Do not skip timestamps tests for 32-bit time_t - Update to Unicode 14.0.0 [BZ #28390] -:100644 100644 9806f78 030e245 M glibc.spec -:100644 100644 3943053 cf05965 M sources +:100644 100644 9806f78e 030e2457 M glibc.spec +:100644 100644 3943053a cf05965d M sources commit a463a91457ad2ffcd6e21680c25badfb8aee6917 Author: Florian Weimer @@ -9084,8 +9204,8 @@ CommitDate: Fri Oct 1 18:47:58 2021 +0200 - elf: Copy l_addr/l_ld when adding ld.so to a new namespace - powerpc: Fix unrecognized instruction errors with recent binutils -:100644 100644 f9ba0ce 9806f78 M glibc.spec -:100644 100644 1ed9526 3943053 M sources +:100644 100644 f9ba0ce6 9806f78e M glibc.spec +:100644 100644 1ed95269 3943053a M sources commit be77dd73c8c121fdfbac29fc772d929348a05381 Author: Florian Weimer @@ -9124,11 +9244,11 @@ CommitDate: Wed Sep 29 20:32:21 2021 +0200 - vfprintf: Unify argument handling in process_arg - vfprintf: Handle floating-point cases outside of process_arg macro -:100644 000000 528156a 0000000 D glibc-rh1992702-1.patch -:100644 000000 40fe556 0000000 D glibc-rh1992702-2.patch -:100644 000000 e944874 0000000 D glibc-rh1992702-3.patch -:100644 100644 34e78a5 f9ba0ce M glibc.spec -:100644 100644 e67f346 1ed9526 M sources +:100644 000000 528156a2 00000000 D glibc-rh1992702-1.patch +:100644 000000 40fe5562 00000000 D glibc-rh1992702-2.patch +:100644 000000 e9448740 00000000 D glibc-rh1992702-3.patch +:100644 100644 34e78a53 f9ba0ce6 M glibc.spec +:100644 100644 e67f346b 1ed95269 M sources commit 35da738a8eacc69a01d04c19f0fb7092761f2aca Author: Florian Weimer @@ -9138,8 +9258,8 @@ CommitDate: Thu Sep 23 12:36:39 2021 +0200 Fix ppc64le build failure by reverting DL_RO_DYN_SECTION removal -:000000 100644 0000000 7c2bbf6 A glibc-ld-readonly-revert.patch -:100644 100644 14a1898 34e78a5 M glibc.spec +:000000 100644 00000000 7c2bbf61 A glibc-ld-readonly-revert.patch +:100644 100644 14a1898d 34e78a53 M glibc.spec commit 9fe7756cf7b1ad466d6ace2f34060493519272d4 Author: Florian Weimer @@ -9175,8 +9295,8 @@ CommitDate: Thu Sep 23 11:00:44 2021 +0200 - Redirect fma calls to __fma in libm - time: Fix compile error in itimer test affecting hurd -:100644 100644 5bfa6e9 14a1898 M glibc.spec -:100644 100644 e7dd92d e67f346 M sources +:100644 100644 5bfa6e95 14a1898d M glibc.spec +:100644 100644 e7dd92d1 e67f346b M sources commit 8132174436c5250dae702512b1e353dcb7e08292 Author: Martin Cermak @@ -9188,7 +9308,7 @@ CommitDate: Thu Sep 16 13:47:47 2021 +0200 Enable baseos-qe.brew-build.scratch-build.validation in RHEL-9 gating. -:100644 100644 770f481 6b9d39d M gating.yaml +:100644 100644 770f4818 6b9d39de M gating.yaml commit 7d28ddf24cec1be239b3f6dcf6cd1f281ff0be48 Author: Florian Weimer @@ -9198,10 +9318,10 @@ CommitDate: Wed Sep 15 12:09:06 2021 +0200 Use system CPU count for sysconf(_SC_NPROCESSORS_*) (#1992702) -:000000 100644 0000000 528156a A glibc-rh1992702-1.patch -:000000 100644 0000000 40fe556 A glibc-rh1992702-2.patch -:000000 100644 0000000 e944874 A glibc-rh1992702-3.patch -:100644 100644 5d009ac 5bfa6e9 M glibc.spec +:000000 100644 00000000 528156a2 A glibc-rh1992702-1.patch +:000000 100644 00000000 40fe5562 A glibc-rh1992702-2.patch +:000000 100644 00000000 e9448740 A glibc-rh1992702-3.patch +:100644 100644 5d009ac2 5bfa6e95 M glibc.spec commit 4476c131c309524b7b68c4bb85ad0f758c2faee7 Author: Florian Weimer @@ -9228,8 +9348,8 @@ CommitDate: Wed Sep 15 11:23:02 2021 +0200 - _Static_assert needs two arguments for compatibility with GCC before 9 - testrun.sh: Add support for --tool=rpctrace -:100644 100644 2de3117 5d009ac M glibc.spec -:100644 100644 8c6fdd2 e7dd92d M sources +:100644 100644 2de31175 5d009ac2 M glibc.spec +:100644 100644 8c6fdd26 e7dd92d1 M sources commit b7fe0018cc002dfd2b6554859ef8bb31fba5e63b Author: Martin Cermak @@ -9244,7 +9364,7 @@ CommitDate: Mon Sep 13 10:29:04 2021 +0200 [1] https://pagure.io/fedora-ci/general/issue/263 -:100644 100644 9be3596 770f481 M gating.yaml +:100644 100644 9be35967 770f4818 M gating.yaml commit 891183e565daa6ae87388e2c6dbb25225216e28d Author: Patsy Griffin @@ -9274,9 +9394,9 @@ CommitDate: Fri Sep 10 11:23:26 2021 -0400 - hurd msync: Drop bogus test - hurd: Fix typo in msync -:100644 000000 a4cf357 0000000 D glibc-c-utf8-locale.patch -:100644 100644 325ca09 2de3117 M glibc.spec -:100644 100644 acd9ada 8c6fdd2 M sources +:100644 000000 a4cf357a 00000000 D glibc-c-utf8-locale.patch +:100644 100644 325ca09f 2de31175 M glibc.spec +:100644 100644 acd9adaa 8c6fdd26 M sources commit 80230e6916ab77188e0fa5504e0cb31569615605 Author: Florian Weimer @@ -9299,8 +9419,8 @@ CommitDate: Tue Aug 31 11:34:53 2021 +0200 - llio.texi: Wording fixes in description of closefrom() - Fix error message in memmove test to display correct src pointer -:100644 100644 e343bfd 325ca09 M glibc.spec -:100644 100644 f7fc76f acd9ada M sources +:100644 100644 e343bfd4 325ca09f M glibc.spec +:100644 100644 f7fc76f6 acd9adaa M sources commit 9e3889df746bd384303ebc964eb8e66d2fad44ed Author: Arjun Shankar @@ -9330,8 +9450,8 @@ CommitDate: Wed Aug 25 22:54:04 2021 +0200 - riscv: Drop reliance on _GLOBAL_OFFSET_TABLE_[0] - Remove sysdeps/*/tls-macros.h -:100644 100644 59fd960 e343bfd M glibc.spec -:100644 100644 4f7803b f7fc76f M sources +:100644 100644 59fd960c e343bfd4 M glibc.spec +:100644 100644 4f7803b3 f7fc76f6 M sources commit 94957f065594ed4bd7f6d36319e98fd97dc131f1 Author: Siddhesh Poyarekar @@ -9346,7 +9466,7 @@ CommitDate: Tue Aug 24 19:30:06 2021 +0530 Resolves: #1985048 -:100644 100644 8e1fd21 59fd960 M glibc.spec +:100644 100644 8e1fd21c 59fd960c M glibc.spec commit a5d3c595e7767f442428beef59739da22d0500f0 Author: DJ Delorie @@ -9365,8 +9485,8 @@ CommitDate: Tue Aug 17 16:41:43 2021 -0400 - mips: increase stack alignment in clone to match the ABI - mips: align stack in clone [BZ #28223] -:100644 100644 a995577 8e1fd21 M glibc.spec -:100644 100644 7c27b6f 4f7803b M sources +:100644 100644 a9955775 8e1fd21c M glibc.spec +:100644 100644 7c27b6f6 4f7803b3 M sources commit 420fe1da6624fd9e890c62db8b24fd00ee41b41a Author: Arjun Shankar @@ -9416,8 +9536,8 @@ CommitDate: Thu Aug 12 15:29:32 2021 +0200 - Remove obsolete comments/name from acos-inputs, since slow path was removed. - Open master branch for glibc 2.35 development -:100644 100644 ff5457c a995577 M glibc.spec -:100644 100644 e59ed2f 7c27b6f M sources +:100644 100644 ff5457cc a9955775 M glibc.spec +:100644 100644 e59ed2f3 7c27b6f6 M sources commit 1ecf8017eb2435f7cd973f5bbb5d6128c37f95f9 Author: Florian Weimer @@ -9436,8 +9556,8 @@ CommitDate: Mon Aug 2 08:08:11 2021 +0200 - NEWS: Fix typos, grammar, and missing words - elf: Fix audit regression -:100644 100644 234f12b ff5457c M glibc.spec -:100644 100644 21eb817 e59ed2f M sources +:100644 100644 234f12bf ff5457cc M glibc.spec +:100644 100644 21eb817a e59ed2f3 M sources commit ca0613665ce6e1b4e92dadd3660ad39cf3dc5f3e Author: Siddhesh Poyarekar @@ -9450,7 +9570,7 @@ CommitDate: Sat Jul 31 01:04:25 2021 +0530 Resolves: #1988344 -:100644 100644 3a627e0 234f12b M glibc.spec +:100644 100644 3a627e0f 234f12bf M glibc.spec commit 88d9dfdf11fa2b527b89daaaa72dd38475a5cea6 Author: Florian Weimer @@ -9472,8 +9592,8 @@ CommitDate: Thu Jul 29 09:43:22 2021 +0200 - manual: Drop the .so suffix in libc_malloc_debug description - hurd: _Fork: unlock malloc before calling fork child hooks -:100644 100644 17c9a04 3a627e0 M glibc.spec -:100644 100644 97bee88 21eb817 M sources +:100644 100644 17c9a042 3a627e0f M glibc.spec +:100644 100644 97bee88b 21eb817a M sources commit bcce160baadc1d0be7bf91f80b1dd597528f03e7 Author: Florian Weimer @@ -9483,9 +9603,9 @@ CommitDate: Tue Jul 27 18:57:57 2021 +0200 Revert to old C.UTF-8 locale -:100644 100644 03d5983 a4cf357 M glibc-c-utf8-locale.patch -:100644 000000 9b90a22 0000000 D glibc-c-utf8-strcmp_collation.patch -:100644 100644 1f93397 17c9a04 M glibc.spec +:100644 100644 03d5983a a4cf357a M glibc-c-utf8-locale.patch +:100644 000000 9b90a223 00000000 D glibc-c-utf8-strcmp_collation.patch +:100644 100644 1f933976 17c9a042 M glibc.spec commit 51ca5d3334c3cd353de15ca124054eec7704b3cc Author: Siddhesh Poyarekar @@ -9498,7 +9618,7 @@ CommitDate: Mon Jul 26 20:32:19 2021 +0530 Bring back dependency weakening on glibc-gconv-extra and have glibc conditionally depend on it if redhat-rpm-config is present. -:100644 100644 ec22ca4 1f93397 M glibc.spec +:100644 100644 ec22ca46 1f933976 M glibc.spec commit 8f6143c8268edeeec027d2680fb67000d19cc13e Author: Florian Weimer @@ -9508,9 +9628,9 @@ CommitDate: Mon Jul 26 09:26:07 2021 +0200 Switch to new version of C.UTF-8 locale -:100644 100644 a4cf357 03d5983 M glibc-c-utf8-locale.patch -:000000 100644 0000000 9b90a22 A glibc-c-utf8-strcmp_collation.patch -:100644 100644 51b90ea ec22ca4 M glibc.spec +:100644 100644 a4cf357a 03d5983a M glibc-c-utf8-locale.patch +:000000 100644 00000000 9b90a223 A glibc-c-utf8-strcmp_collation.patch +:100644 100644 51b90eaa ec22ca46 M glibc.spec commit c4a47573b460e773fe70b2d73777db42ce241a70 Author: Florian Weimer @@ -9525,8 +9645,8 @@ CommitDate: Mon Jul 26 07:46:13 2021 +0200 - Exclude static tests for mcheck and malloc-check - i386: Regenerate ulps -:100644 100644 17aed54 51b90ea M glibc.spec -:100644 100644 7e6ef9c 97bee88 M sources +:100644 100644 17aed54c 51b90eaa M glibc.spec +:100644 100644 7e6ef9c3 97bee88b M sources commit 95bdbb905ded5e2d0ebc4c14d331ba3232e75310 Author: Florian Weimer @@ -9542,8 +9662,8 @@ CommitDate: Sat Jul 24 17:24:48 2021 +0200 - x86: Install [BZ #27958] - Fix build and tests with --disable-tunables -:100644 100644 01dc5a2 17aed54 M glibc.spec -:100644 100644 a07b3f7 7e6ef9c M sources +:100644 100644 01dc5a26 17aed54c M glibc.spec +:100644 100644 a07b3f7b 7e6ef9c3 M sources commit 44bdf7a54c651e027445ed4e2426d964b93ba78b Author: Florian Weimer @@ -9553,7 +9673,7 @@ CommitDate: Sat Jul 24 12:23:35 2021 +0200 Remove both old and new library names in glibc-hwcaps removal (#1983677) -:100644 100644 2022d4e 01dc5a2 M glibc.spec +:100644 100644 2022d4e2 01dc5a26 M glibc.spec commit ac81c2f6e66487ef135003e60ea5e58abd324769 Author: Florian Weimer @@ -9584,8 +9704,8 @@ CommitDate: Fri Jul 23 09:44:00 2021 +0200 - ARC: elf: make type safe - ARC: fp: (micro)optimize FPU_STATUS read by eliding FWE bit clearing -:100644 100644 16ac0d9 2022d4e M glibc.spec -:100644 100644 43c35af a07b3f7 M sources +:100644 100644 16ac0d90 2022d4e2 M glibc.spec +:100644 100644 43c35af6 a07b3f7b M sources commit d299f6bf485bbd32ed5fa09b57f4c3cf535b4ced Author: Florian Weimer @@ -9597,7 +9717,7 @@ CommitDate: Fri Jul 23 09:34:28 2021 +0200 This reverts commit 455e25392f9b0b3565df23454f1fbc3f59954363. -:100644 100644 7e95adf 16ac0d9 M glibc.spec +:100644 100644 7e95adf7 16ac0d90 M glibc.spec commit d97901cc982c64767e09c11eea0e8e61cabfa7e5 Author: Fedora Release Engineering @@ -9609,7 +9729,7 @@ CommitDate: Thu Jul 22 01:48:30 2021 +0000 Signed-off-by: Fedora Release Engineering -:100644 100644 15b251f 7e95adf M glibc.spec +:100644 100644 15b251ff 7e95adf7 M glibc.spec commit 455e25392f9b0b3565df23454f1fbc3f59954363 Author: Florian Weimer @@ -9619,7 +9739,7 @@ CommitDate: Wed Jul 21 22:35:57 2021 +0200 Add kludge to stop auto-rebuild during the mass rebuild -:100644 100644 1c1facc 15b251f M glibc.spec +:100644 100644 1c1faccd 15b251ff M glibc.spec commit 0dd019042191140d2ae461c0ed4c6002f1080e5e Author: Florian Weimer @@ -9643,8 +9763,8 @@ CommitDate: Wed Jul 21 13:17:45 2021 +0200 - elf: Fix tst-cpu-features-cpuinfo on some AMD systems (BZ #28090) - i386: Add the clone3 wrapper -:100644 100644 4d79ea7 1c1facc M glibc.spec -:100644 100644 6dc7354 43c35af M sources +:100644 100644 4d79ea73 1c1faccd M glibc.spec +:100644 100644 6dc73541 43c35af6 M sources commit 42e2f742693386118fbb0dfeff89f12e6a0be8e7 Author: Florian Weimer @@ -9654,7 +9774,7 @@ CommitDate: Mon Jul 19 15:59:29 2021 +0200 Remove glibc-hwcaps multilibs on upgrade (#1983677) -:100644 100644 2f40c6a 4d79ea7 M glibc.spec +:100644 100644 2f40c6a8 4d79ea73 M glibc.spec commit 9b46862a3b7bc95688ba07c81cb7bb86231ecda1 Author: Florian Weimer @@ -9711,8 +9831,8 @@ CommitDate: Mon Jul 19 10:35:25 2021 +0200 - posix: Ignore non opened files on tst-spawn5 - mcheck: Align struct hdr to MALLOC_ALIGNMENT bytes [BZ #28068] -:100644 100644 4959bb2 2f40c6a M glibc.spec -:100644 100644 5f03c72 6dc7354 M sources +:100644 100644 4959bb20 2f40c6a8 M glibc.spec +:100644 100644 5f03c726 6dc73541 M sources commit d543beb3de2dc7822948d51b552f006a8986def1 Author: Siddhesh Poyarekar @@ -9728,7 +9848,7 @@ CommitDate: Thu Jul 15 20:28:22 2021 +0530 - Rearrange file list command so that gconv-modules.cache is no longer marked as %config -:100644 100644 3a86505 4959bb2 M glibc.spec +:100644 100644 3a865058 4959bb20 M glibc.spec commit 7d6321464f0a194a232c2f5b5f84780570ddfa30 Author: Florian Weimer @@ -9738,7 +9858,7 @@ CommitDate: Tue Jul 13 16:01:01 2021 +0200 Fix incorrect references to #1975895 in %changelog -:100644 100644 7e2b851 3a86505 M glibc.spec +:100644 100644 7e2b8516 3a865058 M glibc.spec commit 6534cdc8bf66363b66a72e13444a19fac2df60d7 Author: Florian Weimer @@ -9748,7 +9868,7 @@ CommitDate: Tue Jul 13 15:32:56 2021 +0200 Perform systemd re-exec even if glibc.i686 is installed -:100644 100644 63f165e 7e2b851 M glibc.spec +:100644 100644 63f165e6 7e2b8516 M glibc.spec commit 1c62f46f1696560b81ec14b88bf70f24a8faae77 Author: Florian Weimer @@ -9758,7 +9878,7 @@ CommitDate: Tue Jul 13 14:13:46 2021 +0200 Re-exec systemd on upgrades -:100644 100644 861748e 63f165e M glibc.spec +:100644 100644 861748eb 63f165e6 M glibc.spec commit 0c7c3bcb8d8606a92c85e0d940c3555e93521cb5 Author: Florian Weimer @@ -9812,8 +9932,8 @@ CommitDate: Mon Jul 12 23:20:23 2021 +0200 - Update kernel version to 5.13 in tst-mman-consts.py - tests-exclude-mcheck: Fix typo -:100644 100644 88aff45 861748e M glibc.spec -:100644 100644 56ace92 5f03c72 M sources +:100644 100644 88aff453 861748eb M glibc.spec +:100644 100644 56ace92f 5f03c726 M sources commit f63ef9c9d9c165f53d15f88411666467fea65f19 Author: Florian Weimer @@ -9838,8 +9958,8 @@ CommitDate: Wed Jul 7 09:38:01 2021 +0200 - linux: Consolidate Linux getsockopt implementation - manual: fix description for preadv() -:100644 100644 3e527f3 88aff45 M glibc.spec -:100644 100644 50f682d 56ace92 M sources +:100644 100644 3e527f37 88aff453 M glibc.spec +:100644 100644 50f682dd 56ace92f M sources commit 3d96f5f94f3007f51ac2bb52ee65ab3cc19d24b8 Author: Florian Weimer @@ -9854,8 +9974,8 @@ CommitDate: Tue Jul 6 14:35:13 2021 +0200 - linux: Check for null value msghdr struct before use - elf: Call free from base namespace on error in dl-libc.c [BZ #27646] -:100644 100644 dac3102 3e527f3 M glibc.spec -:100644 100644 13fc8e9 50f682d M sources +:100644 100644 dac3102e 3e527f37 M glibc.spec +:100644 100644 13fc8e94 50f682dd M sources commit 8479d6740a4c2f202d58bd56e3db7a1eeea46404 Author: Florian Weimer @@ -9885,8 +10005,8 @@ CommitDate: Mon Jul 5 06:00:05 2021 +0200 - AArch64: Add hp-timing.h - AArch64: Improve strnlen performance -:100644 100644 a894b21 dac3102 M glibc.spec -:100644 100644 ebd258d 13fc8e9 M sources +:100644 100644 a894b21e dac3102e M glibc.spec +:100644 100644 ebd258df 13fc8e94 M sources commit b4f030ae95a143b37ab8a667010b592846de39cb Author: Florian Weimer @@ -9901,8 +10021,8 @@ CommitDate: Wed Jun 30 17:51:11 2021 +0200 - Linux: Avoid calling malloc indirectly from __get_nprocs (#1975693) - Use Linux 5.13 in build-many-glibcs.py -:100644 100644 821f314 a894b21 M glibc.spec -:100644 100644 ab81f42 ebd258d M sources +:100644 100644 821f3146 a894b21e M glibc.spec +:100644 100644 ab81f42b ebd258df M sources commit afd298e6ebffb07158546218e910660b157ec928 Author: Florian Weimer @@ -9923,9 +10043,9 @@ CommitDate: Wed Jun 30 10:05:05 2021 +0200 - s390x: Update math: redirect roundeven function - posix: Add _Fork [BZ #4737] -:100644 000000 087d4cc 0000000 D glibc-s390x-roundeven.patch -:100644 100644 bfdb3e9 821f314 M glibc.spec -:100644 100644 8df4cdf ab81f42 M sources +:100644 000000 087d4ccb 00000000 D glibc-s390x-roundeven.patch +:100644 100644 bfdb3e95 821f3146 M glibc.spec +:100644 100644 8df4cdfb ab81f42b M sources commit d7e27f58954348ed3eccb128eaf8abbda87aa3e7 Author: Florian Weimer @@ -9935,7 +10055,7 @@ CommitDate: Mon Jun 28 22:47:46 2021 +0200 Move librt.a to glibc-devel (#1977058) -:100644 100644 5e78f8f bfdb3e9 M glibc.spec +:100644 100644 5e78f8fc bfdb3e95 M glibc.spec commit 2be319ff45befffec78c101c3fcf441bb2ea362f Author: Florian Weimer @@ -9945,7 +10065,7 @@ CommitDate: Mon Jun 28 19:55:57 2021 +0200 Upload glibc-2.33.9000-826-gdd45734e32.tar.xz -:100644 100644 661427b 8df4cdf M sources +:100644 100644 661427b2 8df4cdfb M sources commit 21ebc4cbaa6f44f328d02a2e57f21297e38566c5 Author: Florian Weimer @@ -9979,16 +10099,16 @@ CommitDate: Mon Jun 28 19:45:06 2021 +0200 - x86_64: roundeven with sse4.1 support - math: redirect roundeven function -:100644 000000 4b18758 0000000 D glibc-iconvconfig-corruption.patch -:100644 000000 b40f026 0000000 D glibc-libthread_db-dynsym-1.patch -:100644 000000 0ecd4ba 0000000 D glibc-libthread_db-dynsym-2.patch -:100644 000000 1ce2ced 0000000 D glibc-libthread_db-dynsym-3.patch -:100644 000000 767b6a2 0000000 D glibc-nosymlink-1.patch -:100644 000000 92c330b 0000000 D glibc-nosymlink-2.patch -:100644 000000 07d6625 0000000 D glibc-nosymlink-3.patch -:100644 000000 7a292f0 0000000 D glibc-nosymlink-4.patch -:000000 100644 0000000 087d4cc A glibc-s390x-roundeven.patch -:100644 100644 d313141 5e78f8f M glibc.spec +:100644 000000 4b18758d 00000000 D glibc-iconvconfig-corruption.patch +:100644 000000 b40f0260 00000000 D glibc-libthread_db-dynsym-1.patch +:100644 000000 0ecd4ba5 00000000 D glibc-libthread_db-dynsym-2.patch +:100644 000000 1ce2ced7 00000000 D glibc-libthread_db-dynsym-3.patch +:100644 000000 767b6a2b 00000000 D glibc-nosymlink-1.patch +:100644 000000 92c330ba 00000000 D glibc-nosymlink-2.patch +:100644 000000 07d66251 00000000 D glibc-nosymlink-3.patch +:100644 000000 7a292f02 00000000 D glibc-nosymlink-4.patch +:000000 100644 00000000 087d4ccb A glibc-s390x-roundeven.patch +:100644 100644 d3131414 5e78f8fc M glibc.spec commit d3fad65ba1c3c9d1cfa395cb93243962a9632cf4 Author: Florian Weimer @@ -9998,11 +10118,11 @@ CommitDate: Mon Jun 28 12:33:02 2021 +0200 Switch to new version of libthread_db .dynsym patch -:000000 100644 0000000 b40f026 A glibc-libthread_db-dynsym-1.patch -:000000 100644 0000000 0ecd4ba A glibc-libthread_db-dynsym-2.patch -:000000 100644 0000000 1ce2ced A glibc-libthread_db-dynsym-3.patch -:100644 000000 0fdc8c4 0000000 D glibc-libthread_db-dynsym.patch -:100644 100644 3b97f3f d313141 M glibc.spec +:000000 100644 00000000 b40f0260 A glibc-libthread_db-dynsym-1.patch +:000000 100644 00000000 0ecd4ba5 A glibc-libthread_db-dynsym-2.patch +:000000 100644 00000000 1ce2ced7 A glibc-libthread_db-dynsym-3.patch +:100644 000000 0fdc8c42 00000000 D glibc-libthread_db-dynsym.patch +:100644 100644 3b97f3fe d3131414 M glibc.spec commit 5b63da3fa54fab887d5ffcaec08eee200cc73b39 Author: Florian Weimer @@ -10012,8 +10132,8 @@ CommitDate: Mon Jun 28 09:29:49 2021 +0200 Further .symtab adjustment: Keep all __GI_* symbols (#1975859) -:100644 100644 3ef3e2d 3b97f3f M glibc.spec -:100644 100644 84b3202 6a558df M wrap-find-debuginfo.sh +:100644 100644 3ef3e2d0 3b97f3fe M glibc.spec +:100644 100644 84b32028 6a558df9 M wrap-find-debuginfo.sh commit 4f2dd301cc557d291f63f1f218c9b3766d04fc44 Author: Florian Weimer @@ -10023,8 +10143,8 @@ CommitDate: Mon Jun 28 07:49:20 2021 +0200 Keep most of .symtab in libc.so.6 (#1975859) -:100644 100644 7f0ff38 3ef3e2d M glibc.spec -:100644 100644 8c42c9d 84b3202 M wrap-find-debuginfo.sh +:100644 100644 7f0ff386 3ef3e2d0 M glibc.spec +:100644 100644 8c42c9d3 84b32028 M wrap-find-debuginfo.sh commit 40177ead738387de6b83b066e0a8e508f5f55abb Author: Martin Cermak @@ -10034,7 +10154,7 @@ CommitDate: Mon Jun 28 06:43:17 2021 +0200 gating.yaml: Allow smooth 1:1 sync between Fedora and c9s -:100644 100644 ac6d3d8 9be3596 M gating.yaml +:100644 100644 ac6d3d80 9be35967 M gating.yaml commit 0034c1747f089ac1974aa88e9fd7e259fb38c504 Author: Florian Weimer @@ -10044,8 +10164,8 @@ CommitDate: Sun Jun 27 19:07:54 2021 +0200 Apply emergency patch to fix iconvconfig corruption -:000000 100644 0000000 4b18758 A glibc-iconvconfig-corruption.patch -:100644 100644 42056ed 7f0ff38 M glibc.spec +:000000 100644 00000000 4b18758d A glibc-iconvconfig-corruption.patch +:100644 100644 42056ed8 7f0ff386 M glibc.spec commit 814203878324077ada1b876a39b98b643686fa5c Author: Florian Weimer @@ -10055,8 +10175,8 @@ CommitDate: Sun Jun 27 18:17:14 2021 +0200 Adjust glibc.req so that egrep does not cause eu-readelf to fail -:100644 100644 3f922d1 9fb7f76 M glibc.req.in -:100644 100644 7712174 42056ed M glibc.spec +:100644 100644 3f922d1c 9fb7f768 M glibc.req.in +:100644 100644 77121743 42056ed8 M glibc.spec commit 22321f2b3131a7e9dd312a42eafcb70bd37b4abf Author: Florian Weimer @@ -10146,10 +10266,10 @@ CommitDate: Sun Jun 27 17:36:14 2021 +0200 - elf: Use _dl_catch_error from base namespace in dl-libc.c [BZ #27646] - Makeconfig: Fix time64-compat.mk target -:100644 100644 76080d4 07d6625 M glibc-nosymlink-3.patch -:100644 000000 003f495 0000000 D glibc-revert-dtv-gap-reuse.patch -:100644 100644 5568230 7712174 M glibc.spec -:100644 100644 f70d44f 661427b M sources +:100644 100644 76080d46 07d66251 M glibc-nosymlink-3.patch +:100644 000000 003f495a 00000000 D glibc-revert-dtv-gap-reuse.patch +:100644 100644 55682309 77121743 M glibc.spec +:100644 100644 f70d44fd 661427b2 M sources commit 700394c8ed3c3db06fe2c3b4667a33896d3b1e74 Author: Florian Weimer @@ -10159,9 +10279,9 @@ CommitDate: Sun Jun 27 15:11:49 2021 +0200 Add automatic requires if building against glibc development snapshots -:000000 100644 0000000 fddfd91 A glibc.attr -:000000 100644 0000000 3f922d1 A glibc.req.in -:100644 100644 07018c4 5568230 M glibc.spec +:000000 100644 00000000 fddfd91f A glibc.attr +:000000 100644 00000000 3f922d1c A glibc.req.in +:100644 100644 07018c46 55682309 M glibc.spec commit 947a02c4adfd688958d54b46e5d30891e6ef2b66 Author: Carlos O'Donell @@ -10171,8 +10291,8 @@ CommitDate: Thu Jun 24 11:32:41 2021 -0400 Fix thread local storage corruption (#1974970) -:000000 100644 0000000 003f495 A glibc-revert-dtv-gap-reuse.patch -:100644 100644 9aaf429 07018c4 M glibc.spec +:000000 100644 00000000 003f495a A glibc-revert-dtv-gap-reuse.patch +:100644 100644 9aaf4297 07018c46 M glibc.spec commit 063fe63eafa95997fdb27c1015629aa64c21758d Author: Siddhesh Poyarekar @@ -10185,7 +10305,7 @@ CommitDate: Tue Jun 22 19:56:05 2021 +0530 Have glibc require glibc-gconv-extra for now until we figure out a way to do this with minimal external impact. -:100644 100644 4c530ea 9aaf429 M glibc.spec +:100644 100644 4c530eae 9aaf4297 M glibc.spec commit c20fde6a69e73fd208df64f92a2bc221f058dfed Author: Florian Weimer @@ -10195,7 +10315,7 @@ CommitDate: Fri Jun 18 16:13:03 2021 +0200 Make glibc-all-langpacks require glibc-gconv-extra in buildroots (#1973663) -:100644 100644 a28fff8 4c530ea M glibc.spec +:100644 100644 a28fff85 4c530eae M glibc.spec commit 52d094802284787ac06b100850f05b76ac81d5de Author: Florian Weimer @@ -10205,8 +10325,8 @@ CommitDate: Thu Jun 17 20:31:32 2021 +0200 Export libthread_db symbols under GLBIC_PRIVATE (#1965374) -:000000 100644 0000000 0fdc8c4 A glibc-libthread_db-dynsym.patch -:100644 100644 e862db7 a28fff8 M glibc.spec +:000000 100644 00000000 0fdc8c42 A glibc-libthread_db-dynsym.patch +:100644 100644 e862db76 a28fff85 M glibc.spec commit 14d5c92a57c6f554ff644aef25adbac9132eb37b Author: Florian Weimer @@ -10216,8 +10336,8 @@ CommitDate: Thu Jun 17 14:48:39 2021 +0200 Redo the crafted libc.so.6 symbol table for valgrind (#1965374) -:100644 100644 fd381df e862db7 M glibc.spec -:100644 100644 e73f264 8c42c9d M wrap-find-debuginfo.sh +:100644 100644 fd381df1 e862db76 M glibc.spec +:100644 100644 e73f2646 8c42c9d3 M wrap-find-debuginfo.sh commit 654f636b32883f699cef84cf1c1e00b8c1ce1e3f Author: Florian Weimer @@ -10231,8 +10351,8 @@ CommitDate: Thu Jun 17 10:31:26 2021 +0200 no longer matches the specially crafted copy of libc.so.6 with its minimal .symtab. -:100644 100644 39b4a2f fd381df M glibc.spec -:100644 100644 2f3be44 e73f264 M wrap-find-debuginfo.sh +:100644 100644 39b4a2f8 fd381df1 M glibc.spec +:100644 100644 2f3be44c e73f2646 M wrap-find-debuginfo.sh commit b5405a57adf55bca738cd3b991fef04dde3fb132 Author: Florian Weimer @@ -10242,8 +10362,8 @@ CommitDate: Thu Jun 17 09:31:35 2021 +0200 Drop glibc-rh697421.patch (#1972520) -:100644 000000 51b95de 0000000 D glibc-rh697421.patch -:100644 100644 45731a0 39b4a2f M glibc.spec +:100644 000000 51b95dec 00000000 D glibc-rh697421.patch +:100644 100644 45731a0c 39b4a2f8 M glibc.spec commit f184f15f918d86c54750c49f879108ae53828972 Author: Florian Weimer @@ -10253,7 +10373,7 @@ CommitDate: Wed Jun 16 06:59:22 2021 +0200 Update NVR for rebuild against rawhide gcc -:100644 100644 3717fad 45731a0 M glibc.spec +:100644 100644 3717fad2 45731a0c M glibc.spec commit 07558826b7f7b87a9509f778bd4463865999f886 Author: Florian Weimer @@ -10293,9 +10413,9 @@ CommitDate: Tue Jun 15 22:15:31 2021 +0200 - linux: mips: Split librt.abilist in n32 and n64 - Reinstate gconv-modules as the default configuration file -:100644 000000 3c062bf 0000000 D glibc-gconv-modules-revert.patch -:100644 100644 54b9828 3717fad M glibc.spec -:100644 100644 6ebe4cd f70d44f M sources +:100644 000000 3c062bf5 00000000 D glibc-gconv-modules-revert.patch +:100644 100644 54b9828f 3717fad2 M glibc.spec +:100644 100644 6ebe4cd8 f70d44fd M sources commit 027b24e17fbb32739576d0af2ec4c2c6fa51efa4 Author: Florian Weimer @@ -10305,8 +10425,8 @@ CommitDate: Tue Jun 15 17:09:29 2021 +0200 Preserve some symbols in libc.so.6's symtab (#1965374) -:100644 100644 2e36dc2 54b9828 M glibc.spec -:100644 100644 e73f264 2f3be44 M wrap-find-debuginfo.sh +:100644 100644 2e36dc28 54b9828f M glibc.spec +:100644 100644 e73f2646 2f3be44c M wrap-find-debuginfo.sh commit fd5c07ba69e580a16d1754e425530176a56b7982 Author: Florian Weimer @@ -10322,12 +10442,12 @@ CommitDate: Tue Jun 15 14:26:40 2021 +0200 File list construction and the find-debuginfo.sh wrapper had to be adjusted to cope with the changed file name patterns. -:000000 100644 0000000 767b6a2 A glibc-nosymlink-1.patch -:000000 100644 0000000 92c330b A glibc-nosymlink-2.patch -:000000 100644 0000000 76080d4 A glibc-nosymlink-3.patch -:000000 100644 0000000 7a292f0 A glibc-nosymlink-4.patch -:100644 100644 d053268 2e36dc2 M glibc.spec -:100644 100644 598c0d3 e73f264 M wrap-find-debuginfo.sh +:000000 100644 00000000 767b6a2b A glibc-nosymlink-1.patch +:000000 100644 00000000 92c330ba A glibc-nosymlink-2.patch +:000000 100644 00000000 76080d46 A glibc-nosymlink-3.patch +:000000 100644 00000000 7a292f02 A glibc-nosymlink-4.patch +:100644 100644 d053268c 2e36dc28 M glibc.spec +:100644 100644 598c0d36 e73f2646 M wrap-find-debuginfo.sh commit 222c141c852334d88daa9fa65c487466ec544f95 Author: Siddhesh Poyarekar @@ -10337,7 +10457,7 @@ CommitDate: Mon Jun 14 18:46:16 2021 +0530 Add a conditional dependency for glibc-gconv-extra.i686 in x86_64 -:100644 100644 6deb754 d053268 M glibc.spec +:100644 100644 6deb754f d053268c M glibc.spec commit 67583775413fec6e66684abd6baff3876b3a1938 Author: Siddhesh Poyarekar @@ -10384,10 +10504,10 @@ CommitDate: Mon Jun 14 11:15:03 2021 +0530 - nptl: Remove exit-thread.h - Improve test coverage of strnlen function -:000000 100644 0000000 3c062bf A glibc-gconv-modules-revert.patch -:100644 100644 e909aa1 51b95de M glibc-rh697421.patch -:100644 100644 4ccd5e6 6deb754 M glibc.spec -:100644 100644 123606a 6ebe4cd M sources +:000000 100644 00000000 3c062bf5 A glibc-gconv-modules-revert.patch +:100644 100644 e909aa19 51b95dec M glibc-rh697421.patch +:100644 100644 4ccd5e65 6deb754f M glibc.spec +:100644 100644 123606a4 6ebe4cd8 M sources commit 2f717376f3f5df88767275345fe9c4c0b75e1b3a Author: Florian Weimer @@ -10424,8 +10544,8 @@ CommitDate: Thu Jun 3 11:00:18 2021 +0200 - powerpc: Optimized memcmp for power10 - x86-64: Align child stack to 16 bytes [BZ #27902] -:100644 100644 fb5ce0f 4ccd5e6 M glibc.spec -:100644 100644 9e9164b 123606a M sources +:100644 100644 fb5ce0fe 4ccd5e65 M glibc.spec +:100644 100644 9e9164b3 123606a4 M sources commit d0b9f50b05c2465ddcc4ff526e3ed8e1eef98224 Author: Florian Weimer @@ -10451,9 +10571,9 @@ CommitDate: Mon May 31 10:12:30 2021 +0200 - config: Added HAVE_AARCH64_SVE_ASM for aarch64 - tst-mallinfo2.c: Use correct multiple for total variable -:100644 000000 05e4204 0000000 D glibc-sigsetxid-sa_onstack.patch -:100644 100644 83dbab5 fb5ce0f M glibc.spec -:100644 100644 db98691 9e9164b M sources +:100644 000000 05e4204f 00000000 D glibc-sigsetxid-sa_onstack.patch +:100644 100644 83dbab5b fb5ce0fe M glibc.spec +:100644 100644 db98691b 9e9164b3 M sources commit 65fd804c4ac128723fc19cf72322c135ddaa548c Author: Florian Weimer @@ -10463,8 +10583,8 @@ CommitDate: Wed May 26 08:25:19 2021 +0200 nptl: Install SIGSETXID handler with SA_ONSTACK [BZ #27914] -:000000 100644 0000000 05e4204 A glibc-sigsetxid-sa_onstack.patch -:100644 100644 abf3cdd 83dbab5 M glibc.spec +:000000 100644 00000000 05e4204f A glibc-sigsetxid-sa_onstack.patch +:100644 100644 abf3cddd 83dbab5b M glibc.spec commit 8aee7e3563ec434ce692fbce0b81ef9ba53c2a0a Author: Florian Weimer @@ -10485,10 +10605,10 @@ CommitDate: Tue May 25 17:44:47 2021 +0200 - Linking the main program with jemalloc causes sysconf to deadlock in audit mode (#1909920) -:100644 000000 c2869d2 0000000 D glibc-upstream-amx-detection.patch -:100644 000000 db691ac 0000000 D glibc-upstream-malloc-test-hang.patch -:100644 100644 2ac115d abf3cdd M glibc.spec -:100644 100644 575cd9f db98691 M sources +:100644 000000 c2869d2b 00000000 D glibc-upstream-amx-detection.patch +:100644 000000 db691ac5 00000000 D glibc-upstream-malloc-test-hang.patch +:100644 100644 2ac115d2 abf3cddd M glibc.spec +:100644 100644 575cd9f8 db98691b M sources commit f6682c9bac5872385b3caae0cd51fe3dbfcbb88f Author: Florian Weimer @@ -10498,7 +10618,7 @@ CommitDate: Fri May 21 19:45:03 2021 +0200 Reenable arch-full glibc-headers package for ELN (#1940686) -:100644 100644 b224238 2ac115d M glibc.spec +:100644 100644 b2242387 2ac115d2 M glibc.spec commit 79751685db592c8189aa104c725801fd0eec9dd4 Author: Florian Weimer @@ -10508,7 +10628,7 @@ CommitDate: Fri May 21 16:22:23 2021 +0200 wrap-find-debuginfo.sh: Enable separate debugedit program -:100644 100644 5ace7e6 598c0d3 M wrap-find-debuginfo.sh +:100644 100644 5ace7e6d 598c0d36 M wrap-find-debuginfo.sh commit 3af4a4120338d4310da932523f827a877dd3808b Author: Florian Weimer @@ -10518,7 +10638,7 @@ CommitDate: Fri May 21 16:05:18 2021 +0200 glibc-2.33.9000-7.fc35 -:100644 100644 fea4077 b224238 M glibc.spec +:100644 100644 fea40776 b2242387 M glibc.spec commit b84da5c20eeaddbeb9c95f5ff72884ccbc0b3ad7 Author: Jeremy Linton @@ -10536,7 +10656,7 @@ CommitDate: Fri May 21 14:03:16 2021 +0000 Signed-off-by: Jeremy Linton -:100644 100644 011a18b fea4077 M glibc.spec +:100644 100644 011a18b5 fea40776 M glibc.spec commit 8d4b53ceef11252ea4f9448cb0177ae9d182815d Author: Florian Weimer @@ -10554,8 +10674,8 @@ CommitDate: Tue May 11 17:30:04 2021 +0200 All debugging information is preserved in ld.so (#1905611). With the distribution defaults, we strip all binaries again (#1661510). -:100644 100644 b322ebf 011a18b M glibc.spec -:000000 100644 0000000 5ace7e6 A wrap-find-debuginfo.sh +:100644 100644 b322ebfd 011a18b5 M glibc.spec +:000000 100644 00000000 5ace7e6d A wrap-find-debuginfo.sh commit f0cbcb39124019428f8c526cd0276f32ec3aa665 Author: Florian Weimer @@ -10568,7 +10688,7 @@ CommitDate: Fri May 7 12:01:04 2021 +0200 This is not used in Fedora, and downstream removed the multilib as well. -:100644 100644 f71524e b322ebf M glibc.spec +:100644 100644 f71524ea b322ebfd M glibc.spec commit caadb46589d2fa5218b98f64181d06e4a8e37261 Author: Florian Weimer @@ -10582,7 +10702,7 @@ CommitDate: Thu May 6 10:59:59 2021 +0200 the localedef output, so that hardlink groups do not change between builds. -:100644 100644 ab3139a f71524e M glibc.spec +:100644 100644 ab3139a6 f71524ea M glibc.spec commit 82b682a3803a8effef0158b7b17b0633e011d9c5 Author: Florian Weimer @@ -10592,9 +10712,9 @@ CommitDate: Tue May 4 16:07:51 2021 +0200 Various changes to get glibc building again -:000000 100644 0000000 c2869d2 A glibc-upstream-amx-detection.patch -:000000 100644 0000000 db691ac A glibc-upstream-malloc-test-hang.patch -:100644 100644 0ece4ac ab3139a M glibc.spec +:000000 100644 00000000 c2869d2b A glibc-upstream-amx-detection.patch +:000000 100644 00000000 db691ac5 A glibc-upstream-malloc-test-hang.patch +:100644 100644 0ece4ac7 ab3139a6 M glibc.spec commit 3b6cc2120e4403e2f4691d1e42507f6909658695 Author: Florian Weimer @@ -10604,7 +10724,7 @@ CommitDate: Tue May 4 08:44:29 2021 +0200 Remove unused template.patch file -:100644 000000 10ec35e 0000000 D template.patch +:100644 000000 10ec35e2 00000000 D template.patch commit 78c735d31e55b33de8ded299ead41a99e0b4966a Author: Florian Weimer @@ -10617,7 +10737,7 @@ CommitDate: Fri Apr 9 20:47:11 2021 +0200 This adds additional coverage for aarch64, ppc64le, x86_64. At present, these changes have no effect. -:100644 100644 35d97b2 0ece4ac M glibc.spec +:100644 100644 35d97b23 0ece4ac7 M glibc.spec commit 9eea788618aa64cb66327d10364b4d941490e9c7 Author: Arjun Shankar @@ -10672,9 +10792,9 @@ CommitDate: Wed Mar 3 11:22:56 2021 +0100 - aarch64: Remove the unused __read_tp symbol - build-many-glibcs.py: Use make -O for more consistent log output -:100644 000000 6152926 0000000 D glibc-rh819430.patch -:100644 100644 bd3fb95 35d97b2 M glibc.spec -:100644 100644 6a8281b 575cd9f M sources +:100644 000000 61529268 00000000 D glibc-rh819430.patch +:100644 100644 bd3fb950 35d97b23 M glibc.spec +:100644 100644 6a8281bf 575cd9f8 M sources commit 7ae5ae4a36f281055aa6bef801ed06a8f0fdc824 Author: Carlos O'Donell @@ -10712,8 +10832,8 @@ CommitDate: Sun Feb 21 23:11:41 2021 -0500 - linux: Set default kernel_stat.h to LFS - linux: Fix STATFS_IS_STATFS64 definition -:100644 100644 0892728 bd3fb95 M glibc.spec -:100644 100644 513ecba 6a8281b M sources +:100644 100644 0892728d bd3fb950 M glibc.spec +:100644 100644 513ecba7 6a8281bf M sources commit f12836839324929236529439f86a5b33214c83e6 Author: Martin Cermak @@ -10725,7 +10845,7 @@ CommitDate: Thu Feb 18 13:34:18 2021 +0000 Set up CI gating for Fedora Rawhide, and RHEL-9. -:000000 100644 0000000 ac6d3d8 A gating.yaml +:000000 100644 00000000 ac6d3d80 A gating.yaml commit cc01ada745af2a68bffdfc4240d77337197b3cc4 Author: Florian Weimer @@ -10735,7 +10855,7 @@ CommitDate: Fri Feb 12 17:52:05 2021 +0100 Fix up version in %changelog -:100644 100644 9a502c4 0892728 M glibc.spec +:100644 100644 9a502c4b 0892728d M glibc.spec commit 5924084987a7ef53a6bd29ad09123922c16284e7 Author: Florian Weimer @@ -10745,7 +10865,7 @@ CommitDate: Fri Feb 12 15:25:31 2021 +0100 Fixup %changelog -:100644 100644 c343c11 9a502c4 M glibc.spec +:100644 100644 c343c118 9a502c4b M glibc.spec commit 027c02731beaa8f4564464046788acab0e53696d Author: Florian Weimer @@ -10827,8 +10947,8 @@ CommitDate: Fri Feb 12 15:24:42 2021 +0100 - elf: Limit tst-prelink-cmp target archs - CVE-2021-3326: gconv: Fix assertion failure in ISO-2022-JP-3 module (#1921917) -:100644 100644 e5bbfcc c343c11 M glibc.spec -:100644 100644 7ca9589 513ecba M sources +:100644 100644 e5bbfcca c343c118 M glibc.spec +:100644 100644 7ca9589e 513ecba7 M sources commit c290b4561137469528de8a9bffb7e3da57b8f20d Author: Arjun Shankar @@ -10844,8 +10964,8 @@ CommitDate: Wed Jan 27 13:50:31 2021 +0100 The previous auto-sync failed to build due to the above bug. -:100644 100644 d123df6 e5bbfcc M glibc.spec -:100644 100644 d522de8 7ca9589 M sources +:100644 100644 d123df66 e5bbfcca M glibc.spec +:100644 100644 d522de86 7ca9589e M sources commit a3f45b39c5e84e25fe58df63306a130445aacdac Author: Arjun Shankar @@ -10897,8 +11017,8 @@ CommitDate: Tue Jan 26 19:35:17 2021 +0100 - Fix x86 build with --enable-tunable=no - ifuncmain6pie: Remove the circular IFUNC dependency [BZ #20019] -:100644 100644 88a91bb d123df6 M glibc.spec -:100644 100644 4927001 d522de8 M sources +:100644 100644 88a91bb3 d123df66 M glibc.spec +:100644 100644 49270018 d522de86 M sources commit 5f79bcafc7e8d507693851fa9eadc24fc973d256 Author: Fedora Release Engineering @@ -10910,7 +11030,7 @@ CommitDate: Tue Jan 26 08:15:43 2021 +0000 Signed-off-by: Fedora Release Engineering -:100644 100644 5f2b4a9 88a91bb M glibc.spec +:100644 100644 5f2b4a99 88a91bb3 M glibc.spec commit 1fa03e97ae4cb44f5f7e1938a4315a39e0306c87 Author: Arjun Shankar @@ -10933,7 +11053,7 @@ CommitDate: Sat Jan 23 19:16:05 2021 +0100 documentation from the main package into glibc-doc. It also removes all the unnecessary documentation-like files mentioned above. -:100644 100644 ea30e1f 5f2b4a9 M glibc.spec +:100644 100644 ea30e1f3 5f2b4a99 M glibc.spec commit 8cd6c9ec483f92e71fb8bc9810fd3b3ca549cb88 Author: Arjun Shankar @@ -10954,7 +11074,7 @@ CommitDate: Thu Jan 14 12:20:15 2021 +0100 handles. It is therefore time to retire nscd in Fedora and move to more modern named services caches. -:100644 100644 52f5799 ea30e1f M glibc.spec +:100644 100644 52f5799d ea30e1f3 M glibc.spec commit b59b2feff0cca1b9f88832152cde32ef41609c39 Author: Carlos O'Donell @@ -11003,8 +11123,8 @@ CommitDate: Wed Jan 13 14:55:34 2021 -0500 - x86: Check IFUNC definition in unrelocated executable [BZ #20019] - hurd: Fix mmap(!MAP_FIXED) on bogus address -:100644 100644 4b63c90 52f5799 M glibc.spec -:100644 100644 2881485 4927001 M sources +:100644 100644 4b63c901 52f5799d M glibc.spec +:100644 100644 28814859 49270018 M sources commit dfda51ee292676a107eca11b9f2ff0f72f5382f0 Author: Florian Weimer @@ -11109,11 +11229,11 @@ CommitDate: Fri Jan 8 19:24:09 2021 +0100 - hurd: Rename LLL_INITIALIZER to LLL_LOCK_INITIALIZER - Use Linux 5.10 in build-many-glibcs.py. -:100644 000000 70b7d9d 0000000 D glibc-fedora-__libc_multiple_libcs.patch -:100644 100644 32be6a3 aaf45cc M glibc-python3.patch -:100644 100644 8b766f1 6152926 M glibc-rh819430.patch -:100644 100644 6d6b89f 4b63c90 M glibc.spec -:100644 100644 c99ca59 2881485 M sources +:100644 000000 70b7d9da 00000000 D glibc-fedora-__libc_multiple_libcs.patch +:100644 100644 32be6a37 aaf45cc5 M glibc-python3.patch +:100644 100644 8b766f10 61529268 M glibc-rh819430.patch +:100644 100644 6d6b89fa 4b63c901 M glibc.spec +:100644 100644 c99ca59f 28814859 M sources commit 2410c90637aa98f6ce116cfed5dd6ed742b6341d Author: DJ Delorie @@ -11127,7 +11247,7 @@ CommitDate: Wed Dec 16 16:20:12 2020 -0500 it's skipped if we're disabling debug packages, as ld-linux.so is normally stripped. -:100644 100644 d72e5e7 6d6b89f M glibc.spec +:100644 100644 d72e5e7a 6d6b89fa M glibc.spec commit d5ff3061a2c54ee0f30bb164d556f875daaea342 Author: Patsy Griffin @@ -11176,10 +11296,10 @@ CommitDate: Tue Dec 15 23:50:02 2020 -0500 - iconv: Fix incorrect UCS4 inner loop bounds (BZ#26923) - Drop glibc-rh1906066 and glibc-rh741105 patches fixed by sync. -:100644 000000 902e353 0000000 D glibc-rh1906066.patch -:100644 000000 7637e08 0000000 D glibc-rh741105.patch -:100644 100644 af60777 d72e5e7 M glibc.spec -:100644 100644 1dd85ba c99ca59 M sources +:100644 000000 902e3533 00000000 D glibc-rh1906066.patch +:100644 000000 7637e08f 00000000 D glibc-rh741105.patch +:100644 100644 af60777d d72e5e7a M glibc.spec +:100644 100644 1dd85ba9 c99ca59f M sources commit 525dee4c87180db08e1776ad3cb0e66a9b38e81f Author: Florian Weimer @@ -11191,7 +11311,7 @@ CommitDate: Mon Dec 14 10:43:47 2020 +0100 This effectively reverts commit d8a810a777f9c7113d15c1dc1ce8bde72ebc688b. -:100644 100644 82dc028 af60777 M glibc.spec +:100644 100644 82dc0283 af60777d M glibc.spec commit ff63fb2e4b9613dca8557446d4e5b3f5b5e48107 Author: DJ Delorie @@ -11203,8 +11323,8 @@ CommitDate: Thu Dec 10 01:29:30 2020 -0500 Temporary fix for https://bugzilla.redhat.com/show_bug.cgi?id=1906066 -:000000 100644 0000000 902e353 A glibc-rh1906066.patch -:100644 100644 813bcde 82dc028 M glibc.spec +:000000 100644 00000000 902e3533 A glibc-rh1906066.patch +:100644 100644 813bcdee 82dc0283 M glibc.spec commit e7821ea716284be57da602c2e4595054d8d3f168 Author: Arjun Shankar @@ -11225,8 +11345,8 @@ CommitDate: Mon Dec 7 16:24:56 2020 +0100 - nss: Introduce - Add scripts/move-symbol-to-libc.py -:100644 100644 51446ec 813bcde M glibc.spec -:100644 100644 137c9f5 1dd85ba M sources +:100644 100644 51446ec6 813bcdee M glibc.spec +:100644 100644 137c9f59 1dd85ba9 M sources commit 35514a81165c87eba803232593be24c5706e22a0 Author: Arjun Shankar @@ -11236,7 +11356,7 @@ CommitDate: Fri Dec 4 17:49:50 2020 +0100 Update sources file -:100644 100644 90646e7 137c9f5 M sources +:100644 100644 90646e76 137c9f59 M sources commit 8f61d411e6aebb2938944545b580bca6bd055783 Author: Arjun Shankar @@ -11347,9 +11467,9 @@ CommitDate: Fri Dec 4 15:16:11 2020 +0100 - riscv: Get cache information through sysconf - RISC-V: Add _dl_start_user. -:100644 000000 a3374b4 0000000 D glibc-revert-fxstat-compat.patch -:100644 000000 85b4913 0000000 D glibc-revert-mknod-compat.patch -:100644 100644 5c8b02d 51446ec M glibc.spec +:100644 000000 a3374b4b 00000000 D glibc-revert-fxstat-compat.patch +:100644 000000 85b49137 00000000 D glibc-revert-mknod-compat.patch +:100644 100644 5c8b02dc 51446ec6 M glibc.spec commit a3f3b637ae838458ed5781b05913a48050476887 Author: Florian Weimer @@ -11359,7 +11479,7 @@ CommitDate: Thu Nov 26 11:18:08 2020 +0100 s390x: Do not rewrite program interpreter symlink (make install is enough) -:100644 100644 3798a8d 5c8b02d M glibc.spec +:100644 100644 3798a8d4 5c8b02dc M glibc.spec commit c626367cc1dea35a90c9065c6af70e8967c23f26 Author: Carlos O'Donell @@ -11375,8 +11495,8 @@ CommitDate: Tue Nov 10 11:46:29 2020 -0500 Resolve: #1869030 -:100644 000000 c389d12 0000000 D glibc-rhbz1869030-faccessat2-eperm.patch -:100644 100644 617f98f 3798a8d M glibc.spec +:100644 000000 c389d125 00000000 D glibc-rhbz1869030-faccessat2-eperm.patch +:100644 100644 617f98f2 3798a8d4 M glibc.spec commit 98f35706db9bcb0bd505b3228514cf8ecebe9af2 Author: DJ Delorie @@ -11398,8 +11518,8 @@ CommitDate: Mon Nov 9 14:15:31 2020 -0500 - msg: Remove redundant #include header - tst-setuid1-static-ENV: Add $(common-objpfx)nss [BZ #26820] -:100644 100644 33ffcb0 617f98f M glibc.spec -:100644 100644 d50f2b5 90646e7 M sources +:100644 100644 33ffcb02 617f98f2 M glibc.spec +:100644 100644 d50f2b50 90646e76 M sources commit 2e63496ba68bfc87245c0a475e62fad6e234def6 Author: Patsy Griffin @@ -11450,9 +11570,9 @@ CommitDate: Wed Nov 4 09:07:44 2020 -0500 - C-SKY:Fix dynamic linker's name when mfloat-abi=softfp. - Drop the glibc-revert-ftime-compat.patch. -:100644 000000 a096726 0000000 D glibc-revert-ftime-compat.patch -:100644 100644 c0d041d 33ffcb0 M glibc.spec -:100644 100644 3d80d91 d50f2b5 M sources +:100644 000000 a096726b 00000000 D glibc-revert-ftime-compat.patch +:100644 100644 c0d041de 33ffcb02 M glibc.spec +:100644 100644 3d80d913 d50f2b50 M sources commit 836c64ba99a774db79f7b86e20da113209851eda Author: DJ Delorie @@ -11467,7 +11587,7 @@ CommitDate: Thu Oct 29 22:04:18 2020 -0400 The "Requires" entry is correctly autodetected. -:100644 100644 2c84519 c0d041d M glibc.spec +:100644 100644 2c845190 c0d041de M glibc.spec commit dbc894098e8b6d367e26cc2d112cde2c71d30cc3 Author: Carlos O'Donell @@ -11479,7 +11599,7 @@ CommitDate: Thu Oct 29 16:25:30 2020 -0400 Suggested-by: Colin Walters -:100644 100644 1b19473 2c84519 M glibc.spec +:100644 100644 1b194734 2c845190 M glibc.spec commit 90ca20fd0234925743db5e1e231b73b4a38749a9 Author: Siddhesh Poyarekar @@ -11489,9 +11609,9 @@ CommitDate: Wed Oct 21 15:02:05 2020 +0530 Also revert xmknod and ftime removal -:000000 100644 0000000 a096726 A glibc-revert-ftime-compat.patch -:000000 100644 0000000 85b4913 A glibc-revert-mknod-compat.patch -:100644 100644 6c268b8 1b19473 M glibc.spec +:000000 100644 00000000 a096726b A glibc-revert-ftime-compat.patch +:000000 100644 00000000 85b49137 A glibc-revert-mknod-compat.patch +:100644 100644 6c268b8b 1b194734 M glibc.spec commit 5a5cbfec77be45d6e8516e72382e848ee844991a Author: Siddhesh Poyarekar @@ -11504,8 +11624,8 @@ CommitDate: Wed Oct 21 14:33:57 2020 +0530 This breaks linking with static libraries that may have been built with an older glibc. -:000000 100644 0000000 a3374b4 A glibc-revert-fxstat-compat.patch -:100644 100644 18e80ad 6c268b8 M glibc.spec +:000000 100644 00000000 a3374b4b A glibc-revert-fxstat-compat.patch +:100644 100644 18e80ad8 6c268b8b M glibc.spec commit 42962ebc3d22e41710cb4fd8c7fb76be68041068 Author: Florian Weimer @@ -11515,7 +11635,7 @@ CommitDate: Tue Oct 20 12:25:42 2020 +0200 s390x: Inherit z15 build flags from redhat-rpm-config -:100644 100644 e3881b8 18e80ad M glibc.spec +:100644 100644 e3881b8a 18e80ad8 M glibc.spec commit 8c25df8a1dd0a26f7eb391a3e3831ce733c82d0c Author: Patsy Griffin @@ -11587,9 +11707,9 @@ CommitDate: Sun Oct 18 19:11:55 2020 -0400 - elf: Move ld.so error/help output to _dl_usage - elf: Extract command-line/environment variables state from rtld.c -:100644 100644 fe5adb2 70b7d9d M glibc-fedora-__libc_multiple_libcs.patch -:100644 100644 b0ca4a5 e3881b8 M glibc.spec -:100644 100644 052b785 3d80d91 M sources +:100644 100644 fe5adb2d 70b7d9da M glibc-fedora-__libc_multiple_libcs.patch +:100644 100644 b0ca4a53 e3881b8a M glibc.spec +:100644 100644 052b7852 3d80d913 M sources commit d8a810a777f9c7113d15c1dc1ce8bde72ebc688b Author: Florian Weimer @@ -11599,7 +11719,7 @@ CommitDate: Wed Oct 14 15:29:09 2020 +0200 Disable -Werror on ELN (#1888246) -:100644 100644 7463c04 b0ca4a5 M glibc.spec +:100644 100644 7463c043 b0ca4a53 M glibc.spec commit a45fef2f842e6b57dcc9907390178f2438892695 Author: Florian Weimer @@ -11613,10 +11733,10 @@ CommitDate: Wed Oct 14 15:19:39 2020 +0200 code and a new Python script, parse-SUPPORTED.py, to compute a common representation from it. -:100644 000000 cd785d7 0000000 D SUPPORTED -:100755 000000 4a93041 0000000 D convnames.py -:100644 100644 67a85e2 7463c04 M glibc.spec -:000000 100644 0000000 cf512de A parse-SUPPORTED.py +:100644 000000 cd785d7a 00000000 D SUPPORTED +:100755 000000 4a930414 00000000 D convnames.py +:100644 100644 67a85e28 7463c043 M glibc.spec +:000000 100644 00000000 cf512deb A parse-SUPPORTED.py commit 1bf34fb3df327f15a94b3024a95ba83057e3f10b Author: Arjun Shankar @@ -11626,7 +11746,7 @@ CommitDate: Thu Oct 8 15:00:47 2020 +0200 Update sources file -:100644 100644 f4c2a84 052b785 M sources +:100644 100644 f4c2a842 052b7852 M sources commit 9a188d169ef322be63c7263dde805268f7ea2b2b Author: Arjun Shankar @@ -11689,8 +11809,8 @@ CommitDate: Thu Oct 8 12:05:13 2020 +0200 - x86: Use one ldbl2mpn.c file for both i386 and x86_64 - Define __THROW to noexcept for C++11 and later -:100644 000000 78f214d 0000000 D glibc-fix-float128-benchtests.patch -:100644 100644 fd0ef46 67a85e2 M glibc.spec +:100644 000000 78f214d1 00000000 D glibc-fix-float128-benchtests.patch +:100644 100644 fd0ef46e 67a85e28 M glibc.spec commit f1c4b3f4bd1bb054c2c4e8a628f6f82dfe8ca9ed Author: Arjun Shankar @@ -11739,10 +11859,10 @@ CommitDate: Mon Sep 21 12:33:35 2020 +0200 - nptl: futex: Provide correct indentation for part of __futex_abstimed_wait_cancelable64 -:000000 100644 0000000 78f214d A glibc-fix-float128-benchtests.patch -:100644 100644 3b21b89 7637e08 M glibc-rh741105.patch -:100644 100644 20aedb5 fd0ef46 M glibc.spec -:100644 100644 8fd47da f4c2a84 M sources +:000000 100644 00000000 78f214d1 A glibc-fix-float128-benchtests.patch +:100644 100644 3b21b89c 7637e08f M glibc-rh741105.patch +:100644 100644 20aedb5f fd0ef46e M glibc.spec +:100644 100644 8fd47da3 f4c2a842 M sources commit c070d93d6438cac5c6821faf7b8d69867529bc8e Author: DJ Delorie @@ -11760,8 +11880,8 @@ CommitDate: Tue Sep 8 19:12:54 2020 -0400 - elf.h: Add aarch64 bti/pac dynamic tag constants - x86: Set CPU usable feature bits conservatively [BZ #26552] -:100644 100644 5f8943c 20aedb5 M glibc.spec -:100644 100644 b4eb5f6 8fd47da M sources +:100644 100644 5f8943c2 20aedb5f M glibc.spec +:100644 100644 b4eb5f67 8fd47da3 M sources commit 6cd5b060cc2ea7aa3836c73b0b36d4a63129f42d Author: Patsy Griffin @@ -11826,9 +11946,9 @@ CommitDate: Wed Sep 2 11:36:37 2020 -0400 - Add new STATX_* constants from Linux 5.8 to bits/statx-generic.h. - Correct locking and cancellation cleanup in syslog functions (bug 26100) -:100644 000000 5ec2237 0000000 D glibc-fedora-nis-rh188246.patch -:100644 100644 970365f 5f8943c M glibc.spec -:100644 100644 5817967 b4eb5f6 M sources +:100644 000000 5ec22376 00000000 D glibc-fedora-nis-rh188246.patch +:100644 100644 970365f7 5f8943c2 M glibc.spec +:100644 100644 5817967f b4eb5f67 M sources commit b8f476de79cd3411606d045a3e6659b018564885 Author: Carlos O'Donell @@ -11840,8 +11960,8 @@ CommitDate: Thu Aug 20 18:18:47 2020 -0400 Resolves: #1869030 -:000000 100644 0000000 c389d12 A glibc-rhbz1869030-faccessat2-eperm.patch -:100644 100644 086ff6d 970365f M glibc.spec +:000000 100644 00000000 c389d125 A glibc-rhbz1869030-faccessat2-eperm.patch +:100644 100644 086ff6dc 970365f7 M glibc.spec commit b1869f947af08ef9c8fba2a70c4a71315e838ca0 Author: Carlos O'Donell @@ -11862,7 +11982,7 @@ CommitDate: Thu Aug 20 18:03:11 2020 -0400 glibc language packs and the way in which the virtual provide is used. -:100644 100644 8464436 086ff6d M glibc.spec +:100644 100644 84644364 086ff6dc M glibc.spec commit 7ec72a1eabd2826b78670acd4b562c52db5185c2 Author: DJ Delorie @@ -11880,8 +12000,8 @@ CommitDate: Mon Aug 17 14:51:02 2020 -0400 - y2038: nptl: Convert pthread_{clock|timed}join_np to support 64 bit time - aarch64: update ulps. -:100644 100644 e809efa 8464436 M glibc.spec -:100644 100644 cd2e5e1 5817967 M sources +:100644 100644 e809efa3 84644364 M glibc.spec +:100644 100644 cd2e5e13 5817967f M sources commit 58f285e57f75dcff252c8eac2d5d02a394b49358 Author: Patsy Griffin @@ -11917,8 +12037,8 @@ CommitDate: Thu Aug 13 08:54:55 2020 -0400 - Sync intprops.h from Gnulib - Open master branch for glibc 2.33 development. -:100644 100644 7ebb530 e809efa M glibc.spec -:100644 100644 7635026 cd2e5e1 M sources +:100644 100644 7ebb530b e809efa3 M glibc.spec +:100644 100644 76350261 cd2e5e13 M sources commit 2f73564ad102da35425c5cfc990566a76c6aa74f Author: Arjun Shankar @@ -11942,8 +12062,8 @@ CommitDate: Thu Aug 6 15:13:54 2020 +0200 - powerpc: Fix incorrect cache line size load in memset (bug 26332) - Update Nios II libm-test-ulps file. -:100644 100644 1a14a60 7ebb530 M glibc.spec -:100644 100644 3c5d70a 7635026 M sources +:100644 100644 1a14a60c 7ebb530b M glibc.spec +:100644 100644 3c5d70af 76350261 M sources commit df5430b755ae8bb8cb45683862b213d56d87627e Author: Patsy Griffin @@ -11969,8 +12089,8 @@ CommitDate: Fri Jul 31 11:45:37 2020 -0400 - powerpc: Fix POWER10 selection - powerpc64le: guarantee a .gnu.attributes section [BZ #26220] -:100644 100644 587ed42 1a14a60 M glibc.spec -:100644 100644 db61efd 3c5d70a M sources +:100644 100644 587ed42a 1a14a60c M glibc.spec +:100644 100644 db61efd7 3c5d70af M sources commit 888bec16b096a69c4e46c1ecf3334cb14f933827 Author: Florian Weimer @@ -11980,7 +12100,7 @@ CommitDate: Wed Jul 29 10:55:07 2020 +0200 Inherit -mbranch-protection=standard from redhat-rpm-config (for aarch64) -:100644 100644 978fd9e 587ed42 M glibc.spec +:100644 100644 978fd9e7 587ed42a M glibc.spec commit 6f63f671cc65be9d5e01f35c95357378c3296656 Author: Fedora Release Engineering @@ -11992,7 +12112,7 @@ CommitDate: Mon Jul 27 20:13:43 2020 +0000 Signed-off-by: Fedora Release Engineering -:100644 100644 cbc3440 978fd9e M glibc.spec +:100644 100644 cbc34405 978fd9e7 M glibc.spec commit 9bc189f105dd34b5d006b0100e6dc0f0956e069c Author: Carlos O'Donell @@ -12004,7 +12124,7 @@ CommitDate: Thu Jul 23 00:03:10 2020 -0400 See https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro -:100644 100644 269ab04 cbc3440 M glibc.spec +:100644 100644 269ab044 cbc34405 M glibc.spec commit 299c3c2187084422c7200569d7d9ceb687763b9e Author: Florian Weimer @@ -12014,7 +12134,7 @@ CommitDate: Tue Jul 21 17:02:37 2020 +0200 Add reference to rseq bug #1855729 -:100644 100644 3ed77ba 269ab04 M glibc.spec +:100644 100644 3ed77ba4 269ab044 M glibc.spec commit 3e8e5d3396dbe9732053a58f46aef199772aaae7 Author: Arjun Shankar @@ -12095,9 +12215,9 @@ CommitDate: Tue Jul 21 15:09:22 2020 +0200 - sysvipc: Split out linux struct semid_ds - sysv: linux: Add 64-bit time_t variant for semctl -:100644 000000 40090a7 0000000 D glibc-rseq-disable.patch -:100644 100644 c5eafb5 3ed77ba M glibc.spec -:100644 100644 afbe8d3 db61efd M sources +:100644 000000 40090a7b 00000000 D glibc-rseq-disable.patch +:100644 100644 c5eafb55 3ed77ba4 M glibc.spec +:100644 100644 afbe8d38 db61efd7 M sources commit 1554837500cb2ec8574e8d356b7244a4b9fba9c7 Author: Florian Weimer @@ -12109,9 +12229,9 @@ CommitDate: Tue Jul 21 14:41:25 2020 +0200 Due to -Werror, they resulted in build failures. -:000000 100644 0000000 c762d02 A glibc-deprecated-selinux-makedb.patch -:000000 100644 0000000 315b6cd A glibc-deprecated-selinux-nscd.patch -:100644 100644 1e62745 c5eafb5 M glibc.spec +:000000 100644 00000000 c762d024 A glibc-deprecated-selinux-makedb.patch +:000000 100644 00000000 315b6cd9 A glibc-deprecated-selinux-nscd.patch +:100644 100644 1e627450 c5eafb55 M glibc.spec commit b633c425b5e30a3b6e19cc9650858faaf83bcc85 Author: Florian Weimer @@ -12121,8 +12241,8 @@ CommitDate: Fri Jul 10 13:13:21 2020 +0200 Disable rseq registration by default to help Firefox (#1855729) -:000000 100644 0000000 40090a7 A glibc-rseq-disable.patch -:100644 100644 d0d7eb3 1e62745 M glibc.spec +:000000 100644 00000000 40090a7b A glibc-rseq-disable.patch +:100644 100644 d0d7eb3c 1e627450 M glibc.spec commit 0aab7eb58528999277c626fc16682da179de03d0 Author: Florian Weimer @@ -12194,9 +12314,9 @@ CommitDate: Fri Jul 10 12:56:47 2020 +0200 - tst-cancel4: deal with ENOSYS errors - manual: Show copyright information not just in the printed manual -:100644 100644 3bba12d fe5adb2 M glibc-fedora-__libc_multiple_libcs.patch -:100644 100644 852d1d1 d0d7eb3 M glibc.spec -:100644 100644 7335d06 afbe8d3 M sources +:100644 100644 3bba12d5 fe5adb2d M glibc-fedora-__libc_multiple_libcs.patch +:100644 100644 852d1d1c d0d7eb3c M glibc.spec +:100644 100644 7335d06d afbe8d38 M sources commit 94cfd27bd10e4d3097a0a4dcb880cfc620eb933c Author: Carlos O'Donell @@ -12251,12 +12371,12 @@ CommitDate: Thu Jul 2 17:45:59 2020 -0400 - Add MREMAP_DONTUNMAP from Linux 5.7 - x86: Update CPU feature detection [BZ #26149] -:100644 100644 784e33c 2afbfc5 M ChangeLog.old -:100644 000000 7b67937 0000000 D README.quilt -:100644 100644 301d28a 852d1d1 M glibc.spec -:100644 000000 1b0187b 0000000 D power6emul.c -:100755 000000 511a53c 0000000 D quilt-patch.sh -:100644 100644 9082417 7335d06 M sources +:100644 100644 784e33c4 2afbfc5c M ChangeLog.old +:100644 000000 7b67937a 00000000 D README.quilt +:100644 100644 301d28a6 852d1d1c M glibc.spec +:100644 000000 1b0187bd 00000000 D power6emul.c +:100755 000000 511a53c0 00000000 D quilt-patch.sh +:100644 100644 9082417f 7335d06d M sources commit c12a7f03e36f095321ecb438f7e95abf8f3f7ebc Author: DJ Delorie @@ -12289,8 +12409,8 @@ CommitDate: Mon Jun 22 15:43:26 2020 -0400 - math: Optimized generic exp10f with wrappers - benchtests: Add exp10f benchmark -:100644 100644 1bd8fb9 301d28a M glibc.spec -:100644 100644 62eacd9 9082417 M sources +:100644 100644 1bd8fb9b 301d28a6 M glibc.spec +:100644 100644 62eacd94 9082417f M sources commit b2357f7dc4ebb024e6dc2f97c2aaf05109b0c4fc Author: Patsy Franklin @@ -12352,8 +12472,8 @@ CommitDate: Fri Jun 19 12:03:17 2020 -0400 - powerpc64le: add optimized strlen for P9 - powerpc64le: use common fmaf128 implementation -:100644 100644 98d76dc 1bd8fb9 M glibc.spec -:100644 100644 8dc1112 62eacd9 M sources +:100644 100644 98d76dcd 1bd8fb9b M glibc.spec +:100644 100644 8dc1112b 62eacd94 M sources commit 5b16244fadff80fe959286be0be19e9548bffcac Author: Patsy Franklin @@ -12453,8 +12573,8 @@ CommitDate: Fri Jun 5 17:05:33 2020 -0400 - Use unsigned constants for ICMP6 filters [BZ #22489] - Linux: Enhance glibcsyscalls.py to support listing system calls -:100644 100644 81ae306 98d76dc M glibc.spec -:100644 100644 323c1fd 8dc1112 M sources +:100644 100644 81ae3064 98d76dcd M glibc.spec +:100644 100644 323c1fda 8dc1112b M sources commit 0cfa270c689db635f8d58e23c25ff0714aa9fea1 Author: DJ Delorie @@ -12535,8 +12655,8 @@ CommitDate: Mon May 11 14:44:49 2020 -0400 - nptl: Move pthread_sigmask implementation to libc - Bug 25819: Update to Unicode 13.0.0 -:100644 100644 e1d8fce 81ae306 M glibc.spec -:100644 100644 358d1dc 323c1fd M sources +:100644 100644 e1d8fce8 81ae3064 M glibc.spec +:100644 100644 358d1dc5 323c1fda M sources commit a578dc7ae2aec7b5b13062145e3e4188dd5e4dc0 Author: Florian Weimer @@ -12546,7 +12666,7 @@ CommitDate: Wed Apr 29 13:48:49 2020 +0200 nss_db.x86_64 should install nss_db.i686 if glibc.i686 is installed (#1807821) -:100644 100644 b1f9713 e1d8fce M glibc.spec +:100644 100644 b1f9713e e1d8fce8 M glibc.spec commit 15c23ffc6c011615c1359bcac156c6a56b73fbbc Author: Florian Weimer @@ -12556,7 +12676,7 @@ CommitDate: Wed Apr 29 12:22:43 2020 +0200 Add reference to bug 1828332 -:100644 100644 b49ef40 b1f9713 M glibc.spec +:100644 100644 b49ef406 b1f9713e M glibc.spec commit 0fb8a56d62fe60df493263c9dde32d14363e5507 Author: Florian Weimer @@ -12569,7 +12689,7 @@ CommitDate: Tue Apr 28 12:29:21 2020 +0200 This commit does not change the generated RPM SPEC file in a material way: there are only whitespace and comment changes as a result. -:100644 100644 bce096b b49ef40 M glibc.spec +:100644 100644 bce096b2 b49ef406 M glibc.spec commit eb8a860ab4f498d1a432d807aa8b805a1fe46ea2 Author: Florian Weimer @@ -12585,7 +12705,7 @@ CommitDate: Mon Apr 27 17:34:53 2020 +0200 Also add a glibc-headers-s390 package on s390x, in case someone still has a private build with the 31-bit libraries. -:100644 100644 a90da11 bce096b M glibc.spec +:100644 100644 a90da112 bce096b2 M glibc.spec commit 711089dc88eef8893e5c1cce353384bb3db60859 Author: Florian Weimer @@ -12595,7 +12715,7 @@ CommitDate: Mon Apr 27 17:33:51 2020 +0200 Restrict the glibc-headers package to x86_64, i686 -:100644 100644 6bcafce a90da11 M glibc.spec +:100644 100644 6bcafce6 a90da112 M glibc.spec commit 7ae647b91349ea3f701f8eff081f6448aacd8ae9 Author: Florian Weimer @@ -12608,7 +12728,7 @@ CommitDate: Mon Apr 27 17:33:51 2020 +0200 ppc64le is not a biarch architecture, but is included in %{power64}, so it ended up in %{biarcharches}. -:100644 100644 faacd08 6bcafce M glibc.spec +:100644 100644 faacd089 6bcafce6 M glibc.spec commit 7407a5058abaccd0a99d3092aa586bcebe2b27c1 Author: Florian Weimer @@ -12620,7 +12740,7 @@ CommitDate: Mon Apr 27 17:33:51 2020 +0200 Also remove the dependencies which are needed by the scriptlet. -:100644 100644 cde8b3d faacd08 M glibc.spec +:100644 100644 cde8b3d9 faacd089 M glibc.spec commit db303b940e82332f41efb749ee4e1e4ea7355881 Author: Florian Weimer @@ -12630,7 +12750,7 @@ CommitDate: Mon Apr 27 17:33:51 2020 +0200 Fix "pacakge" typos -:100644 100644 e40fb08 cde8b3d M glibc.spec +:100644 100644 e40fb082 cde8b3d9 M glibc.spec commit b4ca0be2b62a136b63cb1bc723f3fadc8361f52e Author: DJ Delorie @@ -12651,8 +12771,8 @@ CommitDate: Mon Apr 20 16:56:20 2020 -0400 - Reset converter state after second wchar_t output (Bug 25734) - Fix typo in posix/tst-fnmatch.input (Bug 25790) -:100644 100644 f0dc92c e40fb08 M glibc.spec -:100644 100644 68f3a66 358d1dc M sources +:100644 100644 f0dc92c0 e40fb082 M glibc.spec +:100644 100644 68f3a669 358d1dc5 M sources commit 157090889d365297450b4e0bb1968612ae5a4888 Author: Patsy Franklin @@ -12672,8 +12792,8 @@ CommitDate: Wed Apr 15 14:43:42 2020 -0400 - Add GRND_INSECURE from Linux 5.6 to sys/random.h - Update kernel version to 5.6 in tst-mman-consts.py. -:100644 100644 5e3c555 f0dc92c M glibc.spec -:100644 100644 dece03c 68f3a66 M sources +:100644 100644 5e3c555a f0dc92c0 M glibc.spec +:100644 100644 dece03c6 68f3a669 M sources commit 873cc222f972f003496daf690e35f3dee1f126fe Author: Florian Weimer @@ -12683,7 +12803,7 @@ CommitDate: Wed Apr 15 17:41:04 2020 +0200 Update release & changelog for: nsswitch.conf: don't add sss to shadow line -:100644 100644 0a91adc 5e3c555 M glibc.spec +:100644 100644 0a91adc9 5e3c555a M glibc.spec commit 4e7c22bb366b655f638380403a6f65b603b008eb Author: Michael Catanzaro @@ -12697,7 +12817,7 @@ CommitDate: Wed Apr 15 15:38:26 2020 +0000 https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/GECSRBSGRFH4OYVHYVJ56H3WS6FWPKA3/ -:100644 100644 447a60e 61f0311 M glibc-fedora-nsswitch.patch +:100644 100644 447a60ef 61f03111 M glibc-fedora-nsswitch.patch commit 89e19f3b9ebed54905a132ea5560b82260bee85e Author: Carlos O'Donell @@ -12746,9 +12866,9 @@ CommitDate: Wed Apr 8 16:47:40 2020 -0400 - sysv: Define __KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64 - math: Add inputs that yield larger errors for float type (x86_64) -:100644 100644 256ef20 3bba12d M glibc-fedora-__libc_multiple_libcs.patch -:100644 100644 2328047 0a91adc M glibc.spec -:100644 100644 e3d6433 dece03c M sources +:100644 100644 256ef205 3bba12d5 M glibc-fedora-__libc_multiple_libcs.patch +:100644 100644 23280473 0a91adc9 M glibc.spec +:100644 100644 e3d64332 dece03c6 M sources commit 1479bc1a28a365c6187daaaff641dc7f5700d03f Author: DJ Delorie @@ -12783,8 +12903,8 @@ CommitDate: Tue Mar 31 22:07:50 2020 -0400 - Fix tests which expose ldbl -> _Float128 redirects - ldbl-128ibm-compat: PLT redirects for using ldbl redirects internally -:100644 100644 260e48b 2328047 M glibc.spec -:100644 100644 97f6922 e3d6433 M sources +:100644 100644 260e48b1 23280473 M glibc.spec +:100644 100644 97f69228 e3d64332 M sources commit e5688486f85d21007607607bd1a3a13dcacda144 Author: Patsy Franklin @@ -12819,10 +12939,10 @@ CommitDate: Thu Mar 26 10:49:57 2020 -0400 - manual: Fix inconsistent declaration of wcsrchr [BZ #24655] - nscd: add cache dumper -:100644 000000 21a3475 0000000 D glibc-rh1778344.patch -:100644 000000 92c1567 0000000 D glibc-utimes.patch -:100644 100644 f4cc5af 260e48b M glibc.spec -:100644 100644 a40bf52 97f6922 M sources +:100644 000000 21a3475d 00000000 D glibc-rh1778344.patch +:100644 000000 92c15674 00000000 D glibc-utimes.patch +:100644 100644 f4cc5af8 260e48b1 M glibc.spec +:100644 100644 a40bf523 97f69228 M sources commit c0cdff7e6c9c199b23d25f46566bf093a299ac7f Author: Patsy Franklin @@ -12862,8 +12982,8 @@ CommitDate: Sun Mar 15 23:55:22 2020 -0400 - manual: Fix wrong declaration of wcschr [BZ #24654] - manual: Fix typo in parse_printf_format example [BZ #24638] -:100644 100644 26e2789 f4cc5af M glibc.spec -:100644 100644 9bc854b a40bf52 M sources +:100644 100644 26e27891 f4cc5af8 M glibc.spec +:100644 100644 9bc854bd a40bf523 M sources commit 2600cf370bf5a4bd438d56b834562c69fb02c531 Author: Florian Weimer @@ -12873,7 +12993,7 @@ CommitDate: Thu Mar 5 13:17:43 2020 +0100 Fix broken patch -:100644 100644 21b325a 92c1567 M glibc-utimes.patch +:100644 100644 21b325ad 92c15674 M glibc-utimes.patch commit 3efb6ef47904d24191f11856492c8d3ce79c3fc3 Author: Florian Weimer @@ -12883,8 +13003,8 @@ CommitDate: Thu Mar 5 13:09:13 2020 +0100 Emergency patch for broken utimes/utime functions -:000000 100644 0000000 21b325a A glibc-utimes.patch -:100644 100644 9c3e06e 26e2789 M glibc.spec +:000000 100644 00000000 21b325ad A glibc-utimes.patch +:100644 100644 9c3e06ee 26e27891 M glibc.spec commit 301b7b2d9f1fd0bc8d0b69777e508331228d3d1f Author: Patsy Franklin @@ -12944,9 +13064,9 @@ CommitDate: Wed Mar 4 11:00:41 2020 -0500 - support: Add support_process_state_wait - malloc/tst-mallocfork2: Kill lingering process for unexpected failures -:100644 100644 8ba958e 32be6a3 M glibc-python3.patch -:100644 100644 6535306 9c3e06e M glibc.spec -:100644 100644 943635c 9bc854b M sources +:100644 100644 8ba958e8 32be6a37 M glibc-python3.patch +:100644 100644 65353068 9c3e06ee M glibc.spec +:100644 100644 943635c3 9bc854bd M sources commit 505d538386dfe5a1578f4587b75b64e177e8725e Author: Patsy Franklin @@ -13149,9 +13269,9 @@ CommitDate: Wed Feb 26 18:53:37 2020 -0500 - x86: Don't make 2 calls to dlerror () in a row - Open master for 2.32 development -:100644 100644 d55e4e7 cd785d7 M SUPPORTED -:100644 100644 a57461a 6535306 M glibc.spec -:100644 100644 6046119 943635c M sources +:100644 100644 d55e4e7b cd785d7a M SUPPORTED +:100644 100644 a57461ac 65353068 M glibc.spec +:100644 100644 60461198 943635c3 M sources commit c5ffb3238b07af70c71404e91817db0114c964ab Author: DJ Delorie @@ -13173,8 +13293,8 @@ CommitDate: Mon Feb 3 17:41:16 2020 -0500 - Add NEWS entry about 64-bit time_t syscall use on 32-bit targets - nptl: Avoid using PTHREAD_MUTEX_DEFAULT in macro definition [BZ #25271] -:100644 100644 6eb7cb8 a57461a M glibc.spec -:100644 100644 30a5cb7 6046119 M sources +:100644 100644 6eb7cb8c a57461ac M glibc.spec +:100644 100644 30a5cb79 60461198 M sources commit 1e5275ce0a4f18626c86e5c24b302d8cb51e6f6d Author: Patsy Franklin @@ -13195,8 +13315,8 @@ CommitDate: Thu Jan 30 12:21:39 2020 -0500 - Fix array overflow in backtrace on PowerPC (bug 25423) - getaddrinfo: Fix resource leak after strdup failure in gethosts (swbz#25425) -:100644 100644 2c6b2ca 6eb7cb8 M glibc.spec -:100644 100644 5b8f806 30a5cb7 M sources +:100644 100644 2c6b2ca7 6eb7cb8c M glibc.spec +:100644 100644 5b8f8063 30a5cb79 M sources commit d18724d2ec42da3d2dc4dbacc93e8edf92d41b1f Author: Fedora Release Engineering @@ -13208,7 +13328,7 @@ CommitDate: Tue Jan 28 22:10:23 2020 +0000 Signed-off-by: Fedora Release Engineering -:100644 100644 eb54714 2c6b2ca M glibc.spec +:100644 100644 eb54714a 2c6b2ca7 M glibc.spec commit d2f233f5b46f09b1c5b12192d4c7dff1f2478836 Author: Patsy Franklin @@ -13230,8 +13350,8 @@ CommitDate: Mon Jan 20 14:11:33 2020 -0500 - powerpc32: Fix syntax error in __GLRO macro - Remove incorrect alloc_size attribute from pvalloc [BZ #25401] -:100644 100644 69b3801 eb54714 M glibc.spec -:100644 100644 00ddde4 5b8f806 M sources +:100644 100644 69b3801a eb54714a M glibc.spec +:100644 100644 00ddde41 5b8f8063 M sources commit c996bd1b308be1d591f1d539c55c3f890313a853 Author: Florian Weimer @@ -13255,8 +13375,8 @@ CommitDate: Fri Jan 17 13:49:44 2020 +0100 - elf: Add tst-ldconfig-ld_so_conf-update test - sl_SI locale: Use "." as the thousands separator (swbz#25233) -:100644 100644 776cf96 69b3801 M glibc.spec -:100644 100644 a30de47 00ddde4 M sources +:100644 100644 776cf96d 69b3801a M glibc.spec +:100644 100644 a30de47c 00ddde41 M sources commit 258bf984b05e60b249ef87b516c7449e5645024f Author: Arjun Shankar @@ -13294,8 +13414,8 @@ CommitDate: Mon Jan 6 13:02:15 2020 +0100 - htl: Add __errno_location and __h_errno_location - hurd: Fix message reception for timer_thread -:100644 100644 407f05f 776cf96 M glibc.spec -:100644 100644 edda66d a30de47 M sources +:100644 100644 407f05f0 776cf96d M glibc.spec +:100644 100644 edda66d3 a30de47c M sources commit ee01264a306a1e5c40571176ea47b24f744b809c Author: Florian Weimer @@ -13320,9 +13440,9 @@ CommitDate: Thu Jan 2 10:42:49 2020 +0100 - Fix return code for __libc_signal_* functions - nptl: Remove duplicate internal __SIZEOF_PTHREAD_MUTEX_T (swbz#25241) -:100644 100644 224c519 8ba958e M glibc-python3.patch -:100644 100644 8bf0240 407f05f M glibc.spec -:100644 100644 5156058 edda66d M sources +:100644 100644 224c5198 8ba958e8 M glibc-python3.patch +:100644 100644 8bf02400 407f05f0 M glibc.spec +:100644 100644 51560589 edda66d3 M sources commit 53b7c468418829a9fd1373a11eb6585bf86fd18c Author: Carlos O'Donell @@ -13358,8 +13478,8 @@ CommitDate: Thu Dec 26 08:27:48 2019 -0500 - Fix __libc_signal_block_all on sparc64 - powerpc: Do not run IFUNC resolvers for LD_DEBUG=unused [BZ #24214] -:100644 100644 598e1d7 8bf0240 M glibc.spec -:100644 100644 362357e 5156058 M sources +:100644 100644 598e1d75 8bf02400 M glibc.spec +:100644 100644 362357e8 51560589 M sources commit 2e168fa077fb6998d6e9e3043005d7f587115715 Author: Patsy Franklin @@ -13419,11 +13539,11 @@ CommitDate: Thu Dec 19 15:46:31 2019 -0500 - hurd: Fix using altstack while in an RPC call to be aborted - Fix failure when CFLAGS contains -DNDEBUG (Bug 25251) -:100644 000000 36136ad 0000000 D glibc-dlopen-nodelete-fixes-1.patch -:100644 000000 54fdafa 0000000 D glibc-dlopen-nodelete-fixes-2.patch -:100644 000000 56252dd 0000000 D glibc-dlopen-nodelete-fixes-3.patch -:100644 100644 3a5c106 598e1d7 M glibc.spec -:100644 100644 b88442c 362357e M sources +:100644 000000 36136adb 00000000 D glibc-dlopen-nodelete-fixes-1.patch +:100644 000000 54fdafab 00000000 D glibc-dlopen-nodelete-fixes-2.patch +:100644 000000 56252dde 00000000 D glibc-dlopen-nodelete-fixes-3.patch +:100644 100644 3a5c106f 598e1d75 M glibc.spec +:100644 100644 b88442c4 362357e8 M sources commit b672d8b211c7cf149db8fd8ee4c5c42b9c09c132 Author: DJ Delorie @@ -13447,8 +13567,8 @@ CommitDate: Mon Dec 9 23:28:35 2019 -0500 - : Define __CORRECT_ISO_CPP_STRING_H_PROTO for Clang [BZ #25232] - build-many-glibcs.py: Move sparcv8 to extra_glibcs -:100644 100644 dcc2b86 3a5c106 M glibc.spec -:100644 100644 002d3b8 b88442c M sources +:100644 100644 dcc2b867 3a5c106f M glibc.spec +:100644 100644 002d3b85 b88442c4 M sources commit e9451d9caff9a3a2c284912b0af7b08db9a473fa Author: Florian Weimer @@ -13458,10 +13578,10 @@ CommitDate: Thu Dec 5 17:38:17 2019 +0100 Upstream patches for fallout from dlopen NODELETE changes (#1778344, #1778366) -:000000 100644 0000000 36136ad A glibc-dlopen-nodelete-fixes-1.patch -:000000 100644 0000000 54fdafa A glibc-dlopen-nodelete-fixes-2.patch -:000000 100644 0000000 56252dd A glibc-dlopen-nodelete-fixes-3.patch -:100644 100644 3edcf58 dcc2b86 M glibc.spec +:000000 100644 00000000 36136adb A glibc-dlopen-nodelete-fixes-1.patch +:000000 100644 00000000 54fdafab A glibc-dlopen-nodelete-fixes-2.patch +:000000 100644 00000000 56252dde A glibc-dlopen-nodelete-fixes-3.patch +:100644 100644 3edcf580 dcc2b867 M glibc.spec commit 134ad59d86c9e380e325a6cdc6eff247dcbd1dea Author: Patsy Franklin @@ -13496,8 +13616,8 @@ CommitDate: Wed Dec 4 23:09:33 2019 -0500 - Fix syntax error in build-many-glibcs.py. - Define MADV_COLD and MADV_PAGEOUT from Linux 5.4. -:100644 100644 6221038 3edcf58 M glibc.spec -:100644 100644 d176a13 002d3b8 M sources +:100644 100644 62210382 3edcf580 M glibc.spec +:100644 100644 d176a13e 002d3b85 M sources commit 761a9384b6ae8d8fb824d99ab37a280c54aa80cc Author: Florian Weimer @@ -13507,8 +13627,8 @@ CommitDate: Mon Dec 2 10:02:46 2019 +0100 dlopen: Remove incorrect assert in activate_nodelete (#1778344) -:000000 100644 0000000 21a3475 A glibc-rh1778344.patch -:100644 100644 90cb78f 6221038 M glibc.spec +:000000 100644 00000000 21a3475d A glibc-rh1778344.patch +:100644 100644 90cb78fa 62210382 M glibc.spec commit 17391589c0dd9b92cf9c61efee9b0f12d7d3d030 Author: Florian Weimer @@ -13538,8 +13658,8 @@ CommitDate: Thu Nov 28 15:58:33 2019 +0100 - sparc: Use atomic compiler builtins on sparc - Remove 32 bit sparc v7 support -:100644 100644 c61137c 90cb78f M glibc.spec -:100644 100644 1ee9aa8 d176a13 M sources +:100644 100644 c61137c7 90cb78fa M glibc.spec +:100644 100644 1ee9aa8d d176a13e M sources commit a9ba88d656ef82355541ca2bb3eb0d63e56878f9 Author: Arjun Shankar @@ -13576,8 +13696,8 @@ CommitDate: Wed Nov 27 16:23:05 2019 +0100 - nptl: Fix __PTHREAD_MUTEX_INITIALIZER for !__PTHREAD_MUTEX_HAVE_PREV - S390: Fix handling of needles crossing a page in strstr z15 ifunc [BZ #25226] -:100644 100644 8f824f7 c61137c M glibc.spec -:100644 100644 74af71f 1ee9aa8 M sources +:100644 100644 8f824f71 c61137c7 M glibc.spec +:100644 100644 74af71f7 1ee9aa8d M sources commit 967a41b547a03bf2ce258cc838e56e6ca568d220 Author: Patsy Franklin @@ -13604,8 +13724,8 @@ CommitDate: Mon Nov 18 19:21:14 2019 -0500 - aarch64: Increase small and medium cases for __memcpy_generic - login: Introduce matches_last_entry to utmp processing -:100644 100644 e0d996d 8f824f7 M glibc.spec -:100644 100644 6c4fee6 74af71f M sources +:100644 100644 e0d996d5 8f824f71 M glibc.spec +:100644 100644 6c4fee69 74af71f7 M sources commit 24846fb24d523a8549918dbdb1213024b1583f37 Author: Arjun Shankar @@ -13615,8 +13735,8 @@ CommitDate: Tue Nov 12 18:46:37 2019 +0100 Trim changelog -:100644 100644 28b5ace 784e33c M ChangeLog.old -:100644 100644 e99f69e e0d996d M glibc.spec +:100644 100644 28b5acee 784e33c4 M ChangeLog.old +:100644 100644 e99f69e1 e0d996d5 M glibc.spec commit 9bd4f8ff4363ca22d850f6ba272aa3f591fc9237 Author: Arjun Shankar @@ -13649,8 +13769,8 @@ CommitDate: Tue Nov 12 18:20:32 2019 +0100 - Fix clock_nanosleep when interrupted by a signal - slotinfo in struct dtv_slotinfo_list should be flexible array [BZ #25097] -:100644 100644 476f692 e99f69e M glibc.spec -:100644 100644 b97fab1 6c4fee6 M sources +:100644 100644 476f6927 e99f69e1 M glibc.spec +:100644 100644 b97fab14 6c4fee69 M sources commit ebf75398f06dd27357d8a5321e8e5959633b8182 Author: Patsy Franklin @@ -13701,10 +13821,10 @@ CommitDate: Wed Nov 6 15:12:38 2019 -0500 - hurd: Support for file record locking - Comment out initgroups from example nsswitch.conf (Bug 25146) -:100644 100644 952f13d d55e4e7 M SUPPORTED -:100644 100644 9101527 447a60e M glibc-fedora-nsswitch.patch -:100644 100644 c94ce8a 476f692 M glibc.spec -:100644 100644 8e276a6 b97fab1 M sources +:100644 100644 952f13d2 d55e4e7b M SUPPORTED +:100644 100644 91015274 447a60ef M glibc-fedora-nsswitch.patch +:100644 100644 c94ce8a0 476f6927 M glibc.spec +:100644 100644 8e276a61 b97fab14 M sources commit 0ce23ddfbe0e5e0b6b5d73bedf55dd5f467b7a3c Author: DJ Delorie @@ -13726,8 +13846,8 @@ CommitDate: Mon Oct 28 14:17:34 2019 -0400 - sysdeps/stat: Handle 64-bit ino_t types on 32-bit hosts - S390: Remove not needed stack frame in syscall function. -:100644 100644 0c79bea c94ce8a M glibc.spec -:100644 100644 2a39c70 8e276a6 M sources +:100644 100644 0c79bea2 c94ce8a0 M glibc.spec +:100644 100644 2a39c70a 8e276a61 M sources commit 59ddeeccffbeaa212f7d3442854626e0796039c4 Author: DJ Delorie @@ -13741,7 +13861,7 @@ CommitDate: Fri Oct 25 13:49:25 2019 -0400 installing all the separate lang files; but the lang files have the *.mo files which all-langpacks didn't. -:100644 100644 e9ddf8b 0c79bea M glibc.spec +:100644 100644 e9ddf8b6 0c79bea2 M glibc.spec commit eb580e4bc609c9b07278527cd90a74db548a23e2 Author: DJ Delorie @@ -13753,7 +13873,7 @@ CommitDate: Thu Oct 24 14:33:25 2019 -0400 Add Requires on coreutils for glibc-headers (uses rm) -:100644 100644 d288a2b e9ddf8b M glibc.spec +:100644 100644 d288a2bf e9ddf8b6 M glibc.spec commit 8936dd058af6160ac119a3e67972b93b66d161cc Author: Arjun Shankar @@ -13771,8 +13891,8 @@ CommitDate: Wed Oct 23 12:14:40 2019 +0200 - Remove x64 _finite tests and references - Fix testroot.pristine creation copying dynamic linker -:100644 100644 d27b6f9 d288a2b M glibc.spec -:100644 100644 d42f569 2a39c70 M sources +:100644 100644 d27b6f9c d288a2bf M glibc.spec +:100644 100644 d42f569d 2a39c70a M sources commit 8e7139fb4c04110da96a09db61bb41376709386a Author: Patsy Franklin @@ -13817,9 +13937,9 @@ CommitDate: Sun Oct 20 15:33:40 2019 -0400 - posix/tst-wordexp-nocmd: Fix diagnostics output in test - wordexp: Split out command execution tests from posix/wordexp-test -:100644 000000 c1e30d4 0000000 D glibc-rh1615608.patch -:100644 100644 11865a4 d27b6f9 M glibc.spec -:100644 100644 f142e09 d42f569 M sources +:100644 000000 c1e30d45 00000000 D glibc-rh1615608.patch +:100644 100644 11865a4e d27b6f9c M glibc.spec +:100644 100644 f142e09c d42f569d M sources commit 81c303b2354a29baade5782d48e30e7f2be62fd3 Author: Arjun Shankar @@ -13860,9 +13980,9 @@ CommitDate: Tue Oct 8 16:38:17 2019 +0200 - riscv: Remove support for variable page sizes - nptl: Move pthread_attr_setschedparam implementation into libc -:100644 100644 f7d06ca 3b21b89 M glibc-rh741105.patch -:100644 100644 49541d7 11865a4 M glibc.spec -:100644 100644 ff3cb74 f142e09 M sources +:100644 100644 f7d06caf 3b21b89c M glibc-rh741105.patch +:100644 100644 49541d74 11865a4e M glibc.spec +:100644 100644 ff3cb745 f142e09c M sources commit 64db3acbd3bee039cb3d8619158e680be951d5bf Author: Zbigniew Jędrzejewski-Szmek @@ -13872,8 +13992,8 @@ CommitDate: Mon Sep 30 11:36:45 2019 -0400 Use full locale names in langpack descriptions (#1651375) -:000000 100755 0000000 4a93041 A convnames.py -:100644 100644 1863f84 49541d7 M glibc.spec +:000000 100755 00000000 4a930414 A convnames.py +:100644 100644 1863f841 49541d74 M glibc.spec commit 46d12a81bfbeeac8495a0f2bce803b715196b7f2 Author: Patsy Franklin @@ -13907,8 +14027,8 @@ CommitDate: Thu Sep 26 22:30:13 2019 -0400 - Remove PREPARE_VERSION and PREPARE_VERSION_KNOW - Fix small error in HP_TIMING_PRINT trailing null char setting -:100644 100644 512d4f0 1863f84 M glibc.spec -:100644 100644 c9d6d38 ff3cb74 M sources +:100644 100644 512d4f0a 1863f841 M glibc.spec +:100644 100644 c9d6d385 ff3cb745 M sources commit ea59ae7dfe9d2e998a7d5be7e0de887d8c6b3543 Author: Parag Nemade @@ -13923,7 +14043,7 @@ CommitDate: Thu Sep 26 14:21:05 2019 +0530 Signed-off-by: Parag Nemade -:100644 100644 9346b73 512d4f0 M glibc.spec +:100644 100644 9346b739 512d4f0a M glibc.spec commit 61f15e90bc580a970b9647b0f68406f24dbbed55 Author: DJ Delorie @@ -13941,8 +14061,8 @@ CommitDate: Mon Sep 16 14:47:26 2019 -0400 - Fix three GNU license URLs, along with trailing-newline issues. - Prefer https to http for gnu.org and fsf.org URLs -:100644 100644 b3c23e1 9346b73 M glibc.spec -:100644 100644 5f97feb c9d6d38 M sources +:100644 100644 b3c23e18 9346b739 M glibc.spec +:100644 100644 5f97febf c9d6d385 M sources commit 6129ad64d4617aa3f02d0d880c639ffb78f9f5d2 Author: Patsy Franklin @@ -13988,8 +14108,8 @@ CommitDate: Fri Sep 6 07:38:07 2019 -0400 - login: pututxline could fail to overwrite existing entries [BZ #24902] - Fix posix/tst-regex by using a dedicated input-file. -:100644 100644 684e682 b3c23e1 M glibc.spec -:100644 100644 ba58a14 5f97feb M sources +:100644 100644 684e6826 b3c23e18 M glibc.spec +:100644 100644 ba58a14c 5f97febf M sources commit 1fa217076ec9c97f4f8f8919b9888730f4a305d0 Author: DJ Delorie @@ -14002,7 +14122,7 @@ CommitDate: Tue Aug 27 15:07:36 2019 -0400 The makedb program is only used to make databases for the nss_db module, so it makes sense to only install them together. -:100644 100644 d4ceec7 684e682 M glibc.spec +:100644 100644 d4ceec7f 684e6826 M glibc.spec commit 5846004b81345f5b77a4014403e05790580d651a Author: DJ Delorie @@ -14031,8 +14151,8 @@ CommitDate: Mon Aug 26 14:24:15 2019 -0400 - Add tgmath.h macros for narrowing functions. - Update i386 libm-test-ulps -:100644 100644 113e131 d4ceec7 M glibc.spec -:100644 100644 e7e30ce ba58a14 M sources +:100644 100644 113e131c d4ceec7f M glibc.spec +:100644 100644 e7e30ceb ba58a14c M sources commit 7e6e06c36d766c3da31360c1c465580c5dbbc8ac Author: Carlos O'Donell @@ -14051,11 +14171,11 @@ CommitDate: Tue Aug 20 17:03:01 2019 -0400 - login: Use struct flock64 in utmp (swbz#24880) - login: Disarm timer after utmp lock acquisition (swbz#24879) -:100644 000000 6a77a24 0000000 D glibc-fedora-nscd-warnings.patch -:000000 100644 0000000 9101527 A glibc-fedora-nsswitch.patch -:100644 100644 7e18ed3 113e131 M glibc.spec -:100644 000000 ba87550 0000000 D nsswitch.conf -:100644 100644 e274082 e7e30ce M sources +:100644 000000 6a77a242 00000000 D glibc-fedora-nscd-warnings.patch +:000000 100644 00000000 91015274 A glibc-fedora-nsswitch.patch +:100644 100644 7e18ed3d 113e131c M glibc.spec +:100644 000000 ba87550e 00000000 D nsswitch.conf +:100644 100644 e2740829 e7e30ceb M sources commit 72195d44855ab96875f117acb75c37f98dcb26a9 Author: Carlos O'Donell @@ -14069,8 +14189,8 @@ CommitDate: Fri Aug 16 10:07:58 2019 -0400 valid unicode code points, otherwise it treats it as a symbol and since we don't define the symbol the entire range is unused. -:100644 100644 7215e15 a4cf357 M glibc-c-utf8-locale.patch -:100644 100644 f0799ca 7e18ed3 M glibc.spec +:100644 100644 7215e155 a4cf357a M glibc-c-utf8-locale.patch +:100644 100644 f0799caa 7e18ed3d M glibc.spec commit 77335ae30ec1efddaa8935bc4283513b07f1cdb6 Author: Florian Weimer @@ -14080,7 +14200,7 @@ CommitDate: Thu Aug 15 10:41:39 2019 +0200 Source upload -:100644 100644 46dc6dd e274082 M sources +:100644 100644 46dc6dd4 e2740829 M sources commit 76ac51ab78c47ba3ae255e00919c430008c68877 Author: Florian Weimer @@ -14092,7 +14212,7 @@ CommitDate: Thu Aug 15 10:37:59 2019 +0200 Upstream commit: 341da5b4b6253de9a7581a066f33f89cacb44dec -:100644 100644 b20269d f0799ca M glibc.spec +:100644 100644 b20269d3 f0799caa M glibc.spec commit 293db26d857ebdef0ceeea5da44f166d91d0e5fb Author: Florian Weimer @@ -14102,7 +14222,7 @@ CommitDate: Fri Aug 2 14:24:18 2019 +0200 Fix changelog version -:100644 100644 b2b90b4 b20269d M glibc.spec +:100644 100644 b2b90b46 b20269d3 M glibc.spec commit 525a40ce11d4b3c028d8dce96df51327c75bd5c2 Author: Florian Weimer @@ -14112,7 +14232,7 @@ CommitDate: Fri Aug 2 14:23:17 2019 +0200 Lower the release number to 1 -:100644 100644 ca842c0 b2b90b4 M glibc.spec +:100644 100644 ca842c0f b2b90b46 M glibc.spec commit 1ff5b17afe1841482ef15ce32abeb8d8239a1beb Author: Florian Weimer @@ -14129,9 +14249,9 @@ CommitDate: Fri Aug 2 14:16:34 2019 +0200 - iconv: Revert steps array reference counting changes (#1734680) - Restore r31 setting in powerpc32 swapcontext -:100644 000000 c4b5137 0000000 D glibc-rh1734680.patch -:100644 100644 44db764 ca842c0 M glibc.spec -:100644 100644 5d4c6f9 46dc6dd M sources +:100644 000000 c4b51374 00000000 D glibc-rh1734680.patch +:100644 100644 44db7646 ca842c0f M glibc.spec +:100644 100644 5d4c6f91 46dc6dd4 M sources commit a4d24cbe4552a79c9f854fc308bb01afcd7f5b8e Author: Florian Weimer @@ -14141,8 +14261,8 @@ CommitDate: Wed Jul 31 11:53:38 2019 +0200 Fix memory leak in iconv_open (#1734680) -:000000 100644 0000000 c4b5137 A glibc-rh1734680.patch -:100644 100644 d1177eb 44db764 M glibc.spec +:000000 100644 00000000 c4b51374 A glibc-rh1734680.patch +:100644 100644 d1177ebd 44db7646 M glibc.spec commit b3c6eb0e4cfd2a5f8c809a2cc2dca961d1145f29 Author: Florian Weimer @@ -14164,9 +14284,9 @@ CommitDate: Tue Jul 30 11:05:22 2019 +0200 - Linux: Use in-tree copy of SO_ constants for !__USE_MISC (swbz#24532) - test-container: Avoid copying unintended system libraries -:100644 000000 37a1bc5 0000000 D glibc-rh1732406.patch -:100644 100644 f49ddb2 d1177eb M glibc.spec -:100644 100644 137c890 5d4c6f9 M sources +:100644 000000 37a1bc59 00000000 D glibc-rh1732406.patch +:100644 100644 f49ddb27 d1177ebd M glibc.spec +:100644 100644 137c8904 5d4c6f91 M sources commit 6144405435800b483f02ea08133a786c706eac92 Author: Fedora Release Engineering @@ -14178,7 +14298,7 @@ CommitDate: Thu Jul 25 03:41:31 2019 +0000 Signed-off-by: Fedora Release Engineering -:100644 100644 e77fda0 f49ddb2 M glibc.spec +:100644 100644 e77fda03 f49ddb27 M glibc.spec commit c96359dd1c6c259fa71ab51940e5c961fce53fa9 Author: Florian Weimer @@ -14188,8 +14308,8 @@ CommitDate: Tue Jul 23 12:14:15 2019 +0200 Revert libio change that causes crashes (#1732406) -:000000 100644 0000000 37a1bc5 A glibc-rh1732406.patch -:100644 100644 ec4ce29 e77fda0 M glibc.spec +:000000 100644 00000000 37a1bc59 A glibc-rh1732406.patch +:100644 100644 ec4ce293 e77fda03 M glibc.spec commit 8797f878024852d6febbec8a4b79296e99b47e3a Author: DJ Delorie @@ -14205,8 +14325,8 @@ CommitDate: Mon Jul 22 14:06:01 2019 -0400 - locale/C-translit.h.in: Cyrillic -> ASCII transliteration [BZ #2872] - Linux: Update syscall-names.list to Linux 5.2 -:100644 100644 0e44e39 ec4ce29 M glibc.spec -:100644 100644 45a4530 137c890 M sources +:100644 100644 0e44e398 ec4ce293 M glibc.spec +:100644 100644 45a45301 137c8904 M sources commit 5f0fe918a52e92f8700108ae5e09a4f1b2fee2bf Author: DJ Delorie @@ -14237,8 +14357,8 @@ CommitDate: Thu Jul 18 15:15:24 2019 -0400 - posix: Fix large mmap64 offset for mips64n32 (BZ#24699) - nss_db: fix endent wrt NULL mappings [BZ #24695] [BZ #24696] -:100644 100644 cccdda7 0e44e39 M glibc.spec -:100644 100644 47f2ac5 45a4530 M sources +:100644 100644 cccdda78 0e44e398 M glibc.spec +:100644 100644 47f2ac54 45a45301 M sources commit c098079671a2643b10ddf8e390aa153e027676da Author: Carlos O'Donell @@ -14266,8 +14386,8 @@ CommitDate: Wed Jul 10 12:49:03 2019 -0400 - Linux: Add nds32 specific syscalls to syscall-names.list - szl_PL locale: Fix a typo in the previous commit (bug 24652). -:100644 100644 ca8da28 cccdda7 M glibc.spec -:100644 100644 ffe67e5 47f2ac5 M sources +:100644 100644 ca8da28c cccdda78 M glibc.spec +:100644 100644 ffe67e5c 47f2ac54 M sources commit 4a003b4922c29c370e8d81355949b53899aff30c Author: DJ Delorie @@ -14286,8 +14406,8 @@ CommitDate: Mon Jun 24 15:59:37 2019 -0400 - support: Invent verbose_printf macro - support: Add xclock_now helper function. -:100644 100644 a9a20f8 ca8da28 M glibc.spec -:100644 100644 26707a1 ffe67e5 M sources +:100644 100644 a9a20f82 ca8da28c M glibc.spec +:100644 100644 26707a19 ffe67e5c M sources commit ca11f82b699604ed6375b632954441384d3a3ae6 Author: Carlos O'Donell @@ -14300,8 +14420,8 @@ CommitDate: Mon Jun 24 10:59:03 2019 -0400 The patch has been removed and will be added back once F31 branches. No official build happened so we can just remove the NEVRA usage. -:100644 000000 2b921ac 0000000 D glibc-fedora-memalign.patch -:100644 100644 16a73d9 a9a20f8 M glibc.spec +:100644 000000 2b921ac7 00000000 D glibc-fedora-memalign.patch +:100644 100644 16a73d90 a9a20f82 M glibc.spec commit b21f47f28708350d0b21fb9870be32bdddb3ef9b Author: Carlos O'Donell @@ -14311,8 +14431,8 @@ CommitDate: Fri Jun 21 08:13:12 2019 -0400 Reduce external fragmentation in memalign (swbz#14581). -:000000 100644 0000000 2b921ac A glibc-fedora-memalign.patch -:100644 100644 a9a20f8 16a73d9 M glibc.spec +:000000 100644 00000000 2b921ac7 A glibc-fedora-memalign.patch +:100644 100644 a9a20f82 16a73d90 M glibc.spec commit d53844dd72f7b9caac2f5b0e5d803b0815e2febb Author: Florian Weimer @@ -14335,8 +14455,8 @@ CommitDate: Fri Jun 21 09:40:58 2019 +0200 - powerpc: Refactor powerpc64 lround/lroundf/llround/llroundf - powerpc: refactor powerpc64 lrint/lrintf/llrint/llrintf -:100644 100644 c93262b a9a20f8 M glibc.spec -:100644 100644 bfec39a 26707a1 M sources +:100644 100644 c93262b3 a9a20f82 M glibc.spec +:100644 100644 bfec39a5 26707a19 M sources commit 134a36d7f8bad4d46e1d9a8a6c2768a955833559 Author: Florian Weimer @@ -14346,7 +14466,7 @@ CommitDate: Mon Jun 17 15:45:58 2019 +0200 Remove comments on %endif, required by newer RPM -:100644 100644 29d500f c93262b M glibc.spec +:100644 100644 29d500f3 c93262b3 M glibc.spec commit a464847a25b15f2621e9a6b54882a2457781f77d Author: Florian Weimer @@ -14382,8 +14502,8 @@ CommitDate: Mon Jun 17 14:36:16 2019 +0200 - Benchmark strstr hard needles - Fix malloc tests build with GCC 10 -:100644 100644 336b7bf 29d500f M glibc.spec -:100644 100644 7d75f3e bfec39a M sources +:100644 100644 336b7bf6 29d500f3 M glibc.spec +:100644 100644 7d75f3eb bfec39a5 M sources commit 9c5a4265d8d93a528a816da719cbc660d1196b6d Author: Patsy Franklin @@ -14401,8 +14521,8 @@ CommitDate: Mon Jun 10 13:01:36 2019 -0400 - iconv: Use __twalk_r in __gconv_release_shlib - Fix iconv buffer handling with IGNORE error handler (swbz#18830) -:100644 100644 4c96784 336b7bf M glibc.spec -:100644 100644 a07f13e 7d75f3e M sources +:100644 100644 4c96784f 336b7bf6 M glibc.spec +:100644 100644 a07f13ee 7d75f3eb M sources commit bd8d2430b4dbd5919cb0bb54332db377ad0934cd Author: Florian Weimer @@ -14412,8 +14532,8 @@ CommitDate: Wed Jun 5 12:20:08 2019 +0200 Restore /usr/lib/locale/locale-archive under its original name (#1716710) -:100644 000000 6a9412f 0000000 D glibc-rh1716710.patch -:100644 100644 7320848 4c96784 M glibc.spec +:100644 000000 6a9412f3 00000000 D glibc-rh1716710.patch +:100644 100644 7320848c 4c96784f M glibc.spec commit 819bb4065ce3704ef2a3dba2ef1d9780adeebae9 Author: Florian Weimer @@ -14423,8 +14543,8 @@ CommitDate: Tue Jun 4 16:02:20 2019 +0200 Add glibc version to locale-archive name (#1716710) -:000000 100644 0000000 6a9412f A glibc-rh1716710.patch -:100644 100644 1b35e9d 7320848 M glibc.spec +:000000 100644 00000000 6a9412f3 A glibc-rh1716710.patch +:100644 100644 1b35e9d1 7320848c M glibc.spec commit 3aed6a961c489d512e4d2b1f95505c6d0696d3b1 Author: Carlos O'Donell @@ -14440,8 +14560,8 @@ CommitDate: Mon Jun 3 16:07:16 2019 -0400 - arm: Remove ioperm/iopl/inb/inw/inl/outb/outw/outl support. - Add INADDR_ALLSNOOPERS_GROUP from Linux 5.1 to netinet/in.h. -:100644 100644 2dde267 1b35e9d M glibc.spec -:100644 100644 33682ff a07f13e M sources +:100644 100644 2dde267a 1b35e9d1 M glibc.spec +:100644 100644 33682ffc a07f13ee M sources commit 34927af202deb7d97dbb211a3cb13b1c53b496d3 Author: Carlos O'Donell @@ -14451,9 +14571,9 @@ CommitDate: Sat Jun 1 20:23:38 2019 -0400 Convert glibc_post_upgrade to lua. -:100644 000000 a64adfc 0000000 D glibc-post_upgrade.patch -:100644 100644 16cf4c0 2dde267 M glibc.spec -:100644 000000 9014857 0000000 D glibc_post_upgrade.c +:100644 000000 a64adfcd 00000000 D glibc-post_upgrade.patch +:100644 100644 16cf4c0e 2dde267a M glibc.spec +:100644 000000 9014857f 00000000 D glibc_post_upgrade.c commit fcb40838939e1ea02ed122a8d5f48cf2be734845 Author: Florian Weimer @@ -14472,8 +14592,8 @@ CommitDate: Sat Jun 1 13:41:32 2019 +0200 - tt_RU: Fix orthographic mistakes in mon and abmon sections (swbz#24369) - Add IGMP_MRDISC_ADV from Linux 5.1 to netinet/igmp.h. -:100644 100644 6995753 16cf4c0 M glibc.spec -:100644 100644 ad27d2f 33682ff M sources +:100644 100644 6995753d 16cf4c0e M glibc.spec +:100644 100644 ad27d2fc 33682ffc M sources commit 50bcae98df7d383733d4d6d896b9e1e829914eb0 Author: Florian Weimer @@ -14485,9 +14605,9 @@ CommitDate: Sat Jun 1 13:13:40 2019 +0200 Reviewed-by: Carlos O'Donell -:100644 000000 9183972 0000000 D build-locale-archive.c -:100644 000000 299b0f0 0000000 D glibc-fedora-locarchive.patch -:100644 100644 775ecef 6995753 M glibc.spec +:100644 000000 91839723 00000000 D build-locale-archive.c +:100644 000000 299b0f06 00000000 D glibc-fedora-locarchive.patch +:100644 100644 775ecef3 6995753d M glibc.spec commit 74725dd94ede74f445c16a936024baf108594903 Author: Arjun Shankar @@ -14504,8 +14624,8 @@ CommitDate: Mon May 27 14:46:58 2019 +0200 - Add F_SEAL_FUTURE_WRITE from Linux 5.1 to bits/fcntl-linux.h - nss_dns: Check for proper A/AAAA address alignment -:100644 100644 e9da711 775ecef M glibc.spec -:100644 100644 8aeb1ec ad27d2f M sources +:100644 100644 e9da7116 775ecef3 M glibc.spec +:100644 100644 8aeb1ecc ad27d2fc M sources commit 9701fdade7415cc798e0bd17efd1c5310789fb93 Author: DJ Delorie @@ -14537,8 +14657,8 @@ CommitDate: Tue May 21 14:21:21 2019 -0400 - dlfcn: Guard __dlerror_main_freeres with __libc_once_get (once) [swbz# 24476] - Add missing Changelog entry -:100644 100644 df07e14 e9da711 M glibc.spec -:100644 100644 c08fdc1 8aeb1ec M sources +:100644 100644 df07e140 e9da7116 M glibc.spec +:100644 100644 c08fdc1b 8aeb1ecc M sources commit 6666c40188f4103b0ec2dcbc0e7d0f80fa30ce9f Author: Florian Weimer @@ -14585,8 +14705,8 @@ CommitDate: Wed May 15 17:55:39 2019 +0200 - elf: Fix elf/tst-pldd with --enable-hardcoded-path-in-tests (swbz#24506) - misc: Add twalk_r function -:100644 100644 391b768 df07e14 M glibc.spec -:100644 100644 7b1d9f8 c08fdc1 M sources +:100644 100644 391b768a df07e140 M glibc.spec +:100644 100644 7b1d9f87 c08fdc1b M sources commit 4124e42f39ca859587745c25caffd0733ef2e456 Author: Arjun Shankar @@ -14604,8 +14724,8 @@ CommitDate: Thu May 2 13:03:35 2019 +0200 - Fix -O1 compilation errors with `__ddivl' and `__fdivl' [BZ #19444] - Make mktime etc. compatible with __time64_t -:100644 100644 22692fc 391b768 M glibc.spec -:100644 100644 abbb490 7b1d9f8 M sources +:100644 100644 22692fc1 391b768a M glibc.spec +:100644 100644 abbb4906 7b1d9f87 M sources commit d9394d9d7e84eb1e5197d8ffb7ed277584e345f1 Author: Florian Weimer @@ -14623,8 +14743,8 @@ CommitDate: Fri Apr 26 13:51:28 2019 +0200 - locale: Add LOCPATH diagnostics to the locale program - benchtests: Enable BIND_NOW if configured with --enable-bind-now -:100644 100644 cf61b18 22692fc M glibc.spec -:100644 100644 7bfa935 abbb490 M sources +:100644 100644 cf61b18c 22692fc1 M glibc.spec +:100644 100644 7bfa9354 abbb4906 M sources commit 47192f413e15f42d0b6d2aeb869ce13f4e75ee25 Author: DJ Delorie @@ -14645,8 +14765,8 @@ CommitDate: Mon Apr 22 15:33:30 2019 -0400 - support: Add support_capture_subprogram - stdlib/tst-secure-getenv: handle >64 groups -:100644 100644 d16a96d cf61b18 M glibc.spec -:100644 100644 d6a53be 7bfa935 M sources +:100644 100644 d16a96d6 cf61b18c M glibc.spec +:100644 100644 d6a53be1 7bfa9354 M sources commit 448365c7f7e6924929c5bcfba271cde4751f97d5 Author: Florian Weimer @@ -14662,8 +14782,8 @@ CommitDate: Mon Apr 15 15:05:30 2019 +0200 - alloc_buffer: Return unqualified pointer type in alloc_buffer_next - malloc: Set and reset all hooks for tracing (swbz#16573) -:100644 100644 9c44fd6 d16a96d M glibc.spec -:100644 100644 15c2aa0 d6a53be M sources +:100644 100644 9c44fd68 d16a96d6 M glibc.spec +:100644 100644 15c2aa00 d6a53be1 M sources commit a54853472d5f9ec445fcf0be957f3aa68e852a8c Author: Florian Weimer @@ -14673,7 +14793,7 @@ CommitDate: Thu Apr 11 21:53:43 2019 +0200 Run valgrind smoke test against the install tree -:100644 100644 c080526 9c44fd6 M glibc.spec +:100644 100644 c0805267 9c44fd68 M glibc.spec commit dcaaa784676727b0ea9206c6c6aa0e8ef955a1e1 Author: Florian Weimer @@ -14683,7 +14803,7 @@ CommitDate: Thu Apr 11 12:18:48 2019 +0200 Do not use --g-libs with find-debuginfo.sh; it breaks valgrind (#1698824) -:100644 100644 586e94d c080526 M glibc.spec +:100644 100644 586e94da c0805267 M glibc.spec commit 7b77f1b10ff9c4a50f36e2d2805fbf783a81b55d Author: Florian Weimer @@ -14693,7 +14813,7 @@ CommitDate: Wed Apr 10 10:26:43 2019 +0200 Strip debugging information from installed programs again (#1661510) -:100644 100644 562aba2 586e94d M glibc.spec +:100644 100644 562aba2a 586e94da M glibc.spec commit b797613532f113578d9c3e229a921b0e732ae145 Author: Carlos O'Donell @@ -14714,9 +14834,9 @@ CommitDate: Tue Apr 9 11:11:06 2019 -0400 - resolv: Remove support for RES_USE_INET6 and the inet6 option - resolv: Remove RES_INSECURE1, RES_INSECURE2 -:100644 000000 0e4afa1 0000000 D glibc-warning-fix.patch -:100644 100644 7612be9 562aba2 M glibc.spec -:100644 100644 71350b8 15c2aa0 M sources +:100644 000000 0e4afa10 00000000 D glibc-warning-fix.patch +:100644 100644 7612be9f 562aba2a M glibc.spec +:100644 100644 71350b8a 15c2aa00 M sources commit e4dacdad3d14585c74a67f9ea450eca030716e0c Author: Arjun Shankar @@ -14734,8 +14854,8 @@ CommitDate: Thu Apr 4 03:07:08 2019 +0200 - ja_JP locale: Add entry for the new Japanese era [BZ #22964] - Add Reiwa era tests to time/tst-strftime3.c -:100644 100644 667ec05 7612be9 M glibc.spec -:100644 100644 6418979 71350b8 M sources +:100644 100644 667ec057 7612be9f M glibc.spec +:100644 100644 6418979a 71350b8a M sources commit 539fe8abbd575c2cb34c59b8bb52bdd73c76b1b7 Author: Arjun Shankar @@ -14745,7 +14865,7 @@ CommitDate: Mon Apr 1 18:33:52 2019 +0200 Update sources file -:100644 100644 94170ab 6418979 M sources +:100644 100644 94170ab0 6418979a M sources commit 7b2061df55ba606e8a67e096248e38bce41b2c83 Author: Arjun Shankar @@ -14777,7 +14897,7 @@ CommitDate: Mon Apr 1 16:45:15 2019 +0200 - powerpc: Use __builtin_{mffs,mtfsf} - RISC-V: Fix `test' operand error with soft-float ABI being configured -:100644 100644 47d9185 667ec05 M glibc.spec +:100644 100644 47d9185a 667ec057 M glibc.spec commit bfa3999fdd34d449196784049222ddd5022a3ecb Author: Carlos O'Donell @@ -14787,7 +14907,7 @@ CommitDate: Wed Mar 20 22:41:20 2019 -0400 Fix %changelog date. -:100644 100644 0eaa5ed 47d9185 M glibc.spec +:100644 100644 0eaa5edc 47d9185a M glibc.spec commit 82a97343d6405772541d754aeb4bab79612bd839 Author: Carlos O'Donell @@ -14797,9 +14917,9 @@ CommitDate: Wed Mar 20 22:36:49 2019 -0400 Add warnings and notes to /etc/nsswitch.conf and /etc/nscd.conf. -:000000 100644 0000000 6a77a24 A glibc-fedora-nscd-warnings.patch -:100644 100644 96def0f 0eaa5ed M glibc.spec -:100644 100644 b49a3b2 ba87550 M nsswitch.conf +:000000 100644 00000000 6a77a242 A glibc-fedora-nscd-warnings.patch +:100644 100644 96def0fa 0eaa5edc M glibc.spec +:100644 100644 b49a3b27 ba87550e M nsswitch.conf commit a84cd6b5305baaba9d03431a10ecd35802bf348e Author: DJ Delorie @@ -14820,8 +14940,8 @@ CommitDate: Mon Mar 18 13:23:22 2019 -0400 5b06f538c5 malloc: Check for large bin list corruption when inserting unsorted chunk a0a0dc8317 Remove obsolete, never-implemented XSI STREAMS declarations -:100644 100644 950bf14 96def0f M glibc.spec -:100644 100644 1b699a0 94170ab M sources +:100644 100644 950bf140 96def0fa M glibc.spec +:100644 100644 1b699a0a 94170ab0 M sources commit fdf2115d36548c89f99e39a43bc35e3a2411b3f0 Author: Florian Weimer @@ -14844,9 +14964,9 @@ CommitDate: Thu Mar 14 16:18:47 2019 +0100 - Use a proper C tokenizer to implement the obsolete typedefs test. - Fix output of LD_SHOW_AUXV=1. -:100644 000000 0d8f7d9 0000000 D glibc-fedora-streams-rh436349.patch -:100644 100644 bfaf8d8 950bf14 M glibc.spec -:100644 100644 182cd2f 1b699a0 M sources +:100644 000000 0d8f7d90 00000000 D glibc-fedora-streams-rh436349.patch +:100644 100644 bfaf8d8b 950bf140 M glibc.spec +:100644 100644 182cd2f9 1b699a0a M sources commit 4d79a1a6ddd9c16f2764a9d4adb1ce74c88a5076 Author: Florian Weimer @@ -14856,7 +14976,7 @@ CommitDate: Wed Mar 13 17:44:44 2019 +0100 Update sources -:100644 100644 b085d40 182cd2f M sources +:100644 100644 b085d406 182cd2f9 M sources commit 70ec0cd8b9acb1aaf7df30e86728a558bfdb1e21 Author: Florian Weimer @@ -14881,8 +15001,8 @@ CommitDate: Wed Mar 13 13:33:01 2019 +0100 - check-wrapper-headers test: Adjust Fortran include file directory - Fix location where math-vector-fortran.h is installed. -:100644 000000 d1dbe3f 0000000 D glibc-rh1670028.patch -:100644 100644 0cbeb52 bfaf8d8 M glibc.spec +:100644 000000 d1dbe3f7 00000000 D glibc-rh1670028.patch +:100644 100644 0cbeb52b bfaf8d8b M glibc.spec commit 97506ad65a03a9551cec2d6be9a3a27e9b66cb40 Author: Jeroen van Meeuwen (Kolab Systems) @@ -14892,7 +15012,7 @@ CommitDate: Fri Mar 8 13:24:23 2019 +0100 It's there now... -:100644 100644 f728764 0cbeb52 M glibc.spec +:100644 100644 f7287648 0cbeb52b M glibc.spec commit 5b4007bb565c549efa1b37a61afe390f656398ab Author: Jeroen van Meeuwen (Kolab Systems) @@ -14906,7 +15026,7 @@ CommitDate: Fri Mar 8 13:24:23 2019 +0100 excluded essentials from the bootstrapped build. Also, mtrace isn't built when bootstrapping. -:100644 100644 4f65b74 f728764 M glibc.spec +:100644 100644 4f65b740 f7287648 M glibc.spec commit 9f81c9aa6eaa98b2a810edd8719009deb70899ce Author: DJ Delorie @@ -14948,8 +15068,8 @@ CommitDate: Wed Mar 6 15:56:00 2019 -0500 - Break further lines before not after operators. - Add and move fall-through comments in system-specific code. -:100644 100644 587500a 4f65b74 M glibc.spec -:100644 100644 eaadbd2 b085d40 M sources +:100644 100644 587500ac 4f65b740 M glibc.spec +:100644 100644 eaadbd2f b085d406 M sources commit 2300402532b257c994ab0e163790c7d527eb4b37 Author: DJ Delorie @@ -14962,7 +15082,7 @@ CommitDate: Fri Mar 1 14:45:22 2019 -0500 Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1680765 by adding -i to find-debuginfo.sh flags. -:100644 100644 c1f1c27 587500a M glibc.spec +:100644 100644 c1f1c270 587500ac M glibc.spec commit 8a209c638d58aac2aab751a49f77b64c112b3f97 Author: Carlos O'Donell @@ -14975,8 +15095,8 @@ CommitDate: Thu Feb 28 02:09:46 2019 -0500 Raised upstream: https://www.sourceware.org/ml/libc-alpha/2019-02/msg00656.html -:000000 100644 0000000 0e4afa1 A glibc-warning-fix.patch -:100644 100644 f95d41d c1f1c27 M glibc.spec +:000000 100644 00000000 0e4afa10 A glibc-warning-fix.patch +:100644 100644 f95d41d3 c1f1c270 M glibc.spec commit 047399b0d0f0f454e81f971345e2357b3e552cef Author: Carlos O'Donell @@ -15009,8 +15129,8 @@ CommitDate: Tue Feb 26 09:31:34 2019 -0500 - nptl: Reinstate pthread_timedjoin_np as a cancellation point (swbz#24215) - nptl: Fix invalid Systemtap probe in pthread_join (swbz#24211) -:100644 100644 d75332a f95d41d M glibc.spec -:100644 100644 2a402e2 eaadbd2 M sources +:100644 100644 d75332ab f95d41d3 M glibc.spec +:100644 100644 2a402e26 eaadbd2f M sources commit 1c5b89063faebbc28555f081d8f345a810b5b08a Author: Florian Weimer @@ -15025,9 +15145,9 @@ CommitDate: Tue Feb 19 08:33:22 2019 +0100 - Drop glibc-rh1674280.patch. Different fix applied upstream. (#1674280) - nptl: Fix invalid Systemtap probe in pthread_join (#1674280) -:100644 000000 38603c1 0000000 D glibc-rh1674280.patch -:100644 100644 53e2d1b d75332a M glibc.spec -:100644 100644 792b1e4 2a402e2 M sources +:100644 000000 38603c1c 00000000 D glibc-rh1674280.patch +:100644 100644 53e2d1be d75332ab M glibc.spec +:100644 100644 792b1e48 2a402e26 M sources commit b82e3b3f858003dea1e90a386f3a269a26c26262 Author: Florian Weimer @@ -15037,8 +15157,8 @@ CommitDate: Mon Feb 11 21:42:14 2019 +0100 Hotfix for invalid Systemtap probe in pthread_join (#1674280) -:000000 100644 0000000 38603c1 A glibc-rh1674280.patch -:100644 100644 610a967 53e2d1b M glibc.spec +:000000 100644 00000000 38603c1c A glibc-rh1674280.patch +:100644 100644 610a967c 53e2d1be M glibc.spec commit 8e6306e00417f7ae3de244fbb2d0f58bc74631f1 Author: Florian Weimer @@ -15048,8 +15168,8 @@ CommitDate: Mon Feb 11 09:53:45 2019 +0100 Remove LRA bug on POWER workaround, fixed in gcc-9.0.1-0.4.fc30 (#1673018) -:100644 000000 1ab4a09 0000000 D glibc-rh1673018.patch -:100644 100644 2764bd5 610a967 M glibc.spec +:100644 000000 1ab4a097 00000000 D glibc-rh1673018.patch +:100644 100644 2764bd57 610a967c M glibc.spec commit 5fff0126341c1a4aef0909133be38058058d9bf7 Author: Florian Weimer @@ -15064,8 +15184,8 @@ CommitDate: Mon Feb 11 09:51:14 2019 +0100 - nptl: Avoid fork handler lock for async-signal-safe fork (swbz#24161) - nptl: Add compiler barriers in pthread_mutex_trylock (swbz#24180) -:100644 100644 eba2f98 2764bd5 M glibc.spec -:100644 100644 d612ecd 792b1e4 M sources +:100644 100644 eba2f984 2764bd57 M glibc.spec +:100644 100644 d612ecd8 792b1e48 M sources commit 123aebc7d4d234ee8c4685d1dff1b7f95ec17b79 Author: Florian Weimer @@ -15075,8 +15195,8 @@ CommitDate: Thu Feb 7 10:49:48 2019 +0100 Work around LRA hang on ppc64le (#1673018) -:000000 100644 0000000 1ab4a09 A glibc-rh1673018.patch -:100644 100644 ff9a499 eba2f98 M glibc.spec +:000000 100644 00000000 1ab4a097 A glibc-rh1673018.patch +:100644 100644 ff9a4999 eba2f984 M glibc.spec commit 109c797f856de25442bef583bc5217146db4c654 Author: Florian Weimer @@ -15090,8 +15210,8 @@ CommitDate: Wed Feb 6 09:10:05 2019 +0100 - arm: Use "nr" constraint for Systemtap probes (#1196181) -:100644 100644 3127188 ff9a499 M glibc.spec -:100644 100644 bdd58f7 d612ecd M sources +:100644 100644 31271884 ff9a4999 M glibc.spec +:100644 100644 bdd58f7e d612ecd8 M sources commit 0ba614c06da32434ecd10a8d39ecea8ce618dd08 Author: Florian Weimer @@ -15104,7 +15224,7 @@ CommitDate: Fri Feb 1 13:38:20 2019 +0100 As a result, future mass rebuilds will increment the Release: field as expected. -:100644 100644 c49e625 3127188 M glibc.spec +:100644 100644 c49e6252 31271884 M glibc.spec commit de5b416635eda3506c49077d2f0191f3cd526b39 Author: Carlos O'Donell @@ -15118,8 +15238,8 @@ CommitDate: Thu Jan 31 22:15:26 2019 -0500 - nptl: Fix pthread_rwlock_try*lock stalls (swbz#23844) -:100644 100644 837b534 c49e625 M glibc.spec -:100644 100644 eda9d3b bdd58f7 M sources +:100644 100644 837b5345 c49e6252 M glibc.spec +:100644 100644 eda9d3bc bdd58f7e M sources commit b4e36d719db75493ce47235160211957a79754de Author: Fedora Release Engineering @@ -15131,7 +15251,7 @@ CommitDate: Thu Jan 31 22:40:19 2019 +0000 Signed-off-by: Fedora Release Engineering -:100644 100644 b2d9397 837b534 M glibc.spec +:100644 100644 b2d9397d 837b5345 M glibc.spec commit e7b9f886b07c1ac8067039d3b4ec5a4414687701 Author: DJ Delorie @@ -15145,8 +15265,8 @@ CommitDate: Mon Jan 28 16:12:03 2019 -0500 - Update translations. -:100644 100644 52104eb b2d9397 M glibc.spec -:100644 100644 85d97be eda9d3b M sources +:100644 100644 52104eba b2d9397d M glibc.spec +:100644 100644 85d97be0 eda9d3bc M sources commit 5d5d75dce29aa11797c3fa88327712fa192e26bf Author: Florian Weimer @@ -15156,7 +15276,7 @@ CommitDate: Mon Jan 28 14:38:03 2019 +0100 Fix broken patch -:100644 100644 f7b6d13 d1dbe3f M glibc-rh1670028.patch +:100644 100644 f7b6d137 d1dbe3f7 M glibc-rh1670028.patch commit 88850a88bb70ad70e52454dc393d2b73b6b2985d Author: Florian Weimer @@ -15166,8 +15286,8 @@ CommitDate: Mon Jan 28 14:28:25 2019 +0100 resolv: Enable full ICMP error reporting in stub resolver (#1670028) -:000000 100644 0000000 f7b6d13 A glibc-rh1670028.patch -:100644 100644 06b3ce6 52104eb M glibc.spec +:000000 100644 00000000 f7b6d137 A glibc-rh1670028.patch +:100644 100644 06b3ce6a 52104eba M glibc.spec commit 657df544496a86708b353e05b0daa513fa638a7a Author: Florian Weimer @@ -15177,7 +15297,7 @@ CommitDate: Mon Jan 28 14:09:37 2019 +0100 Remove obsolete scriptlets (release bump) -:100644 100644 1a5cf2a 06b3ce6 M glibc.spec +:100644 100644 1a5cf2a0 06b3ce6a M glibc.spec commit 1ebcbd5e46a89af542cdfc2070ad668f65654905 Author: Igor Gnatenko @@ -15190,7 +15310,7 @@ CommitDate: Sun Jan 27 18:58:44 2019 +0100 References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko -:100644 100644 1328315 1a5cf2a M glibc.spec +:100644 100644 1328315b 1a5cf2a0 M glibc.spec commit 70a46f30e19552d14b52442612a116b7b27d55da Author: Florian Weimer @@ -15206,8 +15326,8 @@ CommitDate: Fri Jan 25 11:55:20 2019 +0100 - strftime: Pass the additional flags from %EY to %Ey (swbz#24096) - strftime: Set the default width of %Ey to 2 (swbz#23758) -:100644 100644 3f19620 1328315 M glibc.spec -:100644 100644 6d35162 85d97be M sources +:100644 100644 3f196200 1328315b M glibc.spec +:100644 100644 6d351624 85d97be0 M sources commit 7c5e863b5b6a248b62d9334ea15ea0be01139db1 Author: Florian Weimer @@ -15224,8 +15344,8 @@ CommitDate: Thu Jan 24 13:01:30 2019 +0100 - resolv: Do not send queries for non-host-names in nss_dns (swbz#24112) - malloc: Revert fastbins to old-style atomics -:100644 100644 9ac2b98 3f19620 M glibc.spec -:100644 100644 d795aec 6d35162 M sources +:100644 100644 9ac2b984 3f196200 M glibc.spec +:100644 100644 d795aecf 6d351624 M sources commit 133c946b2f1008fe88bc1c57d91208d72b8fb0c6 Author: Florian Weimer @@ -15235,7 +15355,7 @@ CommitDate: Wed Jan 23 17:22:30 2019 +0100 Use assembler to produce annobin notes for nonshared libraries (#1668822) -:100644 100644 a26634c 9ac2b98 M glibc.spec +:100644 100644 a26634c2 9ac2b984 M glibc.spec commit ec674e19b8095a322f2535add0a9552a1c1a499e Author: Carlos O'Donell @@ -15252,8 +15372,8 @@ CommitDate: Wed Jan 16 11:51:15 2019 -0500 - AArch64: Add ifunc support for Ares - soft-fp: Properly check _FP_W_TYPE_SIZE (swbz#24066) -:100644 100644 026f409 a26634c M glibc.spec -:100644 100644 6482fac d795aec M sources +:100644 100644 026f4094 a26634c2 M glibc.spec +:100644 100644 6482fac8 d795aecf M sources commit 4265b0b8f64c4b1f99d62a320bc66f5c27fd2f23 Author: Florian Weimer @@ -15263,7 +15383,7 @@ CommitDate: Thu Jan 10 12:29:48 2019 +0100 Inherit -march=haswell flag from redhat-rpm-config -:100644 100644 f0204f4 026f409 M glibc.spec +:100644 100644 f0204f40 026f4094 M glibc.spec commit 062fb704dba992102382c0ef00319455500c0612 Author: Arjun Shankar @@ -15273,7 +15393,7 @@ CommitDate: Mon Jan 7 19:07:19 2019 +0100 Update sources file -:100644 100644 3f10b35 6482fac M sources +:100644 100644 3f10b353 6482fac8 M sources commit 1aba59b258b63a51b9a2e44cd407db21c86eaca2 Author: Arjun Shankar @@ -15302,8 +15422,8 @@ CommitDate: Mon Jan 7 17:22:11 2019 +0100 - Y2038: add __{localtime64,gmttime64,ctime64}[_r] functions - Y2038: make __difftime compatible with 64-bit time -:100644 100644 a9a7a4f 224c519 M glibc-python3.patch -:100644 100644 7af462f f0204f4 M glibc.spec +:100644 100644 a9a7a4fb 224c5198 M glibc-python3.patch +:100644 100644 7af462f4 f0204f40 M glibc.spec commit 650d554f72b58ab1db93f20c001e27947208e993 Author: DJ Delorie @@ -15320,8 +15440,8 @@ CommitDate: Mon Dec 17 14:16:58 2018 -0500 - regex: fix heap-use-after-free error (swbz#18040) - manual: Document thread/task IDs for Linux -:100644 100644 71bc29d 7af462f M glibc.spec -:100644 100644 dd10e92 3f10b35 M sources +:100644 100644 71bc29d6 7af462f4 M glibc.spec +:100644 100644 dd10e926 3f10b353 M sources commit 60935671c32d94a0c5da5f6a4da8bda8140da5ba Author: Carlos O'Donell @@ -15336,8 +15456,8 @@ CommitDate: Thu Dec 13 12:14:55 2018 -0500 - powerpc: missing CFI register information in __mpn_* functions (swbz#23614) - rdlock stalls indefinitely on an unlocked pthread rwlock (swbz#23861) -:100644 100644 53a9f5f 71bc29d M glibc.spec -:100644 100644 2fa9189 dd10e92 M sources +:100644 100644 53a9f5f6 71bc29d6 M glibc.spec +:100644 100644 2fa9189f dd10e926 M sources commit 7a4d7ca1849caa92a68087e7e67de860e98814c9 Author: Carlos O'Donell @@ -15353,8 +15473,8 @@ CommitDate: Tue Dec 11 12:33:20 2018 -0500 - test-container: move postclean outside of namespace changes (swbz#23948) - Enable VDSO for static linking on mips (swbz#19767) -:100644 100644 9f72def 53a9f5f M glibc.spec -:100644 100644 3b0944a 2fa9189 M sources +:100644 100644 9f72def4 53a9f5f6 M glibc.spec +:100644 100644 3b0944ac 2fa9189f M sources commit 1d88b65b1d1f4d63b5777cdff8dbc0e8ccc6860c Author: Florian Weimer @@ -15375,8 +15495,8 @@ CommitDate: Mon Dec 10 16:51:13 2018 +0100 - Preparations for 64-bit time_t on 32-bit architectures - Enable VDSO for static linking on arm (swbz#19767) -:100644 100644 1469e0c 9f72def M glibc.spec -:100644 100644 c9121d1 3b0944a M sources +:100644 100644 1469e0c3 9f72def4 M glibc.spec +:100644 100644 c9121d19 3b0944ac M sources commit b8873c0d8bc363e54233c7eb270db09ad1102c7a Author: Florian Weimer @@ -15397,8 +15517,8 @@ CommitDate: Mon Dec 3 14:58:02 2018 +0100 - Fix _dl_profile_fixup data-dependency issue (swbz#23690) - Enable VDSO for static linking on aarch64 -:100644 100644 485042c 1469e0c M glibc.spec -:100644 100644 8daabbe c9121d1 M sources +:100644 100644 485042c6 1469e0c3 M glibc.spec +:100644 100644 8daabbec c9121d19 M sources commit afea8221580111d20d169edb5c3b6787e58826d3 Author: Carlos O'Donell @@ -15410,7 +15530,7 @@ CommitDate: Thu Nov 29 16:40:16 2018 -0500 - Move requirement on libgcc from glibc-devel to glibc (#1352973) -:100644 100644 d553c5b 485042c M glibc.spec +:100644 100644 d553c5b3 485042c6 M glibc.spec commit 173c24248d660515cdbd319f8a5a8a02e3c9019c Author: Carlos O'Donell @@ -15422,7 +15542,7 @@ CommitDate: Tue Nov 27 15:07:47 2018 -0500 - Add requires on explicit glibc version for glibc-nss-devel (#1651260) -:100644 100644 8d88451 d553c5b M glibc.spec +:100644 100644 8d88451c d553c5b3 M glibc.spec commit 5ce3b680166bb14f04a5be8e8d7ef659f17c6233 Author: Arjun Shankar @@ -15436,9 +15556,9 @@ CommitDate: Tue Nov 27 12:20:28 2018 +0100 - Drop glibc-rh1652495.patch. Applied upstream. -:100644 000000 13be476 0000000 D glibc-rh1652495.patch -:100644 100644 b14b113 8d88451 M glibc.spec -:100644 100644 5c633ba 8daabbe M sources +:100644 000000 13be4769 00000000 D glibc-rh1652495.patch +:100644 100644 b14b113d 8d88451c M glibc.spec +:100644 100644 5c633ba6 8daabbec M sources commit fdcac6f8f4b2f3d0d1cca6974ef7a8997a2997ad Author: Florian Weimer @@ -15448,7 +15568,7 @@ CommitDate: Mon Nov 26 14:58:44 2018 +0100 Do not use parallel make for building locales (#1652228) -:100644 100644 545b288 b14b113 M glibc.spec +:100644 100644 545b2884 b14b113d M glibc.spec commit 2f22666a8b47d418cc8011e130f731d064e2b406 Author: Florian Weimer @@ -15458,8 +15578,8 @@ CommitDate: Thu Nov 22 11:05:13 2018 +0100 malloc: Revert tcache double-free check (#1652495) -:000000 100644 0000000 13be476 A glibc-rh1652495.patch -:100644 100644 73ecd93 545b288 M glibc.spec +:000000 100644 00000000 13be4769 A glibc-rh1652495.patch +:100644 100644 73ecd933 545b2884 M glibc.spec commit 16caa0b760daaead6a098658f9c4ef2cfaeeb880 Author: DJ Delorie @@ -15477,8 +15597,8 @@ CommitDate: Tue Nov 20 14:38:52 2018 -0500 - support: Print timestamps in timeout handler - Use STRFMON_LDBL_IS_DBL instead of __ldbl_is_dbl. -:100644 100644 4e6f783 73ecd93 M glibc.spec -:100644 100644 dbaab66 5c633ba M sources +:100644 100644 4e6f7830 73ecd933 M glibc.spec +:100644 100644 dbaab666 5c633ba6 M sources commit 81ee17d92e50cf636ded688c01776efc31d00b27 Author: Florian Weimer @@ -15490,8 +15610,8 @@ CommitDate: Fri Nov 16 11:20:25 2018 +0100 Upstream commit: 346ef23f197a0c8ba807c344bd39101b711050ee -:100644 100644 e0c1f44 4e6f783 M glibc.spec -:100644 100644 23bdde3 dbaab66 M sources +:100644 100644 e0c1f445 4e6f7830 M glibc.spec +:100644 100644 23bdde31 dbaab666 M sources commit 36c64b8ffaa6b56254aaf6ebef346e99b6b22979 Author: Florian Weimer @@ -15505,8 +15625,8 @@ CommitDate: Fri Nov 9 12:00:27 2018 +0100 - Disable CET for binaries created by older link editors (#1648297) -:100644 100644 550c623 e0c1f44 M glibc.spec -:100644 100644 8970362 23bdde3 M sources +:100644 100644 550c623b e0c1f445 M glibc.spec +:100644 100644 8970362d 23bdde31 M sources commit 5ca04006777ad4555249fec997c2d14034c98bd1 Author: Florian Weimer @@ -15518,8 +15638,8 @@ CommitDate: Wed Nov 7 14:47:43 2018 +0100 Upstream commit: 00c86a37d1b63044e3169d1f2ebec23447c73f79 -:100644 100644 8cad1dd 550c623 M glibc.spec -:100644 100644 ca141a2 8970362 M sources +:100644 100644 8cad1dd7 550c623b M glibc.spec +:100644 100644 ca141a24 8970362d M sources commit 4232176d254c77b9ef65eec4efea568368741aeb Author: Florian Weimer @@ -15533,8 +15653,8 @@ CommitDate: Wed Nov 7 13:58:23 2018 +0100 - libanl: Fix crash if first helper thread creation failed (#1646381) -:100644 100644 63c8bd8 8cad1dd M glibc.spec -:100644 100644 a0dc3c6 ca141a2 M sources +:100644 100644 63c8bd84 8cad1dd7 M glibc.spec +:100644 100644 a0dc3c62 ca141a24 M sources commit c42d98baca13585075c988b16e3559bf6065fe49 Author: Mike FABIAN @@ -15544,7 +15664,7 @@ CommitDate: Thu Nov 1 11:55:20 2018 +0100 Include Esperanto (eo) in glibc-all-langpacks (#1643756) -:100644 100644 f381ba5 63c8bd8 M glibc.spec +:100644 100644 f381ba56 63c8bd84 M glibc.spec commit 383945e9661fae7a177c396ca3263f110f66f232 Author: DJ Delorie @@ -15556,8 +15676,8 @@ CommitDate: Mon Oct 29 14:39:25 2018 -0400 Upstream commit: c6982f7efc1c70fe2d6160a87ee44d871ac85ab0 -:100644 100644 d2885a2 f381ba5 M glibc.spec -:100644 100644 b504113 a0dc3c6 M sources +:100644 100644 d2885a26 f381ba56 M glibc.spec +:100644 100644 b5041138 a0dc3c62 M sources commit a5ad6ecfc9b216b2514ec7aece4e4ba1ae6bed2d Author: Arjun Shankar @@ -15569,8 +15689,8 @@ CommitDate: Fri Oct 26 14:29:50 2018 +0200 Upstream commit: fe61f17cfc18f17befca3280e828bb40e8c772b0 -:100644 100644 e7659f3 d2885a2 M glibc.spec -:100644 100644 8dac2ec b504113 M sources +:100644 100644 e7659f3a d2885a26 M glibc.spec +:100644 100644 8dac2ecd b5041138 M sources commit 6287bab02b9523b4041d66e294eb4391dd8959ba Author: Florian Weimer @@ -15582,8 +15702,8 @@ CommitDate: Wed Oct 24 11:46:30 2018 +0200 Upstream commit: a27a4f4721837a5fb36ace833764b06a64c5af1c -:100644 100644 9e6c069 e7659f3 M glibc.spec -:100644 100644 dd2662c 8dac2ec M sources +:100644 100644 9e6c0694 e7659f3a M glibc.spec +:100644 100644 dd2662ce 8dac2ecd M sources commit 8e5fc280df52cd0213282510dca8b0322bc126d3 Author: Florian Weimer @@ -15595,8 +15715,8 @@ CommitDate: Thu Oct 18 10:22:53 2018 +0200 Upstream commit: 72771e53753647111d31c5c4bf43d8901e6baf7e -:100644 100644 bc21a87 9e6c069 M glibc.spec -:100644 100644 98bca40 dd2662c M sources +:100644 100644 bc21a87b 9e6c0694 M glibc.spec +:100644 100644 98bca402 dd2662ce M sources commit 3b14ffff2a7584a36aa0a8d505f80b23c86be92b Author: Florian Weimer @@ -15610,8 +15730,8 @@ CommitDate: Thu Sep 27 12:52:00 2018 +0200 - stdlib/tst-setcontext9 test suite failure on ppc64le (#1623519) -:100644 100644 90e87bd bc21a87 M glibc.spec -:100644 100644 9fefbbc 98bca40 M sources +:100644 100644 90e87bd9 bc21a87b M glibc.spec +:100644 100644 9fefbbce 98bca402 M sources commit 447d75c71c15d533fde19ad4b43238f7bd760339 Author: Florian Weimer @@ -15626,8 +15746,8 @@ CommitDate: Thu Sep 20 13:27:33 2018 +0200 - gethostid: Missing NULL check for gethostbyname_r result (#1631338) - stdlib/tst-setcontext9 test suite failure (#1623519) -:100644 100644 c38f7e3 90e87bd M glibc.spec -:100644 100644 d0c4b3d 9fefbbc M sources +:100644 100644 c38f7e35 90e87bd9 M glibc.spec +:100644 100644 d0c4b3da 9fefbbce M sources commit a63c0b6456736de612a2bfa97348d4fe74b1c343 Author: Florian Weimer @@ -15637,7 +15757,7 @@ CommitDate: Wed Sep 5 11:35:41 2018 +0200 Add python3-devel build dependency for downstream benefit -:100644 100644 d89135d c38f7e3 M glibc.spec +:100644 100644 d89135dc c38f7e35 M glibc.spec commit c63972c3a95b5b88481233f2ace3ef409f623b53 Author: Florian Weimer @@ -15647,7 +15767,7 @@ CommitDate: Wed Sep 5 11:35:10 2018 +0200 Fix version in changelog -:100644 100644 561fe20 d89135d M glibc.spec +:100644 100644 561fe203 d89135dc M glibc.spec commit 9588eec39fdaa9519471e77c8e2a47a88dcf768a Author: Carlos O'Donell @@ -15660,7 +15780,7 @@ CommitDate: Wed Sep 5 03:26:05 2018 -0400 - Provide compatibility support for linking against libpthread_nonshared.a (#1625507) -:100644 100644 ef0ccb7 561fe20 M glibc.spec +:100644 100644 ef0ccb76 561fe203 M glibc.spec commit 723de531646ceb34cd7629cb33b97cedd57e0555 Author: Florian Weimer @@ -15670,8 +15790,8 @@ CommitDate: Wed Aug 29 13:06:17 2018 +0200 Remove workaround for valgrind bug (#1600034) -:100644 000000 16c0b87 0000000 D glibc-ldflags.patch -:100644 100644 1201a91 ef0ccb7 M glibc.spec +:100644 000000 16c0b871 00000000 D glibc-ldflags.patch +:100644 100644 1201a91f ef0ccb76 M glibc.spec commit fde5e923179612561dad3890e567f98e28db9d12 Author: Florian Weimer @@ -15683,8 +15803,8 @@ CommitDate: Wed Aug 29 09:01:13 2018 +0200 Upstream commit: ff6b24501f70da7d6375d6f5929262b9509db39e -:100644 100644 c245db0 1201a91 M glibc.spec -:100644 100644 ba56353 d0c4b3d M sources +:100644 100644 c245db0a 1201a91f M glibc.spec +:100644 100644 ba56353b d0c4b3da M sources commit 02e1d4ee3e9713e7a3b9bab7042609fbfd89a55b Author: Florian Weimer @@ -15699,8 +15819,8 @@ CommitDate: Mon Aug 27 20:19:22 2018 +0200 - nptl: Fix waiters-after-spinning case in pthread_cond_broadcast (#1622669) - regex: Fix memory corruption when pattern and input contain NUL (#1622674) -:100644 100644 f272d20 c245db0 M glibc.spec -:100644 100644 5f9b80c ba56353 M sources +:100644 100644 f272d203 c245db0a M glibc.spec +:100644 100644 5f9b80c8 ba56353b M sources commit 60efd153e5852f2636af185092b64e1fe436fcb8 Author: Carlos O'Donell @@ -15712,12 +15832,12 @@ CommitDate: Fri Aug 24 22:29:27 2018 -0400 Upstream commit: aa42b3dbcb0326badf377fec2c7fb2f34fdabecd -:100644 000000 9bd733f 0000000 D glibc-asflags.patch -:100644 100644 787951f 515611a M glibc-fedora-localedef.patch -:100644 000000 ae4b43d 0000000 D glibc-rh1614705.patch -:100644 000000 af7f65b 0000000 D glibc-with-nonshared-cflags.patch -:100644 100644 8b46b51 f272d20 M glibc.spec -:100644 100644 d22bddf 5f9b80c M sources +:100644 000000 9bd733f0 00000000 D glibc-asflags.patch +:100644 100644 787951f6 515611a9 M glibc-fedora-localedef.patch +:100644 000000 ae4b43d9 00000000 D glibc-rh1614705.patch +:100644 000000 af7f65bd 00000000 D glibc-with-nonshared-cflags.patch +:100644 100644 8b46b515 f272d203 M glibc.spec +:100644 100644 d22bddf3 5f9b80c8 M sources commit bebdebbdc3d1f7735e0ae2badac688c615b33f1e Author: Carlos O'Donell @@ -15729,9 +15849,9 @@ CommitDate: Mon Aug 13 22:43:08 2018 -0400 - Remove abort() warning in manual (#1615608) -:000000 100644 0000000 c1e30d4 A glibc-rh1615608.patch -:100644 100644 f253997 8b46b51 M glibc.spec -:100755 100755 eaf24d5 511a53c M quilt-patch.sh +:000000 100644 00000000 c1e30d45 A glibc-rh1615608.patch +:100644 100644 f253997d 8b46b515 M glibc.spec +:100755 100755 eaf24d5d 511a53c0 M quilt-patch.sh commit 08e1b1ab33047abc97198182937edfabbba2d72f Author: Florian Weimer @@ -15741,8 +15861,8 @@ CommitDate: Fri Aug 10 11:24:59 2018 +0200 Fix regression in readdir64@GLIBC_2.1 compat symbol (#1614705) -:000000 100644 0000000 ae4b43d A glibc-rh1614705.patch -:100644 100644 316e0bf f253997 M glibc.spec +:000000 100644 00000000 ae4b43d9 A glibc-rh1614705.patch +:100644 100644 316e0bfb f253997d M glibc.spec commit fa1678e1c0ac9519b0793f9d25f85a0a1a521efb Author: Florian Weimer @@ -15752,7 +15872,7 @@ CommitDate: Thu Aug 2 18:20:05 2018 +0200 Log /proc/sysinfo if available (on s390x) -:100644 100644 0b25b58 316e0bf M glibc.spec +:100644 100644 0b25b581 316e0bfb M glibc.spec commit b0deb573ed1ac177f9fc2cf179efc1d5196c5ed6 Author: Florian Weimer @@ -15762,7 +15882,7 @@ CommitDate: Thu Aug 2 16:24:00 2018 +0200 Honor %{valgrind_arches} -:100644 100644 b7e37d8 0b25b58 M glibc.spec +:100644 100644 b7e37d83 0b25b581 M glibc.spec commit fb1f848c19dd8a1b3af795d3e5cc036777955441 Author: Florian Weimer @@ -15776,8 +15896,8 @@ CommitDate: Wed Aug 1 10:54:45 2018 +0200 - x86/CET: Fix property note parser (swbz#23467) - x86: Add tst-get-cpu-features-static to $(tests) (swbz#23458) -:100644 100644 5e98689 b7e37d8 M glibc.spec -:100644 100644 a326ef2 d22bddf M sources +:100644 100644 5e986894 b7e37d83 M glibc.spec +:100644 100644 a326ef23 d22bddf3 M sources commit 304fcdff50778dc575876da8c3bb067b8d02284d Author: Florian Weimer @@ -15787,7 +15907,7 @@ CommitDate: Wed Aug 1 10:54:37 2018 +0200 Add release-independent .gitignore file -:000000 100644 0000000 7a73081 A .gitignore +:000000 100644 00000000 7a730813 A .gitignore commit 56a02fe6e3a6a7a4b7c40dd0f4739ef2cf57fa84 Author: Florian Weimer @@ -15805,8 +15925,8 @@ CommitDate: Tue Jul 31 08:25:51 2018 +0200 - x86: Correct index_cpu_LZCNT (swbz#23456) - Fix string/tst-xbzero-opt if build with gcc head -:100644 100644 c47adf8 5e98689 M glibc.spec -:100644 100644 a49b606 a326ef2 M sources +:100644 100644 c47adf8e 5e986894 M glibc.spec +:100644 100644 a49b6066 a326ef23 M sources commit a4a5659439698554d18b9f1ef56cbd86591e217b Author: Florian Weimer @@ -15831,9 +15951,9 @@ CommitDate: Thu Jul 26 11:59:33 2018 +0200 - regcomp: Fix off-by-one bug in build_equiv_class (swbz#23396) - Fix out of bounds access in findidxwc (swbz#23442) -:100644 100644 603aec7 952f13d M SUPPORTED -:100644 100644 5e14a23 c47adf8 M glibc.spec -:100644 100644 7b7e663 a49b606 M sources +:100644 100644 603aec77 952f13d2 M SUPPORTED +:100644 100644 5e14a238 c47adf8e M glibc.spec +:100644 100644 7b7e663e a49b6066 M sources commit ad931662944e023542fe86ac1fcf528159dd3411 Author: Florian Weimer @@ -15843,7 +15963,7 @@ CommitDate: Mon Jul 23 14:23:36 2018 +0200 Add Provides: bundled(gnulib) -:100644 100644 06dc884 5e14a23 M glibc.spec +:100644 100644 06dc884a 5e14a238 M glibc.spec commit 092cf93daa31fadf73cd9c117ba693e59a803aa3 Author: Carlos O'Donell @@ -15855,7 +15975,7 @@ CommitDate: Fri Jul 13 16:10:09 2018 -0400 - Fix file list for glibc RPM packaging (#1601011). -:100644 100644 95b62a8 06dc884 M glibc.spec +:100644 100644 95b62a89 06dc884a M glibc.spec commit 6f4d10f91288b8ed8e0ee589ee546075e29e2ca1 Author: Carlos O'Donell @@ -15883,7 +16003,7 @@ CommitDate: Thu Jul 12 14:36:33 2018 -0400 to ensure no file changed packages or installed location after the patch. -:100644 100644 d3e0dbd 95b62a8 M glibc.spec +:100644 100644 d3e0dbd7 95b62a89 M glibc.spec commit e4aafbc50542b8dd7cdeb110e8ba3e2d51ceee0a Author: Carlos O'Donell @@ -15906,7 +16026,7 @@ CommitDate: Thu Jul 12 14:35:19 2018 -0400 No ABI instrumentation is added by this patch, and before-and-after testing verifies the %install phase remains functionally the same. -:100644 100644 80105e9 d3e0dbd M glibc.spec +:100644 100644 80105e99 d3e0dbd7 M glibc.spec commit 559f4357593e7f98e5ed05b7e65acaad351d8526 Author: Florian Weimer @@ -15916,7 +16036,7 @@ CommitDate: Wed Jul 11 21:32:56 2018 +0200 Fix typo in comment -:100644 100644 8a6a3d6 80105e9 M glibc.spec +:100644 100644 8a6a3d62 80105e99 M glibc.spec commit 3bef91d75e3df7398fc41b961ec250f7924000d7 Author: Florian Weimer @@ -15926,7 +16046,7 @@ CommitDate: Wed Jul 11 15:54:24 2018 +0200 Add POWER9 multilib (downstream only) -:100644 100644 7030a60 8a6a3d6 M glibc.spec +:100644 100644 7030a608 8a6a3d62 M glibc.spec commit e75713e5c13aaa3e6abc9af7f48ccedb4185daf0 Author: Florian Weimer @@ -15936,7 +16056,7 @@ CommitDate: Wed Jul 11 13:21:42 2018 +0200 Fix typo in LDFLAGS-rtld setting (#1600034) -:100644 100644 b10ac7e 7030a60 M glibc.spec +:100644 100644 b10ac7e6 7030a608 M glibc.spec commit 6404b258962769f7c4d1108c52aece4b314ee27f Author: Florian Weimer @@ -15951,8 +16071,8 @@ CommitDate: Wed Jul 11 11:50:51 2018 +0200 - Install header - Put the correct Unicode version number 11.0.0 into the generated files -:100644 100644 4e5be9e b10ac7e M glibc.spec -:100644 100644 3393542 7b7e663 M sources +:100644 100644 4e5be9ed b10ac7e6 M glibc.spec +:100644 100644 33935427 7b7e663e M sources commit 6a43999c13d2a78861904904870434f9734abd58 Author: Florian Weimer @@ -15962,8 +16082,8 @@ CommitDate: Wed Jul 11 11:50:02 2018 +0200 Work around valgrind issue on i686 (#1600034) -:000000 100644 0000000 16c0b87 A glibc-ldflags.patch -:100644 100644 1710e23 4e5be9e M glibc.spec +:000000 100644 00000000 16c0b871 A glibc-ldflags.patch +:100644 100644 1710e235 4e5be9ed M glibc.spec commit 28cb5d31fc1e5887912283c889689c47076278ae Author: Florian Weimer @@ -15983,8 +16103,8 @@ CommitDate: Tue Jul 10 17:18:22 2018 +0200 - conform/conformtest.pl: Escape literal braces in regular expressions - x86: Use AVX_Fast_Unaligned_Load from Zen onwards. -:100644 100644 4c6e59b 1710e23 M glibc.spec -:100644 100644 fc51d50 3393542 M sources +:100644 100644 4c6e59bf 1710e235 M glibc.spec +:100644 100644 fc51d50a 33935427 M sources commit 126ab296eafdb0fbb8ad49fb30083650574c84b8 Author: Florian Weimer @@ -15994,8 +16114,8 @@ CommitDate: Fri Jul 6 11:43:53 2018 +0200 Remove ppc64 multilibs -:100644 100644 53a0439 4c6e59b M glibc.spec -:100644 100644 9645e99 9014857 M glibc_post_upgrade.c +:100644 100644 53a0439b 4c6e59bf M glibc.spec +:100644 100644 9645e99b 9014857f M glibc_post_upgrade.c commit 589518d1c84e426c39febebc2352d7600dfa4bdd Author: Florian Weimer @@ -16007,9 +16127,9 @@ CommitDate: Fri Jul 6 10:53:36 2018 +0200 Upstream commit: 3a885c1f51b18852869a91cf59a1b39da1595c7a -:100644 000000 c56de14 0000000 D .gitignore -:100644 100644 af0c051 53a0439 M glibc.spec -:100644 100644 ae72502 fc51d50 M sources +:100644 000000 c56de14f 00000000 D .gitignore +:100644 100644 af0c051b 53a0439b M glibc.spec +:100644 100644 ae725029 fc51d50a M sources commit 04e38e02b796d28244987288d8c2328e7d5cd371 Author: Florian Weimer @@ -16019,7 +16139,7 @@ CommitDate: Thu Jul 5 12:45:22 2018 +0200 Enable build flags inheritance for nonshared flags -:100644 100644 56acd91 af0c051 M glibc.spec +:100644 100644 56acd911 af0c051b M glibc.spec commit 8a71833984ac4fa0b367c10384d4edfa85a1f079 Author: Florian Weimer @@ -16029,8 +16149,8 @@ CommitDate: Wed Jul 4 16:35:00 2018 +0200 Add annobin annotations to assembler code (#1548438) -:000000 100644 0000000 9bd733f A glibc-asflags.patch -:100644 100644 ef4f435 56acd91 M glibc.spec +:000000 100644 00000000 9bd733f0 A glibc-asflags.patch +:100644 100644 ef4f4353 56acd911 M glibc.spec commit 43a21403fe7fbd5d6cbf0bec00e3acc7e17984d7 Author: Florian Weimer @@ -16040,7 +16160,7 @@ CommitDate: Wed Jul 4 13:02:15 2018 +0200 Update License tag -:100644 100644 d9ca5fe ef4f435 M glibc.spec +:100644 100644 d9ca5fec ef4f4353 M glibc.spec commit a50cd9a587bbeb8977f87e26dee64ad736aaebff Author: Florian Weimer @@ -16050,8 +16170,8 @@ CommitDate: Wed Jul 4 11:56:29 2018 +0200 Enable -D_FORTIFY_SOURCE=2 for nonshared code -:000000 100644 0000000 af7f65b A glibc-with-nonshared-cflags.patch -:100644 100644 7248cf5 d9ca5fe M glibc.spec +:000000 100644 00000000 af7f65bd A glibc-with-nonshared-cflags.patch +:100644 100644 7248cf57 d9ca5fec M glibc.spec commit 2074a352da2df863f69ec3495aa5068dfcd3eee1 Author: Florian Weimer @@ -16061,7 +16181,7 @@ CommitDate: Wed Jul 4 11:50:24 2018 +0200 Add changelog reference to bug #1566464 -:100644 100644 cd73716 7248cf5 M glibc.spec +:100644 100644 cd73716f 7248cf57 M glibc.spec commit 4adfefae5a6a925e5b66b68d3fcb19e53f692f2a Author: Florian Weimer @@ -16071,7 +16191,7 @@ CommitDate: Wed Jul 4 10:48:07 2018 +0200 Inherit additional build flags -:100644 100644 d440786 cd73716 M glibc.spec +:100644 100644 d440786e cd73716f M glibc.spec commit 145da19e2ecfb4c69b49265a6b89dad1f8806cbd Author: Florian Weimer @@ -16083,10 +16203,10 @@ CommitDate: Mon Jul 2 22:56:52 2018 +0200 Upstream commit: b7b88cea4151d85eafd7ababc2e4b7ae1daeedf5 -:100644 100644 fc8630f c56de14 M .gitignore -:100644 100644 a8e5a0c 603aec7 M SUPPORTED -:100644 100644 fba3058 d440786 M glibc.spec -:100644 100644 b054055 ae72502 M sources +:100644 100644 fc8630fd c56de14f M .gitignore +:100644 100644 a8e5a0c6 603aec77 M SUPPORTED +:100644 100644 fba3058d d440786e M glibc.spec +:100644 100644 b0540550 ae725029 M sources commit 58f591261923eb622ce1f97ebe6bd0b12d8a4e01 Author: Florian Weimer @@ -16098,11 +16218,11 @@ CommitDate: Mon Jul 2 22:56:52 2018 +0200 Upstream commit: e69d994a63afc2d367f286a2a7df28cbf710f0fe -:000000 100644 0000000 fc8630f A .gitignore -:100644 000000 698546f 0000000 D glibc-deprecate_libcrypt.patch -:100644 000000 c3ef322 0000000 D glibc-linux-timespec-header-compat.patch -:100644 100644 5162683 fba3058 M glibc.spec -:100644 100644 a7c0c3a b054055 M sources +:000000 100644 00000000 fc8630fd A .gitignore +:100644 000000 698546f2 00000000 D glibc-deprecate_libcrypt.patch +:100644 000000 c3ef3222 00000000 D glibc-linux-timespec-header-compat.patch +:100644 100644 51626837 fba3058d M glibc.spec +:100644 100644 a7c0c3ad b0540550 M sources commit c8098b86f86bfab7a9c23d6a8ad21cfa6ed91a7f Author: Florian Weimer @@ -16114,9 +16234,9 @@ CommitDate: Thu Jun 28 10:28:29 2018 +0200 Upstream commit: c49e18222e4c40f21586dabced8a49732d946917 -:100644 000000 a9b3374 0000000 D glibc-rh1315108.patch -:100644 100644 f0b5200 5162683 M glibc.spec -:100644 100644 59e11bf a7c0c3a M sources +:100644 000000 a9b3374f 00000000 D glibc-rh1315108.patch +:100644 100644 f0b52000 51626837 M glibc.spec +:100644 100644 59e11bf0 a7c0c3ad M sources commit a6144b701ac2e0e39f5382d004fe724126018873 Author: Florian Weimer @@ -16126,8 +16246,8 @@ CommitDate: Thu Jun 21 08:25:16 2018 +0200 Compatibility fix for and -:000000 100644 0000000 c3ef322 A glibc-linux-timespec-header-compat.patch -:100644 100644 1522183 f0b5200 M glibc.spec +:000000 100644 00000000 c3ef3222 A glibc-linux-timespec-header-compat.patch +:100644 100644 1522183f f0b52000 M glibc.spec commit 4343a2408aee169341bcec8afd790e627434fe95 Author: Florian Weimer @@ -16139,8 +16259,8 @@ CommitDate: Thu Jun 21 08:23:20 2018 +0200 Upstream commit: f496b28e61d0342f579bf794c71b80e9c7d0b1b5 -:100644 100644 3201b99 1522183 M glibc.spec -:100644 100644 71a07ac 59e11bf M sources +:100644 100644 3201b995 1522183f M glibc.spec +:100644 100644 71a07acb 59e11bf0 M sources commit 2b743b9fd11d58fb24880582d2fbac12644a7425 Author: Florian Weimer @@ -16152,8 +16272,8 @@ CommitDate: Mon Jun 18 21:25:46 2018 +0200 Upstream commit: f2857da7cdb65bfad75ee30981f5b2fde5bbb1dc -:100644 100644 f7a8081 3201b99 M glibc.spec -:100644 100644 70ba4db 71a07ac M sources +:100644 100644 f7a8081d 3201b995 M glibc.spec +:100644 100644 70ba4db8 71a07acb M sources commit 9007def6666a77fc5c713f99c4e3915b7b3be193 Author: Florian Weimer @@ -16163,7 +16283,7 @@ CommitDate: Mon Jun 18 14:58:14 2018 +0200 Add CVE-2018-11236 reference -:100644 100644 a50b8a7 f7a8081 M glibc.spec +:100644 100644 a50b8a7c f7a8081d M glibc.spec commit 4283de10b68068003b98869faf2f7f0cf3210b82 Author: Florian Weimer @@ -16177,8 +16297,8 @@ CommitDate: Mon Jun 18 13:02:53 2018 +0200 - iconv: Make IBM273 equivalent to ISO-8859-1 (#1592270) -:100644 100644 9f6b2a5 a50b8a7 M glibc.spec -:100644 100644 83072c0 70ba4db M sources +:100644 100644 9f6b2a50 a50b8a7c M glibc.spec +:100644 100644 83072c0d 70ba4db8 M sources commit 84981f566efbaefc0a3eecc2486f7aa11f8070e7 Author: Florian Weimer @@ -16188,7 +16308,7 @@ CommitDate: Mon Jun 18 11:51:52 2018 +0200 Inherit the -msse2 build flag as well (#1592212) -:100644 100644 ae7d052 9f6b2a5 M glibc.spec +:100644 100644 ae7d0525 9f6b2a50 M glibc.spec commit e4a1cf14e031fa15e20c81d9717161fc4c948de3 Author: Carlos O'Donell @@ -16198,7 +16318,7 @@ CommitDate: Mon Jun 4 22:30:43 2018 -0400 Update gen-quilt-series.sh for new %autosetup. -:100755 100755 3262fba 22ebf90 M gen-quilt-series.sh +:100755 100755 3262fbae 22ebf90d M gen-quilt-series.sh commit 94a7268e0bc2a8c0a881e9a7814573e9eb2a15e8 Author: Florian Weimer @@ -16210,8 +16330,8 @@ CommitDate: Fri Jun 1 14:07:34 2018 +0200 Upstream commit:104502102c6fa322515ba0bb3c95c05c3185da7a -:100644 100644 f9bc125 ae7d052 M glibc.spec -:100644 100644 f697ff3 83072c0 M sources +:100644 100644 f9bc1254 ae7d0525 M glibc.spec +:100644 100644 f697ff3a 83072c0d M sources commit 9f8b04ee4952bf3235951445876e7a5c4ca82643 Author: Florian Weimer @@ -16221,7 +16341,7 @@ CommitDate: Fri Jun 1 12:10:16 2018 +0200 Adjust build flags inheritence from redhat-rpm-config -:100644 100644 4cfc471 f9bc125 M glibc.spec +:100644 100644 4cfc4711 f9bc1254 M glibc.spec commit a747c093bbee95a3bdf1d7ef052bd248c95fadc5 Author: Florian Weimer @@ -16231,7 +16351,7 @@ CommitDate: Fri Jun 1 12:05:26 2018 +0200 Modernise nsswitch.conf defaults (#1581809) -:100644 100644 c3d3fb6 b49a3b2 M nsswitch.conf +:100644 100644 c3d3fb65 b49a3b27 M nsswitch.conf commit f21f7f7c7f7a28f55678d0d5d4bb54e36ee91a2a Author: Florian Weimer @@ -16243,8 +16363,8 @@ CommitDate: Fri May 25 11:40:12 2018 +0200 Upstream commit: c1dc1e1b34873db79dfbfa8f2f0a2abbe28c0514 -:100644 100644 a89226b 4cfc471 M glibc.spec -:100644 100644 f27b93c f697ff3 M sources +:100644 100644 a89226ba 4cfc4711 M glibc.spec +:100644 100644 f27b93cf f697ff3a M sources commit 13e87ddfb51be01875aec64e1a71c68e66e9ed20 Author: Florian Weimer @@ -16254,7 +16374,7 @@ CommitDate: Wed May 23 21:38:06 2018 +0200 Add CVE-2018-11237 reference -:100644 100644 0ceafeb a89226b M glibc.spec +:100644 100644 0ceafeb8 a89226ba M glibc.spec commit bfa9f404d275ded61cc259388c58c16bbb96ff92 Author: Florian Weimer @@ -16269,10 +16389,10 @@ CommitDate: Wed May 23 15:37:05 2018 +0200 - Drop glibc-rh1452750-allocate_once.patch, glibc-rh1452750-libidn2.patch. Applied upstream. -:100644 000000 7c613e6 0000000 D glibc-rh1452750-allocate_once.patch -:100644 000000 782350f 0000000 D glibc-rh1452750-libidn2.patch -:100644 100644 435d357 0ceafeb M glibc.spec -:100644 100644 394889e f27b93c M sources +:100644 000000 7c613e64 00000000 D glibc-rh1452750-allocate_once.patch +:100644 000000 782350f2 00000000 D glibc-rh1452750-libidn2.patch +:100644 100644 435d3570 0ceafeb8 M glibc.spec +:100644 100644 394889ee f27b93cf M sources commit 7e87eb005efa0e79b6183fc0f555d69116afdc7a Author: Florian Weimer @@ -16284,8 +16404,8 @@ CommitDate: Wed May 23 09:21:21 2018 +0200 Upstream commit: 8f145c77123a565b816f918969e0e35ee5b89153 -:100644 100644 ef648cf 435d357 M glibc.spec -:100644 100644 fd183d6 394889e M sources +:100644 100644 ef648cf4 435d3570 M glibc.spec +:100644 100644 fd183d62 394889ee M sources commit 57b8f5c27771db4a64d185036e004859dcf657b7 Author: Florian Weimer @@ -16295,7 +16415,7 @@ CommitDate: Wed May 23 09:15:03 2018 +0200 Add CVE-2017-18269 reference -:100644 100644 4ef5dc9 ef648cf M glibc.spec +:100644 100644 4ef5dc99 ef648cf4 M glibc.spec commit c9ce3549e4b2ce2c551188c371f6f5be2813e631 Author: Carlos O'Donell @@ -16305,7 +16425,7 @@ CommitDate: Tue May 22 12:30:32 2018 -0400 Add notes about nss_db and past F16 transition. -:100644 100644 d61efbc 4ef5dc9 M glibc.spec +:100644 100644 d61efbcd 4ef5dc99 M glibc.spec commit 0e59699b4c7b128c1d6a5255d4fe7e6807aa716a Author: Florian Weimer @@ -16317,8 +16437,8 @@ CommitDate: Thu May 17 10:35:47 2018 +0200 Upstream commit: 632a6cbe44cdd41dba7242887992cdca7b42922a -:100644 100644 c1e7b2d d61efbc M glibc.spec -:100644 100644 91cdf6a fd183d6 M sources +:100644 100644 c1e7b2df d61efbcd M glibc.spec +:100644 100644 91cdf6ab fd183d62 M sources commit 8ed5487f7754ea083d7ff4ca69ee912ecc775498 Author: Florian Weimer @@ -16328,7 +16448,7 @@ CommitDate: Thu May 17 10:31:38 2018 +0200 Do not run telinit u on upgrades (#1579225) -:100644 100644 3b31912 9645e99 M glibc_post_upgrade.c +:100644 100644 3b319121 9645e99b M glibc_post_upgrade.c commit 189f35b3966b608a3fc8fc7a295f318b1719e923 Author: Florian Weimer @@ -16341,7 +16461,7 @@ CommitDate: Wed May 16 14:55:29 2018 +0200 /etc/rc.d/init.d/sshd no longer exists in Fedora, so the code never runs. -:100644 100644 c74d440 3b31912 M glibc_post_upgrade.c +:100644 100644 c74d4400 3b319121 M glibc_post_upgrade.c commit 890019ecf23702b8a2a7f85ec51caafc93bf9321 Author: Florian Weimer @@ -16351,7 +16471,7 @@ CommitDate: Fri May 11 16:12:33 2018 +0200 Inherit compiler flags in the original order -:100644 100644 1164e08 c1e7b2d M glibc.spec +:100644 100644 1164e08a c1e7b2df M glibc.spec commit 2fcfa6890c06d0b88a9632629419bc263d4267dc Author: Florian Weimer @@ -16361,7 +16481,7 @@ CommitDate: Fri May 11 16:04:30 2018 +0200 Inherit the -mstackrealign flag if it is set -:100644 100644 ecef7bb 1164e08 M glibc.spec +:100644 100644 ecef7bbd 1164e08a M glibc.spec commit d5919277006957505a987092669a3b12ba98b04f Author: Florian Weimer @@ -16375,8 +16495,8 @@ CommitDate: Fri May 11 16:02:06 2018 +0200 - Avoid exporting some Sun RPC symbols with default versions (#1577210) -:100644 100644 f4bb6ac ecef7bb M glibc.spec -:100644 100644 9feb628 91cdf6a M sources +:100644 100644 f4bb6ac5 ecef7bbd M glibc.spec +:100644 100644 9feb6283 91cdf6ab M sources commit 71cb283b6601fb08bec420a8c3aeb19c66821fb0 Author: Florian Weimer @@ -16386,8 +16506,8 @@ CommitDate: Fri May 11 15:56:01 2018 +0200 Use /usr/bin/python3 for benchmarks scripts (#1577223) -:000000 100644 0000000 a9a7a4f A glibc-python3.patch -:100644 100644 052608c f4bb6ac M glibc.spec +:000000 100644 00000000 a9a7a4fb A glibc-python3.patch +:100644 100644 052608cf f4bb6ac5 M glibc.spec commit c491e21bc74ddb3fce12f5b6b0a1389c6628a8e4 Author: Florian Weimer @@ -16402,7 +16522,7 @@ CommitDate: Wed May 9 11:26:57 2018 +0200 This reverts commit 7c1047805b047baafcd099065c613b6900ec0e5f. -:100644 100644 d64c52c 052608c M glibc.spec +:100644 100644 d64c52c5 052608cf M glibc.spec commit 7c1047805b047baafcd099065c613b6900ec0e5f Author: Florian Weimer @@ -16412,7 +16532,7 @@ CommitDate: Fri May 4 14:23:09 2018 +0200 Add annobin annotations to assembler code (#1548438) -:100644 100644 052608c d64c52c M glibc.spec +:100644 100644 052608cf d64c52c5 M glibc.spec commit 098d568ec031032ba4865f0a85680a43d397633c Author: Florian Weimer @@ -16424,8 +16544,8 @@ CommitDate: Thu Apr 19 13:53:29 2018 +0200 Upstream commit: 0085be1415a38b40a5a1a12e49368498f1687380 -:100644 100644 2cb3145 052608c M glibc.spec -:100644 100644 9cd7455 9feb628 M sources +:100644 100644 2cb3145a 052608cf M glibc.spec +:100644 100644 9cd7455e 9feb6283 M sources commit 56036275529fc49788f9655a0f789c032f836357 Author: Florian Weimer @@ -16435,7 +16555,7 @@ CommitDate: Thu Apr 19 13:49:39 2018 +0200 Switch to %autosetup -:100644 100644 02ae033 2cb3145 M glibc.spec +:100644 100644 02ae033a 2cb3145a M glibc.spec commit 0e17ea22c151a5e9b8734666bf906d1ddb69158b Author: Carlos O'Donell @@ -16454,30 +16574,30 @@ CommitDate: Tue Apr 17 15:00:23 2018 -0500 patch that the source tree does not change. The patch definition is resorted to match the patch application order. -:100644 100644 7fabf30 7215e15 M glibc-c-utf8-locale.patch -:100644 100644 982f8ff aafa741 M glibc-cs-path.patch -:100644 100644 ccc7335 698546f M glibc-deprecate_libcrypt.patch -:100644 100644 8d8e857 256ef20 M glibc-fedora-__libc_multiple_libcs.patch -:100644 100644 b47e23e 3ae7e27 M glibc-fedora-linux-tcsetattr.patch -:100644 100644 c8fee0f 518253d M glibc-fedora-localedata-rh61908.patch -:100644 100644 4aaec7f 787951f M glibc-fedora-localedef.patch -:100644 100644 91ac661 299b0f0 M glibc-fedora-locarchive.patch -:100644 100644 f681620 11c2656 M glibc-fedora-manual-dircategory.patch -:100644 100644 9389901 5ec2237 M glibc-fedora-nis-rh188246.patch -:100644 100644 c0c464d 6f8f764 M glibc-fedora-nscd.patch -:100644 100644 9334f19 0d8f7d9 M glibc-fedora-streams-rh436349.patch -:100644 100644 a00346b 03dee9e M glibc-nscd-sysconfig.patch -:100644 100644 60baa49 a64adfc M glibc-post_upgrade.patch -:100644 100644 7e4235e 0975e0f M glibc-rh1070416.patch -:100644 100644 236307a a9b3374 M glibc-rh1315108.patch -:100644 100644 bdef921 7c613e6 M glibc-rh1452750-allocate_once.patch -:100644 100644 4a5171f 782350f M glibc-rh1452750-libidn2.patch -:100644 100644 961c805 e909aa1 M glibc-rh697421.patch -:100644 100644 d9b3752 f7d06ca M glibc-rh741105.patch -:100644 100644 b22e421 8b766f1 M glibc-rh819430.patch -:100644 100644 7fd3e99 6115891 M glibc-rh827510.patch -:100644 100644 00a0473 02ae033 M glibc.spec -:000000 100644 0000000 10ec35e A template.patch +:100644 100644 7fabf303 7215e155 M glibc-c-utf8-locale.patch +:100644 100644 982f8ff4 aafa7419 M glibc-cs-path.patch +:100644 100644 ccc7335e 698546f2 M glibc-deprecate_libcrypt.patch +:100644 100644 8d8e857b 256ef205 M glibc-fedora-__libc_multiple_libcs.patch +:100644 100644 b47e23eb 3ae7e27a M glibc-fedora-linux-tcsetattr.patch +:100644 100644 c8fee0f4 518253d1 M glibc-fedora-localedata-rh61908.patch +:100644 100644 4aaec7f4 787951f6 M glibc-fedora-localedef.patch +:100644 100644 91ac6614 299b0f06 M glibc-fedora-locarchive.patch +:100644 100644 f6816207 11c26569 M glibc-fedora-manual-dircategory.patch +:100644 100644 93899013 5ec22376 M glibc-fedora-nis-rh188246.patch +:100644 100644 c0c464d3 6f8f764e M glibc-fedora-nscd.patch +:100644 100644 9334f199 0d8f7d90 M glibc-fedora-streams-rh436349.patch +:100644 100644 a00346bd 03dee9e9 M glibc-nscd-sysconfig.patch +:100644 100644 60baa49e a64adfcd M glibc-post_upgrade.patch +:100644 100644 7e4235e2 0975e0fa M glibc-rh1070416.patch +:100644 100644 236307ac a9b3374f M glibc-rh1315108.patch +:100644 100644 bdef9216 7c613e64 M glibc-rh1452750-allocate_once.patch +:100644 100644 4a5171f3 782350f2 M glibc-rh1452750-libidn2.patch +:100644 100644 961c8053 e909aa19 M glibc-rh697421.patch +:100644 100644 d9b37522 f7d06caf M glibc-rh741105.patch +:100644 100644 b22e4217 8b766f10 M glibc-rh819430.patch +:100644 100644 7fd3e99a 61158912 M glibc-rh827510.patch +:100644 100644 00a0473d 02ae033a M glibc.spec +:000000 100644 00000000 10ec35e2 A template.patch commit 7e28f1b6ad5d0f0b5d4e7ae5fa23df9597e9bb70 Author: Florian Weimer @@ -16489,8 +16609,8 @@ CommitDate: Mon Apr 9 12:01:14 2018 +0200 Upstream commit: 583a27d525ae189bdfaa6784021b92a9a1dae12e -:100644 100644 4552e7a 00a0473 M glibc.spec -:100644 100644 4c1ede5 9cd7455 M sources +:100644 100644 4552e7aa 00a0473d M glibc.spec +:100644 100644 4c1ede55 9cd7455e M sources commit ec52db3a460f04bf76aeb1751d4544a6cd45e447 Author: Florian Weimer @@ -16502,8 +16622,8 @@ CommitDate: Thu Mar 29 11:44:12 2018 +0200 Upstream commit: d39c0a459ef32a41daac4840859bf304d931adab -:100644 100644 0c9327e 4552e7a M glibc.spec -:100644 100644 28bb7af 4c1ede5 M sources +:100644 100644 0c9327ed 4552e7aa M glibc.spec +:100644 100644 28bb7af5 4c1ede55 M sources commit 52fc655c6c9d3b31538e4e961e3b8c013f961fe7 Author: Florian Weimer @@ -16515,8 +16635,8 @@ CommitDate: Mon Mar 19 20:37:00 2018 +0100 Upstream commit: fbce6f7260c3847f14dfa38f60c9111978fb33a5 -:100644 100644 4325f53 0c9327e M glibc.spec -:100644 100644 682f685 28bb7af M sources +:100644 100644 4325f531 0c9327ed M glibc.spec +:100644 100644 682f6852 28bb7af5 M sources commit e0b0cbbd508285ce1da9e4b065cf447ca75df6fd Author: Florian Weimer @@ -16528,8 +16648,8 @@ CommitDate: Fri Mar 16 12:33:09 2018 +0100 Upstream commit: 700593fdd7aef1e36cfa8bad969faab76a6facda -:100644 100644 56ec40f 4325f53 M glibc.spec -:100644 100644 e77f114 682f685 M sources +:100644 100644 56ec40ff 4325f531 M glibc.spec +:100644 100644 e77f114f 682f6852 M sources commit cee352f95dd4911832bbf7656203db329cdf9f09 Author: Florian Weimer @@ -16541,8 +16661,8 @@ CommitDate: Wed Mar 14 11:02:55 2018 +0100 Upstream commit: 7108f1f944792ac68332967015d5e6418c5ccc88 -:100644 100644 71596ae 56ec40f M glibc.spec -:100644 100644 1a5d96f e77f114 M sources +:100644 100644 71596aec 56ec40ff M glibc.spec +:100644 100644 1a5d96f7 e77f114f M sources commit a928b2e6c1c100f0c92a1fc34916ddfb91aebaa8 Author: Florian Weimer @@ -16554,9 +16674,9 @@ CommitDate: Mon Mar 12 11:44:45 2018 +0100 Upstream commit: da6d4404ecfd7eacba8c096b0761a5758a59da4b -:100644 100644 f3c79d1 4a5171f M glibc-rh1452750-libidn2.patch -:100644 100644 d9128c8 71596ae M glibc.spec -:100644 100644 3721c44 1a5d96f M sources +:100644 100644 f3c79d16 4a5171f3 M glibc-rh1452750-libidn2.patch +:100644 100644 d9128c8b 71596aec M glibc.spec +:100644 100644 3721c440 1a5d96f7 M sources commit 9be86f04b33c1e23726ad146b8275db63028c732 Author: Florian Weimer @@ -16566,7 +16686,7 @@ CommitDate: Tue Mar 6 14:37:32 2018 +0100 Enable annobin annotations (#1548438) -:100644 100644 6ef8052 d9128c8 M glibc.spec +:100644 100644 6ef80524 d9128c8b M glibc.spec commit 90b56a7d0cf879c4cbd315df8d488bcf709945cd Author: Florian Weimer @@ -16576,7 +16696,7 @@ CommitDate: Fri Mar 2 10:39:29 2018 +0100 Add reference to #1550914 -:100644 100644 97802a7 6ef8052 M glibc.spec +:100644 100644 97802a72 6ef80524 M glibc.spec commit af386eee0d5c01853697bf7013293bdb64d701d9 Author: Florian Weimer @@ -16590,8 +16710,8 @@ CommitDate: Thu Mar 1 12:57:19 2018 +0100 - Remove spurios reference to libpthread_nonshared.a -:100644 100644 05d97a9 97802a7 M glibc.spec -:100644 100644 42e3167 3721c44 M sources +:100644 100644 05d97a93 97802a72 M glibc.spec +:100644 100644 42e31676 3721c440 M sources commit 1bbd25fcbf878685e46a156006b2cfe46b364afb Author: Florian Weimer @@ -16601,7 +16721,7 @@ CommitDate: Thu Mar 1 09:10:04 2018 +0100 Update sources file -:100644 100644 3d4272b 42e3167 M sources +:100644 100644 3d4272bb 42e31676 M sources commit 890cc4ed1d2ba11d380b98853a09704df6465619 Author: Florian Weimer @@ -16613,10 +16733,10 @@ CommitDate: Thu Mar 1 08:34:12 2018 +0100 Upstream commit: bd60ce86520b781ca24b99b2555e2ad389bbfeaa -:100644 000000 ca2c650 0000000 D glibc-rh1013801.patch -:100644 100644 ba60ad6 236307a M glibc-rh1315108.patch -:100644 100644 38c17a3 f3c79d1 M glibc-rh1452750-libidn2.patch -:100644 100644 33e4e5e 05d97a9 M glibc.spec +:100644 000000 ca2c6508 00000000 D glibc-rh1013801.patch +:100644 100644 ba60ad6e 236307ac M glibc-rh1315108.patch +:100644 100644 38c17a3d f3c79d16 M glibc-rh1452750-libidn2.patch +:100644 100644 33e4e5ec 05d97a93 M glibc.spec commit 0e84fd763dbb2a7e3377370d95bd138c67c5f929 Author: Florian Weimer @@ -16629,8 +16749,8 @@ CommitDate: Thu Mar 1 08:27:57 2018 +0100 We do not reference any compatibility symbols from libpthread, so this patch appears unnecessary. -:100644 000000 fc87a4a 0000000 D glibc-fedora-nptl-linklibc.patch -:100644 100644 dbe07b3 33e4e5e M glibc.spec +:100644 000000 fc87a4ae 00000000 D glibc-fedora-nptl-linklibc.patch +:100644 100644 dbe07b3b 33e4e5ec M glibc.spec commit d92633e7a991fbc7c17cb1a4f1c3760bc1fb0677 Author: Florian Weimer @@ -16640,7 +16760,7 @@ CommitDate: Wed Feb 28 12:40:44 2018 +0100 Update release and changelog -:100644 100644 b331b75 dbe07b3 M glibc.spec +:100644 100644 b331b75f dbe07b3b M glibc.spec commit 081ef32d632f5a55f913586d9b3175a2a5aa57ec Author: Florian Weimer @@ -16650,7 +16770,7 @@ CommitDate: Wed Feb 28 12:40:17 2018 +0100 Inherit as many flags as possible from redhat-rpm-config -:100644 100644 b1b9c2c b331b75 M glibc.spec +:100644 100644 b1b9c2c1 b331b75f M glibc.spec commit ee109af4322e7721c888b0d74cc88203080cfc45 Author: Richard W.M. Jones @@ -16660,7 +16780,7 @@ CommitDate: Mon Feb 19 19:47:31 2018 +0000 riscv64: Disable valgrind smoke test on this architecture. -:100644 100644 38839d1 b1b9c2c M glibc.spec +:100644 100644 38839d1e b1b9c2c1 M glibc.spec commit 16398fcbfd2969807a7bda9facc713612ceb9227 Author: Richard W.M. Jones @@ -16670,7 +16790,7 @@ CommitDate: Mon Feb 19 19:47:30 2018 +0000 riscv64: Add symlink from /usr/lib64/lp64d -> /usr/lib64 for ABI compat. -:100644 100644 7d4af2d 38839d1 M glibc.spec +:100644 100644 7d4af2d6 38839d1e M glibc.spec commit 4c06a879a9144d1c7f393936c41a18e4b22a6e62 Author: Florian Weimer @@ -16680,7 +16800,7 @@ CommitDate: Wed Feb 14 17:07:46 2018 +0100 Update changelog -:100644 100644 880c0bd 7d4af2d M glibc.spec +:100644 100644 880c0bd3 7d4af2d6 M glibc.spec commit 29d10047e2d0707fcc6fa29d9e28a75815699ec3 Author: Florian Weimer @@ -16690,7 +16810,7 @@ CommitDate: Wed Feb 14 17:07:14 2018 +0100 Include ChangeLog.old in the source RPM -:100644 100644 6ebe5bd 880c0bd M glibc.spec +:100644 100644 6ebe5bdd 880c0bd3 M glibc.spec commit 5a04553bf2fa5842957f6836cde2f4f5ae71468e Author: Florian Weimer @@ -16700,7 +16820,7 @@ CommitDate: Wed Feb 14 17:07:14 2018 +0100 Remove stale reference to the language_list macro -:100644 100644 89a510b 6ebe5bd M glibc.spec +:100644 100644 89a510b1 6ebe5bdd M glibc.spec commit 7f4ea1188ae85e33e40a7e1e58ae36d523140e79 Author: Florian Weimer @@ -16710,8 +16830,8 @@ CommitDate: Wed Feb 14 17:02:48 2018 +0100 Trim changelog -:100644 100644 f39f56e 28b5ace M ChangeLog.old -:100644 100644 6fffa33 89a510b M glibc.spec +:100644 100644 f39f56eb 28b5acee M ChangeLog.old +:100644 100644 6fffa330 89a510b1 M glibc.spec commit 1dbdd9fef3584ded3aec57716fc16d08af55172f Author: Florian Weimer @@ -16721,7 +16841,7 @@ CommitDate: Wed Feb 14 16:58:24 2018 +0100 Remove %defattr(-,root,root) -:100644 100644 e9a51da 6fffa33 M glibc.spec +:100644 100644 e9a51da1 6fffa330 M glibc.spec commit c57221cc4fc8390b7cd20ee91ee3e7a065913b2e Author: Igor Gnatenko @@ -16733,7 +16853,7 @@ CommitDate: Sun Feb 11 10:13:47 2018 +0100 Signed-off-by: Igor Gnatenko -:100644 100644 d9f843c e9a51da M glibc.spec +:100644 100644 d9f843c8 e9a51da1 M glibc.spec commit 28e47feb91230b98bc4f57b4906e47c93a2e2dd7 Author: Igor Gnatenko @@ -16748,7 +16868,7 @@ CommitDate: Wed Feb 7 17:05:29 2018 +0100 Signed-off-by: Igor Gnatenko -:100644 100644 d9a9d87 d9f843c M glibc.spec +:100644 100644 d9a9d874 d9f843c8 M glibc.spec commit c09c66271efa0b20e393c0b30d0d20cbfe8716f5 Author: Igor Gnatenko @@ -16760,7 +16880,7 @@ CommitDate: Wed Feb 7 17:04:59 2018 +0100 Signed-off-by: Igor Gnatenko -:100644 100644 8247598 d9a9d87 M glibc.spec +:100644 100644 8247598e d9a9d874 M glibc.spec commit 55adfecd0c29e604778aaf5e99fbfacdace95eca Author: Florian Weimer @@ -16773,8 +16893,8 @@ CommitDate: Wed Feb 7 14:09:49 2018 +0100 Auto-sync with upstream branch release/2.27/master, commit 56170e064e2b21ce204f0817733e92f1730541ea. -:100644 100644 fe8f3c1 8247598 M glibc.spec -:100644 100644 7c72447 3d4272b M sources +:100644 100644 fe8f3c12 8247598e M glibc.spec +:100644 100644 7c72447c 3d4272bb M sources commit eff52e35182a194e6b2c2a25ed713d815a67577a Author: Florian Weimer @@ -16784,7 +16904,7 @@ CommitDate: Wed Feb 7 14:03:08 2018 +0100 Fix typo in comment -:100644 100644 ec1593a fe8f3c1 M glibc.spec +:100644 100644 ec1593af fe8f3c12 M glibc.spec commit cefed5d027b7adc9363534ec8b1de3392db32831 Author: Fedora Release Engineering @@ -16796,7 +16916,7 @@ CommitDate: Wed Feb 7 12:49:46 2018 +0000 Signed-off-by: Fedora Release Engineering -:100644 100644 f00686a ec1593a M glibc.spec +:100644 100644 f00686ac ec1593af M glibc.spec commit 587bed9b2f46e8181fd3fac58cb2b8aec382b0fb Author: Carlos O'Donell @@ -16810,8 +16930,8 @@ CommitDate: Mon Feb 5 07:32:08 2018 -0800 Upstream commit: 23158b08a0908f381459f273a984c6fd328363cb. -:100644 100644 219188f f00686a M glibc.spec -:100644 100644 a85f5b6 7c72447 M sources +:100644 100644 219188fe f00686ac M glibc.spec +:100644 100644 a85f5b6c 7c72447c M sources commit 72c4f88cc6ca9a7c45d397227071a6ee7c455d9d Author: Richard W.M. Jones @@ -16821,7 +16941,7 @@ CommitDate: Tue Jan 30 19:33:56 2018 +0000 Fix cut and paste error in %changelog message of previous commit. -:100644 100644 361a7df 219188f M glibc.spec +:100644 100644 361a7df7 219188fe M glibc.spec commit f80578dc89c11f4f80024e35504fdbce550da19e Author: Richard W.M. Jones @@ -16845,7 +16965,7 @@ CommitDate: Tue Jan 30 18:31:15 2018 +0000 gcc: fatal error: no input files compilation terminated. -:100644 100644 9ad2271 361a7df M glibc.spec +:100644 100644 9ad2271e 361a7df7 M glibc.spec commit 6ff958f2aae58ce8d91999ba3b03e664b3c85e27 Author: Florian Weimer @@ -16855,7 +16975,7 @@ CommitDate: Mon Jan 29 20:42:52 2018 +0100 Explicitly run ldconfig in the buildroot -:100644 100644 cef56bf 9ad2271 M glibc.spec +:100644 100644 cef56bf5 9ad2271e M glibc.spec commit 48a71633e6c3a25fb8bc678c0a30eb14ae2682b9 Author: Florian Weimer @@ -16873,8 +16993,8 @@ CommitDate: Mon Jan 29 18:06:23 2018 +0100 - x86: Revert Intel CET changes to __jmp_buf_tag (swbz#22743) - aarch64: Revert the change of the __reserved member of mcontext_t -:100644 100644 012d4f0 cef56bf M glibc.spec -:100644 100644 6af1768 a85f5b6 M sources +:100644 100644 012d4f0c cef56bf5 M glibc.spec +:100644 100644 6af17688 a85f5b6c M sources commit 1f24fb0da2ff5b11df79b885656a35df1a0ac8cc Author: Igor Gnatenko @@ -16915,7 +17035,7 @@ CommitDate: Mon Jan 29 17:52:15 2018 +0100 Originally-proposed-by: Neal Gompa Signed-off-by: Igor Gnatenko -:100644 100644 8cd173a 012d4f0 M glibc.spec +:100644 100644 8cd173a1 012d4f0c M glibc.spec commit 6777c3ed80a002eac02c4405f1f41d08af328416 Author: Florian Weimer @@ -16930,8 +17050,8 @@ CommitDate: Mon Jan 22 16:19:24 2018 +0100 - locale: Implement alternative month names (swbz#10871) - locale: Change month names for pl_PL (swbz#10871) -:100644 100644 c003f18 8cd173a M glibc.spec -:100644 100644 7c1c2df 6af1768 M sources +:100644 100644 c003f18f 8cd173a1 M glibc.spec +:100644 100644 7c1c2dfc 6af17688 M sources commit a4166cd2cf4f6f9a2f17dcad28b5082969365862 Author: Florian Weimer @@ -16943,7 +17063,7 @@ CommitDate: Mon Jan 22 16:15:37 2018 +0100 Also apply minor related changelog fixes. -:100644 100644 c31587a c003f18 M glibc.spec +:100644 100644 c31587a4 c003f18f M glibc.spec commit 58e6c2560b43887e169a50ac3792bc90fb95e8cb Author: Florian Weimer @@ -16953,7 +17073,7 @@ CommitDate: Mon Jan 22 15:36:05 2018 +0100 Fix BuildRequires: binutils -:100644 100644 ed76b5e c31587a M glibc.spec +:100644 100644 ed76b5e5 c31587a4 M glibc.spec commit 92867018b55ee876e4638a653ed58bcdf8332496 Author: Florian Weimer @@ -16963,7 +17083,7 @@ CommitDate: Mon Jan 22 15:33:29 2018 +0100 Update changelog for glibc-2.26.9000-47.fc28 -:100644 100644 afe0348 ed76b5e M glibc.spec +:100644 100644 afe0348c ed76b5e5 M glibc.spec commit cd5e5a111770ed8849722cda57a01a3e8be77e9c Author: Florian Weimer @@ -16973,7 +17093,7 @@ CommitDate: Mon Jan 22 15:33:29 2018 +0100 Reenable static PIE on aarch64 after binutils fix (#1247050) -:100644 100644 f8cab50 afe0348 M glibc.spec +:100644 100644 f8cab50c afe0348c M glibc.spec commit 6815071d4a696009f949e25e4c9a2c0015b0821d Author: Florian Weimer @@ -16983,7 +17103,7 @@ CommitDate: Mon Jan 22 15:33:25 2018 +0100 Unconditionally build without libcrypt -:100644 100644 cd2244b f8cab50 M glibc.spec +:100644 100644 cd2244b8 f8cab50c M glibc.spec commit b8b7388beb1e84446763ce7fbd414b9883cb019c Author: Florian Weimer @@ -16993,7 +17113,7 @@ CommitDate: Mon Jan 22 11:09:06 2018 +0100 Fix release number in changelog entry -:100644 100644 3b1761f cd2244b M glibc.spec +:100644 100644 3b1761f9 cd2244b8 M glibc.spec commit c758358a31ea7baa19cc718684271aca66b2e88f Author: Florian Weimer @@ -17003,7 +17123,7 @@ CommitDate: Mon Jan 22 11:00:27 2018 +0100 glibc-deprecate_libcrypt.patch: Do not patch NEWS, fix attribution -:100644 100644 76a8f61 ccc7335 M glibc-deprecate_libcrypt.patch +:100644 100644 76a8f61f ccc7335e M glibc-deprecate_libcrypt.patch commit 2687b3c78b7b05ca9cc568e40464fb7909e9ec6d Author: Björn Esser @@ -17024,8 +17144,8 @@ CommitDate: Fri Jan 19 23:49:50 2018 +0100 This commit is the glibc part of: https://fedoraproject.org/wiki/Changes/Replace_glibc_libcrypt_with_libxcrypt -:000000 100644 0000000 76a8f61 A glibc-deprecate_libcrypt.patch -:100644 100644 4153d23 3b1761f M glibc.spec +:000000 100644 00000000 76a8f61f A glibc-deprecate_libcrypt.patch +:100644 100644 4153d23e 3b1761f9 M glibc.spec commit 6a5972a529c0adec28591839eda2eb84b47e25b0 Author: Florian Weimer @@ -17037,8 +17157,8 @@ CommitDate: Fri Jan 19 18:32:12 2018 +0100 An rpcgen subpackage is now built by rpcsvc-proto. -:100644 000000 2fe1130 0000000 D glibc-rpcgen.patch -:100644 100644 ba8c8bd 4153d23 M glibc.spec +:100644 000000 2fe11303 00000000 D glibc-rpcgen.patch +:100644 100644 ba8c8bd8 4153d23e M glibc.spec commit 36e86580360513ae5b2db454932810d1b1338ad9 Author: Florian Weimer @@ -17051,7 +17171,7 @@ CommitDate: Fri Jan 19 18:04:40 2018 +0100 It leads to crashes at run time. Probably needs binutils fixes not yet in rawhide. -:100644 100644 f98656b ba8c8bd M glibc.spec +:100644 100644 f98656bb ba8c8bd8 M glibc.spec commit fac98a7443549ba70c22ce04773d9f075706a731 Author: Florian Weimer @@ -17071,8 +17191,8 @@ CommitDate: Fri Jan 19 17:02:46 2018 +0100 - Remove architecture-specific symbolic link for iconvconfig - powerpc: Fix syscalls during early process initialization (swbz#22685) -:100644 100644 9b34848 f98656b M glibc.spec -:100644 100644 79e4030 7c1c2df M sources +:100644 100644 9b348484 f98656bb M glibc.spec +:100644 100644 79e40309 7c1c2dfc M sources commit a071c6801cce4ea0c2d16b4b139f33171c57ca0f Author: Florian Weimer @@ -17086,7 +17206,7 @@ CommitDate: Fri Jan 19 17:02:46 2018 +0100 long time because the file /etc/rc.d/init.d/sshd does not exit anymore, so it appears unnecessary after all. -:100644 100644 075660c 60baa49 M glibc-post_upgrade.patch +:100644 100644 075660c9 60baa49e M glibc-post_upgrade.patch commit cc5db6cdfde3f93137f88e598de1333865c8ad08 Author: Florian Weimer @@ -17098,7 +17218,7 @@ CommitDate: Fri Jan 19 17:02:40 2018 +0100 x86_64 was missing before. -:100644 100644 2610242 9b34848 M glibc.spec +:100644 100644 26102423 9b348484 M glibc.spec commit 737f7e8513f66db4247e2f5f301b2503633a809e Author: Florian Weimer @@ -17115,8 +17235,8 @@ CommitDate: Fri Jan 19 16:32:18 2018 +0100 Due to the move into the glibc build process, the program had to be cleaned up to compile without warnings. -:000000 100644 0000000 075660c A glibc-post_upgrade.patch -:100644 100644 6a75446 2610242 M glibc.spec +:000000 100644 00000000 075660c9 A glibc-post_upgrade.patch +:100644 100644 6a754468 26102423 M glibc.spec commit 34f077631c047ffa6a99a7fa501ba95d4ec6ab5c Author: Florian Weimer @@ -17126,8 +17246,8 @@ CommitDate: Fri Jan 19 16:05:04 2018 +0100 Move glibc-fedora-nscd.patch comment into file -:100644 100644 a26b928 c0c464d M glibc-fedora-nscd.patch -:100644 100644 e0019ca 6a75446 M glibc.spec +:100644 100644 a26b9283 c0c464d3 M glibc-fedora-nscd.patch +:100644 100644 e0019ca1 6a754468 M glibc.spec commit 707a1e8f871cf22cb856a283480077c6efcae00e Author: Florian Weimer @@ -17141,8 +17261,8 @@ CommitDate: Fri Jan 19 15:30:50 2018 +0100 iconvconfig with explicit paths, so it does not matter for which multilib variant the binary was built. -:100644 100644 267bad7 e0019ca M glibc.spec -:100644 100644 a49f23d c74d440 M glibc_post_upgrade.c +:100644 100644 267bad7e e0019ca1 M glibc.spec +:100644 100644 a49f23d5 c74d4400 M glibc_post_upgrade.c commit e33b0e319728b8910e784de0be29ea56dea26892 Author: Florian Weimer @@ -17152,8 +17272,8 @@ CommitDate: Fri Jan 19 15:11:38 2018 +0100 glibc_post_upgrade: Move LD_SO_CONF definition into source file -:100644 100644 258dbf9 267bad7 M glibc.spec -:100644 100644 1658507 a49f23d M glibc_post_upgrade.c +:100644 100644 258dbf9a 267bad7e M glibc.spec +:100644 100644 16585073 a49f23d5 M glibc_post_upgrade.c commit 365663e72b5aebe2b428cddf928865c48350fd38 Author: Florian Weimer @@ -17165,8 +17285,8 @@ CommitDate: Fri Jan 19 15:07:33 2018 +0100 These were removed a long time ago. -:100644 100644 af08df2 258dbf9 M glibc.spec -:100644 100644 134607b 1658507 M glibc_post_upgrade.c +:100644 100644 af08df27 258dbf9a M glibc.spec +:100644 100644 134607ba 16585073 M glibc_post_upgrade.c commit 91ed2dbf627116ca8edd2038ab6084f22dcefb94 Author: Florian Weimer @@ -17176,7 +17296,7 @@ CommitDate: Fri Jan 19 15:03:57 2018 +0100 glibc_post_upgrade: Drop ia64 support -:100644 100644 ad3215c 134607b M glibc_post_upgrade.c +:100644 100644 ad3215c2 134607ba M glibc_post_upgrade.c commit 0f4d3ed14dc9efb1dfb9528f31d9e630c0ab4679 Author: Florian Weimer @@ -17196,7 +17316,7 @@ CommitDate: Fri Jan 19 12:58:39 2018 +0100 - aarch64: Update bits/hwcap.h for Linux 4.15 - Add NT_ARM_SVE to elf.h -:100644 100644 1831bc0 af08df2 M glibc.spec +:100644 100644 1831bc0c af08df27 M glibc.spec commit 5c2fe5cfb3798d359719b9b7da5e1324ef100709 Author: Florian Weimer @@ -17209,7 +17329,7 @@ CommitDate: Fri Jan 19 12:02:32 2018 +0100 Remove the timeout and the parallel tail call. Always output to standard error, for synchronization with the rest of the reporting. -:100644 100644 38c334a 1831bc0 M glibc.spec +:100644 100644 38c334a0 1831bc0c M glibc.spec commit 5163dbee45584c74025497b8f760c3ee94049f1f Author: Florian Weimer @@ -17219,7 +17339,7 @@ CommitDate: Fri Jan 19 08:36:02 2018 +0100 Enable static PIE on aarch64, i686, x86-64 -:100644 100644 9b534ea 38c334a M glibc.spec +:100644 100644 9b534ea6 38c334a0 M glibc.spec commit dc905411d5b45d40e511063a5a1624b4cc5ac2a5 Author: Florian Weimer @@ -17229,7 +17349,7 @@ CommitDate: Fri Jan 19 08:35:09 2018 +0100 Remove add-on support (already gone upstream) -:100644 100644 4e5ba15 9b534ea M glibc.spec +:100644 100644 4e5ba158 9b534ea6 M glibc.spec commit 90612b2709d89a73aef91a99c83c50234359a74a Author: Florian Weimer @@ -17239,9 +17359,9 @@ CommitDate: Wed Jan 17 18:42:37 2018 +0100 Use libidn2 for IDNA support (#1452750) -:000000 100644 0000000 bdef921 A glibc-rh1452750-allocate_once.patch -:000000 100644 0000000 38c17a3 A glibc-rh1452750-libidn2.patch -:100644 100644 29fdb56 4e5ba15 M glibc.spec +:000000 100644 00000000 bdef9216 A glibc-rh1452750-allocate_once.patch +:000000 100644 00000000 38c17a3d A glibc-rh1452750-libidn2.patch +:100644 100644 29fdb562 4e5ba158 M glibc.spec commit d7ce5d463432bf3573573aed17a99a22f750fd96 Author: Florian Weimer @@ -17259,8 +17379,8 @@ CommitDate: Mon Jan 15 18:02:57 2018 +0100 - aarch64: fix static pie enabled libc when main is in a shared library - malloc: Ensure that the consolidated fast chunk has a sane size -:100644 100644 0d2ffb2 29fdb56 M glibc.spec -:100644 100644 817c32b 79e4030 M sources +:100644 100644 0d2ffb20 29fdb562 M glibc.spec +:100644 100644 817c32b3 79e40309 M sources commit d84b03df97893052d1fe7c2dc31cef9a0724a162 Author: Florian Weimer @@ -17278,8 +17398,8 @@ CommitDate: Fri Jan 12 11:43:05 2018 +0100 - math: Make default libc_feholdsetround_noex_ctx use __feholdexcept (swbz#22702) -:100644 100644 4149057 0d2ffb2 M glibc.spec -:100644 100644 b20bd57 817c32b M sources +:100644 100644 4149057b 0d2ffb20 M glibc.spec +:100644 100644 b20bd573 817c32b3 M sources commit 684ac6eb78b893e3b7e1a925728abf63d91b95d0 Author: Florian Weimer @@ -17289,7 +17409,7 @@ CommitDate: Fri Jan 12 11:13:18 2018 +0100 Use unversioned Supplements: for langpacks (#1490725) -:100644 100644 c9a2081 4149057 M glibc.spec +:100644 100644 c9a2081e 4149057b M glibc.spec commit 538e3ea7c8812b667b681ccfac9f8655188ad5bf Author: Florian Weimer @@ -17307,8 +17427,8 @@ CommitDate: Thu Jan 11 14:30:08 2018 +0100 - nptl: Add tst-minstack-cancel, tst-minstack-exit (swbz#22636) - math: ldbl-128ibm log1pl (-qNaN) spurious "invalid" exception (swbz#22693) -:100644 100644 27afdf3 c9a2081 M glibc.spec -:100644 100644 b52d49e b20bd57 M sources +:100644 100644 27afdf33 c9a2081e M glibc.spec +:100644 100644 b52d49ea b20bd573 M sources commit b8bc11a8341f69766b306d9c104b8aa8bd8cc8e4 Author: Florian Weimer @@ -17318,7 +17438,7 @@ CommitDate: Thu Jan 11 13:21:53 2018 +0100 Put libnsl into a subpackage and do not install NIS headers -:100644 100644 688fe5a 27afdf3 M glibc.spec +:100644 100644 688fe5ab 27afdf33 M glibc.spec commit 6e8a4e351bb4b3cadec151cb418ed706777141ca Author: Florian Weimer @@ -17328,7 +17448,7 @@ CommitDate: Thu Jan 11 11:57:20 2018 +0100 Use versioned Obsoletes: for libcrypt-nss -:100644 100644 e1ae4ef 688fe5a M glibc.spec +:100644 100644 e1ae4efb 688fe5ab M glibc.spec commit 8544d3ab893b27557fb11c7ba56b2427cb34f70f Author: Carlos O'Donell @@ -17338,7 +17458,7 @@ CommitDate: Wed Jan 10 11:13:08 2018 -0800 Update comments on python3 selection. -:100644 100644 828d003 e1ae4ef M glibc.spec +:100644 100644 828d003f e1ae4efb M glibc.spec commit 9e28c4292e0bf454c5226d2c7b0efa886907932e Author: Florian Weimer @@ -17356,8 +17476,8 @@ CommitDate: Wed Jan 10 08:59:17 2018 +0100 - math: ldbl-128ibm lrintl/lroundl missing "invalid" exceptions (swbz#22690) - x86-64: Add sincosf with vector FMA -:100644 100644 f4d0d87 828d003 M glibc.spec -:100644 100644 c0572ef b52d49e M sources +:100644 100644 f4d0d879 828d003f M glibc.spec +:100644 100644 c0572efe b52d49ea M sources commit e15a68193ca296b26580a4b298aa5fddbbcdf97e Author: Florian Weimer @@ -17367,7 +17487,7 @@ CommitDate: Wed Jan 10 08:09:01 2018 +0100 Use python3 instead of python during builds -:100644 100644 2423262 f4d0d87 M glibc.spec +:100644 100644 24232629 f4d0d879 M glibc.spec commit cad9c65e114463e86fa75ecb54fdc4b3259c6756 Author: Florian Weimer @@ -17377,7 +17497,7 @@ CommitDate: Tue Jan 9 15:14:20 2018 +0100 Remove Obsoletes: on capabilities which are not package names -:100644 100644 9a9dfe0 2423262 M glibc.spec +:100644 100644 9a9dfe03 24232629 M glibc.spec commit a281128660c3197f07783d082d5a35423cc48e55 Author: Florian Weimer @@ -17387,8 +17507,8 @@ CommitDate: Mon Jan 8 16:46:16 2018 +0100 Add glibc-rpcgen subpackage, until the replacement is packaged (#1531540) -:000000 100644 0000000 2fe1130 A glibc-rpcgen.patch -:100644 100644 c88f02a 9a9dfe0 M glibc.spec +:000000 100644 00000000 2fe11303 A glibc-rpcgen.patch +:100644 100644 c88f02a1 9a9dfe03 M glibc.spec commit 1042b5d52afdfb4615bce84a3fea83af7a0c3618 Author: Florian Weimer @@ -17407,8 +17527,8 @@ CommitDate: Mon Jan 8 15:15:05 2018 +0100 - powerpc: Fix error message during relocation overflow - prlimit: Replace old_rlimit RLIM64_INFINITY with RLIM_INFINITY (swbz#22678) -:100644 100644 a8be35b c88f02a M glibc.spec -:100644 100644 84b5096 c0572ef M sources +:100644 100644 a8be35b3 c88f02a1 M glibc.spec +:100644 100644 84b50960 c0572efe M sources commit cf072ec21ab6e068d47ab5f049287901698b77be Author: Florian Weimer @@ -17433,8 +17553,8 @@ CommitDate: Fri Jan 5 14:36:28 2018 +0100 - scandir: fix wrong assumption about errno (swbz#17804) - Deprecate external use of libio.h and _G_config.h -:100644 100644 fa48deb a8be35b M glibc.spec -:100644 100644 5786385 84b5096 M sources +:100644 100644 fa48deba a8be35b3 M glibc.spec +:100644 100644 5786385d 84b50960 M sources commit bf6952b9c946b873a74982c57feeb69b08760bcb Author: Florian Weimer @@ -17446,8 +17566,8 @@ CommitDate: Fri Jan 5 14:23:04 2018 +0100 Fixed upstream in a different way (our patch was buggy, see CVE-2017-16997). -:100644 000000 0f20ca8 0000000 D glibc-fedora-elf-ORIGIN.patch -:100644 100644 d648aac fa48deb M glibc.spec +:100644 000000 0f20ca89 00000000 D glibc-fedora-elf-ORIGIN.patch +:100644 100644 d648aac0 fa48deba M glibc.spec commit 23177e46b4d4f3dfda2feffe7989b43107409a27 Author: Florian Weimer @@ -17460,7 +17580,7 @@ CommitDate: Fri Jan 5 14:19:56 2018 +0100 Obsoleted by commit d8e1573f9c8c28f6390791c329512045f0c52868 (Stop shipping /usr/sbin/sln). -:100644 000000 f0ac3aa 0000000 D glibc-rh1315476-2.patch +:100644 000000 f0ac3aa8 00000000 D glibc-rh1315476-2.patch commit d62730de90faf8520e32e9bcb17cc21a7996eaf4 Author: Florian Weimer @@ -17470,7 +17590,7 @@ CommitDate: Fri Jan 5 14:07:05 2018 +0100 Disable Sun RPC interfaces (#1531540) -:100644 100644 80844ed d648aac M glibc.spec +:100644 100644 80844ed8 d648aac0 M glibc.spec commit 95cc2e8d4c0607803d926964f2b7b5b129d4e294 Author: Florian Weimer @@ -17480,7 +17600,7 @@ CommitDate: Thu Jan 4 10:45:03 2018 +0100 glibc_post_upgrade: Explain why removing platform directories is needed -:100644 100644 ae48737 ad3215c M glibc_post_upgrade.c +:100644 100644 ae48737f ad3215c2 M glibc_post_upgrade.c commit d8e1573f9c8c28f6390791c329512045f0c52868 Author: Colin Walters @@ -17525,7 +17645,7 @@ CommitDate: Wed Jan 3 16:30:03 2018 -0500 in updates, but given there's no real reason for this binary to exist anymore, let's drop it. -:100644 100644 5510013 80844ed M glibc.spec +:100644 100644 55100138 80844ed8 M glibc.spec commit 39b4cfbcf15255c21ec057abc81b457ecd11f8c3 Author: Florian Weimer @@ -17556,9 +17676,9 @@ CommitDate: Fri Dec 22 16:13:39 2017 +0100 - x86-64: Remove sysdeps/x86_64/fpu/s_cosf.S - aarch64: Improve strcmp unaligned performance -:100644 100644 4bcd5b5 ca2c650 M glibc-rh1013801.patch -:100644 100644 519dc31 5510013 M glibc.spec -:100644 100644 992ba02 5786385 M sources +:100644 100644 4bcd5b53 ca2c6508 M glibc-rh1013801.patch +:100644 100644 519dc315 55100138 M glibc.spec +:100644 100644 992ba028 5786385d M sources commit a5a75062423efd916b908a2c6225d030233c13fa Author: Florian Weimer @@ -17568,8 +17688,8 @@ CommitDate: Wed Dec 13 16:26:51 2017 +0100 Remove power6 platform directory (#1522675) -:100644 100644 400b8cd 519dc31 M glibc.spec -:100644 100644 e5b72a0 ae48737 M glibc_post_upgrade.c +:100644 100644 400b8cd8 519dc315 M glibc.spec +:100644 100644 e5b72a01 ae48737f M glibc_post_upgrade.c commit 08930d16b54c24b4599d892dedacf94e9e44f368 Author: Florian Weimer @@ -17579,8 +17699,8 @@ CommitDate: Wed Dec 13 12:49:24 2017 +0100 Obsolete the libcrypt-nss subpackage (#1525396) -:100644 000000 44333d7 0000000 D glibc-rh1324623.patch -:100644 100644 7c12039 400b8cd M glibc.spec +:100644 000000 44333d7d 00000000 D glibc-rh1324623.patch +:100644 100644 7c120393 400b8cd8 M glibc.spec commit 29bd4db4f52040dbe082ed11a8fc7cc0245d70ca Author: Florian Weimer @@ -17590,7 +17710,7 @@ CommitDate: Wed Dec 13 12:03:19 2017 +0100 armhfp: Disable -fstack-clash-protection due to GCC bug (#1522678) -:100644 100644 2ce6493 7c12039 M glibc.spec +:100644 100644 2ce64938 7c120393 M glibc.spec commit ac67247deff1ad0c3259161309a63f9a82039758 Author: Florian Weimer @@ -17600,7 +17720,7 @@ CommitDate: Wed Dec 13 12:00:28 2017 +0100 ppc64: Disable power6 multilib due to GCC bug (#1522675) -:100644 100644 9b9ae6e 2ce6493 M glibc.spec +:100644 100644 9b9ae6e5 2ce64938 M glibc.spec commit 94e38e4e87e5c24ef91912f56f6c8dd0072cb29f Author: Florian Weimer @@ -17624,8 +17744,8 @@ CommitDate: Wed Dec 13 11:58:20 2017 +0100 - math: Make cacosh (0 + iNaN) return NaN + i pi/2 (swbz#22561) - hsb_DE locale: Base collation on copy "iso14651_t1" (swbz#22515) -:100644 100644 dac44e4 9b9ae6e M glibc.spec -:100644 100644 034a7a9 992ba02 M sources +:100644 100644 dac44e4a 9b9ae6e5 M glibc.spec +:100644 100644 034a7a9c 992ba028 M sources commit 9d8de720ddc32778eddd41b5fbb55b4701da9f83 Author: Florian Weimer @@ -17635,7 +17755,7 @@ CommitDate: Wed Dec 6 11:16:02 2017 +0100 Add reference to #1383986 -:100644 100644 87f0ca5 dac44e4 M glibc.spec +:100644 100644 87f0ca5d dac44e4a M glibc.spec commit 3c78a5138511fa5c5ae7ed61dd1711eafa122f87 Author: Florian Weimer @@ -17658,8 +17778,8 @@ CommitDate: Wed Dec 6 07:55:19 2017 +0100 - hr_HR locale: Avoid single code points for digraphs in LC_TIME (swbz#10580) - S390: Fix backtrace in vdso functions -:100644 100644 b526edd 87f0ca5 M glibc.spec -:100644 100644 beb9e50 034a7a9 M sources +:100644 100644 b526edd2 87f0ca5d M glibc.spec +:100644 100644 beb9e50a 034a7a9c M sources commit d19bd27c2fe9fa294073a74908bba8abe58ad6d0 Author: Florian Weimer @@ -17669,7 +17789,7 @@ CommitDate: Wed Dec 6 07:49:51 2017 +0100 Add reference to CVE-2017-17426 -:100644 100644 eae6918 b526edd M glibc.spec +:100644 100644 eae69187 b526edd2 M glibc.spec commit bb83f920be3ae02a1ba179b08072281ac0cff3ab Author: Florian Weimer @@ -17690,8 +17810,8 @@ CommitDate: Mon Dec 4 13:59:23 2017 +0100 - malloc: Fix integer overflow when tcache is enabled (swbz#22375) - locale: make forward accent sorting the default in collating (swbz#17750) -:100644 100644 154aa7c eae6918 M glibc.spec -:100644 100644 979fd09 beb9e50 M sources +:100644 100644 154aa7cf eae69187 M glibc.spec +:100644 100644 979fd09c beb9e50a M sources commit 00b734f53088485c0da9d2a736ceead0c63c584e Author: Florian Weimer @@ -17701,7 +17821,7 @@ CommitDate: Wed Nov 29 12:59:25 2017 +0100 Enable -fstack-clash-protection (#1512531) -:100644 100644 6a42a12 154aa7c M glibc.spec +:100644 100644 6a42a126 154aa7cf M glibc.spec commit db77ecebac1de45d171e1717ea66d04e6ea57b30 Author: Florian Weimer @@ -17711,7 +17831,7 @@ CommitDate: Wed Nov 29 12:54:21 2017 +0100 Upload new sources -:100644 100644 2d91365 979fd09 M sources +:100644 100644 2d91365d 979fd09c M sources commit 776ca08599a673d1a075ab6ed09f5248eacfa441 Author: Florian Weimer @@ -17731,7 +17851,7 @@ CommitDate: Wed Nov 29 11:58:53 2017 +0100 - pl_PL locale: Base collation on iso14651_t1 (swbz#22469) - nss: Export nscd hash function as __nss_hash (swbz#22459) -:100644 100644 6a88a73 6a42a12 M glibc.spec +:100644 100644 6a88a73f 6a42a126 M glibc.spec commit 71d4a02e146829823d06a8b02039aba21263db1f Author: Andreas Krebbel @@ -17741,7 +17861,7 @@ CommitDate: Tue Nov 28 18:40:52 2017 +0100 Typo fixes and improved s390 (31-bit) build support -:100644 100644 f65a5a2 6a88a73 M glibc.spec +:100644 100644 f65a5a27 6a88a73f M glibc.spec commit 10c1baf354ff515fd74f2966e3aadd5136e7fd94 Author: Florian Weimer @@ -17762,8 +17882,8 @@ CommitDate: Thu Nov 23 11:28:28 2017 +0100 - S390: Add cfi information for start routines in order to stop unwinding - aarch64: Optimized memset for falkor -:100644 100644 e0a7965 f65a5a2 M glibc.spec -:100644 100644 804c716 2d91365 M sources +:100644 100644 e0a79651 f65a5a27 M glibc.spec +:100644 100644 804c7165 2d91365d M sources commit df547679fdfdc29ce403346548b56a985229c22d Author: Florian Weimer @@ -17788,8 +17908,8 @@ CommitDate: Sun Nov 19 10:56:29 2017 +0100 - resolv: ns_name_pton should report trailing \ as error (swbz#22413) - locale: mfe_MU, miq_NI, an_ES, kab_DZ, om_ET: Escape / in d_fmt (swbz#22403) -:100644 100644 cb8bfa1 e0a7965 M glibc.spec -:100644 100644 37f1673 804c716 M sources +:100644 100644 cb8bfa19 e0a79651 M glibc.spec +:100644 100644 37f16731 804c7165 M sources commit 35726c325a2770117be10330b63337886f601c1b Author: Florian Weimer @@ -17799,7 +17919,7 @@ CommitDate: Tue Nov 7 12:21:16 2017 +0100 Link build-locale-archive against record-status.o -:100644 100644 b5a8634 cb8bfa1 M glibc.spec +:100644 100644 b5a8634b cb8bfa19 M glibc.spec commit 0980ba190bd5f7daf6474a254e4c70f671354605 Author: Florian Weimer @@ -17835,10 +17955,10 @@ CommitDate: Tue Nov 7 12:05:14 2017 +0100 - x86-64: Add exp2f with FMA - i386: Replace assembly versions of e_expf with generic e_expf.c -:100644 100644 a11f9ac a8e5a0c M SUPPORTED -:100644 100644 c4a39f6 4aaec7f M glibc-fedora-localedef.patch -:100644 100644 905ad88 b5a8634 M glibc.spec -:100644 100644 d97c621 37f1673 M sources +:100644 100644 a11f9ac9 a8e5a0c6 M SUPPORTED +:100644 100644 c4a39f6e 4aaec7f4 M glibc-fedora-localedef.patch +:100644 100644 905ad88f b5a8634b M glibc.spec +:100644 100644 d97c6216 37f16731 M sources commit e74f2b3bdb9897a34916f266d8c7d88fb7658462 Author: Florian Weimer @@ -17858,9 +17978,9 @@ CommitDate: Sat Oct 21 14:17:32 2017 +0200 - locale: Add new locale kab_DZ (swbz#18812) - locale: Add new locale shn_MM (swbz#13605) -:100644 100644 26894bb a11f9ac M SUPPORTED -:100644 100644 6c2afe3 905ad88 M glibc.spec -:100644 100644 988193e d97c621 M sources +:100644 100644 26894bb6 a11f9ac9 M SUPPORTED +:100644 100644 6c2afe30 905ad88f M glibc.spec +:100644 100644 988193ee d97c6216 M sources commit 5188e8569e4032f8408e569ef856277b1b50d071 Author: Florian Weimer @@ -17889,9 +18009,9 @@ CommitDate: Fri Oct 20 04:33:52 2017 +0200 - math: Let signbit use the builtin in C++ mode with gcc < 6.x (swbz#22296) - locale: Place monetary symbol in el_GR, el_CY after the amount (swbz#22019) -:100644 100644 8476f26 26894bb M SUPPORTED -:100644 100644 dc5d601 6c2afe3 M glibc.spec -:100644 100644 b93a31f 988193e M sources +:100644 100644 8476f268 26894bb6 M SUPPORTED +:100644 100644 dc5d6016 6c2afe30 M glibc.spec +:100644 100644 b93a31fe 988193ee M sources commit e098446236b772f67e07fb05279514a67d4a9d05 Author: Florian Weimer @@ -17901,7 +18021,7 @@ CommitDate: Tue Oct 17 13:52:43 2017 +0200 Use the -O flag to serialize make output -:100644 100644 a05c3b8 dc5d601 M glibc.spec +:100644 100644 a05c3b85 dc5d6016 M glibc.spec commit 277dd05ebd5bf0c81f0b7d9f0bc3be1e3d31c1f3 Author: Florian Weimer @@ -17911,7 +18031,7 @@ CommitDate: Tue Oct 17 13:50:23 2017 +0200 Fix _smp_mflags reference in the libcrypt build -:100644 100644 cc73191 a05c3b8 M glibc.spec +:100644 100644 cc73191a a05c3b85 M glibc.spec commit 7bdfe15464f9f6c7dd97fffc7fc4e728d8cd7c62 Author: Florian Weimer @@ -17921,7 +18041,7 @@ CommitDate: Tue Oct 17 13:47:32 2017 +0200 Remove silentrules macro -:100644 100644 5d36812 cc73191 M glibc.spec +:100644 100644 5d368128 cc73191a M glibc.spec commit adefe4d265a60ccb2ceab6cb28e2bb9698c15525 Author: Florian Weimer @@ -17933,7 +18053,7 @@ CommitDate: Tue Oct 17 13:43:47 2017 +0200 This is now supported upstream. -:100644 100644 b86d045 5d36812 M glibc.spec +:100644 100644 b86d0457 5d368128 M glibc.spec commit 3bd5cf3d29382a332c4b5fec3d12500146ecb89f Author: Florian Weimer @@ -17947,7 +18067,7 @@ CommitDate: Tue Oct 17 12:55:38 2017 +0200 release off the release/*/master branch (which does not have a tarball), but glibcversion remains the same. -:100644 100644 52e09de b86d045 M glibc.spec +:100644 100644 52e09de7 b86d0457 M glibc.spec commit d4b46d7258ecdfe6a6ade7b1ddc32a503d501e05 Author: Florian Weimer @@ -17957,7 +18077,7 @@ CommitDate: Tue Oct 17 12:47:02 2017 +0200 Switch to .9000 version numbers during development (this time for real) -:100644 100644 b429a82 52e09de M glibc.spec +:100644 100644 b429a827 52e09de7 M glibc.spec commit 7fbb58cf6219b8c81fae369b92301659c98b99ba Author: Florian Weimer @@ -17972,8 +18092,8 @@ CommitDate: Tue Oct 17 12:12:39 2017 +0200 - Switch to .9000 version numbers during development - malloc: Use compat_symbol_reference in libmcheck (swbz#22050) -:100644 100644 d64b90c b429a82 M glibc.spec -:100644 100644 b4497ed b93a31f M sources +:100644 100644 d64b90c6 b429a827 M glibc.spec +:100644 100644 b4497edf b93a31fe M sources commit 6c2a58dc615d03e291c7cda5ce830ad0ce95f952 Author: Florian Weimer @@ -17994,8 +18114,8 @@ CommitDate: Mon Oct 16 19:27:17 2017 +0200 - powerpc: Fix the carry bit on mpn_[add|sub]_n on POWER7 (swbz#22142) - Support profiling PIE (swbz#22284) -:100644 100644 cdfb79f d64b90c M glibc.spec -:100644 100644 21c92c6 b4497ed M sources +:100644 100644 cdfb79f6 d64b90c6 M glibc.spec +:100644 100644 21c92c69 b4497edf M sources commit b1ee1018fc16ab856c53280899f0d6db48e51095 Author: Florian Weimer @@ -18007,9 +18127,9 @@ CommitDate: Wed Oct 11 07:19:54 2017 +0200 Upstream commit: d8425e116cdd954fea0c04c0f406179b5daebbb3 -:100644 100644 5493c2a ba60ad6 M glibc-rh1315108.patch -:100644 100644 ca5d36a cdfb79f M glibc.spec -:100644 100644 f859806 21c92c6 M sources +:100644 100644 5493c2a2 ba60ad6e M glibc-rh1315108.patch +:100644 100644 ca5d36ad cdfb79f6 M glibc.spec +:100644 100644 f8598065 21c92c69 M sources commit d3da0e913afac8c4ffb4524eb2ecfd1d83abf611 Author: Florian Weimer @@ -18019,7 +18139,7 @@ CommitDate: Mon Oct 9 12:24:43 2017 +0200 Move /var/db/Makefile to nss_db (#1498900) -:100644 100644 0ba60a6 ca5d36a M glibc.spec +:100644 100644 0ba60a6d ca5d36ad M glibc.spec commit 988ba6d3d10f37af560d7272d3c626f8b89f0bc4 Author: Florian Weimer @@ -18031,8 +18151,8 @@ CommitDate: Mon Oct 9 12:07:51 2017 +0200 Upstream commit: 645ac9aaf89e3311949828546df6334322f48933 -:100644 100644 3e604a5 0ba60a6 M glibc.spec -:100644 100644 9e219ef f859806 M sources +:100644 100644 3e604a5f 0ba60a6d M glibc.spec +:100644 100644 9e219efb f8598065 M sources commit 746617ce7d177176e8359fe374cc845a3f34e188 Author: Florian Weimer @@ -18045,7 +18165,7 @@ CommitDate: Sat Oct 7 12:40:46 2017 +0200 The existing shell-based approach required super-linear processing time for the SUPPORTED file. -:100644 100644 f86ae01 3e604a5 M glibc.spec +:100644 100644 f86ae012 3e604a5f M glibc.spec commit b586203c24fcc53c7ad661343d2c5ec9346169c8 Author: Carlos O'Donell @@ -18063,10 +18183,10 @@ CommitDate: Fri Oct 6 15:55:09 2017 -0700 - Always do locking when iterating over list of streams (swbz#15142) - abort: Do not flush stdio streams (swbz#15436) -:000000 100644 0000000 ef528da A README.scripts -:100644 100644 fecf03b f86ae01 M glibc.spec -:100644 100644 f504dce 9e219ef M sources -:100755 000000 459c153 0000000 D sync-upstream.sh +:000000 100644 00000000 ef528da2 A README.scripts +:100644 100644 fecf03be f86ae012 M glibc.spec +:100644 100644 f504dce6 9e219efb M sources +:100755 000000 459c1534 00000000 D sync-upstream.sh commit 2235ae530db15a9d8f05646cf4998a91f8b5c523 Author: Florian Weimer @@ -18076,7 +18196,7 @@ CommitDate: Wed Oct 4 18:53:59 2017 +0200 Move nss_compat to the main glibc package (#1400538) -:100644 100644 84766e9 fecf03b M glibc.spec +:100644 100644 84766e96 fecf03be M glibc.spec commit 67108a5592fd04da99a25f5b2f8cb140a7062e5e Author: Florian Weimer @@ -18095,9 +18215,9 @@ CommitDate: Wed Oct 4 16:01:19 2017 +0200 - powerpc: Optimize memrchr for power8 - Hide various internal functions (swbz#18822) -:100644 100644 88bf4ae 5493c2a M glibc-rh1315108.patch -:100644 100644 06af9d6 84766e9 M glibc.spec -:100644 100644 049443a f504dce M sources +:100644 100644 88bf4aef 5493c2a2 M glibc-rh1315108.patch +:100644 100644 06af9d67 84766e96 M glibc.spec +:100644 100644 049443a7 f504dce6 M sources commit edbe539debc99effb4b66cdbcbc0b0a2ba9a8667 Author: Florian Weimer @@ -18107,8 +18227,8 @@ CommitDate: Sun Oct 1 17:52:54 2017 +0200 Rotate RPM changelog -:100644 100644 f35a49d f39f56e M ChangeLog.old -:100644 100644 5cbe425 06af9d6 M glibc.spec +:100644 100644 f35a49d5 f39f56eb M ChangeLog.old +:100644 100644 5cbe425c 06af9d67 M glibc.spec commit f7f03039dde77cfa9a88aacf088444a3191beb9e Author: Florian Weimer @@ -18118,7 +18238,7 @@ CommitDate: Sun Oct 1 17:52:10 2017 +0200 Fix typo in changelog -:100644 100644 94c2a37 5cbe425 M glibc.spec +:100644 100644 94c2a376 5cbe425c M glibc.spec commit d61c107a04e592302939ed97ab5519088f0e3ed3 Author: Florian Weimer @@ -18162,10 +18282,10 @@ CommitDate: Sat Sep 30 09:04:21 2017 +0200 - Add miq_NI locale for Miskito (swbz#20498) - Fix bits/math-finite.h exp10 condition (swbz#22082) -:100644 100644 821f3ca 8476f26 M SUPPORTED -:100644 100644 4627157 88bf4ae M glibc-rh1315108.patch -:100644 100644 844a432 94c2a37 M glibc.spec -:100644 100644 3f42a24 049443a M sources +:100644 100644 821f3cab 8476f268 M SUPPORTED +:100644 100644 46271576 88bf4aef M glibc-rh1315108.patch +:100644 100644 844a4323 94c2a376 M glibc.spec +:100644 100644 3f42a249 049443a7 M sources commit 253d1d9c66080f51b68abe805ebedacaf51bc085 Author: Florian Weimer @@ -18175,7 +18295,7 @@ CommitDate: Thu Sep 14 17:41:57 2017 +0200 Fix accidentially inserted typo -:100644 100644 146b8ab 844a432 M glibc.spec +:100644 100644 146b8abf 844a4323 M glibc.spec commit 8ca6f66f209db512ea16a98c6b8d5a05d8e17f04 Author: Florian Weimer @@ -18185,7 +18305,7 @@ CommitDate: Mon Sep 4 20:53:35 2017 +0200 Upstream removed BUGS and CONFORMANCE files -:100644 100644 d8b5a73 146b8ab M glibc.spec +:100644 100644 d8b5a735 146b8abf M glibc.spec commit 0e45e4de586c77c9e0bcf692f0d80186957c1e69 Author: Florian Weimer @@ -18201,8 +18321,8 @@ CommitDate: Mon Sep 4 19:49:35 2017 +0200 - Obsolete pow10 functions - math.h: Warn about an already-defined log macro -:100644 100644 0037398 d8b5a73 M glibc.spec -:100644 100644 c5585b0 3f42a24 M sources +:100644 100644 00373983 d8b5a735 M glibc.spec +:100644 100644 c5585b01 3f42a249 M sources commit e79ddddf678e4b4ca0a7bc23aeb574d64ef02093 Author: Florian Weimer @@ -18212,7 +18332,7 @@ CommitDate: Mon Sep 4 19:49:35 2017 +0200 Do not patch ChangeLog in glibc-fedora-locarchive.patch -:100644 100644 9a702af 91ac661 M glibc-fedora-locarchive.patch +:100644 100644 9a702af5 91ac6614 M glibc-fedora-locarchive.patch commit 21cf167acc7cb3cc75b5a62e663dc7002362eaa8 Author: Florian Weimer @@ -18222,7 +18342,7 @@ CommitDate: Fri Sep 1 14:07:30 2017 +0200 Build glibc with -O2 -:100644 100644 657586f 0037398 M glibc.spec +:100644 100644 657586f7 00373983 M glibc.spec commit 284746122d078a440e36327ebcb470421d790ebf Author: Florian Weimer @@ -18240,8 +18360,8 @@ CommitDate: Fri Sep 1 10:30:18 2017 +0200 - Place $(elf-objpfx)sofini.os last (swbz#22051) - Various locale fixes (swbz#15332, swbz#22044) -:100644 100644 7cd147e 657586f M glibc.spec -:100644 100644 8740e31 c5585b0 M sources +:100644 100644 7cd147eb 657586f7 M glibc.spec +:100644 100644 8740e315 c5585b01 M sources commit b45bb052630767142d649f26693be4267aa5b62c Author: Florian Weimer @@ -18263,10 +18383,10 @@ CommitDate: Wed Aug 30 14:12:45 2017 +0200 - Fix bits/math-finite.h _MSUF_ expansion namespace (swbz#22028) - Provide a C++ version of iszero that does not use __MATH_TG (swbz#21930) -:100644 100644 ec2ec2d 821f3ca M SUPPORTED -:100644 000000 9fe22aa 0000000 D glibc-rh952799.patch -:100644 100644 1a87185 7cd147e M glibc.spec -:100644 100644 0f7eff9 8740e31 M sources +:100644 100644 ec2ec2d2 821f3cab M SUPPORTED +:100644 000000 9fe22aac 00000000 D glibc-rh952799.patch +:100644 100644 1a871854 7cd147eb M glibc.spec +:100644 100644 0f7eff9d 8740e315 M sources commit 05146e37a4ce4efe1a74312d16226b9088678089 Author: Mark Wielaard @@ -18276,7 +18396,7 @@ CommitDate: Wed Aug 30 14:02:18 2017 +0200 Run valgrind check with --error-exitcode=1. Fix valgrind BuildRequires. -:100644 100644 13d6108 1a87185 M glibc.spec +:100644 100644 13d61082 1a871854 M glibc.spec commit 76dd91f1175e3ab262096773cba9c6128f1f39a6 Author: Florian Weimer @@ -18288,8 +18408,8 @@ CommitDate: Tue Aug 29 12:48:36 2017 +0200 It has since been obsoleted by multiple mass rebuilds. -:100644 000000 c1af7fa 0000000 D glibc-rh1009145.patch -:100644 100644 3d15644 13d6108 M glibc.spec +:100644 000000 c1af7fa0 00000000 D glibc-rh1009145.patch +:100644 100644 3d15644e 13d61082 M glibc.spec commit 7df3e02388840deb495f08ef7dcee02974685323 Author: Florian Weimer @@ -18299,7 +18419,7 @@ CommitDate: Mon Aug 28 13:15:27 2017 +0200 Include misc/tst-syscall-list.out in the build log -:100644 100644 5534349 3d15644 M glibc.spec +:100644 100644 55343493 3d15644e M glibc.spec commit d0c57f678ab7a7cded9450323fd9fbe81e5fa898 Author: Florian Weimer @@ -18311,8 +18431,8 @@ CommitDate: Mon Aug 28 12:12:15 2017 +0200 Upstream commit: 2dba5ce7b8115d6a2789bf279892263621088e74 -:100644 100644 964b4fd 5534349 M glibc.spec -:100644 100644 65a3cab 0f7eff9 M sources +:100644 100644 964b4fdf 55343493 M glibc.spec +:100644 100644 65a3cabe 0f7eff9d M sources commit a6b9bec157bee799195be22c2f7899532dcc3bf5 Author: Florian Weimer @@ -18330,8 +18450,8 @@ CommitDate: Mon Aug 28 12:07:38 2017 +0200 malloc: Avoid optimizer warning with GCC 7 and -O3 -:100644 000000 72e434b 0000000 D glibc-rh1470060.patch -:100644 100644 2860927 964b4fd M glibc.spec +:100644 000000 72e434b1 00000000 D glibc-rh1470060.patch +:100644 100644 28609279 964b4fdf M glibc.spec commit beff5c232694aef4f14ffe907fe263e3982df3b5 Author: Florian Weimer @@ -18343,9 +18463,9 @@ CommitDate: Mon Aug 28 12:05:33 2017 +0200 Applied upstream. -:100644 000000 019d107 0000000 D glibc-rh1484729-syscall-names.patch -:100644 000000 c96e1a1 0000000 D glibc-rh1484729.patch -:100644 100644 037a22c 2860927 M glibc.spec +:100644 000000 019d107a 00000000 D glibc-rh1484729-syscall-names.patch +:100644 000000 c96e1a1e 00000000 D glibc-rh1484729.patch +:100644 100644 037a22c8 28609279 M glibc.spec commit 238627a99eb6cde25a84ad22dfe8c0107af46325 Author: Florian Weimer @@ -18359,8 +18479,8 @@ CommitDate: Mon Aug 28 12:05:08 2017 +0200 output file, so the multi-arch conflict no longer happens, and the Makefile tweak is not needed anymore. -:100644 000000 54fae8b 0000000 D glibc-rh825061.patch -:100644 100644 1e23c03 037a22c M glibc.spec +:100644 000000 54fae8b3 00000000 D glibc-rh825061.patch +:100644 100644 1e23c03d 037a22c8 M glibc.spec commit 6a6f54375a090ccdc68e6aa9e82b514303403aea Author: Florian Weimer @@ -18375,8 +18495,8 @@ CommitDate: Fri Aug 25 11:39:53 2017 +0200 - string/stratcliff.c: Replace int with size_t (swbz#21982) - Fix tgmath.h handling of complex integers (swbz#21684) -:100644 100644 b53b790 1e23c03 M glibc.spec -:100644 100644 375c390 65a3cab M sources +:100644 100644 b53b7902 1e23c03d M glibc.spec +:100644 100644 375c390f 65a3cabe M sources commit a60d22cda652c5a5258d40dc7d22cce9219f8baa Author: Florian Weimer @@ -18389,8 +18509,8 @@ CommitDate: Fri Aug 25 11:36:23 2017 +0200 This is no longer necessary because we do not build with -O3 anymore. Upstream has a proper fix now, too. -:100644 000000 694df51 0000000 D glibc-gcc-strict-overflow.patch -:100644 100644 b94e9e0 b53b790 M glibc.spec +:100644 000000 694df517 00000000 D glibc-gcc-strict-overflow.patch +:100644 100644 b94e9e01 b53b7902 M glibc.spec commit 0ab5fbb2e465c15715d51247cb76945cfa04fcff Author: Florian Weimer @@ -18400,8 +18520,8 @@ CommitDate: Fri Aug 25 11:28:44 2017 +0200 Update system call list to Linux 4.12 (#1484729) -:100644 100644 ffd6313 019d107 M glibc-rh1484729-syscall-names.patch -:100644 100644 42b7483 c96e1a1 M glibc-rh1484729.patch +:100644 100644 ffd6313f 019d107a M glibc-rh1484729-syscall-names.patch +:100644 100644 42b7483c c96e1a1e M glibc-rh1484729.patch commit 2f246edc9da1cf62edf796d79a7335768a1d4837 Author: Florian Weimer @@ -18411,8 +18531,8 @@ CommitDate: Thu Aug 24 16:51:08 2017 +0200 Drop glibc-fedora-include-bits-ldbl.patch (#1482105) -:100644 000000 1e5d763 0000000 D glibc-fedora-include-bits-ldbl.patch -:100644 100644 890e451 b94e9e0 M glibc.spec +:100644 000000 1e5d763b 00000000 D glibc-fedora-include-bits-ldbl.patch +:100644 100644 890e4516 b94e9e01 M glibc.spec commit 5bc208c4f5f60b4d1f3bc3610f9ab61175c62402 Author: Florian Weimer @@ -18422,9 +18542,9 @@ CommitDate: Thu Aug 24 16:49:18 2017 +0200 Use an architecture-independent system call list (#1484729) -:000000 100644 0000000 ffd6313 A glibc-rh1484729-syscall-names.patch -:000000 100644 0000000 42b7483 A glibc-rh1484729.patch -:100644 100644 8180b75 890e451 M glibc.spec +:000000 100644 00000000 ffd6313f A glibc-rh1484729-syscall-names.patch +:000000 100644 00000000 42b7483c A glibc-rh1484729.patch +:100644 100644 8180b75a 890e4516 M glibc.spec commit a4f378196ece15f66c8b0dda5601b069d97c9046 Author: Florian Weimer @@ -18440,8 +18560,8 @@ CommitDate: Thu Aug 24 11:17:17 2017 +0200 We compile all of glibc with -fno-asynchronous-unwind-tables, so we can drop glibc-fedora-ppc-unwind.patch. -:100644 000000 0a808ec 0000000 D glibc-fedora-ppc-unwind.patch -:100644 100644 5a53112 8180b75 M glibc.spec +:100644 000000 0a808ec7 00000000 D glibc-fedora-ppc-unwind.patch +:100644 100644 5a53112c 8180b75a M glibc.spec commit eb3d3880c8e0b5c7207c5464fafe3b33a1c3ad74 Author: Florian Weimer @@ -18453,8 +18573,8 @@ CommitDate: Tue Aug 22 08:19:09 2017 +0200 Upstream commit: 80f91666fed71fa3dd5eb5618739147cc731bc89 -:100644 100644 8ec2007 5a53112 M glibc.spec -:100644 100644 bb252ff 375c390 M sources +:100644 100644 8ec20072 5a53112c M glibc.spec +:100644 100644 bb252fff 375c390f M sources commit c6d0720817c50647356e012c1e10a87a8a0b1223 Author: Florian Weimer @@ -18468,8 +18588,8 @@ CommitDate: Mon Aug 21 22:31:26 2017 +0200 - Obsolete matherr, _LIB_VERSION, libieee.a. -:100644 100644 05936c6 8ec2007 M glibc.spec -:100644 100644 d49ce35 bb252ff M sources +:100644 100644 05936c69 8ec20072 M glibc.spec +:100644 100644 d49ce350 bb252fff M sources commit 976a6ca3e4023acbcca7a7aad6bd3b2f6f8d6711 Author: Florian Weimer @@ -18481,8 +18601,8 @@ CommitDate: Mon Aug 21 19:54:40 2017 +0200 Upstream commit: 4504783c0f65b7074204c6126c6255ed89d6594e -:100644 100644 5144a6c 05936c6 M glibc.spec -:100644 100644 1f6d7a0 d49ce35 M sources +:100644 100644 5144a6cb 05936c69 M glibc.spec +:100644 100644 1f6d7a06 d49ce350 M sources commit 8c898cdc110ac9a50cb5eaeae5f4a51b5ee886b0 Author: Florian Weimer @@ -18496,9 +18616,9 @@ CommitDate: Mon Aug 21 16:44:07 2017 +0200 - assert: Support types without operator== (int) (#1483005) -:100644 100644 f6430a8 f0ac3aa M glibc-rh1315476-2.patch -:100644 100644 9449ea0 5144a6c M glibc.spec -:100644 100644 5f22817 1f6d7a0 M sources +:100644 100644 f6430a85 f0ac3aa8 M glibc-rh1315476-2.patch +:100644 100644 9449ea04 5144a6cb M glibc.spec +:100644 100644 5f228172 1f6d7a06 M sources commit 051a34bb833ed94b6aa2a2d956ea6a2e67eee854 Author: Florian Weimer @@ -18518,9 +18638,9 @@ CommitDate: Mon Aug 21 14:17:58 2017 +0200 - x86-64: Optimize e_expf with FMA (swbz#21912) - Adjust glibc-rh827510.patch. -:100644 100644 f5f024c 7fd3e99 M glibc-rh827510.patch -:100644 100644 e794cc7 9449ea0 M glibc.spec -:100644 100644 cb50117 5f22817 M sources +:100644 100644 f5f024c5 7fd3e99a M glibc-rh827510.patch +:100644 100644 e794cc74 9449ea04 M glibc.spec +:100644 100644 cb501172 5f228172 M sources commit 08d81d73306dbda27f13ebd32919e5ddc6de8b0a Author: Carlos O'Donell @@ -18530,7 +18650,7 @@ CommitDate: Thu Aug 17 14:17:47 2017 -0400 Fix glibc.spec file comment with %%install. -:100644 100644 9ab5799 e794cc7 M glibc.spec +:100644 100644 9ab57993 e794cc74 M glibc.spec commit c6e992763d9bc1bd5a46499c08bb8342ef3a25b6 Author: Tomasz Kłoczko @@ -18544,7 +18664,7 @@ CommitDate: Thu Aug 17 14:16:03 2017 -0400 remove the buildroot in %install, all per Fedora Packaging Guidelines (#1476839) -:100644 100644 ecd6eed 9ab5799 M glibc.spec +:100644 100644 ecd6eeda 9ab57993 M glibc.spec commit 66a1c9c9cb0f3434ea826f43a26dbd93dc797544 Author: Florian Weimer @@ -18581,9 +18701,9 @@ CommitDate: Wed Aug 16 17:18:35 2017 +0200 - x86-64: Use _dl_runtime_resolve_opt only with AVX512F (swbz#21871) - x86: Remove __memset_zero_constant_len_parameter (swbz#21790) -:100644 100644 8f427ce ec2ec2d M SUPPORTED -:100644 100644 6fb6f87 ecd6eed M glibc.spec -:100644 100644 6b6591f cb50117 M sources +:100644 100644 8f427ce9 ec2ec2d2 M SUPPORTED +:100644 100644 6fb6f87f ecd6eeda M glibc.spec +:100644 100644 6b6591f1 cb501172 M sources commit 27727bd4a935e6cf5adaeb083ce732d2d8042663 Author: Florian Weimer @@ -18593,8 +18713,8 @@ CommitDate: Wed Aug 16 16:12:31 2017 +0200 Drop glibc-arm-hardfloat-3.patch and associated hack -:100644 000000 ff4997e 0000000 D glibc-arm-hardfloat-3.patch -:100644 100644 541a0ee 6fb6f87 M glibc.spec +:100644 000000 ff4997e5 00000000 D glibc-arm-hardfloat-3.patch +:100644 100644 541a0ee4 6fb6f87f M glibc.spec commit 5ca19238f5a7edf20f8e5f7b78d982a36cf61626 Author: Florian Weimer @@ -18604,8 +18724,8 @@ CommitDate: Wed Aug 16 16:01:49 2017 +0200 Drop glibc-fedora-ldd.patch (applied to upstream master) -:100644 000000 51aec73 0000000 D glibc-fedora-ldd.patch -:100644 100644 622a60a 541a0ee M glibc.spec +:100644 000000 51aec739 00000000 D glibc-fedora-ldd.patch +:100644 100644 622a60ad 541a0ee4 M glibc.spec commit 6cb5e06b89b4ab987a3af9f1bb58630025eaf88c Author: Florian Weimer @@ -18615,8 +18735,8 @@ CommitDate: Wed Aug 16 15:50:45 2017 +0200 Drop glibc-fedora-i386-tls-direct-seg-refs.patch -:100644 000000 80c0f0d 0000000 D glibc-fedora-i386-tls-direct-seg-refs.patch -:100644 100644 2f96f44 622a60a M glibc.spec +:100644 000000 80c0f0db 00000000 D glibc-fedora-i386-tls-direct-seg-refs.patch +:100644 100644 2f96f440 622a60ad M glibc.spec commit 2620469c94c9e3b0f154f7649c5dda7930030233 Author: Florian Weimer @@ -18626,7 +18746,7 @@ CommitDate: Wed Aug 16 13:45:31 2017 +0200 glibc-2.26-2.fc28: Packaging adjustments -:100644 100644 403db62 2f96f44 M glibc.spec +:100644 100644 403db628 2f96f440 M glibc.spec commit fce95492bdea68d754c84914a459bf3af93aa4dd Author: Florian Weimer @@ -18640,7 +18760,7 @@ CommitDate: Wed Aug 16 13:30:01 2017 +0200 script directly, but do not quote $find_debuginfo_args, to splice its contents into the argument list. -:100644 100644 4da1088 403db62 M glibc.spec +:100644 100644 4da10884 403db628 M glibc.spec commit 9df65054b7290db4972a1ea44564a1d0623774cc Author: Florian Weimer @@ -18657,7 +18777,7 @@ CommitDate: Wed Aug 16 13:17:21 2017 +0200 Instead, use %language_list directly. This is compatible with earlier RPM versions, too. -:100644 100644 0aaf3d2 4da1088 M glibc.spec +:100644 100644 0aaf3d21 4da10884 M glibc.spec commit d8b4ab633b5449ab5198c89592cc3b38af9a3410 Author: Florian Weimer @@ -18667,7 +18787,7 @@ CommitDate: Wed Aug 16 12:57:22 2017 +0200 Remove unused require_langpacks macro -:100644 100644 de7faab 0aaf3d2 M glibc.spec +:100644 100644 de7faabb 0aaf3d21 M glibc.spec commit 6e6bd41f5e1d60eaef49d2af31bd5b816e4ac86f Author: Florian Weimer @@ -18677,8 +18797,8 @@ CommitDate: Wed Aug 16 12:03:03 2017 +0200 Remove nosegneg 32-bit Xen PV support libraries (#1482027) -:100644 100644 3fafdf6 de7faab M glibc.spec -:100644 100644 290489b e5b72a0 M glibc_post_upgrade.c +:100644 100644 3fafdf60 de7faabb M glibc.spec +:100644 100644 290489b6 e5b72a01 M glibc_post_upgrade.c commit ad9d2e17df198a881d4e0f1ef4d63c41caf456fe Author: Florian Weimer @@ -18688,7 +18808,7 @@ CommitDate: Wed Aug 16 11:14:53 2017 +0200 Disable multi-arch (IFUNC string functions) on i686 (#1471427) -:100644 100644 6f2f647 3fafdf6 M glibc.spec +:100644 100644 6f2f6473 3fafdf60 M glibc.spec commit fdd439f8b755b698de0c65c3616abe2d29633925 Author: Florian Weimer @@ -18701,7 +18821,7 @@ CommitDate: Wed Aug 16 11:12:36 2017 +0200 Drop binutils run-time conflict. If we still want those, they should be on glibc-devel, not the main package. -:100644 100644 d6201e7 6f2f647 M glibc.spec +:100644 100644 d6201e74 6f2f6473 M glibc.spec commit 8742b0f94950f8e5d3a735be8b5cdd5140a53763 Author: Carlos O'Donell @@ -18718,9 +18838,9 @@ CommitDate: Thu Aug 3 09:47:24 2017 -0400 - Update to released 2.26 branch. - getaddrinfo: Release resolver context on error in gethosts (swbz#21885) -:100644 100644 1755814 8f427ce M SUPPORTED -:100644 100644 be24ccb d6201e7 M glibc.spec -:100644 100644 0c6f45a 6b6591f M sources +:100644 100644 17558143 8f427ce9 M SUPPORTED +:100644 100644 be24ccbe d6201e74 M glibc.spec +:100644 100644 0c6f45a6 6b6591f1 M sources commit 4786e3be951ae64cfdc4f12be5687b4c5312b27b Author: Fedora Release Engineering @@ -18730,7 +18850,7 @@ CommitDate: Wed Aug 2 21:45:53 2017 +0000 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild -:100644 100644 edff097 be24ccb M glibc.spec +:100644 100644 edff0977 be24ccbe M glibc.spec commit 8b0d66e92b9f5a11959e22eda9ca5a7e5ddabadc Author: Florian Weimer @@ -18742,8 +18862,8 @@ CommitDate: Sat Jul 29 08:18:06 2017 +0200 Upstream commit: 5920a4a624b1f4db310d1c44997b640e2a4653e5 -:100644 100644 b17a06f edff097 M glibc.spec -:100644 100644 14fbd71 0c6f45a M sources +:100644 100644 b17a06f0 edff0977 M glibc.spec +:100644 100644 14fbd71b 0c6f45a6 M sources commit 7e4694d522cb95a42594fdfd75140a96792292dc Author: Florian Weimer @@ -18755,9 +18875,9 @@ CommitDate: Fri Jul 28 21:00:29 2017 +0200 Upstream commit: d95fcb2df478efbf4f8537ba898374043ac4561f -:100644 100644 e1a2b41 1755814 M SUPPORTED -:100644 100644 41c1dfb b17a06f M glibc.spec -:100644 100644 8eaf07c 14fbd71 M sources +:100644 100644 e1a2b418 17558143 M SUPPORTED +:100644 100644 41c1dfba b17a06f0 M glibc.spec +:100644 100644 8eaf07cd 14fbd71b M sources commit d04b9b784045892e94292d0b749e4246cb2465d3 Author: Carlos O'Donell @@ -18767,7 +18887,7 @@ CommitDate: Thu Jul 27 12:41:04 2017 -0400 Fix NEVRA changes caused by mass rebuild scripts. -:100644 100644 dac8795 41c1dfb M glibc.spec +:100644 100644 dac87951 41c1dfba M glibc.spec commit 887799236c808fea71d4900b275cdb8b699b5a71 Author: Carlos O'Donell @@ -18779,7 +18899,7 @@ CommitDate: Thu Jul 27 12:35:22 2017 -0400 - Adjust to new rpm debuginfo generation (#1475009). -:100644 100644 7fe8bae dac8795 M glibc.spec +:100644 100644 7fe8baec dac87951 M glibc.spec commit f271045ada1c9057d49d9d881f539689b5719a02 Author: Fedora Release Engineering @@ -18789,7 +18909,7 @@ CommitDate: Wed Jul 26 10:20:27 2017 +0000 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild -:100644 100644 5392438 7fe8bae M glibc.spec +:100644 100644 53924387 7fe8baec M glibc.spec commit 37c3363a24efb70a9ee41b18f4bcc51222c0508d Author: Florian Weimer @@ -18803,8 +18923,8 @@ CommitDate: Wed Jul 19 09:05:38 2017 +0200 - aarch64: Fix out of bound array access in _dl_hwcap_string -:100644 100644 efa17f9 5392438 M glibc.spec -:100644 100644 97c44be 8eaf07c M sources +:100644 100644 efa17f97 53924387 M glibc.spec +:100644 100644 97c44bee 8eaf07cd M sources commit e0954fe0fe8f4dd99bd5f7864c90d691f9e3354c Author: Florian Weimer @@ -18816,7 +18936,7 @@ CommitDate: Wed Jul 19 09:01:48 2017 +0200 This reverts commit c5379cd82945e63c24d7294511949d9a15a10a82. -:100644 100644 b4def9c efa17f9 M glibc.spec +:100644 100644 b4def9ce efa17f97 M glibc.spec commit c5379cd82945e63c24d7294511949d9a15a10a82 Author: Florian Weimer @@ -18826,7 +18946,7 @@ CommitDate: Tue Jul 18 08:22:30 2017 +0200 Rebuild with new NVR -:100644 100644 efa17f9 b4def9c M glibc.spec +:100644 100644 efa17f97 b4def9ce M glibc.spec commit 6702ca3c64d256a6870f9266522b921c68c8b29a Author: Florian Weimer @@ -18842,9 +18962,9 @@ CommitDate: Mon Jul 17 23:07:00 2017 +0200 - Fix pointer alignment in NSS group merge result construction (#1471985) - Various locale fixes -:100644 000000 d9709d6 0000000 D glibc-rh1467518.patch -:100644 100644 4657bfd efa17f9 M glibc.spec -:100644 100644 6fb0ef7 97c44be M sources +:100644 000000 d9709d68 00000000 D glibc-rh1467518.patch +:100644 100644 4657bfd3 efa17f97 M glibc.spec +:100644 100644 6fb0ef7f 97c44bee M sources commit 705ca30d3e53c479a621475ef833a4507fe02326 Author: Carlos O'Donell @@ -18872,11 +18992,11 @@ CommitDate: Fri Jul 14 21:36:54 2017 -0400 - armv7hl: Drop 32-bit ARM build fix, already in upstream master. - s390x: Apply glibc fix again, removing PTRACE_GETREGS etc. (#1469536). -:100644 100644 76ed82e e1a2b41 M SUPPORTED -:100644 000000 241e47f 0000000 D glibc-fix-arm32.patch -:100644 000000 72e429f 0000000 D glibc-rh1469536.patch -:100644 100644 47b992c 4657bfd M glibc.spec -:100644 100644 f68dbfc 6fb0ef7 M sources +:100644 100644 76ed82e9 e1a2b418 M SUPPORTED +:100644 000000 241e47fb 00000000 D glibc-fix-arm32.patch +:100644 000000 72e429f5 00000000 D glibc-rh1469536.patch +:100644 100644 47b992ce 4657bfd3 M glibc.spec +:100644 100644 f68dbfcc 6fb0ef7f M sources commit 44f4cf77e9e9b379e88744ad8f025175c9e16538 Author: Carlos O'Donell @@ -18886,8 +19006,8 @@ CommitDate: Wed Jul 12 19:51:11 2017 -0400 Fix 32-bit ARM builds in presence of new binutils. -:000000 100644 0000000 241e47f A glibc-fix-arm32.patch -:100644 100644 b2bfef0 47b992c M glibc.spec +:000000 100644 00000000 241e47fb A glibc-fix-arm32.patch +:100644 100644 b2bfef08 47b992ce M glibc.spec commit 32049f182fa8a353e9c3d7ca6d8ca081e7298723 Author: Carlos O'Donell @@ -18900,8 +19020,8 @@ CommitDate: Wed Jul 12 19:40:05 2017 -0400 Fix IFUNC crash in early startup for ppc64le static binaries (#1467518). Enable building with BIND_NOW on ppc64le (#1467518). -:000000 100644 0000000 d9709d6 A glibc-rh1467518.patch -:100644 100644 28ad069 b2bfef0 M glibc.spec +:000000 100644 00000000 d9709d68 A glibc-rh1467518.patch +:100644 100644 28ad0693 b2bfef08 M glibc.spec commit 4e3d1d3a4771f55432a3a5cfeaa368352854e550 Author: Florian Weimer @@ -18911,8 +19031,8 @@ CommitDate: Wed Jul 12 14:00:58 2017 +0200 malloc: Tell GCC optimizers about MAX_FAST_SIZE in _int_malloc (#1470060) -:000000 100644 0000000 72e434b A glibc-rh1470060.patch -:100644 100644 12cb025 28ad069 M glibc.spec +:000000 100644 00000000 72e434b1 A glibc-rh1470060.patch +:100644 100644 12cb0251 28ad0693 M glibc.spec commit 419878ed02cd9d191b9b7deb2f2523f5950cf30a Author: Florian Weimer @@ -18945,9 +19065,9 @@ CommitDate: Wed Jul 12 14:00:32 2017 +0200 - Fix full weekday names for the ks_IN@devanagari locale (swbz#21721) - Various fixes to Arabic locales after CLDR import -:100644 100644 29519f9 76ed82e M SUPPORTED -:100644 100644 3d85b87 12cb025 M glibc.spec -:100644 100644 1e39d20 f68dbfc M sources +:100644 100644 29519f99 76ed82e9 M SUPPORTED +:100644 100644 3d85b879 12cb0251 M glibc.spec +:100644 100644 1e39d200 f68dbfcc M sources commit 4caf18bfe4936fc8be66398d8bb81b7dfd13f2b3 Author: Florian Weimer @@ -18959,7 +19079,7 @@ CommitDate: Wed Jul 12 10:15:41 2017 +0200 Removing it from the Makefile is sufficient. This avoids conflicts. -:100644 100644 d1c97a1 72e429f M glibc-rh1469536.patch +:100644 100644 d1c97a1a 72e429f5 M glibc-rh1469536.patch commit d40c9fdc1369d59f30c32e11c2acd47dfecf6d68 Author: Florian Weimer @@ -18969,8 +19089,8 @@ CommitDate: Tue Jul 11 15:03:54 2017 +0200 s390x: Restore PTRACE_GETREGS etc. to get GCC to build (#1469536) -:000000 100644 0000000 d1c97a1 A glibc-rh1469536.patch -:100644 100644 eb31664 3d85b87 M glibc.spec +:000000 100644 00000000 d1c97a1a A glibc-rh1469536.patch +:100644 100644 eb316643 3d85b879 M glibc.spec commit d538c7cc5323fa910f1ce5547aa44945c7dcaca6 Author: Florian Weimer @@ -18980,8 +19100,8 @@ CommitDate: Tue Jul 11 14:52:35 2017 +0200 Reinstantiate stack_t cleanup (#1468904) -:100644 000000 cd7eaee 0000000 D glibc-rh1468904.patch -:100644 100644 7f6ff5f eb31664 M glibc.spec +:100644 000000 cd7eaeee 00000000 D glibc-rh1468904.patch +:100644 100644 7f6ff5f3 eb316643 M glibc.spec commit 4597e723d08655e7c09046d8724a0aabc4577ed1 Author: Florian Weimer @@ -18991,8 +19111,8 @@ CommitDate: Sun Jul 9 19:03:50 2017 +0200 Back out stack_t cleanup (#1468904) -:000000 100644 0000000 cd7eaee A glibc-rh1468904.patch -:100644 100644 5e8486a 7f6ff5f M glibc.spec +:000000 100644 00000000 cd7eaeee A glibc-rh1468904.patch +:100644 100644 5e8486a5 7f6ff5f3 M glibc.spec commit 667333c331f947cd404dbfa63666fd2ce3fe4b19 Author: Florian Weimer @@ -19011,9 +19131,9 @@ CommitDate: Thu Jul 6 14:29:12 2017 +0200 - Single threaded stdio optimization - sysconf: Use conservative default for _SC_NPROCESSORS_ONLN (swbz#21542) -:100644 100644 ba9cdba 29519f9 M SUPPORTED -:100644 100644 20b389c 5e8486a M glibc.spec -:100644 100644 3fe28d1 1e39d20 M sources +:100644 100644 ba9cdba7 29519f99 M SUPPORTED +:100644 100644 20b389cc 5e8486a5 M glibc.spec +:100644 100644 3fe28d1a 1e39d200 M sources commit 84baf402f00a590c430df4d59d0cde8eebbcb1b1 Author: Florian Weimer @@ -19025,8 +19145,8 @@ CommitDate: Tue Jul 4 15:31:23 2017 +0200 Upstream commit: 4446a885f3aeb3a33b95c72bae1f115bed77f0cb -:100644 100644 49b4a2d 20b389c M glibc.spec -:100644 100644 81613bf 3fe28d1 M sources +:100644 100644 49b4a2d2 20b389cc M glibc.spec +:100644 100644 81613bf7 3fe28d1a M sources commit 44e7da869e3f32a7698f860d10e0a78581ad88ee Author: Florian Weimer @@ -19038,8 +19158,8 @@ CommitDate: Tue Jul 4 11:36:06 2017 +0200 Upstream commit: 89f6307c5d270ed4f11cee373031fa9f2222f2b9 -:100644 100644 acbb37d 49b4a2d M glibc.spec -:100644 100644 abeac55 81613bf M sources +:100644 100644 acbb37dd 49b4a2d2 M glibc.spec +:100644 100644 abeac551 81613bf7 M sources commit 8ed873109991ffaa684ea78ea0a98a4af7d51f8a Author: Florian Weimer @@ -19049,7 +19169,7 @@ CommitDate: Tue Jul 4 08:23:12 2017 +0200 Disable building with BIND_NOW on ppc64le (#1467518) -:100644 100644 8bc6371 acbb37d M glibc.spec +:100644 100644 8bc63714 acbb37dd M glibc.spec commit dcf3eeb5c0560da994aae131cf1b754a7fcd0695 Author: Florian Weimer @@ -19074,10 +19194,10 @@ CommitDate: Mon Jul 3 21:49:42 2017 +0200 - Avoid .symver on common symbols (swbz#21666) - inet_pton: Reject IPv6 addresses with many leading zeros (swbz#16637) -:100644 100644 066ac48 b47e23e M glibc-fedora-linux-tcsetattr.patch -:100644 100644 a7b0725 4627157 M glibc-rh1315108.patch -:100644 100644 ec474fa 8bc6371 M glibc.spec -:100644 100644 11f7648 abeac55 M sources +:100644 100644 066ac484 b47e23eb M glibc-fedora-linux-tcsetattr.patch +:100644 100644 a7b07251 46271576 M glibc-rh1315108.patch +:100644 100644 ec474fa5 8bc63714 M glibc.spec +:100644 100644 11f76487 abeac551 M sources commit 093184fecacd83db1bd893f3666318de8924167e Author: Florian Weimer @@ -19089,8 +19209,8 @@ CommitDate: Fri Jun 23 17:43:54 2017 +0200 Upstream commit: 3ec7c02cc3e922b9364dc8cfd1d4546671b91003 -:100644 100644 62d18df ec474fa M glibc.spec -:100644 100644 37122e0 11f7648 M sources +:100644 100644 62d18df8 ec474fa5 M glibc.spec +:100644 100644 37122e0c 11f76487 M sources commit 9a4cee58e47b4da1d111c17c63826b7de49a30fa Author: Florian Weimer @@ -19102,8 +19222,8 @@ CommitDate: Fri Jun 23 13:25:59 2017 +0200 Upstream commit: 12f50337ae80672c393c2317d471d097ad92c492 -:100644 100644 db8cdfb 62d18df M glibc.spec -:100644 100644 0686f94 37122e0 M sources +:100644 100644 db8cdfb4 62d18df8 M glibc.spec +:100644 100644 0686f943 37122e0c M sources commit 2660abb9bbd80929ee740ca8a26d0dbb1251467b Author: Florian Weimer @@ -19113,7 +19233,7 @@ CommitDate: Fri Jun 23 13:10:13 2017 +0200 Reenable valgrind on aarch64 -:100644 100644 53d06fa db8cdfb M glibc.spec +:100644 100644 53d06fa2 db8cdfb4 M glibc.spec commit 9d8ea8c478ba44938b21a4a6f325cde833cb7365 Author: Florian Weimer @@ -19123,7 +19243,7 @@ CommitDate: Thu Jun 22 14:48:21 2017 +0200 Log auxiliary vector during build -:100644 100644 cabc984 53d06fa M glibc.spec +:100644 100644 cabc9849 53d06fa2 M glibc.spec commit aae7c7249ada228dc3f2e49c92b77ccc27b56554 Author: Florian Weimer @@ -19135,8 +19255,8 @@ CommitDate: Thu Jun 22 13:34:40 2017 +0200 Upstream commit: 0a47d031e44f15236bcef8aeba80e737bd013c6f -:100644 100644 8821318 cabc984 M glibc.spec -:100644 100644 ef07fb6 0686f94 M sources +:100644 100644 88213182 cabc9849 M glibc.spec +:100644 100644 ef07fb6d 0686f943 M sources commit 10e4623a27cd3c0a751ec5c8523b272b9c847252 Author: Florian Weimer @@ -19146,7 +19266,7 @@ CommitDate: Thu Jun 22 13:28:12 2017 +0200 Disable valgrind on aarch64 -:100644 100644 4127b10 8821318 M glibc.spec +:100644 100644 4127b10f 88213182 M glibc.spec commit 6e985d0a59880d8481bdf6126dad7214de2b54c9 Author: Florian Weimer @@ -19156,8 +19276,8 @@ CommitDate: Wed Jun 21 20:50:35 2017 +0200 Drop workaround for GCC PR69537 -:100644 000000 9f395d5 0000000 D glibc-gcc-PR69537.patch -:100644 100644 d0ba5bd 4127b10 M glibc.spec +:100644 000000 9f395d53 00000000 D glibc-gcc-PR69537.patch +:100644 100644 d0ba5bda 4127b10f M glibc.spec commit 8a569a02e800c4f498a7535b2d3f8c39a62c6ba3 Author: Florian Weimer @@ -19169,8 +19289,8 @@ CommitDate: Wed Jun 21 20:49:15 2017 +0200 Upstream commit: 9649350d2ee47fae00794d57e2526aa5d67d900e -:100644 100644 8efc343 d0ba5bd M glibc.spec -:100644 100644 96aa44f ef07fb6 M sources +:100644 100644 8efc3431 d0ba5bda M glibc.spec +:100644 100644 96aa44fe ef07fb6d M sources commit 6a3a1d157507e16eeb1955a55e085b4e589c8bb1 Author: Florian Weimer @@ -19180,9 +19300,9 @@ CommitDate: Wed Jun 21 20:38:36 2017 +0200 Drop historic aarch64 TLS patches -:100644 000000 a05d905 0000000 D glibc-aarch64-tls-fixes.patch -:100644 000000 9db69d6 0000000 D glibc-aarch64-workaround-nzcv-clobber-in-tlsdesc.patch -:100644 100644 54c9a79 8efc343 M glibc.spec +:100644 000000 a05d9052 00000000 D glibc-aarch64-tls-fixes.patch +:100644 000000 9db69d61 00000000 D glibc-aarch64-workaround-nzcv-clobber-in-tlsdesc.patch +:100644 100644 54c9a795 8efc3431 M glibc.spec commit fda3e070a760da98fc68f1c0b5cc15281e24cc31 Author: Florian Weimer @@ -19194,8 +19314,8 @@ CommitDate: Wed Jun 21 11:08:15 2017 +0200 Upstream commit: 43e0ac24c836eed627a75ca932eb7e64698407c6 -:100644 100644 6c3f383 54c9a79 M glibc.spec -:100644 100644 d845362 96aa44f M sources +:100644 100644 6c3f3839 54c9a795 M glibc.spec +:100644 100644 d845362f 96aa44fe M sources commit 87bc7c9489336493be410ea4406fd4f6d9807541 Author: Florian Weimer @@ -19236,10 +19356,10 @@ CommitDate: Tue Jun 20 00:18:02 2017 +0200 - posix: Implement preadv2 and pwritev2 - Various float128 and tunables improvements -:100644 000000 60f3524 0000000 D glibc-Disable-buf-NULL-in-login-tst-ptsname.c -:100644 100644 945a955 8d8e857 M glibc-fedora-__libc_multiple_libcs.patch -:100644 100644 703977c 6c3f383 M glibc.spec -:100644 100644 234d04a d845362 M sources +:100644 000000 60f35249 00000000 D glibc-Disable-buf-NULL-in-login-tst-ptsname.c +:100644 100644 945a9551 8d8e857b M glibc-fedora-__libc_multiple_libcs.patch +:100644 100644 703977cb 6c3f3839 M glibc.spec +:100644 100644 234d04a9 d845362f M sources commit f35d7503ab65ec0921929f514a95574b7d735d9b Author: Stephen Gallagher @@ -19249,7 +19369,7 @@ CommitDate: Tue Jun 6 14:42:47 2017 +0200 Reduce libcrypt-nss dependency to 'Suggests:' -:100644 100644 daab049 703977c M glibc.spec +:100644 100644 daab0494 703977cb M glibc.spec commit 7f4621301d1042d0e21c8b21759b013c513ca5a5 Author: Arjun Shankar @@ -19261,8 +19381,8 @@ CommitDate: Wed May 31 16:22:21 2017 +0200 Upstream commit: cfa9bb61cd09c40def96f042a3123ec0093c4ad0 -:100644 100644 d80a961 daab049 M glibc.spec -:100644 100644 a974c5c 234d04a M sources +:100644 100644 d80a961f daab0494 M glibc.spec +:100644 100644 a974c5c6 234d04a9 M sources commit c769a3ef7acc044cd1910b0b6f2a7f4fff93b9d9 Author: Arjun Shankar @@ -19273,8 +19393,8 @@ CommitDate: Wed May 31 14:37:21 2017 +0200 Disable the NULL buffer test in login/tst-ptsname.c. It leads to a build failure during 'make check'. -:000000 100644 0000000 60f3524 A glibc-Disable-buf-NULL-in-login-tst-ptsname.c -:100644 100644 8756477 d80a961 M glibc.spec +:000000 100644 00000000 60f35249 A glibc-Disable-buf-NULL-in-login-tst-ptsname.c +:100644 100644 87564778 d80a961f M glibc.spec commit 4014d6f877473201795c7d95cf3a9a5917716466 Author: Arjun Shankar @@ -19286,10 +19406,10 @@ CommitDate: Tue May 23 14:37:59 2017 +0200 Upstream commit: 231a59ce2c5719d2d77752c21092960e28837b4a -:100644 100644 bc6e6b5 ba9cdba M SUPPORTED -:100644 100644 1a79477 fc87a4a M glibc-fedora-nptl-linklibc.patch -:100644 100644 3c26c2e 8756477 M glibc.spec -:100644 100644 911b3bf a974c5c M sources +:100644 100644 bc6e6b54 ba9cdba7 M SUPPORTED +:100644 100644 1a794772 fc87a4ae M glibc-fedora-nptl-linklibc.patch +:100644 100644 3c26c2ea 87564778 M glibc.spec +:100644 100644 911b3bf2 a974c5c6 M sources commit c2f69955706512aab16f7b8ee881a6cefa3140f3 Author: Carlos O'Donell @@ -19299,7 +19419,7 @@ CommitDate: Tue May 2 13:45:38 2017 -0400 Fix build with --enable-obsolete-nsl. -:100644 100644 ed2843e 3c26c2e M glibc.spec +:100644 100644 ed2843ee 3c26c2ea M glibc.spec commit 056f48952ae4b9dfe3f1e99f3812360f423e3cde Author: Carlos O'Donell @@ -19311,8 +19431,8 @@ CommitDate: Mon May 1 13:23:28 2017 -0400 Upstream commit: 25e39b4229fb365a605dc4c8f5d6426a77bc08a6 -:100644 100644 f798aee ed2843e M glibc.spec -:100644 100644 3cd9664 911b3bf M sources +:100644 100644 f798aee2 ed2843ee M glibc.spec +:100644 100644 3cd9664d 911b3bf2 M sources commit 2999128764dd9b340f6a986709be6509007c316c Author: Florian Weimer @@ -19322,7 +19442,7 @@ CommitDate: Wed Mar 8 10:09:29 2017 +0100 Automatically set glibc_release_url based on glibcrelease -:100644 100644 4abcab9 f798aee M glibc.spec +:100644 100644 4abcab94 f798aee2 M glibc.spec commit 04b4101e8f04942259d6f0720641e49b1b9b02b5 Author: Florian Weimer @@ -19334,9 +19454,9 @@ CommitDate: Thu Mar 2 20:09:14 2017 +0100 Upstream commit: a10e9c4e53fc652b79abf838f7f837589d2c84db -:100644 000000 1c74c22 0000000 D glibc-rh1351108-update-to-unicode-9.0.0.patch -:100644 100644 ba11440 4abcab9 M glibc.spec -:100644 100644 efb2f5b 3cd9664 M sources +:100644 000000 1c74c22a 00000000 D glibc-rh1351108-update-to-unicode-9.0.0.patch +:100644 100644 ba114406 4abcab94 M glibc.spec +:100644 100644 efb2f5bc 3cd9664d M sources commit 305fa9fb579745201f4e44cc24ddb4049ac61721 Author: Jakub Hrozek @@ -19348,8 +19468,8 @@ CommitDate: Wed Mar 1 14:03:09 2017 +0100 Reverse the order of sss and files modules for passwd and group maps -:100644 100644 055a2f2 ba11440 M glibc.spec -:100644 100644 1e2b63d c3d3fb6 M nsswitch.conf +:100644 100644 055a2f2c ba114406 M glibc.spec +:100644 100644 1e2b63d5 c3d3fb65 M nsswitch.conf commit 5bc3170c40dc0f7bb384b9532e2b4cd10f451b83 Author: Florian Weimer @@ -19361,8 +19481,8 @@ CommitDate: Tue Feb 28 17:43:41 2017 +0100 Upstream commit: 93cf93e06ce123439e41d3d62790601c313134cb -:100644 100644 161b54a 055a2f2 M glibc.spec -:100644 100644 662a081 efb2f5b M sources +:100644 100644 161b54a2 055a2f2c M glibc.spec +:100644 100644 662a081d efb2f5bc M sources commit aa4db12ee0fdab90446eb9676800c5f6399c0813 Author: Carlos O'Donell @@ -19379,8 +19499,8 @@ CommitDate: Wed Feb 8 21:22:46 2017 -0500 guarantees provided by upstream. Please do not rebase rawhide against glibc master. -:100644 100644 1052d75 161b54a M glibc.spec -:100644 100644 2a32e67 662a081 M sources +:100644 100644 1052d759 161b54a2 M glibc.spec +:100644 100644 2a32e675 662a081d M sources commit ad7685d113501c2699a61d3e4930761753dca8d8 Author: Carlos O'Donell @@ -19392,8 +19512,8 @@ CommitDate: Wed Feb 8 16:17:57 2017 -0500 - Fix builds with GCC 7.0. -:000000 100644 0000000 694df51 A glibc-gcc-strict-overflow.patch -:100644 100644 6ba6503 1052d75 M glibc.spec +:000000 100644 00000000 694df517 A glibc-gcc-strict-overflow.patch +:100644 100644 6ba6503c 1052d759 M glibc.spec commit 7061f7271540b413b1ba64a9d841320efe00a025 Author: Carlos O'Donell @@ -19405,7 +19525,7 @@ CommitDate: Thu Feb 2 09:53:07 2017 -0500 - Optimize IBM z System builds for zEC12. -:100644 100644 55c8951 6ba6503 M glibc.spec +:100644 100644 55c8951f 6ba6503c M glibc.spec commit 7463f6a220513718aa7b3a45ae3f0dc5befc57f7 Author: Florian Weimer @@ -19417,8 +19537,8 @@ CommitDate: Wed Jan 25 16:46:01 2017 +0100 Reported by Stefan Liebler. -:100644 100644 ffa449e 44333d7 M glibc-rh1324623.patch -:100644 100644 9923db6 55c8951 M glibc.spec +:100644 100644 ffa449e9 44333d7d M glibc-rh1324623.patch +:100644 100644 9923db63 55c8951f M glibc.spec commit 574cbae985f5108c55db826f261788be1bb0dd83 Author: Florian Weimer @@ -19430,8 +19550,8 @@ CommitDate: Wed Jan 25 16:39:15 2017 +0100 Upstream commit: 5653ab12b4ae15b32d41de7c56b2a4626cd0437a -:100644 100644 4225ada 9923db6 M glibc.spec -:100644 100644 4ed3104 2a32e67 M sources +:100644 100644 4225ada4 9923db63 M glibc.spec +:100644 100644 4ed31043 2a32e675 M sources commit edb61568806feada71a103fff633c2f58c422af2 Author: Carlos O'Donell @@ -19443,10 +19563,10 @@ CommitDate: Thu Jan 12 22:17:58 2017 -0500 Upstream commit: 468e525c81a4af10f2e613289b6ff7c950773a9e -:100644 000000 8d19a89 0000000 D glibc-disable-rwlock-elision.patch -:100644 000000 05232dc 0000000 D glibc-new-rwlock.patch -:100644 100644 00cd344 4225ada M glibc.spec -:100644 100644 39f3416 4ed3104 M sources +:100644 000000 8d19a890 00000000 D glibc-disable-rwlock-elision.patch +:100644 000000 05232dcd 00000000 D glibc-new-rwlock.patch +:100644 100644 00cd3446 4225ada4 M glibc.spec +:100644 100644 39f34162 4ed31043 M sources commit 41c1b49335ae63fb8c1d232c4b173759df24c016 Author: Florian Weimer @@ -19456,7 +19576,7 @@ CommitDate: Mon Jan 2 13:32:40 2017 +0100 quilt-patch.sh: Support new "sources" file format -:100755 100755 983a75d eaf24d5 M quilt-patch.sh +:100755 100755 983a75d4 eaf24d5d M quilt-patch.sh commit c659285752f5f898ab53ce34404b192fb75d7bd6 Author: Florian Weimer @@ -19468,12 +19588,12 @@ CommitDate: Mon Jan 2 13:32:25 2017 +0100 Upstream commit: 73dfd088936b9237599e4ab737c7ae2ea7d710e1 -:100644 000000 2c07985 0000000 D glibc-fedora-disable-printers.patch -:100644 100644 bc7b832 a7b0725 M glibc-rh1315108.patch -:100644 100644 305f30e f6430a8 M glibc-rh1315476-2.patch -:100644 000000 af7adf3 0000000 D glibc-swbz13165.patch -:100644 100644 ce10ccd 00cd344 M glibc.spec -:100644 100644 f3ef878 39f3416 M sources +:100644 000000 2c079852 00000000 D glibc-fedora-disable-printers.patch +:100644 100644 bc7b8321 a7b07251 M glibc-rh1315108.patch +:100644 100644 305f30e4 f6430a85 M glibc-rh1315476-2.patch +:100644 000000 af7adf35 00000000 D glibc-swbz13165.patch +:100644 100644 ce10ccd3 00cd3446 M glibc.spec +:100644 100644 f3ef878f 39f34162 M sources commit e9dcd51d7741582a38918006e0ba05b2619608a7 Author: Florian Weimer @@ -19483,12 +19603,12 @@ CommitDate: Mon Jan 2 12:26:05 2017 +0100 Remove patches which were workarounds for GCC 5 bugs -:100644 000000 c5a704e 0000000 D glibc-bug-regex-gcc5.patch -:100644 000000 3810a6e 0000000 D glibc-dns-host-gcc5.patch -:100644 000000 92fa90f 0000000 D glibc-gethnamaddr-gcc5.patch -:100644 000000 78e7fd4 0000000 D glibc-ld-ctype-gcc5.patch -:100644 000000 4f5ae83 0000000 D glibc-res-hconf-gcc5.patch -:100644 100644 634ac1f ce10ccd M glibc.spec +:100644 000000 c5a704e2 00000000 D glibc-bug-regex-gcc5.patch +:100644 000000 3810a6e1 00000000 D glibc-dns-host-gcc5.patch +:100644 000000 92fa90f2 00000000 D glibc-gethnamaddr-gcc5.patch +:100644 000000 78e7fd4f 00000000 D glibc-ld-ctype-gcc5.patch +:100644 000000 4f5ae83b 00000000 D glibc-res-hconf-gcc5.patch +:100644 100644 634ac1f4 ce10ccd3 M glibc.spec commit 4570c40835940be861ee9c83be60e3de11b24ae3 Author: Florian Weimer @@ -19500,8 +19620,8 @@ CommitDate: Mon Dec 26 11:22:24 2016 +0100 Upstream commit: cecbc7967f0bcac718b6f8f8942b58403c0e917c -:100644 100644 9522712 634ac1f M glibc.spec -:100644 100644 ad021e6 f3ef878 M sources +:100644 100644 95227123 634ac1f4 M glibc.spec +:100644 100644 ad021e60 f3ef878f M sources commit a681b7b4e218e825cafc0acbac97c27afcc40a6d Author: Carlos O'Donell @@ -19513,8 +19633,8 @@ CommitDate: Fri Dec 23 18:31:06 2016 -0500 Upstream commit: 81e0662e5f2c342ffa413826b7b100d56677b613 -:100644 100644 cafda44 9522712 M glibc.spec -:100644 100644 499282e ad021e6 M sources +:100644 100644 cafda442 95227123 M glibc.spec +:100644 100644 499282e8 ad021e60 M sources commit ace066ccd14bd1b14b6ed214e6f8efc869682ea8 Author: Florian Weimer @@ -19526,8 +19646,8 @@ CommitDate: Sun Dec 18 15:43:05 2016 +0100 Upstream commit: e077349ce589466eecd47213db4fae6b80ec18c4 -:100644 100644 f6bf995 cafda44 M glibc.spec -:100644 100644 d840064 499282e M sources +:100644 100644 f6bf9955 cafda442 M glibc.spec +:100644 100644 d8400646 499282e8 M sources commit 5617e2c469ae72a7fcb8780170f154360d8e9f15 Author: Florian Weimer @@ -19539,8 +19659,8 @@ CommitDate: Mon Dec 12 19:26:23 2016 +0100 Upstream commit: 92dcaa3e2f7bf0f7f1c04cd2fb6a317df1a4e225 -:100644 100644 3614518 f6bf995 M glibc.spec -:100644 100644 bc95b05 d840064 M sources +:100644 100644 36145181 f6bf9955 M glibc.spec +:100644 100644 bc95b05c d8400646 M sources commit 8076ad58d990510b86370cc4fdf5d95f7bdc075a Author: Florian Weimer @@ -19555,12 +19675,12 @@ CommitDate: Fri Dec 9 18:38:16 2016 +0100 GDB pretty-printers for NPTL types are temporarily disabled due to bug 1403329. -:100644 100644 3e81dce 8d19a89 M glibc-disable-rwlock-elision.patch -:000000 100644 0000000 2c07985 A glibc-fedora-disable-printers.patch -:100644 000000 3d9a11b 0000000 D glibc-fedora-nss-static-link.patch -:100644 100644 13ad4ee 05232dc M glibc-new-rwlock.patch -:100644 100644 406b2f5 3614518 M glibc.spec -:100644 100644 25a2d92 bc95b05 M sources +:100644 100644 3e81dceb 8d19a890 M glibc-disable-rwlock-elision.patch +:000000 100644 00000000 2c079852 A glibc-fedora-disable-printers.patch +:100644 000000 3d9a11b5 00000000 D glibc-fedora-nss-static-link.patch +:100644 100644 13ad4ee5 05232dcd M glibc-new-rwlock.patch +:100644 100644 406b2f51 36145181 M glibc.spec +:100644 100644 25a2d92d bc95b05c M sources commit b766add297fe1fc0eab67988f0e3d4223da66298 Author: Florian Weimer @@ -19572,8 +19692,8 @@ CommitDate: Fri Dec 2 17:13:31 2016 +0100 Upstream commit: 01b23a30b42a90b1ebd882a0d81110a1542e504a -:100644 100644 59fd92e 406b2f5 M glibc.spec -:100644 100644 b61640f 25a2d92 M sources +:100644 100644 59fd92ec 406b2f51 M glibc.spec +:100644 100644 b61640f8 25a2d92d M sources commit fbd985bf72b4a2b27a4ea668aa2a25f9932895e2 Author: Florian Weimer @@ -19585,7 +19705,7 @@ CommitDate: Wed Nov 30 17:18:55 2016 +0100 It was removed upstream. -:100644 100644 b609db9 59fd92e M glibc.spec +:100644 100644 b609db9e 59fd92ec M glibc.spec commit eaa567419958fd9eac82ae905a4634bf1384945b Author: Florian Weimer @@ -19597,8 +19717,8 @@ CommitDate: Wed Nov 30 16:12:57 2016 +0100 Upstream commit: 9e78f6f6e7134a5f299cc8de77370218f8019237 -:100644 100644 e565396 b609db9 M glibc.spec -:100644 100644 3fa6872 b61640f M sources +:100644 100644 e5653968 b609db9e M glibc.spec +:100644 100644 3fa68724 b61640f8 M sources commit 93ddbf99eeab1dd7a8c57f38323d14eafd66e3bf Author: Florian Weimer @@ -19610,8 +19730,8 @@ CommitDate: Wed Nov 23 13:38:43 2016 +0100 Upstream commit: 7a5e3d9d633c828d84a9535f26b202a6179978e7 -:100644 100644 7bdd5cd e565396 M glibc.spec -:100644 100644 69de941 3fa6872 M sources +:100644 100644 7bdd5cd5 e5653968 M glibc.spec +:100644 100644 69de941c 3fa68724 M sources commit 434cf9e2e26d15a28b4c6d989d06f3befaa00805 Author: Florian Weimer @@ -19623,8 +19743,8 @@ CommitDate: Tue Nov 22 11:10:50 2016 +0100 Upstream commit: 5ee1a4443a3eb0868cef1fe506ae6fb6af33d4ad -:100644 100644 090b00c 7bdd5cd M glibc.spec -:100644 100644 4118dd7 69de941 M sources +:100644 100644 090b00c9 7bdd5cd5 M glibc.spec +:100644 100644 4118dd74 69de941c M sources commit b587bccfe792ad45d3f2308159741fafa39c0ced Author: Carlos O'Donell @@ -19636,8 +19756,8 @@ CommitDate: Thu Nov 17 12:46:05 2016 -0500 * Add new scalable implementation of POSIX read-write locks. -:000000 100644 0000000 13ad4ee A glibc-new-rwlock.patch -:100644 100644 f20c34b 090b00c M glibc.spec +:000000 100644 00000000 13ad4ee5 A glibc-new-rwlock.patch +:100644 100644 f20c34b5 090b00c9 M glibc.spec commit c9a1e5c935ea5bd177b165f215fb8080e648bae7 Author: Florian Weimer @@ -19647,8 +19767,8 @@ CommitDate: Wed Nov 16 15:25:20 2016 +0100 Do not try to link libcrypt statically during tests -:000000 100644 0000000 3d9a11b A glibc-fedora-nss-static-link.patch -:100644 100644 7381615 f20c34b M glibc.spec +:000000 100644 00000000 3d9a11b5 A glibc-fedora-nss-static-link.patch +:100644 100644 7381615c f20c34b5 M glibc.spec commit 835049c53cc8602b34116f452e53349cd4c58cf0 Author: Florian Weimer @@ -19660,8 +19780,8 @@ CommitDate: Wed Nov 16 14:43:20 2016 +0100 Upstream commit: 530862a63e0929128dc98fbbd463b120934434fb -:100644 100644 0d191f0 7381615 M glibc.spec -:100644 100644 bbcb441 4118dd7 M sources +:100644 100644 0d191f05 7381615c M glibc.spec +:100644 100644 bbcb4418 4118dd74 M sources commit 573bcacc8f80afd3b07727a68acdefa892c5803b Author: Florian Weimer @@ -19673,10 +19793,10 @@ CommitDate: Wed Nov 2 12:06:16 2016 +0100 Upstream commit: 9032070deaa03431921315f973c548c2c403fecc -:100644 100644 7443e85 af7adf3 M glibc-swbz13165.patch -:100644 000000 fcd7ad8 0000000 D glibc-swbz20019.patch -:100644 100644 db2fb33 0d191f0 M glibc.spec -:100644 100644 18a94c7 bbcb441 M sources +:100644 100644 7443e850 af7adf35 M glibc-swbz13165.patch +:100644 000000 fcd7ad8d 00000000 D glibc-swbz20019.patch +:100644 100644 db2fb334 0d191f05 M glibc.spec +:100644 100644 18a94c7b bbcb4418 M sources commit 55bd1b5cdd65f83be2e4baca1587c3a2612113bd Author: Florian Weimer @@ -19688,8 +19808,8 @@ CommitDate: Wed Nov 2 11:49:29 2016 +0100 Drop revert of upstream fix. -:100644 000000 bf2a62f 0000000 D glibc-rh1335011.patch -:100644 100644 4afa017 db2fb33 M glibc.spec +:100644 000000 bf2a62f6 00000000 D glibc-rh1335011.patch +:100644 100644 4afa0174 db2fb334 M glibc.spec commit 762e747b11f8449fe48f7d375e8d4cdaf5df9c67 Author: Florian Weimer @@ -19701,8 +19821,8 @@ CommitDate: Sat Oct 22 17:42:34 2016 +0200 Upstream commit: e37208ce86916af9510ffb9ce7b3c187986f07de -:100644 100644 abf19c3 4afa017 M glibc.spec -:100644 100644 597174d 18a94c7 M sources +:100644 100644 abf19c3e 4afa0174 M glibc.spec +:100644 100644 597174d6 18a94c7b M sources commit 9d7b7a7a045bf8e673ed4b2d0841ae14b4c43c4f Author: Florian Weimer @@ -19714,8 +19834,8 @@ CommitDate: Fri Oct 21 18:38:39 2016 +0200 Upstream commit: b3918c44db615637b26d919ce599cd86592316b3 -:100644 100644 e01f944 abf19c3 M glibc.spec -:100644 100644 de7e205 597174d M sources +:100644 100644 e01f944b abf19c3e M glibc.spec +:100644 100644 de7e2059 597174d6 M sources commit 83e5c415dab11f7932e4ea68b4ac8843448db45d Author: Carlos O'Donell @@ -19728,9 +19848,9 @@ CommitDate: Mon Oct 17 22:19:05 2016 -0400 - Add prototype support for detecting invalid IFUNC calls (swbz#20019). - New POSIX thread condition variable implementation (swbz#13165). -:000000 100644 0000000 7443e85 A glibc-swbz13165.patch -:000000 100644 0000000 fcd7ad8 A glibc-swbz20019.patch -:100644 100644 8e924aa e01f944 M glibc.spec +:000000 100644 00000000 7443e850 A glibc-swbz13165.patch +:000000 100644 00000000 fcd7ad8d A glibc-swbz20019.patch +:100644 100644 8e924aac e01f944b M glibc.spec commit 4f53fe474edcdd7e1bff551965fa16ced3eca5dc Author: Florian Weimer @@ -19742,8 +19862,8 @@ CommitDate: Fri Oct 7 17:54:03 2016 +0200 Upstream commit: 5140d036f9c16585448b5908c3a219bd96842161 -:100644 100644 3173dee 8e924aa M glibc.spec -:100644 100644 714726f de7e205 M sources +:100644 100644 3173dee2 8e924aac M glibc.spec +:100644 100644 714726f5 de7e2059 M sources commit 0b054085889a0ccc03b0d734d7e92e93df762c9c Author: Florian Weimer @@ -19755,9 +19875,9 @@ CommitDate: Tue Oct 4 19:29:14 2016 +0200 Upstream commit: ff88ee7edfaa439e23c42fccaf3a36cd5f041894 -:100644 100644 8b4e5fc bc7b832 M glibc-rh1315108.patch -:100644 100644 e674f02 3173dee M glibc.spec -:100644 100644 3cda0b1 714726f M sources +:100644 100644 8b4e5fca bc7b8321 M glibc-rh1315108.patch +:100644 100644 e674f02c 3173dee2 M glibc.spec +:100644 100644 3cda0b15 714726f5 M sources commit 0adb9076a4e636e38c6d3002dfc5edc93e896869 Author: Florian Weimer @@ -19769,9 +19889,9 @@ CommitDate: Thu Sep 22 13:31:39 2016 +0200 Upstream commit: 17af5da98cd2c9ec958421ae2108f877e0945451 -:100644 000000 a1a6eaf 0000000 D glibc-rh1315476-1.patch -:100644 100644 4e6784c e674f02 M glibc.spec -:100644 100644 86b69f3 3cda0b1 M sources +:100644 000000 a1a6eaff 00000000 D glibc-rh1315476-1.patch +:100644 100644 4e6784ca e674f02c M glibc.spec +:100644 100644 86b69f37 3cda0b15 M sources commit 66afdc6140f557d35e6ace395a65b3feeb29cac7 Author: Florian Weimer @@ -19784,7 +19904,7 @@ CommitDate: Thu Sep 22 13:20:25 2016 +0200 Add MIPS support. Based on a patch from Michal Toman . -:100644 100644 95c527c 4e6784c M glibc.spec +:100644 100644 95c527cd 4e6784ca M glibc.spec commit 36702a1359e9d66835f0a67ee3d8b772d1521517 Author: Carlos O'Donell @@ -19796,10 +19916,10 @@ CommitDate: Tue Sep 20 23:29:23 2016 -0400 Upstream commit: e299076fefd9649f78f853865d4745043e50813c -:100644 100644 abcb8fa 4bcd5b5 M glibc-rh1013801.patch -:100644 100644 8738f9a bf2a62f M glibc-rh1335011.patch -:100644 100644 a176651 95c527c M glibc.spec -:100644 100644 369d003 86b69f3 M sources +:100644 100644 abcb8fa1 4bcd5b53 M glibc-rh1013801.patch +:100644 100644 8738f9a4 bf2a62f6 M glibc-rh1335011.patch +:100644 100644 a176651c 95c527cd M glibc.spec +:100644 100644 369d0032 86b69f37 M sources commit 77d2ac8e00c0ac41e3b7bca4d5365ae33be10f19 Author: Florian Weimer @@ -19811,8 +19931,8 @@ CommitDate: Thu Sep 1 16:11:33 2016 +0200 Upstream commit: 4d728087ef8cc826b05bd21d0c74d4eca9b1a27d -:100644 100644 415532b a176651 M glibc.spec -:100644 100644 55a5e50 369d003 M sources +:100644 100644 415532b2 a176651c M glibc.spec +:100644 100644 55a5e502 369d0032 M sources commit c097c5b5f70e8f38165d637d702f1b0c51b4eef7 Author: Florian Weimer @@ -19824,8 +19944,8 @@ CommitDate: Fri Aug 26 19:45:02 2016 +0200 Upstream commit: 7e625f7e85b4e88f10dbde35a0641742af581806 -:100644 100644 c787c7a 415532b M glibc.spec -:100644 100644 089f04f 55a5e50 M sources +:100644 100644 c787c7a5 415532b2 M glibc.spec +:100644 100644 089f04f8 55a5e502 M sources commit 82db94894e53df4bc9da3922f0b368aa0817cf57 Author: Florian Weimer @@ -19837,8 +19957,8 @@ CommitDate: Sun Aug 21 16:49:12 2016 +0200 Upstream commit: 66abf9bfbe24ac1e7207d26ccad725ed938dc52c -:100644 100644 d82448e c787c7a M glibc.spec -:100644 100644 abd2b43 089f04f M sources +:100644 100644 d82448eb c787c7a5 M glibc.spec +:100644 100644 abd2b431 089f04f8 M sources commit 90f786e56b5f58a354cad235285379207a751b56 Author: Florian Weimer @@ -19850,9 +19970,9 @@ CommitDate: Wed Aug 17 15:23:48 2016 +0200 Upstream commit: ID d9067fca40b8aac156d73cfa44d6875813555a6c -:100644 000000 ccaf9cd 0000000 D .gitignore -:100644 100644 255fb55 d82448e M glibc.spec -:100644 100644 916c283 abd2b43 M sources +:100644 000000 ccaf9cda 00000000 D .gitignore +:100644 100644 255fb559 d82448eb M glibc.spec +:100644 100644 916c283e abd2b431 M sources commit 548cf89fd5a0ba45e7c69326c86fad447bd24981 Author: Florian Weimer @@ -19862,7 +19982,7 @@ CommitDate: Wed Aug 17 15:19:14 2016 +0200 Fix upstream commit hash -:100644 100644 f9d8ca7 255fb55 M glibc.spec +:100644 100644 f9d8ca74 255fb559 M glibc.spec commit f6288a00454dae566344c66e1f6526898e3dfb70 Author: Florian Weimer @@ -19874,8 +19994,8 @@ CommitDate: Thu Aug 11 13:42:52 2016 +0200 Upstream commit ID is f79211792127f38d5954419bb3784c8eb7f5e4e5. -:100644 100644 4f43a44 f9d8ca7 M glibc.spec -:100644 100644 d8576dd 916c283 M sources +:100644 100644 4f43a447 f9d8ca74 M glibc.spec +:100644 100644 d8576dde 916c283e M sources commit 5344dc60e95259d9848bf04165836276c03ac91c Author: Carlos O'Donell @@ -19885,7 +20005,7 @@ CommitDate: Mon Aug 8 10:03:42 2016 -0400 Bump NEVRA to 2.24.90-1. -:100644 100644 02c5c27 4f43a44 M glibc.spec +:100644 100644 02c5c27d 4f43a447 M glibc.spec commit 4c8a26717a2e6267d7409ec080b5d0de7ce358e3 Author: Carlos O'Donell @@ -19895,9 +20015,9 @@ CommitDate: Mon Aug 8 09:58:02 2016 -0400 Auto-sync with upstream master. -:000000 100644 0000000 ccaf9cd A .gitignore -:100644 100644 16febd7 02c5c27 M glibc.spec -:100644 100644 55a64c5 d8576dd M sources +:000000 100644 00000000 ccaf9cda A .gitignore +:100644 100644 16febd7c 02c5c27d M glibc.spec +:100644 100644 55a64c5d d8576dde M sources commit b8b6a436e99cfad18775c24b1ff01bcf94e495c1 Author: Florian Weimer @@ -19910,7 +20030,7 @@ CommitDate: Fri Jul 22 21:37:29 2016 +0200 Add missing definitions to the crypt-glibc/Makefile, so that the cryptographic tests can be built. -:100644 100644 3c87463 ffa449e M glibc-rh1324623.patch +:100644 100644 3c874638 ffa449e9 M glibc-rh1324623.patch commit 2c005c98da6ee97cf8690252bd320c8845b335a8 Author: Florian Weimer @@ -19920,7 +20040,7 @@ CommitDate: Fri Jul 22 17:54:35 2016 +0200 Do not try to install mtrace when bootstrapping -:100644 100644 54479bf 16febd7 M glibc.spec +:100644 100644 54479bf5 16febd7c M glibc.spec commit 7ad97baa4ffc5c37461ccee0d0cc48e5f183a398 Author: Florian Weimer @@ -19935,8 +20055,8 @@ CommitDate: Fri Jul 22 17:06:37 2016 +0200 glibc has a Recommends: to prefer the NSS-based implementation. glibc-devel requires that one of the two packages is installed. -:000000 100644 0000000 3c87463 A glibc-rh1324623.patch -:100644 100644 388638d 54479bf M glibc.spec +:000000 100644 00000000 3c874638 A glibc-rh1324623.patch +:100644 100644 388638d6 54479bf5 M glibc.spec commit 87b6ed77dbc0fa2bb27633ff9f6c8e339ca1b4da Author: Florian Weimer @@ -19949,7 +20069,7 @@ CommitDate: Fri Jul 22 15:47:20 2016 +0200 Our scriptlets do not use pthread_cancel, and such requires are not transitive. -:100644 100644 eaa018a 388638d M glibc.spec +:100644 100644 eaa018a4 388638d6 M glibc.spec commit 9d1bb0abc36fddc5f9a4f69b8ae446dbb6c50502 Author: Florian Weimer @@ -19961,7 +20081,7 @@ CommitDate: Fri Jul 22 15:46:44 2016 +0200 glibc-devel depends on libgcc%{_isa} -:100644 100644 c037c7b eaa018a M glibc.spec +:100644 100644 c037c7b4 eaa018a4 M glibc.spec commit d1929c8ddbd9ac1c734f71623d84e398ba33f346 Author: Florian Weimer @@ -19973,8 +20093,8 @@ CommitDate: Thu Jul 21 16:16:25 2016 +0200 Drop sendmsg/recvmsg compatibility patch -:100644 000000 7cd0755 0000000 D glibc-rh1344830.patch -:100644 100644 ef7d149 c037c7b M glibc.spec +:100644 000000 7cd0755d 00000000 D glibc-rh1344830.patch +:100644 100644 ef7d149f c037c7b4 M glibc.spec commit d5e9ea2361dbca74ecff040b8d19d48c11463702 Author: Florian Weimer @@ -19991,7 +20111,7 @@ CommitDate: Wed Jul 20 17:09:24 2016 +0200 for direct linking against NSS modules (which is rare and usually unintended). Drop the obsoletes clause for nss_db. -:100644 100644 3699f80 ef7d149 M glibc.spec +:100644 100644 3699f805 ef7d149f M glibc.spec commit 1ca5ccee9c589868b121b1a88a61db67170eafbe Author: Florian Weimer @@ -20003,9 +20123,9 @@ CommitDate: Wed Jul 13 19:37:12 2016 +0200 Make ldconfig and sln the same binary -:000000 100644 0000000 a1a6eaf A glibc-rh1315476-1.patch -:000000 100644 0000000 305f30e A glibc-rh1315476-2.patch -:100644 100644 90345e1 3699f80 M glibc.spec +:000000 100644 00000000 a1a6eaff A glibc-rh1315476-1.patch +:000000 100644 00000000 305f30e4 A glibc-rh1315476-2.patch +:100644 100644 90345e1c 3699f805 M glibc.spec commit 8d10e61144eec789d0575fd4628eb4bdd30a16e2 Author: Florian Weimer @@ -20017,9 +20137,9 @@ CommitDate: Wed Jul 13 14:23:26 2016 +0200 Up to commit f531f93056b34800383c5154280e7ba5112563c7. -:100644 100644 3d03099 bc6e6b5 M SUPPORTED -:100644 100644 0952345 90345e1 M glibc.spec -:100644 100644 4e6e3f3 55a64c5 M sources +:100644 100644 3d03099a bc6e6b54 M SUPPORTED +:100644 100644 0952345d 90345e1c M glibc.spec +:100644 100644 4e6e3f30 55a64c5d M sources commit 5c031d86de2393daa5181ad5ccdbca52c5eb3554 Author: Mike FABIAN @@ -20031,8 +20151,8 @@ CommitDate: Sat Jul 9 07:35:43 2016 +0200 - Unicode 9.0.0 updates (ctype, charmap, transliteration) -:000000 100644 0000000 1c74c22 A glibc-rh1351108-update-to-unicode-9.0.0.patch -:100644 100644 e6e6789 0952345 M glibc.spec +:000000 100644 00000000 1c74c22a A glibc-rh1351108-update-to-unicode-9.0.0.patch +:100644 100644 e6e67895 0952345d M glibc.spec commit 0f28e7559ec891f11d8255451adebda8d30eae87 Author: Florian Weimer @@ -20046,8 +20166,8 @@ CommitDate: Tue Jul 5 19:06:22 2016 +0200 Update changelog and adjust extend_alloca removal patch. -:100644 100644 a549c50 8b4e5fc M glibc-rh1315108.patch -:100644 100644 4dc4e36 e6e6789 M glibc.spec +:100644 100644 a549c50f 8b4e5fca M glibc-rh1315108.patch +:100644 100644 4dc4e366 e6e67895 M glibc.spec commit 9a78be1808600ca5e66eab741542447a29cfbeb3 Author: Florian Weimer @@ -20059,8 +20179,8 @@ CommitDate: Tue Jul 5 18:40:25 2016 +0200 glibc: strcasecmp failure on ppc64le -:100644 100644 d892901 4dc4e36 M glibc.spec -:100644 100644 f98c7cf 4e6e3f3 M sources +:100644 100644 d8929017 4dc4e366 M glibc.spec +:100644 100644 f98c7cfd 4e6e3f30 M sources commit 0ce3b29d56632acd1c393714cc8f189496bdeb47 Author: Carlos O'Donell @@ -20072,8 +20192,8 @@ CommitDate: Fri Jun 24 13:51:56 2016 -0400 - Properly handle more invalid --install-langs arguments (#1349906). -:100644 100644 5fc93ff 9183972 M build-locale-archive.c -:100644 100644 6b0c411 d892901 M glibc.spec +:100644 100644 5fc93ffa 91839723 M build-locale-archive.c +:100644 100644 6b0c4112 d8929017 M glibc.spec commit 22e8257c2d65b0a7126ea48f67a93ef8a73d9745 Author: Florian Weimer @@ -20085,7 +20205,7 @@ CommitDate: Tue Jun 21 21:52:48 2016 +0200 Fix RPM changelog. -:100644 100644 fee8649 6b0c411 M glibc.spec +:100644 100644 fee86492 6b0c4112 M glibc.spec commit d21f299cb3189bc0c5435aaad828a8add28f5283 Author: Florian Weimer @@ -20097,8 +20217,8 @@ CommitDate: Tue Jun 21 21:50:42 2016 +0200 Sync with upstream master, commit a3b473373ee43a292f5ec68a7fda6b9cfb26a9b0 -:100644 100644 946f678 fee8649 M glibc.spec -:100644 100644 54e2c7c f98c7cf M sources +:100644 100644 946f678f fee86492 M glibc.spec +:100644 100644 54e2c7cd f98c7cfd M sources commit 1bbad64354742afa02998ebe4a2b2de5d0b78ccf Author: Carlos O'Donell @@ -20120,7 +20240,7 @@ CommitDate: Sat Jun 18 17:20:10 2016 -0400 Tested on Fedora Rawhide by verifying global setting of %_install_langs macro changes installed locale-archive locales correctly. -:100644 100644 7466968 946f678 M glibc.spec +:100644 100644 7466968f 946f678f M glibc.spec commit c27c24530cb9368e3026c18fff53dc6723c38d5c Author: Florian Weimer @@ -20134,8 +20254,8 @@ CommitDate: Mon Jun 13 06:30:30 2016 +0200 some reason, these architectures only have compat symbols for sendmsg and recvmsg. -:100644 100644 1fd1c53 7cd0755 M glibc-rh1344830.patch -:100644 100644 b5dcf06 7466968 M glibc.spec +:100644 100644 1fd1c53c 7cd0755d M glibc-rh1344830.patch +:100644 100644 b5dcf06f 7466968f M glibc.spec commit cb62ee1f81a7d2960260e9dd9088434bba57a701 Author: Florian Weimer @@ -20149,9 +20269,9 @@ CommitDate: Mon Jun 13 06:26:14 2016 +0200 to be cleaned if libpthread is loaded”. UTS namespaces should now offer a cleaner way yo do this. -:100644 000000 dedb836 0000000 D glibc-fedora-uname-getrlimit.patch -:100644 100644 a0dcee2 1fd1c53 M glibc-rh1344830.patch -:100644 100644 e65ccd7 b5dcf06 M glibc.spec +:100644 000000 dedb8366 00000000 D glibc-fedora-uname-getrlimit.patch +:100644 100644 a0dcee28 1fd1c53c M glibc-rh1344830.patch +:100644 100644 e65ccd70 b5dcf06f M glibc.spec commit 34a28994be161a624d591fe5a8086d27a85f8a8a Author: Florian Weimer @@ -20167,8 +20287,8 @@ CommitDate: Sun Jun 12 22:42:00 2016 +0200 This should allow us to run old binaries (with the GLIBC_2.24 symbols) while rebuild packages to use the old ABI again. -:000000 100644 0000000 a0dcee2 A glibc-rh1344830.patch -:100644 100644 1356205 e65ccd7 M glibc.spec +:000000 100644 00000000 a0dcee28 A glibc-rh1344830.patch +:100644 100644 13562056 e65ccd70 M glibc.spec commit c8064eb721d630b5af74d18f04848d907f0130ff Author: Florian Weimer @@ -20182,10 +20302,10 @@ CommitDate: Sun Jun 12 22:41:55 2016 +0200 (Crash in the nss_db NSS service module during iteration.) Add the eo locale as a first-class citizen. -:100644 000000 41f0e53 0000000 D .gitignore -:100644 100644 4ea4f60 3d03099 M SUPPORTED -:100644 100644 6d937c3 1356205 M glibc.spec -:100644 100644 1994310 54e2c7c M sources +:100644 000000 41f0e537 00000000 D .gitignore +:100644 100644 4ea4f604 3d03099a M SUPPORTED +:100644 100644 6d937c3c 13562056 M glibc.spec +:100644 100644 19943101 54e2c7cd M sources commit 1aca2e1ec1a072a5bf7a95f6b22884576206a57c Author: Florian Weimer @@ -20197,7 +20317,7 @@ CommitDate: Sat Jun 11 13:39:48 2016 +0200 Retroactively update changelog to record fixed bug. -:100644 100644 9686adf 6d937c3 M glibc.spec +:100644 100644 9686adf0 6d937c3c M glibc.spec commit d3f78ebc81f5548d992937aa4b3654d1ddd02fcf Author: Florian Weimer @@ -20207,9 +20327,9 @@ CommitDate: Thu Jun 9 12:22:07 2016 +0200 Auto-sync with upstream master. -:000000 100644 0000000 41f0e53 A .gitignore -:100644 100644 aee19eb 9686adf M glibc.spec -:100644 100644 45ec11e 1994310 M sources +:000000 100644 00000000 41f0e537 A .gitignore +:100644 100644 aee19eb1 9686adf0 M glibc.spec +:100644 100644 45ec11e9 19943101 M sources commit d4be8589c354bed63ae0bcf84c8ee30bda546068 Author: Florian Weimer @@ -20219,7 +20339,7 @@ CommitDate: Wed Jun 1 08:44:30 2016 +0200 Log df output as part of system information -:100644 100644 0ca7cfc aee19eb M glibc.spec +:100644 100644 0ca7cfc9 aee19eb1 M glibc.spec commit 5872287fa176fe84e61c0f1ddd5d67f3c0c473c5 Author: Florian Weimer @@ -20231,7 +20351,7 @@ CommitDate: Wed Jun 1 08:31:31 2016 +0200 Do not disable assertions in release builds -:100644 100644 9a49c82 0ca7cfc M glibc.spec +:100644 100644 9a49c82a 0ca7cfc9 M glibc.spec commit db9848cdc33a5dd3198f6b1dd9d19b9c230e6c06 Author: Florian Weimer @@ -20243,9 +20363,9 @@ CommitDate: Wed Jun 1 08:30:29 2016 +0200 Resolves #1326903, #1337140. -:100644 100644 1c07ad5 a549c50 M glibc-rh1315108.patch -:100644 100644 c45d03a 9a49c82 M glibc.spec -:100644 100644 35a8cfd 45ec11e M sources +:100644 100644 1c07ad5e a549c50f M glibc-rh1315108.patch +:100644 100644 c45d03a5 9a49c82a M glibc.spec +:100644 100644 35a8cfd9 45ec11e9 M sources commit 15922d5c0715a89b32a71bc1788c5dfaf21756c3 Author: Carlos O'Donell @@ -20257,8 +20377,8 @@ CommitDate: Wed May 11 16:21:02 2016 -0400 - Move support for building GCC 2.96 into compat-gcc-296. -:100644 100644 41299ca c45d03a M glibc.spec -:100644 000000 d243ef0 0000000 D libc-lock.h +:100644 100644 41299ca7 c45d03a5 M glibc.spec +:100644 000000 d243ef07 00000000 D libc-lock.h commit 6a2d7264b46effc9e835dab042fa7ae606172031 Author: Florian Weimer @@ -20270,8 +20390,8 @@ CommitDate: Wed May 11 16:10:58 2016 +0200 Revert dlsym (RTLD_NEXT)/dlerror change, to unbreak ASAN -:000000 100644 0000000 8738f9a A glibc-rh1335011.patch -:100644 100644 01012f0 41299ca M glibc.spec +:000000 100644 00000000 8738f9a4 A glibc-rh1335011.patch +:100644 100644 01012f0e 41299ca7 M glibc.spec commit a92e3b7488197c7a14e0e3d8d33ea2859f9f978f Author: Florian Weimer @@ -20281,7 +20401,7 @@ CommitDate: Mon May 9 20:43:58 2016 +0200 Expand comments about the separate SUPPORTED file -:100644 100644 8a49c74 01012f0 M glibc.spec +:100644 100644 8a49c740 01012f0e M glibc.spec commit 48c31c2f6221bcfe49d2658d7eaa4fda24d0b28f Author: Florian Weimer @@ -20291,8 +20411,8 @@ CommitDate: Mon May 9 17:18:54 2016 +0200 Drop broken attempt at fix for #1326903 -:100644 000000 62cdf9f 0000000 D glibc-rh1326903.patch -:100644 100644 836a4ca 8a49c74 M glibc.spec +:100644 000000 62cdf9f6 00000000 D glibc-rh1326903.patch +:100644 100644 836a4caf 8a49c740 M glibc.spec commit 35857353391b0f062c30a24fed0741b6d2a26604 Author: Florian Weimer @@ -20304,8 +20424,8 @@ CommitDate: Mon May 9 14:23:15 2016 +0200 Experimental fix for NULL fork/vfork symbols in libpthread -:000000 100644 0000000 62cdf9f A glibc-rh1326903.patch -:100644 100644 34ee189 836a4ca M glibc.spec +:000000 100644 00000000 62cdf9f6 A glibc-rh1326903.patch +:100644 100644 34ee1899 836a4caf M glibc.spec commit f3507c9c60cde87cee62132ba6d3a57dc8db53a8 Author: Florian Weimer @@ -20315,13 +20435,13 @@ CommitDate: Mon May 9 14:19:32 2016 +0200 Remove unapplied patches -:100644 000000 ce21e8d 0000000 D glibc-fedora-use-test-skeleton.patch -:100644 000000 745fa3f 0000000 D glibc-fix-an_ES.patch -:100644 000000 cbc670e 0000000 D glibc-rh1052846.patch -:100644 000000 9c098c2 0000000 D glibc-rh1069559-1.patch -:100644 000000 b74e2f1 0000000 D glibc-rh1069559-2.patch -:100644 000000 a35679c 0000000 D glibc-rh1252570.patch -:100644 000000 86e99b9 0000000 D template.patch +:100644 000000 ce21e8d9 00000000 D glibc-fedora-use-test-skeleton.patch +:100644 000000 745fa3f6 00000000 D glibc-fix-an_ES.patch +:100644 000000 cbc670e6 00000000 D glibc-rh1052846.patch +:100644 000000 9c098c25 00000000 D glibc-rh1069559-1.patch +:100644 000000 b74e2f15 00000000 D glibc-rh1069559-2.patch +:100644 000000 a35679c3 00000000 D glibc-rh1252570.patch +:100644 000000 86e99b9b 00000000 D template.patch commit 43e96b9dec482ab4bb61c6bb786f5aa3f3e1aefa Author: Florian Weimer @@ -20331,7 +20451,7 @@ CommitDate: Mon May 9 13:48:03 2016 +0200 Use diff instead of cmp for the SUPPORTED file check -:100644 100644 54de66c 34ee189 M glibc.spec +:100644 100644 54de66cf 34ee1899 M glibc.spec commit ddd7733205ed9b761af40d0191562378503a9cdf Author: Florian Weimer @@ -20346,11 +20466,11 @@ CommitDate: Mon May 9 13:47:51 2016 +0200 Adjust glibc-rh1315108.patch to minor upstream change. Update SUPPORTED file. -:100644 100644 f587570 4ea4f60 M SUPPORTED -:100644 000000 0188652 0000000 D glibc-nsswitch-Add-group-merging-support.patch -:100644 100644 efac5c9 1c07ad5 M glibc-rh1315108.patch -:100644 100644 4f25aba 54de66c M glibc.spec -:100644 100644 3748e1f 35a8cfd M sources +:100644 100644 f5875705 4ea4f604 M SUPPORTED +:100644 000000 0188652f 00000000 D glibc-nsswitch-Add-group-merging-support.patch +:100644 100644 efac5c90 1c07ad5e M glibc-rh1315108.patch +:100644 100644 4f25aba4 54de66cf M glibc.spec +:100644 100644 3748e1f4 35a8cfd9 M sources commit 4f51555190fcfa0d0565283d3e135686887b05aa Author: Carlos O'Donell @@ -20362,7 +20482,7 @@ CommitDate: Tue May 3 15:51:17 2016 -0400 - Require libselinux for nscd in non-bootstrap configuration. -:100644 100644 7c236e9 4f25aba M glibc.spec +:100644 100644 7c236e9e 4f25aba4 M glibc.spec commit 790a04974bdbf5b72b5977b6761d663c7a5dcd85 Author: Carlos O'Donell @@ -20372,7 +20492,7 @@ CommitDate: Fri Apr 29 23:11:30 2016 -0400 Update gen-quilt-series script. -:100755 100755 35412de 3262fba M gen-quilt-series.sh +:100755 100755 35412de1 3262fbae M gen-quilt-series.sh commit fe4ad2a06eb59660ef5595a3e8cde5829beeb29b Author: Carlos O'Donell @@ -20382,15 +20502,15 @@ CommitDate: Fri Apr 29 23:08:42 2016 -0400 Auto-sync with upstream master. -:100644 100644 2145654 f587570 M SUPPORTED -:100644 000000 a982eef 0000000 D glibc-bench-build.patch -:100644 100644 f5da419 7fabf30 M glibc-c-utf8-locale.patch -:100644 100644 abbceb2 3810a6e M glibc-dns-host-gcc5.patch -:100644 100644 43b7ef3 92fa90f M glibc-gethnamaddr-gcc5.patch -:100644 100644 5960653 a35679c M glibc-rh1252570.patch -:100644 100644 1fd2c51 7c236e9 M glibc.spec -:100644 100644 35ab8e1 3748e1f M sources -:100755 100755 35eed11 459c153 M sync-upstream.sh +:100644 100644 21456549 f5875705 M SUPPORTED +:100644 000000 a982eef4 00000000 D glibc-bench-build.patch +:100644 100644 f5da4192 7fabf303 M glibc-c-utf8-locale.patch +:100644 100644 abbceb27 3810a6e1 M glibc-dns-host-gcc5.patch +:100644 100644 43b7ef3a 92fa90f2 M glibc-gethnamaddr-gcc5.patch +:100644 100644 5960653f a35679c3 M glibc-rh1252570.patch +:100644 100644 1fd2c518 7c236e9e M glibc.spec +:100644 100644 35ab8e14 3748e1f4 M sources +:100755 100755 35eed114 459c1534 M sync-upstream.sh commit cfdb093a223bad8ef1337a143354355ca69eafa4 Author: Carlos O'Donell @@ -20400,7 +20520,7 @@ CommitDate: Fri Apr 29 21:25:52 2016 -0400 Remove quilt series file. -:100644 000000 ae5129c 0000000 D series +:100644 000000 ae5129c2 00000000 D series commit 256beb3f45b0b62870afe41acceee6f337db6ea3 Author: Carlos O'Donell @@ -20412,7 +20532,7 @@ CommitDate: Thu Apr 28 15:59:56 2016 -0400 - Move spec file system information logging to the build stage. -:100644 100644 1a74eaa 1fd2c51 M glibc.spec +:100644 100644 1a74eaad 1fd2c518 M glibc.spec commit 4ac7c7b40368f067a3acb2db4dc318b1c0752284 Author: Florian Weimer @@ -20422,8 +20542,8 @@ CommitDate: Thu Apr 14 22:49:32 2016 +0200 Auto-sync with upstream master -:100644 100644 c075c3e 1a74eaa M glibc.spec -:100644 100644 7d93c40 35ab8e1 M sources +:100644 100644 c075c3e8 1a74eaad M glibc.spec +:100644 100644 7d93c400 35ab8e14 M sources commit 85759f3e8d0760bcc8d40f146b93d0a39b28e220 Author: Florian Weimer @@ -20433,9 +20553,9 @@ CommitDate: Thu Apr 14 12:59:40 2016 +0200 Auto-sync with upstream master -:100644 000000 6e809b6 0000000 D .gitignore -:100644 100644 b6f667c c075c3e M glibc.spec -:100644 100644 facb322 7d93c40 M sources +:100644 000000 6e809b61 00000000 D .gitignore +:100644 100644 b6f667c0 c075c3e8 M glibc.spec +:100644 100644 facb3223 7d93c400 M sources commit 34d510b5deb4228d04588f7b8e5787126dd604c0 Author: Florian Weimer @@ -20448,10 +20568,10 @@ CommitDate: Thu Apr 14 10:00:03 2016 +0200 This removes the type union wait from the installed headers. Update the SUPPORTED file with upstream changes -:000000 100644 0000000 6e809b6 A .gitignore -:100644 100644 8319565 2145654 M SUPPORTED -:100644 100644 847c8e8 b6f667c M glibc.spec -:100644 100644 4006c6d facb322 M sources +:000000 100644 00000000 6e809b61 A .gitignore +:100644 100644 8319565c 21456549 M SUPPORTED +:100644 100644 847c8e83 b6f667c0 M glibc.spec +:100644 100644 4006c6d3 facb3223 M sources commit ec0dd75135040a36a06a67e8c0d3785b0d9c559c Author: Florian Weimer @@ -20461,8 +20581,8 @@ CommitDate: Fri Apr 8 16:21:37 2016 +0200 Auto-sync with upstream master -:100644 100644 e36fc5f 847c8e8 M glibc.spec -:100644 100644 a27b541 4006c6d M sources +:100644 100644 e36fc5f8 847c8e83 M glibc.spec +:100644 100644 a27b5413 4006c6d3 M sources commit 887080ee792f16157feca5f70b5870aadd215f07 Author: Florian Weimer @@ -20472,9 +20592,9 @@ CommitDate: Tue Mar 29 13:04:25 2016 +0200 Auto-sync with upstream master -:100644 100644 228bb96 5960653 M glibc-rh1252570.patch -:100644 100644 84398bd e36fc5f M glibc.spec -:100644 100644 a80a833 a27b541 M sources +:100644 100644 228bb96c 5960653f M glibc-rh1252570.patch +:100644 100644 84398bd2 e36fc5f8 M glibc.spec +:100644 100644 a80a833e a27b5413 M sources commit 1ffb3d6c4c1671dc3455cc3847ff1abea4dd191d Author: Carlos O'Donell @@ -20486,10 +20606,10 @@ CommitDate: Wed Mar 16 02:38:44 2016 -0400 - Use 'an' as language abbreviation for an_ES. -:100644 000000 a55909f 0000000 D .gitignore -:000000 100644 0000000 745fa3f A glibc-fix-an_ES.patch -:100644 100644 845b875 84398bd M glibc.spec -:100644 100644 1810c7f ae5129c M series +:100644 000000 a55909f4 00000000 D .gitignore +:000000 100644 00000000 745fa3f6 A glibc-fix-an_ES.patch +:100644 100644 845b875b 84398bd2 M glibc.spec +:100644 100644 1810c7f9 ae5129c2 M series commit e5c33149471761328f1d11f84824fde9417d54cf Author: Carlos O'Donell @@ -20503,7 +20623,7 @@ CommitDate: Mon Mar 7 12:07:04 2016 -0500 - Add support for descriptive branch names. - Fix error message to be more accurate if you ctrl^c out of build. -:100755 100755 aeeac4b 35eed11 M sync-upstream.sh +:100755 100755 aeeac4b7 35eed114 M sync-upstream.sh commit 99a6d4df1b323c1e4e19cd332cfba885b39690c6 Author: Carlos O'Donell @@ -20513,10 +20633,10 @@ CommitDate: Mon Mar 7 11:47:23 2016 -0500 Auto-sync with upstream master. -:000000 100644 0000000 a55909f A .gitignore -:100644 100644 072974d 845b875 M glibc.spec -:100644 100644 c43d307 a80a833 M sources -:100755 100755 765e682 aeeac4b M sync-upstream.sh +:000000 100644 00000000 a55909f4 A .gitignore +:100644 100644 072974d1 845b875b M glibc.spec +:100644 100644 c43d3072 a80a833e M sources +:100755 100755 765e682a aeeac4b7 M sync-upstream.sh commit 9fce0748c4d989e603d379d80f2066d8061de932 Author: Florian Weimer @@ -20528,9 +20648,9 @@ CommitDate: Mon Mar 7 06:52:27 2016 +0100 Remove extend_alloca. -:000000 100644 0000000 efac5c9 A glibc-rh1315108.patch -:100644 100644 6d1e707 072974d M glibc.spec -:100644 100644 9b34d6b 1810c7f M series +:000000 100644 00000000 efac5c90 A glibc-rh1315108.patch +:100644 100644 6d1e707e 072974d1 M glibc.spec +:100644 100644 9b34d6b5 1810c7f9 M series commit f2d40207eae526f4183c755c1c16aed2daec0279 Author: Carlos O'Donell @@ -20542,7 +20662,7 @@ CommitDate: Tue Mar 1 02:59:24 2016 -0500 - Enhance support for upgrading from a non-language-pack system. -:100644 100644 a10bb63 6d1e707 M glibc.spec +:100644 100644 a10bb637 6d1e707e M glibc.spec commit 9edc2b688b4e009d0c56e14f3c7176823cec60d0 Author: Carlos O'Donell @@ -20557,8 +20677,8 @@ CommitDate: Fri Feb 26 01:06:35 2016 -0800 to install all languages. Transparent installation support is provided via dnf langpacks. -:000000 100644 0000000 8319565 A SUPPORTED -:100644 100644 c785356 a10bb63 M glibc.spec +:000000 100644 00000000 8319565c A SUPPORTED +:100644 100644 c785356c a10bb637 M glibc.spec commit b359bd04bb163ba9ad12ee47dcc65af432aec236 Author: Carlos O'Donell @@ -20568,8 +20688,8 @@ CommitDate: Fri Feb 26 00:36:28 2016 -0500 Upstream development version is now 2.23.90. -:100644 000000 541fb77 0000000 D .gitignore -:100644 100644 c0be76b c785356 M glibc.spec +:100644 000000 541fb77b 00000000 D .gitignore +:100644 100644 c0be76b9 c785356c M glibc.spec commit dd72bee11f7a24939c520d037caa92d74f975f65 Author: Carlos O'Donell @@ -20582,14 +20702,14 @@ CommitDate: Thu Feb 25 15:48:36 2016 -0500 - Drop glibc-CVE-2015-7547.patch, glibc-isinf-cxx11.patch and glibc-rh1114591.patch since they are all upstream. -:100644 100644 71c3904 541fb77 M .gitignore -:100644 000000 627afda 0000000 D glibc-CVE-2015-7547.patch -:100644 000000 b65a2f3 0000000 D glibc-isinf-cxx11.patch -:100644 000000 73e6bc4 0000000 D glibc-rh1114591.patch -:100644 100644 5e69e9a 228bb96 M glibc-rh1252570.patch -:100644 100644 aae1a86 c0be76b M glibc.spec -:100644 100644 e3f70b9 9b34d6b M series -:100644 100644 2151b4a c43d307 M sources +:100644 100644 71c39042 541fb77b M .gitignore +:100644 000000 627afda2 00000000 D glibc-CVE-2015-7547.patch +:100644 000000 b65a2f3e 00000000 D glibc-isinf-cxx11.patch +:100644 000000 73e6bc4f 00000000 D glibc-rh1114591.patch +:100644 100644 5e69e9a0 228bb96c M glibc-rh1252570.patch +:100644 100644 aae1a866 c0be76b9 M glibc.spec +:100644 100644 e3f70b95 9b34d6b5 M series +:100644 100644 2151b4ae c43d3072 M sources commit ba7912605b178508ba88229fb87eacfbff8a6da1 Author: Florian Weimer @@ -20601,8 +20721,8 @@ CommitDate: Fri Feb 19 21:46:21 2016 +0100 Remove stray newline from Serbian locales. -:000000 100644 0000000 73e6bc4 A glibc-rh1114591.patch -:100644 100644 6b3b8bf aae1a86 M glibc.spec +:000000 100644 00000000 73e6bc4f A glibc-rh1114591.patch +:100644 100644 6b3b8bfa aae1a866 M glibc.spec commit 3d382a2e9c424a6c2ac35e0327e9538b6b7a9f23 Author: Carlos O'Donell @@ -20614,9 +20734,9 @@ CommitDate: Tue Feb 16 09:31:14 2016 -0500 - Fix CVE-2015-7547: getaddrinfo() stack-based buffer overflow (#1308943). -:000000 100644 0000000 627afda A glibc-CVE-2015-7547.patch -:100644 100644 97335be 6b3b8bf M glibc.spec -:100644 100644 528fb2e e3f70b9 M series +:000000 100644 00000000 627afda2 A glibc-CVE-2015-7547.patch +:100644 100644 97335bee 6b3b8bfa M glibc.spec +:100644 100644 528fb2e2 e3f70b95 M series commit 29b39d6e5623c213fce6701da535bc46848635e0 Author: Florian Weimer @@ -20628,8 +20748,8 @@ CommitDate: Mon Feb 15 12:22:50 2016 +0100 Revert upstream commit 2212c1420c92a33b0e0bd9a34938c9814a56c0f7. -:000000 100644 0000000 5e69e9a A glibc-rh1252570.patch -:100644 100644 3014e58 97335be M glibc.spec +:000000 100644 00000000 5e69e9a0 A glibc-rh1252570.patch +:100644 100644 3014e58d 97335bee M glibc.spec commit 432964b3d9ec38db4b6348b808298619b3b72806 Author: Florian Weimer @@ -20641,8 +20761,8 @@ CommitDate: Mon Feb 15 12:12:34 2016 +0100 This reverts commit 49a15d1f644b22093ec95a97745b790ef2e3285f. -:100644 000000 7239ced 0000000 D glibc-rh1306511.patch -:100644 100644 9b7edd9 3014e58 M glibc.spec +:100644 000000 7239ced1 00000000 D glibc-rh1306511.patch +:100644 100644 9b7edd9a 3014e58d M glibc.spec commit 49a15d1f644b22093ec95a97745b790ef2e3285f Author: Florian Weimer @@ -20654,8 +20774,8 @@ CommitDate: Sat Feb 13 13:34:31 2016 +0100 Support aliasing with struct sockaddr pointers. -:000000 100644 0000000 7239ced A glibc-rh1306511.patch -:100644 100644 3857139 9b7edd9 M glibc.spec +:000000 100644 00000000 7239ced1 A glibc-rh1306511.patch +:100644 100644 38571390 9b7edd9a M glibc.spec commit 7dc8bfc342d6410eb25302c91e0f797169a60120 Author: Florian Weimer @@ -20665,9 +20785,9 @@ CommitDate: Sat Feb 13 13:27:45 2016 +0100 Auto-sync with upstream master. -:100644 100644 e69de29 71c3904 M .gitignore -:100644 100644 844e181 3857139 M glibc.spec -:100644 100644 a96a8d3 2151b4a M sources +:100644 100644 e69de29b 71c39042 M .gitignore +:100644 100644 844e181a 38571390 M glibc.spec +:100644 100644 a96a8d31 2151b4ae M sources commit b60f74076c7cd0e1a83c4d6f26c90bf7bd40fc2f Author: Carlos O'Donell @@ -20679,8 +20799,8 @@ CommitDate: Tue Feb 9 03:48:54 2016 -0500 - Use --with-cpu=power8 for ppc64le default runtime (#1227361). -:100644 100644 d8f8d16 e69de29 M .gitignore -:100644 100644 5cb5262 844e181 M glibc.spec +:100644 100644 d8f8d16a e69de29b M .gitignore +:100644 100644 5cb52628 844e181a M glibc.spec commit 363323a3b9fac77274ee5618e06d909cfaa0ad04 Author: Florian Weimer @@ -20690,9 +20810,9 @@ CommitDate: Tue Feb 2 12:28:36 2016 +0100 Apply glibc-isinf-cxx11.patch to improve C++11 compatibility -:000000 100644 0000000 b65a2f3 A glibc-isinf-cxx11.patch -:100644 100644 d97f47a 5cb5262 M glibc.spec -:100644 100644 e33ce36 528fb2e M series +:000000 100644 00000000 b65a2f3e A glibc-isinf-cxx11.patch +:100644 100644 d97f47a6 5cb52628 M glibc.spec +:100644 100644 e33ce36f 528fb2e2 M series commit b2bf60e8255e0ae7bc74ebace04d9ea3f3ed2abe Author: Florian Weimer @@ -20702,10 +20822,10 @@ CommitDate: Tue Feb 2 12:19:16 2016 +0100 Auto-sync with upstream master. -:100644 100644 35ec57d d8f8d16 M .gitignore -:100644 100644 0eb0b57 d97f47a M glibc.spec -:100644 100644 9eeba36 a96a8d3 M sources -:100755 100755 3a792f7 765e682 M sync-upstream.sh +:100644 100644 35ec57d0 d8f8d16a M .gitignore +:100644 100644 0eb0b57e d97f47a6 M glibc.spec +:100644 100644 9eeba36d a96a8d31 M sources +:100755 100755 3a792f77 765e682a M sync-upstream.sh commit 2b8a8117dc75d9d8e286929f251a84c06a78250d Author: Florian Weimer @@ -20715,9 +20835,9 @@ CommitDate: Thu Jan 28 14:24:44 2016 +0100 Add workaround for GCC PR69537 -:000000 100644 0000000 9f395d5 A glibc-gcc-PR69537.patch -:100644 100644 1857df5 0eb0b57 M glibc.spec -:100644 100644 11bfbcd e33ce36 M series +:000000 100644 00000000 9f395d53 A glibc-gcc-PR69537.patch +:100644 100644 1857df54 0eb0b57e M glibc.spec +:100644 100644 11bfbcd3 e33ce36f M series commit 05ffab72b4a77e27580754c53f4a3a834aa7f40e Author: Florian Weimer @@ -20727,9 +20847,9 @@ CommitDate: Thu Jan 28 11:54:08 2016 +0100 Auto-sync with upstream master. -:100644 100644 e69de29 35ec57d M .gitignore -:100644 100644 1acdcec 1857df5 M glibc.spec -:100644 100644 f2700aa 9eeba36 M sources +:100644 100644 e69de29b 35ec57d0 M .gitignore +:100644 100644 1acdcecf 1857df54 M glibc.spec +:100644 100644 f2700aa2 9eeba36d M sources commit 8e51854b9bbd20d37781ad80354fbbd6493c6a64 Author: Florian Weimer @@ -20739,9 +20859,9 @@ CommitDate: Thu Jan 28 11:49:46 2016 +0100 Drop pthread barrier patch, merged upstream -:100644 000000 4071e59 0000000 D glibc-pthread-barrier.patch -:100644 100644 8fc1617 1acdcec M glibc.spec -:100644 100644 900d53b 11bfbcd M series +:100644 000000 4071e59e 00000000 D glibc-pthread-barrier.patch +:100644 100644 8fc16171 1acdcecf M glibc.spec +:100644 100644 900d53b2 11bfbcd3 M series commit 8084be9f8c5b8428d081d899d0d15eaaa22a8816 Author: Carlos O'Donell @@ -20751,10 +20871,10 @@ CommitDate: Wed Jan 13 21:35:53 2016 -0500 New pthread_barrier algorithm with improved standards compliance. -:100644 100644 339be6d e69de29 M .gitignore -:000000 100644 0000000 4071e59 A glibc-pthread-barrier.patch -:100644 100644 5512d2c 8fc1617 M glibc.spec -:100644 100644 c2bfbfc 900d53b M series +:100644 100644 339be6d9 e69de29b M .gitignore +:000000 100644 00000000 4071e59e A glibc-pthread-barrier.patch +:100644 100644 5512d2c4 8fc16171 M glibc.spec +:100644 100644 c2bfbfc8 900d53b2 M series commit a999deb25a0ffad18defbadd6c6fb3bfc70fbe3d Author: Carlos O'Donell @@ -20766,8 +20886,8 @@ CommitDate: Wed Jan 13 12:59:35 2016 -0500 - Add group merging support for distributed management (#1146822). -:000000 100644 0000000 0188652 A glibc-nsswitch-Add-group-merging-support.patch -:100644 100644 bcab66c 5512d2c M glibc.spec +:000000 100644 00000000 0188652f A glibc-nsswitch-Add-group-merging-support.patch +:100644 100644 bcab66cf 5512d2c4 M glibc.spec commit 130c4973ff0aa0d4b002094b7954a179a3f9857c Author: Carlos O'Donell @@ -20782,7 +20902,7 @@ CommitDate: Tue Jan 12 11:59:28 2016 -0500 We specify clearly exactly what we support for BE and LE 64-bit POWER. -:100644 100644 fbf4acf bcab66c M glibc.spec +:100644 100644 fbf4acfc bcab66cf M glibc.spec commit 832f52f3cc9417ea3c35b71d26af05b950ead83b Author: Florian Weimer @@ -20792,8 +20912,8 @@ CommitDate: Mon Dec 21 17:31:12 2015 +0100 Auto-sync with upstream master. -:100644 100644 ad9af20 fbf4acf M glibc.spec -:100644 100644 3dce49a f2700aa M sources +:100644 100644 ad9af201 fbf4acfc M glibc.spec +:100644 100644 3dce49a1 f2700aa2 M sources commit b79a5ba9e6c525c389a80c23af4417ff56465fc8 Author: Florian Weimer @@ -20806,13 +20926,13 @@ CommitDate: Wed Dec 16 14:00:32 2015 +0100 This includes a fix for rhbz#1281714. Manually remove the Unicode 8.0 patches, which have been merged upstream. -:100644 000000 fd42ca7 0000000 D glibc-rh1238412-add-translit-rules-for-da-nb-nn-sv-locales.patch -:100644 000000 b2de519 0000000 D glibc-rh1238412-addition-and-fixes-for-translit_neutral.patch -:100644 000000 d2021a1 0000000 D glibc-rh1238412-remove-duplicate-transliterations.patch -:100644 000000 148f493 0000000 D glibc-rh1238412-unicode-8.0.0-update.patch -:100644 000000 9d49544 0000000 D glibc-rh1238412-update-the-translit-files-to-unicode-7.0.0.patch -:100644 100644 b051eb6 ad9af20 M glibc.spec -:100644 100644 a84608c 3dce49a M sources +:100644 000000 fd42ca7c 00000000 D glibc-rh1238412-add-translit-rules-for-da-nb-nn-sv-locales.patch +:100644 000000 b2de5190 00000000 D glibc-rh1238412-addition-and-fixes-for-translit_neutral.patch +:100644 000000 d2021a1f 00000000 D glibc-rh1238412-remove-duplicate-transliterations.patch +:100644 000000 148f4933 00000000 D glibc-rh1238412-unicode-8.0.0-update.patch +:100644 000000 9d495441 00000000 D glibc-rh1238412-update-the-translit-files-to-unicode-7.0.0.patch +:100644 100644 b051eb62 ad9af201 M glibc.spec +:100644 100644 a84608c1 3dce49a1 M sources commit d604db4c4f4629c97ea25861bfe974a8aad4c2db Author: Florian Weimer @@ -20824,7 +20944,7 @@ CommitDate: Sat Dec 5 20:31:00 2015 +0100 Put libmvec_nonshared.a into the -devel package. -:100644 100644 1676b7a b051eb6 M glibc.spec +:100644 100644 1676b7a2 b051eb62 M glibc.spec commit e0ca9a36a5dec1db49263f2ba25b66a9ead2cef7 Author: Florian Weimer @@ -20834,8 +20954,8 @@ CommitDate: Sat Dec 5 15:53:14 2015 +0100 Auto-sync with upstream master. -:100644 100644 554a5f0 1676b7a M glibc.spec -:100644 100644 585d5c8 a84608c M sources +:100644 100644 554a5f05 1676b7a2 M glibc.spec +:100644 100644 585d5c88 a84608c1 M sources commit 933c6091f307db339a613b66499d2d9f97ac2131 Author: Jaromir Capik @@ -20845,8 +20965,8 @@ CommitDate: Thu Dec 3 15:34:40 2015 +0100 Adding BUILD_CC to the STAGE1 bootstrap recipes -:100644 100644 f9ee5ba 4a31ea0 M STAGE1-glibc -:100644 100644 f1dad9e c58c541 M STAGE1-glibc-headers +:100644 100644 f9ee5ba0 4a31ea0a M STAGE1-glibc +:100644 100644 f1dad9e4 c58c5419 M STAGE1-glibc-headers commit 8fdf674ae9ac2dba7eb325f2bf9c6661b04af9b8 Author: Carlos O'Donell @@ -20864,9 +20984,9 @@ CommitDate: Fri Nov 27 01:14:36 2015 -0500 - Require gcc-c++, libstdc++-static, and glibc-static only when needed. - Fix --without docs to not leave info files. -:100644 000000 36ef59c 0000000 D glibc-fedora-elf-init-hidden_undef.patch -:100644 100644 de120d2 554a5f0 M glibc.spec -:000000 100644 0000000 86e99b9 A template.patch +:100644 000000 36ef59c9 00000000 D glibc-fedora-elf-init-hidden_undef.patch +:100644 100644 de120d2d 554a5f05 M glibc.spec +:000000 100644 00000000 86e99b9b A template.patch commit 2e15a6b6a772bcf7bfb7d0b0d39bb899e65bad55 Author: Florian Weimer @@ -20876,8 +20996,8 @@ CommitDate: Fri Nov 20 10:08:34 2015 +0100 Auto-sync with upstream master. -:100644 100644 b80c189 de120d2 M glibc.spec -:100644 100644 5089298 585d5c8 M sources +:100644 100644 b80c1891 de120d2d M glibc.spec +:100644 100644 50892987 585d5c88 M sources commit 43aaa98743b1d25a2d6f711c0bd4b8dc22e74a75 Author: Florian Weimer @@ -20887,8 +21007,8 @@ CommitDate: Wed Nov 18 13:30:53 2015 +0100 Auto-sync with upstream master. -:100644 100644 136a5da b80c189 M glibc.spec -:100644 100644 d6d4a14 5089298 M sources +:100644 100644 136a5dad b80c1891 M glibc.spec +:100644 100644 d6d4a145 50892987 M sources commit be3e53e1000f3abe57d0f0ddf3b25cd3b2ce0ac1 Author: Florian Weimer @@ -20900,7 +21020,7 @@ CommitDate: Wed Nov 18 13:28:07 2015 +0100 Disable -Werror on s390. -:100644 100644 96629e1 136a5da M glibc.spec +:100644 100644 96629e16 136a5dad M glibc.spec commit 209b489bc2cf863d79c635e5922a1f51f0d12064 Author: Florian Weimer @@ -20910,8 +21030,8 @@ CommitDate: Mon Nov 16 21:40:35 2015 +0100 Auto-sync with upstream master. -:100644 100644 c31817f 96629e1 M glibc.spec -:100644 100644 249a033 d6d4a14 M sources +:100644 100644 c31817fe 96629e16 M glibc.spec +:100644 100644 249a0338 d6d4a145 M sources commit 711d6257aac9745247fd1c8a710f031e79f9f06e Author: Florian Weimer @@ -20923,8 +21043,8 @@ CommitDate: Mon Nov 16 21:37:03 2015 +0100 This reverts commit bf5e09bbb8cbd0786fd3105e6bec439584752af6. -:100644 000000 c33571d 0000000 D glibc-fedora-armhfp-long-double-hotfix.patch -:100644 100644 8250a60 c31817f M glibc.spec +:100644 000000 c33571d3 00000000 D glibc-fedora-armhfp-long-double-hotfix.patch +:100644 100644 8250a60e c31817fe M glibc.spec commit 0cffc9ae0ca6297c83c331fe3bc9acbaa9bcc373 Author: Carlos O'Donell @@ -20934,7 +21054,7 @@ CommitDate: Mon Nov 9 21:27:13 2015 -0500 Update quilt series parster to understand %{name}. -:100755 100755 6cc2dc3 35412de M gen-quilt-series.sh +:100755 100755 6cc2dc33 35412de1 M gen-quilt-series.sh commit bf5e09bbb8cbd0786fd3105e6bec439584752af6 Author: Florian Weimer @@ -20944,8 +21064,8 @@ CommitDate: Mon Nov 9 17:44:11 2015 +0100 Apply temporary fix for armhfp build issue -:000000 100644 0000000 c33571d A glibc-fedora-armhfp-long-double-hotfix.patch -:100644 100644 1db04e8 8250a60 M glibc.spec +:000000 100644 00000000 c33571d3 A glibc-fedora-armhfp-long-double-hotfix.patch +:100644 100644 1db04e8c 8250a60e M glibc.spec commit c6ef02b1b41eca7dcf55241f1d28b7475e834dd6 Author: Florian Weimer @@ -20955,8 +21075,8 @@ CommitDate: Mon Nov 9 13:15:50 2015 +0100 Auto-sync with upstream master. -:100644 100644 cf1f2f5 1db04e8 M glibc.spec -:100644 100644 1083b1c 249a033 M sources +:100644 100644 cf1f2f59 1db04e8c M glibc.spec +:100644 100644 1083b1c5 249a0338 M sources commit 078b76fd6fa0bb4e52568d62040edac9ae857267 Author: Florian Weimer @@ -20968,7 +21088,7 @@ CommitDate: Mon Nov 9 12:29:48 2015 +0100 Log uname, cpuinfo, meminfo during build -:100644 100644 c75ab38 cf1f2f5 M glibc.spec +:100644 100644 c75ab38f cf1f2f59 M glibc.spec commit 972d23085638565bb061ca36ba829174e5dedf53 Author: Jaromir Capik @@ -20978,8 +21098,8 @@ CommitDate: Thu Nov 5 17:54:43 2015 +0100 Fix for early stage2 SIGSEGV + 32-bit TARGET rework -:100644 100644 50e57ec f9ee5ba M STAGE1-glibc -:100644 100644 a8969d3 f1dad9e M STAGE1-glibc-headers +:100644 100644 50e57ecc f9ee5ba0 M STAGE1-glibc +:100644 100644 a8969d3f f1dad9e4 M STAGE1-glibc-headers commit 4cc081474ce5365d929251f5e381acd19815894f Author: Florian Weimer @@ -20989,9 +21109,9 @@ CommitDate: Fri Oct 30 19:26:52 2015 +0100 Auto-sync with upstream master. -:100644 000000 856b11c 0000000 D glibc-new-condvar.patch -:100644 100644 432f6de c75ab38 M glibc.spec -:100644 100644 5f55751 1083b1c M sources +:100644 000000 856b11c4 00000000 D glibc-new-condvar.patch +:100644 100644 432f6de4 c75ab38f M glibc.spec +:100644 100644 5f557519 1083b1c5 M sources commit dd0aad2bf0e54beec4c23d3ddbc2840e3af8f505 Author: Florian Weimer @@ -21003,7 +21123,7 @@ CommitDate: Fri Oct 30 19:23:50 2015 +0100 Revert to upstream implementation of condition variables. -:100644 100644 bf86aa9 432f6de M glibc.spec +:100644 100644 bf86aa9a 432f6de4 M glibc.spec commit 06476591343179008ffd1311045728fe16ce9336 Author: Florian Weimer @@ -21017,7 +21137,7 @@ CommitDate: Wed Oct 28 16:52:56 2015 +0100 - Disable valgrind test for ppc64p7, too. -:100644 100644 5c595b3 bf86aa9 M glibc.spec +:100644 100644 5c595b3a bf86aa9a M glibc.spec commit d387855c4990cd5accac769b2138d291f35f8633 Author: Carlos O'Donell @@ -21031,7 +21151,7 @@ CommitDate: Mon Oct 26 16:03:54 2015 -0400 - Disable valgrind test for ppc64. -:100644 100644 e077800 5c595b3 M glibc.spec +:100644 100644 e077800b 5c595b3a M glibc.spec commit f768365ef523aba5ac93a2600075ad0efefb49a6 Author: Carlos O'Donell @@ -21041,10 +21161,10 @@ CommitDate: Wed Oct 21 22:28:24 2015 -0400 Sync with upstream master. -:100644 100644 143d05e 856b11c M glibc-new-condvar.patch -:100644 100644 a4894cf e077800 M glibc.spec -:100644 100644 09ee106 c2bfbfc M series -:100644 100644 b8d5337 5f55751 M sources +:100644 100644 143d05e5 856b11c4 M glibc-new-condvar.patch +:100644 100644 a4894cf8 e077800b M glibc.spec +:100644 100644 09ee1063 c2bfbfc8 M series +:100644 100644 b8d5337e 5f557519 M sources commit e61b8f41f2b4f1bed2a8b0d06646988acd1ec719 Author: Carlos O'Donell @@ -21054,13 +21174,13 @@ CommitDate: Wed Oct 21 15:24:28 2015 -0400 Sync with upstream master. -:100755 100755 4e321d0 6cc2dc3 M gen-quilt-series.sh -:100644 100644 7a63cb3 143d05e M glibc-new-condvar.patch -:100644 100644 b3706f0 4f5ae83 M glibc-res-hconf-gcc5.patch -:100644 100644 0ef8419 d9b3752 M glibc-rh741105.patch -:100644 100644 2a54070 a4894cf M glibc.spec -:100644 100644 a6a9951 09ee106 M series -:100644 100644 88c5a8e b8d5337 M sources +:100755 100755 4e321d00 6cc2dc33 M gen-quilt-series.sh +:100644 100644 7a63cb38 143d05e5 M glibc-new-condvar.patch +:100644 100644 b3706f0e 4f5ae83b M glibc-res-hconf-gcc5.patch +:100644 100644 0ef8419e d9b37522 M glibc-rh741105.patch +:100644 100644 2a540705 a4894cf8 M glibc.spec +:100644 100644 a6a99516 09ee1063 M series +:100644 100644 88c5a8e3 b8d5337e M sources commit 4d789e132ed1610b7788a91e82ef1e9040e2c4a5 Author: Carlos O'Donell @@ -21072,7 +21192,7 @@ CommitDate: Fri Oct 9 21:00:30 2015 -0400 - Remove libbsd.a (#1193168). -:100644 100644 6904462 2a54070 M glibc.spec +:100644 100644 69044621 2a540705 M glibc.spec commit 0457f649e3fe6299efe384da13dfc923bbe65707 Author: Carlos O'Donell @@ -21089,18 +21209,18 @@ CommitDate: Thu Sep 17 12:24:49 2015 -0400 - Fix GCC 5 and -Werror related build failures. - Fix --install-langs bug which causes SIGABRT (#1262040). -:100644 100644 a93a583 7b67937 M README.quilt -:100644 100644 a506876 5fc93ff M build-locale-archive.c -:000000 100644 0000000 c5a704e A glibc-bug-regex-gcc5.patch -:000000 100644 0000000 f5da419 A glibc-c-utf8-locale.patch -:000000 100644 0000000 abbceb2 A glibc-dns-host-gcc5.patch -:000000 100644 0000000 43b7ef3 A glibc-gethnamaddr-gcc5.patch -:000000 100644 0000000 78e7fd4 A glibc-ld-ctype-gcc5.patch -:000000 100644 0000000 b3706f0 A glibc-res-hconf-gcc5.patch -:100644 100644 0fe54f2 6904462 M glibc.spec -:100644 100644 85309bf 290489b M glibc_post_upgrade.c -:100755 100755 e565d19 983a75d M quilt-patch.sh -:100644 100644 f4939a5 a6a9951 M series +:100644 100644 a93a583f 7b67937a M README.quilt +:100644 100644 a5068767 5fc93ffa M build-locale-archive.c +:000000 100644 00000000 c5a704e2 A glibc-bug-regex-gcc5.patch +:000000 100644 00000000 f5da4192 A glibc-c-utf8-locale.patch +:000000 100644 00000000 abbceb27 A glibc-dns-host-gcc5.patch +:000000 100644 00000000 43b7ef3a A glibc-gethnamaddr-gcc5.patch +:000000 100644 00000000 78e7fd4f A glibc-ld-ctype-gcc5.patch +:000000 100644 00000000 b3706f0e A glibc-res-hconf-gcc5.patch +:100644 100644 0fe54f25 69044621 M glibc.spec +:100644 100644 85309bfb 290489b6 M glibc_post_upgrade.c +:100755 100755 e565d198 983a75d4 M quilt-patch.sh +:100644 100644 f4939a54 a6a99516 M series commit 444c2ecfbca6d5761aeb1c1888a16f0973d073c8 Author: Carlos O'Donell @@ -21110,8 +21230,8 @@ CommitDate: Fri Aug 28 17:03:18 2015 -0400 Auto-sync with upstream master. -:100644 100644 010a6ee 0fe54f2 M glibc.spec -:100644 100644 d992632 88c5a8e M sources +:100644 100644 010a6ee6 0fe54f25 M glibc.spec +:100644 100644 d9926323 88c5a8e3 M sources commit 6e8e9f6f52598d3ab87773f9d8a1fe6479831522 Author: Carlos O'Donell @@ -21137,16 +21257,16 @@ CommitDate: Fri Aug 28 15:29:26 2015 -0400 - Remove c_stubs add-on and enable fuller support for static binaries. - Remove librtkaio support (#1227855). -:100755 100755 9f6c94a 4e321d0 M gen-quilt-series.sh -:100644 000000 934f0d0 0000000 D glibc-c_stubs.patch -:100644 000000 e3f4eca 0000000 D glibc-rh731833-rtkaio-2.patch -:100644 000000 b161739 0000000 D glibc-rh731833-rtkaio.patch -:100644 000000 d790735 0000000 D glibc-rh970865.patch -:100644 000000 4aff826 0000000 D glibc-rtkaio-clock.patch -:100644 000000 3db525e 0000000 D glibc-rtkaio-libof.patch -:100644 000000 f5940d6 0000000 D glibc-rtkaio.patch -:100644 100644 bf8f2e2 010a6ee M glibc.spec -:100644 100644 dd09653 f4939a5 M series +:100755 100755 9f6c94a6 4e321d00 M gen-quilt-series.sh +:100644 000000 934f0d06 00000000 D glibc-c_stubs.patch +:100644 000000 e3f4ecae 00000000 D glibc-rh731833-rtkaio-2.patch +:100644 000000 b1617393 00000000 D glibc-rh731833-rtkaio.patch +:100644 000000 d7907359 00000000 D glibc-rh970865.patch +:100644 000000 4aff826d 00000000 D glibc-rtkaio-clock.patch +:100644 000000 3db525e9 00000000 D glibc-rtkaio-libof.patch +:100644 000000 f5940d6c 00000000 D glibc-rtkaio.patch +:100644 100644 bf8f2e22 010a6ee6 M glibc.spec +:100644 100644 dd096536 f4939a54 M series commit ac22d64886d80f739217aa9bad7d7fc45a206c39 Author: Siddhesh Poyarekar @@ -21156,8 +21276,8 @@ CommitDate: Sun Aug 16 09:51:12 2015 +0530 Auto-sync with upstream master. -:100644 100644 1553fb8 bf8f2e2 M glibc.spec -:100644 100644 83fb67f d992632 M sources +:100644 100644 1553fb85 bf8f2e22 M glibc.spec +:100644 100644 83fb67f8 d9926323 M sources commit b893edf7948bb881ca06869215d799e5c99ba7f4 Author: Siddhesh Poyarekar @@ -21167,8 +21287,8 @@ CommitDate: Fri Aug 14 13:38:42 2015 +0530 Remove initgroups from default nsswitch.conf -:100644 100644 08c5353 1553fb8 M glibc.spec -:100644 100644 2f6c84e 1e2b63d M nsswitch.conf +:100644 100644 08c53533 1553fb85 M glibc.spec +:100644 100644 2f6c84e5 1e2b63d5 M nsswitch.conf commit daa5a48a9bd1e17a2aec9477604ceaee03375f99 Author: Siddhesh Poyarekar @@ -21178,10 +21298,10 @@ CommitDate: Fri Aug 14 12:30:00 2015 +0530 Sync with upstream master -:100644 100644 b782da0 3e81dce M glibc-disable-rwlock-elision.patch -:100644 100644 747bf0d 7a63cb3 M glibc-new-condvar.patch -:100644 100644 247783e 08c5353 M glibc.spec -:100644 100644 fcfa4bc 83fb67f M sources +:100644 100644 b782da06 3e81dceb M glibc-disable-rwlock-elision.patch +:100644 100644 747bf0d7 7a63cb38 M glibc-new-condvar.patch +:100644 100644 247783e2 08c53533 M glibc.spec +:100644 100644 fcfa4bcf 83fb67f8 M sources commit 6223dbf32d2b599a8ef6df0f07140e4a563269b5 Author: Siddhesh Poyarekar @@ -21198,16 +21318,16 @@ CommitDate: Tue Jul 28 08:17:23 2015 +0530 - Set MODULE_NAME=librt for rtkaio - Fix up glibc-rh741105.patch to continue to work with latest master -:100644 100644 ed628ac 9db69d6 M glibc-aarch64-workaround-nzcv-clobber-in-tlsdesc.patch -:100644 000000 d89498f 0000000 D glibc-bench-compare.patch -:100644 000000 e0aaded 0000000 D glibc-revert-arena-threshold-fix.patch -:100644 100644 ac656b5 abcb8fa M glibc-rh1013801.patch -:100644 100644 973beb5 0ef8419 M glibc-rh741105.patch -:100644 000000 a630ec9 0000000 D glibc-rh757881.patch -:100644 000000 76f85bf 0000000 D glibc-rh841787.patch -:000000 100644 0000000 3db525e A glibc-rtkaio-libof.patch -:100644 100644 28c2bd1 247783e M glibc.spec -:100644 100644 d1018e9 fcfa4bc M sources +:100644 100644 ed628ac2 9db69d61 M glibc-aarch64-workaround-nzcv-clobber-in-tlsdesc.patch +:100644 000000 d89498f7 00000000 D glibc-bench-compare.patch +:100644 000000 e0aaded2 00000000 D glibc-revert-arena-threshold-fix.patch +:100644 100644 ac656b52 abcb8fa1 M glibc-rh1013801.patch +:100644 100644 973beb59 0ef8419e M glibc-rh741105.patch +:100644 000000 a630ec97 00000000 D glibc-rh757881.patch +:100644 000000 76f85bf2 00000000 D glibc-rh841787.patch +:000000 100644 00000000 3db525e9 A glibc-rtkaio-libof.patch +:100644 100644 28c2bd10 247783e2 M glibc.spec +:100644 100644 d1018e9c fcfa4bcf M sources commit 706a051a42f2f432aed38caff0bb2d32f8cbb858 Author: Mike FABIAN @@ -21219,12 +21339,12 @@ CommitDate: Thu Jul 23 15:44:24 2015 +0200 (and pylint warning fixes to the gen_translit_* scripts by Pravin Satpute) -:100644 100644 dd9ecd6 fd42ca7 M glibc-rh1238412-add-translit-rules-for-da-nb-nn-sv-locales.patch -:100644 100644 17abd7d b2de519 M glibc-rh1238412-addition-and-fixes-for-translit_neutral.patch -:100644 100644 7a5c7d7 d2021a1 M glibc-rh1238412-remove-duplicate-transliterations.patch -:100644 100644 cca01f5 148f493 M glibc-rh1238412-unicode-8.0.0-update.patch -:100644 100644 5a81eb3 9d49544 M glibc-rh1238412-update-the-translit-files-to-unicode-7.0.0.patch -:100644 100644 3dc9ac7 28c2bd1 M glibc.spec +:100644 100644 dd9ecd67 fd42ca7c M glibc-rh1238412-add-translit-rules-for-da-nb-nn-sv-locales.patch +:100644 100644 17abd7da b2de5190 M glibc-rh1238412-addition-and-fixes-for-translit_neutral.patch +:100644 100644 7a5c7d7c d2021a1f M glibc-rh1238412-remove-duplicate-transliterations.patch +:100644 100644 cca01f56 148f4933 M glibc-rh1238412-unicode-8.0.0-update.patch +:100644 100644 5a81eb3e 9d495441 M glibc-rh1238412-update-the-translit-files-to-unicode-7.0.0.patch +:100644 100644 3dc9ac7f 28c2bd10 M glibc.spec commit 37b7dfda476b23a027e0cabf6208917455ee9603 Author: Mike FABIAN @@ -21236,7 +21356,7 @@ CommitDate: Wed Jul 15 17:28:17 2015 +0200 And fix the format of the bugzilla reference in the changelog eingry. -:100644 100644 bcfc7d6 3dc9ac7 M glibc.spec +:100644 100644 bcfc7d62 3dc9ac7f M glibc.spec commit dbf5f70dbe86780e8bd5299560d19abe718ea592 Author: Mike FABIAN @@ -21248,12 +21368,12 @@ CommitDate: Tue Jul 14 17:03:49 2015 +0200 - Resolves: rhbz#1238412 -:000000 100644 0000000 dd9ecd6 A glibc-rh1238412-add-translit-rules-for-da-nb-nn-sv-locales.patch -:000000 100644 0000000 17abd7d A glibc-rh1238412-addition-and-fixes-for-translit_neutral.patch -:000000 100644 0000000 7a5c7d7 A glibc-rh1238412-remove-duplicate-transliterations.patch -:000000 100644 0000000 cca01f5 A glibc-rh1238412-unicode-8.0.0-update.patch -:000000 100644 0000000 5a81eb3 A glibc-rh1238412-update-the-translit-files-to-unicode-7.0.0.patch -:100644 100644 b9709e1 bcfc7d6 M glibc.spec +:000000 100644 00000000 dd9ecd67 A glibc-rh1238412-add-translit-rules-for-da-nb-nn-sv-locales.patch +:000000 100644 00000000 17abd7da A glibc-rh1238412-addition-and-fixes-for-translit_neutral.patch +:000000 100644 00000000 7a5c7d7c A glibc-rh1238412-remove-duplicate-transliterations.patch +:000000 100644 00000000 cca01f56 A glibc-rh1238412-unicode-8.0.0-update.patch +:000000 100644 00000000 5a81eb3e A glibc-rh1238412-update-the-translit-files-to-unicode-7.0.0.patch +:100644 100644 b9709e14 bcfc7d62 M glibc.spec commit 33fde86f29ab9820d5e001af4fcd11fece780a9b Author: Carlos O'Donell @@ -21263,11 +21383,11 @@ CommitDate: Tue Jul 7 14:04:07 2015 -0400 Add quilt support to rawhide. -:000000 100644 0000000 a93a583 A README.quilt -:000000 100755 0000000 9f6c94a A gen-quilt-series.sh -:100644 100644 0cd13ae b9709e1 M glibc.spec -:000000 100755 0000000 e565d19 A quilt-patch.sh -:000000 100644 0000000 dd09653 A series +:000000 100644 00000000 a93a583f A README.quilt +:000000 100755 00000000 9f6c94a6 A gen-quilt-series.sh +:100644 100644 0cd13ae4 b9709e14 M glibc.spec +:000000 100755 00000000 e565d198 A quilt-patch.sh +:000000 100644 00000000 dd096536 A series commit 2542c05d119ceb5b73daa719de7dcb184273fdeb Author: Carlos O'Donell @@ -21277,7 +21397,7 @@ CommitDate: Sun Jun 21 20:17:04 2015 -0400 Remove all linuxthreads handling from spec file. -:100644 100644 2f6180b 0cd13ae M glibc.spec +:100644 100644 2f6180b5 0cd13ae4 M glibc.spec commit d599077305f67bb755dea7c85128a9c2adc319fc Author: Jaromir Capik @@ -21287,8 +21407,8 @@ CommitDate: Thu Jun 18 19:50:16 2015 +0200 Adding STAGE1 bootstrap recipes -:000000 100644 0000000 50e57ec A STAGE1-glibc -:000000 100644 0000000 a8969d3 A STAGE1-glibc-headers +:000000 100644 00000000 50e57ecc A STAGE1-glibc +:000000 100644 00000000 a8969d3f A STAGE1-glibc-headers commit e63fda9e1a33b6404096ae81ceaec2bdb1259f66 Author: Carlos O'Donell @@ -21302,7 +21422,7 @@ CommitDate: Wed Jun 17 16:40:15 2015 -0400 and keep generic variant in headers package, thus keeping headers package content and file list identical across multilib rpms. -:100644 100644 4390557 2f6180b M glibc.spec +:100644 100644 4390557f 2f6180b5 M glibc.spec commit 5ee623b90011f8cbfedc47c278b0059966ffb1cc Author: Dennis Gilmore @@ -21312,7 +21432,7 @@ CommitDate: Wed Jun 17 08:26:56 2015 +0000 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild -:100644 100644 14a2569 4390557 M glibc.spec +:100644 100644 14a2569b 4390557f M glibc.spec commit 1c7c72382356644ba3aff8ad161f67e77db10e75 Author: Carlos O'Donell @@ -21322,8 +21442,8 @@ CommitDate: Wed Jun 3 11:45:53 2015 -0400 Remove DTV_SURPLUS increase after limit was removed. -:100644 000000 0b0c3ab 0000000 D glibc-rh1124987.patch -:100644 100644 9f9d921 14a2569 M glibc.spec +:100644 000000 0b0c3ab6 00000000 D glibc-rh1124987.patch +:100644 100644 9f9d921d 14a2569b M glibc.spec commit 8178d6f0a660c31e0b203dd9a32516ea4e3260b2 Author: Siddhesh Poyarekar @@ -21333,8 +21453,8 @@ CommitDate: Sat May 30 09:40:53 2015 +0530 Fix build failure on aarch64 (#1226459) -:100644 100644 bb8e870 747bf0d M glibc-new-condvar.patch -:100644 100644 4876fce 9f9d921 M glibc.spec +:100644 100644 bb8e870f 747bf0d7 M glibc-new-condvar.patch +:100644 100644 4876fcea 9f9d921d M glibc.spec commit a7f6b6e32668a82fbd0df7c9366722f6142c1643 Author: Siddhesh Poyarekar @@ -21344,8 +21464,8 @@ CommitDate: Mon May 18 12:21:44 2015 +0530 Add new condvar implementation -:000000 100644 0000000 bb8e870 A glibc-new-condvar.patch -:100644 100644 0b885f2 4876fce M glibc.spec +:000000 100644 00000000 bb8e870f A glibc-new-condvar.patch +:100644 100644 0b885f2f 4876fcea M glibc.spec commit 7047693f5511ebabc31ba3e26bf792a67ea90101 Author: Siddhesh Poyarekar @@ -21355,10 +21475,10 @@ CommitDate: Mon May 18 12:21:44 2015 +0530 Sync with upstream master -:100644 100644 269f60a a982eef M glibc-bench-build.patch -:100644 100644 ee1463a c4a39f6 M glibc-fedora-localedef.patch -:100644 100644 224722b 0b885f2 M glibc.spec -:100644 100644 bfaee1f d1018e9 M sources +:100644 100644 269f60a4 a982eef4 M glibc-bench-build.patch +:100644 100644 ee1463a2 c4a39f6e M glibc-fedora-localedef.patch +:100644 100644 224722bd 0b885f2f M glibc.spec +:100644 100644 bfaee1f5 d1018e9c M sources commit adaecdb51b9baadf6c3a9641775843bc8c227529 Author: Siddhesh Poyarekar @@ -21368,7 +21488,7 @@ CommitDate: Fri May 8 19:15:05 2015 +0530 bump version -:100644 100644 869fe07 224722b M glibc.spec +:100644 100644 869fe074 224722bd M glibc.spec commit 67b30d7656bfecfd6e4f22762344b249b76a9a85 Author: Siddhesh Poyarekar @@ -21398,11 +21518,11 @@ CommitDate: Fri May 8 11:49:59 2015 +0530 /usr/libexec/glibc-benchtests/glibc-bench-compare -p -:000000 100644 0000000 dfe46bd A bench.mk -:000000 100644 0000000 269f60a A glibc-bench-build.patch -:000000 100755 0000000 84e3aba A glibc-bench-compare -:000000 100644 0000000 d89498f A glibc-bench-compare.patch -:100644 100644 dd0b4e6 869fe07 M glibc.spec +:000000 100644 00000000 dfe46bdb A bench.mk +:000000 100644 00000000 269f60a4 A glibc-bench-build.patch +:000000 100755 00000000 84e3abad A glibc-bench-compare +:000000 100644 00000000 d89498f7 A glibc-bench-compare.patch +:100644 100644 dd0b4e67 869fe074 M glibc.spec commit adbfe47d74ead65110d595e2cc427e5f3bdf36f8 Author: Siddhesh Poyarekar @@ -21412,9 +21532,9 @@ CommitDate: Thu May 7 12:10:16 2015 +0530 Auto-sync with upstream master. -:000000 100644 0000000 e0aaded A glibc-revert-arena-threshold-fix.patch -:100644 100644 97eba8a dd0b4e6 M glibc.spec -:100644 100644 5e02458 bfaee1f M sources +:000000 100644 00000000 e0aaded2 A glibc-revert-arena-threshold-fix.patch +:100644 100644 97eba8a2 dd0b4e67 M glibc.spec +:100644 100644 5e024583 bfaee1f5 M sources commit 943a064b9083f02c9e9e314eabbe1cb773c1c782 Author: Siddhesh Poyarekar @@ -21426,8 +21546,8 @@ CommitDate: Tue Apr 7 21:02:28 2015 +0530 This reverts commit 3d147acd8dcfd7ee6e3f714e5a5c08617d7c997b. -:100644 100644 21d1d52 97eba8a M glibc.spec -:100644 100644 f170c75 5e02458 M sources +:100644 100644 21d1d527 97eba8a2 M glibc.spec +:100644 100644 f170c751 5e024583 M sources commit 3d147acd8dcfd7ee6e3f714e5a5c08617d7c997b Author: Siddhesh Poyarekar @@ -21437,8 +21557,8 @@ CommitDate: Mon Apr 6 16:00:41 2015 +0530 Auto-sync with upstream master. -:100644 100644 898d3e3 21d1d52 M glibc.spec -:100644 100644 5e02458 f170c75 M sources +:100644 100644 898d3e3d 21d1d527 M glibc.spec +:100644 100644 5e024583 f170c751 M sources commit 85b542148e0885ccdb8920e243ec0ffb061e2300 Author: Siddhesh Poyarekar @@ -21448,8 +21568,8 @@ CommitDate: Tue Mar 24 18:04:53 2015 +0530 Auto-sync with upstream master. -:100644 100644 546bfed 898d3e3 M glibc.spec -:100644 100644 59c066e 5e02458 M sources +:100644 100644 546bfed7 898d3e3d M glibc.spec +:100644 100644 59c066e7 5e024583 M sources commit e51327973f070a4ebfb999fbe8633e0e7b1c3c35 Author: Carlos O'Donell @@ -21464,7 +21584,7 @@ CommitDate: Tue Mar 17 01:53:46 2015 -0400 See: https://bugzilla.redhat.com/show_bug.cgi?id=156477#c44 -:100644 100644 1221228 546bfed M glibc.spec +:100644 100644 1221228b 546bfed7 M glibc.spec commit ca47b31b17a31baa144621361a511b5df08c8c8f Author: Siddhesh Poyarekar @@ -21474,8 +21594,8 @@ CommitDate: Thu Mar 12 15:43:36 2015 +0530 Auto-sync with upstream master. -:100644 100644 7095268 1221228 M glibc.spec -:100644 100644 117c38f 59c066e M sources +:100644 100644 70952682 1221228b M glibc.spec +:100644 100644 117c38fe 59c066e7 M sources commit 91764bd9ec690d4b8a886c0a3a104aac12d340d2 Author: Carlos O'Donell @@ -21488,8 +21608,8 @@ CommitDate: Thu Mar 5 16:05:43 2015 -0500 - Support installing only those locales specified by the RPM macro %%_install_langs (#156477). -:100644 100644 187c7e5 a506876 M build-locale-archive.c -:100644 100644 9a8d664 7095268 M glibc.spec +:100644 100644 187c7e52 a5068767 M build-locale-archive.c +:100644 100644 9a8d6644 70952682 M glibc.spec commit 6aa6486e1bd5775d44814ab02439d94e52ee48cd Author: Siddhesh Poyarekar @@ -21499,7 +21619,7 @@ CommitDate: Mon Feb 23 14:22:15 2015 +0530 Fix version number after mass rebuild -:100644 100644 f5aa778 9a8d664 M glibc.spec +:100644 100644 f5aa778c 9a8d6644 M glibc.spec commit 5c979090d812bf2884b152fa5047e912f8086627 Author: Siddhesh Poyarekar @@ -21509,8 +21629,8 @@ CommitDate: Mon Feb 23 14:20:15 2015 +0530 Auto-sync with upstream master. -:100644 100644 8f8216a f5aa778 M glibc.spec -:100644 100644 260f87a 117c38f M sources +:100644 100644 8f8216a3 f5aa778c M glibc.spec +:100644 100644 260f87a4 117c38fe M sources commit 6e81b3fc52aa0959084742d3beb81fa564b3d847 Author: Till Maas @@ -21522,7 +21642,7 @@ CommitDate: Sat Feb 21 22:22:07 2015 +0100 https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code -:100644 100644 f50b2e0 8f8216a M glibc.spec +:100644 100644 f50b2e0c 8f8216a3 M glibc.spec commit e03dd62b87d14da1f855d530728c897cb1dcf3d7 Author: Carlos O'Donell @@ -21532,8 +21652,8 @@ CommitDate: Thu Feb 12 01:36:24 2015 -0500 Fix missing clock_* IFUNCs in librtkaio. -:100644 100644 560380f 4aff826 M glibc-rtkaio-clock.patch -:100644 100644 f645937 f50b2e0 M glibc.spec +:100644 100644 560380f1 4aff826d M glibc-rtkaio-clock.patch +:100644 100644 f6459378 f50b2e0c M glibc.spec commit c6d44c99026f92c39ad61cecd243ba408d5420ba Author: Carlos O'Donell @@ -21543,8 +21663,8 @@ CommitDate: Thu Feb 12 00:29:07 2015 -0500 Auto-sync with upstream master. -:100644 100644 42ed184 f645937 M glibc.spec -:100644 100644 50f3d2d 260f87a M sources +:100644 100644 42ed1847 f6459378 M glibc.spec +:100644 100644 50f3d2d7 260f87a4 M sources commit 85a0930b022ac78abb1d1e3b6f3be6e1b934f56e Author: Carlos O'Donell @@ -21557,9 +21677,9 @@ CommitDate: Thu Feb 12 00:22:30 2015 -0500 - Add back x86 vDSO support. - Fix rtkaio build to reference clock_* functions from libc. -:100644 000000 d16baab 0000000 D glibc-revert-x86-vdso.patch -:000000 100644 0000000 560380f A glibc-rtkaio-clock.patch -:100644 100644 b5392de 42ed184 M glibc.spec +:100644 000000 d16baab1 00000000 D glibc-revert-x86-vdso.patch +:000000 100644 00000000 560380f1 A glibc-rtkaio-clock.patch +:100644 100644 b5392de6 42ed1847 M glibc.spec commit a086cd23991f342c679d5f5e3b4c4b0eb5d79e06 Author: Siddhesh Poyarekar @@ -21569,8 +21689,8 @@ CommitDate: Thu Jan 22 00:22:13 2015 +0530 Revert x86 vdso support patch to get i686 building again -:000000 100644 0000000 d16baab A glibc-revert-x86-vdso.patch -:100644 100644 734ef32 b5392de M glibc.spec +:000000 100644 00000000 d16baab1 A glibc-revert-x86-vdso.patch +:100644 100644 734ef329 b5392de6 M glibc.spec commit c041cd3d0cdcacdc8a01acbfddf1df6f312159f2 Author: Siddhesh Poyarekar @@ -21580,7 +21700,7 @@ CommitDate: Wed Jan 21 22:25:23 2015 +0530 Disable -Werror for a bootstrap build -:100644 100644 51a8ef3 734ef32 M glibc.spec +:100644 100644 51a8ef34 734ef329 M glibc.spec commit 5d3d5d454257b88a1edbe31efe45ffbed0ca4ab6 Author: Siddhesh Poyarekar @@ -21590,9 +21710,9 @@ CommitDate: Wed Jan 21 20:18:21 2015 +0530 Sync with upstream master and disable Werror on s390x -:100644 000000 ea6a157 0000000 D glibc-s390-tls-get-addr.patch -:100644 100644 da717c6 51a8ef3 M glibc.spec -:100644 100644 0c841d1 50f3d2d M sources +:100644 000000 ea6a1579 00000000 D glibc-s390-tls-get-addr.patch +:100644 100644 da717c6c 51a8ef34 M glibc.spec +:100644 100644 0c841d1b 50f3d2d7 M sources commit 20d87dfe741a58194db65fdc4bbe96d4bd533fd8 Author: Peter Robinson @@ -21602,7 +21722,7 @@ CommitDate: Tue Jan 20 09:51:12 2015 +0000 Drop large ancient ChangeLogs (rhbz #1169546) -:100644 100644 2c2c915 da717c6 M glibc.spec +:100644 100644 2c2c9153 da717c6c M glibc.spec commit 2415b86173a44a83d6d3c98699499e4a6afc847f Author: Siddhesh Poyarekar @@ -21616,8 +21736,8 @@ CommitDate: Mon Jan 12 20:20:28 2015 +0530 instead of the mstate itself. This fizes the Werror warning seen on all non-x86 builds. -:100644 100644 f633dc5 a630ec9 M glibc-rh757881.patch -:100644 100644 c3b361a 2c2c915 M glibc.spec +:100644 100644 f633dc59 a630ec97 M glibc-rh757881.patch +:100644 100644 c3b361a0 2c2c9153 M glibc.spec commit 84d34071af098889f54656c76671caa7e66777eb Author: Siddhesh Poyarekar @@ -21627,8 +21747,8 @@ CommitDate: Thu Jan 8 18:51:32 2015 +0530 Define a __tls_get_addr macro to avoid a conflicting declaration -:000000 100644 0000000 ea6a157 A glibc-s390-tls-get-addr.patch -:100644 100644 e98c381 c3b361a M glibc.spec +:000000 100644 00000000 ea6a1579 A glibc-s390-tls-get-addr.patch +:100644 100644 e98c3811 c3b361a0 M glibc.spec commit 80f41525f954637cec8178eec39ba2fa58eea125 Author: Siddhesh Poyarekar @@ -21641,7 +21761,7 @@ CommitDate: Wed Jan 7 21:30:39 2015 +0530 Also sync up release numbers. I seemed to have messed it up in the last commit. -:100644 100644 c57f3e4 e98c381 M glibc.spec +:100644 100644 c57f3e4c e98c3811 M glibc.spec commit 6105e83f8867502af1519979a9fb1a7ab0eccd7a Author: Siddhesh Poyarekar @@ -21654,12 +21774,12 @@ CommitDate: Wed Jan 7 19:03:06 2015 +0530 - Disable -Werror on powerpc and armv7hl. - Temporarily disable valgrind test on ppc64. -:100644 000000 bee505f 0000000 D glibc-aarch64-fix-strchrnul-clobbering-v15.patch -:100644 000000 bd77bb3 0000000 D glibc-fedora-getrlimit-PLT.patch -:100644 100644 dccace7 dedb836 M glibc-fedora-uname-getrlimit.patch -:100644 000000 18ffd8f 0000000 D glibc-rh841318.patch -:100644 100644 8465b40 c57f3e4 M glibc.spec -:100644 100644 6efbfa5 0c841d1 M sources +:100644 000000 bee505f4 00000000 D glibc-aarch64-fix-strchrnul-clobbering-v15.patch +:100644 000000 bd77bb36 00000000 D glibc-fedora-getrlimit-PLT.patch +:100644 100644 dccace74 dedb8366 M glibc-fedora-uname-getrlimit.patch +:100644 000000 18ffd8f3 00000000 D glibc-rh841318.patch +:100644 100644 8465b40b c57f3e4c M glibc.spec +:100644 100644 6efbfa56 0c841d1b M sources commit 8b04964a99e4a022c45559439f7e3ffbbfe5c644 Author: Dan Horák @@ -21669,7 +21789,7 @@ CommitDate: Sun Dec 28 10:32:56 2014 +0100 - valgrind available only on selected arches (missing on s390) -:100644 100644 5cccc7b 8465b40 M glibc.spec +:100644 100644 5cccc7b0 8465b40b M glibc.spec commit fd8c9e71258caa85fbed28f6349ea633d3a9dbb4 Author: Kyle McMartin @@ -21679,9 +21799,9 @@ CommitDate: Wed Dec 10 12:12:56 2014 -0500 aarch64: Drop strchrnul.S revert, apply fix from Richard Earnshaw. -:000000 100644 0000000 bee505f A glibc-aarch64-fix-strchrnul-clobbering-v15.patch -:100644 000000 d448de0 0000000 D glibc-aarch64-strchrnul-revert.patch -:100644 100644 1c1fe40 5cccc7b M glibc.spec +:000000 100644 00000000 bee505f4 A glibc-aarch64-fix-strchrnul-clobbering-v15.patch +:100644 000000 d448de0d 00000000 D glibc-aarch64-strchrnul-revert.patch +:100644 100644 1c1fe406 5cccc7b0 M glibc.spec commit c13214a08b9c95434901983734130570da92776e Author: Carlos O'Donell @@ -21694,7 +21814,7 @@ CommitDate: Fri Dec 5 20:30:44 2014 -0500 - Fix permission of debuginfo source files to allow multiarch debuginfo packages to be installed and upgraded. -:100644 100644 5308ba6 1c1fe40 M glibc.spec +:100644 100644 5308ba67 1c1fe406 M glibc.spec commit 7728cb84c0ac22d2426459e286b159a8b2819d29 Author: Siddhesh Poyarekar @@ -21704,7 +21824,7 @@ CommitDate: Fri Dec 5 18:44:50 2014 +0530 Add %%lang tags to language locale files in /usr/share/i18n/locale (#1169044) -:100644 100644 3dc490f 5308ba6 M glibc.spec +:100644 100644 3dc490f1 5308ba67 M glibc.spec commit 0cda7232ae35a9023308b8dbceaca31e55125287 Author: Siddhesh Poyarekar @@ -21714,7 +21834,7 @@ CommitDate: Fri Dec 5 16:39:35 2014 +0530 Use the %%find_lang macro to get the *.mo files (#1167445) -:100644 100644 22c0d58 3dc490f M glibc.spec +:100644 100644 22c0d581 3dc490f1 M glibc.spec commit e7f91b5b180bbd8734f3b4a3cd2bd5d81b9b4e5c Author: Siddhesh Poyarekar @@ -21724,7 +21844,7 @@ CommitDate: Fri Dec 5 13:15:57 2014 +0530 Fix changelog comment -:100644 100644 bfde090 22c0d58 M glibc.spec +:100644 100644 bfde0909 22c0d581 M glibc.spec commit aeaedc4de59eda9224eaa0698405f68dab9d7a00 Author: Siddhesh Poyarekar @@ -21734,7 +21854,7 @@ CommitDate: Fri Dec 5 12:23:29 2014 +0530 Don't own any directories in /usr/share/locale -:100644 100644 9590f91 bfde090 M glibc.spec +:100644 100644 9590f91f bfde0909 M glibc.spec commit a9ff8be89f79747deff941d3d681866aaddfca5f Author: Siddhesh Poyarekar @@ -21747,7 +21867,7 @@ CommitDate: Fri Dec 5 12:21:56 2014 +0530 glibc no longer installs files in /usr/lib/locale, so we don't need to have hacks in place for it anymore. -:100644 100644 5bf7e68 9590f91 M glibc.spec +:100644 100644 5bf7e68d 9590f91f M glibc.spec commit eb16415e7a221a59e23165b3548398f69ce34e8f Author: Kyle McMartin @@ -21757,8 +21877,8 @@ CommitDate: Wed Dec 3 13:12:37 2014 -0500 aarch64: revert optimized strchrnul.S implementation (rhbz#1167501) -:000000 100644 0000000 d448de0 A glibc-aarch64-strchrnul-revert.patch -:100644 100644 dcfe355 5bf7e68 M glibc.spec +:000000 100644 00000000 d448de0d A glibc-aarch64-strchrnul-revert.patch +:100644 100644 dcfe3555 5bf7e68d M glibc.spec commit 66b39fa43387216b1c3549870ae976b5e72da5f0 Author: Carlos O'Donell @@ -21768,8 +21888,8 @@ CommitDate: Fri Nov 28 21:32:05 2014 -0500 Auto-sync with upstream master. -:100644 100644 e5f761d dcfe355 M glibc.spec -:100644 100644 143d992 6efbfa5 M sources +:100644 100644 e5f761d6 dcfe3555 M glibc.spec +:100644 100644 143d992a 6efbfa56 M sources commit ce126e12dbd8e6eed3265087b4fa6d4a30072823 Author: Carlos O'Donell @@ -21779,9 +21899,9 @@ CommitDate: Mon Nov 24 09:58:08 2014 -0500 Sync with upstream master. -:100644 100644 443942a 945a955 M glibc-fedora-__libc_multiple_libcs.patch -:100644 100644 e6f037b e5f761d M glibc.spec -:100644 100644 8c51e6d 143d992 M sources +:100644 100644 443942a5 945a9551 M glibc-fedora-__libc_multiple_libcs.patch +:100644 100644 e6f037bf e5f761d6 M glibc.spec +:100644 100644 8c51e6dd 143d992a M sources commit 5c361d9107647217248c1fd16897402ba2946404 Author: Siddhesh Poyarekar @@ -21791,10 +21911,10 @@ CommitDate: Wed Nov 5 16:06:52 2014 +0530 Sync with upstream master -:100644 100644 50d7343 443942a M glibc-fedora-__libc_multiple_libcs.patch -:100644 100644 0010733 0f20ca8 M glibc-fedora-elf-ORIGIN.patch -:100644 100644 f0720ce e6f037b M glibc.spec -:100644 100644 3924a93 8c51e6d M sources +:100644 100644 50d73435 443942a5 M glibc-fedora-__libc_multiple_libcs.patch +:100644 100644 00107335 0f20ca89 M glibc-fedora-elf-ORIGIN.patch +:100644 100644 f0720ce4 e6f037bf M glibc.spec +:100644 100644 3924a938 8c51e6dd M sources commit b80bba4ee908474935eec6f10aa74bb6b4b380c9 Author: Siddhesh Poyarekar @@ -21804,8 +21924,8 @@ CommitDate: Wed Nov 5 15:57:23 2014 +0530 Make getconf return only /usr/bin (#1138835) -:000000 100644 0000000 982f8ff A glibc-cs-path.patch -:100644 100644 32eec5c f0720ce M glibc.spec +:000000 100644 00000000 982f8ff4 A glibc-cs-path.patch +:100644 100644 32eec5ce f0720ce4 M glibc.spec commit 88659d3bb86ec86f600207371168ff0cca611bd0 Author: Arjun Shankar @@ -21815,8 +21935,8 @@ CommitDate: Tue Nov 4 20:31:37 2014 +0100 Add patch to modify several tests to use test-skeleton.c. -:000000 100644 0000000 ce21e8d A glibc-fedora-use-test-skeleton.patch -:100644 100644 e6f5f00 32eec5c M glibc.spec +:000000 100644 00000000 ce21e8d9 A glibc-fedora-use-test-skeleton.patch +:100644 100644 e6f5f007 32eec5ce M glibc.spec commit 484979ccff8bba018e6049a4d822ad7f848f596b Author: Siddhesh Poyarekar @@ -21826,7 +21946,7 @@ CommitDate: Tue Sep 30 22:14:54 2014 +0530 Enable Systemtap SDT probes for all architectures (#985109) -:100644 100644 7738689 e6f5f00 M glibc.spec +:100644 100644 77386897 e6f5f007 M glibc.spec commit a391f0c0e6e35db7403b7647a5b392104ef578a6 Author: Siddhesh Poyarekar @@ -21836,9 +21956,9 @@ CommitDate: Tue Sep 30 22:14:50 2014 +0530 Sync with upstream master -:100644 000000 e284fcd 0000000 D glibc-stdlib-tst-strtod-round.c-Fix-build-on-ARM.patch -:100644 100644 3e96f53 7738689 M glibc.spec -:100644 100644 9c88267 3924a93 M sources +:100644 000000 e284fcd3 00000000 D glibc-stdlib-tst-strtod-round.c-Fix-build-on-ARM.patch +:100644 100644 3e96f53b 77386897 M glibc.spec +:100644 100644 9c882674 3924a938 M sources commit 49b191c05b96464cff9af7090953554edfd187eb Author: Siddhesh Poyarekar @@ -21848,7 +21968,7 @@ CommitDate: Tue Sep 30 22:04:19 2014 +0530 Enable lock elision again on s390 and s390x -:100644 100644 b5ea3ff 3e96f53 M glibc.spec +:100644 100644 b5ea3ffb 3e96f53b M glibc.spec commit f8be71ca8cdd77386cad8fe098dddf4204914be3 Author: Carlos O'Donell @@ -21863,8 +21983,8 @@ CommitDate: Tue Sep 30 22:02:35 2014 +0530 Conflicts: glibc.spec -:000000 100644 0000000 b782da0 A glibc-disable-rwlock-elision.patch -:100644 100644 eadca57 b5ea3ff M glibc.spec +:000000 100644 00000000 b782da06 A glibc-disable-rwlock-elision.patch +:100644 100644 eadca57d b5ea3ffb M glibc.spec commit f226d7de05c8730494990bbd21dd5e03dd7d0053 Author: Carlos O'Donell @@ -21874,7 +21994,7 @@ CommitDate: Fri Sep 26 23:51:03 2014 -0400 Add missing patch to git. -:000000 100644 0000000 e284fcd A glibc-stdlib-tst-strtod-round.c-Fix-build-on-ARM.patch +:000000 100644 00000000 e284fcd3 A glibc-stdlib-tst-strtod-round.c-Fix-build-on-ARM.patch commit f515946248e8990eeaad919b4b27c8d26b65eedb Author: Carlos O'Donell @@ -21888,7 +22008,7 @@ CommitDate: Fri Sep 26 23:44:17 2014 -0400 updates can be done in early bootup (#1146967). - Fix building test tst-strtod-round for ARM. -:100644 100644 6769404 eadca57 M glibc.spec +:100644 100644 67694042 eadca57d M glibc.spec commit a5b5c3d586b42d913e6e90ebd1e968f5dede535a Author: Siddhesh Poyarekar @@ -21898,8 +22018,8 @@ CommitDate: Tue Sep 23 22:58:21 2014 +0530 Sync with upstream master -:100644 100644 303ca20 6769404 M glibc.spec -:100644 100644 7d3ae4e 9c88267 M sources +:100644 100644 303ca20a 67694042 M glibc.spec +:100644 100644 7d3ae4ed 9c882674 M sources commit e9a7f4cb5d0901b2daefe390adac7a61b069d630 Author: Siddhesh Poyarekar @@ -21909,7 +22029,7 @@ CommitDate: Tue Sep 23 16:58:34 2014 +0530 Run valgrind with the built glibc to ensure that it does not break -:100644 100644 75801b0 303ca20 M glibc.spec +:100644 100644 75801b06 303ca20a M glibc.spec commit 7007495c882bf26e31c05a9bca167f687660bd03 Author: Siddhesh Poyarekar @@ -21919,7 +22039,7 @@ CommitDate: Tue Sep 23 16:56:45 2014 +0530 Don't own common debuginfo directories. -:100644 100644 a0fec8e 75801b0 M glibc.spec +:100644 100644 a0fec8ed 75801b06 M glibc.spec commit fcca21dd3e239627d72dca42a32a197dd433f546 Author: Siddhesh Poyarekar @@ -21929,7 +22049,7 @@ CommitDate: Thu Sep 18 13:16:17 2014 +0530 Move mips entry for shlib-versions to sysdeps -:100644 100644 2ef4a0b f5940d6 M glibc-rtkaio.patch +:100644 100644 2ef4a0bc f5940d6c M glibc-rtkaio.patch commit d99b4a9d5a8a3f7c3328c85fc2b8c2c4cec26804 Author: Siddhesh Poyarekar @@ -21939,7 +22059,7 @@ CommitDate: Wed Sep 17 22:39:37 2014 +0530 Fix up shlib-versions for rtkaio -:100644 100644 eadbbbf 2ef4a0b M glibc-rtkaio.patch +:100644 100644 eadbbbf5 2ef4a0bc M glibc-rtkaio.patch commit a9e37d2889dacce2fcb3568eb9a093f7db518bf0 Author: Siddhesh Poyarekar @@ -21949,7 +22069,7 @@ CommitDate: Wed Sep 17 22:17:15 2014 +0530 Actually upload sources -:100644 100644 265211a 7d3ae4e M sources +:100644 100644 265211a0 7d3ae4ed M sources commit 7ba0787710cf31d91dcdf3e43a19ca7af802b72f Author: Siddhesh Poyarekar @@ -21965,9 +22085,9 @@ CommitDate: Tue Sep 16 22:34:22 2014 +0530 proper documented analysis if this actually results in any kind of failure. -:100644 000000 d3428a7 0000000 D glibc-extern-always-inline.patch -:100644 000000 5ae6e3a 0000000 D glibc-fedora-elf-rh737223.patch -:100644 100644 c3dff86 a0fec8e M glibc.spec +:100644 000000 d3428a72 00000000 D glibc-extern-always-inline.patch +:100644 000000 5ae6e3aa 00000000 D glibc-fedora-elf-rh737223.patch +:100644 100644 c3dff864 a0fec8ed M glibc.spec commit afa87a3382ea6ede3cec3152ba0df3b6e87ed12a Author: Siddhesh Poyarekar @@ -21990,7 +22110,7 @@ CommitDate: Mon Sep 8 16:22:40 2014 +0530 system libc.so.6, so the change is now reverted with a fixed up static link that links against the build static libc.a. -:100644 100644 d25aa22 c3dff86 M glibc.spec +:100644 100644 d25aa22e c3dff864 M glibc.spec commit 680bff1439d4080edf1bea2375187e0e81be0832 Author: Siddhesh Poyarekar @@ -22000,10 +22120,10 @@ CommitDate: Mon Sep 8 12:32:01 2014 +0530 Sync with upstream master -:100644 000000 12b9949 0000000 D glibc-rh1119128.patch -:100644 000000 648c527 0000000 D glibc-rh1133134-i386-tlsinit.patch -:100644 100644 74b022c d25aa22 M glibc.spec -:100644 100644 f0a7ec7 265211a M sources +:100644 000000 12b99499 00000000 D glibc-rh1119128.patch +:100644 000000 648c5275 00000000 D glibc-rh1133134-i386-tlsinit.patch +:100644 100644 74b022cd d25aa22e M glibc.spec +:100644 100644 f0a7ec79 265211a0 M sources commit 7448524498f0ef3719f85462629403cbd0bbed33 Author: Carlos O'Donell @@ -22017,9 +22137,9 @@ CommitDate: Sat Sep 6 14:15:15 2014 -0400 - Run glibc tests in %%check section of RPM spec file. - Do not run tests with `-k` and fail if any test fails to build. -:000000 100644 0000000 f35a49d A ChangeLog.old -:000000 100644 0000000 0b0c3ab A glibc-rh1124987.patch -:100644 100644 7f6e6fb 74b022c M glibc.spec +:000000 100644 00000000 f35a49d5 A ChangeLog.old +:000000 100644 00000000 0b0c3ab6 A glibc-rh1124987.patch +:100644 100644 7f6e6fb4 74b022cd M glibc.spec commit f64bffe28e43b2b7c598d46100153a5a4113277e Author: Siddhesh Poyarekar @@ -22032,10 +22152,10 @@ CommitDate: Tue Aug 26 14:11:00 2014 +0530 - Use INTERNAL_SYSCALL in TLS_INIT_TP (#1133134). - Remove gconv loadable module transliteration support (#1119128). -:000000 100644 0000000 12b9949 A glibc-rh1119128.patch -:000000 100644 0000000 648c527 A glibc-rh1133134-i386-tlsinit.patch -:100644 100644 68aed24 7f6e6fb M glibc.spec -:100644 100644 9968a00 f0a7ec7 M sources +:000000 100644 00000000 12b99499 A glibc-rh1119128.patch +:000000 100644 00000000 648c5275 A glibc-rh1133134-i386-tlsinit.patch +:100644 100644 68aed24a 7f6e6fb4 M glibc.spec +:100644 100644 9968a006 f0a7ec79 M sources commit 67767852ab9d870288f1e171d43e9b6a45da5fc6 Author: Dennis Gilmore @@ -22045,8 +22165,8 @@ CommitDate: Fri Aug 22 14:13:29 2014 -0500 add back sss to nsswitch.conf we have added workarounds in the tools -:100644 100644 d7fe02f 68aed24 M glibc.spec -:100644 100644 7a116ec 2f6c84e M nsswitch.conf +:100644 100644 d7fe02f6 68aed24a M glibc.spec +:100644 100644 7a116ec4 2f6c84e5 M nsswitch.conf commit d0b1601820112eab182869dc582b1025c8e4e161 Author: Kevin Fenzi @@ -22056,7 +22176,7 @@ CommitDate: Thu Aug 21 11:48:00 2014 -0600 Rebuild for rpm bug 1131960 -:100644 100644 62e83cf d7fe02f M glibc.spec +:100644 100644 62e83cfc d7fe02f6 M glibc.spec commit 87e4cc74d76053ea9ae152dd5380a2a11839e75c Author: Dennis Gilmore @@ -22066,8 +22186,8 @@ CommitDate: Tue Aug 19 10:56:39 2014 -0500 remove sss from default nsswitch.conf it causes issues with live image composing -:100644 100644 3b822b6 62e83cf M glibc.spec -:100644 100644 2f6c84e 7a116ec M nsswitch.conf +:100644 100644 3b822b66 62e83cfc M glibc.spec +:100644 100644 2f6c84e5 7a116ec4 M nsswitch.conf commit 75bedb0a34f68912eafebeeac2b16c40026753f1 Author: Siddhesh Poyarekar @@ -22081,9 +22201,9 @@ CommitDate: Thu Aug 14 00:07:02 2014 +0530 - Revert to only defining __extern_always_inline for g++-4.3+. - Fix build failure in compat-gcc-32 (#186410). -:000000 100644 0000000 d3428a7 A glibc-extern-always-inline.patch -:100644 100644 2a79dda 3b822b6 M glibc.spec -:100644 100644 e3545df 9968a00 M sources +:000000 100644 00000000 d3428a72 A glibc-extern-always-inline.patch +:100644 100644 2a79dda2 3b822b66 M glibc.spec +:100644 100644 e3545df2 9968a006 M sources commit d579c1af5bae7dd255b3f3f725fabe1dc7d2e061 Author: Siddhesh Poyarekar @@ -22093,8 +22213,8 @@ CommitDate: Tue Jul 29 00:25:03 2014 +0530 Auto-sync with upstream master -:100644 100644 76a92eb 2a79dda M glibc.spec -:100644 100644 c7a88ec e3545df M sources +:100644 100644 76a92ebc 2a79dda2 M glibc.spec +:100644 100644 c7a88eca e3545df2 M sources commit 3cb7ba0de8b322ebaec22bce83db5f32481f05f2 Author: Siddhesh Poyarekar @@ -22104,7 +22224,7 @@ CommitDate: Wed Jul 23 14:04:08 2014 +0530 Today is Wednesday, not Thursday -:100644 100644 4cfdedf 76a92eb M glibc.spec +:100644 100644 4cfdedf2 76a92ebc M glibc.spec commit 2ca89eabf6c5781e601e1067edb80e9361ba9c7e Author: Siddhesh Poyarekar @@ -22117,8 +22237,8 @@ CommitDate: Wed Jul 23 14:02:10 2014 +0530 Fix up rawhide till we can figure out what the problem is with this build. -:100644 100644 f8f9def 4cfdedf M glibc.spec -:100644 100644 8b61590 c7a88ec M sources +:100644 100644 f8f9def1 4cfdedf2 M glibc.spec +:100644 100644 8b61590d c7a88eca M sources commit c54d242628400ea5e18f26adbab26f9cb85bfb6e Author: Siddhesh Poyarekar @@ -22128,8 +22248,8 @@ CommitDate: Tue Jul 15 22:13:48 2014 +0530 Auto-sync with upstream master. -:100644 100644 f226fc0 f8f9def M glibc.spec -:100644 100644 c7a88ec 8b61590 M sources +:100644 100644 f226fc0b f8f9def1 M glibc.spec +:100644 100644 c7a88eca 8b61590d M sources commit e653c3c00e8eaa7d428b84cadff7e2520ed8710e Author: Tom Callaway @@ -22139,7 +22259,7 @@ CommitDate: Sat Jul 12 11:16:06 2014 -0400 fix license handling -:100644 100644 b61731a f226fc0 M glibc.spec +:100644 100644 b61731af f226fc0b M glibc.spec commit dc2e7c6d3139fb275642729e623a62894592e095 Author: Siddhesh Poyarekar @@ -22149,8 +22269,8 @@ CommitDate: Mon Jul 7 22:35:01 2014 +0530 Auto-sync with upstream master. -:100644 100644 f3a36ca b61731a M glibc.spec -:100644 100644 4f95dd7 c7a88ec M sources +:100644 100644 f3a36ca3 b61731af M glibc.spec +:100644 100644 4f95dd7d c7a88eca M sources commit 1779efa74a92f334e834a451144ecb22b43c6c3d Author: Siddhesh Poyarekar @@ -22160,10 +22280,10 @@ CommitDate: Sat Jul 5 00:00:22 2014 +0530 Sync with upstream roland/nptl branch -:100644 100644 7e9b7ab 0a808ec M glibc-fedora-ppc-unwind.patch -:100644 000000 b81f853 0000000 D glibc-rtkaio-testcase.patch -:100644 100644 65f70ba f3a36ca M glibc.spec -:100644 100644 41bbe35 4f95dd7 M sources +:100644 100644 7e9b7ab0 0a808ec7 M glibc-fedora-ppc-unwind.patch +:100644 000000 b81f853b 00000000 D glibc-rtkaio-testcase.patch +:100644 100644 65f70ba0 f3a36ca3 M glibc.spec +:100644 100644 41bbe353 4f95dd7d M sources commit 91f7360fcddd45a0f3bce3c0f9bf0744db2d6b89 Author: Siddhesh Poyarekar @@ -22173,7 +22293,7 @@ CommitDate: Fri Jul 4 22:26:53 2014 +0530 Separate failed test outputs using a line -:100644 100644 cd05c46 65f70ba M glibc.spec +:100644 100644 cd05c461 65f70ba0 M glibc.spec commit dc6586efdd8c2013fbcd4747c74d344c42d0eaf9 Author: Siddhesh Poyarekar @@ -22187,7 +22307,7 @@ CommitDate: Fri Jul 4 22:26:50 2014 +0530 built-program-cmd also has environment variables, which breaks the test. -:100644 100644 c7d7163 eadbbbf M glibc-rtkaio.patch +:100644 100644 c7d7163b eadbbbf5 M glibc-rtkaio.patch commit 8c5b9331ed7a7d3774c3ace11e5d6402f42f9461 Author: Siddhesh Poyarekar @@ -22197,8 +22317,8 @@ CommitDate: Thu Jul 3 22:34:28 2014 +0530 Link tst-timer to librt.so only if it is in the rt subdir -:000000 100644 0000000 b81f853 A glibc-rtkaio-testcase.patch -:100644 100644 762e292 cd05c46 M glibc.spec +:000000 100644 00000000 b81f853b A glibc-rtkaio-testcase.patch +:100644 100644 762e2920 cd05c461 M glibc.spec commit c1d88db4f5f0ff3807ad728f45858b30234caace Author: Siddhesh Poyarekar @@ -22208,7 +22328,7 @@ CommitDate: Thu Jul 3 22:18:36 2014 +0530 Get actually failed tests from tests.sum -:100644 100644 8c79852 762e292 M glibc.spec +:100644 100644 8c798520 762e2920 M glibc.spec commit 2a7ce8ad673c5fa4fc1b5af0b9bfc646e5fb1827 Author: Siddhesh Poyarekar @@ -22223,7 +22343,7 @@ CommitDate: Thu Jul 3 22:16:11 2014 +0530 architectures, but for now add a target so that the test does not fail and the test run completes to give us a tests.sum. -:100644 100644 74e1679 c7d7163 M glibc-rtkaio.patch +:100644 100644 74e1679c c7d7163b M glibc-rtkaio.patch commit 92e8c5c41800c30b9b7e1ccad5136c72978a2fe6 Author: Siddhesh Poyarekar @@ -22236,7 +22356,7 @@ CommitDate: Thu Jul 3 21:28:40 2014 +0530 All other uses include nptl/pthreadP.h, so go that way instead of the extra -I flag. -:100644 100644 e6739a4 74e1679 M glibc-rtkaio.patch +:100644 100644 e6739a42 74e1679c M glibc-rtkaio.patch commit 621363ca12b851175895e8cf1ea1662546f4586f Author: Siddhesh Poyarekar @@ -22246,7 +22366,7 @@ CommitDate: Thu Jul 3 11:47:39 2014 +0530 Add nptl to list of directories to include for rtkaio -:100644 100644 033d8b7 e6739a4 M glibc-rtkaio.patch +:100644 100644 033d8b7d e6739a42 M glibc-rtkaio.patch commit c96b7f7453ddbd0a58eb4ba8a61b5e24ed40e533 Author: Siddhesh Poyarekar @@ -22256,7 +22376,7 @@ CommitDate: Thu Jul 3 11:13:32 2014 +0530 Actually remove nptl as addon -:100644 100644 0e9d598 8c79852 M glibc.spec +:100644 100644 0e9d5989 8c798520 M glibc.spec commit 1ea305b6fad82f7c11c9c5817deb3a015d55a802 Author: Siddhesh Poyarekar @@ -22269,10 +22389,10 @@ CommitDate: Thu Jul 3 11:04:10 2014 +0530 Patches on this branch include nptl as a part of glibc instead of being an addon. -:100644 100644 def60e9 dccace7 M glibc-fedora-uname-getrlimit.patch -:100644 100644 532589c ac656b5 M glibc-rh1013801.patch -:100644 100644 85ad4ac 0e9d598 M glibc.spec -:100644 100644 fd3c568 41bbe35 M sources +:100644 100644 def60e9d dccace74 M glibc-fedora-uname-getrlimit.patch +:100644 100644 532589cd ac656b52 M glibc-rh1013801.patch +:100644 100644 85ad4aca 0e9d5989 M glibc.spec +:100644 100644 fd3c5687 41bbe353 M sources commit 191c4db426ab6a05f484af1532434493c724d10f Author: Siddhesh Poyarekar @@ -22282,9 +22402,9 @@ CommitDate: Wed Jul 2 16:15:02 2014 +0530 Sync with upstream master -:100644 000000 e9f8085 0000000 D glibc-scalbn-i386-abi.patch -:100644 100644 af133a7 85ad4ac M glibc.spec -:100644 100644 9ef270f fd3c568 M sources +:100644 000000 e9f80854 00000000 D glibc-scalbn-i386-abi.patch +:100644 100644 af133a7e 85ad4aca M glibc.spec +:100644 100644 9ef270fd fd3c5687 M sources commit 9eb38c10e7fcc1b01cf0da2df16930da777683a0 Author: Siddhesh Poyarekar @@ -22294,10 +22414,10 @@ CommitDate: Tue Jun 24 17:41:51 2014 +0530 Sync with upstream master -:100644 100644 5960ca2 9334f19 M glibc-fedora-streams-rh436349.patch -:000000 100644 0000000 e9f8085 A glibc-scalbn-i386-abi.patch -:100644 100644 b4d39eb af133a7 M glibc.spec -:100644 100644 e1b9000 9ef270f M sources +:100644 100644 5960ca24 9334f199 M glibc-fedora-streams-rh436349.patch +:000000 100644 00000000 e9f80854 A glibc-scalbn-i386-abi.patch +:100644 100644 b4d39eb3 af133a7e M glibc.spec +:100644 100644 e1b9000a 9ef270fd M sources commit b66a1357266a43174bd1ed42a902875f86cebb49 Author: Kyle McMartin @@ -22311,8 +22431,8 @@ CommitDate: Fri Jun 20 11:49:56 2014 -0400 descriptor sequence (GCC PR61545.) Committing a (temporary) fix here allows us to avoid rebuilding the world with gcc 4.9.0-11.fc21. -:000000 100644 0000000 ed628ac A glibc-aarch64-workaround-nzcv-clobber-in-tlsdesc.patch -:100644 100644 0d89c72 b4d39eb M glibc.spec +:000000 100644 00000000 ed628ac2 A glibc-aarch64-workaround-nzcv-clobber-in-tlsdesc.patch +:100644 100644 0d89c72c b4d39eb3 M glibc.spec commit 0c40cdae5288f9cf0daee1875a273bd8858a2672 Author: Kyle McMartin @@ -22324,7 +22444,7 @@ CommitDate: Mon Jun 16 15:30:34 2014 -0400 No point in building this, but include it in the next rebase build. -:100644 100644 1b1bb9c 0d89c72 M glibc.spec +:100644 100644 1b1bb9c7 0d89c72c M glibc.spec commit a0c2da6ecd0a27ccdc900f125d25886a37550f36 Author: Kyle McMartin @@ -22334,8 +22454,8 @@ CommitDate: Mon Jun 16 13:45:03 2014 -0400 Auto-sync with upstream master. -:100644 100644 6975adf 1b1bb9c M glibc.spec -:100644 100644 2049600 e1b9000 M sources +:100644 100644 6975adfe 1b1bb9c7 M glibc.spec +:100644 100644 20496000 e1b9000a M sources commit 8f0eca557fa376ee80a49349c240e36fa98b5989 Author: Siddhesh Poyarekar @@ -22345,8 +22465,8 @@ CommitDate: Thu Jun 12 12:22:16 2014 +0530 Auto-sync with upstream master. -:100644 100644 05d67ee 6975adf M glibc.spec -:100644 100644 12eefa0 2049600 M sources +:100644 100644 05d67ee9 6975adfe M glibc.spec +:100644 100644 12eefa0a 20496000 M sources commit 19b41eb7aaac76e5365d580cde79fe1d9e108852 Author: Dennis Gilmore @@ -22356,7 +22476,7 @@ CommitDate: Sat Jun 7 11:13:53 2014 -0500 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild -:100644 100644 748d677 05d67ee M glibc.spec +:100644 100644 748d6773 05d67ee9 M glibc.spec commit 9d331e9d989552255d68c3638ede05575aff7f0b Author: Siddhesh Poyarekar @@ -22366,9 +22486,9 @@ CommitDate: Tue Jun 3 15:08:22 2014 +0530 Sync with upstream master -:100644 000000 dac6789 0000000 D glibc-rh1078355.patch -:100644 100644 8dcfc61 748d677 M glibc.spec -:100644 100644 d724d91 12eefa0 M sources +:100644 000000 dac6789a 00000000 D glibc-rh1078355.patch +:100644 100644 8dcfc618 748d6773 M glibc.spec +:100644 100644 d724d91e 12eefa0a M sources commit 8da75f6fa433d0d50b2315960a7b03973577d2e5 Author: Siddhesh Poyarekar @@ -22394,9 +22514,9 @@ CommitDate: Mon May 26 15:50:48 2014 +0530 consistency with $(csu-objpfx)), also changing direct uses of $(common-objpfx)elf/ to use $(elf-objpfx). -:100644 100644 c4ae52a b161739 M glibc-rh731833-rtkaio.patch -:100644 100644 d7f3d6e 033d8b7 M glibc-rtkaio.patch -:100644 100644 51c69d0 8dcfc61 M glibc.spec +:100644 100644 c4ae52a1 b1617393 M glibc-rh731833-rtkaio.patch +:100644 100644 d7f3d6e4 033d8b7d M glibc-rtkaio.patch +:100644 100644 51c69d02 8dcfc618 M glibc.spec commit 8710f4aaa692eee3927558be1909ac76ea0a4581 Author: Siddhesh Poyarekar @@ -22406,11 +22526,11 @@ CommitDate: Mon May 26 13:25:00 2014 +0530 Sync with upstream master -:100644 000000 a4fb623 0000000 D glibc-aarch64-fix-handling-of-nocancel-syscall-failures.patch -:100644 100644 996f378 a05d905 M glibc-aarch64-tls-fixes.patch -:100644 100644 350c350 1a79477 M glibc-fedora-nptl-linklibc.patch -:100644 100644 8052aaa 51c69d0 M glibc.spec -:100644 100644 d187d34 d724d91 M sources +:100644 000000 a4fb6232 00000000 D glibc-aarch64-fix-handling-of-nocancel-syscall-failures.patch +:100644 100644 996f3782 a05d9052 M glibc-aarch64-tls-fixes.patch +:100644 100644 350c3504 1a794772 M glibc-fedora-nptl-linklibc.patch +:100644 100644 8052aaad 51c69d02 M glibc.spec +:100644 100644 d187d349 d724d91e M sources commit b39b864460e0356ad144c9b8e81a471fcaa41a02 Author: Kyle McMartin @@ -22420,8 +22540,8 @@ CommitDate: Wed May 21 22:06:50 2014 -0400 Backport some upstream-wards patches to fix TLS issues on AArch64. -:000000 100644 0000000 996f378 A glibc-aarch64-tls-fixes.patch -:100644 100644 a1a5e1b 8052aaa M glibc.spec +:000000 100644 00000000 996f3782 A glibc-aarch64-tls-fixes.patch +:100644 100644 a1a5e1b1 8052aaad M glibc.spec commit abfaca544ca62f32897d7b99c488055e56fdcbff Author: Kyle McMartin @@ -22431,8 +22551,8 @@ CommitDate: Wed May 21 15:34:20 2014 -0400 AArch64: Fix handling of nocancel syscall failures (#1098327) -:000000 100644 0000000 a4fb623 A glibc-aarch64-fix-handling-of-nocancel-syscall-failures.patch -:100644 100644 39b4982 a1a5e1b M glibc.spec +:000000 100644 00000000 a4fb6232 A glibc-aarch64-fix-handling-of-nocancel-syscall-failures.patch +:100644 100644 39b49828 a1a5e1b1 M glibc.spec commit 25cc20651e5b52b0b25850af891d1bedfad49134 Author: Siddhesh Poyarekar @@ -22445,9 +22565,9 @@ CommitDate: Thu May 15 12:26:54 2014 +0530 Fix up glibc-fedora-uname-getrlimit.patch to apply on top of recent nptl code shuffle. -:100644 100644 86383d4 def60e9 M glibc-fedora-uname-getrlimit.patch -:100644 100644 eea9e76 39b4982 M glibc.spec -:100644 100644 ba0b85d d187d34 M sources +:100644 100644 86383d4c def60e9d M glibc-fedora-uname-getrlimit.patch +:100644 100644 eea9e766 39b49828 M glibc.spec +:100644 100644 ba0b85d4 d187d349 M sources commit 647ffb77fa63e73fb3096ca181a4856c2135d5ae Author: Carlos O'Donell @@ -22464,7 +22584,7 @@ CommitDate: Wed May 14 12:52:50 2014 -0400 Without this fix the new upstream PASS/FAIL support hides the test results from the build logs. -:100644 100644 06e7990 eea9e76 M glibc.spec +:100644 100644 06e79904 eea9e766 M glibc.spec commit cffaeb6932f6faed84f908fc44189c6595eea6bc Author: Carlos O'Donell @@ -22474,7 +22594,7 @@ CommitDate: Wed May 14 03:21:29 2014 -0400 Add initial support for ppc64le. -:100644 100644 fc6e338 06e7990 M glibc.spec +:100644 100644 fc6e338b 06e79904 M glibc.spec commit 543337e9546c8b6aa0eecc875eebdd816491c715 Author: Siddhesh Poyarekar @@ -22487,7 +22607,7 @@ CommitDate: Tue Apr 29 15:15:58 2014 +0530 All architectures inside ports have now been moved to the main directory. -:100644 100644 1bbe15a fc6e338 M glibc.spec +:100644 100644 1bbe15ac fc6e338b M glibc.spec commit f0de90dce8fda44d80f7bed5b1621072f1ac9115 Author: Siddhesh Poyarekar @@ -22497,8 +22617,8 @@ CommitDate: Tue Apr 29 14:58:45 2014 +0530 Auto-sync with upstream master. -:100644 100644 581bc1a 1bbe15a M glibc.spec -:100644 100644 efa3a5a ba0b85d M sources +:100644 100644 581bc1a3 1bbe15ac M glibc.spec +:100644 100644 efa3a5a8 ba0b85d4 M sources commit 4d17ec21202b1bce4f32394f291ca6b3c3e12241 Author: Siddhesh Poyarekar @@ -22508,9 +22628,9 @@ CommitDate: Fri Apr 18 12:14:38 2014 +0530 Sync with upstream master -:100644 000000 ac6b481 0000000 D glibc-rh1025126.patch -:100644 100644 3495e68 581bc1a M glibc.spec -:100644 100644 4e5f97f efa3a5a M sources +:100644 000000 ac6b4815 00000000 D glibc-rh1025126.patch +:100644 100644 3495e681 581bc1a3 M glibc.spec +:100644 100644 4e5f97f0 efa3a5a8 M sources commit c899b490baa3b77b7cc7e25cb17567cb6faa00a8 Author: Siddhesh Poyarekar @@ -22522,9 +22642,9 @@ CommitDate: Thu Apr 10 21:40:30 2014 +0530 Fix up glibc-rh741105.patch so that it continues to apply correctly. -:100644 100644 8252062 973beb5 M glibc-rh741105.patch -:100644 100644 c1b572f 3495e68 M glibc.spec -:100644 100644 9fd0389 4e5f97f M sources +:100644 100644 82520620 973beb59 M glibc-rh741105.patch +:100644 100644 c1b572fc 3495e681 M glibc.spec +:100644 100644 9fd03898 4e5f97f0 M sources commit 3708995e5f263e4dff0b9b20309e3f4ab2b01cf9 Author: Siddhesh Poyarekar @@ -22537,7 +22657,7 @@ CommitDate: Thu Apr 10 17:44:05 2014 +0530 Write the commit log and changelog in the spec file in a manner that reflects the fact that the sync was done by a script. -:100755 100755 4e1a923 3a792f7 M sync-upstream.sh +:100755 100755 4e1a923e 3a792f77 M sync-upstream.sh commit b5ec0026f9c43aa8377a84641f05a6cabfae250d Author: Siddhesh Poyarekar @@ -22547,9 +22667,9 @@ CommitDate: Thu Apr 3 17:08:52 2014 +0530 Sync with upstream master -:100644 100644 ef08187 0010733 M glibc-fedora-elf-ORIGIN.patch -:100644 100644 86668e0 c1b572f M glibc.spec -:100644 100644 32c7914 9fd0389 M sources +:100644 100644 ef081879 00107335 M glibc-fedora-elf-ORIGIN.patch +:100644 100644 86668e00 c1b572fc M glibc.spec +:100644 100644 32c79141 9fd03898 M sources commit e7c5d54c2d3238509a6b26131077a8dc86ed2edc Author: Siddhesh Poyarekar @@ -22559,8 +22679,8 @@ CommitDate: Wed Mar 26 14:20:45 2014 +0530 Sync with upstream master. -:100644 100644 02cb0fb 86668e0 M glibc.spec -:100644 100644 65d8630 32c7914 M sources +:100644 100644 02cb0fbf 86668e00 M glibc.spec +:100644 100644 65d86308 32c79141 M sources commit f6119bbf978c8d72de96d26a42ecbe84785c3528 Author: Siddhesh Poyarekar @@ -22570,7 +22690,7 @@ CommitDate: Wed Mar 19 22:49:13 2014 +0530 Add missing glibc-rh1078355.patch -:000000 100644 0000000 dac6789 A glibc-rh1078355.patch +:000000 100644 00000000 dac6789a A glibc-rh1078355.patch commit b7b25cd2fa4052232d4ccb26bc9982dd2e41dc16 Author: Siddhesh Poyarekar @@ -22583,9 +22703,9 @@ CommitDate: Wed Mar 19 22:18:20 2014 +0530 - Adjusted nscd.service patch - Added fix for #1078355 -:100644 100644 b06c748 7e4235e M glibc-rh1070416.patch -:100644 100644 f25e261 02cb0fb M glibc.spec -:100644 100644 81f9d47 65d8630 M sources +:100644 100644 b06c748b 7e4235e2 M glibc-rh1070416.patch +:100644 100644 f25e2617 02cb0fbf M glibc.spec +:100644 100644 81f9d479 65d86308 M sources commit 5e984e4f24600088829d2902f23325b36ffce9bf Author: Carlos O'Donell @@ -22595,7 +22715,7 @@ CommitDate: Wed Mar 12 18:15:11 2014 -0400 Remove unused patch file. -:100644 000000 74c1e5a 0000000 D glibc-rh911307.patch +:100644 000000 74c1e5ac 00000000 D glibc-rh911307.patch commit 43bff16613ea503cc0feee8f88eb988841083118 Author: Carlos O'Donell @@ -22607,10 +22727,10 @@ CommitDate: Wed Mar 12 18:13:23 2014 -0400 Use cleaner upstream solution for -ftree-loop-distribute-patterns (#911307). -:100644 100644 01bfead a00346b M glibc-nscd-sysconfig.patch -:100644 100644 67dbcb3 b06c748 M glibc-rh1070416.patch -:100644 100644 d8bab3f f25e261 M glibc.spec -:100644 100644 5174fd8 81f9d47 M sources +:100644 100644 01bfead6 a00346bd M glibc-nscd-sysconfig.patch +:100644 100644 67dbcb3a b06c748b M glibc-rh1070416.patch +:100644 100644 d8bab3f5 f25e2617 M glibc.spec +:100644 100644 5174fd85 81f9d479 M sources commit 6b370585326a4b32b14f3f6753ac35ee23e9acb5 Author: Carlos O'Donell @@ -22620,7 +22740,7 @@ CommitDate: Wed Mar 5 16:13:37 2014 -0500 Update comments to match across other branches. -:100644 100644 5478cbf d8bab3f M glibc.spec +:100644 100644 5478cbfd d8bab3f5 M glibc.spec commit 51574b29c6fda9b9e8c0ac1a3168c9c144961684 Author: Siddhesh Poyarekar @@ -22630,9 +22750,9 @@ CommitDate: Tue Mar 4 23:20:27 2014 +0530 Sync with upstream master -:100644 100644 44b9195 5960ca2 M glibc-fedora-streams-rh436349.patch -:100644 100644 7bc74eb 5478cbf M glibc.spec -:100644 100644 dbacb61 5174fd8 M sources +:100644 100644 44b9195d 5960ca24 M glibc-fedora-streams-rh436349.patch +:100644 100644 7bc74eb8 5478cbfd M glibc.spec +:100644 100644 dbacb61c 5174fd85 M sources commit bdbcf83e8290d12c43b8740edd63e7cb7abd38dd Author: Siddhesh Poyarekar @@ -22648,11 +22768,11 @@ CommitDate: Thu Feb 27 00:31:15 2014 +0530 on errors like, say, failing to parse nscd.conf, it should be declared as forking instead. -:000000 100644 0000000 01bfead A glibc-nscd-sysconfig.patch -:000000 100644 0000000 67dbcb3 A glibc-rh1070416.patch -:100644 100644 13823c9 7bc74eb M glibc.spec -:100644 000000 744a5c8 0000000 D nscd.service -:100644 000000 7e512d5 0000000 D nscd.socket +:000000 100644 00000000 01bfead6 A glibc-nscd-sysconfig.patch +:000000 100644 00000000 67dbcb3a A glibc-rh1070416.patch +:100644 100644 13823c9a 7bc74eb8 M glibc.spec +:100644 000000 744a5c8f 00000000 D nscd.service +:100644 000000 7e512d53 00000000 D nscd.socket commit 52f69e7bd59408115a3d3909f8a12561e92bb7a2 Author: Siddhesh Poyarekar @@ -22662,10 +22782,10 @@ CommitDate: Tue Feb 25 15:22:53 2014 +0530 Sync with upstream master and Resolve: #1069559 -:000000 100644 0000000 9c098c2 A glibc-rh1069559-1.patch -:000000 100644 0000000 b74e2f1 A glibc-rh1069559-2.patch -:100644 100644 6636ed9 13823c9 M glibc.spec -:100644 100644 f2ebbfe dbacb61 M sources +:000000 100644 00000000 9c098c25 A glibc-rh1069559-1.patch +:000000 100644 00000000 b74e2f15 A glibc-rh1069559-2.patch +:100644 100644 6636ed95 13823c9a M glibc.spec +:100644 100644 f2ebbfe5 dbacb61c M sources commit eaa1d42819c1d43f27552dfa55accfcc4ac25d54 Author: Carlos O'Donell @@ -22685,8 +22805,8 @@ CommitDate: Mon Feb 24 22:33:35 2014 -0500 VM where it is more likely the stack pages were dirty. It has not been reported on non-VM systems. -:100644 100644 9715afd 187c7e5 M build-locale-archive.c -:100644 100644 e35ccfa 6636ed9 M glibc.spec +:100644 100644 9715afde 187c7e52 M build-locale-archive.c +:100644 100644 e35ccfad 6636ed95 M glibc.spec commit c4fcabb2229ecd5021037cbd517d1efe52c44f35 Author: Siddhesh Poyarekar @@ -22696,7 +22816,7 @@ CommitDate: Tue Feb 18 22:57:10 2014 +0530 Actually upload the new sources -:100644 100644 8ec3f3e f2ebbfe M sources +:100644 100644 8ec3f3ec f2ebbfe5 M sources commit 372014ca281ec31092730293d3f81f9b5982026e Author: Siddhesh Poyarekar @@ -22708,9 +22828,9 @@ CommitDate: Tue Feb 18 22:48:17 2014 +0530 We've sped past 2.19 now. -:100644 100644 8af1f78 b22e421 M glibc-rh819430.patch -:100644 100644 49de569 74c1e5a M glibc-rh911307.patch -:100644 100644 af9f358 e35ccfa M glibc.spec +:100644 100644 8af1f788 b22e4217 M glibc-rh819430.patch +:100644 100644 49de5697 74c1e5ac M glibc-rh911307.patch +:100644 100644 af9f3589 e35ccfad M glibc.spec commit c90adf8884e7fd1c937137d80f383d9d96eb4aa4 Author: Siddhesh Poyarekar @@ -22720,8 +22840,8 @@ CommitDate: Tue Feb 4 13:17:38 2014 +0530 Sync with upstream master. -:100644 100644 58e1247 af9f358 M glibc.spec -:100644 100644 38fe555 8ec3f3e M sources +:100644 100644 58e12479 af9f3589 M glibc.spec +:100644 100644 38fe555a 8ec3f3ec M sources commit 80e87fcac5ab398b914c40c39453ce4b153265d7 Author: Siddhesh Poyarekar @@ -22733,7 +22853,7 @@ CommitDate: Wed Jan 29 16:12:36 2014 +0530 Modify regular expressions to include powerpcle stubs-*.h. -:100644 100644 36bac4a 58e1247 M glibc.spec +:100644 100644 36bac4a0 58e12479 M glibc.spec commit ef2183ca46881838bf2efde20b7b0ea04e802d02 Author: Siddhesh Poyarekar @@ -22743,8 +22863,8 @@ CommitDate: Wed Jan 29 14:46:39 2014 +0530 Add missing period to commit log and changelog -:100644 100644 8e403f9 36bac4a M glibc.spec -:100755 100755 dc0146c 4e1a923 M sync-upstream.sh +:100644 100644 8e403f9f 36bac4a0 M glibc.spec +:100755 100755 dc0146c5 4e1a923e M sync-upstream.sh commit 66a6e936bd571234487cd3da50580d2dd8ea660d Author: Siddhesh Poyarekar @@ -22754,7 +22874,7 @@ CommitDate: Wed Jan 29 10:47:59 2014 +0530 Fix typo in sync-upstream.sh -:100755 100755 4697706 dc0146c M sync-upstream.sh +:100755 100755 46977060 dc0146c5 M sync-upstream.sh commit 68ca569f59b9024a7c71ca4c208989ff74feca7e Author: Siddhesh Poyarekar @@ -22764,8 +22884,8 @@ CommitDate: Wed Jan 29 10:47:29 2014 +0530 Sync with upstream master -:100644 100644 2073409 8e403f9 M glibc.spec -:100644 100644 1d24095 38fe555 M sources +:100644 100644 20734096 8e403f9f M glibc.spec +:100644 100644 1d240959 38fe555a M sources commit 8e19d6350d04a983c89654122dd200080b914581 Author: Siddhesh Poyarekar @@ -22775,7 +22895,7 @@ CommitDate: Wed Jan 29 10:21:40 2014 +0530 Add a comment to the script describing usage -:100755 100755 16f0a0d 4697706 M sync-upstream.sh +:100755 100755 16f0a0d5 46977060 M sync-upstream.sh commit 9ede0d0c356c838e407204c8f5180a53725df855 Author: Siddhesh Poyarekar @@ -22800,7 +22920,7 @@ CommitDate: Wed Jan 29 10:21:40 2014 +0530 complete the sync. This will typically happen when a patch fails to apply on the new sources. -:000000 100755 0000000 16f0a0d A sync-upstream.sh +:000000 100755 00000000 16f0a0d5 A sync-upstream.sh commit 56fa2407395c003c559497e3e2d29b533ee720af Author: Siddhesh Poyarekar @@ -22810,7 +22930,7 @@ CommitDate: Wed Jan 29 10:21:40 2014 +0530 Bump release number and fix changelog entry for last fix -:100644 100644 6a36498 2073409 M glibc.spec +:100644 100644 6a36498c 20734096 M glibc.spec commit 111d75b10fe5ed46bcfe24b1a78a620091b75ee5 Author: Ville Skyttä @@ -22820,7 +22940,7 @@ CommitDate: Sat Jan 25 20:52:16 2014 +0200 Own the %{_prefix}/lib/locale dir. -:100644 100644 d3a3a8d 6a36498 M glibc.spec +:100644 100644 d3a3a8dc 6a36498c M glibc.spec commit e74f409fb987f79934ffd400c9c8df8f6414ed3e Author: Siddhesh Poyarekar @@ -22830,8 +22950,8 @@ CommitDate: Thu Jan 23 15:15:41 2014 +0530 Sync with upstream master -:100644 100644 1012d73 d3a3a8d M glibc.spec -:100644 100644 05b4e53 1d24095 M sources +:100644 100644 1012d738 d3a3a8dc M glibc.spec +:100644 100644 05b4e533 1d240959 M sources commit 0a210cc9b2128cba5d9e5b25a2073de5f9b22393 Author: Siddhesh Poyarekar @@ -22841,8 +22961,8 @@ CommitDate: Thu Jan 16 12:03:18 2014 +0530 Back out ftell test case (#1052846) -:100644 100644 c88675a cbc670e M glibc-rh1052846.patch -:100644 100644 4294b16 1012d73 M glibc.spec +:100644 100644 c88675a6 cbc670e6 M glibc-rh1052846.patch +:100644 100644 4294b167 1012d738 M glibc.spec commit 8ecbeeba6e119d725bfd4e7416a21e2051ddbcc8 Author: Siddhesh Poyarekar @@ -22855,9 +22975,9 @@ CommitDate: Tue Jan 14 14:16:38 2014 +0530 - Sync with upstream master. - Fix infinite loop in ftell when writing wide char data (#1052846). -:000000 100644 0000000 c88675a A glibc-rh1052846.patch -:100644 100644 e9e28e8 4294b16 M glibc.spec -:100644 100644 8fbe070 05b4e53 M sources +:000000 100644 00000000 c88675a6 A glibc-rh1052846.patch +:100644 100644 e9e28e87 4294b167 M glibc.spec +:100644 100644 8fbe0707 05b4e533 M sources commit 216cf91d8b00e47972cd4e741376447018bf5017 Author: Siddhesh Poyarekar @@ -22867,9 +22987,9 @@ CommitDate: Tue Jan 7 15:06:38 2014 +0530 Enable systemtap on Power and S/390 and sync up with upstream -:100644 100644 9db0434 f633dc5 M glibc-rh757881.patch -:100644 100644 cf5024a e9e28e8 M glibc.spec -:100644 100644 eb5bcc3 8fbe070 M sources +:100644 100644 9db04346 f633dc59 M glibc-rh757881.patch +:100644 100644 cf5024aa e9e28e87 M glibc.spec +:100644 100644 eb5bcc3c 8fbe0707 M sources commit 8e0f85bf4efb1130ef801bb8c01c7fe2fa87959f Author: Siddhesh Poyarekar @@ -22879,8 +22999,8 @@ CommitDate: Fri Dec 27 11:06:36 2013 +0530 Sync with upstream master -:100644 100644 0066824 cf5024a M glibc.spec -:100644 100644 67d7f46 eb5bcc3 M sources +:100644 100644 0066824f cf5024aa M glibc.spec +:100644 100644 67d7f468 eb5bcc3c M sources commit 893671e8e63151a000e5ed0b552c03f564530b97 Author: Siddhesh Poyarekar @@ -22890,8 +23010,8 @@ CommitDate: Fri Dec 20 15:20:21 2013 +0530 Sync with upstream master -:100644 100644 568eb9d 0066824 M glibc.spec -:100644 100644 662b50a 67d7f46 M sources +:100644 100644 568eb9d9 0066824f M glibc.spec +:100644 100644 662b50a1 67d7f468 M sources commit b04b5f9a6f4e967806138ea79805c7f72c464057 Author: Siddhesh Poyarekar @@ -22901,8 +23021,8 @@ CommitDate: Wed Dec 4 11:17:23 2013 +0530 Sync with upstream master -:100644 100644 844463b 568eb9d M glibc.spec -:100644 100644 e48d6df 662b50a M sources +:100644 100644 844463ba 568eb9d9 M glibc.spec +:100644 100644 e48d6dfa 662b50a1 M sources commit 439a9b91b6568bf639c8d66f63a44aa1f494c463 Author: Siddhesh Poyarekar @@ -22912,9 +23032,9 @@ CommitDate: Thu Nov 28 18:17:19 2013 +0530 Sync with upstream master -:100644 000000 05f5681 0000000 D glibc-rh1009623.patch -:100644 100644 98562c8 844463b M glibc.spec -:100644 100644 25e6950 e48d6df M sources +:100644 000000 05f5681f 00000000 D glibc-rh1009623.patch +:100644 100644 98562c8b 844463ba M glibc.spec +:100644 100644 25e6950b e48d6dfa M sources commit f1f239ebf99144c37873e1e9ed6a8d160c6c91ef Author: Siddhesh Poyarekar @@ -22924,8 +23044,8 @@ CommitDate: Wed Nov 20 15:46:46 2013 +0530 Sync with upstream master -:100644 100644 ef9d642 98562c8 M glibc.spec -:100644 100644 14b3045 25e6950 M sources +:100644 100644 ef9d642c 98562c8b M glibc.spec +:100644 100644 14b3045a 25e6950b M sources commit 91f5f14b937066131cdbba55051ddf0a6f2948b8 Author: Carlos O'Donell @@ -22937,8 +23057,8 @@ CommitDate: Sat Nov 9 02:15:56 2013 -0500 - Enhance NSCD's SELinux support to use dynamic permission names (#1025126). -:000000 100644 0000000 ac6b481 A glibc-rh1025126.patch -:100644 100644 72477fe ef9d642 M glibc.spec +:000000 100644 00000000 ac6b4815 A glibc-rh1025126.patch +:100644 100644 72477fe5 ef9d642c M glibc.spec commit 56999f00cc0f3090c5609a7edb284b28b62f871d Author: Siddhesh Poyarekar @@ -22950,7 +23070,7 @@ CommitDate: Mon Oct 28 11:51:00 2013 +0530 Fix pulled in as a result of the rebase. -:100644 100644 70d67a8 72477fe M glibc.spec +:100644 100644 70d67a86 72477fe5 M glibc.spec commit 14915008a3df3e324c152fc3e194f0985d36121d Author: Siddhesh Poyarekar @@ -22960,9 +23080,9 @@ CommitDate: Mon Oct 28 11:44:33 2013 +0530 Sync with upstream master -:100644 000000 c390b77 0000000 D glibc-rh739743.patch -:100644 100644 9a1b4ad 70d67a8 M glibc.spec -:100644 100644 efbcfc8 14b3045 M sources +:100644 000000 c390b772 00000000 D glibc-rh739743.patch +:100644 100644 9a1b4ad8 70d67a86 M glibc.spec +:100644 100644 efbcfc88 14b3045a M sources commit 4d96e3246cdb6ea797fe104a79875268fa888532 Author: Siddhesh Poyarekar @@ -22972,10 +23092,10 @@ CommitDate: Mon Oct 21 15:06:43 2013 +0530 Sync with upstream master -:100644 000000 c058ecf 0000000 D glibc-fedora-gai-canonical.patch -:100644 000000 37680e4 0000000 D glibc-localedef-arg.patch -:100644 100644 7f43638 9a1b4ad M glibc.spec -:100644 100644 ca18a79 efbcfc8 M sources +:100644 000000 c058ecf9 00000000 D glibc-fedora-gai-canonical.patch +:100644 000000 37680e43 00000000 D glibc-localedef-arg.patch +:100644 100644 7f43638f 9a1b4ad8 M glibc.spec +:100644 100644 ca18a794 efbcfc88 M sources commit f6520166f41d58832351d35cfa987ecbb44f5986 Author: Carlos O'Donell @@ -22993,7 +23113,7 @@ CommitDate: Fri Oct 18 23:39:03 2013 -0400 This way if fname is NULL then ah.fname remains NULL and open_archive opens the default archive. -:100644 100644 0c218b9 9715afd M build-locale-archive.c +:100644 100644 0c218b9a 9715afde M build-locale-archive.c commit f03231b0696735487c97752ed710aade46e6b78c Author: Siddhesh Poyarekar @@ -23003,11 +23123,11 @@ CommitDate: Tue Oct 15 11:09:58 2013 +0530 Sync with upstream master -:100644 000000 0637740 0000000 D glibc-rh1007590.patch -:100644 100644 3cec783 76f85bf M glibc-rh841787.patch -:100644 000000 120bd87 0000000 D glibc-stap-libm.patch -:100644 100644 4ba39de 7f43638 M glibc.spec -:100644 100644 b85122a ca18a79 M sources +:100644 000000 0637740f 00000000 D glibc-rh1007590.patch +:100644 100644 3cec7832 76f85bf2 M glibc-rh841787.patch +:100644 000000 120bd876 00000000 D glibc-stap-libm.patch +:100644 100644 4ba39deb 7f43638f M glibc.spec +:100644 100644 b85122aa ca18a794 M sources commit c2021d0b305d436734709186c8c5dca254f77770 Author: Carlos O'Donell @@ -23021,10 +23141,10 @@ CommitDate: Thu Oct 3 05:22:51 2013 -0400 requiring libpthread.so. (#1013801) - Support `--list-archive FILE' in localedef utility. -:100644 100644 3818485 0c218b9 M build-locale-archive.c -:000000 100644 0000000 37680e4 A glibc-localedef-arg.patch -:000000 100644 0000000 532589c A glibc-rh1013801.patch -:100644 100644 d471296 4ba39de M glibc.spec +:100644 100644 3818485a 0c218b9a M build-locale-archive.c +:000000 100644 00000000 37680e43 A glibc-localedef-arg.patch +:000000 100644 00000000 532589cd A glibc-rh1013801.patch +:100644 100644 d471296b 4ba39deb M glibc.spec commit 13a25e85c084da586783f3291e1f2afca9c27f90 Author: Siddhesh Poyarekar @@ -23034,8 +23154,8 @@ CommitDate: Thu Oct 3 10:42:38 2013 +0530 Define swap_endianness_p in build-locale-archive -:100644 100644 474f666 3818485 M build-locale-archive.c -:100644 100644 5eec1a5 d471296 M glibc.spec +:100644 100644 474f666a 3818485a M build-locale-archive.c +:100644 100644 5eec1a5e d471296b M glibc.spec commit 9c4147aa9e33fca7fae5832eb2fab0232b3d0b4f Author: Carlos O'Donell @@ -23050,8 +23170,8 @@ CommitDate: Wed Oct 2 21:34:56 2013 -0400 around a binutils bug that caused objects to become unmarked. (#1009145) -:000000 100644 0000000 c1af7fa A glibc-rh1009145.patch -:100644 100644 f1e1a2b 5eec1a5 M glibc.spec +:000000 100644 00000000 c1af7fa0 A glibc-rh1009145.patch +:100644 100644 f1e1a2b1 5eec1a5e M glibc.spec commit 4ef95943288e1b0ee4939527f952c98c4a0cddc1 Author: Siddhesh Poyarekar @@ -23061,9 +23181,9 @@ CommitDate: Tue Oct 1 20:23:50 2013 +0530 Fix PI mutex check for non-x86 and resync with upstream master -:000000 100644 0000000 0637740 A glibc-rh1007590.patch -:100644 100644 e591cd6 f1e1a2b M glibc.spec -:100644 100644 50cdc0d b85122a M sources +:000000 100644 00000000 0637740f A glibc-rh1007590.patch +:100644 100644 e591cd66 f1e1a2b1 M glibc.spec +:100644 100644 50cdc0d6 b85122aa M sources commit a9c7f8acc7f553304a6d73fbee69b807f1c56fa6 Author: Carlos O'Donell @@ -23075,8 +23195,8 @@ CommitDate: Tue Sep 24 02:01:06 2013 -0400 - Avoid the use of __block which is a reserved keyword for clang++ -:000000 100644 0000000 05f5681 A glibc-rh1009623.patch -:100644 100644 03c34a6 e591cd6 M glibc.spec +:000000 100644 00000000 05f5681f A glibc-rh1009623.patch +:100644 100644 03c34a6d e591cd66 M glibc.spec commit bf5e654c2118c527172646266a2e833df163d89e Author: Siddhesh Poyarekar @@ -23086,10 +23206,10 @@ CommitDate: Mon Sep 23 13:22:23 2013 +0530 Resync with upstream master -:100644 000000 3ed59d8 0000000 D glibc-rh985625-CVE-2013-4788.patch -:100644 000000 7c220f4 0000000 D glibc-strcoll-cve.patch -:100644 100644 9afa3d8 03c34a6 M glibc.spec -:100644 100644 eea5237 50cdc0d M sources +:100644 000000 3ed59d8f 00000000 D glibc-rh985625-CVE-2013-4788.patch +:100644 000000 7c220f4f 00000000 D glibc-strcoll-cve.patch +:100644 100644 9afa3d85 03c34a6d M glibc.spec +:100644 100644 eea52371 50cdc0d6 M sources commit 1a343f85feb86584c25e120b89b3daf61ebe98c4 Author: Carlos O'Donell @@ -23099,7 +23219,7 @@ CommitDate: Mon Sep 23 01:54:23 2013 -0400 Sync CVE-2013-4788 patch again (no NVR bump again). -:100644 100644 4888431 3ed59d8 M glibc-rh985625-CVE-2013-4788.patch +:100644 100644 48884312 3ed59d8f M glibc-rh985625-CVE-2013-4788.patch commit 593edbc2d565b50a6d59c403e27a0ec755915419 Author: Carlos O'Donell @@ -23109,7 +23229,7 @@ CommitDate: Mon Sep 23 01:02:10 2013 -0400 Sync CVE-2013-4788 patch (no need for NVR bump). -:100644 100644 a2d2c4d 4888431 M glibc-rh985625-CVE-2013-4788.patch +:100644 100644 a2d2c4d8 48884312 M glibc-rh985625-CVE-2013-4788.patch commit 2cd5135a96169dea6830ea23ebbb8c8448a30909 Author: Carlos O'Donell @@ -23122,8 +23242,8 @@ CommitDate: Mon Sep 23 00:30:55 2013 -0400 - Fix CVE-2013-4788: Static applications now support pointer mangling. Existing static applications must be recompiled (#985625). -:000000 100644 0000000 a2d2c4d A glibc-rh985625-CVE-2013-4788.patch -:100644 100644 8ab7196 9afa3d8 M glibc.spec +:000000 100644 00000000 a2d2c4d8 A glibc-rh985625-CVE-2013-4788.patch +:100644 100644 8ab71965 9afa3d85 M glibc.spec commit 1939babb04344146ddb9ae5203d484e2c167a482 Author: Patsy Franklin @@ -23134,7 +23254,7 @@ CommitDate: Thu Sep 19 10:23:27 2013 -0400 Resolves: #804768 -Require a specific version of binutils for s390/s390x support. -:100644 100644 1e3327c 8ab7196 M glibc.spec +:100644 100644 1e3327c3 8ab71965 M glibc.spec commit fb87393c9957654d30e283ce2c3e9a78628c8f30 Author: Siddhesh Poyarekar @@ -23144,8 +23264,8 @@ CommitDate: Mon Sep 16 15:16:18 2013 +0530 Resync with upstream master -:100644 100644 1d6a829 1e3327c M glibc.spec -:100644 100644 087cb40 eea5237 M sources +:100644 100644 1d6a8291 1e3327c3 M glibc.spec +:100644 100644 087cb40d eea52371 M sources commit 35b7508499170e8a9e9466499e4ccb82e51e353b Author: Siddhesh Poyarekar @@ -23155,13 +23275,13 @@ CommitDate: Thu Sep 5 17:37:40 2013 +0530 Resync with upstream master -:100644 000000 6010624 0000000 D glibc-rh1000924.patch -:100644 000000 ce8234c 0000000 D glibc-rh800224.patch -:100644 000000 ce2463b 0000000 D glibc-rh985342.patch -:100644 000000 f745cb0 0000000 D glibc-rh995841.patch -:100644 100644 5558c1f 7c220f4 M glibc-strcoll-cve.patch -:100644 100644 f639c07 1d6a829 M glibc.spec -:100644 100644 56c580f 087cb40 M sources +:100644 000000 60106247 00000000 D glibc-rh1000924.patch +:100644 000000 ce8234c0 00000000 D glibc-rh800224.patch +:100644 000000 ce2463b0 00000000 D glibc-rh985342.patch +:100644 000000 f745cb00 00000000 D glibc-rh995841.patch +:100644 100644 5558c1fe 7c220f4f M glibc-strcoll-cve.patch +:100644 100644 f639c075 1d6a8291 M glibc.spec +:100644 100644 56c580fe 087cb40d M sources commit db59a6354f0e1e4f2088882b4ec58609c6b2890e Author: Carlos O'Donell @@ -23171,7 +23291,7 @@ CommitDate: Thu Aug 29 00:36:52 2013 -0400 Fix Power build (#997531). -:100644 100644 68ee4e6 f639c07 M glibc.spec +:100644 100644 68ee4e64 f639c075 M glibc.spec commit b8280fad3dff1766f9b87d38acefdfdb7ba61c09 Author: Carlos O'Donell @@ -23182,8 +23302,8 @@ CommitDate: Wed Aug 28 00:34:43 2013 -0400 Fix indirect function support to avoid calling optimized routines for the wrong hardware (#985342). -:000000 100644 0000000 ce2463b A glibc-rh985342.patch -:100644 100644 2b234f7 68ee4e6 M glibc.spec +:000000 100644 00000000 ce2463b0 A glibc-rh985342.patch +:100644 100644 2b234f74 68ee4e64 M glibc.spec commit 97490e6a11e8e88ce07df41cb289b08af200d32d Author: Siddhesh Poyarekar @@ -23193,8 +23313,8 @@ CommitDate: Mon Aug 26 12:23:11 2013 +0530 Initialize res_hconf in nscd -:000000 100644 0000000 6010624 A glibc-rh1000924.patch -:100644 100644 3bc0ebf 2b234f7 M glibc.spec +:000000 100644 00000000 60106247 A glibc-rh1000924.patch +:100644 100644 3bc0ebfe 2b234f74 M glibc.spec commit 25e270de7cfb9570834f70a1766c6e60e944355b Author: Siddhesh Poyarekar @@ -23204,8 +23324,8 @@ CommitDate: Thu Aug 22 15:08:00 2013 +0530 Fix tst-aiod2 and tst-aiod3 test failures (#970865) -:000000 100644 0000000 d790735 A glibc-rh970865.patch -:100644 100644 d5df9dd 3bc0ebf M glibc.spec +:000000 100644 00000000 d7907359 A glibc-rh970865.patch +:100644 100644 d5df9dde 3bc0ebfe M glibc.spec commit 735547c10eb2f3981b702fbb84d36934630dc185 Author: Siddhesh Poyarekar @@ -23217,8 +23337,8 @@ CommitDate: Thu Aug 22 11:10:25 2013 +0530 Expanded types for some variables to prevent overflow. -:100644 100644 98ac2e6 5558c1f M glibc-strcoll-cve.patch -:100644 100644 8615ffa d5df9dd M glibc.spec +:100644 100644 98ac2e6f 5558c1fe M glibc-strcoll-cve.patch +:100644 100644 8615ffa7 d5df9dde M glibc.spec commit e3b637cf01e31d41ca57cf10629abf0010d17ae0 Author: Siddhesh Poyarekar @@ -23232,8 +23352,8 @@ CommitDate: Thu Aug 22 11:07:15 2013 +0530 function not adjusting the GOT pointer before calling the cleanup function. -:000000 100644 0000000 e3f4eca A glibc-rh731833-rtkaio-2.patch -:100644 100644 2873649 8615ffa M glibc.spec +:000000 100644 00000000 e3f4ecae A glibc-rh731833-rtkaio-2.patch +:100644 100644 28736494 8615ffa7 M glibc.spec commit 615c1c469489451565a3e0f144ab03c64072e502 Author: Siddhesh Poyarekar @@ -23243,8 +23363,8 @@ CommitDate: Tue Aug 20 10:14:34 2013 +0530 Remove non-ELF support in rtkaio -:000000 100644 0000000 c4ae52a A glibc-rh731833-rtkaio.patch -:100644 100644 eef7c4a 2873649 M glibc.spec +:000000 100644 00000000 c4ae52a1 A glibc-rh731833-rtkaio.patch +:100644 100644 eef7c4a2 28736494 M glibc.spec commit f40b2eb05bfa7405901a2f9b2aaa910887264e88 Author: Siddhesh Poyarekar @@ -23254,7 +23374,7 @@ CommitDate: Mon Aug 19 17:08:37 2013 +0530 Fix changelog and release number -:100644 100644 0fcad01 eef7c4a M glibc.spec +:100644 100644 0fcad014 eef7c4a2 M glibc.spec commit 17b00fb789905f372cd4a93130f5f661c2a30354 Author: Siddhesh Poyarekar @@ -23267,18 +23387,18 @@ CommitDate: Mon Aug 19 17:05:59 2013 +0530 Add necessary files directly to the Fedora git tree and add rtkaio and c_stubs bits as patches. -:000000 100644 0000000 474f666 A build-locale-archive.c -:000000 100644 0000000 934f0d0 A glibc-c_stubs.patch -:000000 100644 0000000 d7f3d6e A glibc-rtkaio.patch -:100644 100644 acd73e6 0fcad01 M glibc.spec -:000000 100644 0000000 85309bf A glibc_post_upgrade.c -:000000 100644 0000000 d243ef0 A libc-lock.h -:000000 100644 0000000 8a24a78 A nscd.conf -:000000 100644 0000000 744a5c8 A nscd.service -:000000 100644 0000000 7e512d5 A nscd.socket -:000000 100644 0000000 2f6c84e A nsswitch.conf -:000000 100644 0000000 1b0187b A power6emul.c -:100644 100644 fea5433 56c580f M sources +:000000 100644 00000000 474f666a A build-locale-archive.c +:000000 100644 00000000 934f0d06 A glibc-c_stubs.patch +:000000 100644 00000000 d7f3d6e4 A glibc-rtkaio.patch +:100644 100644 acd73e63 0fcad014 M glibc.spec +:000000 100644 00000000 85309bfb A glibc_post_upgrade.c +:000000 100644 00000000 d243ef07 A libc-lock.h +:000000 100644 00000000 8a24a785 A nscd.conf +:000000 100644 00000000 744a5c8f A nscd.service +:000000 100644 00000000 7e512d53 A nscd.socket +:000000 100644 00000000 2f6c84e5 A nsswitch.conf +:000000 100644 00000000 1b0187bd A power6emul.c +:100644 100644 fea54338 56c580fe M sources commit f64a75b648e854e669fa75843e8627d8ed842b54 Author: Siddhesh Poyarekar @@ -23288,8 +23408,8 @@ CommitDate: Mon Aug 19 13:33:34 2013 +0530 Fix buffer overflow in readdir_r (#995841, CVE-2013-4237) -:000000 100644 0000000 f745cb0 A glibc-rh995841.patch -:100644 100644 ac1dfeb acd73e6 M glibc.spec +:000000 100644 00000000 f745cb00 A glibc-rh995841.patch +:100644 100644 ac1dfeb1 acd73e63 M glibc.spec commit 944ed516b07a1bc8d88c5f5b276236ea8c9f154f Author: Siddhesh Poyarekar @@ -23299,7 +23419,7 @@ CommitDate: Fri Aug 16 19:30:36 2013 +0530 Pull in systemd during build and use the tmpfilesdir macro. -:100644 100644 82d87e1 ac1dfeb M glibc.spec +:100644 100644 82d87e18 ac1dfeb1 M glibc.spec commit 5817231d5000480e2668b12768b9a07e1b98e60a Author: Siddhesh Poyarekar @@ -23309,8 +23429,8 @@ CommitDate: Fri Aug 16 19:26:44 2013 +0530 Upstream release 2.18 -:100644 100644 e58f1cb 82d87e1 M glibc.spec -:100644 100644 744ebfe fea5433 M sources +:100644 100644 e58f1cbe 82d87e18 M glibc.spec +:100644 100644 744ebfe6 fea54338 M sources commit 63769b1ddc1f4905c37723bb0e3d8654e1f5b6fb Author: Carlos O'Donell @@ -23325,7 +23445,7 @@ CommitDate: Wed Aug 14 23:48:25 2013 -0400 utilities are still referenced by their absolute path which includes /usr. -:100644 100644 6a63622 e58f1cb M glibc.spec +:100644 100644 6a63622d e58f1cbe M glibc.spec commit 5b97b46bb34a61fe0f9a4742aa6e8702e5e1a00e Author: Carlos O'Donell @@ -23337,7 +23457,7 @@ CommitDate: Wed Aug 14 15:51:47 2013 -0400 Fix typo. -:100644 100644 67a7f31 6a63622 M glibc.spec +:100644 100644 67a7f314 6a63622d M glibc.spec commit b8e4762c60322420138892e5259e4dcde5e8c895 Author: Carlos O'Donell @@ -23353,7 +23473,7 @@ CommitDate: Tue Aug 13 16:41:01 2013 -0400 Reverting this patch is the only way forward until we find a transitional way to support this. -:100644 100644 026e10c 67a7f31 M glibc.spec +:100644 100644 026e10c9 67a7f314 M glibc.spec commit 62c3082486aa6e0341a978c15ca3903802c58a81 Author: Carlos O'Donell @@ -23369,7 +23489,7 @@ CommitDate: Tue Aug 13 13:18:15 2013 -0400 replaced with uses of `%{_prefix}' for files installed by the package. -:100644 100644 66abc70 026e10c M glibc.spec +:100644 100644 66abc703 026e10c9 M glibc.spec commit baa7ac638442d5188ea811b02e39a9aed3be2905 Author: Carlos O'Donell @@ -23379,7 +23499,7 @@ CommitDate: Fri Aug 9 00:48:21 2013 -0400 Fix typo in install_different local vars. -:100644 100644 8e61908 66abc70 M glibc.spec +:100644 100644 8e61908e 66abc703 M glibc.spec commit 71c008f968d098e8959a064ead4699b32b7a2a74 Author: Carlos O'Donell @@ -23395,7 +23515,7 @@ CommitDate: Fri Aug 9 00:41:01 2013 -0400 conditionally install any libaries where different in the new multilib (different from the default). -:100644 100644 bd35de6 8e61908 M glibc.spec +:100644 100644 bd35de6b 8e61908e M glibc.spec commit 85447d4e89fcc6ceee24eb678f3661f8ea1290dd Author: Carlos O'Donell @@ -23422,7 +23542,7 @@ CommitDate: Thu Aug 8 12:29:39 2013 -0400 The solution removes the warnings and produces no visible change in the output rpms. -:100644 100644 c24f62d bd35de6 M glibc.spec +:100644 100644 c24f62dd bd35de6b M glibc.spec commit 37b5e6be8132f976fbe5dfa6e33e6204a4d4dc4f Author: Carlos O'Donell @@ -23436,7 +23556,7 @@ CommitDate: Thu Aug 8 11:24:25 2013 -0400 Don't use `|| :' to hide errors. -:100644 100644 33300d7 c24f62d M glibc.spec +:100644 100644 33300d76 c24f62dd M glibc.spec commit f20c318f754bdc72b35a693d6d2e218c303f1b9c Author: Karsten Hopp @@ -23446,7 +23566,7 @@ CommitDate: Wed Aug 7 15:18:48 2013 +0200 rebuild with the latest rpm to fix missing ld64.so provides on PPC -:100644 100644 4be32e4 33300d7 M glibc.spec +:100644 100644 4be32e4d 33300d76 M glibc.spec commit e009d66cdfd6fcdd355e9ddb55470af0deba6134 Author: Carlos O'Donell @@ -23460,7 +23580,7 @@ CommitDate: Mon Jul 29 14:36:48 2013 -0400 - Fix missing libbsd.a in debuginfo packages. -:100644 100644 fc1d399 4be32e4 M glibc.spec +:100644 100644 fc1d3994 4be32e4d M glibc.spec commit 0d1d15d15b58200db865cbe8193082159e0eff07 Author: Carlos O'Donell @@ -23475,7 +23595,7 @@ CommitDate: Mon Jul 29 14:34:27 2013 -0400 experimenting with package layout by changing only _libdir. -:100644 100644 c73a87d fc1d399 M glibc.spec +:100644 100644 c73a87df fc1d3994 M glibc.spec commit 3bc8fa746f408f75aaf36ecfb41737f8d3727dde Author: Carlos O'Donell @@ -23490,7 +23610,7 @@ CommitDate: Mon Jul 29 14:34:27 2013 -0400 to before the phase that adds files to the debuginfo. This way the debuginfo files are computed after all files are in place. -:100644 100644 a8dd4f2 c73a87d M glibc.spec +:100644 100644 a8dd4f2d c73a87df M glibc.spec commit 70cc4d3cc2c2dd6bc38f2f84f7a3ffdd561669e0 Author: Siddhesh Poyarekar @@ -23500,8 +23620,8 @@ CommitDate: Mon Jul 29 20:04:15 2013 +0530 - Fix strcoll flaws (#855399, CVE-2012-4412, CVE-2012-4424). -:000000 100644 0000000 98ac2e6 A glibc-strcoll-cve.patch -:100644 100644 63ff66a a8dd4f2 M glibc.spec +:000000 100644 00000000 98ac2e6f A glibc-strcoll-cve.patch +:100644 100644 63ff66a1 a8dd4f2d M glibc.spec commit 9a33c90499df7fd43bf807b76db919bfcd68be98 Author: Siddhesh Poyarekar @@ -23514,8 +23634,8 @@ CommitDate: Mon Jul 29 17:35:53 2013 +0530 I had forgotten to bump the release number and even add a changelog entry earlier. Do all that now. -:100644 000000 f64f449 0000000 D glibc-fedora-pt_chown.patch -:100644 100644 91d9016 63ff66a M glibc.spec +:100644 000000 f64f4499 00000000 D glibc-fedora-pt_chown.patch +:100644 100644 91d90166 63ff66a1 M glibc.spec commit 59f7846a1a5e134c142d3017aa0d4eb758021dbd Author: Siddhesh Poyarekar @@ -23525,8 +23645,8 @@ CommitDate: Mon Jul 29 16:47:41 2013 +0530 Resync with upstream master -:100644 100644 c2264fa 91d9016 M glibc.spec -:100644 100644 542fd62 744ebfe M sources +:100644 100644 c2264fa8 91d90166 M glibc.spec +:100644 100644 542fd626 744ebfe6 M sources commit 1d99c012ca07331e699ebac04c42d285d550c9ca Author: Carlos O'Donell @@ -23536,7 +23656,7 @@ CommitDate: Thu Jul 25 20:30:58 2013 -0400 Use `-s' with truncate not `-size'. -:100644 100644 b307eb6 c2264fa M glibc.spec +:100644 100644 b307eb63 c2264fa8 M glibc.spec commit 02e8252613ef6abf2d04c4e599037496d686e6df Author: Carlos O'Donell @@ -23557,7 +23677,7 @@ CommitDate: Thu Jul 25 20:17:30 2013 -0400 confusing to the reader who expects such a check for anything that is related to the debuginfo common package. -:100644 100644 0768f46 b307eb6 M glibc.spec +:100644 100644 0768f46d b307eb63 M glibc.spec commit 2eb150368a16c2eeae4b90867465dd8b8f52d63b Author: Carlos O'Donell @@ -23567,7 +23687,7 @@ CommitDate: Thu Jul 25 19:10:00 2013 -0400 Second round of whitespace and indentation fixes. -:100644 100644 3dd6f85 0768f46 M glibc.spec +:100644 100644 3dd6f852 0768f46d M glibc.spec commit d4d7effa6b058b9c93169baa3bc54e7dd1435c55 Author: Carlos O'Donell @@ -23577,7 +23697,7 @@ CommitDate: Thu Jul 25 18:53:13 2013 -0400 Reindent functions and multi-line commands. -:100644 100644 f231a29 3dd6f85 M glibc.spec +:100644 100644 f231a296 3dd6f852 M glibc.spec commit 37714d015a74c813261a9b26f8b41da95e4d3404 Author: Carlos O'Donell @@ -23589,8 +23709,8 @@ CommitDate: Thu Jul 25 15:46:20 2013 -0400 - Correctly name the 240-bit slow path sytemtap probe slowpow_p10 for slowpow. -:100644 100644 a9fe600 120bd87 M glibc-stap-libm.patch -:100644 100644 794be30 f231a29 M glibc.spec +:100644 100644 a9fe600c 120bd876 M glibc-stap-libm.patch +:100644 100644 794be308 f231a296 M glibc.spec commit 5a3b560f10cdbac4ad155431c26277912abe1ef3 Author: Carlos O'Donell @@ -23608,7 +23728,7 @@ CommitDate: Wed Jul 24 23:00:43 2013 -0400 * Install debug copies of unstripped static libs. * Miscellaneous. -:100644 100644 a86dbb4 794be30 M glibc.spec +:100644 100644 a86dbb41 794be308 M glibc.spec commit 8c7b7c2248af199cc53ef31f67db11a295dbc3f3 Author: Carlos O'Donell @@ -23618,7 +23738,7 @@ CommitDate: Wed Jul 24 22:45:11 2013 -0400 Adjust comments. -:100644 100644 52ff051 a86dbb4 M glibc.spec +:100644 100644 52ff0512 a86dbb41 M glibc.spec commit dbc262b8ededbcfabce6c27cee36a9bbbd6fd0e5 Author: Carlos O'Donell @@ -23631,7 +23751,7 @@ CommitDate: Wed Jul 24 08:54:14 2013 -0400 Add build requirement on static libstdc++ library to fix testsuite failures for static C++ tests. -:100644 100644 20b053d 52ff051 M glibc.spec +:100644 100644 20b053d6 52ff0512 M glibc.spec commit 9abcefa0aa31dbbb3e0163034ecbd82619958a45 Author: Carlos O'Donell @@ -23641,7 +23761,7 @@ CommitDate: Wed Jul 24 07:58:38 2013 -0400 Add extensive comments. -:100644 100644 8d86634 20b053d M glibc.spec +:100644 100644 8d86634d 20b053d6 M glibc.spec commit 7e232bd35cc80338c1a8d0c105d55c58dfab01ce Author: Carlos O'Donell @@ -23651,7 +23771,7 @@ CommitDate: Wed Jul 24 01:27:35 2013 -0400 Use pushd/popd for directory changes. -:100644 100644 e72ca17 8d86634 M glibc.spec +:100644 100644 e72ca174 8d86634d M glibc.spec commit bf6cb481758db8eb0021f1764e9910e79a91e25f Author: Carlos O'Donell @@ -23661,7 +23781,7 @@ CommitDate: Wed Jul 24 01:22:37 2013 -0400 Remove trailing whitespace. -:100644 100644 a1b119a e72ca17 M glibc.spec +:100644 100644 a1b119a3 e72ca174 M glibc.spec commit a383e78f66c690dfd32efb2be969707ed1d5e46d Author: Siddhesh Poyarekar @@ -23672,7 +23792,7 @@ CommitDate: Mon Jul 22 14:44:54 2013 +0530 - Enable lock elision support (#982363). - Depend on systemd instead of systemd-units (#983760). -:100644 100644 824f9f1 a1b119a M glibc.spec +:100644 100644 824f9f1b a1b119a3 M glibc.spec commit 9d560ee089fd0267684a9f71e91096cafe206cd6 Author: Siddhesh Poyarekar @@ -23682,10 +23802,10 @@ CommitDate: Tue Jul 9 23:15:48 2013 +0530 Resync with upstream master -:100644 100644 d15920a 50d7343 M glibc-fedora-__libc_multiple_libcs.patch -:100644 100644 bfaff83 ef08187 M glibc-fedora-elf-ORIGIN.patch -:100644 100644 ad2b797 824f9f1 M glibc.spec -:100644 100644 7af5223 542fd62 M sources +:100644 100644 d15920a7 50d73435 M glibc-fedora-__libc_multiple_libcs.patch +:100644 100644 bfaff836 ef081879 M glibc-fedora-elf-ORIGIN.patch +:100644 100644 ad2b7973 824f9f1b M glibc.spec +:100644 100644 7af52233 542fd626 M sources commit 5e06266896e0fb60fb80cf67666df87598953d39 Author: Carlos O'Donell @@ -23695,7 +23815,7 @@ CommitDate: Mon Jul 8 17:17:33 2013 -0400 Fix %changelog indentation. -:100644 100644 0d20e1a ad2b797 M glibc.spec +:100644 100644 0d20e1a4 ad2b7973 M glibc.spec commit cda6f0cb747c2b87e14fa85c25b580ab240aff6c Author: Siddhesh Poyarekar @@ -23707,7 +23827,7 @@ CommitDate: Fri Jul 5 11:15:40 2013 +0530 The patch was merged into 2.17 -:100644 000000 fe5a921 0000000 D glibc-rh847718.patch +:100644 000000 fe5a9210 00000000 D glibc-rh847718.patch commit 58028e95232a16edd33848e15c6b1d7e042f07d4 Author: Siddhesh Poyarekar @@ -23717,8 +23837,8 @@ CommitDate: Thu Jun 20 13:23:26 2013 +0530 Resync with upstream master -:100644 100644 9ba7f7a 0d20e1a M glibc.spec -:100644 100644 f3afc4a 7af5223 M sources +:100644 100644 9ba7f7a8 0d20e1a4 M glibc.spec +:100644 100644 f3afc4ab 7af52233 M sources commit 9a2e2fa7aace53be6dc0dca7c0a9aa930b5b2ef4 Author: Remi Collet @@ -23728,7 +23848,7 @@ CommitDate: Tue Jun 11 10:04:52 2013 +0200 rebuild for new GD 2.1.0 -:100644 100644 39be2bf 9ba7f7a M glibc.spec +:100644 100644 39be2bfb 9ba7f7a8 M glibc.spec commit 3cd9b9ce3d4e69b8e030cc8437b7b5a4a607f350 Author: Siddhesh Poyarekar @@ -23741,19 +23861,19 @@ CommitDate: Tue Jun 4 22:23:45 2013 +0530 Dropped upstreamed patches and adjusted others to apply to latest upstream. -:100644 100644 cd50d3b 36ef59c M glibc-fedora-elf-init-hidden_undef.patch -:100644 000000 0edc04f 0000000 D glibc-fedora-regcomp-sw11561.patch -:100644 100644 21859d5 18ffd8f M glibc-rh841318.patch -:100644 000000 03d201c 0000000 D glibc-rh892777.patch -:100644 000000 ec8dc81 0000000 D glibc-rh905184.patch -:100644 000000 232c7bf 0000000 D glibc-rh905877.patch -:100644 100644 9eb0426 49de569 M glibc-rh911307.patch -:100644 000000 d7bb572 0000000 D glibc-rh921760.patch -:100644 000000 b01655e 0000000 D glibc-rh959034.patch -:100644 000000 8845bab 0000000 D glibc-rh961238.patch -:100644 100644 fd20b7f a9fe600 M glibc-stap-libm.patch -:100644 100644 e5ed333 39be2bf M glibc.spec -:100644 100644 d1d2286 f3afc4a M sources +:100644 100644 cd50d3b7 36ef59c9 M glibc-fedora-elf-init-hidden_undef.patch +:100644 000000 0edc04f8 00000000 D glibc-fedora-regcomp-sw11561.patch +:100644 100644 21859d56 18ffd8f3 M glibc-rh841318.patch +:100644 000000 03d201cb 00000000 D glibc-rh892777.patch +:100644 000000 ec8dc812 00000000 D glibc-rh905184.patch +:100644 000000 232c7bf1 00000000 D glibc-rh905877.patch +:100644 100644 9eb0426b 49de5697 M glibc-rh911307.patch +:100644 000000 d7bb572b 00000000 D glibc-rh921760.patch +:100644 000000 b01655ee 00000000 D glibc-rh959034.patch +:100644 000000 8845bab4 00000000 D glibc-rh961238.patch +:100644 100644 fd20b7f6 a9fe600c M glibc-stap-libm.patch +:100644 100644 e5ed333e 39be2bfb M glibc.spec +:100644 100644 d1d22869 f3afc4ab M sources commit 1cb6060f99a974e5b3d7cd73e69b95a8db473167 Author: Siddhesh Poyarekar @@ -23765,8 +23885,8 @@ CommitDate: Tue May 14 20:18:28 2013 +0530 Resolves: #961238. -:000000 100644 0000000 8845bab A glibc-rh961238.patch -:100644 100644 61bec1c e5ed333 M glibc.spec +:000000 100644 00000000 8845bab4 A glibc-rh961238.patch +:100644 100644 61bec1cd e5ed333e M glibc.spec commit e1a168f8a949919f334af7ff83db6339dc1d5190 Author: Patsy Franklin @@ -23777,8 +23897,8 @@ CommitDate: Sun May 5 20:19:47 2013 -0400 Resolves: #959034 - Fix _nl_find_msg malloc failure case, and callers. (#959034). -:000000 100644 0000000 b01655e A glibc-rh959034.patch -:100644 100644 af608e9 61bec1c M glibc.spec +:000000 100644 00000000 b01655ee A glibc-rh959034.patch +:100644 100644 af608e95 61bec1cd M glibc.spec commit 3432a468171ce103480bdb9d9933f93625306ae8 Author: Patsy Franklin @@ -23789,8 +23909,8 @@ CommitDate: Tue Apr 30 10:51:37 2013 -0400 Resolves: #952799 - Test init_fct for NULL, not result->__init_fct, after demangling (#952799). -:100644 100644 b9aba72 9fe22aa M glibc-rh952799.patch -:100644 100644 f44847e af608e9 M glibc.spec +:100644 100644 b9aba728 9fe22aac M glibc-rh952799.patch +:100644 100644 f44847e8 af608e95 M glibc.spec commit 7f654232b164503908312f223d324cd31f005c28 Author: Patsy Franklin @@ -23802,9 +23922,9 @@ CommitDate: Tue Apr 23 16:52:25 2013 -0400 - Increase limits on xdr name and record requests (#892777). - Consistently MANGLE/DEMANGLE init_fct, end_fct and btow_fct (#952799). -:000000 100644 0000000 03d201c A glibc-rh892777.patch -:000000 100644 0000000 b9aba72 A glibc-rh952799.patch -:100644 100644 b40d6c4 f44847e M glibc.spec +:000000 100644 00000000 03d201cb A glibc-rh892777.patch +:000000 100644 00000000 b9aba728 A glibc-rh952799.patch +:100644 100644 b40d6c43 f44847e8 M glibc.spec commit 209568f5166cb4d8e3b275851742fce4eb5c7e26 Author: Siddhesh Poyarekar @@ -23814,8 +23934,8 @@ CommitDate: Thu Mar 28 14:11:28 2013 +0530 Don't add input group during initgroups_dyn in hesiod (#921760) -:000000 100644 0000000 d7bb572 A glibc-rh921760.patch -:100644 100644 00cc1e9 b40d6c4 M glibc.spec +:000000 100644 00000000 d7bb572b A glibc-rh921760.patch +:100644 100644 00cc1e9d b40d6c43 M glibc.spec commit bbd581848b802ecb5b0545f10b2e444e6707dc34 Author: Carlos O'Donell @@ -23832,7 +23952,7 @@ CommitDate: Thu Mar 21 18:18:11 2013 -0400 date. This fixes the Koji warnings about incorrect dates in the %changelog. -:100644 100644 e39854d 00cc1e9 M glibc.spec +:100644 100644 e39854d3 00cc1e9d M glibc.spec commit 37410dcf6c33770ee76aef5ea46ef28b666a0aeb Author: Carlos O'Donell @@ -23842,7 +23962,7 @@ CommitDate: Sun Mar 17 21:20:31 2013 -0400 Remove duplicate comments in spec file. -:100644 100644 306d808 e39854d M glibc.spec +:100644 100644 306d8084 e39854d3 M glibc.spec commit b5a300152e3f32eb690e15c7b92393088f5939f4 Author: Carlos O'Donell @@ -23855,8 +23975,8 @@ CommitDate: Sun Mar 17 20:13:38 2013 -0400 - Fixed i386 glibc builds (#917161). - Fixed multibyte character processing crash in regexp (#905877, CVE-2013-0242) -:000000 100644 0000000 232c7bf A glibc-rh905877.patch -:100644 100644 4018373 306d808 M glibc.spec +:000000 100644 00000000 232c7bf1 A glibc-rh905877.patch +:100644 100644 40183730 306d8084 M glibc.spec commit 6cfdaac5b6b98b0810253d20e3cb4e069f432ec6 Author: Carlos O'Donell @@ -23869,9 +23989,9 @@ CommitDate: Wed Feb 27 19:48:51 2013 -0500 - Renamed release engineering directory to `releng' (#903754). - Fix building with gcc 4.8.0 (#911307). -:000000 100644 0000000 9eb0426 A glibc-rh911307.patch -:100644 100644 2d19e3f 4018373 M glibc.spec -:100644 100644 94464e1 d1d2286 M sources +:000000 100644 00000000 9eb0426b A glibc-rh911307.patch +:100644 100644 2d19e3f7 40183730 M glibc.spec +:100644 100644 94464e12 d1d22869 M sources commit b6dbc3f013f32fefd7961a7e1afd6e887c949d23 Author: Carlos O'Donell @@ -23881,7 +24001,7 @@ CommitDate: Tue Feb 26 15:42:03 2013 -0500 Ignore /.build* and /src directories in git. -:100644 100644 6b2ce38 339be6d M .gitignore +:100644 100644 6b2ce383 339be6d9 M .gitignore commit db7fd60840a91dc2b1d1b7d19478b8c77093802b Author: Carlos O'Donell @@ -23893,8 +24013,8 @@ CommitDate: Fri Feb 8 09:40:54 2013 -0500 - Fix ownership of /usr/lib[64]/audit (#894307). - Support unmarked ARM objects in ld.so.cache and aux cache (#905184). -:000000 100644 0000000 ec8dc81 A glibc-rh905184.patch -:100644 100644 8f7ae8f 2d19e3f M glibc.spec +:000000 100644 00000000 ec8dc812 A glibc-rh905184.patch +:100644 100644 8f7ae8f9 2d19e3f7 M glibc.spec commit fb5a5a9b05ff59c34dc26aa6891890054a9bc665 Author: Jeff Law @@ -23904,9 +24024,9 @@ CommitDate: Tue Jan 1 08:00:53 2013 -0700 - Resync with official glibc-2.17 release -:100644 100644 c207fc2 6b2ce38 M .gitignore -:100644 100644 6640e06 8f7ae8f M glibc.spec -:100644 100644 f731a1f 94464e1 M sources +:100644 100644 c207fc28 6b2ce383 M .gitignore +:100644 100644 6640e06f 8f7ae8f9 M glibc.spec +:100644 100644 f731a1fc 94464e12 M sources commit 48a6019250e6700e7b50d78d092983157ac7f871 Author: Jeff Law @@ -23916,9 +24036,9 @@ CommitDate: Fri Dec 21 13:50:00 2012 -0700 - Resync with master -:100644 100644 cc288d3 c207fc2 M .gitignore -:100644 100644 dc73a00 6640e06 M glibc.spec -:100644 100644 1e13602 f731a1f M sources +:100644 100644 cc288d39 c207fc28 M .gitignore +:100644 100644 dc73a00e 6640e06f M glibc.spec +:100644 100644 1e136027 f731a1fc M sources commit 01a20987236b00ae760c8f96a7b7354db24e11ad Author: Jeff Law @@ -23928,7 +24048,7 @@ CommitDate: Wed Dec 19 11:14:19 2012 -0700 + - Add rtld-debugger-interface.txt as documentation. (#872242) -:100644 100644 e8f76fa dc73a00 M glibc.spec +:100644 100644 e8f76fab dc73a00e M glibc.spec commit cdd3b0516c2889562fbf1406395310468411cf49 Author: Jeff Law @@ -23939,10 +24059,10 @@ CommitDate: Fri Dec 7 15:01:57 2012 -0700 - Resync with master - Drop patch for 731228 that is no longer needed. -:100644 100644 a6d24df cc288d3 M .gitignore -:100644 000000 8ad88cb 0000000 D glibc-fedora-tls-offset-rh731228.patch -:100644 100644 85ba97f e8f76fa M glibc.spec -:100644 100644 894d6d8 1e13602 M sources +:100644 100644 a6d24dff cc288d39 M .gitignore +:100644 000000 8ad88cb9 00000000 D glibc-fedora-tls-offset-rh731228.patch +:100644 100644 85ba97f6 e8f76fab M glibc.spec +:100644 100644 894d6d83 1e136027 M sources commit 245f44547170bec364ab1e9e280e194d66f3d709 Author: Jeff Law @@ -23952,7 +24072,7 @@ CommitDate: Thu Dec 6 10:46:40 2012 -0700 Bump release. -:100644 100644 81b4ad7 85ba97f M glibc.spec +:100644 100644 81b4ad79 85ba97f6 M glibc.spec commit 0a21292124fe995d10b3efc22b650f74e6b87d97 Author: Jeff Law @@ -23964,10 +24084,10 @@ CommitDate: Thu Dec 6 10:45:03 2012 -0700 - Patch for 697421 has been submitted upstream. - Drop local patch for 691912 that is no longer needed. -:100644 100644 16cb3c4 a6d24df M .gitignore -:100644 000000 53a968e 0000000 D glibc-rh691912.patch -:100644 100644 7997f9a 81b4ad7 M glibc.spec -:100644 100644 7f4caaf 894d6d8 M sources +:100644 100644 16cb3c43 a6d24dff M .gitignore +:100644 000000 53a968e9 00000000 D glibc-rh691912.patch +:100644 100644 7997f9a3 81b4ad79 M glibc.spec +:100644 100644 7f4caaf8 894d6d83 M sources commit 7941460ddd18d0ed56729d32a5fa72a6682ca1ad Author: Jeff Law @@ -23977,7 +24097,7 @@ CommitDate: Tue Dec 4 09:11:08 2012 -0700 Mark 731228 as having an upstream BZ (14898) -:100644 100644 99e333d 7997f9a M glibc.spec +:100644 100644 99e333d0 7997f9a3 M glibc.spec commit 4e1a9eb783b804e02dd42b4409a621a814a26b4c Author: Jeff Law @@ -23998,14 +24118,14 @@ CommitDate: Mon Dec 3 13:37:41 2012 -0700 - Drop test-debug-gnuc-hack.patch that seems useless now. - Repack patchlist. -:100644 100644 55f172c 16cb3c4 M .gitignore -:100644 000000 a1a254e 0000000 D glibc-fedora-localedata-locales-fixes.patch -:100644 000000 977bd76 0000000 D glibc-fedora-test-debug-gnuc-hack.patch -:100644 000000 999d266 0000000 D glibc-rh740682.patch -:100644 000000 a6ec302 0000000 D glibc-rh770439.patch -:100644 000000 9645298 0000000 D glibc-rh789209.patch -:100644 100644 1e0517d 99e333d M glibc.spec -:100644 100644 023f103 7f4caaf M sources +:100644 100644 55f172cd 16cb3c43 M .gitignore +:100644 000000 a1a254e1 00000000 D glibc-fedora-localedata-locales-fixes.patch +:100644 000000 977bd761 00000000 D glibc-fedora-test-debug-gnuc-hack.patch +:100644 000000 999d266d 00000000 D glibc-rh740682.patch +:100644 000000 a6ec302a 00000000 D glibc-rh770439.patch +:100644 000000 9645298b 00000000 D glibc-rh789209.patch +:100644 100644 1e0517dc 99e333d0 M glibc.spec +:100644 100644 023f1031 7f4caaf8 M sources commit d5297ae5f7d9835d222a6cc9e32896ab64e64511 Author: Jeff Law @@ -24019,11 +24139,11 @@ CommitDate: Mon Dec 3 11:25:56 2012 -0700 useless. - Repack patchlist. -:100644 100644 122c322 55f172c M .gitignore -:100644 000000 523f82a 0000000 D glibc-fedora-nss-files-overflow-fix.patch -:100644 000000 80ba5e8 0000000 D glibc-rh657588.patch -:100644 100644 c1a4e8d 1e0517d M glibc.spec -:100644 100644 d3d2a21 023f103 M sources +:100644 100644 122c322c 55f172cd M .gitignore +:100644 000000 523f82aa 00000000 D glibc-fedora-nss-files-overflow-fix.patch +:100644 000000 80ba5e84 00000000 D glibc-rh657588.patch +:100644 100644 c1a4e8d6 1e0517dc M glibc.spec +:100644 100644 d3d2a216 023f1031 M sources commit 03545a8efdaba2329a6e64a6f79f502d2fcddda0 Author: Jeff Law @@ -24037,11 +24157,11 @@ CommitDate: Fri Nov 30 14:01:46 2012 -0700 - Remove local patch for 730856 that is no longer needed. - Repack patchlist. -:100644 100644 e447587 122c322 M .gitignore -:100644 000000 538c4e9 0000000 D glibc-fedora-strict-aliasing.patch -:100644 000000 14270ed 0000000 D glibc-rh730856.patch -:100644 100644 d68edae c1a4e8d M glibc.spec -:100644 100644 ee875a9 d3d2a21 M sources +:100644 100644 e447587c 122c322c M .gitignore +:100644 000000 538c4e99 00000000 D glibc-fedora-strict-aliasing.patch +:100644 000000 14270ed7 00000000 D glibc-rh730856.patch +:100644 100644 d68edae5 c1a4e8d6 M glibc.spec +:100644 100644 ee875a9a d3d2a216 M sources commit f5dc60f992316e02575e17a165add35ccf738d95 Author: Jeff Law @@ -24052,8 +24172,8 @@ CommitDate: Thu Nov 29 14:25:33 2012 -0700 - Remove local patch which "temporarily" re-added currences obsoleted by the Euro. -:100644 000000 87ce37c 0000000 D glibc-fedora-locale-euro.patch -:100644 100644 5777bc0 d68edae M glibc.spec +:100644 000000 87ce37ce 00000000 D glibc-fedora-locale-euro.patch +:100644 100644 5777bc02 d68edae5 M glibc.spec commit f0c53b1b9f680eff68fa83902361fec7bc7aaf0c Author: Jeff Law @@ -24064,8 +24184,8 @@ CommitDate: Thu Nov 29 14:20:27 2012 -0700 - Remove hunks from strict-aliasing patch that are no longer needed. -:100644 100644 e9a0f30 538c4e9 M glibc-fedora-strict-aliasing.patch -:100644 100644 a141d6f 5777bc0 M glibc.spec +:100644 100644 e9a0f301 538c4e99 M glibc-fedora-strict-aliasing.patch +:100644 100644 a141d6fc 5777bc02 M glibc.spec commit e60d39c115a85b6f78b48eefd910aa96d0e0aa57 Author: Jeff Law @@ -24075,7 +24195,7 @@ CommitDate: Thu Nov 29 10:59:46 2012 -0700 Fix typo in changelog -:100644 100644 0cffdb2 a141d6f M glibc.spec +:100644 100644 0cffdb20 a141d6fc M glibc.spec commit e781949a2251d094e397bcab40c918ce1664b5ad Author: Jeff Law @@ -24087,10 +24207,10 @@ CommitDate: Thu Nov 29 10:56:43 2012 -0700 - Drop local patch for 788989. - Repack patchlist. -:100644 100644 eeae38e e447587 M .gitignore -:100644 000000 50c59f8 0000000 D glibc-rh788989-2.patch -:100644 100644 aef6572 0cffdb2 M glibc.spec -:100644 100644 476a923 ee875a9 M sources +:100644 100644 eeae38e7 e447587c M .gitignore +:100644 000000 50c59f82 00000000 D glibc-rh788989-2.patch +:100644 100644 aef6572b 0cffdb20 M glibc.spec +:100644 100644 476a9235 ee875a9a M sources commit e3a9f6982a94b97e83ac37101bab56b41197607e Author: Jeff Law @@ -24104,12 +24224,12 @@ CommitDate: Wed Nov 28 14:30:40 2012 -0700 - Drop local patch for 767693. - Repack patchlist. -:100644 100644 103a1e8 eeae38e M .gitignore -:100644 000000 97d3658 0000000 D glibc-rh767693-2.patch -:100644 000000 e5dc3d3 0000000 D glibc-rh878913.patch -:100644 000000 e7b9fb5 0000000 D glibc-rh880666.patch -:100644 100644 2b67385 aef6572 M glibc.spec -:100644 100644 891317e 476a923 M sources +:100644 100644 103a1e80 eeae38e7 M .gitignore +:100644 000000 97d36588 00000000 D glibc-rh767693-2.patch +:100644 000000 e5dc3d38 00000000 D glibc-rh878913.patch +:100644 000000 e7b9fb55 00000000 D glibc-rh880666.patch +:100644 100644 2b673855 aef6572b M glibc.spec +:100644 100644 891317e4 476a9235 M sources commit 99d506920087856ba589ee1dec56849ec4a816e5 Author: Siddhesh Poyarekar @@ -24122,9 +24242,9 @@ CommitDate: Tue Nov 27 21:31:22 2012 +0530 - Ensure that hashtable size is greater than 3 (#878913). - fwrite returns 0 on EOF (#880666). -:000000 100644 0000000 e5dc3d3 A glibc-rh878913.patch -:000000 100644 0000000 e7b9fb5 A glibc-rh880666.patch -:100644 100644 b001904 2b67385 M glibc.spec +:000000 100644 00000000 e5dc3d38 A glibc-rh878913.patch +:000000 100644 00000000 e7b9fb55 A glibc-rh880666.patch +:100644 100644 b0019045 2b673855 M glibc.spec commit 0a6b9006e743fb7f9c7df758b61e928350524a11 Author: Jeff Law @@ -24136,11 +24256,11 @@ CommitDate: Mon Nov 26 14:19:38 2012 -0700 - Drop local patch for getconf. - Repack patchlist. -:100644 100644 74117ff 103a1e8 M .gitignore -:100644 000000 a878d5b 0000000 D glibc-fedora-getconf.patch -:100644 100644 ebc807c c8fee0f M glibc-fedora-localedata-rh61908.patch -:100644 100644 d542b0a b001904 M glibc.spec -:100644 100644 83f3f06 891317e M sources +:100644 100644 74117ff8 103a1e80 M .gitignore +:100644 000000 a878d5b3 00000000 D glibc-fedora-getconf.patch +:100644 100644 ebc807ce c8fee0f4 M glibc-fedora-localedata-rh61908.patch +:100644 100644 d542b0a5 b0019045 M glibc.spec +:100644 100644 83f3f06f 891317e4 M sources commit 9625d850cdf022f63b04ffe25ee0694f5fa85896 Author: Jeff Law @@ -24151,13 +24271,13 @@ CommitDate: Fri Nov 16 06:33:25 2012 -0700 - Rsync with upstream sources - Drop local patches for 803286, 791161, 790292, 790298 -:100644 100644 8fb1703 74117ff M .gitignore -:100644 000000 4f1351d 0000000 D glibc-rh790292.patch -:100644 000000 92bf620 0000000 D glibc-rh790298.patch -:100644 000000 1c1fab0 0000000 D glibc-rh791161.patch -:100644 000000 d9f909c 0000000 D glibc-rh803286.patch -:100644 100644 9e8f417 d542b0a M glibc.spec -:100644 100644 21834fa 83f3f06 M sources +:100644 100644 8fb1703b 74117ff8 M .gitignore +:100644 000000 4f1351d6 00000000 D glibc-rh790292.patch +:100644 000000 92bf6202 00000000 D glibc-rh790298.patch +:100644 000000 1c1fab0f 00000000 D glibc-rh791161.patch +:100644 000000 d9f909c5 00000000 D glibc-rh803286.patch +:100644 100644 9e8f417f d542b0a5 M glibc.spec +:100644 100644 21834fa6 83f3f06f M sources commit 91136bb3b992e59d4912b25ba0e54935d0342b07 Author: Jeff Law @@ -24167,9 +24287,9 @@ CommitDate: Wed Nov 7 12:05:53 2012 -0700 - Resync with upstream sources (#873397) -:100644 100644 eb15866 8fb1703 M .gitignore -:100644 100644 ed7c249 9e8f417 M glibc.spec -:100644 100644 833e2b7 21834fa M sources +:100644 100644 eb158666 8fb1703b M .gitignore +:100644 100644 ed7c2496 9e8f417f M glibc.spec +:100644 100644 833e2b73 21834fa6 M sources commit ae7fda09b156ae76c5170288a62d32107f22d091 Author: Jeff Law @@ -24179,7 +24299,7 @@ CommitDate: Mon Nov 5 15:28:15 2012 -0700 Remove unwanted whitespace -:100644 100644 2b94a67 833e2b7 M sources +:100644 100644 2b94a67a 833e2b73 M sources commit d7b378240d3cae78720daeca9e2067f5f72981fa Author: Jeff Law @@ -24189,7 +24309,7 @@ CommitDate: Mon Nov 5 15:03:08 2012 -0700 restore line dropped by fedpkg new-sources -:100644 100644 324f630 2b94a67 M sources +:100644 100644 324f6307 2b94a67a M sources commit 3a8f01ff814fa42cb7de5c9c60706d7537eaee1a Author: Jeff Law @@ -24199,9 +24319,9 @@ CommitDate: Mon Nov 5 14:57:52 2012 -0700 Fix the subdirectory name in the -fedora tarball -:100644 100644 4673ecd eb15866 M .gitignore -:100644 100644 1eb2e69 ed7c249 M glibc.spec -:100644 100644 3bcba27 324f630 M sources +:100644 100644 4673ecda eb158666 M .gitignore +:100644 100644 1eb2e69a ed7c2496 M glibc.spec +:100644 100644 3bcba271 324f6307 M sources commit a7ee17d41112a7d88ebe754d9e34964bc1a69b29 Author: Jeff Law @@ -24214,12 +24334,12 @@ CommitDate: Mon Nov 5 14:44:36 2012 -0700 as they all modify stuff under fedora/ - Repack patchlist -:100644 100644 bbd9b1d 4673ecd M .gitignore -:100644 000000 f067a80 0000000 D glibc-rh688948.patch -:100644 000000 8757641 0000000 D glibc-rh770869.patch -:100644 000000 cd7cfe1 0000000 D glibc-rh787201.patch -:100644 100644 b3f6b30 1eb2e69 M glibc.spec -:100644 100644 e9511f2 3bcba27 M sources +:100644 100644 bbd9b1d4 4673ecda M .gitignore +:100644 000000 f067a801 00000000 D glibc-rh688948.patch +:100644 000000 87576410 00000000 D glibc-rh770869.patch +:100644 000000 cd7cfe18 00000000 D glibc-rh787201.patch +:100644 100644 b3f6b30f 1eb2e69a M glibc.spec +:100644 100644 e9511f2a 3bcba271 M sources commit 178231ee78d97bb8276e67dbdb55179cc35c936b Author: Jeff Law @@ -24229,9 +24349,9 @@ CommitDate: Fri Nov 2 12:08:02 2012 -0600 - Resync with upstream sources (#872336) -:100644 100644 cfc470a bbd9b1d M .gitignore -:100644 100644 71802e6 b3f6b30 M glibc.spec -:100644 100644 3e7142d e9511f2 M sources +:100644 100644 cfc470aa bbd9b1d4 M .gitignore +:100644 100644 71802e67 b3f6b30f M glibc.spec +:100644 100644 3e7142d1 e9511f2a M sources commit 1b5b2e3a41502aab517cfab980fd0b7a2e400151 Author: Jeff Law @@ -24243,10 +24363,10 @@ CommitDate: Mon Oct 22 10:00:55 2012 -0600 - Drop 864820 patch as now that it's upstream. - Add sss to /etc/nsswitch.conf (#867473) -:100644 100644 090442b cfc470a M .gitignore -:100644 000000 7f4f355 0000000 D glibc-rh864820.patch -:100644 100644 0d07fb3 71802e6 M glibc.spec -:100644 100644 dd33f77 3e7142d M sources +:100644 100644 090442bb cfc470aa M .gitignore +:100644 000000 7f4f3557 00000000 D glibc-rh864820.patch +:100644 100644 0d07fb3c 71802e67 M glibc.spec +:100644 100644 dd33f77c 3e7142d1 M sources commit 69ddcb4ca7fac4f6917f3cc4142dbd63efd464d3 Author: Jeff Law @@ -24259,12 +24379,12 @@ CommitDate: Thu Oct 11 09:54:09 2012 -0600 - Drop local 858274 patch now that the root problem is fixed upstream. - Repack patchlist. -:100644 100644 e794a91 090442b M .gitignore -:100644 100644 c20ba96 5ae6e3a M glibc-fedora-elf-rh737223.patch -:100644 000000 c541073 0000000 D glibc-rh552960-2.patch -:100644 000000 366c7cc 0000000 D glibc-rh858274.patch -:100644 100644 cba10c5 0d07fb3 M glibc.spec -:100644 100644 a67f255 dd33f77 M sources +:100644 100644 e794a91b 090442bb M .gitignore +:100644 100644 c20ba960 5ae6e3aa M glibc-fedora-elf-rh737223.patch +:100644 000000 c5410730 00000000 D glibc-rh552960-2.patch +:100644 000000 366c7cc8 00000000 D glibc-rh858274.patch +:100644 100644 cba10c50 0d07fb3c M glibc.spec +:100644 100644 a67f2555 dd33f77c M sources commit 9589f53f7841a0e0cf1cf1c5b9a9da841a45db9f Author: Siddhesh Poyarekar @@ -24274,7 +24394,7 @@ CommitDate: Wed Oct 10 17:20:38 2012 +0530 Trivial spec fix: Today is not Friday -:100644 100644 3a2807b cba10c5 M glibc.spec +:100644 100644 3a2807bb cba10c50 M glibc.spec commit 609365c2986afdf87b0126d525aea870111c8d0e Author: Siddhesh Poyarekar @@ -24284,8 +24404,8 @@ CommitDate: Wed Oct 10 14:48:01 2012 +0530 Fix Marathi names for Wednesday, September and October (#rh864820) -:000000 100644 0000000 7f4f355 A glibc-rh864820.patch -:100644 100644 75d6fb8 3a2807b M glibc.spec +:000000 100644 00000000 7f4f3557 A glibc-rh864820.patch +:100644 100644 75d6fb8f 3a2807bb M glibc.spec commit 0653cb1ba32f48430b23937ab81ca0f17f1b8d00 Author: Jeff Law @@ -24295,8 +24415,8 @@ CommitDate: Fri Oct 5 12:27:58 2012 -0600 Resync with upstream -:100644 100644 83ced4c e794a91 M .gitignore -:100644 100644 c6f5aa0 a67f255 M sources +:100644 100644 83ced4c8 e794a91b M .gitignore +:100644 100644 c6f5aa0c a67f2555 M sources commit 665e71fb895ea085783de1bebca451966c09287f Author: Jeff Law @@ -24309,12 +24429,12 @@ CommitDate: Fri Oct 5 12:24:42 2012 -0600 - Drop local s390 patch which avoided problems with old assemblers - Drop old fortify source patch to deal with old compilers -:100644 000000 d9eb36b 0000000 D glibc-fedora-s390-rh711330.patch -:100644 000000 e10ff7c 0000000 D glibc-fedora-test-debug-gnuc-compat.patch -:100644 100644 79842d5 c541073 M glibc-rh552960-2.patch -:100644 000000 eef7122 0000000 D glibc-rh552960.patch -:100644 000000 e52e020 0000000 D glibc-stap.patch -:100644 100644 46921cc 75d6fb8 M glibc.spec +:100644 000000 d9eb36b4 00000000 D glibc-fedora-s390-rh711330.patch +:100644 000000 e10ff7c7 00000000 D glibc-fedora-test-debug-gnuc-compat.patch +:100644 100644 79842d57 c5410730 M glibc-rh552960-2.patch +:100644 000000 eef71223 00000000 D glibc-rh552960.patch +:100644 000000 e52e020e 00000000 D glibc-stap.patch +:100644 100644 46921cc4 75d6fb8f M glibc.spec commit 080a305bf212ac02d501388c2f5e9f7fae4a2c24 Author: Siddhesh Poyarekar @@ -24324,8 +24444,8 @@ CommitDate: Thu Oct 4 11:57:51 2012 +0530 Take mutex in cleanup only if it is not already taken (pr#14652) -:000000 100644 0000000 79842d5 A glibc-rh552960-2.patch -:100644 100644 a3e8bf6 46921cc M glibc.spec +:000000 100644 00000000 79842d57 A glibc-rh552960-2.patch +:100644 100644 a3e8bf6e 46921cc4 M glibc.spec commit f6de48ac9d0fa165a783bca1636ea2d46f7169c9 Author: Jeff Law @@ -24336,10 +24456,10 @@ CommitDate: Tue Oct 2 06:41:58 2012 -0600 - Resync with upstream sources. - Repack patchlist. -:100644 100644 a661375 83ced4c M .gitignore -:100644 100644 d84108a eef7122 M glibc-rh552960.patch -:100644 100644 a1fc21e a3e8bf6 M glibc.spec -:100644 100644 5eeab94 c6f5aa0 M sources +:100644 100644 a661375c 83ced4c8 M .gitignore +:100644 100644 d84108a6 eef71223 M glibc-rh552960.patch +:100644 100644 a1fc21ec a3e8bf6e M glibc.spec +:100644 100644 5eeab94d c6f5aa0c M sources commit 66c0a7ea1d7338487a663b8af836cd1a263b70eb Author: Jeff Law @@ -24349,9 +24469,9 @@ CommitDate: Mon Oct 1 06:37:36 2012 -0600 - Resync with upstream sources to pick up fma fixes -:100644 100644 a8d90cb a661375 M .gitignore -:100644 100644 abad40a a1fc21e M glibc.spec -:100644 100644 c6238d6 5eeab94 M sources +:100644 100644 a8d90cb2 a661375c M .gitignore +:100644 100644 abad40a1 a1fc21ec M glibc.spec +:100644 100644 c6238d6a 5eeab94d M sources commit b33c1d23003c4086cf25245b043634a2093300d0 Author: Jeff Law @@ -24370,14 +24490,14 @@ CommitDate: Fri Sep 28 13:55:42 2012 -0600 - Drop fedora-vfprintf-sw6530.patch, it's upstream now. - Drop rh769421.patch; Siddhesh has fixed this properly with 552960. -:100644 100644 e89b73e a8d90cb M .gitignore -:100644 000000 7a151ac 0000000 D glibc-fedora-cdefs-gnuc.patch -:100644 000000 bde4253 0000000 D glibc-fedora-gai-rfc1918.patch -:100644 000000 9f3b568 0000000 D glibc-fedora-localedata-no_NO.patch -:100644 000000 f4dcc40 0000000 D glibc-fedora-vfprintf-sw6530.patch -:100644 000000 dd03490 0000000 D glibc-rh769421.patch -:100644 100644 8ab74ce abad40a M glibc.spec -:100644 100644 7e65bf0 c6238d6 M sources +:100644 100644 e89b73e0 a8d90cb2 M .gitignore +:100644 000000 7a151ac7 00000000 D glibc-fedora-cdefs-gnuc.patch +:100644 000000 bde42536 00000000 D glibc-fedora-gai-rfc1918.patch +:100644 000000 9f3b5684 00000000 D glibc-fedora-localedata-no_NO.patch +:100644 000000 f4dcc40d 00000000 D glibc-fedora-vfprintf-sw6530.patch +:100644 000000 dd03490d 00000000 D glibc-rh769421.patch +:100644 100644 8ab74cef abad40a1 M glibc.spec +:100644 100644 7e65bf00 c6238d6a M sources commit cdb17b58a8fc97f3824a727e1c62e66eebb33c94 Author: Siddhesh Poyarekar @@ -24387,8 +24507,8 @@ CommitDate: Fri Sep 28 10:01:16 2012 +0530 Release mutex before going back to wait for PI mutexes (#552960). -:000000 100644 0000000 d84108a A glibc-rh552960.patch -:100644 100644 95570a8 8ab74ce M glibc.spec +:000000 100644 00000000 d84108a6 A glibc-rh552960.patch +:100644 100644 95570a83 8ab74cef M glibc.spec commit fab85b902e5ac7c94cab7a6cab5b07decf7dd01a Author: Jeff Law @@ -24398,8 +24518,8 @@ CommitDate: Tue Sep 25 20:27:59 2012 -0600 Resync with upstream sources -:100644 100644 71be626 e89b73e M .gitignore -:100644 100644 b77f2e0 7e65bf0 M sources +:100644 100644 71be626b e89b73e0 M .gitignore +:100644 100644 b77f2e03 7e65bf00 M sources commit 3b7069e67cdfa88e2a635cc3dfcfa39d91d50dfe Author: Jeff Law @@ -24409,8 +24529,8 @@ CommitDate: Tue Sep 25 20:25:26 2012 -0600 - Resync with upstream sources. -:100644 100644 8300bb6 366c7cc M glibc-rh858274.patch -:100644 100644 eb535e6 95570a8 M glibc.spec +:100644 100644 8300bb60 366c7cc8 M glibc-rh858274.patch +:100644 100644 eb535e67 95570a83 M glibc.spec commit 55a30785d463ecd9cc1fa0e4b384b9f8b93a370a Author: Jeff Law @@ -24426,10 +24546,10 @@ CommitDate: Mon Sep 24 09:25:31 2012 -0600 avoid nopl. - Move gai-rfc1918 patch to submitted upstream status -:100644 000000 7acc9eb 0000000 D glibc-fedora-i686-nopl.patch -:100644 100644 96180d9 a26b928 M glibc-fedora-nscd.patch -:100644 000000 44469d4 0000000 D glibc-fedora-path-vi.patch -:100644 100644 80e4052 eb535e6 M glibc.spec +:100644 000000 7acc9eb6 00000000 D glibc-fedora-i686-nopl.patch +:100644 100644 96180d95 a26b9283 M glibc-fedora-nscd.patch +:100644 000000 44469d4f 00000000 D glibc-fedora-path-vi.patch +:100644 100644 80e4052c eb535e67 M glibc.spec commit 384f5b1f919f52a8126e0099b1c86de16e47cb2c Author: Jeff Law @@ -24439,7 +24559,7 @@ CommitDate: Fri Sep 21 13:08:53 2012 -0600 Bring back patch for 858274 -:100644 100644 f788d9a 80e4052 M glibc.spec +:100644 100644 f788d9aa 80e4052c M glibc.spec commit 3e3b859747ec44143432a47de64066310e2ec575 Author: Jeff Law @@ -24449,7 +24569,7 @@ CommitDate: Fri Sep 21 12:51:04 2012 -0600 Actually remove the patchfile -:100644 100644 c6d3127 f788d9a M glibc.spec +:100644 100644 c6d31274 f788d9aa M glibc.spec commit cd9aa54a174919fa73a8c30aa8d2e94427f6d2ce Author: Jeff Law @@ -24459,8 +24579,8 @@ CommitDate: Fri Sep 21 12:50:11 2012 -0600 - Remove broken patch for 816647. -:100644 000000 e732445 0000000 D glibc-rh816647.patch -:100644 100644 1aa49a8 c6d3127 M glibc.spec +:100644 000000 e7324458 00000000 D glibc-rh816647.patch +:100644 100644 1aa49a8d c6d31274 M glibc.spec commit 7e2e80de953ce07ebb3465830713ee5dfa134e56 Author: Siddhesh Poyarekar @@ -24470,8 +24590,8 @@ CommitDate: Fri Sep 21 09:58:52 2012 +0530 Bring back byteswap-16.h (#859268) -:100644 100644 dbbde73 8300bb6 M glibc-rh858274.patch -:100644 100644 8b35a01 1aa49a8 M glibc.spec +:100644 100644 dbbde734 8300bb60 M glibc-rh858274.patch +:100644 100644 8b35a016 1aa49a8d M glibc.spec commit 7f7468a795c19d91af883c616fa26e684b6ad05f Author: Jeff Law @@ -24481,7 +24601,7 @@ CommitDate: Thu Sep 20 15:51:11 2012 -0600 Fix typo -:100644 100644 a919b00 8b35a01 M glibc.spec +:100644 100644 a919b005 8b35a016 M glibc.spec commit 6d1baf298897b0302456f1271fee78304de6609d Author: Jeff Law @@ -24491,8 +24611,8 @@ CommitDate: Thu Sep 20 15:46:19 2012 -0600 - Revert recent upstream strstr changes (#858274) -:000000 100644 0000000 dbbde73 A glibc-rh858274.patch -:100644 100644 04ae5fb a919b00 M glibc.spec +:000000 100644 00000000 dbbde734 A glibc-rh858274.patch +:100644 100644 04ae5fbc a919b005 M glibc.spec commit 67e76ace812869f314fb2eff3f02d1ed52d8a7a2 Author: Jeff Law @@ -24502,8 +24622,8 @@ CommitDate: Thu Sep 20 15:34:11 2012 -0600 - Demangle function pointers before testing them (#816647) -:000000 100644 0000000 e732445 A glibc-rh816647.patch -:100644 100644 4980d41 04ae5fb M glibc.spec +:000000 100644 00000000 e7324458 A glibc-rh816647.patch +:100644 100644 4980d41a 04ae5fbc M glibc.spec commit 5e0541ba746b06e9cfb15ec931787dd7911406f8 Author: Jeff Law @@ -24514,7 +24634,7 @@ CommitDate: Thu Sep 20 15:03:18 2012 -0600 - Remove handling of /etc/localtime and /var/spool/postfix/etc/localtime as systemd will be handling them from now on (#858735). -:100644 100644 d126884 4980d41 M glibc.spec +:100644 100644 d1268845 4980d41a M glibc.spec commit 3cb79f751c310020dd680d478af4594fe7936432 Author: Jeff Law @@ -24524,10 +24644,10 @@ CommitDate: Fri Sep 14 14:42:59 2012 -0600 - Resync with upstream sources (#857236). -:100644 100644 5e53491 71be626 M .gitignore -:100644 100644 d0f7e54 21859d5 M glibc-rh841318.patch -:100644 100644 8d0c883 d126884 M glibc.spec -:100644 100644 fef53ea b77f2e0 M sources +:100644 100644 5e53491a 71be626b M .gitignore +:100644 100644 d0f7e54c 21859d56 M glibc-rh841318.patch +:100644 100644 8d0c8832 d1268845 M glibc.spec +:100644 100644 fef53eac b77f2e03 M sources commit 575bb8c6d7c8186ec08991bb07f0f128ac9d9c89 Author: Peter Robinson @@ -24537,7 +24657,7 @@ CommitDate: Sat Sep 8 16:39:53 2012 +0100 Enable ports to fix FTBFS on ARM -:100644 100644 460eb35 8d0c883 M glibc.spec +:100644 100644 460eb355 8d0c8832 M glibc.spec commit afeab8192bda6b18e809adde56a4215c8facc34e Author: Jeff Law @@ -24547,9 +24667,9 @@ CommitDate: Wed Sep 5 22:23:20 2012 -0600 - Resync with upstream sources. -:100644 100644 a31c349 5e53491 M .gitignore -:100644 100644 9f5f768 460eb35 M glibc.spec -:100644 100644 c96c37d fef53ea M sources +:100644 100644 a31c3494 5e53491a M .gitignore +:100644 100644 9f5f7684 460eb355 M glibc.spec +:100644 100644 c96c37dd fef53eac M sources commit 98dddaf80526a5ed251fe2a8f5f26eebdab5c11a Author: Jeff Law @@ -24559,7 +24679,7 @@ CommitDate: Tue Sep 4 11:35:34 2012 -0600 - Incorporate ppc64p7 arch changes (#854250) -:100644 100644 a7ecf1c 9f5f768 M glibc.spec +:100644 100644 a7ecf1c1 9f5f7684 M glibc.spec commit 7f32dad8b0d5dc0ed0261d5a552d0575e94332f3 Author: Jeff Law @@ -24569,10 +24689,10 @@ CommitDate: Thu Aug 30 09:47:02 2012 -0600 - Resync with upstream sources. -:100644 100644 cc72c8d a31c349 M .gitignore -:100644 100644 8fd999d e9a0f30 M glibc-fedora-strict-aliasing.patch -:100644 100644 bccb0c8 a7ecf1c M glibc.spec -:100644 100644 0f2dae4 c96c37d M sources +:100644 100644 cc72c8dd a31c3494 M .gitignore +:100644 100644 8fd999db e9a0f301 M glibc-fedora-strict-aliasing.patch +:100644 100644 bccb0c89 a7ecf1c1 M glibc.spec +:100644 100644 0f2dae4b c96c37dd M sources commit df41626e9103e817957fb2431a476e8f8c5ea44d Author: Jeff Law @@ -24582,9 +24702,9 @@ CommitDate: Wed Aug 22 22:11:53 2012 -0600 - Resync with upstream sources. -:100644 100644 13d5ca5 cc72c8d M .gitignore -:100644 100644 8c51ff6 bccb0c8 M glibc.spec -:100644 100644 d62a3ec 0f2dae4 M sources +:100644 100644 13d5ca51 cc72c8dd M .gitignore +:100644 100644 8c51ff68 bccb0c89 M glibc.spec +:100644 100644 d62a3ec3 0f2dae4b M sources commit f8556b4c45f6e66d551fe65b960f020a402e9a75 Author: Jeff Law @@ -24595,7 +24715,7 @@ CommitDate: Tue Aug 21 09:47:24 2012 -0600 - Replace manual systemd scriptlets with macroized scriptlets (#850129) -:100644 100644 0ed62e6 8c51ff6 M glibc.spec +:100644 100644 0ed62e61 8c51ff68 M glibc.spec commit 31474e7c11f2589570a4ce155c42f2a00e5a0335 Author: Jeff Law @@ -24605,7 +24725,7 @@ CommitDate: Mon Aug 20 20:31:17 2012 -0600 Bump release. -:100644 100644 d2f236a 0ed62e6 M glibc.spec +:100644 100644 d2f236a0 0ed62e61 M glibc.spec commit 0436f62efd959d779d9e326d479e7363582799b2 Author: Jeff Law @@ -24616,7 +24736,7 @@ CommitDate: Mon Aug 20 20:30:59 2012 -0600 - Move /etc/localtime into glibc-common package since glibc-common owns the scriptlets which update it. -:100644 100644 2d632bf d2f236a M glibc.spec +:100644 100644 2d632bf3 d2f236a0 M glibc.spec commit d2f39ec9ec82400f2ecbde9c7808dfbcdb7332f6 Author: Jeff Law @@ -24626,12 +24746,12 @@ CommitDate: Mon Aug 20 15:19:19 2012 -0600 Remove obsolete patches -:100644 000000 2ae7d32 0000000 D glibc-rh179072.patch -:100644 000000 326157a 0000000 D glibc-rh564528.patch -:100644 000000 378eda1 0000000 D glibc-rh769476.patch -:100644 000000 403b840 0000000 D glibc-rh789238.patch -:100644 000000 c0a0e01 0000000 D glibc-rh823905.patch -:100644 000000 c3360b5 0000000 D glibc-rh845960.patch +:100644 000000 2ae7d32c 00000000 D glibc-rh179072.patch +:100644 000000 326157ac 00000000 D glibc-rh564528.patch +:100644 000000 378eda13 00000000 D glibc-rh769476.patch +:100644 000000 403b8407 00000000 D glibc-rh789238.patch +:100644 000000 c0a0e012 00000000 D glibc-rh823905.patch +:100644 000000 c3360b5b 00000000 D glibc-rh845960.patch commit a0c4aeb2e1c593796354da82df7b7a1cf5d7c756 Author: Jeff Law @@ -24641,7 +24761,7 @@ CommitDate: Mon Aug 20 13:36:26 2012 -0600 Defuzz patch -:100644 100644 26f111e 8fd999d M glibc-fedora-strict-aliasing.patch +:100644 100644 26f111ea 8fd999db M glibc-fedora-strict-aliasing.patch commit fb633eaa14bb4c2b35f26c6ec2f4d829f27819ac Author: Jeff Law @@ -24654,45 +24774,45 @@ CommitDate: Mon Aug 20 13:25:02 2012 -0600 Dmitry V. Levin for identifying them! Drop ia64 specific patches and specfile fragments -:000000 100644 0000000 d15920a A glibc-fedora-__libc_multiple_libcs.patch -:000000 100644 0000000 7a151ac A glibc-fedora-cdefs-gnuc.patch -:000000 100644 0000000 bfaff83 A glibc-fedora-elf-ORIGIN.patch -:000000 100644 0000000 cd50d3b A glibc-fedora-elf-init-hidden_undef.patch -:000000 100644 0000000 c20ba96 A glibc-fedora-elf-rh737223.patch -:000000 100644 0000000 c058ecf A glibc-fedora-gai-canonical.patch -:000000 100644 0000000 bde4253 A glibc-fedora-gai-rfc1918.patch -:000000 100644 0000000 a878d5b A glibc-fedora-getconf.patch -:000000 100644 0000000 bd77bb3 A glibc-fedora-getrlimit-PLT.patch -:000000 100644 0000000 80c0f0d A glibc-fedora-i386-tls-direct-seg-refs.patch -:000000 100644 0000000 7acc9eb A glibc-fedora-i686-nopl.patch -:000000 100644 0000000 1e5d763 A glibc-fedora-include-bits-ldbl.patch -:000000 100644 0000000 51aec73 A glibc-fedora-ldd.patch -:000000 100644 0000000 066ac48 A glibc-fedora-linux-tcsetattr.patch -:000000 100644 0000000 87ce37c A glibc-fedora-locale-euro.patch -:000000 100644 0000000 a1a254e A glibc-fedora-localedata-locales-fixes.patch -:000000 100644 0000000 9f3b568 A glibc-fedora-localedata-no_NO.patch -:000000 100644 0000000 ebc807c A glibc-fedora-localedata-rh61908.patch -:000000 100644 0000000 ee1463a A glibc-fedora-localedef.patch -:000000 100644 0000000 9a702af A glibc-fedora-locarchive.patch -:000000 100644 0000000 f681620 A glibc-fedora-manual-dircategory.patch -:000000 100644 0000000 9389901 A glibc-fedora-nis-rh188246.patch -:000000 100644 0000000 350c350 A glibc-fedora-nptl-linklibc.patch -:000000 100644 0000000 96180d9 A glibc-fedora-nscd.patch -:000000 100644 0000000 523f82a A glibc-fedora-nss-files-overflow-fix.patch -:000000 100644 0000000 44469d4 A glibc-fedora-path-vi.patch -:000000 100644 0000000 7e9b7ab A glibc-fedora-ppc-unwind.patch -:000000 100644 0000000 f64f449 A glibc-fedora-pt_chown.patch -:000000 100644 0000000 0edc04f A glibc-fedora-regcomp-sw11561.patch -:000000 100644 0000000 d9eb36b A glibc-fedora-s390-rh711330.patch -:000000 100644 0000000 44b9195 A glibc-fedora-streams-rh436349.patch -:000000 100644 0000000 26f111e A glibc-fedora-strict-aliasing.patch -:000000 100644 0000000 e10ff7c A glibc-fedora-test-debug-gnuc-compat.patch -:000000 100644 0000000 977bd76 A glibc-fedora-test-debug-gnuc-hack.patch -:000000 100644 0000000 8ad88cb A glibc-fedora-tls-offset-rh731228.patch -:000000 100644 0000000 86383d4 A glibc-fedora-uname-getrlimit.patch -:000000 100644 0000000 f4dcc40 A glibc-fedora-vfprintf-sw6530.patch -:100644 000000 4eb3c31 0000000 D glibc-fedora.patch -:100644 100644 24f82f6 2d632bf M glibc.spec +:000000 100644 00000000 d15920a7 A glibc-fedora-__libc_multiple_libcs.patch +:000000 100644 00000000 7a151ac7 A glibc-fedora-cdefs-gnuc.patch +:000000 100644 00000000 bfaff836 A glibc-fedora-elf-ORIGIN.patch +:000000 100644 00000000 cd50d3b7 A glibc-fedora-elf-init-hidden_undef.patch +:000000 100644 00000000 c20ba960 A glibc-fedora-elf-rh737223.patch +:000000 100644 00000000 c058ecf9 A glibc-fedora-gai-canonical.patch +:000000 100644 00000000 bde42536 A glibc-fedora-gai-rfc1918.patch +:000000 100644 00000000 a878d5b3 A glibc-fedora-getconf.patch +:000000 100644 00000000 bd77bb36 A glibc-fedora-getrlimit-PLT.patch +:000000 100644 00000000 80c0f0db A glibc-fedora-i386-tls-direct-seg-refs.patch +:000000 100644 00000000 7acc9eb6 A glibc-fedora-i686-nopl.patch +:000000 100644 00000000 1e5d763b A glibc-fedora-include-bits-ldbl.patch +:000000 100644 00000000 51aec739 A glibc-fedora-ldd.patch +:000000 100644 00000000 066ac484 A glibc-fedora-linux-tcsetattr.patch +:000000 100644 00000000 87ce37ce A glibc-fedora-locale-euro.patch +:000000 100644 00000000 a1a254e1 A glibc-fedora-localedata-locales-fixes.patch +:000000 100644 00000000 9f3b5684 A glibc-fedora-localedata-no_NO.patch +:000000 100644 00000000 ebc807ce A glibc-fedora-localedata-rh61908.patch +:000000 100644 00000000 ee1463a2 A glibc-fedora-localedef.patch +:000000 100644 00000000 9a702af5 A glibc-fedora-locarchive.patch +:000000 100644 00000000 f6816207 A glibc-fedora-manual-dircategory.patch +:000000 100644 00000000 93899013 A glibc-fedora-nis-rh188246.patch +:000000 100644 00000000 350c3504 A glibc-fedora-nptl-linklibc.patch +:000000 100644 00000000 96180d95 A glibc-fedora-nscd.patch +:000000 100644 00000000 523f82aa A glibc-fedora-nss-files-overflow-fix.patch +:000000 100644 00000000 44469d4f A glibc-fedora-path-vi.patch +:000000 100644 00000000 7e9b7ab0 A glibc-fedora-ppc-unwind.patch +:000000 100644 00000000 f64f4499 A glibc-fedora-pt_chown.patch +:000000 100644 00000000 0edc04f8 A glibc-fedora-regcomp-sw11561.patch +:000000 100644 00000000 d9eb36b4 A glibc-fedora-s390-rh711330.patch +:000000 100644 00000000 44b9195d A glibc-fedora-streams-rh436349.patch +:000000 100644 00000000 26f111ea A glibc-fedora-strict-aliasing.patch +:000000 100644 00000000 e10ff7c7 A glibc-fedora-test-debug-gnuc-compat.patch +:000000 100644 00000000 977bd761 A glibc-fedora-test-debug-gnuc-hack.patch +:000000 100644 00000000 8ad88cb9 A glibc-fedora-tls-offset-rh731228.patch +:000000 100644 00000000 86383d4c A glibc-fedora-uname-getrlimit.patch +:000000 100644 00000000 f4dcc40d A glibc-fedora-vfprintf-sw6530.patch +:100644 000000 4eb3c313 00000000 D glibc-fedora.patch +:100644 100644 24f82f6d 2d632bf3 M glibc.spec commit 8854fdfb2519d82f23ea1a710067a8b20304cec6 Author: Jeff Law @@ -24703,8 +24823,8 @@ CommitDate: Mon Aug 20 12:08:39 2012 -0600 - Remove obsolete patches from glibc-fedora.patch. Thanks to Dmitry V. Levin for identifying them! -:100644 100644 c4a8074 4eb3c31 M glibc-fedora.patch -:100644 100644 b6294e9 24f82f6 M glibc.spec +:100644 100644 c4a8074b 4eb3c313 M glibc-fedora.patch +:100644 100644 b6294e9a 24f82f6d M glibc.spec commit acfd962c205a48cfce6d9fc6f5c29f6a8dc4866e Author: Jeff Law @@ -24714,8 +24834,8 @@ CommitDate: Wed Aug 15 09:51:53 2012 -0600 + - Fix integer overflow leading to buffer overflow in strto* (#847718) -:000000 100644 0000000 fe5a921 A glibc-rh847718.patch -:100644 100644 af60f61 b6294e9 M glibc.spec +:000000 100644 00000000 fe5a9210 A glibc-rh847718.patch +:100644 100644 af60f616 b6294e9a M glibc.spec commit 24dc56843193ca89f6c5b66018ffad4b59180ce9 Author: Jeff Law @@ -24727,10 +24847,10 @@ CommitDate: Mon Aug 13 22:49:13 2012 -0600 - Drop glibc-ports bits as they're part of the master sources now. -:100644 100644 a1eb7e4 13d5ca5 M .gitignore -:100644 100644 7b58d3b c4a8074 M glibc-fedora.patch -:100644 100644 98dd96b af60f61 M glibc.spec -:100644 100644 4bd1f82 d62a3ec M sources +:100644 100644 a1eb7e48 13d5ca51 M .gitignore +:100644 100644 7b58d3ba c4a8074b M glibc-fedora.patch +:100644 100644 98dd96bd af60f616 M glibc.spec +:100644 100644 4bd1f825 d62a3ec3 M sources commit e784118c7b0b62a6db5c46d3ba6044bd9d4b9077 Author: Jeff Law @@ -24740,7 +24860,7 @@ CommitDate: Mon Aug 13 11:15:16 2012 -0600 Bump release. -:100644 100644 c3f7255 98dd96b M glibc.spec +:100644 100644 c3f72559 98dd96bd M glibc.spec commit f5845e2bd56f4b74cea839e92ba99815f32420f6 Author: Jeff Law @@ -24750,8 +24870,8 @@ CommitDate: Mon Aug 13 11:14:38 2012 -0600 - Replace patch for 179072 with offical version from upstream. -:100644 100644 0ce664c 2ae7d32 M glibc-rh179072.patch -:100644 100644 751eb68 c3f7255 M glibc.spec +:100644 100644 0ce664cd 2ae7d32c M glibc-rh179072.patch +:100644 100644 751eb687 c3f72559 M glibc.spec commit 49bbcdd4a054a68ea966c4eebbe926bbff94fdeb Author: Jeff Law @@ -24761,9 +24881,9 @@ CommitDate: Fri Aug 10 09:44:26 2012 -0600 - Replace patch for 789238 with official version from upstream. -:100644 000000 91e8df7 0000000 D glibc-rh789238-2.patch -:100644 100644 1801123 403b840 M glibc-rh789238.patch -:100644 100644 3bcf203 751eb68 M glibc.spec +:100644 000000 91e8df78 00000000 D glibc-rh789238-2.patch +:100644 100644 1801123b 403b8407 M glibc-rh789238.patch +:100644 100644 3bcf2037 751eb687 M glibc.spec commit d9855076031f6897bdf33088df30575f569f8f30 Author: Jeff Law @@ -24776,9 +24896,9 @@ CommitDate: Mon Aug 6 11:46:20 2012 -0600 (#808147) - Mark set*uid, set*gid as __wur (warn unused result) (#845960) -:100644 100644 331a203 3cec783 M glibc-rh841787.patch -:000000 100644 0000000 c3360b5 A glibc-rh845960.patch -:100644 100644 29bfe73 3bcf203 M glibc.spec +:100644 100644 331a2036 3cec7832 M glibc-rh841787.patch +:000000 100644 00000000 c3360b5b A glibc-rh845960.patch +:100644 100644 29bfe738 3bcf2037 M glibc.spec commit 64ea3f61e378d00d8d11dce10b9fb1fa84b76605 Author: Jeff Law @@ -24790,8 +24910,8 @@ CommitDate: Thu Jul 26 00:00:05 2012 -0600 addresses explicitly in getaddrinfo, which in turn broke ssh, apache and other code. (#808147) -:100644 000000 e94e0a7 0000000 D glibc-rh697149.patch -:100644 100644 625dc57 29bfe73 M glibc.spec +:100644 000000 e94e0a75 00000000 D glibc-rh697149.patch +:100644 100644 625dc570 29bfe738 M glibc.spec commit 054129c4848476e93a35405d0934fe4e0820d3b2 Author: Jeff Law @@ -24804,8 +24924,8 @@ CommitDate: Wed Jul 25 23:30:39 2012 -0600 - Revert back to using posix.symlink as posix.link with a 3rd argument isn't supported in the lua version embedded in rpm. -:000000 100644 0000000 d0f7e54 A glibc-rh841318.patch -:100644 100644 160106f 625dc57 M glibc.spec +:000000 100644 00000000 d0f7e54c A glibc-rh841318.patch +:100644 100644 160106f9 625dc570 M glibc.spec commit b6a5cc17defb5549f8a8e3593cb5db650a6cba90 Author: Jeff Law @@ -24816,7 +24936,7 @@ CommitDate: Wed Jul 25 14:33:39 2012 -0600 - Revert recent changes to res_send (804630, 835090). - Fix memcpy args in res_send (#841787). -:100644 100644 4c7b1ca 160106f M glibc.spec +:100644 100644 4c7b1cad 160106f9 M glibc.spec commit e7456d7df4d5f5276ed6f68dcaf09c527d0068c2 Author: Jeff Law @@ -24827,8 +24947,8 @@ CommitDate: Wed Jul 25 14:32:59 2012 -0600 - Revert recent changes to res_send (804630, 835090). - Fix memcpy args in res_send (#841787). -:100644 000000 75dbe94 0000000 D glibc-rh804630.patch -:000000 100644 0000000 331a203 A glibc-rh841787.patch +:100644 000000 75dbe94b 00000000 D glibc-rh804630.patch +:000000 100644 00000000 331a2036 A glibc-rh841787.patch commit c567b667ba80cc65af2f6acd52550e67f413cc95 Author: Dennis Gilmore @@ -24838,7 +24958,7 @@ CommitDate: Thu Jul 19 01:56:05 2012 -0500 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild -:100644 100644 1350e63 4c7b1ca M glibc.spec +:100644 100644 1350e639 4c7b1cad M glibc.spec commit d7543e8b4a5c65b77dd208bf42b8e1378ea061d1 Author: Jeff Law @@ -24849,7 +24969,7 @@ CommitDate: Thu Jul 5 23:36:28 2012 -0600 - Use posix.link rather than posix.symlink in scriptlet to update /etc/localtime (#837344). -:100644 100644 530316b 1350e63 M glibc.spec +:100644 100644 530316ba 1350e639 M glibc.spec commit b151d5af8bc58862cfab659369927b41de98a449 Author: Jeff Law @@ -24859,9 +24979,9 @@ CommitDate: Mon Jul 2 07:22:19 2012 -0600 Resync with upstream glibc-2.16 release. -:100644 100644 fe68b6d a1eb7e4 M .gitignore -:100644 100644 30c1244 530316b M glibc.spec -:100644 100644 8c7353f 4bd1f82 M sources +:100644 100644 fe68b6dc a1eb7e48 M .gitignore +:100644 100644 30c1244b 530316ba M glibc.spec +:100644 100644 8c7353ff 4bd1f825 M sources commit dd8ae6f66dd4ab826ff7c210d0bc9f124ece1995 Author: Jeff Law @@ -24871,11 +24991,11 @@ CommitDate: Fri Jun 22 13:30:06 2012 -0600 - Resync with upstream sources, drop obsolete patch. -:100644 100644 c6294e8 fe68b6d M .gitignore -:100644 100644 2fac1cd 7b58d3b M glibc-fedora.patch -:100644 000000 f4aa905 0000000 D glibc-sw13579.patch -:100644 100644 647a8d6 30c1244 M glibc.spec -:100644 100644 7e42a78 8c7353f M sources +:100644 100644 c6294e85 fe68b6dc M .gitignore +:100644 100644 2fac1cd8 7b58d3ba M glibc-fedora.patch +:100644 000000 f4aa9058 00000000 D glibc-sw13579.patch +:100644 100644 647a8d65 30c1244b M glibc.spec +:100644 100644 7e42a788 8c7353ff M sources commit 5176c4e7b561acd45f98d820e4d044b2eea3546e Author: Jeff Law @@ -24886,12 +25006,12 @@ CommitDate: Thu Jun 21 17:28:16 2012 -0600 - Resync with upstream sources (#834447). - Fix use-after-free in dcigettext.c (#816647). -:100644 100644 288a94e c6294e8 M .gitignore -:100644 000000 5d4ba8d 0000000 D glibc-rh729661.patch -:100644 000000 1880121 0000000 D glibc-rh816647.patch -:100644 000000 bb4b06e 0000000 D glibc-sw13618-2.patch -:100644 100644 af26340 647a8d6 M glibc.spec -:100644 100644 6304cd4 7e42a78 M sources +:100644 100644 288a94e4 c6294e85 M .gitignore +:100644 000000 5d4ba8da 00000000 D glibc-rh729661.patch +:100644 000000 1880121a 00000000 D glibc-rh816647.patch +:100644 000000 bb4b06e3 00000000 D glibc-sw13618-2.patch +:100644 100644 af26340d 647a8d65 M glibc.spec +:100644 100644 6304cd46 7e42a788 M sources commit fd26ca323db15675ab41c4ee487001f42d44aafe Author: Jeff Law @@ -24901,8 +25021,8 @@ CommitDate: Thu Jun 21 12:04:39 2012 -0600 Fix use-after-free in dcigettext.c (#816647). -:000000 100644 0000000 1880121 A glibc-rh816647.patch -:100644 100644 2f06be3 af26340 M glibc.spec +:000000 100644 00000000 1880121a A glibc-rh816647.patch +:100644 100644 2f06be37 af26340d M glibc.spec commit e949173fe29ad30dee79669bf28d6755aa2b2748 Author: Jeff Law @@ -24912,7 +25032,7 @@ CommitDate: Mon Jun 18 09:25:25 2012 -0600 Restore accidentally removed lines -:100644 100644 7d6e54d 6304cd4 M sources +:100644 100644 7d6e54df 6304cd46 M sources commit 4d039e75295d926d75c0fb63c5f986892afa91e3 Author: Jeff Law @@ -24922,7 +25042,7 @@ CommitDate: Mon Jun 18 09:03:21 2012 -0600 Add missing glibc-ports line again -:100644 100644 e5a1c60 7d6e54d M sources +:100644 100644 e5a1c609 7d6e54df M sources commit b69ccc01785555bf260a8b756b2a77213ede47ad Author: Jeff Law @@ -24932,9 +25052,9 @@ CommitDate: Fri Jun 15 09:23:17 2012 -0600 Resync with master. -:100644 100644 894ac73 288a94e M .gitignore -:100644 100644 48b437a 2f06be3 M glibc.spec -:100644 100644 ebd08aa e5a1c60 M sources +:100644 100644 894ac735 288a94e4 M .gitignore +:100644 100644 48b437a7 2f06be37 M glibc.spec +:100644 100644 ebd08aa9 e5a1c609 M sources commit 8b98471a2cb2cfd8e1844a7e52a5ccae14cda447 Author: Jeff Law @@ -24945,8 +25065,8 @@ CommitDate: Thu Jun 14 21:52:07 2012 -0600 - Delay setting DECIDED field in locale file structure until we have read the file's data (#827510). -:000000 100644 0000000 f5f024c A glibc-rh827510.patch -:100644 100644 79478fd 48b437a M glibc.spec +:000000 100644 00000000 f5f024c5 A glibc-rh827510.patch +:100644 100644 79478fdd 48b437a7 M glibc.spec commit ebc13c27b8568b91314f14994e091fe6db3afa6a Author: Dennis Gilmore @@ -24956,7 +25076,7 @@ CommitDate: Tue Jun 12 21:01:29 2012 -0500 actually apply the arm linker hack -:100644 100644 3e63d27 79478fd M glibc.spec +:100644 100644 3e63d279 79478fdd M glibc.spec commit 6b0fcd959e9a492cd999e83fb16ce10a98ffb65e Author: Dennis Gilmore @@ -24966,7 +25086,7 @@ CommitDate: Mon Jun 11 20:38:11 2012 -0500 add the armhfp linker hack patch -:000000 100644 0000000 ff4997e A glibc-arm-hardfloat-3.patch +:000000 100644 00000000 ff4997e5 A glibc-arm-hardfloat-3.patch commit 69de1410b13841e9b770a7fed9f87d553008e068 Author: Dennis Gilmore @@ -24979,7 +25099,7 @@ CommitDate: Mon Jun 11 20:32:35 2012 -0500 - armsfp arches do not have a linker change - Backward compat hack for armhf binaries. -:100644 100644 0a89c80 3e63d27 M glibc.spec +:100644 100644 0a89c806 3e63d279 M glibc.spec commit 6ae22f0ed1d63bbf41f8c9f342e310d1265faa61 Author: Jeff Law @@ -24989,7 +25109,7 @@ CommitDate: Thu Jun 7 12:16:27 2012 -0600 Defuzz-patch -:100644 100644 f764ee1 2fac1cd M glibc-fedora.patch +:100644 100644 f764ee1c 2fac1cd8 M glibc-fedora.patch commit 218bae2116a8fd2b5bf8fcfccea0e3645d5889aa Author: Jeff Law @@ -24999,7 +25119,7 @@ CommitDate: Thu Jun 7 12:07:59 2012 -0600 Remove extraneous newline -:100644 100644 0f1c153 ebd08aa M sources +:100644 100644 0f1c153a ebd08aa9 M sources commit e20289d31a8dd4771bdb590dfca4e14fca900b39 Author: Jeff Law @@ -25009,7 +25129,7 @@ CommitDate: Thu Jun 7 11:54:50 2012 -0600 Fix parsing of /etc/sysconfig/clock when ZONE has spaces. (#828291) -:100644 100644 f8b11c9 0a89c80 M glibc.spec +:100644 100644 f8b11c94 0a89c806 M glibc.spec commit b63a792795363ba9d02115836053417dd272b570 Author: Jeff Law @@ -25019,9 +25139,9 @@ CommitDate: Tue Jun 5 12:00:01 2012 -0600 Remove unnecessary comment, updated sources -:100644 100644 f98ebab 894ac73 M .gitignore -:100644 100644 51ecb31 f8b11c9 M glibc.spec -:100644 100644 172e735 0f1c153 M sources +:100644 100644 f98ebabc 894ac735 M .gitignore +:100644 100644 51ecb315 f8b11c94 M glibc.spec +:100644 100644 172e7358 0f1c153a M sources commit fdfcf254341e2225d085ba8cead9bf36a102fd92 Author: Jeff Law @@ -25031,10 +25151,10 @@ CommitDate: Tue Jun 5 11:54:14 2012 -0600 - Resync with upstream sources, drop unnecessary patches. -:100644 000000 311cb3e 0000000 D glibc-rh446078.patch -:100644 000000 6e26a85 0000000 D glibc-rh622499.patch -:100644 000000 93dac2d 0000000 D glibc-rh682500.patch -:100644 100644 0e6467e 51ecb31 M glibc.spec +:100644 000000 311cb3e7 00000000 D glibc-rh446078.patch +:100644 000000 6e26a854 00000000 D glibc-rh622499.patch +:100644 000000 93dac2d0 00000000 D glibc-rh682500.patch +:100644 100644 0e6467eb 51ecb315 M glibc.spec commit 77881379e907df7f4a51e977b5e47bf58485ef27 Author: Jeff Law @@ -25046,9 +25166,9 @@ CommitDate: Tue Jun 5 11:35:03 2012 -0600 - Remove deprecated alpha support. - Remove redundant hunk from patch. (#823905) -:000000 100644 0000000 97d3658 A glibc-rh767693-2.patch -:100644 100644 ed9c4c9 c0a0e01 M glibc-rh823905.patch -:100644 100644 603d09a 0e6467e M glibc.spec +:000000 100644 00000000 97d36588 A glibc-rh767693-2.patch +:100644 100644 ed9c4c91 c0a0e012 M glibc-rh823905.patch +:100644 100644 603d09ac 0e6467eb M glibc.spec commit 0d1b1bab4ac36aeea9a48bbbcf3187f05714f20b Author: Jeff Law @@ -25058,10 +25178,10 @@ CommitDate: Mon Jun 4 16:22:43 2012 -0600 Restore lost line -:100644 100644 d6ca81b 172e735 M sources +:100644 100644 d6ca81b6 172e7358 M sources commit 7e7bd1effe0774eed79e39859823e05dad8fdc1e -Merge: 1559b7b 5527dc5 +Merge: 1559b7b9 5527dc5b Author: Patsy Franklin AuthorDate: Fri Jun 1 16:06:21 2012 -0400 Commit: Patsy Franklin @@ -25072,9 +25192,9 @@ CommitDate: Fri Jun 1 16:06:21 2012 -0400 Conflicts: glibc.spec -:100644 100644 cafafd8 f98ebab M .gitignore -:100644 100644 a87524d 603d09a M glibc.spec -:100644 100644 46ec239 d6ca81b M sources +:100644 100644 cafafd81 f98ebabc M .gitignore +:100644 100644 a87524dc 603d09ac M glibc.spec +:100644 100644 46ec2394 d6ca81b6 M sources commit 1559b7b9251d56da1ef2d039e4dca9a4eb820c14 Author: Patsy Franklin @@ -25086,8 +25206,8 @@ CommitDate: Fri Jun 1 15:08:41 2012 -0400 - Fix iconv() segfault when the invalid multibyte character 0xffff is input when converting from IBM930. -:000000 100644 0000000 ed9c4c9 A glibc-rh823905.patch -:100644 100644 c532fea a87524d M glibc.spec +:000000 100644 00000000 ed9c4c91 A glibc-rh823905.patch +:100644 100644 c532fead a87524dc M glibc.spec commit 200aebfe55588c73e0235f37670d884ba2e4149f Author: Patsy Franklin @@ -25097,8 +25217,8 @@ CommitDate: Thu May 31 16:21:36 2012 -0400 Fix fnmatch() when '*' wildcard is applied on a file name containing multibyte chars. (#819430/14185) -:000000 100644 0000000 8af1f78 A glibc-rh819430.patch -:100644 100644 926ea2c c532fea M glibc.spec +:000000 100644 00000000 8af1f788 A glibc-rh819430.patch +:100644 100644 926ea2c9 c532fead M glibc.spec commit e1b411d16da687845c9f18132f47442672bb6599 Author: Jeff Law @@ -25110,12 +25230,12 @@ CommitDate: Wed May 30 00:22:40 2012 -0600 Lots of local systemtap bits are now upstream and no longer needed as local changes. -:100644 100644 824f6cd cafafd8 M .gitignore -:100644 100644 27bb88e f764ee1 M glibc-fedora.patch -:100644 100644 0b41987 9db0434 M glibc-rh757881.patch -:100644 100644 d481a0b e52e020 M glibc-stap.patch -:100644 100644 c85ee03 926ea2c M glibc.spec -:100644 100644 52d7945 46ec239 M sources +:100644 100644 824f6cdc cafafd81 M .gitignore +:100644 100644 27bb88e3 f764ee1c M glibc-fedora.patch +:100644 100644 0b41987f 9db04346 M glibc-rh757881.patch +:100644 100644 d481a0bc e52e020e M glibc-stap.patch +:100644 100644 c85ee03d 926ea2c9 M glibc.spec +:100644 100644 52d79451 46ec2394 M sources commit bb3a5a5ad9bdd46e80a0b212c4336e991ee357b1 Author: Jeff Law @@ -25126,8 +25246,8 @@ CommitDate: Tue May 29 23:19:23 2012 -0600 - Build info files in the source dir, then move to objdir to avoid multilib conflicts (#825061) -:000000 100644 0000000 54fae8b A glibc-rh825061.patch -:100644 100644 a837836 c85ee03 M glibc.spec +:000000 100644 00000000 54fae8b3 A glibc-rh825061.patch +:100644 100644 a837836b c85ee03d M glibc.spec commit 66109710962110d73b7e2eaf2e10e834e1fcfd1a Author: Jeff Law @@ -25138,7 +25258,7 @@ CommitDate: Fri May 25 15:16:21 2012 -0600 - Work around RPM dropping the contents of /etc/localtime when it turns into a symlink with %post common script (#825159). -:100644 100644 5e11b5e a837836 M glibc.spec +:100644 100644 5e11b5ee a837836b M glibc.spec commit 6d522a8eb2ef188914f61a61e5ae9d9154f66a2f Author: Jeff Law @@ -25149,8 +25269,8 @@ CommitDate: Wed May 23 13:46:47 2012 -0600 - Fix option rotate when one IPV6 server is enabled (#804630) - Reenable slow/uberslow path taps slowpow/slowexp. -:000000 100644 0000000 75dbe94 A glibc-rh804630.patch -:100644 100644 86f614e 5e11b5e M glibc.spec +:000000 100644 00000000 75dbe94b A glibc-rh804630.patch +:100644 100644 86f614ed 5e11b5ee M glibc.spec commit f7dfce46ed31b2f0b5b9f942743de15a868906ff Author: Jeff Law @@ -25160,37 +25280,37 @@ CommitDate: Wed May 23 12:18:07 2012 -0600 - Resync with upstream sources. -:100644 100644 e1d2eb5 824f6cd M .gitignore -:100644 000000 c87b8a8 0000000 D glibc-arm-hardfloat-1.patch -:100644 000000 3592312 0000000 D glibc-arm-hardfloat-2.patch -:100644 100644 6eba417 27bb88e M glibc-fedora.patch -:100644 100644 d17fd13 0ce664c M glibc-rh179072.patch -:100644 000000 42f93e1 0000000 D glibc-rh454629.patch -:100644 000000 c03994b 0000000 D glibc-rh624296.patch -:100644 000000 99cf22c 0000000 D glibc-rh740506.patch -:100644 100644 b0418d1 999d266 M glibc-rh740682.patch -:100644 000000 ccf9715 0000000 D glibc-rh758888.patch -:100644 000000 d32e238 0000000 D glibc-rh760935.patch -:100644 100644 996aba1 dd03490 M glibc-rh769421.patch -:100644 100644 f9c3a3b 8757641 M glibc-rh770869.patch -:100644 000000 7540525 0000000 D glibc-rh783979.patch -:100644 000000 5e783f5 0000000 D glibc-rh784402.patch -:100644 000000 4e730ce 0000000 D glibc-rh788989.patch -:100644 000000 c1b2989 0000000 D glibc-rh794797-2.patch -:100644 000000 271538d 0000000 D glibc-rh794797.patch -:100644 000000 729c5a4 0000000 D glibc-rh795498.patch -:100644 000000 0000c5a 0000000 D glibc-rh798471.patch -:100644 000000 d357cf2 0000000 D glibc-rh801650.patch -:100644 000000 0ff243d 0000000 D glibc-rh804792.patch -:100644 000000 7ea9441 0000000 D glibc-rh806070.patch -:100644 000000 8f852f9 0000000 D glibc-rh806403.patch -:100644 000000 6866549 0000000 D glibc-rh817276.patch -:100644 100644 07761b9 fd20b7f M glibc-stap-libm.patch -:100644 100644 b3ff9fa d481a0b M glibc-stap.patch -:100644 000000 6202deb 0000000 D glibc-sw13618.patch -:100644 000000 134e50d 0000000 D glibc-sw13979.patch -:100644 100644 19b0db6 86f614e M glibc.spec -:100644 100644 1f4929b 52d7945 M sources +:100644 100644 e1d2eb5e 824f6cdc M .gitignore +:100644 000000 c87b8a8c 00000000 D glibc-arm-hardfloat-1.patch +:100644 000000 35923129 00000000 D glibc-arm-hardfloat-2.patch +:100644 100644 6eba417b 27bb88e3 M glibc-fedora.patch +:100644 100644 d17fd136 0ce664cd M glibc-rh179072.patch +:100644 000000 42f93e10 00000000 D glibc-rh454629.patch +:100644 000000 c03994b6 00000000 D glibc-rh624296.patch +:100644 000000 99cf22c1 00000000 D glibc-rh740506.patch +:100644 100644 b0418d14 999d266d M glibc-rh740682.patch +:100644 000000 ccf97152 00000000 D glibc-rh758888.patch +:100644 000000 d32e2384 00000000 D glibc-rh760935.patch +:100644 100644 996aba12 dd03490d M glibc-rh769421.patch +:100644 100644 f9c3a3b8 87576410 M glibc-rh770869.patch +:100644 000000 7540525e 00000000 D glibc-rh783979.patch +:100644 000000 5e783f5e 00000000 D glibc-rh784402.patch +:100644 000000 4e730cef 00000000 D glibc-rh788989.patch +:100644 000000 c1b2989c 00000000 D glibc-rh794797-2.patch +:100644 000000 271538d8 00000000 D glibc-rh794797.patch +:100644 000000 729c5a4d 00000000 D glibc-rh795498.patch +:100644 000000 0000c5a1 00000000 D glibc-rh798471.patch +:100644 000000 d357cf2f 00000000 D glibc-rh801650.patch +:100644 000000 0ff243d1 00000000 D glibc-rh804792.patch +:100644 000000 7ea94416 00000000 D glibc-rh806070.patch +:100644 000000 8f852f9b 00000000 D glibc-rh806403.patch +:100644 000000 6866549b 00000000 D glibc-rh817276.patch +:100644 100644 07761b98 fd20b7f6 M glibc-stap-libm.patch +:100644 100644 b3ff9fa0 d481a0bc M glibc-stap.patch +:100644 000000 6202deb7 00000000 D glibc-sw13618.patch +:100644 000000 134e50d9 00000000 D glibc-sw13979.patch +:100644 100644 19b0db6b 86f614ed M glibc.spec +:100644 100644 1f4929b5 52d79451 M sources commit 9b14d89a52d1f6de17da37e35fcbb47f4858e9a9 Author: Jeff Law @@ -25200,7 +25320,7 @@ CommitDate: Tue May 22 23:08:44 2012 -0600 - Fix tzdata trigger (#822200) -:100644 100644 74ff458 19b0db6 M glibc.spec +:100644 100644 74ff458c 19b0db6b M glibc.spec commit d1134780a2edda596f949244b722c346ae841128 Author: Jeff Law @@ -25211,7 +25331,7 @@ CommitDate: Tue May 22 22:21:50 2012 -0600 - Make the symlink relative rather than linking into the buildroot (#822200) -:100644 100644 e70dc1f 74ff458 M glibc.spec +:100644 100644 e70dc1fb 74ff458c M glibc.spec commit 998f7d1a8dc5315dc60d6a1da231db4d1acefda8 Author: Patsy Franklin @@ -25222,7 +25342,7 @@ CommitDate: Tue May 22 16:25:33 2012 -0400 Resolves: #822200 -Completed prior change to make /etc/localtime a symlink. -:100644 100644 32f74ee e70dc1f M glibc.spec +:100644 100644 32f74eec e70dc1fb M glibc.spec commit 423d527c1d957b159a36cc08a204c3999d292aae Author: Patsy Franklin @@ -25233,7 +25353,7 @@ CommitDate: Tue May 22 14:58:09 2012 -0400 Resolves: #822200 Changed /etc/localtime to a symlink. 8222000 (#822200) -:100644 100644 72958a5 32f74ee M glibc.spec +:100644 100644 72958a5f 32f74eec M glibc.spec commit 2bd73a18b39cab0dd5ed29b5b9e91438126a83a7 Author: Jeff Law @@ -25243,8 +25363,8 @@ CommitDate: Tue May 15 22:21:22 2012 -0600 - Update to upstream patch for 806070 (#806070) -:100644 100644 71d7133 7ea9441 M glibc-rh806070.patch -:100644 100644 983a957 72958a5 M glibc.spec +:100644 100644 71d71332 7ea94416 M glibc-rh806070.patch +:100644 100644 983a957d 72958a5f M glibc.spec commit 86a57e60b3536ce139cc6805e4022c515d37cde5 Author: Jeff Law @@ -25254,8 +25374,8 @@ CommitDate: Mon May 14 11:53:42 2012 -0600 - Update upstream patch for AVX testing (#801650) -:100644 100644 d3c8c60 d357cf2 M glibc-rh801650.patch -:100644 100644 9c1bd57 983a957 M glibc.spec +:100644 100644 d3c8c607 d357cf2f M glibc-rh801650.patch +:100644 100644 9c1bd57a 983a957d M glibc.spec commit d2e0d47266920c219b4ddefc8e3e132974fbb5e9 Author: Jeff Law @@ -25265,11 +25385,11 @@ CommitDate: Fri May 11 15:49:43 2012 -0600 - Upstream patch to fix AVX testing (#801650) -:100644 000000 a5c809b 0000000 D glibc-rh801650-1.patch -:100644 000000 6d1a1c4 0000000 D glibc-rh801650-2.patch -:100644 000000 1c4c252 0000000 D glibc-rh801650-3.patch -:000000 100644 0000000 d3c8c60 A glibc-rh801650.patch -:100644 100644 c32fdbf 9c1bd57 M glibc.spec +:100644 000000 a5c809b6 00000000 D glibc-rh801650-1.patch +:100644 000000 6d1a1c4d 00000000 D glibc-rh801650-2.patch +:100644 000000 1c4c2524 00000000 D glibc-rh801650-3.patch +:000000 100644 00000000 d3c8c607 A glibc-rh801650.patch +:100644 100644 c32fdbf9 9c1bd57a M glibc.spec commit 6403acaa71bd71956ab40e39e1713ec8ebd8edae Author: Jeff Law @@ -25279,8 +25399,8 @@ CommitDate: Thu May 10 20:57:08 2012 -0600 - Try again to fix AVX testing (#801650) -:000000 100644 0000000 1c4c252 A glibc-rh801650-3.patch -:100644 100644 bd59969 c32fdbf M glibc.spec +:000000 100644 00000000 1c4c2524 A glibc-rh801650-3.patch +:100644 100644 bd599694 c32fdbf9 M glibc.spec commit 111ecf779a202dc0971fcfa20cbb8e8548361c48 Author: Jeff Law @@ -25290,7 +25410,7 @@ CommitDate: Tue May 8 21:34:35 2012 -0600 Move patch for FORTIFY_SOURCE warning into patches from upstream -:100644 100644 108c42a bd59969 M glibc.spec +:100644 100644 108c42a4 bd599694 M glibc.spec commit 4c937b3960b9007617cbafe36415c70dce26c33e Author: Jeff Law @@ -25300,7 +25420,7 @@ CommitDate: Tue May 8 21:33:53 2012 -0600 Replace local variant with upstream version -:100644 100644 e5111a6 134e50d M glibc-sw13979.patch +:100644 100644 e5111a66 134e50d9 M glibc-sw13979.patch commit 49f951b0b58e4ee71c74254e8fb6c0c12079cf77 Author: Jeff Law @@ -25310,7 +25430,7 @@ CommitDate: Tue May 8 12:44:43 2012 -0600 Fix glibc-arm-hardflow-2.patch. -:100644 100644 d11d0a0 3592312 M glibc-arm-hardfloat-2.patch +:100644 100644 d11d0a07 35923129 M glibc-arm-hardfloat-2.patch commit e5e2fc3bd76660a90a6bb3e98cb1653946745def Author: Jeff Law @@ -25320,7 +25440,7 @@ CommitDate: Mon May 7 13:47:26 2012 -0600 Update arm-hardfloat patch -:100644 100644 6a66b3e d11d0a0 M glibc-arm-hardfloat-2.patch +:100644 100644 6a66b3e3 d11d0a07 M glibc-arm-hardfloat-2.patch commit 6537aa83a13c3478d91c0fcf32862c318861832a Author: Jeff Law @@ -25331,10 +25451,10 @@ CommitDate: Mon May 7 12:06:40 2012 -0600 - Improve fortification disabled warning. - Change location of dynamic linker for armhf. -:000000 100644 0000000 c87b8a8 A glibc-arm-hardfloat-1.patch -:000000 100644 0000000 6a66b3e A glibc-arm-hardfloat-2.patch -:100644 100644 80d5427 e5111a6 M glibc-sw13979.patch -:100644 100644 c72f06a 108c42a M glibc.spec +:000000 100644 00000000 c87b8a8c A glibc-arm-hardfloat-1.patch +:000000 100644 00000000 6a66b3e3 A glibc-arm-hardfloat-2.patch +:100644 100644 80d54275 e5111a66 M glibc-sw13979.patch +:100644 100644 c72f06a9 108c42a4 M glibc.spec commit a540ed36fe29d2dce223269b14f0f4ae3ed95d79 Author: Jeff Law @@ -25344,8 +25464,8 @@ CommitDate: Mon Apr 30 14:04:07 2012 -0600 - Implement context routines for ARM (#817276) -:000000 100644 0000000 6866549 A glibc-rh817276.patch -:100644 100644 fe9cf75 c72f06a M glibc.spec +:000000 100644 00000000 6866549b A glibc-rh817276.patch +:100644 100644 fe9cf757 c72f06a9 M glibc.spec commit 64e6774cce09e713b9326f483d7e4f34241eee54 Author: Jeff Law @@ -25355,8 +25475,8 @@ CommitDate: Fri Apr 13 11:24:58 2012 -0600 - Issue a warning if FORTIFY_CHECKING is requested, but disabled. -:000000 100644 0000000 80d5427 A glibc-sw13979.patch -:100644 100644 b72c645 fe9cf75 M glibc.spec +:000000 100644 00000000 80d54275 A glibc-sw13979.patch +:100644 100644 b72c6452 fe9cf757 M glibc.spec commit f818b5c715151ad12f2e3eefa1dc71e78f98053a Author: Jeff Law @@ -25366,8 +25486,8 @@ CommitDate: Thu Apr 12 09:52:32 2012 -0600 + - Fix another unbound alloca in nscd groups (#788989) -:000000 100644 0000000 50c59f8 A glibc-rh788989-2.patch -:100644 100644 72da034 b72c645 M glibc.spec +:000000 100644 00000000 50c59f82 A glibc-rh788989-2.patch +:100644 100644 72da0341 b72c6452 M glibc.spec commit 92f265ff301b2b2da42028a0e49fa38b6ef9e943 Author: Jeff Law @@ -25378,10 +25498,10 @@ CommitDate: Thu Apr 5 15:59:29 2012 -0600 Separate patch list into not likely to upstream, upstream, pending upstream. Remove unnecessary ia64 patch. No functional changes. -:100644 100644 889b8cf 6eba417 M glibc-fedora.patch -:100644 000000 05fd922 0000000 D glibc-ia64-lib64.patch -:000000 100644 0000000 f4aa905 A glibc-sw13579.patch -:100644 100644 a965185 72da034 M glibc.spec +:100644 100644 889b8cf6 6eba417b M glibc-fedora.patch +:100644 000000 05fd9229 00000000 D glibc-ia64-lib64.patch +:000000 100644 00000000 f4aa9058 A glibc-sw13579.patch +:100644 100644 a9651859 72da0341 M glibc.spec commit 073b690e45717499b042a42e06630c0a50d2549d Author: Jeff Law @@ -25391,8 +25511,8 @@ CommitDate: Tue Apr 3 11:19:38 2012 -0600 - Fix first day of week for lv_LV (#682500) -:000000 100644 0000000 93dac2d A glibc-rh682500.patch -:100644 100644 7b2fd42 a965185 M glibc.spec +:000000 100644 00000000 93dac2d0 A glibc-rh682500.patch +:100644 100644 7b2fd42d a9651859 M glibc.spec commit c30958093b58e9c51bb10b6aa754133ce4c7e96f Author: Jeff Law @@ -25403,8 +25523,8 @@ CommitDate: Mon Apr 2 21:24:18 2012 -0600 - When retrying after main arena failure, always retry in a different arena. (#789238) -:000000 100644 0000000 91e8df7 A glibc-rh789238-2.patch -:100644 100644 e13f243 7b2fd42 M glibc.spec +:000000 100644 00000000 91e8df78 A glibc-rh789238-2.patch +:100644 100644 e13f2435 7b2fd42d M glibc.spec commit ca8adba64008498881f2db5435bed685d7b45667 Author: Jeff Law @@ -25414,7 +25534,7 @@ CommitDate: Fri Mar 30 09:56:08 2012 -0600 Final version of the 804792 patch. No functional changes. -:100644 100644 d91ae6f 0ff243d M glibc-rh804792.patch +:100644 100644 d91ae6f1 0ff243d1 M glibc-rh804792.patch commit 5022ed713cfd314910f7aadd4bdc9dd972b71953 Author: Jeff Law @@ -25424,8 +25544,8 @@ CommitDate: Thu Mar 29 12:46:29 2012 -0600 Avoid unbound alloca usage in *-crypt routines (#804792) -:000000 100644 0000000 d91ae6f A glibc-rh804792.patch -:100644 100644 78de6d0 e13f243 M glibc.spec +:000000 100644 00000000 d91ae6f1 A glibc-rh804792.patch +:100644 100644 78de6d01 e13f2435 M glibc.spec commit d004e5468f108f10ef33cbeedd599d0c06486253 Author: Jeff Law @@ -25435,8 +25555,8 @@ CommitDate: Thu Mar 29 10:25:56 2012 -0600 Fix data race in nscd (#806070) -:000000 100644 0000000 71d7133 A glibc-rh806070.patch -:100644 100644 5c23263 78de6d0 M glibc.spec +:000000 100644 00000000 71d71332 A glibc-rh806070.patch +:100644 100644 5c232630 78de6d01 M glibc.spec commit ccb21a9b27f37e33c7ab1f1ee782604b40538228 Author: Jeff Law @@ -25446,8 +25566,8 @@ CommitDate: Fri Mar 23 14:03:01 2012 -0600 - Fix typo in __nss_getent (#806403). -:000000 100644 0000000 8f852f9 A glibc-rh806403.patch -:100644 100644 0a0eef8 5c23263 M glibc.spec +:000000 100644 00000000 8f852f9b A glibc-rh806403.patch +:100644 100644 0a0eef84 5c232630 M glibc.spec commit 4ad934832a3bf982c24a5a2509c101e52694b11e Author: Jeff Law @@ -25458,9 +25578,9 @@ CommitDate: Wed Mar 14 21:21:22 2012 -0600 - Add doi_IN, sat_IN and mni_IN to SUPPORTED locals (#803286) - Add stap probes in slowpow and slowexp. -:000000 100644 0000000 d9f909c A glibc-rh803286.patch -:000000 100644 0000000 07761b9 A glibc-stap-libm.patch -:100644 100644 8fffa08 0a0eef8 M glibc.spec +:000000 100644 00000000 d9f909c5 A glibc-rh803286.patch +:000000 100644 00000000 07761b98 A glibc-stap-libm.patch +:100644 100644 8fffa089 0a0eef84 M glibc.spec commit d893fa43b788427c77386e97802847cdcffcbc8f Author: Jeff Law @@ -25470,9 +25590,9 @@ CommitDate: Fri Mar 9 15:20:06 2012 -0700 - Fix AVX checks (#801650) -:100644 100644 b20da75 a5c809b M glibc-rh801650-1.patch -:100644 100644 bc8469b 6d1a1c4 M glibc-rh801650-2.patch -:100644 100644 a2e473b 8fffa08 M glibc.spec +:100644 100644 b20da753 a5c809b6 M glibc-rh801650-1.patch +:100644 100644 bc8469b2 6d1a1c4d M glibc-rh801650-2.patch +:100644 100644 a2e473b0 8fffa089 M glibc.spec commit b113737687ca5b10fb3b100104442c3c555625de Author: Jeff Law @@ -25482,9 +25602,9 @@ CommitDate: Fri Mar 9 15:19:08 2012 -0700 - Fix AVX checks (#801650) -:100644 100644 1c6eece c1b2989 M glibc-rh794797-2.patch -:000000 100644 0000000 b20da75 A glibc-rh801650-1.patch -:000000 100644 0000000 bc8469b A glibc-rh801650-2.patch +:100644 100644 1c6eecea c1b2989c M glibc-rh794797-2.patch +:000000 100644 00000000 b20da753 A glibc-rh801650-1.patch +:000000 100644 00000000 bc8469b2 A glibc-rh801650-2.patch commit b8fef868f39b5e46ae4eb2440320b9e50461002e Author: Jeff Law @@ -25495,9 +25615,9 @@ CommitDate: Wed Mar 7 12:20:16 2012 -0700 - Set errno properly in vfprintf (#794797) - Don't kill application when LD_PROFILE is set. (#800224) -:000000 100644 0000000 1c6eece A glibc-rh794797-2.patch -:000000 100644 0000000 ce8234c A glibc-rh800224.patch -:100644 100644 5399069 a2e473b M glibc.spec +:000000 100644 00000000 1c6eecea A glibc-rh794797-2.patch +:000000 100644 00000000 ce8234c0 A glibc-rh800224.patch +:100644 100644 5399069e a2e473b0 M glibc.spec commit 978e71e3df84d53c6131cabd8e4632723c7e2fc4 Author: Jeff Law @@ -25507,8 +25627,8 @@ CommitDate: Wed Feb 29 12:50:51 2012 -0700 - Always mark vDSO as used (#758888) -:000000 100644 0000000 ccf9715 A glibc-rh758888.patch -:100644 100644 4f7b061 5399069 M glibc.spec +:000000 100644 00000000 ccf97152 A glibc-rh758888.patch +:100644 100644 4f7b061c 5399069e M glibc.spec commit 296965fe20b5fe833e527abd9e8f8b4e466c67d0 Author: Jeff Law @@ -25518,8 +25638,8 @@ CommitDate: Wed Feb 29 09:46:36 2012 -0700 - Fix out of bounds memory access in resolver (#798471) -:000000 100644 0000000 0000c5a A glibc-rh798471.patch -:100644 100644 75e5fe4 4f7b061 M glibc.spec +:000000 100644 00000000 0000c5a1 A glibc-rh798471.patch +:100644 100644 75e5fe4c 4f7b061c M glibc.spec commit f2aa9065577dd92e75b418314873ff9d9e7a99c3 Author: Jeff Law @@ -25529,7 +25649,7 @@ CommitDate: Fri Feb 24 10:51:48 2012 -0700 Fix typo -:100644 100644 72e0740 75e5fe4 M glibc.spec +:100644 100644 72e07400 75e5fe4c M glibc.spec commit c0564b95e0a7c2400e1f983cddd23779a85fcdae Author: Jeff Law @@ -25543,10 +25663,10 @@ CommitDate: Fri Feb 24 10:41:06 2012 -0700 are returned (#795498) - Fix nscd crash when group has many members (#788959) -:000000 100644 0000000 d32e238 A glibc-rh760935.patch -:000000 100644 0000000 4e730ce A glibc-rh788989.patch -:000000 100644 0000000 729c5a4 A glibc-rh795498.patch -:100644 100644 00dea67 72e0740 M glibc.spec +:000000 100644 00000000 d32e2384 A glibc-rh760935.patch +:000000 100644 00000000 4e730cef A glibc-rh788989.patch +:000000 100644 00000000 729c5a4d A glibc-rh795498.patch +:100644 100644 00dea67e 72e07400 M glibc.spec commit 0e190d479d2e7dd365577ff0d47169f851d34c24 Author: Jeff Law @@ -25557,8 +25677,8 @@ CommitDate: Mon Feb 20 21:21:30 2012 -0700 - Avoid "nargs" integer overflow which could be used to bypass FORTIFY_SOURCE (#794797) -:000000 100644 0000000 271538d A glibc-rh794797.patch -:100644 100644 1dad96f 00dea67 M glibc.spec +:000000 100644 00000000 271538d8 A glibc-rh794797.patch +:100644 100644 1dad96fe 00dea67e M glibc.spec commit a7a908e66969beb93d5cd60872e7a518dfb956f3 Author: Jeff Law @@ -25568,8 +25688,8 @@ CommitDate: Mon Feb 20 14:23:27 2012 -0700 - Fix main arena locking in malloc/calloc retry path (#789238) -:000000 100644 0000000 1801123 A glibc-rh789238.patch -:100644 100644 effaadf 1dad96f M glibc.spec +:000000 100644 00000000 1801123b A glibc-rh789238.patch +:100644 100644 effaadfe 1dad96fe M glibc.spec commit ecc055dd90636c44aca6dce9f05e60cac2d1aa35 Author: Jeff Law @@ -25581,8 +25701,8 @@ CommitDate: Fri Feb 17 12:36:00 2012 -0700 - Don't assign native result if result has no associated interface (#739743) -:000000 100644 0000000 c390b77 A glibc-rh739743.patch -:100644 100644 acad7b4 effaadf M glibc.spec +:000000 100644 00000000 c390b772 A glibc-rh739743.patch +:100644 100644 acad7b47 effaadfe M glibc.spec commit 0e9bf8be6ad883928185ec216c38ea406fdd1edf Author: Jeff Law @@ -25592,8 +25712,8 @@ CommitDate: Fri Feb 17 11:17:21 2012 -0700 Fixup 730856 bits -:100644 100644 0010c19 14270ed M glibc-rh730856.patch -:100644 100644 812c477 acad7b4 M glibc.spec +:100644 100644 0010c19c 14270ed7 M glibc-rh730856.patch +:100644 100644 812c4771 acad7b47 M glibc.spec commit fc9b7c88692243946794047bd45b364cc38f574b Author: Jeff Law @@ -25603,8 +25723,8 @@ CommitDate: Fri Feb 17 11:05:38 2012 -0700 Ignore link-local IPV6 addresses for AI_ADDRCONFIG (#697149) -:000000 100644 0000000 e94e0a7 A glibc-rh697149.patch -:100644 100644 968e645 812c477 M glibc.spec +:000000 100644 00000000 e94e0a75 A glibc-rh697149.patch +:100644 100644 968e645b 812c4771 M glibc.spec commit 817ee79b35f07ef3266ced2ef7bdfc626674cc3c Author: Jeff Law @@ -25614,8 +25734,8 @@ CommitDate: Thu Feb 16 23:01:37 2012 -0700 Fix reply buffer mismanagement in resolver (#730856) -:100644 100644 f7bd5d1 0010c19 M glibc-rh730856.patch -:100644 100644 5e4f088 968e645 M glibc.spec +:100644 100644 f7bd5d1d 0010c19c M glibc-rh730856.patch +:100644 100644 5e4f0882 968e645b M glibc.spec commit 47621c91beb4041fa84ee3d20d8f59ee731d9547 Author: Jeff Law @@ -25625,8 +25745,8 @@ CommitDate: Thu Feb 16 09:25:08 2012 -0700 - Add doi_IN (#791161) -:000000 100644 0000000 1c1fab0 A glibc-rh791161.patch -:100644 100644 a48203c 5e4f088 M glibc.spec +:000000 100644 00000000 1c1fab0f A glibc-rh791161.patch +:100644 100644 a48203c4 5e4f0882 M glibc.spec commit b22f1f5d25ea3857d00dcc295ab6fd01fb7d315a Author: Jeff Law @@ -25638,8 +25758,8 @@ CommitDate: Thu Feb 16 09:22:24 2012 -0700 This reverts commit 0f6595ecf58f103c0688302f219759d593d39fb2. -:100644 000000 3859a32 0000000 D glibc-rh552960-2.patch -:100644 100644 2cb8866 a48203c M glibc.spec +:100644 000000 3859a320 00000000 D glibc-rh552960-2.patch +:100644 100644 2cb88666 a48203c4 M glibc.spec commit a200e9e81fc61f3abeee427ddf03e3c3aac9fe3f Author: Jeff Law @@ -25650,9 +25770,9 @@ CommitDate: Tue Feb 14 09:54:55 2012 -0700 - Add sat_IN (#790292) - Add mni_IN (#790298) -:000000 100644 0000000 4f1351d A glibc-rh790292.patch -:000000 100644 0000000 92bf620 A glibc-rh790298.patch -:100644 100644 c20f94a 2cb8866 M glibc.spec +:000000 100644 00000000 4f1351d6 A glibc-rh790292.patch +:000000 100644 00000000 92bf6202 A glibc-rh790298.patch +:100644 100644 c20f94ad 2cb88666 M glibc.spec commit 0f6595ecf58f103c0688302f219759d593d39fb2 Author: Jeff Law @@ -25662,8 +25782,8 @@ CommitDate: Fri Feb 10 12:56:02 2012 -0700 Fix lost wakeups in pthread_cond_*. (#552960, #769421) -:000000 100644 0000000 3859a32 A glibc-rh552960-2.patch -:100644 100644 23f3738 c20f94a M glibc.spec +:000000 100644 00000000 3859a320 A glibc-rh552960-2.patch +:100644 100644 23f3738a c20f94ad M glibc.spec commit 48de2e8094305295f811828f3657f508b74dea63 Author: Jeff Law @@ -25673,7 +25793,7 @@ CommitDate: Fri Feb 10 12:47:23 2012 -0700 Remove unwanted hunks -:100644 100644 8de7fb2 326157a M glibc-rh564528.patch +:100644 100644 8de7fb24 326157ac M glibc-rh564528.patch commit ffdb8099ced7d557446d22fcf2c58e00f373740e Author: Jeff Law @@ -25683,8 +25803,8 @@ CommitDate: Thu Feb 9 23:50:17 2012 -0700 Clarify info page for snprintf (#564528) -:000000 100644 0000000 8de7fb2 A glibc-rh564528.patch -:100644 100644 1a45ec8 23f3738 M glibc.spec +:000000 100644 00000000 8de7fb24 A glibc-rh564528.patch +:100644 100644 1a45ec88 23f3738a M glibc.spec commit a3c3ac2213a188794e8419f10eacf8967043d808 Author: Jeff Law @@ -25694,8 +25814,8 @@ CommitDate: Thu Feb 9 23:01:54 2012 -0700 Fix first_weekday and first_workday for ru_UA (#624296) -:000000 100644 0000000 c03994b A glibc-rh624296.patch -:100644 100644 e267c93 1a45ec8 M glibc.spec +:000000 100644 00000000 c03994b6 A glibc-rh624296.patch +:100644 100644 e267c934 1a45ec88 M glibc.spec commit 930810752aaf4da690f2a20e811f880b53a8ed47 Author: Jeff Law @@ -25705,7 +25825,7 @@ CommitDate: Thu Feb 9 22:33:20 2012 -0700 Update patch for Fedora -:100644 100644 c5604c3 9645298 M glibc-rh789209.patch +:100644 100644 c5604c33 9645298b M glibc-rh789209.patch commit 29567a505dd8e214c09ce6cc84459cb8664ad50e Author: Jeff Law @@ -25715,8 +25835,8 @@ CommitDate: Thu Feb 9 22:16:57 2012 -0700 Fix currency_symbol for uk_UA (#789209) -:000000 100644 0000000 c5604c3 A glibc-rh789209.patch -:100644 100644 aa38930 e267c93 M glibc.spec +:000000 100644 00000000 c5604c33 A glibc-rh789209.patch +:100644 100644 aa389309 e267c934 M glibc.spec commit 5c2160b7f3eb8233080be4ec43f5d677825cd6fc Author: Jeff Law @@ -25726,8 +25846,8 @@ CommitDate: Thu Feb 9 10:47:47 2012 -0700 Fix weekday names in Kashmiri locale (#770439) -:000000 100644 0000000 a6ec302 A glibc-rh770439.patch -:100644 100644 5fe14bd aa38930 M glibc.spec +:000000 100644 00000000 a6ec302a A glibc-rh770439.patch +:100644 100644 5fe14bdf aa389309 M glibc.spec commit cd1492e433eb713bcf93ce98294829205bee0fb5 Author: Jeff Law @@ -25737,7 +25857,7 @@ CommitDate: Thu Feb 9 10:43:42 2012 -0700 Removing unused patchfile. -:100644 000000 a252253 0000000 D glibc-rh787662.patch +:100644 000000 a2522535 00000000 D glibc-rh787662.patch commit b8f291fb635170315b4d151f9ae1b941dea08287 Author: Jeff Law @@ -25747,7 +25867,7 @@ CommitDate: Tue Feb 7 22:12:19 2012 -0700 Remove change for 787662, correct fix is in gcc. -:100644 100644 5978117 5fe14bd M glibc.spec +:100644 100644 59781177 5fe14bdf M glibc.spec commit 7472f9034f3460c9f16068e3e79f6a5c2e414ed2 Author: Jeff Law @@ -25757,8 +25877,8 @@ CommitDate: Tue Feb 7 12:03:30 2012 -0700 Find cpp in /usr/bin too (#767662) -:000000 100644 0000000 a252253 A glibc-rh787662.patch -:100644 100644 462bdaa 5978117 M glibc.spec +:000000 100644 00000000 a2522535 A glibc-rh787662.patch +:100644 100644 462bdaab 59781177 M glibc.spec commit a8b56792820b862f17e9fce9e62ee4d8ac774059 Author: Jeff Law @@ -25768,8 +25888,8 @@ CommitDate: Mon Feb 6 12:19:06 2012 -0700 More accurately detect if we're in a chroot (#688948) -:000000 100644 0000000 f067a80 A glibc-rh688948.patch -:100644 100644 13846ab 462bdaa M glibc.spec +:000000 100644 00000000 f067a801 A glibc-rh688948.patch +:100644 100644 13846abc 462bdaab M glibc.spec commit 46bc83a891f30c1c1e2d833846fecfe0b5526a0b Author: Jeff Law @@ -25779,8 +25899,8 @@ CommitDate: Fri Feb 3 14:32:45 2012 -0700 - Add fedfs to /etc/rpc (#691912) -:000000 100644 0000000 53a968e A glibc-rh691912.patch -:100644 100644 0cde08a 13846ab M glibc.spec +:000000 100644 00000000 53a968e9 A glibc-rh691912.patch +:100644 100644 0cde08af 13846abc M glibc.spec commit af740e08c93fcdf5addc4a72e5cd6143b300fb23 Author: Jeff Law @@ -25790,8 +25910,8 @@ CommitDate: Fri Feb 3 13:42:46 2012 -0700 - Run nscd in the foreground w/ syslogging, fix systemd config (#770869) -:000000 100644 0000000 f9c3a3b A glibc-rh770869.patch -:100644 100644 28d5626 0cde08a M glibc.spec +:000000 100644 00000000 f9c3a3b8 A glibc-rh770869.patch +:100644 100644 28d56260 0cde08af M glibc.spec commit 92f446a92ece9db09d389026b1ebfd63ad386d16 Author: Jeff Law @@ -25801,8 +25921,8 @@ CommitDate: Fri Feb 3 11:03:58 2012 -0700 - Avoid mapping past end of shared object (#741105) -:000000 100644 0000000 8252062 A glibc-rh741105.patch -:100644 100644 e85d752 28d5626 M glibc.spec +:000000 100644 00000000 82520620 A glibc-rh741105.patch +:100644 100644 e85d752b 28d56260 M glibc.spec commit 360c4a1c7828ba88bfbb757a3b25e29164e78c2d Author: Jeff Law @@ -25813,9 +25933,9 @@ CommitDate: Fri Feb 3 09:30:02 2012 -0700 - Turn off -mno-minimal-toc on PPC (#787201) - Remove hunk from glibc-rh657588.patch that didn't belong -:100644 100644 f5895a3 80ba5e8 M glibc-rh657588.patch -:000000 100644 0000000 cd7cfe1 A glibc-rh787201.patch -:100644 100644 155cc7b e85d752 M glibc.spec +:100644 100644 f5895a35 80ba5e84 M glibc-rh657588.patch +:000000 100644 00000000 cd7cfe18 A glibc-rh787201.patch +:100644 100644 155cc7b4 e85d752b M glibc.spec commit 2a042bc0f70e2bb6f7c56b7c2adab26c535540d1 Author: Jeff Law @@ -25825,8 +25945,8 @@ CommitDate: Wed Feb 1 09:52:38 2012 -0700 Fix month abbreviations for zh_CN (#657588) -:000000 100644 0000000 f5895a3 A glibc-rh657588.patch -:100644 100644 b005deb 155cc7b M glibc.spec +:000000 100644 00000000 f5895a35 A glibc-rh657588.patch +:100644 100644 b005debd 155cc7b4 M glibc.spec commit dd7f54d17df206b422e7b7da740285d6bb9fd027 Author: Jeff Law @@ -25836,8 +25956,8 @@ CommitDate: Wed Feb 1 09:37:08 2012 -0700 Prevent erroneous inline optimization of initfini.s on PowerPC64 (#783979) -:000000 100644 0000000 7540525 A glibc-rh783979.patch -:100644 100644 439752b b005deb M glibc.spec +:000000 100644 00000000 7540525e A glibc-rh783979.patch +:100644 100644 439752bd b005debd M glibc.spec commit 7b27d27fa9c70210ac390d8d510df98951d6ca3b Author: Jeff Law @@ -25847,8 +25967,8 @@ CommitDate: Wed Feb 1 09:32:10 2012 -0700 Use upstream variant of fix for 740506. -:100644 100644 6e20ff9 99cf22c M glibc-rh740506.patch -:100644 100644 51a3e3d 439752b M glibc.spec +:100644 100644 6e20ff96 99cf22c1 M glibc-rh740506.patch +:100644 100644 51a3e3d8 439752bd M glibc.spec commit 70c5758f4321a3e30a51c2c61882bfb5748a3699 Author: Jeff Law @@ -25859,9 +25979,9 @@ CommitDate: Sun Jan 29 22:24:24 2012 -0700 - Sort objects before relocations (sw#13618) - Fix bogus sort code that was copied from dl-deps.c. -:000000 100644 0000000 bb4b06e A glibc-sw13618-2.patch -:000000 100644 0000000 6202deb A glibc-sw13618.patch -:100644 100644 1672c76 51a3e3d M glibc.spec +:000000 100644 00000000 bb4b06e3 A glibc-sw13618-2.patch +:000000 100644 00000000 6202deb7 A glibc-sw13618.patch +:100644 100644 1672c762 51a3e3d8 M glibc.spec commit 61e27a51819cd392f923aec58bd594d452366dbd Author: Jeff Law @@ -25871,8 +25991,8 @@ CommitDate: Thu Jan 26 11:57:01 2012 -0700 Resolves: #740682 -:000000 100644 0000000 b0418d1 A glibc-rh740682.patch -:100644 100644 0cf4c90 1672c76 M glibc.spec +:000000 100644 00000000 b0418d14 A glibc-rh740682.patch +:100644 100644 0cf4c909 1672c762 M glibc.spec commit e8db5b40639c96b5170d11867cf5cb9f385bdde9 Author: Jeff Law @@ -25882,8 +26002,8 @@ CommitDate: Thu Jan 26 11:03:17 2012 -0700 - Add aliases for ISO-10646-UCS-2 (#697421) -:000000 100644 0000000 961c805 A glibc-rh697421.patch -:100644 100644 2062e34 0cf4c90 M glibc.spec +:000000 100644 00000000 961c8053 A glibc-rh697421.patch +:100644 100644 2062e34a 0cf4c909 M glibc.spec commit 1f95681b6e99ce66c820117556211a52697e0fb4 Author: Jeff Law @@ -25893,7 +26013,7 @@ CommitDate: Wed Jan 25 21:58:33 2012 -0700 Bump version# -:100644 100644 891845c 2062e34 M glibc.spec +:100644 100644 891845c5 2062e34a M glibc.spec commit c89b9e0c474c95bb8d8956bf24b9bf3200baae03 Author: Jeff Law @@ -25903,8 +26023,8 @@ CommitDate: Wed Jan 25 21:57:42 2012 -0700 Resolves: #179072 -:000000 100644 0000000 d17fd13 A glibc-rh179072.patch -:100644 100644 ecbd72b 891845c M glibc.spec +:000000 100644 00000000 d17fd136 A glibc-rh179072.patch +:100644 100644 ecbd72b9 891845c5 M glibc.spec commit 26b6b52f86fc01d67a43ba62429396f6b3ffc74d Author: Jeff Law @@ -25914,9 +26034,9 @@ CommitDate: Wed Jan 25 21:42:59 2012 -0700 Break systemtap patches out of glibc-fedora.patch into glibc-stap.patch -:100644 100644 25fa067 889b8cf M glibc-fedora.patch -:000000 100644 0000000 b3ff9fa A glibc-stap.patch -:100644 100644 c9aaae5 ecbd72b M glibc.spec +:100644 100644 25fa0673 889b8cf6 M glibc-fedora.patch +:000000 100644 00000000 b3ff9fa0 A glibc-stap.patch +:100644 100644 c9aaae5f ecbd72b9 M glibc.spec commit 68357f8e9f15f7a0a083b7a157292f984d54299c Author: Jeff Law @@ -25929,10 +26049,10 @@ CommitDate: Tue Jan 24 21:23:41 2012 -0700 - Do not cache negative results in nscd if these are transient (#784402) -:000000 100644 0000000 6e26a85 A glibc-rh622499.patch -:100644 100644 f297970 5d4ba8d M glibc-rh729661.patch -:000000 100644 0000000 5e783f5 A glibc-rh784402.patch -:100644 100644 9203f2f c9aaae5 M glibc.spec +:000000 100644 00000000 6e26a854 A glibc-rh622499.patch +:100644 100644 f2979706 5d4ba8da M glibc-rh729661.patch +:000000 100644 00000000 5e783f5e A glibc-rh784402.patch +:100644 100644 9203f2fd c9aaae5f M glibc.spec commit a434010a7c76ecd5b86d9f36ee1a3cb4ccea2836 Author: Jeff Law @@ -25942,9 +26062,9 @@ CommitDate: Tue Jan 24 14:43:00 2012 -0700 - Update ports from master. -:100644 100644 9ae290a e1d2eb5 M .gitignore -:100644 100644 5647f90 9203f2f M glibc.spec -:100644 100644 8bf8bca 1f4929b M sources +:100644 100644 9ae290a4 e1d2eb5e M .gitignore +:100644 100644 5647f905 9203f2fd M glibc.spec +:100644 100644 8bf8bca2 1f4929b5 M sources commit ee7ce9fbc1cfc826272fb1f43483001d014b07c1 Author: Jeff Law @@ -25955,9 +26075,9 @@ CommitDate: Mon Jan 23 15:00:11 2012 -0700 - Fix first workday/weekday for it_IT (#446078) - Fix first workday/weekday for ca_ES (#454629) -:000000 100644 0000000 311cb3e A glibc-rh446078.patch -:000000 100644 0000000 42f93e1 A glibc-rh454629.patch -:100644 100644 de833a0 5647f90 M glibc.spec +:000000 100644 00000000 311cb3e7 A glibc-rh446078.patch +:000000 100644 00000000 42f93e10 A glibc-rh454629.patch +:100644 100644 de833a0a 5647f905 M glibc.spec commit 4dc232f59d9bc46050bc6ee199f3f14e1b72cf2c Author: Jeff Law @@ -25967,8 +26087,8 @@ CommitDate: Mon Jan 23 14:41:49 2012 -0700 Fix cycle detection & overflows (729661) -:000000 100644 0000000 f297970 A glibc-rh729661.patch -:100644 100644 ad73097 de833a0 M glibc.spec +:000000 100644 00000000 f2979706 A glibc-rh729661.patch +:100644 100644 ad730976 de833a0a M glibc.spec commit d9d4748f79c1a55a1b4ecd052fa45a27ba122031 Author: Dennis Gilmore @@ -25978,7 +26098,7 @@ CommitDate: Thu Jan 12 21:37:06 2012 -0600 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild -:100644 100644 92509e4 ad73097 M glibc.spec +:100644 100644 92509e4a ad730976 M glibc.spec commit b37e2e87ad71b4cbd01903766444b9f9219608c7 Author: Jeff Law @@ -25988,8 +26108,8 @@ CommitDate: Sun Jan 1 21:02:29 2012 -0700 Fix after update from upstream glibc-2.15 -:100644 100644 bfef6cf 25fa067 M glibc-fedora.patch -:100644 100644 96ec3d7 996aba1 M glibc-rh769421.patch +:100644 100644 bfef6cf5 25fa0673 M glibc-fedora.patch +:100644 100644 96ec3d73 996aba12 M glibc-rh769421.patch commit 71ecd3cdb429890727840ba97fb55d1e9940fd77 Author: Jeff Law @@ -25999,11 +26119,11 @@ CommitDate: Sun Jan 1 18:33:52 2012 -0700 Update from master (a316c1f) -:100644 100644 0b933ba 9ae290a M .gitignore -:100644 100644 1f5298b bfef6cf M glibc-fedora.patch -:100644 100644 67f5ad7 96ec3d7 M glibc-rh769421.patch -:100644 100644 3542d9a 92509e4 M glibc.spec -:100644 100644 e3752e0 8bf8bca M sources +:100644 100644 0b933ba4 9ae290a4 M .gitignore +:100644 100644 1f5298bb bfef6cf5 M glibc-fedora.patch +:100644 100644 67f5ad73 96ec3d73 M glibc-rh769421.patch +:100644 100644 3542d9a6 92509e4a M glibc.spec +:100644 100644 e3752e04 8bf8bca2 M sources commit 25912eaa884ea342aeba0095b7f88780ca725991 Author: Jeff Law @@ -26018,14 +26138,14 @@ CommitDate: Thu Dec 22 19:25:40 2011 +0000 - Revert "fix" to pthread_cond_wait (#769421) - Extract patch for 730856 from fedora-patch into a distinct patchfile -:100644 100644 8b28c6e 0b933ba M .gitignore -:100644 100644 807a6bb 1f5298b M glibc-fedora.patch -:000000 100644 0000000 f7bd5d1 A glibc-rh730856.patch -:000000 100644 0000000 6e20ff9 A glibc-rh740506.patch -:000000 100644 0000000 67f5ad7 A glibc-rh769421.patch -:000000 100644 0000000 378eda1 A glibc-rh769476.patch -:100644 100644 aeb21be 3542d9a M glibc.spec -:100644 100644 0a836c8 e3752e0 M sources +:100644 100644 8b28c6ea 0b933ba4 M .gitignore +:100644 100644 807a6bb6 1f5298bb M glibc-fedora.patch +:000000 100644 00000000 f7bd5d1d A glibc-rh730856.patch +:000000 100644 00000000 6e20ff96 A glibc-rh740506.patch +:000000 100644 00000000 67f5ad73 A glibc-rh769421.patch +:000000 100644 00000000 378eda13 A glibc-rh769476.patch +:100644 100644 aeb21bec 3542d9a6 M glibc.spec +:100644 100644 0a836c84 e3752e04 M sources commit f79eb1f5028c97ae3735e7264b703885ca696bfb Author: Jeff Law @@ -26035,25 +26155,25 @@ CommitDate: Tue Dec 20 05:46:44 2011 +0000 - Update from master (a4647e7). -:100644 100644 38c1594 8b28c6e M .gitignore -:100644 000000 56ea56d 0000000 D glibc-arenalock.patch -:100644 000000 4b26722 0000000 D glibc-fdelt.patch -:100644 100644 af6a2a4 807a6bb M glibc-fedora.patch -:100644 000000 13ca55b 0000000 D glibc-localegrouping.patch -:100644 000000 1cac26e 0000000 D glibc-no-leaf-attribute.patch -:100644 000000 96e2c8c 0000000 D glibc-rh552960.patch -:100644 000000 efc8116 0000000 D glibc-rh708455.patch -:100644 000000 325766b 0000000 D glibc-rh750811.patch -:100644 000000 c2840d7 0000000 D glibc-rh750858.patch -:100644 000000 436f28a 0000000 D glibc-rh757887.patch -:100644 000000 bdac89a 0000000 D glibc-rh758252.patch -:100644 000000 66493ac 0000000 D glibc-rh767696.patch -:100644 000000 58d96d8 0000000 D glibc-rh767746.patch -:100644 100644 8e2dae8 aeb21be M glibc.spec -:100644 100644 c990b62 0a836c8 M sources +:100644 100644 38c15948 8b28c6ea M .gitignore +:100644 000000 56ea56d3 00000000 D glibc-arenalock.patch +:100644 000000 4b267228 00000000 D glibc-fdelt.patch +:100644 100644 af6a2a47 807a6bb6 M glibc-fedora.patch +:100644 000000 13ca55b1 00000000 D glibc-localegrouping.patch +:100644 000000 1cac26e6 00000000 D glibc-no-leaf-attribute.patch +:100644 000000 96e2c8c3 00000000 D glibc-rh552960.patch +:100644 000000 efc81162 00000000 D glibc-rh708455.patch +:100644 000000 325766b9 00000000 D glibc-rh750811.patch +:100644 000000 c2840d72 00000000 D glibc-rh750858.patch +:100644 000000 436f28a8 00000000 D glibc-rh757887.patch +:100644 000000 bdac89a5 00000000 D glibc-rh758252.patch +:100644 000000 66493ac9 00000000 D glibc-rh767696.patch +:100644 000000 58d96d81 00000000 D glibc-rh767746.patch +:100644 100644 8e2dae87 aeb21bec M glibc.spec +:100644 100644 c990b62a 0a836c84 M sources commit 8cbc6b28a560af244e53f7898e3f132d869f00df -Merge: 51c5ad2 e13f8ca +Merge: 51c5ad24 e13f8ca6 Author: Jeff Law AuthorDate: Mon Dec 19 06:15:17 2011 +0000 Commit: Jeff Law @@ -26061,11 +26181,11 @@ CommitDate: Mon Dec 19 06:15:17 2011 +0000 Merge remote-tracking branch 'origin/f16' -:100644 100644 0536efa 66493ac M glibc-rh767696.patch -:100644 100644 7d5179f 8e2dae8 M glibc.spec +:100644 100644 0536efa1 66493ac9 M glibc-rh767696.patch +:100644 100644 7d5179fb 8e2dae87 M glibc.spec commit 51c5ad24841a57e91f67c612eb2abd41705b4358 -Merge: be95b8a bc05e7a +Merge: be95b8a4 bc05e7ac Author: Jeff Law AuthorDate: Mon Dec 19 05:19:27 2011 +0000 Commit: Jeff Law @@ -26073,11 +26193,11 @@ CommitDate: Mon Dec 19 05:19:27 2011 +0000 Merge remote-tracking branch 'origin/f16' -:000000 100644 0000000 0536efa A glibc-rh767696.patch -:100644 100644 07bdf9b 7d5179f M glibc.spec +:000000 100644 00000000 0536efa1 A glibc-rh767696.patch +:100644 100644 07bdf9b6 7d5179fb M glibc.spec commit be95b8a4bef7a7d6d4a29939213e288ac84cbeb1 -Merge: c388b17 73a44fd +Merge: c388b17a 73a44fd6 Author: Jeff Law AuthorDate: Thu Dec 15 22:02:00 2011 -0700 Commit: Jeff Law @@ -26088,12 +26208,12 @@ CommitDate: Thu Dec 15 22:02:00 2011 -0700 Conflicts: glibc.spec -:000000 100644 0000000 96e2c8c A glibc-rh552960.patch -:000000 100644 0000000 58d96d8 A glibc-rh767746.patch -:100644 100644 a10b124 07bdf9b M glibc.spec +:000000 100644 00000000 96e2c8c3 A glibc-rh552960.patch +:000000 100644 00000000 58d96d81 A glibc-rh767746.patch +:100644 100644 a10b1247 07bdf9b6 M glibc.spec commit c388b17ae97402347c861068bdb187da0b21e014 -Merge: 1aa714a 07d0fb6 +Merge: 1aa714a9 07d0fb6d Author: Jeff Law AuthorDate: Thu Dec 15 19:51:34 2011 -0700 Commit: Jeff Law @@ -26102,7 +26222,7 @@ CommitDate: Thu Dec 15 19:51:34 2011 -0700 Merge branch 'master' of ssh://pkgs.fedoraproject.org/glibc commit 1aa714a9d71c25dfd9717886d9028c8ddfdddaa9 -Merge: f0d2fdc 341defe +Merge: f0d2fdc7 341defed Author: Jeff Law AuthorDate: Mon Dec 12 11:23:59 2011 -0700 Commit: Jeff Law @@ -26110,10 +26230,10 @@ CommitDate: Mon Dec 12 11:23:59 2011 -0700 Merge commit '341defed2c87effd2001a971e3710f63a8473825' -:000000 100644 0000000 bdac89a A glibc-rh758252.patch +:000000 100644 00000000 bdac89a5 A glibc-rh758252.patch commit f0d2fdc7e830605c31bb76cf9408b9d9b8a66e1b -Merge: 608edcf 7b81576 +Merge: 608edcf2 7b815769 Author: Dennis Gilmore AuthorDate: Mon Dec 12 11:48:56 2011 -0600 Commit: Dennis Gilmore @@ -26124,13 +26244,13 @@ CommitDate: Mon Dec 12 11:48:56 2011 -0600 Conflicts: glibc.spec -:000000 100644 0000000 4b26722 A glibc-fdelt.patch -:000000 100644 0000000 efc8116 A glibc-rh708455.patch -:000000 100644 0000000 325766b A glibc-rh750811.patch -:100644 100644 735e3c6 a10b124 M glibc.spec +:000000 100644 00000000 4b267228 A glibc-fdelt.patch +:000000 100644 00000000 efc81162 A glibc-rh708455.patch +:000000 100644 00000000 325766b9 A glibc-rh750811.patch +:100644 100644 735e3c69 a10b1247 M glibc.spec commit 608edcf2b63db4283d988c5c5e7f3eadcd005200 -Merge: b327b51 2c67eb0 +Merge: b327b51c 2c67eb0f Author: Jeff Law AuthorDate: Tue Dec 6 11:20:45 2011 -0700 Commit: Jeff Law @@ -26141,9 +26261,9 @@ CommitDate: Tue Dec 6 11:20:45 2011 -0700 Conflicts: glibc.spec -:000000 100644 0000000 c2840d7 A glibc-rh750858.patch -:000000 100644 0000000 436f28a A glibc-rh757887.patch -:100644 100644 f286167 735e3c6 M glibc.spec +:000000 100644 00000000 c2840d72 A glibc-rh750858.patch +:000000 100644 00000000 436f28a8 A glibc-rh757887.patch +:100644 100644 f2861674 735e3c69 M glibc.spec commit b327b51c2f1b1359a448af2c95412189fa734e4e Author: Dennis Gilmore @@ -26153,10 +26273,10 @@ CommitDate: Wed Nov 30 21:46:10 2011 -0600 add disttag -:100644 100644 fee2558 f286167 M glibc.spec +:100644 100644 fee2558f f2861674 M glibc.spec commit 50477821bcd667d7c3b3c72d63cc7b017a132160 -Merge: 17ee078 2716093 +Merge: 17ee0781 2716093f Author: Dennis Gilmore AuthorDate: Wed Nov 30 21:45:48 2011 -0600 Commit: Dennis Gilmore @@ -26167,9 +26287,9 @@ CommitDate: Wed Nov 30 21:45:48 2011 -0600 Conflicts: glibc.spec -:100644 100644 318563b 38c1594 M .gitignore -:000000 100644 0000000 0b41987 A glibc-rh757881.patch -:100644 100644 1495e71 fee2558 M glibc.spec +:100644 100644 318563b1 38c15948 M .gitignore +:000000 100644 00000000 0b41987f A glibc-rh757881.patch +:100644 100644 1495e71f fee2558f M glibc.spec commit 17ee0781d1f68a2ddaa7da95c7a0c2a9c25c51f7 Author: Jeff Law @@ -26179,7 +26299,7 @@ CommitDate: Mon Nov 21 11:13:07 2011 -0700 Fix typo in changelog -:100644 100644 c271f36 1495e71 M glibc.spec +:100644 100644 c271f367 1495e71f M glibc.spec commit f2c76e2b1bc671e00cf2ae617842c4a82b3da259 Author: Jeff Law @@ -26189,7 +26309,7 @@ CommitDate: Mon Nov 21 10:42:04 2011 -0700 Add upstream BZ# to -19 update -:100644 100644 d77f8d4 c271f36 M glibc.spec +:100644 100644 d77f8d48 c271f367 M glibc.spec commit 5d47a9295a1a3751a14066edd9989b2acf74e8e1 Author: Jeff Law @@ -26210,9 +26330,9 @@ CommitDate: Mon Nov 21 10:33:40 2011 -0700 Pulled into master (f17) -:000000 100644 0000000 56ea56d A glibc-arenalock.patch -:000000 100644 0000000 13ca55b A glibc-localegrouping.patch -:100644 100644 fb3cd14 d77f8d4 M glibc.spec +:000000 100644 00000000 56ea56d3 A glibc-arenalock.patch +:000000 100644 00000000 13ca55b1 A glibc-localegrouping.patch +:100644 100644 fb3cd14d d77f8d48 M glibc.spec commit a515186e368f56556e46c8f1d9eff2501e33f5f1 Author: Dennis Gilmore @@ -26222,7 +26342,7 @@ CommitDate: Wed Oct 26 18:51:17 2011 -0500 - Rebuilt for glibc bug#747377 -:100644 100644 52801f0 fb3cd14 M glibc.spec +:100644 100644 52801f06 fb3cd14d M glibc.spec commit 4b931c38d9445565a3e3e2c9803934de701d38e6 Author: Jim Meyering @@ -26236,8 +26356,8 @@ CommitDate: Wed Oct 26 12:27:12 2011 -0700 sometimes even out of critical sections. See http://bugzilla.redhat.com/747377 -:000000 100644 0000000 1cac26e A glibc-no-leaf-attribute.patch -:100644 100644 1aebfee 52801f0 M glibc.spec +:000000 100644 00000000 1cac26e6 A glibc-no-leaf-attribute.patch +:100644 100644 1aebfeef 52801f06 M glibc.spec commit 29e836b7ac8a1011f6e18d389d64714782e58da9 Author: Andreas Schwab @@ -26247,10 +26367,10 @@ CommitDate: Wed Oct 19 13:15:08 2011 +0200 2.14.90-13 -:100644 100644 ce6f546 318563b M .gitignore -:100644 100644 a4cbea6 af6a2a4 M glibc-fedora.patch -:100644 100644 b7564cc 1aebfee M glibc.spec -:100644 100644 240489d c990b62 M sources +:100644 100644 ce6f546f 318563b1 M .gitignore +:100644 100644 a4cbea64 af6a2a47 M glibc-fedora.patch +:100644 100644 b7564cc0 1aebfeef M glibc.spec +:100644 100644 240489de c990b62a M sources commit 70defc99d881d709821738453294ddba66e6a5d7 Author: Andreas Schwab @@ -26260,10 +26380,10 @@ CommitDate: Mon Oct 17 14:23:54 2011 +0200 2.14.90-12 -:100644 100644 0ff2785 b7564cc M glibc.spec +:100644 100644 0ff27853 b7564cc0 M glibc.spec commit 1352c0cbaea33440425a5e4c7ca5952d977c1a99 -Merge: 90b266e cf62242 +Merge: 90b266ec cf622420 Author: Andreas Schwab AuthorDate: Mon Oct 17 14:21:36 2011 +0200 Commit: Andreas Schwab @@ -26279,10 +26399,10 @@ CommitDate: Mon Oct 17 14:20:08 2011 +0200 2.14.90-12 -:100644 100644 0c5f087 ce6f546 M .gitignore -:100644 100644 2c66fd0 a4cbea6 M glibc-fedora.patch -:100644 100644 6049519 0ff2785 M glibc.spec -:100644 100644 9b1a873 240489d M sources +:100644 100644 0c5f087c ce6f546f M .gitignore +:100644 100644 2c66fd0a a4cbea64 M glibc-fedora.patch +:100644 100644 6049519a 0ff27853 M glibc.spec +:100644 100644 9b1a8738 240489de M sources commit 13d2c2fdc249704201c1335c32e50a9f6f53ae4e Author: Andreas Schwab @@ -26292,10 +26412,10 @@ CommitDate: Tue Oct 11 14:02:50 2011 +0200 2.14.90-11 -:100644 100644 4f89512 0c5f087 M .gitignore -:100644 100644 dd38f6a 2c66fd0 M glibc-fedora.patch -:100644 100644 92caee0 6049519 M glibc.spec -:100644 100644 6eecc60 9b1a873 M sources +:100644 100644 4f89512e 0c5f087c M .gitignore +:100644 100644 dd38f6a2 2c66fd0a M glibc-fedora.patch +:100644 100644 92caee01 6049519a M glibc.spec +:100644 100644 6eecc606 9b1a8738 M sources commit 389eedc12de7334204d8a7b71e65a7d9c6a8139b Author: Andreas Schwab @@ -26305,10 +26425,10 @@ CommitDate: Wed Sep 28 14:23:58 2011 +0200 2.14.90-10 -:100644 100644 37ffb80 4f89512 M .gitignore -:100644 100644 6f030a1 dd38f6a M glibc-fedora.patch -:100644 100644 8457441 92caee0 M glibc.spec -:100644 100644 6257dee 6eecc60 M sources +:100644 100644 37ffb80d 4f89512e M .gitignore +:100644 100644 6f030a18 dd38f6a2 M glibc-fedora.patch +:100644 100644 84574416 92caee01 M glibc.spec +:100644 100644 6257dee9 6eecc606 M sources commit aeada30480a8b89c1aa65ea32534e0f91d0c8680 Author: Andreas Schwab @@ -26318,10 +26438,10 @@ CommitDate: Fri Sep 16 14:17:45 2011 +0200 2.14.90-9 -:100644 100644 b4fbf70 37ffb80 M .gitignore -:100644 100644 fae2164 6f030a1 M glibc-fedora.patch -:100644 100644 f702369 8457441 M glibc.spec -:100644 100644 3665f97 6257dee M sources +:100644 100644 b4fbf701 37ffb80d M .gitignore +:100644 100644 fae21649 6f030a18 M glibc-fedora.patch +:100644 100644 f7023697 84574416 M glibc.spec +:100644 100644 3665f97c 6257dee9 M sources commit 8e59833f6d5bfdc47155f7e0c04dc95e7e6c3fc1 Author: Andreas Schwab @@ -26331,10 +26451,10 @@ CommitDate: Thu Sep 8 13:44:47 2011 +0200 2.14.90-8 -:100644 100644 c7d10a1 b4fbf70 M .gitignore -:100644 100644 7639cc1 fae2164 M glibc-fedora.patch -:100644 100644 3720bd3 f702369 M glibc.spec -:100644 100644 bb3d222 3665f97 M sources +:100644 100644 c7d10a1e b4fbf701 M .gitignore +:100644 100644 7639cc18 fae21649 M glibc-fedora.patch +:100644 100644 3720bd32 f7023697 M glibc.spec +:100644 100644 bb3d222c 3665f97c M sources commit d05dd8538a552f4b4831d073eb11ff694d99419f Author: Andreas Schwab @@ -26344,10 +26464,10 @@ CommitDate: Thu Sep 1 14:44:40 2011 +0200 2.14.90-7 -:100644 100644 09c90d3 c7d10a1 M .gitignore -:100644 100644 e4f8548 7639cc1 M glibc-fedora.patch -:100644 100644 8e191ae 3720bd3 M glibc.spec -:100644 100644 4f089b0 bb3d222 M sources +:100644 100644 09c90d37 c7d10a1e M .gitignore +:100644 100644 e4f85484 7639cc18 M glibc-fedora.patch +:100644 100644 8e191ae9 3720bd32 M glibc.spec +:100644 100644 4f089b03 bb3d222c M sources commit 02300746cd0dd22adf0239b3bf2f0ef07d366cf5 Author: Andreas Schwab @@ -26357,10 +26477,10 @@ CommitDate: Wed Aug 24 16:31:06 2011 +0200 2.14.90-6 -:100644 100644 d59759f 09c90d3 M .gitignore -:100644 100644 fa3e662 e4f8548 M glibc-fedora.patch -:100644 100644 4050c88 8e191ae M glibc.spec -:100644 100644 a164bc3 4f089b0 M sources +:100644 100644 d59759fc 09c90d37 M .gitignore +:100644 100644 fa3e662f e4f85484 M glibc-fedora.patch +:100644 100644 4050c881 8e191ae9 M glibc.spec +:100644 100644 a164bc33 4f089b03 M sources commit 96f2a7b82c232b245c4cd8b1099d46c52040ae66 Author: Andreas Schwab @@ -26370,10 +26490,10 @@ CommitDate: Mon Aug 15 11:29:40 2011 +0200 2.14.90-5 -:100644 100644 0ff8fc6 d59759f M .gitignore -:100644 100644 2c79da7 fa3e662 M glibc-fedora.patch -:100644 100644 ebcb752 4050c88 M glibc.spec -:100644 100644 455a708 a164bc3 M sources +:100644 100644 0ff8fc67 d59759fc M .gitignore +:100644 100644 2c79da7e fa3e662f M glibc-fedora.patch +:100644 100644 ebcb7528 4050c881 M glibc.spec +:100644 100644 455a708e a164bc33 M sources commit d41767f53ff980d1afbc0e29ac4f6825f4e04ff9 Author: Andreas Schwab @@ -26383,7 +26503,7 @@ CommitDate: Tue Aug 9 13:49:38 2011 +0200 2.14.90-4 -:100644 100644 2f58548 ebcb752 M glibc.spec +:100644 100644 2f585488 ebcb7528 M glibc.spec commit 9d45d8d1445fc822383b07454e268f7af3e2252a Author: Andreas Schwab @@ -26393,10 +26513,10 @@ CommitDate: Tue Aug 9 13:47:20 2011 +0200 2.14.90-4 -:100644 100644 3fb530b 0ff8fc6 M .gitignore -:100644 100644 3bfdc3e 2c79da7 M glibc-fedora.patch -:100644 100644 124f683 2f58548 M glibc.spec -:100644 100644 f4388d2 455a708 M sources +:100644 100644 3fb530be 0ff8fc67 M .gitignore +:100644 100644 3bfdc3e8 2c79da7e M glibc-fedora.patch +:100644 100644 124f6838 2f585488 M glibc.spec +:100644 100644 f4388d22 455a708e M sources commit 35680ac6022e87f0fb2936a74fe72eab550e6844 Author: Rex Dieter @@ -26406,7 +26526,7 @@ CommitDate: Thu Jul 21 15:36:45 2011 -0500 rebuild (fix prior broken rpm in buildroot) -:100644 100644 a3c921e 124f683 M glibc.spec +:100644 100644 a3c921ee 124f6838 M glibc.spec commit 444e2cc188fbdaac4882e1301d6711636b7ab378 Author: Andreas Schwab @@ -26416,10 +26536,10 @@ CommitDate: Wed Jul 20 13:54:13 2011 +0200 2.14.90-3 -:100644 100644 74de638 3fb530b M .gitignore -:100644 100644 7f3c4b3 3bfdc3e M glibc-fedora.patch -:100644 100644 3d92d72 a3c921e M glibc.spec -:100644 100644 65e529f f4388d2 M sources +:100644 100644 74de6389 3fb530be M .gitignore +:100644 100644 7f3c4b32 3bfdc3e8 M glibc-fedora.patch +:100644 100644 3d92d727 a3c921ee M glibc.spec +:100644 100644 65e529f8 f4388d22 M sources commit 4dd080e34a542c3cc8d859cceb0b33061d4f667a Author: Andreas Schwab @@ -26429,10 +26549,10 @@ CommitDate: Thu Jul 14 15:53:14 2011 +0200 2.14.90-2 -:100644 100644 9bfaa1b 74de638 M .gitignore -:100644 100644 5741428 7f3c4b3 M glibc-fedora.patch -:100644 100644 7b9193c 3d92d72 M glibc.spec -:100644 100644 93ad582 65e529f M sources +:100644 100644 9bfaa1b5 74de6389 M .gitignore +:100644 100644 57414280 7f3c4b32 M glibc-fedora.patch +:100644 100644 7b9193c9 3d92d727 M glibc.spec +:100644 100644 93ad5826 65e529f8 M sources commit 538b3c089927e05128e8030e3c57ac318187dd5e Author: Andreas Schwab @@ -26442,10 +26562,10 @@ CommitDate: Fri Jul 1 11:03:06 2011 +0200 2.14.90-1 -:100644 100644 3911cd3 9bfaa1b M .gitignore -:100644 100644 ce564b0 5741428 M glibc-fedora.patch -:100644 100644 d4c15f5 7b9193c M glibc.spec -:100644 100644 cfdf549 93ad582 M sources +:100644 100644 3911cd39 9bfaa1b5 M .gitignore +:100644 100644 ce564b00 57414280 M glibc-fedora.patch +:100644 100644 d4c15f51 7b9193c9 M glibc.spec +:100644 100644 cfdf5492 93ad5826 M sources commit d1bf7db949826332c8bc0fd0f1543de83a3ebd9b Author: Andreas Schwab @@ -26455,10 +26575,10 @@ CommitDate: Tue Jun 28 17:01:03 2011 +0200 2.14-4 -:100644 100644 e945919 3911cd3 M .gitignore -:100644 100644 e37df0c ce564b0 M glibc-fedora.patch -:100644 100644 106ab65 d4c15f5 M glibc.spec -:100644 100644 203da2e cfdf549 M sources +:100644 100644 e945919b 3911cd39 M .gitignore +:100644 100644 e37df0c2 ce564b00 M glibc-fedora.patch +:100644 100644 106ab654 d4c15f51 M glibc.spec +:100644 100644 203da2e0 cfdf5492 M sources commit 382444fc1407a67b824220501cf45fb55e1756ca Author: Andreas Schwab @@ -26468,8 +26588,8 @@ CommitDate: Tue Jun 21 17:12:12 2011 +0200 2.14-3 -:100644 100644 fae4b23 e37df0c M glibc-fedora.patch -:100644 100644 1973f07 203da2e M sources +:100644 100644 fae4b237 e37df0c2 M glibc-fedora.patch +:100644 100644 1973f072 203da2e0 M sources commit cecb16f60f774a4a5b53c327256a459bd8895b02 Author: Andreas Schwab @@ -26479,11 +26599,11 @@ CommitDate: Tue Jun 21 14:59:31 2011 +0200 2.14-3 -:100644 100644 eb3bb96 e945919 M .gitignore -:100644 100644 ff7de11 fae4b23 M glibc-fedora.patch -:100644 000000 62d7391 0000000 D glibc-revert-27390476.patch -:100644 100644 376614a 106ab65 M glibc.spec -:100644 100644 a45db89 1973f07 M sources +:100644 100644 eb3bb960 e945919b M .gitignore +:100644 100644 ff7de11f fae4b237 M glibc-fedora.patch +:100644 000000 62d73915 00000000 D glibc-revert-27390476.patch +:100644 100644 376614ad 106ab654 M glibc.spec +:100644 100644 a45db890 1973f072 M sources commit 78124418b9e424bab4ac69d9f402c2fa0c44eabc Author: Dan Horák @@ -26493,8 +26613,8 @@ CommitDate: Thu Jun 9 14:56:46 2011 +0200 revert glibc commit 27390476 as it requires binutils >= 2.21.52.0.1 (#711330) -:000000 100644 0000000 62d7391 A glibc-revert-27390476.patch -:100644 100644 b8fc8a5 376614a M glibc.spec +:000000 100644 00000000 62d73915 A glibc-revert-27390476.patch +:100644 100644 b8fc8a52 376614ad M glibc.spec commit 7f8f336ccdfb320b66e174b44ae736917cfab0d6 Author: Andreas Schwab @@ -26504,9 +26624,9 @@ CommitDate: Fri Jun 3 14:29:51 2011 +0200 2.14-2 -:100644 100644 0a92db0 ff7de11 M glibc-fedora.patch -:100644 100644 a6e40e3 b8fc8a5 M glibc.spec -:100644 100644 fb8c90e a45db89 M sources +:100644 100644 0a92db05 ff7de11f M glibc-fedora.patch +:100644 100644 a6e40e3c b8fc8a52 M glibc.spec +:100644 100644 fb8c90ea a45db890 M sources commit f3509915d728d46a934fbaa10049239ba2378ea6 Author: Andreas Schwab @@ -26516,10 +26636,10 @@ CommitDate: Tue May 31 14:54:27 2011 +0200 2.14-1 -:100644 100644 f066dd9 eb3bb96 M .gitignore -:100644 100644 be2ae47 0a92db0 M glibc-fedora.patch -:100644 100644 58e536e a6e40e3 M glibc.spec -:100644 100644 45d0b4d fb8c90e M sources +:100644 100644 f066dd9d eb3bb960 M .gitignore +:100644 100644 be2ae478 0a92db05 M glibc-fedora.patch +:100644 100644 58e536e3 a6e40e3c M glibc.spec +:100644 100644 45d0b4d1 fb8c90ea M sources commit d297ec7b522edcf73bb6b0c443da0bcd61c52fc7 Author: Andreas Schwab @@ -26529,10 +26649,10 @@ CommitDate: Fri May 27 16:19:02 2011 +0200 2.13.90-14 -:100644 100644 ecbeef0 f066dd9 M .gitignore -:100644 100644 c80857f be2ae47 M glibc-fedora.patch -:100644 100644 014c1da 58e536e M glibc.spec -:100644 100644 137a987 45d0b4d M sources +:100644 100644 ecbeef03 f066dd9d M .gitignore +:100644 100644 c80857f1 be2ae478 M glibc-fedora.patch +:100644 100644 014c1da4 58e536e3 M glibc.spec +:100644 100644 137a9876 45d0b4d1 M sources commit 33bafa6a65c1f0deaec19385b286f782cd644c46 Author: Andreas Schwab @@ -26542,10 +26662,10 @@ CommitDate: Wed May 18 16:18:54 2011 +0200 2.13.90-13 -:100644 100644 171bad8 ecbeef0 M .gitignore -:100644 100644 0e4b5fa c80857f M glibc-fedora.patch -:100644 100644 904dc8d 014c1da M glibc.spec -:100644 100644 0ad99fb 137a987 M sources +:100644 100644 171bad8c ecbeef03 M .gitignore +:100644 100644 0e4b5fa2 c80857f1 M glibc-fedora.patch +:100644 100644 904dc8d0 014c1da4 M glibc.spec +:100644 100644 0ad99fb6 137a9876 M sources commit 5423dccb1cbfd3351dcfe8f979915d25ae2ee3e5 Author: Andreas Schwab @@ -26555,10 +26675,10 @@ CommitDate: Fri May 13 16:56:46 2011 +0200 2.13.90-12 -:100644 100644 24de6a8 171bad8 M .gitignore -:100644 100644 5d76921 0e4b5fa M glibc-fedora.patch -:100644 100644 7c1bdec 904dc8d M glibc.spec -:100644 100644 47245a0 0ad99fb M sources +:100644 100644 24de6a86 171bad8c M .gitignore +:100644 100644 5d769211 0e4b5fa2 M glibc-fedora.patch +:100644 100644 7c1bdec0 904dc8d0 M glibc.spec +:100644 100644 47245a08 0ad99fb6 M sources commit 532ddd86e535b87c5ee5d862471e75cf329fdba2 Author: Andreas Schwab @@ -26568,10 +26688,10 @@ CommitDate: Fri May 6 12:41:38 2011 +0200 2.13.90-11 -:100644 100644 63af975 24de6a8 M .gitignore -:100644 100644 158ffdf 5d76921 M glibc-fedora.patch -:100644 100644 c9350db 7c1bdec M glibc.spec -:100644 100644 e091800 47245a0 M sources +:100644 100644 63af975e 24de6a86 M .gitignore +:100644 100644 158ffdf9 5d769211 M glibc-fedora.patch +:100644 100644 c9350db7 7c1bdec0 M glibc.spec +:100644 100644 e0918002 47245a08 M sources commit 436d93ab23d70b2b2fcb7e94e6f290ac5a4e39aa Author: Andreas Schwab @@ -26581,10 +26701,10 @@ CommitDate: Wed May 4 13:11:17 2011 +0200 2.13.90-10 -:100644 100644 3ed7b79 63af975 M .gitignore -:100644 100644 36b6fc6 158ffdf M glibc-fedora.patch -:100644 100644 848f27e c9350db M glibc.spec -:100644 100644 9551238 e091800 M sources +:100644 100644 3ed7b79a 63af975e M .gitignore +:100644 100644 36b6fc6c 158ffdf9 M glibc-fedora.patch +:100644 100644 848f27e5 c9350db7 M glibc.spec +:100644 100644 9551238b e0918002 M sources commit c883c14538459a0a6156b8350ec9e4769d86ada8 Author: Andreas Schwab @@ -26594,10 +26714,10 @@ CommitDate: Thu Apr 7 13:22:58 2011 +0200 2.13.90-9 -:100644 100644 9230a07 3ed7b79 M .gitignore -:100644 100644 266dd66 36b6fc6 M glibc-fedora.patch -:100644 100644 f05a51a 848f27e M glibc.spec -:100644 100644 32abae3 9551238 M sources +:100644 100644 9230a07b 3ed7b79a M .gitignore +:100644 100644 266dd66a 36b6fc6c M glibc-fedora.patch +:100644 100644 f05a51ab 848f27e5 M glibc.spec +:100644 100644 32abae36 9551238b M sources commit af66f0ce22470bf76f1642a4059a6d3e09c86bcd Author: Andreas Schwab @@ -26607,10 +26727,10 @@ CommitDate: Thu Mar 24 14:43:08 2011 +0100 2.13.90-8 -:100644 100644 9e664fa 9230a07 M .gitignore -:100644 100644 3cfb979 266dd66 M glibc-fedora.patch -:100644 100644 1f78ba5 f05a51a M glibc.spec -:100644 100644 89baf5c 32abae3 M sources +:100644 100644 9e664fac 9230a07b M .gitignore +:100644 100644 3cfb9791 266dd66a M glibc-fedora.patch +:100644 100644 1f78ba53 f05a51ab M glibc.spec +:100644 100644 89baf5cb 32abae36 M sources commit 5d12cdce1ac1250f33b6e7e71cef89a5688460d9 Author: Andreas Schwab @@ -26620,10 +26740,10 @@ CommitDate: Mon Mar 21 16:34:52 2011 +0100 2.13.90-7 -:100644 100644 7536b31 9e664fa M .gitignore -:100644 100644 ee11fb5 3cfb979 M glibc-fedora.patch -:100644 100644 8361084 1f78ba5 M glibc.spec -:100644 100644 2964f70 89baf5c M sources +:100644 100644 7536b313 9e664fac M .gitignore +:100644 100644 ee11fb54 3cfb9791 M glibc-fedora.patch +:100644 100644 83610843 1f78ba53 M glibc.spec +:100644 100644 2964f70d 89baf5cb M sources commit 3b880a91756a4b172dbec44ecc8bc98ad6c82020 Author: Andreas Schwab @@ -26633,10 +26753,10 @@ CommitDate: Mon Mar 7 17:50:04 2011 +0100 2.13.90-6 -:100644 100644 138090e 7536b31 M .gitignore -:100644 100644 fb18eb1 ee11fb5 M glibc-fedora.patch -:100644 100644 fd3306a 8361084 M glibc.spec -:100644 100644 a2f7ffb 2964f70 M sources +:100644 100644 138090e9 7536b313 M .gitignore +:100644 100644 fb18eb10 ee11fb54 M glibc-fedora.patch +:100644 100644 fd3306aa 83610843 M glibc.spec +:100644 100644 a2f7ffb3 2964f70d M sources commit cd1b6b27e1769c54e03fb64ff6698d67cf616a63 Author: Andreas Schwab @@ -26646,10 +26766,10 @@ CommitDate: Wed Mar 2 17:28:13 2011 +0100 2.13.90-5 -:100644 100644 499f3e2 138090e M .gitignore -:100644 100644 1eee646 fb18eb1 M glibc-fedora.patch -:100644 100644 a5b41e7 fd3306a M glibc.spec -:100644 100644 7f34c66 a2f7ffb M sources +:100644 100644 499f3e28 138090e9 M .gitignore +:100644 100644 1eee6467 fb18eb10 M glibc-fedora.patch +:100644 100644 a5b41e7d fd3306aa M glibc.spec +:100644 100644 7f34c660 a2f7ffb3 M sources commit 87a7e49934b45b867029d8c843ce7e7f1a5c1d4c Author: Andreas Schwab @@ -26659,11 +26779,11 @@ CommitDate: Tue Feb 15 14:29:18 2011 +0100 2.13.90-4 -:100644 100644 40d3687 499f3e2 M .gitignore -:100644 100644 c978701 1eee646 M glibc-fedora.patch -:100644 000000 67cf0da 0000000 D glibc-nopl.patch -:100644 100644 75db71b a5b41e7 M glibc.spec -:100644 100644 8fafd7a 7f34c66 M sources +:100644 100644 40d36875 499f3e28 M .gitignore +:100644 100644 c9787016 1eee6467 M glibc-fedora.patch +:100644 000000 67cf0da0 00000000 D glibc-nopl.patch +:100644 100644 75db71b1 a5b41e7d M glibc.spec +:100644 100644 8fafd7ad 7f34c660 M sources commit 8add80c634bad05d0784ef5f3eaa91b3ee1dab47 Author: Dennis Gilmore @@ -26673,7 +26793,7 @@ CommitDate: Tue Feb 8 20:29:19 2011 -0600 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild -:100644 100644 6e60848 75db71b M glibc.spec +:100644 100644 6e60848d 75db71b1 M glibc.spec commit a896d65b934743e06abd3923db0b6f1037a4a1e7 Author: Dennis Gilmore @@ -26683,7 +26803,7 @@ CommitDate: Mon Feb 7 12:04:17 2011 -0600 actually add the patch -:000000 100644 0000000 67cf0da A glibc-nopl.patch +:000000 100644 00000000 67cf0da0 A glibc-nopl.patch commit 8ef6d2e4519bae07ddcecd845c90f47730e7b368 Author: Dennis Gilmore @@ -26694,7 +26814,7 @@ CommitDate: Mon Feb 7 12:03:19 2011 -0600 * Mon Feb 7 2011 Jan Kratochvil - 2.13.90-2 - Put back the assembler "workaround" - to disable the nopl instruction. -:100644 100644 ce18382 6e60848 M glibc.spec +:100644 100644 ce18382f 6e60848d M glibc.spec commit 3558758764e4e49e358a9da5c1de887f556f4b7f Author: Andreas Schwab @@ -26704,13 +26824,13 @@ CommitDate: Tue Jan 25 12:34:04 2011 +0100 2.13.90-1 -:100644 100644 fa75199 40d3687 M .gitignore -:100644 100644 5d66794 c978701 M glibc-fedora.patch -:100644 100644 b7b710f ce18382 M glibc.spec -:100644 100644 1df768f 8fafd7a M sources +:100644 100644 fa751998 40d36875 M .gitignore +:100644 100644 5d667941 c9787016 M glibc-fedora.patch +:100644 100644 b7b710f8 ce18382f M glibc.spec +:100644 100644 1df768ff 8fafd7ad M sources commit e89d95d2810438fd9ae30cad23ed1efcb8e17f40 -Merge: 31930d2 469e4b1 +Merge: 31930d27 469e4b1e Author: Andreas Schwab AuthorDate: Tue Jan 25 12:31:02 2011 +0100 Commit: Andreas Schwab @@ -26718,10 +26838,10 @@ CommitDate: Tue Jan 25 12:31:02 2011 +0100 Merge branch 'f14/master' -:100644 100644 2289bb9 fa75199 M .gitignore -:100644 100644 37814f6 5d66794 M glibc-fedora.patch -:100644 100644 55d65d6 b7b710f M glibc.spec -:100644 100644 5d0e2ac 1df768f M sources +:100644 100644 2289bb93 fa751998 M .gitignore +:100644 100644 37814f67 5d667941 M glibc-fedora.patch +:100644 100644 55d65d6d b7b710f8 M glibc.spec +:100644 100644 5d0e2ac3 1df768ff M sources commit 31930d27ab1942f10f295f9022f84e3e52b021f7 Author: Dennis Gilmore @@ -26731,7 +26851,7 @@ CommitDate: Tue Dec 21 13:03:16 2010 -0600 add disttag and rebuild for rawhide -:100644 100644 024a0d1 55d65d6 M glibc.spec +:100644 100644 024a0d1f 55d65d6d M glibc.spec commit a1faa0a0a8667e18e072f7a913976762ccf7fee6 Author: Andreas Schwab @@ -26741,9 +26861,9 @@ CommitDate: Tue Dec 14 17:22:16 2010 +0100 2.12.90-21 -:100644 100644 7b68f0b 37814f6 M glibc-fedora.patch -:100644 100644 c3cb94f 024a0d1 M glibc.spec -:100644 100644 6d12481 5d0e2ac M sources +:100644 100644 7b68f0b8 37814f67 M glibc-fedora.patch +:100644 100644 c3cb94f7 024a0d1f M glibc.spec +:100644 100644 6d124815 5d0e2ac3 M sources commit 7dc6703b310b67923ddc2abd2be31e2871c737d2 Author: Andreas Schwab @@ -26753,11 +26873,11 @@ CommitDate: Mon Dec 13 17:58:18 2010 +0100 2.12.90-20 -:100644 100644 9ace04d 2289bb9 M .gitignore -:100644 100644 910ae7f 7b68f0b M glibc-fedora.patch -:100644 000000 05876e0 0000000 D glibc-s390.patch -:100644 100644 a9defad c3cb94f M glibc.spec -:100644 100644 7353fd1 6d12481 M sources +:100644 100644 9ace04db 2289bb93 M .gitignore +:100644 100644 910ae7f1 7b68f0b8 M glibc-fedora.patch +:100644 000000 05876e0d 00000000 D glibc-s390.patch +:100644 100644 a9defade c3cb94f7 M glibc.spec +:100644 100644 7353fd13 6d124815 M sources commit f0a4b537056a49e7ab83c890f9e1bb16f8a5cdea Author: Dan Horák @@ -26767,8 +26887,8 @@ CommitDate: Mon Nov 15 14:48:05 2010 +0100 fix build on s390(x) -:000000 100644 0000000 05876e0 A glibc-s390.patch -:100644 100644 f07a195 a9defad M glibc.spec +:000000 100644 00000000 05876e0d A glibc-s390.patch +:100644 100644 f07a195b a9defade M glibc.spec commit 96033044f8efa70532543b2c227f76ccb50a318b Author: Andreas Schwab @@ -26778,10 +26898,10 @@ CommitDate: Fri Nov 12 13:29:24 2010 +0100 2.12.90-19 -:100644 100644 9463719 9ace04d M .gitignore -:100644 100644 42ceb06 910ae7f M glibc-fedora.patch -:100644 100644 6f3a5d2 f07a195 M glibc.spec -:100644 100644 65a68ef 7353fd1 M sources +:100644 100644 9463719d 9ace04db M .gitignore +:100644 100644 42ceb06c 910ae7f1 M glibc-fedora.patch +:100644 100644 6f3a5d2c f07a195b M glibc.spec +:100644 100644 65a68ef5 7353fd13 M sources commit 85da696179e4303be27dabf7a020fec73da76426 Author: Andreas Schwab @@ -26791,9 +26911,9 @@ CommitDate: Fri Oct 22 19:10:34 2010 +0200 2.12.90-18 -:100644 100644 c28ea7f 42ceb06 M glibc-fedora.patch -:100644 100644 0142c22 6f3a5d2 M glibc.spec -:100644 100644 0b50560 65a68ef M sources +:100644 100644 c28ea7f0 42ceb06c M glibc-fedora.patch +:100644 100644 0142c22f 6f3a5d2c M glibc.spec +:100644 100644 0b50560b 65a68ef5 M sources commit 8d5389e12f8140a83d7d4ea97beb6fe68fbde928 Author: Andreas Schwab @@ -26803,10 +26923,10 @@ CommitDate: Tue Oct 19 11:49:21 2010 +0200 2.12.90-17 -:100644 100644 94cd92a 9463719 M .gitignore -:100644 100644 5443322 c28ea7f M glibc-fedora.patch -:100644 100644 0d410c7 0142c22 M glibc.spec -:100644 100644 bfff590 0b50560 M sources +:100644 100644 94cd92a1 9463719d M .gitignore +:100644 100644 54433225 c28ea7f0 M glibc-fedora.patch +:100644 100644 0d410c70 0142c22f M glibc.spec +:100644 100644 bfff590a 0b50560b M sources commit d047b379abf107f503380776e17ee6fd4f6ca83f Author: Andreas Schwab @@ -26816,10 +26936,10 @@ CommitDate: Thu Oct 14 12:30:32 2010 +0200 2.12.90-16 -:100644 100644 54eafbe 94cd92a M .gitignore -:100644 100644 d417495 5443322 M glibc-fedora.patch -:100644 100644 082511c 0d410c7 M glibc.spec -:100644 100644 1e61f6c bfff590 M sources +:100644 100644 54eafbef 94cd92a1 M .gitignore +:100644 100644 d4174951 54433225 M glibc-fedora.patch +:100644 100644 082511c7 0d410c70 M glibc.spec +:100644 100644 1e61f6c8 bfff590a M sources commit 7870b7800ae971749411238efe95e6aba6cc6992 Author: Andreas Schwab @@ -26829,10 +26949,10 @@ CommitDate: Mon Oct 4 13:27:15 2010 +0200 2.12.90-15 -:100644 100644 51a21ac 54eafbe M .gitignore -:100644 100644 c3cdb41 d417495 M glibc-fedora.patch -:100644 100644 51e95fd 082511c M glibc.spec -:100644 100644 726b6d0 1e61f6c M sources +:100644 100644 51a21ac0 54eafbef M .gitignore +:100644 100644 c3cdb412 d4174951 M glibc-fedora.patch +:100644 100644 51e95fdc 082511c7 M glibc.spec +:100644 100644 726b6d03 1e61f6c8 M sources commit ebd7654e99c6e40c8121c8272e5d9ddd04f4d928 Author: Andreas Schwab @@ -26842,9 +26962,9 @@ CommitDate: Tue Sep 28 15:19:46 2010 +0200 2.12.90-14 -:100644 100644 59bb166 c3cdb41 M glibc-fedora.patch -:100644 100644 3e4a2b6 51e95fd M glibc.spec -:100644 100644 d3b246e 726b6d0 M sources +:100644 100644 59bb1667 c3cdb412 M glibc-fedora.patch +:100644 100644 3e4a2b68 51e95fdc M glibc.spec +:100644 100644 d3b246e9 726b6d03 M sources commit 26ee51a75764602585725a993236054ef65887c2 Author: Andreas Schwab @@ -26854,10 +26974,10 @@ CommitDate: Mon Sep 27 16:48:52 2010 +0200 2.12.90-13 -:100644 100644 00400bc 51a21ac M .gitignore -:100644 100644 7f887cc 59bb166 M glibc-fedora.patch -:100644 100644 583ce30 3e4a2b6 M glibc.spec -:100644 100644 a2b6940 d3b246e M sources +:100644 100644 00400bc1 51a21ac0 M .gitignore +:100644 100644 7f887cca 59bb1667 M glibc-fedora.patch +:100644 100644 583ce30c 3e4a2b68 M glibc.spec +:100644 100644 a2b69400 d3b246e9 M sources commit c1407c8a92efb6b3d56177f8259810819a54a974 Author: Dennis Gilmore @@ -26868,7 +26988,7 @@ CommitDate: Wed Sep 15 22:30:56 2010 -0500 2.12.90-12 Dont build sparcv9v and sparc64v -:100644 100644 44432f2 583ce30 M glibc.spec +:100644 100644 44432f25 583ce30c M glibc.spec commit 86a027c0b5d724b88967b257a9f3aedffb5158d1 Author: Andreas Schwab @@ -26878,10 +26998,10 @@ CommitDate: Mon Sep 13 12:08:00 2010 +0200 2.12.90-11 -:100644 100644 bbffdc3 00400bc M .gitignore -:100644 100644 5dcb351 7f887cc M glibc-fedora.patch -:100644 100644 ce1abb8 44432f2 M glibc.spec -:100644 100644 a281238 a2b6940 M sources +:100644 100644 bbffdc36 00400bc1 M .gitignore +:100644 100644 5dcb351f 7f887cca M glibc-fedora.patch +:100644 100644 ce1abb83 44432f25 M glibc.spec +:100644 100644 a2812380 a2b69400 M sources commit 2fa87bec412274b72df198599812fc724b836cf1 Author: Andreas Schwab @@ -26891,10 +27011,10 @@ CommitDate: Mon Sep 6 16:40:34 2010 +0200 2.12.90-10 -:100644 100644 2cce3ef bbffdc3 M .gitignore -:100644 100644 d05c8b2 5dcb351 M glibc-fedora.patch -:100644 100644 786553a ce1abb8 M glibc.spec -:100644 100644 0ab2f4b a281238 M sources +:100644 100644 2cce3ef8 bbffdc36 M .gitignore +:100644 100644 d05c8b22 5dcb351f M glibc-fedora.patch +:100644 100644 786553ae ce1abb83 M glibc.spec +:100644 100644 0ab2f4b5 a2812380 M sources commit 4ce712cc2936877f17f3a29edd493e448fc8c232 Author: Dennis Gilmore @@ -26904,7 +27024,7 @@ CommitDate: Sat Sep 4 11:23:28 2010 -0500 fix up typo -:100644 100644 a21549c 786553a M glibc.spec +:100644 100644 a21549cf 786553ae M glibc.spec commit 7be0ed9170c1d425e0af0a3490f501325f604a05 Author: Dennis Gilmore @@ -26914,7 +27034,7 @@ CommitDate: Sat Sep 4 09:14:33 2010 -0500 disable unpackged file check on aux arches -:100644 100644 7ea4caf a21549c M glibc.spec +:100644 100644 7ea4caf2 a21549cf M glibc.spec commit 20e565a20a1bc5a7f92befd1015a211c783715b8 Author: Andreas Schwab @@ -26924,10 +27044,10 @@ CommitDate: Mon Aug 23 14:09:35 2010 +0200 2.12.90-8 -:100644 100644 e2907ec 2cce3ef M .gitignore -:100644 100644 bc98f04 d05c8b2 M glibc-fedora.patch -:100644 100644 95d3389 7ea4caf M glibc.spec -:100644 100644 d16d53f 0ab2f4b M sources +:100644 100644 e2907ec8 2cce3ef8 M .gitignore +:100644 100644 bc98f045 d05c8b22 M glibc-fedora.patch +:100644 100644 95d33894 7ea4caf2 M glibc.spec +:100644 100644 d16d53f6 0ab2f4b5 M sources commit 98c76af435af70c9aa5e93fe19720a709711fd6e Author: Andreas Schwab @@ -26937,10 +27057,10 @@ CommitDate: Mon Aug 2 14:18:20 2010 +0200 2.12.90-7 -:100644 100644 9e04612 e2907ec M .gitignore -:100644 100644 482db22 bc98f04 M glibc-fedora.patch -:100644 100644 087e33d 95d3389 M glibc.spec -:100644 100644 e73d3b0 d16d53f M sources +:100644 100644 9e046129 e2907ec8 M .gitignore +:100644 100644 482db228 bc98f045 M glibc-fedora.patch +:100644 100644 087e33df 95d33894 M glibc.spec +:100644 100644 e73d3b01 d16d53f6 M sources commit 213bb0f3b347d47d2559922db39b552fd781d014 Author: Fedora Release Engineering @@ -26950,10 +27070,10 @@ CommitDate: Wed Jul 28 15:50:43 2010 +0000 dist-git conversion -:100644 000000 9e04612 0000000 D .cvsignore -:000000 100644 0000000 9e04612 A .gitignore -:100644 000000 a7dda69 0000000 D Makefile -:100644 000000 c5b0b13 0000000 D import.log +:100644 000000 9e046129 00000000 D .cvsignore +:000000 100644 00000000 9e046129 A .gitignore +:100644 000000 a7dda694 00000000 D Makefile +:100644 000000 c5b0b131 00000000 D import.log commit 808dafc80ec4980166838ad8d04a59af1647d371 Author: Andreas Schwab @@ -26963,11 +27083,11 @@ CommitDate: Wed Jul 21 15:08:07 2010 +0000 2.12.90-6 -:100644 100644 a028f23 9e04612 M .cvsignore -:100644 100644 8f57c62 482db22 M glibc-fedora.patch -:100644 100644 8047359 087e33d M glibc.spec -:100644 100644 baed58e c5b0b13 M import.log -:100644 100644 4c67676 e73d3b0 M sources +:100644 100644 a028f235 9e046129 M .cvsignore +:100644 100644 8f57c629 482db228 M glibc-fedora.patch +:100644 100644 80473590 087e33df M glibc.spec +:100644 100644 baed58e5 c5b0b131 M import.log +:100644 100644 4c676768 e73d3b01 M sources commit 68ea17c494c15d90146d478c5228c7b9a34a868c Author: Andreas Schwab @@ -26977,11 +27097,11 @@ CommitDate: Mon Jul 12 11:40:50 2010 +0000 2.12.90-5 -:100644 100644 5b47910 a028f23 M .cvsignore -:100644 100644 4d0e0cc 8f57c62 M glibc-fedora.patch -:100644 100644 caeea46 8047359 M glibc.spec -:100644 100644 cb4d02d baed58e M import.log -:100644 100644 77a16e6 4c67676 M sources +:100644 100644 5b479104 a028f235 M .cvsignore +:100644 100644 4d0e0ccb 8f57c629 M glibc-fedora.patch +:100644 100644 caeea46e 80473590 M glibc.spec +:100644 100644 cb4d02de baed58e5 M import.log +:100644 100644 77a16e6a 4c676768 M sources commit da9d145bdd7e66ed1561f3beaa16a935003995e3 Author: Andreas Schwab @@ -26991,11 +27111,11 @@ CommitDate: Fri Jul 2 12:42:07 2010 +0000 2.12.90-4 -:100644 100644 84a8a42 5b47910 M .cvsignore -:100644 100644 30e0fc1 4d0e0cc M glibc-fedora.patch -:100644 100644 1f3520f caeea46 M glibc.spec -:100644 100644 7c142dc cb4d02d M import.log -:100644 100644 21ee946 77a16e6 M sources +:100644 100644 84a8a427 5b479104 M .cvsignore +:100644 100644 30e0fc1e 4d0e0ccb M glibc-fedora.patch +:100644 100644 1f3520f6 caeea46e M glibc.spec +:100644 100644 7c142dc6 cb4d02de M import.log +:100644 100644 21ee9469 77a16e6a M sources commit 809a543e61e5c0bd738fc7e828086e6d1c825a8f Author: Andreas Schwab @@ -27005,11 +27125,11 @@ CommitDate: Tue Jun 15 08:43:24 2010 +0000 2.12.90-3 -:100644 100644 1c42d0c 84a8a42 M .cvsignore -:100644 100644 15c694c 30e0fc1 M glibc-fedora.patch -:100644 100644 9d64d2c 1f3520f M glibc.spec -:100644 100644 707da51 7c142dc M import.log -:100644 100644 f9ebf8b 21ee946 M sources +:100644 100644 1c42d0ca 84a8a427 M .cvsignore +:100644 100644 15c694c3 30e0fc1e M glibc-fedora.patch +:100644 100644 9d64d2cb 1f3520f6 M glibc.spec +:100644 100644 707da519 7c142dc6 M import.log +:100644 100644 f9ebf8b0 21ee9469 M sources commit 08541d983ef0bb6b641fc698e2a5064212d472e1 Author: Andreas Schwab @@ -27019,11 +27139,11 @@ CommitDate: Mon May 31 15:10:22 2010 +0000 2.12.90-2 -:100644 100644 42efde5 1c42d0c M .cvsignore -:100644 100644 3364227 15c694c M glibc-fedora.patch -:100644 100644 291ac5c 9d64d2c M glibc.spec -:100644 100644 0e2061b 707da51 M import.log -:100644 100644 dda797a f9ebf8b M sources +:100644 100644 42efde5d 1c42d0ca M .cvsignore +:100644 100644 3364227b 15c694c3 M glibc-fedora.patch +:100644 100644 291ac5ce 9d64d2cb M glibc.spec +:100644 100644 0e2061b5 707da519 M import.log +:100644 100644 dda797aa f9ebf8b0 M sources commit 976b178b6d662a99d4b2a2c9ae7bcbc413cc303e Author: Andreas Schwab @@ -27033,11 +27153,11 @@ CommitDate: Wed May 19 12:00:46 2010 +0000 2.12.90-1 -:100644 100644 e52bea3 42efde5 M .cvsignore -:100644 100644 401e40e 3364227 M glibc-fedora.patch -:100644 100644 80909c5 291ac5c M glibc.spec -:100644 100644 a80fa61 0e2061b M import.log -:100644 100644 1feb156 dda797a M sources +:100644 100644 e52bea3c 42efde5d M .cvsignore +:100644 100644 401e40eb 3364227b M glibc-fedora.patch +:100644 100644 80909c5d 291ac5ce M glibc.spec +:100644 100644 a80fa618 0e2061b5 M import.log +:100644 100644 1feb156f dda797aa M sources commit f3e82c414e51311321dd63b468ca4cfeaae72d1a Author: Andreas Schwab @@ -27047,11 +27167,11 @@ CommitDate: Mon Feb 8 15:32:13 2010 +0000 2.11.90-12 -:100644 100644 4011c62 e52bea3 M .cvsignore -:100644 100644 5327ff5 401e40e M glibc-fedora.patch -:100644 100644 c6bbefc 80909c5 M glibc.spec -:100644 100644 602bf33 a80fa61 M import.log -:100644 100644 67751a4 1feb156 M sources +:100644 100644 4011c62f e52bea3c M .cvsignore +:100644 100644 5327ff5a 401e40eb M glibc-fedora.patch +:100644 100644 c6bbefcf 80909c5d M glibc.spec +:100644 100644 602bf33c a80fa618 M import.log +:100644 100644 67751a4c 1feb156f M sources commit 3b8ebb3a56671e20f5c98c7d216040593e8d58b5 Author: Andreas Schwab @@ -27061,11 +27181,11 @@ CommitDate: Mon Feb 1 14:02:57 2010 +0000 2.11.90-11 -:100644 100644 5924c2d 4011c62 M .cvsignore -:100644 100644 a6a66c6 5327ff5 M glibc-fedora.patch -:100644 100644 8a723cd c6bbefc M glibc.spec -:100644 100644 24edf04 602bf33 M import.log -:100644 100644 eebce53 67751a4 M sources +:100644 100644 5924c2d2 4011c62f M .cvsignore +:100644 100644 a6a66c63 5327ff5a M glibc-fedora.patch +:100644 100644 8a723cdf c6bbefcf M glibc.spec +:100644 100644 24edf046 602bf33c M import.log +:100644 100644 eebce531 67751a4c M sources commit c1875bb985445c5d66b995dadd85a5748c8328cd Author: Andreas Schwab @@ -27075,11 +27195,11 @@ CommitDate: Wed Jan 20 16:50:57 2010 +0000 2.11.90-10 -:100644 100644 3b200aa 5924c2d M .cvsignore -:100644 100644 b5b7b96 a6a66c6 M glibc-fedora.patch -:100644 100644 e34ce8e 8a723cd M glibc.spec -:100644 100644 be14016 24edf04 M import.log -:100644 100644 c550753 eebce53 M sources +:100644 100644 3b200aaa 5924c2d2 M .cvsignore +:100644 100644 b5b7b96c a6a66c63 M glibc-fedora.patch +:100644 100644 e34ce8ea 8a723cdf M glibc.spec +:100644 100644 be14016f 24edf046 M import.log +:100644 100644 c5507532 eebce531 M sources commit 071e3f49dd334ea2a0ffa6ffc991d4d4850be3db Author: Andreas Schwab @@ -27089,11 +27209,11 @@ CommitDate: Fri Jan 15 11:59:53 2010 +0000 2.11.90-9 -:100644 100644 30f88c4 3b200aa M .cvsignore -:100644 100644 ffb35ac b5b7b96 M glibc-fedora.patch -:100644 100644 db9907e e34ce8e M glibc.spec -:100644 100644 97b790a be14016 M import.log -:100644 100644 c11b92b c550753 M sources +:100644 100644 30f88c45 3b200aaa M .cvsignore +:100644 100644 ffb35aca b5b7b96c M glibc-fedora.patch +:100644 100644 db9907e4 e34ce8ea M glibc.spec +:100644 100644 97b790a8 be14016f M import.log +:100644 100644 c11b92b9 c5507532 M sources commit e55a010d5b33aa8a3d8122ab15038746f37cf4a1 Author: Andreas Schwab @@ -27103,11 +27223,11 @@ CommitDate: Tue Jan 12 16:32:14 2010 +0000 2.11.90-8 -:100644 100644 d4671ea 30f88c4 M .cvsignore -:100644 100644 b346b1c ffb35ac M glibc-fedora.patch -:100644 100644 7cd8c5b db9907e M glibc.spec -:100644 100644 88b5f2c 97b790a M import.log -:100644 100644 2208ed8 c11b92b M sources +:100644 100644 d4671ea7 30f88c45 M .cvsignore +:100644 100644 b346b1c6 ffb35aca M glibc-fedora.patch +:100644 100644 7cd8c5b5 db9907e4 M glibc.spec +:100644 100644 88b5f2c1 97b790a8 M import.log +:100644 100644 2208ed8f c11b92b9 M sources commit 930f8bac493a16ef74b11d1708878c91d178f779 Author: Andreas Schwab @@ -27117,11 +27237,11 @@ CommitDate: Mon Jan 11 15:35:32 2010 +0000 2.11.90-7 -:100644 100644 10abe85 d4671ea M .cvsignore -:100644 100644 ffdcfe3 b346b1c M glibc-fedora.patch -:100644 100644 086da04 7cd8c5b M glibc.spec -:100644 100644 3f317fe 88b5f2c M import.log -:100644 100644 d87ca89 2208ed8 M sources +:100644 100644 10abe853 d4671ea7 M .cvsignore +:100644 100644 ffdcfe39 b346b1c6 M glibc-fedora.patch +:100644 100644 086da045 7cd8c5b5 M glibc.spec +:100644 100644 3f317fe4 88b5f2c1 M import.log +:100644 100644 d87ca897 2208ed8f M sources commit e7298f2636e09c95f0f809b2049215c6db12daab Author: Andreas Schwab @@ -27131,11 +27251,11 @@ CommitDate: Mon Jan 11 09:49:54 2010 +0000 2.11.90-6 -:100644 100644 92d881f 10abe85 M .cvsignore -:100644 100644 dd060ce ffdcfe3 M glibc-fedora.patch -:100644 100644 112c59c 086da04 M glibc.spec -:100644 100644 e942839 3f317fe M import.log -:100644 100644 e418900 d87ca89 M sources +:100644 100644 92d881ff 10abe853 M .cvsignore +:100644 100644 dd060ce6 ffdcfe39 M glibc-fedora.patch +:100644 100644 112c59c9 086da045 M glibc.spec +:100644 100644 e9428396 3f317fe4 M import.log +:100644 100644 e418900a d87ca897 M sources commit 372c18b6eaa2ff0c8246c0a11f1a620a7a402c18 Author: Andreas Schwab @@ -27145,11 +27265,11 @@ CommitDate: Mon Jan 4 14:04:06 2010 +0000 2.11.90-5 -:100644 100644 b31b587 92d881f M .cvsignore -:100644 100644 77f0ccc dd060ce M glibc-fedora.patch -:100644 100644 996dd9a 112c59c M glibc.spec -:100644 100644 b9e7ae7 e942839 M import.log -:100644 100644 3ca120c e418900 M sources +:100644 100644 b31b587a 92d881ff M .cvsignore +:100644 100644 77f0ccc5 dd060ce6 M glibc-fedora.patch +:100644 100644 996dd9ac 112c59c9 M glibc.spec +:100644 100644 b9e7ae73 e9428396 M import.log +:100644 100644 3ca120c7 e418900a M sources commit 7f8824b06198e1e943b0acfed337331a186c692a Author: Andreas Schwab @@ -27159,11 +27279,11 @@ CommitDate: Mon Dec 14 16:39:29 2009 +0000 2.11.90-4 -:100644 100644 048774e b31b587 M .cvsignore -:100644 100644 ac74eda 77f0ccc M glibc-fedora.patch -:100644 100644 bfaabde 996dd9a M glibc.spec -:100644 100644 0a47026 b9e7ae7 M import.log -:100644 100644 43d5d68 3ca120c M sources +:100644 100644 048774e4 b31b587a M .cvsignore +:100644 100644 ac74eda0 77f0ccc5 M glibc-fedora.patch +:100644 100644 bfaabdeb 996dd9ac M glibc.spec +:100644 100644 0a470263 b9e7ae73 M import.log +:100644 100644 43d5d681 3ca120c7 M sources commit 29fd49d204fdb52106025c568c571ab17ea3133a Author: Andreas Schwab @@ -27173,11 +27293,11 @@ CommitDate: Mon Nov 30 14:16:32 2009 +0000 2.11.90-3 -:100644 100644 8d67de6 048774e M .cvsignore -:100644 100644 b243e0e ac74eda M glibc-fedora.patch -:100644 100644 6770f2a bfaabde M glibc.spec -:100644 100644 7f886b3 0a47026 M import.log -:100644 100644 22a55ac 43d5d68 M sources +:100644 100644 8d67de6d 048774e4 M .cvsignore +:100644 100644 b243e0e3 ac74eda0 M glibc-fedora.patch +:100644 100644 6770f2a4 bfaabdeb M glibc.spec +:100644 100644 7f886b38 0a470263 M import.log +:100644 100644 22a55ac5 43d5d681 M sources commit edc9c2bed794e9e3ab30c8d4f050ca8e68bca7b4 Author: Bill Nottingham @@ -27188,7 +27308,7 @@ CommitDate: Wed Nov 25 23:19:29 2009 +0000 Fix typo that causes a failure to update the common directory. (releng #2781) -:100644 100644 8056e01 a7dda69 M Makefile +:100644 100644 8056e016 a7dda694 M Makefile commit 2c5bbbe6d5e29f8fdca4c63a0535addbfe119558 Author: Andreas Schwab @@ -27198,11 +27318,11 @@ CommitDate: Tue Nov 24 15:50:44 2009 +0000 2.11.90-2 -:100644 100644 319610e 8d67de6 M .cvsignore -:100644 100644 a996cc6 b243e0e M glibc-fedora.patch -:100644 100644 fd4bcf4 6770f2a M glibc.spec -:100644 100644 918e0d4 7f886b3 M import.log -:100644 100644 59dc4da 22a55ac M sources +:100644 100644 319610ec 8d67de6d M .cvsignore +:100644 100644 a996cc60 b243e0e3 M glibc-fedora.patch +:100644 100644 fd4bcf41 6770f2a4 M glibc.spec +:100644 100644 918e0d4a 7f886b38 M import.log +:100644 100644 59dc4da2 22a55ac5 M sources commit 6c0e600a935a7f1a5a23b4186dc269eca8cbde6d Author: Andreas Schwab @@ -27212,11 +27332,11 @@ CommitDate: Thu Nov 12 17:51:25 2009 +0000 2.11.90-1 -:100644 100644 e94ea06 319610e M .cvsignore -:100644 100644 920da25 a996cc6 M glibc-fedora.patch -:100644 100644 f9085b1 fd4bcf4 M glibc.spec -:100644 100644 86825f6 918e0d4 M import.log -:100644 100644 09f491e 59dc4da M sources +:100644 100644 e94ea068 319610ec M .cvsignore +:100644 100644 920da25a a996cc60 M glibc-fedora.patch +:100644 100644 f9085b15 fd4bcf41 M glibc.spec +:100644 100644 86825f64 918e0d4a M import.log +:100644 100644 09f491e2 59dc4da2 M sources commit d1a379ba7a26fb0d478622d3dae094470226dc7c Author: Andreas Schwab @@ -27226,11 +27346,11 @@ CommitDate: Mon Sep 28 12:31:33 2009 +0000 2.10.90-24 -:100644 100644 ae3de63 e94ea06 M .cvsignore -:100644 100644 19755a0 920da25 M glibc-fedora.patch -:100644 100644 7515477 f9085b1 M glibc.spec -:100644 100644 b8d0ec2 86825f6 M import.log -:100644 100644 07617f9 09f491e M sources +:100644 100644 ae3de636 e94ea068 M .cvsignore +:100644 100644 19755a06 920da25a M glibc-fedora.patch +:100644 100644 7515477e f9085b15 M glibc.spec +:100644 100644 b8d0ec26 86825f64 M import.log +:100644 100644 07617f9c 09f491e2 M sources commit 91d8fccb67a9a7831387e1dd76a5495f566ba267 Author: Andreas Schwab @@ -27240,11 +27360,11 @@ CommitDate: Mon Sep 21 10:39:33 2009 +0000 2.10.90-23 -:100644 100644 471339a ae3de63 M .cvsignore -:100644 100644 17c8d1c 19755a0 M glibc-fedora.patch -:100644 100644 c26c33b 7515477 M glibc.spec -:100644 100644 c84b820 b8d0ec2 M import.log -:100644 100644 b8cfeba 07617f9 M sources +:100644 100644 471339af ae3de636 M .cvsignore +:100644 100644 17c8d1c3 19755a06 M glibc-fedora.patch +:100644 100644 c26c33b0 7515477e M glibc.spec +:100644 100644 c84b8208 b8d0ec26 M import.log +:100644 100644 b8cfeba0 07617f9c M sources commit 26aeed088c84e61d3590a15ce1eec3cdd5b27b2a Author: Andreas Schwab @@ -27254,11 +27374,11 @@ CommitDate: Mon Sep 14 12:23:30 2009 +0000 2.10.90-22 -:100644 100644 bf03e60 471339a M .cvsignore -:100644 100644 d3f0e50 17c8d1c M glibc-fedora.patch -:100644 100644 919e060 c26c33b M glibc.spec -:100644 100644 d42e229 c84b820 M import.log -:100644 100644 5596642 b8cfeba M sources +:100644 100644 bf03e600 471339af M .cvsignore +:100644 100644 d3f0e50b 17c8d1c3 M glibc-fedora.patch +:100644 100644 919e060f c26c33b0 M glibc.spec +:100644 100644 d42e229b c84b8208 M import.log +:100644 100644 55966425 b8cfeba0 M sources commit 7e2271ddcfbf2611c1c866647d07d13c88f49846 Author: Andreas Schwab @@ -27268,11 +27388,11 @@ CommitDate: Mon Sep 7 09:07:10 2009 +0000 2.10.90-21 -:100644 100644 70c81e6 bf03e60 M .cvsignore -:100644 100644 ea59c5e d3f0e50 M glibc-fedora.patch -:100644 100644 5580212 919e060 M glibc.spec -:100644 100644 4e6c578 d42e229 M import.log -:100644 100644 684cbbe 5596642 M sources +:100644 100644 70c81e63 bf03e600 M .cvsignore +:100644 100644 ea59c5e7 d3f0e50b M glibc-fedora.patch +:100644 100644 5580212b 919e060f M glibc.spec +:100644 100644 4e6c5786 d42e229b M import.log +:100644 100644 684cbbe6 55966425 M sources commit 569d2b2c6d300e9f7b0f94a38088020954735661 Author: Andreas Schwab @@ -27282,11 +27402,11 @@ CommitDate: Thu Sep 3 09:16:25 2009 +0000 2.10.90-20 -:100644 100644 1011e89 70c81e6 M .cvsignore -:100644 100644 95839f2 ea59c5e M glibc-fedora.patch -:100644 100644 ed22ef9 5580212 M glibc.spec -:100644 100644 a72439f 4e6c578 M import.log -:100644 100644 9d08fcc 684cbbe M sources +:100644 100644 1011e899 70c81e63 M .cvsignore +:100644 100644 95839f2d ea59c5e7 M glibc-fedora.patch +:100644 100644 ed22ef94 5580212b M glibc.spec +:100644 100644 a72439fc 4e6c5786 M import.log +:100644 100644 9d08fcc3 684cbbe6 M sources commit 9613e7eb547f351084e2afd9c4cbaac34145a5e5 Author: Andreas Schwab @@ -27296,11 +27416,11 @@ CommitDate: Wed Sep 2 11:28:29 2009 +0000 2.10.90-19 -:100644 100644 c739361 1011e89 M .cvsignore -:100644 100644 3474b4f 95839f2 M glibc-fedora.patch -:100644 100644 dc2cf86 ed22ef9 M glibc.spec -:100644 100644 a5b0d6a a72439f M import.log -:100644 100644 f56f20a 9d08fcc M sources +:100644 100644 c739361d 1011e899 M .cvsignore +:100644 100644 3474b4fa 95839f2d M glibc-fedora.patch +:100644 100644 dc2cf86d ed22ef94 M glibc.spec +:100644 100644 a5b0d6a7 a72439fc M import.log +:100644 100644 f56f20a3 9d08fcc3 M sources commit f81c27d40ac791878c72c9ccf9f6e715a90e188b Author: Andreas Schwab @@ -27310,11 +27430,11 @@ CommitDate: Tue Sep 1 11:03:11 2009 +0000 2.10.90-18 -:100644 100644 78329ae c739361 M .cvsignore -:100644 100644 f8a0f4b 3474b4f M glibc-fedora.patch -:100644 100644 d96a56f dc2cf86 M glibc.spec -:100644 100644 4fe49d5 a5b0d6a M import.log -:100644 100644 70f808e f56f20a M sources +:100644 100644 78329ae0 c739361d M .cvsignore +:100644 100644 f8a0f4b7 3474b4fa M glibc-fedora.patch +:100644 100644 d96a56f4 dc2cf86d M glibc.spec +:100644 100644 4fe49d5e a5b0d6a7 M import.log +:100644 100644 70f808e8 f56f20a3 M sources commit 79e4f027f9396ec7b1e714c43a8dd1cedf73cf31 Author: roland @@ -27324,11 +27444,11 @@ CommitDate: Thu Aug 27 21:02:58 2009 +0000 2.10.90-17 -:100644 100644 973829b 78329ae M .cvsignore -:100644 100644 70868cb f8a0f4b M glibc-fedora.patch -:100644 100644 227d200 d96a56f M glibc.spec -:100644 100644 01c891b 4fe49d5 M import.log -:100644 100644 a3d1881 70f808e M sources +:100644 100644 973829b0 78329ae0 M .cvsignore +:100644 100644 70868cb8 f8a0f4b7 M glibc-fedora.patch +:100644 100644 227d200a d96a56f4 M glibc.spec +:100644 100644 01c891bd 4fe49d5e M import.log +:100644 100644 a3d1881d 70f808e8 M sources commit b47019aa112c721278b1de46b6f4ba96b53a728c Author: Andreas Schwab @@ -27338,11 +27458,11 @@ CommitDate: Wed Aug 26 12:12:07 2009 +0000 2.10.90-16 -:100644 100644 7c7d0db 973829b M .cvsignore -:100644 100644 335abd7 70868cb M glibc-fedora.patch -:100644 100644 f2e9417 227d200 M glibc.spec -:100644 100644 262dfcf 01c891b M import.log -:100644 100644 149debf a3d1881 M sources +:100644 100644 7c7d0db5 973829b0 M .cvsignore +:100644 100644 335abd7d 70868cb8 M glibc-fedora.patch +:100644 100644 f2e94171 227d200a M glibc.spec +:100644 100644 262dfcf0 01c891bd M import.log +:100644 100644 149debf0 a3d1881d M sources commit 677ba77d501712c6507442ccecbc1d916faa185b Author: Andreas Schwab @@ -27352,11 +27472,11 @@ CommitDate: Mon Aug 24 09:22:26 2009 +0000 2.10.90-15 -:100644 100644 5dc8389 7c7d0db M .cvsignore -:100644 100644 2220fd8 335abd7 M glibc-fedora.patch -:100644 100644 8ac49d3 f2e9417 M glibc.spec -:100644 100644 28954c9 262dfcf M import.log -:100644 100644 dd7fb69 149debf M sources +:100644 100644 5dc8389e 7c7d0db5 M .cvsignore +:100644 100644 2220fd82 335abd7d M glibc-fedora.patch +:100644 100644 8ac49d33 f2e94171 M glibc.spec +:100644 100644 28954c99 262dfcf0 M import.log +:100644 100644 dd7fb69a 149debf0 M sources commit 860b0b0150bf4a56f3e6e9ddc9067935beaabb28 Author: Andreas Schwab @@ -27366,11 +27486,11 @@ CommitDate: Mon Aug 17 13:52:40 2009 +0000 2.10.90-14 -:100644 100644 48220d4 5dc8389 M .cvsignore -:100644 100644 7a4e239 2220fd8 M glibc-fedora.patch -:100644 100644 7c1f640 8ac49d3 M glibc.spec -:100644 100644 9ce4052 28954c9 M import.log -:100644 100644 277b775 dd7fb69 M sources +:100644 100644 48220d4c 5dc8389e M .cvsignore +:100644 100644 7a4e2394 2220fd82 M glibc-fedora.patch +:100644 100644 7c1f640b 8ac49d33 M glibc.spec +:100644 100644 9ce40529 28954c99 M import.log +:100644 100644 277b7756 dd7fb69a M sources commit 713def3ded46e018135a16892321fab4a4acbdac Author: Andreas Schwab @@ -27380,11 +27500,11 @@ CommitDate: Mon Aug 10 09:56:04 2009 +0000 2.10.90-13 -:100644 100644 c1eb263 48220d4 M .cvsignore -:100644 100644 b1048ce 7a4e239 M glibc-fedora.patch -:100644 100644 e14a727 7c1f640 M glibc.spec -:100644 100644 7d33d8c 9ce4052 M import.log -:100644 100644 39260e2 277b775 M sources +:100644 100644 c1eb2630 48220d4c M .cvsignore +:100644 100644 b1048ce0 7a4e2394 M glibc-fedora.patch +:100644 100644 e14a727e 7c1f640b M glibc.spec +:100644 100644 7d33d8c7 9ce40529 M import.log +:100644 100644 39260e24 277b7756 M sources commit c14f62b7ea3ae02f8659b0d3df467f3978494d50 Author: Andreas Schwab @@ -27394,11 +27514,11 @@ CommitDate: Mon Aug 3 12:10:21 2009 +0000 2.10.90-12 -:100644 100644 a227c7d c1eb263 M .cvsignore -:100644 100644 fc0990f b1048ce M glibc-fedora.patch -:100644 100644 c1600ed e14a727 M glibc.spec -:100644 100644 825b8ff 7d33d8c M import.log -:100644 100644 894ea4f 39260e2 M sources +:100644 100644 a227c7d3 c1eb2630 M .cvsignore +:100644 100644 fc0990f3 b1048ce0 M glibc-fedora.patch +:100644 100644 c1600edf e14a727e M glibc.spec +:100644 100644 825b8ff9 7d33d8c7 M import.log +:100644 100644 894ea4fc 39260e24 M sources commit 6843c2d92a546bd2f278fe9a1c601f95f82ffdfe Author: Andreas Schwab @@ -27408,11 +27528,11 @@ CommitDate: Thu Jul 30 13:39:12 2009 +0000 2.10.90-11 -:100644 100644 c350406 a227c7d M .cvsignore -:100644 100644 a95428f fc0990f M glibc-fedora.patch -:100644 100644 b2b2f35 c1600ed M glibc.spec -:100644 100644 eb81bc3 825b8ff M import.log -:100644 100644 aa01eb3 894ea4f M sources +:100644 100644 c350406b a227c7d3 M .cvsignore +:100644 100644 a95428f6 fc0990f3 M glibc-fedora.patch +:100644 100644 b2b2f351 c1600edf M glibc.spec +:100644 100644 eb81bc3d 825b8ff9 M import.log +:100644 100644 aa01eb34 894ea4fc M sources commit 0e925c16c29b4ea0f12ef4d1e4a96c0d72892d56 Author: Andreas Schwab @@ -27422,11 +27542,11 @@ CommitDate: Tue Jul 28 09:34:51 2009 +0000 2.10.90-10 -:100644 100644 2db505e c350406 M .cvsignore -:100644 100644 9083cb4 a95428f M glibc-fedora.patch -:100644 100644 6a4cb58 b2b2f35 M glibc.spec -:100644 100644 96c12d9 eb81bc3 M import.log -:100644 100644 ad3be7f aa01eb3 M sources +:100644 100644 2db505e3 c350406b M .cvsignore +:100644 100644 9083cb4a a95428f6 M glibc-fedora.patch +:100644 100644 6a4cb58c b2b2f351 M glibc.spec +:100644 100644 96c12d9a eb81bc3d M import.log +:100644 100644 ad3be7f7 aa01eb34 M sources commit 96d4f4139db936759fb78ed0133324d3549f0422 Author: Andreas Schwab @@ -27436,11 +27556,11 @@ CommitDate: Mon Jul 27 13:22:45 2009 +0000 2.10.90-9 -:100644 100644 06c3a33 2db505e M .cvsignore -:100644 100644 55a9120 9083cb4 M glibc-fedora.patch -:100644 100644 3b88dae 6a4cb58 M glibc.spec -:100644 100644 4723815 96c12d9 M import.log -:100644 100644 cd087e7 ad3be7f M sources +:100644 100644 06c3a332 2db505e3 M .cvsignore +:100644 100644 55a9120c 9083cb4a M glibc-fedora.patch +:100644 100644 3b88daed 6a4cb58c M glibc.spec +:100644 100644 47238154 96c12d9a M import.log +:100644 100644 cd087e70 ad3be7f7 M sources commit 8685553fbfd6b52f7e684e6cb38006cd5bd3614f Author: Jesse Keating @@ -27450,7 +27570,7 @@ CommitDate: Sat Jul 25 00:20:16 2009 +0000 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild -:100644 100644 8fa8bef 3b88dae M glibc.spec +:100644 100644 8fa8befb 3b88daed M glibc.spec commit f6841e069532dd259e10f11ba483365221c7b5e7 Author: Jakub Jelinek @@ -27460,8 +27580,8 @@ CommitDate: Thu Jul 23 23:57:27 2009 +0000 2.10.90-7.1 -:100644 100644 208b56c 55a9120 M glibc-fedora.patch -:100644 100644 146c8dc 8fa8bef M glibc.spec +:100644 100644 208b56cb 55a9120c M glibc-fedora.patch +:100644 100644 146c8dce 8fa8befb M glibc.spec commit c57ebc6ba91726db369341a190c06b538616dedd Author: Andreas Schwab @@ -27471,11 +27591,11 @@ CommitDate: Thu Jul 23 16:45:25 2009 +0000 2.10.90-7 -:100644 100644 2ba9b8d 06c3a33 M .cvsignore -:100644 100644 21f3023 208b56c M glibc-fedora.patch -:100644 100644 404015a 146c8dc M glibc.spec -:100644 100644 9d33fdc 4723815 M import.log -:100644 100644 445e09b cd087e7 M sources +:100644 100644 2ba9b8de 06c3a332 M .cvsignore +:100644 100644 21f30232 208b56cb M glibc-fedora.patch +:100644 100644 404015ae 146c8dce M glibc.spec +:100644 100644 9d33fdc9 47238154 M import.log +:100644 100644 445e09b3 cd087e70 M sources commit d3e8a7d51ed0fd533026acb08d6c0ec24ab0f7a7 Author: Andreas Schwab @@ -27485,7 +27605,7 @@ CommitDate: Thu Jul 23 14:07:14 2009 +0000 2.10.90-6 -:100644 100644 a7a01bf 404015a M glibc.spec +:100644 100644 a7a01bfa 404015ae M glibc.spec commit 6227600d60ef9027fcb0fd99d3e484e5ca8cd5fb Author: Andreas Schwab @@ -27495,11 +27615,11 @@ CommitDate: Wed Jul 22 13:05:11 2009 +0000 2.10.90-5 -:100644 100644 be10a9e 2ba9b8d M .cvsignore -:100644 100644 25fb2fd 21f3023 M glibc-fedora.patch -:100644 100644 7455f82 a7a01bf M glibc.spec -:100644 100644 4630b2d 9d33fdc M import.log -:100644 100644 cce2f9a 445e09b M sources +:100644 100644 be10a9ec 2ba9b8de M .cvsignore +:100644 100644 25fb2fdc 21f30232 M glibc-fedora.patch +:100644 100644 7455f825 a7a01bfa M glibc.spec +:100644 100644 4630b2de 9d33fdc9 M import.log +:100644 100644 cce2f9a9 445e09b3 M sources commit 50a003794b81d4f3ea64a50f740b164194fa4a98 Author: Andreas Schwab @@ -27509,11 +27629,11 @@ CommitDate: Mon Jul 20 13:24:45 2009 +0000 2.10.90-4 -:100644 100644 35fe9ca be10a9e M .cvsignore -:100644 100644 068743c 25fb2fd M glibc-fedora.patch -:100644 100644 0832bb2 7455f82 M glibc.spec -:100644 100644 7a2a899 4630b2d M import.log -:100644 100644 b75f7e8 cce2f9a M sources +:100644 100644 35fe9ca9 be10a9ec M .cvsignore +:100644 100644 068743c2 25fb2fdc M glibc-fedora.patch +:100644 100644 0832bb2b 7455f825 M glibc.spec +:100644 100644 7a2a8994 4630b2de M import.log +:100644 100644 b75f7e84 cce2f9a9 M sources commit 2f2f29e8b79ff83cb1055a2883bbbafe986933b7 Author: Andreas Schwab @@ -27523,7 +27643,7 @@ CommitDate: Wed Jul 8 17:15:21 2009 +0000 2.10.90-3 -:100644 100644 9096df6 0832bb2 M glibc.spec +:100644 100644 9096df60 0832bb2b M glibc.spec commit 227a7ee89a1ab7a2fed4580d3838bf8deba4efbe Author: Andreas Schwab @@ -27533,10 +27653,10 @@ CommitDate: Thu Jul 2 10:22:47 2009 +0000 2.10.90-2 -:100644 100644 a6d6110 35fe9ca M .cvsignore -:100644 100644 9290b89 068743c M glibc-fedora.patch -:100644 100644 4491c41 9096df6 M glibc.spec -:100644 100644 6fbac2c b75f7e8 M sources +:100644 100644 a6d61106 35fe9ca9 M .cvsignore +:100644 100644 9290b890 068743c2 M glibc-fedora.patch +:100644 100644 4491c413 9096df60 M glibc.spec +:100644 100644 6fbac2c0 b75f7e84 M sources commit 237bb90b9673c540756df2503014f63493ab68a9 Author: Andreas Schwab @@ -27546,11 +27666,11 @@ CommitDate: Fri Jun 26 15:46:27 2009 +0000 2.10.90-1 -:100644 100644 0f0ccd3 a6d6110 M .cvsignore -:100644 100644 effea8f 9290b89 M glibc-fedora.patch -:100644 100644 98419f6 4491c41 M glibc.spec -:100644 100644 b9468bf 7a2a899 M import.log -:100644 100644 a2cafba 6fbac2c M sources +:100644 100644 0f0ccd37 a6d61106 M .cvsignore +:100644 100644 effea8fc 9290b890 M glibc-fedora.patch +:100644 100644 98419f6f 4491c413 M glibc.spec +:100644 100644 b9468bf2 7a2a8994 M import.log +:100644 100644 a2cafba7 6fbac2c0 M sources commit e0cbf08b7c3aeaffeaab4d48c506be8c29df1128 Author: Jakub Jelinek @@ -27560,11 +27680,11 @@ CommitDate: Tue Apr 14 21:28:25 2009 +0000 2.9.90-16 -:100644 100644 9ab8422 0f0ccd3 M .cvsignore -:100644 100644 f99b86d effea8f M glibc-fedora.patch -:100644 100644 c9a949f 98419f6 M glibc.spec -:100644 100644 995a3bc b9468bf M import.log -:100644 100644 45d1fdb a2cafba M sources +:100644 100644 9ab84221 0f0ccd37 M .cvsignore +:100644 100644 f99b86d8 effea8fc M glibc-fedora.patch +:100644 100644 c9a949fa 98419f6f M glibc.spec +:100644 100644 995a3bc2 b9468bf2 M import.log +:100644 100644 45d1fdb9 a2cafba7 M sources commit c75338b703a2aca2cb6e4c0f81f369f5be1de49c Author: Jakub Jelinek @@ -27574,11 +27694,11 @@ CommitDate: Thu Apr 9 22:03:35 2009 +0000 2.9.90-15 -:100644 100644 0368c07 9ab8422 M .cvsignore -:100644 100644 455d7e4 f99b86d M glibc-fedora.patch -:100644 100644 75a9904 c9a949f M glibc.spec -:100644 100644 7672d87 995a3bc M import.log -:100644 100644 a42ba5a 45d1fdb M sources +:100644 100644 0368c07d 9ab84221 M .cvsignore +:100644 100644 455d7e43 f99b86d8 M glibc-fedora.patch +:100644 100644 75a9904c c9a949fa M glibc.spec +:100644 100644 7672d875 995a3bc2 M import.log +:100644 100644 a42ba5af 45d1fdb9 M sources commit 8350a4f912bb79e562b928a301441f7b72bbe60f Author: Jakub Jelinek @@ -27588,7 +27708,7 @@ CommitDate: Thu Apr 9 21:23:43 2009 +0000 2.9.90-15 -:100644 100644 b541a55 75a9904 M glibc.spec +:100644 100644 b541a55a 75a9904c M glibc.spec commit 5bd3b47e0d97cbb0542498529eed52906d21e68a Author: Jakub Jelinek @@ -27598,11 +27718,11 @@ CommitDate: Wed Apr 8 16:46:29 2009 +0000 2.9.90-14 -:100644 100644 818c088 0368c07 M .cvsignore -:100644 100644 50d92f1 455d7e4 M glibc-fedora.patch -:100644 100644 7ffa75b b541a55 M glibc.spec -:100644 100644 69d760f 7672d87 M import.log -:100644 100644 4ea28d4 a42ba5a M sources +:100644 100644 818c0887 0368c07d M .cvsignore +:100644 100644 50d92f1b 455d7e43 M glibc-fedora.patch +:100644 100644 7ffa75b8 b541a55a M glibc.spec +:100644 100644 69d760f8 7672d875 M import.log +:100644 100644 4ea28d49 a42ba5af M sources commit 21be1f9bd4188ac44ba0a4c8e05b0f26027a037e Author: Jakub Jelinek @@ -27612,7 +27732,7 @@ CommitDate: Tue Apr 7 13:39:49 2009 +0000 2.9.90-13 -:100644 100644 f6e6535 7ffa75b M glibc.spec +:100644 100644 f6e6535a 7ffa75b8 M glibc.spec commit be304ecfa3662098fb73d9d0ddf714c16d1f3b66 Author: Jakub Jelinek @@ -27622,7 +27742,7 @@ CommitDate: Tue Apr 7 09:17:30 2009 +0000 2.9.90-13 -:100644 100644 5c169fa f6e6535 M glibc.spec +:100644 100644 5c169fab f6e6535a M glibc.spec commit ccd32a3069d3ddae01ad2239b3ccf0da75448b89 Author: Jakub Jelinek @@ -27632,11 +27752,11 @@ CommitDate: Tue Apr 7 07:39:09 2009 +0000 2.9.90-13 -:100644 100644 f132da2 818c088 M .cvsignore -:100644 100644 781f8a1 50d92f1 M glibc-fedora.patch -:100644 100644 3440124 5c169fa M glibc.spec -:100644 100644 b2ea659 69d760f M import.log -:100644 100644 fec2a4e 4ea28d4 M sources +:100644 100644 f132da22 818c0887 M .cvsignore +:100644 100644 781f8a15 50d92f1b M glibc-fedora.patch +:100644 100644 3440124a 5c169fab M glibc.spec +:100644 100644 b2ea6590 69d760f8 M import.log +:100644 100644 fec2a4ea 4ea28d49 M sources commit ec14cead29c7c7f74fa50482e55b4d0e69da72d5 Author: Jakub Jelinek @@ -27646,11 +27766,11 @@ CommitDate: Wed Apr 1 10:41:21 2009 +0000 2.9.90-12 -:100644 100644 302f735 f132da2 M .cvsignore -:100644 100644 0d5e48e 781f8a1 M glibc-fedora.patch -:100644 100644 77a67f5 3440124 M glibc.spec -:100644 100644 5ef23ff b2ea659 M import.log -:100644 100644 a1f8e96 fec2a4e M sources +:100644 100644 302f735c f132da22 M .cvsignore +:100644 100644 0d5e48e9 781f8a15 M glibc-fedora.patch +:100644 100644 77a67f55 3440124a M glibc.spec +:100644 100644 5ef23ffd b2ea6590 M import.log +:100644 100644 a1f8e96b fec2a4ea M sources commit 96386a5273722df01d2cb0e50d1fdc3921cb9156 Author: Jakub Jelinek @@ -27660,11 +27780,11 @@ CommitDate: Fri Mar 20 20:26:14 2009 +0000 2.9.90-11 -:100644 100644 41981ab 302f735 M .cvsignore -:100644 100644 b1d840d 0d5e48e M glibc-fedora.patch -:100644 100644 39eb371 77a67f5 M glibc.spec -:100644 100644 89db929 5ef23ff M import.log -:100644 100644 07d8d62 a1f8e96 M sources +:100644 100644 41981ab1 302f735c M .cvsignore +:100644 100644 b1d840d0 0d5e48e9 M glibc-fedora.patch +:100644 100644 39eb3714 77a67f55 M glibc.spec +:100644 100644 89db9297 5ef23ffd M import.log +:100644 100644 07d8d627 a1f8e96b M sources commit d3f4e3e5aee0b62e2d3ff62afe4fac705aa414cb Author: Jakub Jelinek @@ -27674,11 +27794,11 @@ CommitDate: Tue Mar 10 20:01:33 2009 +0000 2.9.90-10 -:100644 100644 87eb1f2 41981ab M .cvsignore -:100644 100644 f17558e b1d840d M glibc-fedora.patch -:100644 100644 b194a6d 39eb371 M glibc.spec -:100644 100644 75121ac 89db929 M import.log -:100644 100644 12a591f 07d8d62 M sources +:100644 100644 87eb1f2b 41981ab1 M .cvsignore +:100644 100644 f17558eb b1d840d0 M glibc-fedora.patch +:100644 100644 b194a6d3 39eb3714 M glibc.spec +:100644 100644 75121ac2 89db9297 M import.log +:100644 100644 12a591f4 07d8d627 M sources commit 268a86f75ef70201e337005a82f6ec56a486a8a0 Author: Jakub Jelinek @@ -27688,12 +27808,12 @@ CommitDate: Mon Mar 9 15:03:51 2009 +0000 2.9.90-9 -:100644 100644 6771e64 87eb1f2 M .cvsignore -:100644 100644 e022888 f17558e M glibc-fedora.patch -:100644 100644 fbf9a40 b194a6d M glibc.spec -:100644 100644 77040b5 75121ac M import.log -:100644 100644 1176190 12a591f M sources -:100644 000000 02df68d 0000000 D thread_db.patch +:100644 100644 6771e642 87eb1f2b M .cvsignore +:100644 100644 e0228886 f17558eb M glibc-fedora.patch +:100644 100644 fbf9a40d b194a6d3 M glibc.spec +:100644 100644 77040b51 75121ac2 M import.log +:100644 100644 1176190e 12a591f4 M sources +:100644 000000 02df68d7 00000000 D thread_db.patch commit 37921a2866b3c01b926d5d3bd961273672903cdf Author: Jakub Jelinek @@ -27703,7 +27823,7 @@ CommitDate: Mon Mar 9 15:00:02 2009 +0000 2.9.90-9 -:100644 100644 2f44095 e022888 M glibc-fedora.patch +:100644 100644 2f440952 e0228886 M glibc-fedora.patch commit 0bd832ee26f4862b8eac7a4a4a1c4c7a10588937 Author: roland @@ -27713,8 +27833,8 @@ CommitDate: Sat Feb 28 02:29:56 2009 +0000 fix libthread_db (#487212) -:100644 100644 617986c fbf9a40 M glibc.spec -:000000 100644 0000000 02df68d A thread_db.patch +:100644 100644 617986c7 fbf9a40d M glibc.spec +:000000 100644 00000000 02df68d7 A thread_db.patch commit 9d8081c00736b9364ec7dc1ef0d450bd489a01b6 Author: Jesse Keating @@ -27724,7 +27844,7 @@ CommitDate: Tue Feb 24 22:05:41 2009 +0000 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -:100644 100644 7409dec 617986c M glibc.spec +:100644 100644 7409deca 617986c7 M glibc.spec commit 318370830b50bbc7bb2e36fbc29eac1fb61d79ca Author: Jakub Jelinek @@ -27734,7 +27854,7 @@ CommitDate: Wed Feb 18 23:55:24 2009 +0000 2.9.90-7 -:100644 100644 e19d574 7409dec M glibc.spec +:100644 100644 e19d5748 7409deca M glibc.spec commit 3bdc2b1398d375516908610b00ba9f734dc66fcc Author: Jakub Jelinek @@ -27744,8 +27864,8 @@ CommitDate: Wed Feb 18 23:18:08 2009 +0000 2.9.90-6 -:100644 100644 7a62d88 2f44095 M glibc-fedora.patch -:100644 100644 d9f122e e19d574 M glibc.spec +:100644 100644 7a62d88f 2f440952 M glibc-fedora.patch +:100644 100644 d9f122e1 e19d5748 M glibc.spec commit 8591a1d11a4894e36e1e10831165e19f4e15a17f Author: Jakub Jelinek @@ -27755,8 +27875,8 @@ CommitDate: Wed Feb 18 22:02:09 2009 +0000 2.9.90-5 -:100644 100644 594541d 7a62d88 M glibc-fedora.patch -:100644 100644 f64af2f d9f122e M glibc.spec +:100644 100644 594541d6 7a62d88f M glibc-fedora.patch +:100644 100644 f64af2f9 d9f122e1 M glibc.spec commit 65bf1c4263c6361866b4b2b46eaa7241604b6686 Author: Jakub Jelinek @@ -27766,11 +27886,11 @@ CommitDate: Wed Feb 18 20:47:04 2009 +0000 2.9.90-4 -:100644 100644 b680a9c 6771e64 M .cvsignore -:100644 100644 1b6df06 594541d M glibc-fedora.patch -:100644 100644 8bc53ed f64af2f M glibc.spec -:100644 100644 852f1fe 77040b5 M import.log -:100644 100644 a292331 1176190 M sources +:100644 100644 b680a9c6 6771e642 M .cvsignore +:100644 100644 1b6df06f 594541d6 M glibc-fedora.patch +:100644 100644 8bc53ed6 f64af2f9 M glibc.spec +:100644 100644 852f1fe5 77040b51 M import.log +:100644 100644 a2923314 1176190e M sources commit 849f6c653f1bb9bb9b1599f3921176c93aa739b2 Author: Jakub Jelinek @@ -27780,11 +27900,11 @@ CommitDate: Wed Feb 4 22:51:53 2009 +0000 2.9.90-3 -:100644 100644 4112a08 b680a9c M .cvsignore -:100644 100644 e6ce76a 1b6df06 M glibc-fedora.patch -:100644 100644 89efe38 8bc53ed M glibc.spec -:100644 100644 866d174 852f1fe M import.log -:100644 100644 d70e870 a292331 M sources +:100644 100644 4112a08d b680a9c6 M .cvsignore +:100644 100644 e6ce76aa 1b6df06f M glibc-fedora.patch +:100644 100644 89efe387 8bc53ed6 M glibc.spec +:100644 100644 866d174c 852f1fe5 M import.log +:100644 100644 d70e870b a2923314 M sources commit 93d06822d10c5cb2d65c565ac411127105a66fea Author: Jakub Jelinek @@ -27794,11 +27914,11 @@ CommitDate: Thu Jan 8 10:44:08 2009 +0000 2.9.90-2 -:100644 100644 1942f4b 4112a08 M .cvsignore -:100644 100644 0cf088b e6ce76a M glibc-fedora.patch -:100644 100644 13ae19b 89efe38 M glibc.spec -:100644 100644 82230cb 866d174 M import.log -:100644 100644 9cbfa7c d70e870 M sources +:100644 100644 1942f4b5 4112a08d M .cvsignore +:100644 100644 0cf088b0 e6ce76aa M glibc-fedora.patch +:100644 100644 13ae19b7 89efe387 M glibc.spec +:100644 100644 82230cba 866d174c M import.log +:100644 100644 9cbfa7cd d70e870b M sources commit 81b5083f8d2a249e5bdb69b11541df5c88f2c343 Author: Jakub Jelinek @@ -27808,11 +27928,11 @@ CommitDate: Fri Jan 2 22:17:46 2009 +0000 2.9.90-1 -:100644 100644 b68cd3a 1942f4b M .cvsignore -:100644 100644 b5e34c1 0cf088b M glibc-fedora.patch -:100644 100644 a40c140 13ae19b M glibc.spec -:100644 100644 53c4c46 82230cb M import.log -:100644 100644 604ce2a 9cbfa7c M sources +:100644 100644 b68cd3a2 1942f4b5 M .cvsignore +:100644 100644 b5e34c18 0cf088b0 M glibc-fedora.patch +:100644 100644 a40c1409 13ae19b7 M glibc.spec +:100644 100644 53c4c468 82230cba M import.log +:100644 100644 604ce2a9 9cbfa7cd M sources commit 18108d150a22a396f1fbbf557e85b360f17808e1 Author: Jakub Jelinek @@ -27822,11 +27942,11 @@ CommitDate: Thu Nov 13 22:46:07 2008 +0000 2.9-1 -:100644 100644 473323f b68cd3a M .cvsignore -:100644 100644 7accafa b5e34c1 M glibc-fedora.patch -:100644 100644 2e6a6c0 a40c140 M glibc.spec -:100644 100644 d59c87d 53c4c46 M import.log -:100644 100644 d0793c3 604ce2a M sources +:100644 100644 473323f9 b68cd3a2 M .cvsignore +:100644 100644 7accafa1 b5e34c18 M glibc-fedora.patch +:100644 100644 2e6a6c0a a40c1409 M glibc.spec +:100644 100644 d59c87df 53c4c468 M import.log +:100644 100644 d0793c3f 604ce2a9 M sources commit 1403d00b92cd8f31735cd7bd49ec9edb7edeaa81 Author: Jakub Jelinek @@ -27836,11 +27956,11 @@ CommitDate: Wed Nov 12 20:47:24 2008 +0000 2.8.90-17 -:100644 100644 2baff5d 473323f M .cvsignore -:100644 100644 ff26163 7accafa M glibc-fedora.patch -:100644 100644 b3dce4f 2e6a6c0 M glibc.spec -:000000 100644 0000000 d59c87d A import.log -:100644 100644 af99d6e d0793c3 M sources +:100644 100644 2baff5d1 473323f9 M .cvsignore +:100644 100644 ff261632 7accafa1 M glibc-fedora.patch +:100644 100644 b3dce4f4 2e6a6c0a M glibc.spec +:000000 100644 00000000 d59c87df A import.log +:100644 100644 af99d6ee d0793c3f M sources commit e90f93e6abf5e62dca619d0d55c1e617b7beaf8b Author: Jakub Jelinek @@ -27850,10 +27970,10 @@ CommitDate: Fri Oct 31 21:53:57 2008 +0000 2.8.90-16 -:100644 100644 9c9b806 2baff5d M .cvsignore -:100644 100644 c4856d4 ff26163 M glibc-fedora.patch -:100644 100644 221138e b3dce4f M glibc.spec -:100644 100644 aff181c af99d6e M sources +:100644 100644 9c9b8066 2baff5d1 M .cvsignore +:100644 100644 c4856d44 ff261632 M glibc-fedora.patch +:100644 100644 221138e4 b3dce4f4 M glibc.spec +:100644 100644 aff181c3 af99d6ee M sources commit e74e801207dbb1cbc87678c6c3bd1f8488fe7811 Author: Jakub Jelinek @@ -27863,10 +27983,10 @@ CommitDate: Tue Oct 28 15:50:31 2008 +0000 2.8.90-15 -:100644 100644 70c36f2 9c9b806 M .cvsignore -:100644 100644 c0bc724 c4856d4 M glibc-fedora.patch -:100644 100644 6b79af7 221138e M glibc.spec -:100644 100644 aebd223 aff181c M sources +:100644 100644 70c36f29 9c9b8066 M .cvsignore +:100644 100644 c0bc724e c4856d44 M glibc-fedora.patch +:100644 100644 6b79af75 221138e4 M glibc.spec +:100644 100644 aebd223a aff181c3 M sources commit 8126ba80e28ef70f6d5062b37d7cf24e238976ed Author: Jakub Jelinek @@ -27876,11 +27996,11 @@ CommitDate: Mon Oct 20 07:39:44 2008 +0000 2.8.90-14 -:100644 100644 232fa80 70c36f2 M .cvsignore -:100644 100644 fe20dd8 c0bc724 M glibc-fedora.patch -:100644 000000 4169304 0000000 D glibc-sparcv9v-memset.patch -:100644 100644 73fb6e0 6b79af7 M glibc.spec -:100644 100644 bd4d603 aebd223 M sources +:100644 100644 232fa807 70c36f29 M .cvsignore +:100644 100644 fe20dd8b c0bc724e M glibc-fedora.patch +:100644 000000 41693048 00000000 D glibc-sparcv9v-memset.patch +:100644 100644 73fb6e0c 6b79af75 M glibc.spec +:100644 100644 bd4d6034 aebd223a M sources commit afa452c3fd79b594ddd04989a39bbe1569d4ed6b Author: Dennis Gilmore @@ -27890,8 +28010,8 @@ CommitDate: Sat Oct 11 00:58:22 2008 +0000 add and apply sparcv9v memset patch -:000000 100644 0000000 4169304 A glibc-sparcv9v-memset.patch -:100644 100644 45f3e17 73fb6e0 M glibc.spec +:000000 100644 00000000 41693048 A glibc-sparcv9v-memset.patch +:100644 100644 45f3e174 73fb6e0c M glibc.spec commit 0cfc9dbd82ebc5694f4c95d8d94e1c200bf9251d Author: Jakub Jelinek @@ -27901,10 +28021,10 @@ CommitDate: Fri Aug 29 07:56:43 2008 +0000 2.8.90-12 -:100644 100644 c2b08a7 232fa80 M .cvsignore -:100644 100644 a01456c fe20dd8 M glibc-fedora.patch -:100644 100644 645f3ce 45f3e17 M glibc.spec -:100644 100644 aad227a bd4d603 M sources +:100644 100644 c2b08a7c 232fa807 M .cvsignore +:100644 100644 a01456c0 fe20dd8b M glibc-fedora.patch +:100644 100644 645f3ce9 45f3e174 M glibc.spec +:100644 100644 aad227a0 bd4d6034 M sources commit db38e683433a27e74356f72f208fb611d3986634 Author: Jakub Jelinek @@ -27914,10 +28034,10 @@ CommitDate: Fri Aug 29 07:54:06 2008 +0000 2.8.90-12 -:100644 100644 fd07319 c2b08a7 M .cvsignore -:100644 100644 05ee281 a01456c M glibc-fedora.patch -:100644 100644 eda0a62 645f3ce M glibc.spec -:100644 100644 8e178db aad227a M sources +:100644 100644 fd073192 c2b08a7c M .cvsignore +:100644 100644 05ee281b a01456c0 M glibc-fedora.patch +:100644 100644 eda0a62e 645f3ce9 M glibc.spec +:100644 100644 8e178dbd aad227a0 M sources commit 52bb3e6f828cfcd0bf432d44bc0f5c8e2601fa64 Author: Jakub Jelinek @@ -27927,10 +28047,10 @@ CommitDate: Sat Aug 2 09:03:19 2008 +0000 2.8.90-11 -:100644 100644 ed31f0c fd07319 M .cvsignore -:100644 100644 acf1c52 05ee281 M glibc-fedora.patch -:100644 100644 1f09f35 eda0a62 M glibc.spec -:100644 100644 ff33ec1 8e178db M sources +:100644 100644 ed31f0c4 fd073192 M .cvsignore +:100644 100644 acf1c528 05ee281b M glibc-fedora.patch +:100644 100644 1f09f351 eda0a62e M glibc.spec +:100644 100644 ff33ec1c 8e178dbd M sources commit 1c05dd24dbf3b0924af994c120724a4240192f81 Author: Jakub Jelinek @@ -27940,7 +28060,7 @@ CommitDate: Tue Jul 29 07:47:07 2008 +0000 2.8.90-10 -:100644 100644 f9b8d8c acf1c52 M glibc-fedora.patch +:100644 100644 f9b8d8c0 acf1c528 M glibc-fedora.patch commit be0efd41cd1f7dd8c232d8c6de1aae3db79bbfcf Author: Jakub Jelinek @@ -27950,10 +28070,10 @@ CommitDate: Mon Jul 28 23:49:51 2008 +0000 2.8.90-10 -:100644 100644 eb8160f ed31f0c M .cvsignore -:100644 100644 467f369 f9b8d8c M glibc-fedora.patch -:100644 100644 9712689 1f09f35 M glibc.spec -:100644 100644 59450f0 ff33ec1 M sources +:100644 100644 eb8160f0 ed31f0c4 M .cvsignore +:100644 100644 467f3694 f9b8d8c0 M glibc-fedora.patch +:100644 100644 9712689d 1f09f351 M glibc.spec +:100644 100644 59450f04 ff33ec1c M sources commit 569119f0bb7ed8f3719b8d1230e495a138ef7146 Author: Jakub Jelinek @@ -27963,10 +28083,10 @@ CommitDate: Wed Jul 16 10:14:40 2008 +0000 2.8.90-9 -:100644 100644 7805a59 eb8160f M .cvsignore -:100644 100644 2f678d8 467f369 M glibc-fedora.patch -:100644 100644 f92e3b0 9712689 M glibc.spec -:100644 100644 bab0404 59450f0 M sources +:100644 100644 7805a596 eb8160f0 M .cvsignore +:100644 100644 2f678d80 467f3694 M glibc-fedora.patch +:100644 100644 f92e3b04 9712689d M glibc.spec +:100644 100644 bab04047 59450f04 M sources commit e29b33f48b70ff13b1d869a5d923f3ee5b81311b Author: Jakub Jelinek @@ -27976,10 +28096,10 @@ CommitDate: Thu Jul 3 13:13:57 2008 +0000 2.8.90-8 -:100644 100644 65d108f 7805a59 M .cvsignore -:100644 100644 99f1cd8 2f678d8 M glibc-fedora.patch -:100644 100644 6df7d4e f92e3b0 M glibc.spec -:100644 100644 126cca3 bab0404 M sources +:100644 100644 65d108fb 7805a596 M .cvsignore +:100644 100644 99f1cd8f 2f678d80 M glibc-fedora.patch +:100644 100644 6df7d4eb f92e3b04 M glibc.spec +:100644 100644 126cca3b bab04047 M sources commit 975cdd1f9d4c91cba6a2d69e3214947187c46241 Author: Jakub Jelinek @@ -27989,10 +28109,10 @@ CommitDate: Fri Jun 13 17:17:16 2008 +0000 2.8.90-7 -:100644 100644 226d590 65d108f M .cvsignore -:100644 100644 ef6f0e5 99f1cd8 M glibc-fedora.patch -:100644 100644 4189c0d 6df7d4e M glibc.spec -:100644 100644 85320be 126cca3 M sources +:100644 100644 226d5903 65d108fb M .cvsignore +:100644 100644 ef6f0e56 99f1cd8f M glibc-fedora.patch +:100644 100644 4189c0d1 6df7d4eb M glibc.spec +:100644 100644 85320be5 126cca3b M sources commit 1c91d4268d566eecd5706ef471ba38f7e2b354b4 Author: Jakub Jelinek @@ -28002,7 +28122,7 @@ CommitDate: Fri Jun 13 17:15:01 2008 +0000 2.8.90-7 -:100644 100644 6b0766f ef6f0e5 M glibc-fedora.patch +:100644 100644 6b0766fd ef6f0e56 M glibc-fedora.patch commit 617fb0df2bd2c45ede5c1176179630a7f79e2cb1 Author: Jakub Jelinek @@ -28012,10 +28132,10 @@ CommitDate: Thu Jun 12 17:30:54 2008 +0000 2.8.90-6 -:100644 100644 fbaec01 226d590 M .cvsignore -:100644 100644 ff2646c 6b0766f M glibc-fedora.patch -:100644 100644 25b23d5 4189c0d M glibc.spec -:100644 100644 7579c66 85320be M sources +:100644 100644 fbaec017 226d5903 M .cvsignore +:100644 100644 ff2646cf 6b0766fd M glibc-fedora.patch +:100644 100644 25b23d59 4189c0d1 M glibc.spec +:100644 100644 7579c663 85320be5 M sources commit 425bf4a3835b00c6d0c12d041a898bdf31e61dd7 Author: Jakub Jelinek @@ -28025,10 +28145,10 @@ CommitDate: Sat May 24 22:50:07 2008 +0000 2.8.90-5 -:100644 100644 cd25ae2 fbaec01 M .cvsignore -:100644 100644 15e3cd1 ff2646c M glibc-fedora.patch -:100644 100644 219501c 25b23d5 M glibc.spec -:100644 100644 5eb0a62 7579c66 M sources +:100644 100644 cd25ae2b fbaec017 M .cvsignore +:100644 100644 15e3cd17 ff2646cf M glibc-fedora.patch +:100644 100644 219501ce 25b23d59 M glibc.spec +:100644 100644 5eb0a623 7579c663 M sources commit 901233391df3625f8447cb155bec021ac5c96b9a Author: Jakub Jelinek @@ -28038,10 +28158,10 @@ CommitDate: Tue May 20 20:17:14 2008 +0000 2.8.90-4 -:100644 100644 d2fde03 cd25ae2 M .cvsignore -:100644 100644 e74e406 15e3cd1 M glibc-fedora.patch -:100644 100644 20602e9 219501c M glibc.spec -:100644 100644 de6174a 5eb0a62 M sources +:100644 100644 d2fde035 cd25ae2b M .cvsignore +:100644 100644 e74e4066 15e3cd17 M glibc-fedora.patch +:100644 100644 20602e9c 219501ce M glibc.spec +:100644 100644 de6174af 5eb0a623 M sources commit 25b38c60a56401a738be1850daff2747907e4968 Author: Jakub Jelinek @@ -28051,10 +28171,10 @@ CommitDate: Sun May 18 11:11:25 2008 +0000 2.8.90-3 -:100644 100644 dbf2078 d2fde03 M .cvsignore -:100644 100644 dee3e3f e74e406 M glibc-fedora.patch -:100644 100644 69d88da 20602e9 M glibc.spec -:100644 100644 c8d004f de6174a M sources +:100644 100644 dbf20789 d2fde035 M .cvsignore +:100644 100644 dee3e3f3 e74e4066 M glibc-fedora.patch +:100644 100644 69d88da2 20602e9c M glibc.spec +:100644 100644 c8d004ff de6174af M sources commit c299fe23e3ede61eb8e811c539284c4ab67dc2e2 Author: Jakub Jelinek @@ -28064,10 +28184,10 @@ CommitDate: Fri May 16 22:23:13 2008 +0000 2.8.90-2 -:100644 100644 e82676d dbf2078 M .cvsignore -:100644 100644 debc79a dee3e3f M glibc-fedora.patch -:100644 100644 eca1f5f 69d88da M glibc.spec -:100644 100644 aecf08c c8d004f M sources +:100644 100644 e82676d1 dbf20789 M .cvsignore +:100644 100644 debc79a7 dee3e3f3 M glibc-fedora.patch +:100644 100644 eca1f5ff 69d88da2 M glibc.spec +:100644 100644 aecf08c5 c8d004ff M sources commit f750b536083176ed18bd753d71887fafccf6cc88 Author: Jakub Jelinek @@ -28077,10 +28197,10 @@ CommitDate: Thu May 15 08:24:11 2008 +0000 2.8.90-1 -:100644 100644 371a5fc e82676d M .cvsignore -:100644 100644 2f7c4a9 debc79a M glibc-fedora.patch -:100644 100644 ae70679 eca1f5f M glibc.spec -:100644 100644 c71e509 aecf08c M sources +:100644 100644 371a5fcb e82676d1 M .cvsignore +:100644 100644 2f7c4a9a debc79a7 M glibc-fedora.patch +:100644 100644 ae706794 eca1f5ff M glibc.spec +:100644 100644 c71e5095 aecf08c5 M sources commit 8dc1ea5199cc84a6fab6d423e4dfffe332641969 Author: Jakub Jelinek @@ -28090,10 +28210,10 @@ CommitDate: Sat Apr 12 08:14:24 2008 +0000 2.8-1 -:100644 100644 14dbb4b 371a5fc M .cvsignore -:100644 100644 39df6a4 2f7c4a9 M glibc-fedora.patch -:100644 100644 a6a9e24 ae70679 M glibc.spec -:100644 100644 7175f32 c71e509 M sources +:100644 100644 14dbb4b4 371a5fcb M .cvsignore +:100644 100644 39df6a48 2f7c4a9a M glibc-fedora.patch +:100644 100644 a6a9e245 ae706794 M glibc.spec +:100644 100644 7175f327 c71e5095 M sources commit 46c4457f73733a52ebb46d2a0c66fa65a5dd796a Author: Jakub Jelinek @@ -28103,10 +28223,10 @@ CommitDate: Fri Apr 11 19:59:40 2008 +0000 2.7.90-16 -:100644 100644 8c31b6b 14dbb4b M .cvsignore -:100644 100644 ba20f61 39df6a4 M glibc-fedora.patch -:100644 100644 6f93072 a6a9e24 M glibc.spec -:100644 100644 d2a6794 7175f32 M sources +:100644 100644 8c31b6b8 14dbb4b4 M .cvsignore +:100644 100644 ba20f619 39df6a48 M glibc-fedora.patch +:100644 100644 6f93072a a6a9e245 M glibc.spec +:100644 100644 d2a6794e 7175f327 M sources commit 97f60298f06e01a78de6aa6cefcbbdbff1870ad1 Author: Jakub Jelinek @@ -28116,10 +28236,10 @@ CommitDate: Thu Apr 10 19:42:23 2008 +0000 2.7.90-15 -:100644 100644 8e9b511 8c31b6b M .cvsignore -:100644 100644 b5e5234 ba20f61 M glibc-fedora.patch -:100644 100644 aad2122 6f93072 M glibc.spec -:100644 100644 2938960 d2a6794 M sources +:100644 100644 8e9b5118 8c31b6b8 M .cvsignore +:100644 100644 b5e52344 ba20f619 M glibc-fedora.patch +:100644 100644 aad21221 6f93072a M glibc.spec +:100644 100644 29389600 d2a6794e M sources commit c5731a392f059a795adfeeffb841fbd4ce16e194 Author: Jakub Jelinek @@ -28129,7 +28249,7 @@ CommitDate: Tue Apr 8 15:17:07 2008 +0000 2.7.90-14 -:100644 100644 30910c4 b5e5234 M glibc-fedora.patch +:100644 100644 30910c46 b5e52344 M glibc-fedora.patch commit d20e1c9f8bea44c0ee06ab14b22dcc38feaf61d3 Author: Jakub Jelinek @@ -28139,10 +28259,10 @@ CommitDate: Tue Apr 8 09:26:11 2008 +0000 2.7.90-14 -:100644 100644 e46e098 8e9b511 M .cvsignore -:100644 100644 123225f 30910c4 M glibc-fedora.patch -:100644 100644 098c7fc aad2122 M glibc.spec -:100644 100644 3785993 2938960 M sources +:100644 100644 e46e0982 8e9b5118 M .cvsignore +:100644 100644 123225f8 30910c46 M glibc-fedora.patch +:100644 100644 098c7fcd aad21221 M glibc.spec +:100644 100644 3785993a 29389600 M sources commit 45f16f2f6ceba766e766c4b4b4e7ee2ec011dad2 Author: Jakub Jelinek @@ -28152,10 +28272,10 @@ CommitDate: Fri Mar 28 14:37:48 2008 +0000 2.7.90-13 -:100644 100644 c2b08a7 e46e098 M .cvsignore -:100644 100644 a01456c 123225f M glibc-fedora.patch -:100644 100644 645f3ce 098c7fc M glibc.spec -:100644 100644 aad227a 3785993 M sources +:100644 100644 c2b08a7c e46e0982 M .cvsignore +:100644 100644 a01456c0 123225f8 M glibc-fedora.patch +:100644 100644 645f3ce9 098c7fcd M glibc.spec +:100644 100644 aad227a0 3785993a M sources commit e5e8f771b511c99e844f6325e7af7169f0c0def7 Author: Jakub Jelinek @@ -28165,10 +28285,10 @@ CommitDate: Wed Mar 26 12:29:52 2008 +0000 2.7.90-12 -:100644 100644 41e39e0 c2b08a7 M .cvsignore -:100644 100644 404017f a01456c M glibc-fedora.patch -:100644 100644 33758ab 645f3ce M glibc.spec -:100644 100644 6ddd897 aad227a M sources +:100644 100644 41e39e06 c2b08a7c M .cvsignore +:100644 100644 404017f5 a01456c0 M glibc-fedora.patch +:100644 100644 33758ab7 645f3ce9 M glibc.spec +:100644 100644 6ddd8972 aad227a0 M sources commit 192fbabef9b13c4d6e97b58d4780caa61b99bc55 Author: Jakub Jelinek @@ -28178,8 +28298,8 @@ CommitDate: Mon Mar 17 23:43:22 2008 +0000 2.7.90-11 -:100644 100644 86a9f39 404017f M glibc-fedora.patch -:100644 100644 1b74c28 33758ab M glibc.spec +:100644 100644 86a9f393 404017f5 M glibc-fedora.patch +:100644 100644 1b74c282 33758ab7 M glibc.spec commit e8c0bf781197bb192f177ed2b476e2cf5cd3a8b7 Author: Jakub Jelinek @@ -28189,10 +28309,10 @@ CommitDate: Fri Mar 14 23:00:20 2008 +0000 2.7.90-11 -:100644 100644 dc0ec0a 41e39e0 M .cvsignore -:100644 100644 94b0424 86a9f39 M glibc-fedora.patch -:100644 100644 7d59102 1b74c28 M glibc.spec -:100644 100644 3c57e92 6ddd897 M sources +:100644 100644 dc0ec0af 41e39e06 M .cvsignore +:100644 100644 94b0424c 86a9f393 M glibc-fedora.patch +:100644 100644 7d591023 1b74c282 M glibc.spec +:100644 100644 3c57e921 6ddd8972 M sources commit 87698ec1f825ac61e914b004537d866385a2fc89 Author: Jakub Jelinek @@ -28202,10 +28322,10 @@ CommitDate: Fri Mar 14 18:04:53 2008 +0000 2.7.90-10 -:100644 100644 221a07c dc0ec0a M .cvsignore -:100644 100644 592dfb5 94b0424 M glibc-fedora.patch -:100644 100644 f9eb608 7d59102 M glibc.spec -:100644 100644 544db4d 3c57e92 M sources +:100644 100644 221a07c6 dc0ec0af M .cvsignore +:100644 100644 592dfb54 94b0424c M glibc-fedora.patch +:100644 100644 f9eb6081 7d591023 M glibc.spec +:100644 100644 544db4d7 3c57e921 M sources commit 9a83731ce701441f408a91f284aa54867be88527 Author: Jesse Keating @@ -28215,7 +28335,7 @@ CommitDate: Wed Mar 5 15:08:48 2008 +0000 - Correct glibc-common requires. -:100644 100644 f58ca3c f9eb608 M glibc.spec +:100644 100644 f58ca3c6 f9eb6081 M glibc.spec commit ffc48ada46093e7a35440bbfe0c62afb32b0118f Author: Jakub Jelinek @@ -28225,10 +28345,10 @@ CommitDate: Wed Mar 5 10:32:39 2008 +0000 2.7.90-8 -:100644 100644 85c3b5b 221a07c M .cvsignore -:100644 100644 ad41575 592dfb5 M glibc-fedora.patch -:100644 100644 53c998f f58ca3c M glibc.spec -:100644 100644 8237b44 544db4d M sources +:100644 100644 85c3b5ba 221a07c6 M .cvsignore +:100644 100644 ad415758 592dfb54 M glibc-fedora.patch +:100644 100644 53c998fc f58ca3c6 M glibc.spec +:100644 100644 8237b44f 544db4d7 M sources commit 4224d63819befd16aceab556256335ed9de08f97 Author: Jakub Jelinek @@ -28238,10 +28358,10 @@ CommitDate: Sat Feb 16 17:47:51 2008 +0000 2.7.90-7 -:100644 100644 e7509a7 85c3b5b M .cvsignore -:100644 100644 86e580c ad41575 M glibc-fedora.patch -:100644 100644 51757c0 53c998f M glibc.spec -:100644 100644 d574680 8237b44 M sources +:100644 100644 e7509a76 85c3b5ba M .cvsignore +:100644 100644 86e580c5 ad415758 M glibc-fedora.patch +:100644 100644 51757c04 53c998fc M glibc.spec +:100644 100644 d5746800 8237b44f M sources commit 0ec93d330a19063a51333c1e063065f3d81bbf2c Author: Jakub Jelinek @@ -28251,10 +28371,10 @@ CommitDate: Fri Feb 1 11:02:06 2008 +0000 2.7.90-6 -:100644 100644 a861c44 e7509a7 M .cvsignore -:100644 100644 cb5ed11 86e580c M glibc-fedora.patch -:100644 100644 90c2e60 51757c0 M glibc.spec -:100644 100644 f377b4b d574680 M sources +:100644 100644 a861c44a e7509a76 M .cvsignore +:100644 100644 cb5ed111 86e580c5 M glibc-fedora.patch +:100644 100644 90c2e60f 51757c04 M glibc.spec +:100644 100644 f377b4b3 d5746800 M sources commit e8b5566e17877ad5b772a0f05f2252920cb684e4 Author: Jakub Jelinek @@ -28264,10 +28384,10 @@ CommitDate: Thu Jan 31 08:59:10 2008 +0000 2.7.90-5 -:100644 100644 1f19767 a861c44 M .cvsignore -:100644 100644 bda428b cb5ed11 M glibc-fedora.patch -:100644 100644 4b9964c 90c2e60 M glibc.spec -:100644 100644 d9d0240 f377b4b M sources +:100644 100644 1f197672 a861c44a M .cvsignore +:100644 100644 bda428b0 cb5ed111 M glibc-fedora.patch +:100644 100644 4b9964c1 90c2e60f M glibc.spec +:100644 100644 d9d02403 f377b4b3 M sources commit 85e6d0134a6c5844699dbd52fcd97f76d87352fe Author: Jakub Jelinek @@ -28277,10 +28397,10 @@ CommitDate: Fri Jan 11 08:15:01 2008 +0000 2.7.90-4 -:100644 100644 ed4c678 1f19767 M .cvsignore -:100644 100644 34f2fe2 bda428b M glibc-fedora.patch -:100644 100644 ea0921b 4b9964c M glibc.spec -:100644 100644 822765c d9d0240 M sources +:100644 100644 ed4c6782 1f197672 M .cvsignore +:100644 100644 34f2fe27 bda428b0 M glibc-fedora.patch +:100644 100644 ea0921be 4b9964c1 M glibc.spec +:100644 100644 822765cc d9d02403 M sources commit 68a8feb3ea017f66cab4df427e91b8099c3a4aa7 Author: Jakub Jelinek @@ -28290,10 +28410,10 @@ CommitDate: Thu Jan 3 20:54:55 2008 +0000 2.7.90-3 -:100644 100644 6b35c0d ed4c678 M .cvsignore -:100644 100644 6a76cfc 34f2fe2 M glibc-fedora.patch -:100644 100644 c1eb05a ea0921b M glibc.spec -:100644 100644 c7a9be6 822765c M sources +:100644 100644 6b35c0d0 ed4c6782 M .cvsignore +:100644 100644 6a76cfcb 34f2fe27 M glibc-fedora.patch +:100644 100644 c1eb05aa ea0921be M glibc.spec +:100644 100644 c7a9be65 822765cc M sources commit de3cbde65186b7f803187f49e5c41ddb1d6d2b63 Author: Jakub Jelinek @@ -28303,10 +28423,10 @@ CommitDate: Thu Dec 27 12:46:54 2007 +0000 2.7.90-2 -:100644 100644 7b80915 6b35c0d M .cvsignore -:100644 100644 6c737e0 6a76cfc M glibc-fedora.patch -:100644 100644 9a778c0 c1eb05a M glibc.spec -:100644 100644 4cc4b9d c7a9be6 M sources +:100644 100644 7b809153 6b35c0d0 M .cvsignore +:100644 100644 6c737e09 6a76cfcb M glibc-fedora.patch +:100644 100644 9a778c01 c1eb05aa M glibc.spec +:100644 100644 4cc4b9d2 c7a9be65 M sources commit 6e6f3279fd82f421e23664e6409484f53057a65c Author: Jakub Jelinek @@ -28316,8 +28436,8 @@ CommitDate: Wed Dec 12 23:24:45 2007 +0000 2.7.90-1 -:100644 100644 b7802e0 6c737e0 M glibc-fedora.patch -:100644 100644 532a825 4cc4b9d M sources +:100644 100644 b7802e0d 6c737e09 M glibc-fedora.patch +:100644 100644 532a8257 4cc4b9d2 M sources commit 44addb7013338b427b199b63d87f8ce74001e345 Author: Jakub Jelinek @@ -28327,10 +28447,10 @@ CommitDate: Wed Dec 12 21:15:38 2007 +0000 2.7.90-1 -:100644 100644 7f52f0e 7b80915 M .cvsignore -:100644 100644 afdbbdf b7802e0 M glibc-fedora.patch -:100644 100644 a010ac6 9a778c0 M glibc.spec -:100644 100644 8deb71f 532a825 M sources +:100644 100644 7f52f0e6 7b809153 M .cvsignore +:100644 100644 afdbbdf3 b7802e0d M glibc-fedora.patch +:100644 100644 a010ac64 9a778c01 M glibc.spec +:100644 100644 8deb71f3 532a8257 M sources commit aaaf28d29bf160eae35be4971077512676463ee9 Author: Jakub Jelinek @@ -28340,7 +28460,7 @@ CommitDate: Wed Dec 12 20:47:44 2007 +0000 2.7.90-1 -:100644 100644 4561532 afdbbdf M glibc-fedora.patch +:100644 100644 4561532e afdbbdf3 M glibc-fedora.patch commit e04f1bad7dbb1adbf1a261ce65d35af9179022b3 Author: Jakub Jelinek @@ -28350,8 +28470,8 @@ CommitDate: Thu Oct 18 00:17:17 2007 +0000 2.7-2 -:100644 100644 e2da84f 4561532 M glibc-fedora.patch -:100644 100644 20b26a7 a010ac6 M glibc.spec +:100644 100644 e2da84f7 4561532e M glibc-fedora.patch +:100644 100644 20b26a7d a010ac64 M glibc.spec commit 1b81d3abb3264b46ba77932448a92d8a470ec1af Author: Jakub Jelinek @@ -28361,10 +28481,10 @@ CommitDate: Wed Oct 17 20:54:45 2007 +0000 2.7-1 -:100644 100644 01962ed 7f52f0e M .cvsignore -:100644 100644 4f4d94d e2da84f M glibc-fedora.patch -:100644 100644 1b0a5a5 20b26a7 M glibc.spec -:100644 100644 22a2363 8deb71f M sources +:100644 100644 01962edf 7f52f0e6 M .cvsignore +:100644 100644 4f4d94d0 e2da84f7 M glibc-fedora.patch +:100644 100644 1b0a5a5c 20b26a7d M glibc.spec +:100644 100644 22a23630 8deb71f3 M sources commit e1ffbdc3410928cc6cbd4e43c3ea765b9d3e5786 Author: Bill Nottingham @@ -28374,7 +28494,7 @@ CommitDate: Mon Oct 15 18:47:41 2007 +0000 makefile update to properly grab makefile.common -:100644 100644 d4168e9 8056e01 M Makefile +:100644 100644 d4168e91 8056e016 M Makefile commit d410998e6d697b58ae174d197df34caddc78e853 Author: Jakub Jelinek @@ -28384,10 +28504,10 @@ CommitDate: Mon Oct 15 07:49:13 2007 +0000 2.6.90-21 -:100644 100644 4ffa261 01962ed M .cvsignore -:100644 100644 232b72d 4f4d94d M glibc-fedora.patch -:100644 100644 0266916 1b0a5a5 M glibc.spec -:100644 100644 ee9ae45 22a2363 M sources +:100644 100644 4ffa2612 01962edf M .cvsignore +:100644 100644 232b72d1 4f4d94d0 M glibc-fedora.patch +:100644 100644 0266916f 1b0a5a5c M glibc.spec +:100644 100644 ee9ae45a 22a23630 M sources commit 59c560878a82ca69ef4c7815cbe0239046483100 Author: Jakub Jelinek @@ -28397,10 +28517,10 @@ CommitDate: Sun Oct 14 21:33:51 2007 +0000 2.6.90-20 -:100644 100644 44cc56e 4ffa261 M .cvsignore -:100644 100644 ec06026 232b72d M glibc-fedora.patch -:100644 100644 56d36fe 0266916 M glibc.spec -:100644 100644 a03254d ee9ae45 M sources +:100644 100644 44cc56e7 4ffa2612 M .cvsignore +:100644 100644 ec060264 232b72d1 M glibc-fedora.patch +:100644 100644 56d36fee 0266916f M glibc.spec +:100644 100644 a03254df ee9ae45a M sources commit c5041837657625e86bcc7d0e385935780a02d1d1 Author: Jakub Jelinek @@ -28410,7 +28530,7 @@ CommitDate: Thu Oct 11 23:06:52 2007 +0000 2.6.90-19 -:100644 100644 81d37b1 ec06026 M glibc-fedora.patch +:100644 100644 81d37b11 ec060264 M glibc-fedora.patch commit 4e762dbcddabceade3f3c5865dfac458e41f0af0 Author: Jakub Jelinek @@ -28420,10 +28540,10 @@ CommitDate: Thu Oct 11 16:49:59 2007 +0000 2.6.90-19 -:100644 100644 e3b467b 44cc56e M .cvsignore -:100644 100644 61e70e9 81d37b1 M glibc-fedora.patch -:100644 100644 051d80c 56d36fe M glibc.spec -:100644 100644 12394b5 a03254d M sources +:100644 100644 e3b467b6 44cc56e7 M .cvsignore +:100644 100644 61e70e91 81d37b11 M glibc-fedora.patch +:100644 100644 051d80c9 56d36fee M glibc.spec +:100644 100644 12394b58 a03254df M sources commit 763c74dc7df193263768430fb07f2ef453e64d3b Author: Jakub Jelinek @@ -28433,10 +28553,10 @@ CommitDate: Wed Oct 10 21:17:35 2007 +0000 2.6.90-18 -:100644 100644 46b03be e3b467b M .cvsignore -:100644 100644 08d1416 61e70e9 M glibc-fedora.patch -:100644 100644 eb1eda9 051d80c M glibc.spec -:100644 100644 6da988d 12394b5 M sources +:100644 100644 46b03be0 e3b467b6 M .cvsignore +:100644 100644 08d14165 61e70e91 M glibc-fedora.patch +:100644 100644 eb1eda9e 051d80c9 M glibc.spec +:100644 100644 6da988dc 12394b58 M sources commit 6ab843b8784516be18d5f6712b2b3f373c7ef632 Author: Jakub Jelinek @@ -28446,10 +28566,10 @@ CommitDate: Wed Oct 3 19:54:48 2007 +0000 2.6.90-17 -:100644 100644 46b4303 46b03be M .cvsignore -:100644 100644 f3508b2 08d1416 M glibc-fedora.patch -:100644 100644 22c9560 eb1eda9 M glibc.spec -:100644 100644 e373891 6da988d M sources +:100644 100644 46b4303a 46b03be0 M .cvsignore +:100644 100644 f3508b2a 08d14165 M glibc-fedora.patch +:100644 100644 22c9560b eb1eda9e M glibc.spec +:100644 100644 e373891c 6da988dc M sources commit e2e6967dd1946b6ad2bfe3c00b2986840fe8f3c6 Author: Jakub Jelinek @@ -28459,10 +28579,10 @@ CommitDate: Sat Sep 29 19:47:29 2007 +0000 2.6.90-16 -:100644 100644 78497da 46b4303 M .cvsignore -:100644 100644 3696c62 f3508b2 M glibc-fedora.patch -:100644 100644 d5be22e 22c9560 M glibc.spec -:100644 100644 4f0b746 e373891 M sources +:100644 100644 78497daf 46b4303a M .cvsignore +:100644 100644 3696c627 f3508b2a M glibc-fedora.patch +:100644 100644 d5be22ec 22c9560b M glibc.spec +:100644 100644 4f0b7469 e373891c M sources commit 7368934d3fac097edc89e8b775cb0f924ee435e4 Author: Jakub Jelinek @@ -28472,10 +28592,10 @@ CommitDate: Thu Sep 20 00:29:56 2007 +0000 2.6.90-15 -:100644 100644 752ae3c 78497da M .cvsignore -:100644 100644 b9e508a 3696c62 M glibc-fedora.patch -:100644 100644 e00461c d5be22e M glibc.spec -:100644 100644 649624c 4f0b746 M sources +:100644 100644 752ae3c3 78497daf M .cvsignore +:100644 100644 b9e508a1 3696c627 M glibc-fedora.patch +:100644 100644 e00461c0 d5be22ec M glibc.spec +:100644 100644 649624c6 4f0b7469 M sources commit 4ea15d1afceebe3c21cc8346f89def668c168ad2 Author: Jakub Jelinek @@ -28485,10 +28605,10 @@ CommitDate: Tue Sep 18 20:35:52 2007 +0000 2.6.90-14 -:100644 100644 15f7092 752ae3c M .cvsignore -:100644 100644 cb2f7ec b9e508a M glibc-fedora.patch -:100644 100644 ba9cfad e00461c M glibc.spec -:100644 100644 95d6955 649624c M sources +:100644 100644 15f70925 752ae3c3 M .cvsignore +:100644 100644 cb2f7ec1 b9e508a1 M glibc-fedora.patch +:100644 100644 ba9cfad5 e00461c0 M glibc.spec +:100644 100644 95d69555 649624c6 M sources commit 4c53b154b0934513258d6374ec8ca6c5b3b67671 Author: Jakub Jelinek @@ -28498,7 +28618,7 @@ CommitDate: Tue Sep 18 20:12:30 2007 +0000 2.6.90-14 -:100644 100644 8cca333 cb2f7ec M glibc-fedora.patch +:100644 100644 8cca3330 cb2f7ec1 M glibc-fedora.patch commit 0d56f9db977dad046fd073f3a307d259005fb330 Author: Jakub Jelinek @@ -28508,10 +28628,10 @@ CommitDate: Mon Aug 27 21:13:25 2007 +0000 2.6.90-13 -:100644 100644 fd34879 15f7092 M .cvsignore -:100644 100644 60f667f 8cca333 M glibc-fedora.patch -:100644 100644 513f828 ba9cfad M glibc.spec -:100644 100644 b2502a4 95d6955 M sources +:100644 100644 fd34879d 15f70925 M .cvsignore +:100644 100644 60f667f7 8cca3330 M glibc-fedora.patch +:100644 100644 513f8286 ba9cfad5 M glibc.spec +:100644 100644 b2502a4a 95d69555 M sources commit 2016b56d2ac73c86eacdc644f5a21032efa8a93b Author: Jakub Jelinek @@ -28521,7 +28641,7 @@ CommitDate: Sat Aug 25 22:03:11 2007 +0000 2.6.90-12 -:100644 100644 9e9db6d 60f667f M glibc-fedora.patch +:100644 100644 9e9db6d7 60f667f7 M glibc-fedora.patch commit b4a06a5311dd8084ab55b6aefee98d169ee82e42 Author: Jakub Jelinek @@ -28531,10 +28651,10 @@ CommitDate: Sat Aug 25 19:31:13 2007 +0000 2.6.90-12 -:100644 100644 1a3f0b9 fd34879 M .cvsignore -:100644 100644 d513661 9e9db6d M glibc-fedora.patch -:100644 100644 bf72d55 513f828 M glibc.spec -:100644 100644 762910f b2502a4 M sources +:100644 100644 1a3f0b97 fd34879d M .cvsignore +:100644 100644 d5136618 9e9db6d7 M glibc-fedora.patch +:100644 100644 bf72d551 513f8286 M glibc.spec +:100644 100644 762910fa b2502a4a M sources commit 010c99dcf622fcf7ed9520bf432ec8ee19fde7c8 Author: Jakub Jelinek @@ -28544,10 +28664,10 @@ CommitDate: Thu Aug 16 22:21:10 2007 +0000 2.6.90-11 -:100644 100644 09e2ee8 1a3f0b9 M .cvsignore -:100644 100644 a149e58 d513661 M glibc-fedora.patch -:100644 100644 559afc2 bf72d55 M glibc.spec -:100644 100644 a05c8b8 762910f M sources +:100644 100644 09e2ee82 1a3f0b97 M .cvsignore +:100644 100644 a149e58b d5136618 M glibc-fedora.patch +:100644 100644 559afc2d bf72d551 M glibc.spec +:100644 100644 a05c8b8f 762910fa M sources commit bd085531cf365d6840f06344379592c2acab2211 Author: Jakub Jelinek @@ -28557,10 +28677,10 @@ CommitDate: Wed Aug 15 21:19:33 2007 +0000 2.6.90-10 -:100644 100644 023895c 09e2ee8 M .cvsignore -:100644 100644 12e0946 a149e58 M glibc-fedora.patch -:100644 100644 2740254 559afc2 M glibc.spec -:100644 100644 6311568 a05c8b8 M sources +:100644 100644 023895c1 09e2ee82 M .cvsignore +:100644 100644 12e09469 a149e58b M glibc-fedora.patch +:100644 100644 27402549 559afc2d M glibc.spec +:100644 100644 63115681 a05c8b8f M sources commit 11f5889b6ce54b08e7ef254c8f34b88938c46e11 Author: Jakub Jelinek @@ -28570,11 +28690,11 @@ CommitDate: Tue Aug 14 07:57:53 2007 +0000 2.6.90-9 -:100644 100644 dc666c3 023895c M .cvsignore -:100644 100644 958b002 12e0946 M glibc-fedora.patch -:100644 000000 606c9cb 0000000 D glibc-ldconfig-speedup.patch -:100644 100644 6184011 2740254 M glibc.spec -:100644 100644 547eacc 6311568 M sources +:100644 100644 dc666c38 023895c1 M .cvsignore +:100644 100644 958b0022 12e09469 M glibc-fedora.patch +:100644 000000 606c9cb6 00000000 D glibc-ldconfig-speedup.patch +:100644 100644 61840119 27402549 M glibc.spec +:100644 100644 547eacc0 63115681 M sources commit b93d23343195014cd928a45ba04018460675e735 Author: roland @@ -28584,8 +28704,8 @@ CommitDate: Fri Aug 10 22:37:27 2007 +0000 2.6.90-8 -:000000 100644 0000000 606c9cb A glibc-ldconfig-speedup.patch -:100644 100644 1f2bcd3 6184011 M glibc.spec +:000000 100644 00000000 606c9cb6 A glibc-ldconfig-speedup.patch +:100644 100644 1f2bcd30 61840119 M glibc.spec commit 99ad43cbc72f9c298813aa2d98ef6697be76fbf9 Author: roland @@ -28595,11 +28715,11 @@ CommitDate: Fri Aug 10 22:27:46 2007 +0000 2.6.90-7 -:100644 100644 7a30399 dc666c3 M .cvsignore -:100644 100644 997b2ee 958b002 M glibc-fedora.patch -:100644 000000 606c9cb 0000000 D glibc-ldconfig-speedup.patch -:100644 100644 1eb9374 1f2bcd3 M glibc.spec -:100644 100644 120f64a 547eacc M sources +:100644 100644 7a303990 dc666c38 M .cvsignore +:100644 100644 997b2ee6 958b0022 M glibc-fedora.patch +:100644 000000 606c9cb6 00000000 D glibc-ldconfig-speedup.patch +:100644 100644 1eb93742 1f2bcd30 M glibc.spec +:100644 100644 120f64a0 547eacc0 M sources commit b25f0c25f753f3ecea434b21c7bc3cdb8e742a77 Author: roland @@ -28609,8 +28729,8 @@ CommitDate: Fri Aug 10 01:57:33 2007 +0000 restore glibc-ldconfig-speedup.patch, not in sourceware fedora-branch -:000000 100644 0000000 606c9cb A glibc-ldconfig-speedup.patch -:100644 100644 07bf562 1eb9374 M glibc.spec +:000000 100644 00000000 606c9cb6 A glibc-ldconfig-speedup.patch +:100644 100644 07bf562e 1eb93742 M glibc.spec commit e0b4499ff963082efeee46f3d6eaf9f3c8906ebd Author: roland @@ -28620,12 +28740,12 @@ CommitDate: Fri Aug 10 01:55:13 2007 +0000 2.6.90-5 -:100644 100644 0d352f4 7a30399 M .cvsignore -:100644 100644 b9e6502 997b2ee M glibc-fedora.patch -:100644 000000 606c9cb 0000000 D glibc-ldconfig-speedup.patch -:100644 000000 fd7e23d 0000000 D glibc-ppc-rt.patch -:100644 100644 91c86a5 07bf562 M glibc.spec -:100644 100644 4aaf4aa 120f64a M sources +:100644 100644 0d352f4a 7a303990 M .cvsignore +:100644 100644 b9e65028 997b2ee6 M glibc-fedora.patch +:100644 000000 606c9cb6 00000000 D glibc-ldconfig-speedup.patch +:100644 000000 fd7e23d6 00000000 D glibc-ppc-rt.patch +:100644 100644 91c86a54 07bf562e M glibc.spec +:100644 100644 4aaf4aab 120f64a0 M sources commit 3a5173db70b34a7b54fe649c50359f181fc5d372 Author: Jakub Jelinek @@ -28635,8 +28755,8 @@ CommitDate: Sun Aug 5 11:41:46 2007 +0000 2.6.90-4 -:100644 100644 6e57aed fd7e23d M glibc-ppc-rt.patch -:100644 100644 e7754fc 91c86a5 M glibc.spec +:100644 100644 6e57aed7 fd7e23d6 M glibc-ppc-rt.patch +:100644 100644 e7754fcd 91c86a54 M glibc.spec commit ca63d6a542a00b89a32b8dadafa154f8a819150e Author: Jakub Jelinek @@ -28646,7 +28766,7 @@ CommitDate: Sun Aug 5 11:15:33 2007 +0000 2.6.90-4 -:000000 100644 0000000 6e57aed A glibc-ppc-rt.patch +:000000 100644 00000000 6e57aed7 A glibc-ppc-rt.patch commit 12ebbc9680997203daee54a680ba8c6ec791ae8b Author: Jakub Jelinek @@ -28656,11 +28776,11 @@ CommitDate: Sat Aug 4 21:28:38 2007 +0000 2.6.90-3 -:100644 100644 f051146 0d352f4 M .cvsignore -:100644 100644 a9f8f24 b9e6502 M glibc-fedora.patch -:000000 100644 0000000 606c9cb A glibc-ldconfig-speedup.patch -:100644 100644 b8536d1 e7754fc M glibc.spec -:100644 100644 37e99e8 4aaf4aa M sources +:100644 100644 f0511462 0d352f4a M .cvsignore +:100644 100644 a9f8f24f b9e65028 M glibc-fedora.patch +:000000 100644 00000000 606c9cb6 A glibc-ldconfig-speedup.patch +:100644 100644 b8536d11 e7754fcd M glibc.spec +:100644 100644 37e99e88 4aaf4aab M sources commit 9214828a3d7fb8cfd538109bfa290582176e7cb9 Author: Jakub Jelinek @@ -28670,8 +28790,8 @@ CommitDate: Sat Aug 4 21:26:28 2007 +0000 2.6.90-3 -:100644 000000 606c9cb 0000000 D glibc-ldconfig-speedup.patch -:100644 100644 619a557 b8536d1 M glibc.spec +:100644 000000 606c9cb6 00000000 D glibc-ldconfig-speedup.patch +:100644 100644 619a557e b8536d11 M glibc.spec commit 3d434a7b8d63116f4e149b766b8b4aec015ba2d5 Author: Jakub Jelinek @@ -28681,16 +28801,16 @@ CommitDate: Wed Aug 1 17:58:02 2007 +0000 2.6.90-2 -:100644 100644 9587647 f051146 M .cvsignore -:100644 000000 691881f 0000000 D glibc-fallocate.patch -:100644 100644 46ad081 a9f8f24 M glibc-fedora.patch -:100644 000000 c7b8816 0000000 D glibc-i386-rwlock.patch -:100644 000000 97fe4ba 0000000 D glibc-kaio-private-futex.patch -:000000 100644 0000000 606c9cb A glibc-ldconfig-speedup.patch -:100644 000000 5a1fd14 0000000 D glibc-private-futex.patch -:100644 000000 0942e03 0000000 D glibc-warning-patrol.patch -:100644 100644 4c77217 619a557 M glibc.spec -:100644 100644 2cfb0c1 37e99e8 M sources +:100644 100644 9587647d f0511462 M .cvsignore +:100644 000000 691881f8 00000000 D glibc-fallocate.patch +:100644 100644 46ad081b a9f8f24f M glibc-fedora.patch +:100644 000000 c7b88167 00000000 D glibc-i386-rwlock.patch +:100644 000000 97fe4bac 00000000 D glibc-kaio-private-futex.patch +:000000 100644 00000000 606c9cb6 A glibc-ldconfig-speedup.patch +:100644 000000 5a1fd14d 00000000 D glibc-private-futex.patch +:100644 000000 0942e03e 00000000 D glibc-warning-patrol.patch +:100644 100644 4c77217d 619a557e M glibc.spec +:100644 100644 2cfb0c1c 37e99e88 M sources commit 20943605249cf2d4604d7187069e29577e04f8eb Author: Jakub Jelinek @@ -28700,8 +28820,8 @@ CommitDate: Wed Aug 1 17:49:56 2007 +0000 2.6.90-2 -:100644 000000 4d621af 0000000 D glibc-ldconfig-speedup.patch -:100644 100644 d6e8f46 4c77217 M glibc.spec +:100644 000000 4d621af4 00000000 D glibc-ldconfig-speedup.patch +:100644 100644 d6e8f46b 4c77217d M glibc.spec commit 4c4d5636558b8623e64ab728ddfe9f1cd7ab30f3 Author: Jakub Jelinek @@ -28711,9 +28831,9 @@ CommitDate: Wed Aug 1 10:30:49 2007 +0000 2.6.90-1 -:100644 100644 104768c 691881f M glibc-fallocate.patch -:000000 100644 0000000 97fe4ba A glibc-kaio-private-futex.patch -:100644 100644 0380fdc d6e8f46 M glibc.spec +:100644 100644 104768c2 691881f8 M glibc-fallocate.patch +:000000 100644 00000000 97fe4bac A glibc-kaio-private-futex.patch +:100644 100644 0380fdcc d6e8f46b M glibc.spec commit d669fbfbe05c8031345d8b274ff17a35182f876d Author: Jakub Jelinek @@ -28723,8 +28843,8 @@ CommitDate: Tue Jul 31 19:42:13 2007 +0000 2.6.90-1 -:000000 100644 0000000 104768c A glibc-fallocate.patch -:100644 100644 9dbecc3 0380fdc M glibc.spec +:000000 100644 00000000 104768c2 A glibc-fallocate.patch +:100644 100644 9dbecc3a 0380fdcc M glibc.spec commit 0f388ce8689f409a11434aa9707a04a44907b2ce Author: Jakub Jelinek @@ -28734,14 +28854,14 @@ CommitDate: Tue Jul 31 18:24:22 2007 +0000 2.6.90-1 -:100644 100644 1c1c289 9587647 M .cvsignore -:100644 100644 621a1b3 46ad081 M glibc-fedora.patch -:000000 100644 0000000 c7b8816 A glibc-i386-rwlock.patch -:000000 100644 0000000 4d621af A glibc-ldconfig-speedup.patch -:000000 100644 0000000 5a1fd14 A glibc-private-futex.patch -:000000 100644 0000000 0942e03 A glibc-warning-patrol.patch -:100644 100644 0d909e9 9dbecc3 M glibc.spec -:100644 100644 f9b15dd 2cfb0c1 M sources +:100644 100644 1c1c289c 9587647d M .cvsignore +:100644 100644 621a1b33 46ad081b M glibc-fedora.patch +:000000 100644 00000000 c7b88167 A glibc-i386-rwlock.patch +:000000 100644 00000000 4d621af4 A glibc-ldconfig-speedup.patch +:000000 100644 00000000 5a1fd14d A glibc-private-futex.patch +:000000 100644 00000000 0942e03e A glibc-warning-patrol.patch +:100644 100644 0d909e97 9dbecc3a M glibc.spec +:100644 100644 f9b15dd8 2cfb0c1c M sources commit 50740a3c445618b88c06b481a9622092c1d31ed9 Author: Jakub Jelinek @@ -28751,7 +28871,7 @@ CommitDate: Tue Jul 31 18:18:37 2007 +0000 2.6.90-1 -:100644 100644 aa58aa8 0d909e9 M glibc.spec +:100644 100644 aa58aa8d 0d909e97 M glibc.spec commit afd77f36ede80e78b731a97bf31cbb91b8c27373 Author: roland @@ -28761,10 +28881,10 @@ CommitDate: Tue May 15 20:59:30 2007 +0000 glibc 2.6 release -:100644 100644 f3c6479 1c1c289 M .cvsignore -:100644 100644 e4a2f1b 621a1b3 M glibc-fedora.patch -:100644 100644 19ffb79 aa58aa8 M glibc.spec -:100644 100644 934c1a5 f9b15dd M sources +:100644 100644 f3c64791 1c1c289c M .cvsignore +:100644 100644 e4a2f1b0 621a1b33 M glibc-fedora.patch +:100644 100644 19ffb79a aa58aa8d M glibc.spec +:100644 100644 934c1a58 f9b15dd8 M sources commit c5a7af7148169176ba3513b06b56b784b4244c79 Author: Jakub Jelinek @@ -28774,10 +28894,10 @@ CommitDate: Thu May 10 23:27:38 2007 +0000 2.5.90-24 -:100644 100644 4c997cf f3c6479 M .cvsignore -:100644 100644 0024646 e4a2f1b M glibc-fedora.patch -:100644 100644 c07cae2 19ffb79 M glibc.spec -:100644 100644 dfceb02 934c1a5 M sources +:100644 100644 4c997cf5 f3c64791 M .cvsignore +:100644 100644 00246460 e4a2f1b0 M glibc-fedora.patch +:100644 100644 c07cae25 19ffb79a M glibc.spec +:100644 100644 dfceb028 934c1a58 M sources commit 510ee2fbe928828e6e368065ae8636276df16e1e Author: Jakub Jelinek @@ -28787,10 +28907,10 @@ CommitDate: Fri May 4 11:16:58 2007 +0000 2.5.90-22 -:100644 100644 c7017e9 4c997cf M .cvsignore -:100644 100644 6be01d0 0024646 M glibc-fedora.patch -:100644 100644 ae0ba3f c07cae2 M glibc.spec -:100644 100644 2b3b95e dfceb02 M sources +:100644 100644 c7017e94 4c997cf5 M .cvsignore +:100644 100644 6be01d0f 00246460 M glibc-fedora.patch +:100644 100644 ae0ba3ff c07cae25 M glibc.spec +:100644 100644 2b3b95ec dfceb028 M sources commit 1f4d93dae9cdffbe31c41babd5d306aae87aad17 Author: Jakub Jelinek @@ -28800,7 +28920,7 @@ CommitDate: Fri May 4 11:13:51 2007 +0000 2.5.90-22 -:100644 100644 42fc252 ae0ba3f M glibc.spec +:100644 100644 42fc252f ae0ba3ff M glibc.spec commit 3dbfe42439c8dfbd32b109616e0131a9b89e4c3c Author: Jakub Jelinek @@ -28810,7 +28930,7 @@ CommitDate: Tue Apr 17 02:25:38 2007 +0000 2.5.90-21 -:100644 100644 7ff17e1 42fc252 M glibc.spec +:100644 100644 7ff17e10 42fc252f M glibc.spec commit ee8c17a7d7787e71e1a36009bab6a14e9fc435d8 Author: Jakub Jelinek @@ -28820,7 +28940,7 @@ CommitDate: Tue Apr 17 01:18:06 2007 +0000 2.5.90-21 -:100644 100644 bf77d2d 7ff17e1 M glibc.spec +:100644 100644 bf77d2d2 7ff17e10 M glibc.spec commit a199884a13037e13c39593481e39d01357ea8b9c Author: Jakub Jelinek @@ -28830,7 +28950,7 @@ CommitDate: Tue Apr 17 00:30:25 2007 +0000 2.5.90-21 -:100644 100644 c56d322 bf77d2d M glibc.spec +:100644 100644 c56d3225 bf77d2d2 M glibc.spec commit 7d351d9b1519d7f387167530721786d696405175 Author: Jakub Jelinek @@ -28840,10 +28960,10 @@ CommitDate: Tue Apr 17 00:12:45 2007 +0000 auto-import glibc-2.5.90-21 on branch devel from glibc-2.5.90-21.src.rpm -:100644 100644 20beb31 c7017e9 M .cvsignore -:100644 100644 333034e 6be01d0 M glibc-fedora.patch -:100644 100644 ae0c65a c56d322 M glibc.spec -:100644 100644 0928331 2b3b95e M sources +:100644 100644 20beb314 c7017e94 M .cvsignore +:100644 100644 333034e9 6be01d0f M glibc-fedora.patch +:100644 100644 ae0c65a6 c56d3225 M glibc.spec +:100644 100644 09283314 2b3b95ec M sources commit 90e3c63b80f0cfb0beadc8ebad28e074523fbd03 Author: Jakub Jelinek @@ -28853,8 +28973,8 @@ CommitDate: Sat Mar 31 18:38:35 2007 +0000 2.5.90-20 -:100644 100644 0689c4f 333034e M glibc-fedora.patch -:100644 100644 bb28caf ae0c65a M glibc.spec +:100644 100644 0689c4f7 333034e9 M glibc-fedora.patch +:100644 100644 bb28cafa ae0c65a6 M glibc.spec commit d465a063ed8e4aa7c38f112e5806b5657c0a5b20 Author: Jakub Jelinek @@ -28864,10 +28984,10 @@ CommitDate: Sat Mar 31 17:37:20 2007 +0000 auto-import glibc-2.5.90-20 on branch devel from glibc-2.5.90-20.src.rpm -:100644 100644 7bf6ad3 20beb31 M .cvsignore -:100644 100644 0720326 0689c4f M glibc-fedora.patch -:100644 100644 e750faa bb28caf M glibc.spec -:100644 100644 0d84dec 0928331 M sources +:100644 100644 7bf6ad3c 20beb314 M .cvsignore +:100644 100644 07203267 0689c4f7 M glibc-fedora.patch +:100644 100644 e750faaf bb28cafa M glibc.spec +:100644 100644 0d84decc 09283314 M sources commit fc76d40f25685b1ac886ac18e1ab9dcac52ed9c3 Author: Jakub Jelinek @@ -28877,7 +28997,7 @@ CommitDate: Sun Mar 18 12:02:21 2007 +0000 2.5.90-19 -:100644 100644 156e4ac 0720326 M glibc-fedora.patch +:100644 100644 156e4acd 07203267 M glibc-fedora.patch commit 09c6354844eaa5e4a499e490a7a6c2e88208067c Author: Jakub Jelinek @@ -28887,7 +29007,7 @@ CommitDate: Sat Mar 17 22:07:06 2007 +0000 2.5.90-19 -:100644 100644 48452e8 156e4ac M glibc-fedora.patch +:100644 100644 48452e80 156e4acd M glibc-fedora.patch commit 57c79f74469ae0671147de038ccbfee68302a67a Author: Jakub Jelinek @@ -28897,10 +29017,10 @@ CommitDate: Sat Mar 17 22:05:58 2007 +0000 auto-import glibc-2.5.90-19 on branch devel from glibc-2.5.90-19.src.rpm -:100644 100644 63fa4e7 7bf6ad3 M .cvsignore -:100644 100644 afb0c5c 48452e8 M glibc-fedora.patch -:100644 100644 89eed07 e750faa M glibc.spec -:100644 100644 005ae46 0d84dec M sources +:100644 100644 63fa4e7f 7bf6ad3c M .cvsignore +:100644 100644 afb0c5c2 48452e80 M glibc-fedora.patch +:100644 100644 89eed07d e750faaf M glibc.spec +:100644 100644 005ae465 0d84decc M sources commit 729dbdcd8f72d5e9b49e84f0420bd4d2a88a2475 Author: Jakub Jelinek @@ -28910,7 +29030,7 @@ CommitDate: Wed Feb 21 13:53:47 2007 +0000 2.5.90-18 -:100644 100644 49e7865 afb0c5c M glibc-fedora.patch +:100644 100644 49e78652 afb0c5c2 M glibc-fedora.patch commit a7c36fdae7d93f335398d7b4833370857ab68247 Author: Jakub Jelinek @@ -28920,10 +29040,10 @@ CommitDate: Wed Feb 21 11:58:31 2007 +0000 auto-import glibc-2.5.90-18 on branch devel from glibc-2.5.90-18.src.rpm -:100644 100644 396c400 63fa4e7 M .cvsignore -:100644 100644 bd41ac1 49e7865 M glibc-fedora.patch -:100644 100644 2007467 89eed07 M glibc.spec -:100644 100644 1b15745 005ae46 M sources +:100644 100644 396c4002 63fa4e7f M .cvsignore +:100644 100644 bd41ac14 49e78652 M glibc-fedora.patch +:100644 100644 20074676 89eed07d M glibc.spec +:100644 100644 1b15745e 005ae465 M sources commit 974852089e172fa06ef45909a4879a5cab98e722 Author: Jakub Jelinek @@ -28933,10 +29053,10 @@ CommitDate: Sun Feb 11 17:39:19 2007 +0000 auto-import glibc-2.5.90-17 on branch devel from glibc-2.5.90-17.src.rpm -:100644 100644 4a6e738 396c400 M .cvsignore -:100644 100644 d1f0ce8 bd41ac1 M glibc-fedora.patch -:100644 100644 98b7271 2007467 M glibc.spec -:100644 100644 4f282e8 1b15745 M sources +:100644 100644 4a6e7385 396c4002 M .cvsignore +:100644 100644 d1f0ce87 bd41ac14 M glibc-fedora.patch +:100644 100644 98b72716 20074676 M glibc.spec +:100644 100644 4f282e83 1b15745e M sources commit 3d742e18eeda4ca358b5f46a8d1858dce3df49ab Author: Jakub Jelinek @@ -28946,10 +29066,10 @@ CommitDate: Fri Feb 2 10:06:34 2007 +0000 auto-import glibc-2.5.90-16 on branch devel from glibc-2.5.90-16.src.rpm -:100644 100644 fd5df45 4a6e738 M .cvsignore -:100644 100644 d5c19a1 d1f0ce8 M glibc-fedora.patch -:100644 100644 353e515 98b7271 M glibc.spec -:100644 100644 16ebc47 4f282e8 M sources +:100644 100644 fd5df459 4a6e7385 M .cvsignore +:100644 100644 d5c19a1b d1f0ce87 M glibc-fedora.patch +:100644 100644 353e5151 98b72716 M glibc.spec +:100644 100644 16ebc479 4f282e83 M sources commit 1c73d53e9ce85ece92747cbd0fedc8e646f3880f Author: Jakub Jelinek @@ -28959,7 +29079,7 @@ CommitDate: Wed Jan 17 11:54:25 2007 +0000 2.5.90-15 -:100644 100644 186baeb d5c19a1 M glibc-fedora.patch +:100644 100644 186baebc d5c19a1b M glibc-fedora.patch commit 9893fad9eeaead9d9587cb9d5e81f6f102b98651 Author: Jakub Jelinek @@ -28969,10 +29089,10 @@ CommitDate: Wed Jan 17 11:26:50 2007 +0000 auto-import glibc-2.5.90-15 on branch devel from glibc-2.5.90-15.src.rpm -:100644 100644 dc949aa fd5df45 M .cvsignore -:100644 100644 ae56dc4 186baeb M glibc-fedora.patch -:100644 100644 5c4187c 353e515 M glibc.spec -:100644 100644 8a0984d 16ebc47 M sources +:100644 100644 dc949aa5 fd5df459 M .cvsignore +:100644 100644 ae56dc49 186baebc M glibc-fedora.patch +:100644 100644 5c4187c8 353e5151 M glibc.spec +:100644 100644 8a0984db 16ebc479 M sources commit 83804eb2f6b8767add04c1e30cd23430dc007db1 Author: Jakub Jelinek @@ -28982,10 +29102,10 @@ CommitDate: Tue Dec 19 20:08:04 2006 +0000 auto-import glibc-2.5.90-14 on branch devel from glibc-2.5.90-14.src.rpm -:100644 100644 72663fb dc949aa M .cvsignore -:100644 100644 d757b5e ae56dc4 M glibc-fedora.patch -:100644 100644 52a6a37 5c4187c M glibc.spec -:100644 100644 b82122c 8a0984d M sources +:100644 100644 72663fb3 dc949aa5 M .cvsignore +:100644 100644 d757b5ea ae56dc49 M glibc-fedora.patch +:100644 100644 52a6a375 5c4187c8 M glibc.spec +:100644 100644 b82122cf 8a0984db M sources commit 6e8aad22e4903d79a2afc4e59d5825cf2ea49853 Author: Jakub Jelinek @@ -28995,10 +29115,10 @@ CommitDate: Thu Dec 14 09:29:53 2006 +0000 auto-import glibc-2.5.90-13 on branch devel from glibc-2.5.90-13.src.rpm -:100644 100644 25745a6 72663fb M .cvsignore -:100644 100644 e1ba658 d757b5e M glibc-fedora.patch -:100644 100644 f112d46 52a6a37 M glibc.spec -:100644 100644 74316d0 b82122c M sources +:100644 100644 25745a6a 72663fb3 M .cvsignore +:100644 100644 e1ba6587 d757b5ea M glibc-fedora.patch +:100644 100644 f112d460 52a6a375 M glibc.spec +:100644 100644 74316d0a b82122cf M sources commit 9b5c867e548eb08838121cf8dfef12d097d5e8f0 Author: Jakub Jelinek @@ -29008,10 +29128,10 @@ CommitDate: Sun Dec 10 11:04:25 2006 +0000 auto-import glibc-2.5.90-12 on branch devel from glibc-2.5.90-12.src.rpm -:100644 100644 05bd46b 25745a6 M .cvsignore -:100644 100644 94f2b12 e1ba658 M glibc-fedora.patch -:100644 100644 49ea2c1 f112d46 M glibc.spec -:100644 100644 7bb71ca 74316d0 M sources +:100644 100644 05bd46bf 25745a6a M .cvsignore +:100644 100644 94f2b126 e1ba6587 M glibc-fedora.patch +:100644 100644 49ea2c1a f112d460 M glibc.spec +:100644 100644 7bb71ca6 74316d0a M sources commit 81a33b05d076285c231ff06f3d95d781f4bd1fb2 Author: Jakub Jelinek @@ -29021,8 +29141,8 @@ CommitDate: Wed Dec 6 13:06:52 2006 +0000 2.5.90-11 -:100644 100644 152fc92 94f2b12 M glibc-fedora.patch -:100644 100644 4fc483d 49ea2c1 M glibc.spec +:100644 100644 152fc924 94f2b126 M glibc-fedora.patch +:100644 100644 4fc483d3 49ea2c1a M glibc.spec commit 327b5c2a171c81f69bfa4cb42622afaf2dddb4b9 Author: Jakub Jelinek @@ -29032,7 +29152,7 @@ CommitDate: Wed Dec 6 11:16:13 2006 +0000 2.5.90-11 -:100644 100644 a1242b3 152fc92 M glibc-fedora.patch +:100644 100644 a1242b33 152fc924 M glibc-fedora.patch commit 479a88e6df20498f4da8c2ee04461d29d97a8c3e Author: Jakub Jelinek @@ -29042,10 +29162,10 @@ CommitDate: Tue Dec 5 22:05:54 2006 +0000 auto-import glibc-2.5.90-11 on branch devel from glibc-2.5.90-11.src.rpm -:100644 100644 8c2d711 05bd46b M .cvsignore -:100644 100644 a8bf73f a1242b3 M glibc-fedora.patch -:100644 100644 671cf04 4fc483d M glibc.spec -:100644 100644 be0e47a 7bb71ca M sources +:100644 100644 8c2d711b 05bd46bf M .cvsignore +:100644 100644 a8bf73f1 a1242b33 M glibc-fedora.patch +:100644 100644 671cf044 4fc483d3 M glibc.spec +:100644 100644 be0e47ab 7bb71ca6 M sources commit 1f08f7860d47086a8b6994d2f21fbdc7dc6f0549 Author: Jakub Jelinek @@ -29055,10 +29175,10 @@ CommitDate: Fri Dec 1 09:04:10 2006 +0000 auto-import glibc-2.5.90-10 on branch devel from glibc-2.5.90-10.src.rpm -:100644 100644 4e97dc6 8c2d711 M .cvsignore -:100644 100644 b92253f a8bf73f M glibc-fedora.patch -:100644 100644 5c57cc0 671cf04 M glibc.spec -:100644 100644 501ee09 be0e47a M sources +:100644 100644 4e97dc64 8c2d711b M .cvsignore +:100644 100644 b92253fd a8bf73f1 M glibc-fedora.patch +:100644 100644 5c57cc09 671cf044 M glibc.spec +:100644 100644 501ee090 be0e47ab M sources commit 1e072aa3743d12231e89f1b7107b5e526e67fd93 Author: Jakub Jelinek @@ -29068,7 +29188,7 @@ CommitDate: Thu Nov 30 17:32:26 2006 +0000 2.5.90-9 -:100644 100644 ab2d89b 5c57cc0 M glibc.spec +:100644 100644 ab2d89be 5c57cc09 M glibc.spec commit 21860bef8481c9fb3ba4d4a566d338564f4c23ee Author: Jakub Jelinek @@ -29078,10 +29198,10 @@ CommitDate: Thu Nov 30 17:28:42 2006 +0000 auto-import glibc-2.5.90-9 on branch devel from glibc-2.5.90-9.src.rpm -:100644 100644 27595a5 4e97dc6 M .cvsignore -:100644 100644 2d8da93 b92253f M glibc-fedora.patch -:100644 100644 7237d0d ab2d89b M glibc.spec -:100644 100644 8c4134f 501ee09 M sources +:100644 100644 27595a51 4e97dc64 M .cvsignore +:100644 100644 2d8da931 b92253fd M glibc-fedora.patch +:100644 100644 7237d0d9 ab2d89be M glibc.spec +:100644 100644 8c4134fa 501ee090 M sources commit f4dfbe16ca69a583d0970e6480361ed710fc2d86 Author: Jakub Jelinek @@ -29091,7 +29211,7 @@ CommitDate: Tue Nov 28 12:49:35 2006 +0000 2.5.90-8 -:100644 100644 dff9c45 2d8da93 M glibc-fedora.patch +:100644 100644 dff9c456 2d8da931 M glibc-fedora.patch commit b45468ed5bac541ae09b19144f7254d01ac16c15 Author: Jakub Jelinek @@ -29101,10 +29221,10 @@ CommitDate: Tue Nov 28 12:30:29 2006 +0000 auto-import glibc-2.5.90-8 on branch devel from glibc-2.5.90-8.src.rpm -:100644 100644 0d51e16 27595a5 M .cvsignore -:100644 100644 3ac0051 dff9c45 M glibc-fedora.patch -:100644 100644 617da7c 7237d0d M glibc.spec -:100644 100644 423eeeb 8c4134f M sources +:100644 100644 0d51e163 27595a51 M .cvsignore +:100644 100644 3ac0051f dff9c456 M glibc-fedora.patch +:100644 100644 617da7cd 7237d0d9 M glibc.spec +:100644 100644 423eeeb3 8c4134fa M sources commit 55601b4f7366c63acd2b117981ec84068d6b1630 Author: Jakub Jelinek @@ -29114,10 +29234,10 @@ CommitDate: Mon Nov 20 12:10:50 2006 +0000 auto-import glibc-2.5.90-7 on branch devel from glibc-2.5.90-7.src.rpm -:100644 100644 78fbfc1 0d51e16 M .cvsignore -:100644 100644 81444da 3ac0051 M glibc-fedora.patch -:100644 100644 7aba846 617da7c M glibc.spec -:100644 100644 d2901d9 423eeeb M sources +:100644 100644 78fbfc1e 0d51e163 M .cvsignore +:100644 100644 81444da4 3ac0051f M glibc-fedora.patch +:100644 100644 7aba8461 617da7cd M glibc.spec +:100644 100644 d2901d9b 423eeeb3 M sources commit 83e4f6dd507848f1fc96ecda45ecc23b0f2b0ead Author: Jakub Jelinek @@ -29127,10 +29247,10 @@ CommitDate: Fri Nov 10 21:10:11 2006 +0000 auto-import glibc-2.5.90-6 on branch devel from glibc-2.5.90-6.src.rpm -:100644 100644 4e6c2a9 78fbfc1 M .cvsignore -:100644 100644 ca7ec73 81444da M glibc-fedora.patch -:100644 100644 9eb68bf 7aba846 M glibc.spec -:100644 100644 e05374c d2901d9 M sources +:100644 100644 4e6c2a91 78fbfc1e M .cvsignore +:100644 100644 ca7ec730 81444da4 M glibc-fedora.patch +:100644 100644 9eb68bf7 7aba8461 M glibc.spec +:100644 100644 e05374c1 d2901d9b M sources commit a41c6b9c0f72cfd065191d8d594f8332553e5ef5 Author: Jakub Jelinek @@ -29140,7 +29260,7 @@ CommitDate: Thu Nov 9 22:08:40 2006 +0000 2.5.90-5 -:100644 100644 6b667cd ca7ec73 M glibc-fedora.patch +:100644 100644 6b667cdd ca7ec730 M glibc-fedora.patch commit 930f1d70b7df068f2ebd1ba639e0af48709204ab Author: Jakub Jelinek @@ -29150,7 +29270,7 @@ CommitDate: Thu Nov 9 21:36:10 2006 +0000 2.5.90-5 -:100644 100644 a5e085a 6b667cd M glibc-fedora.patch +:100644 100644 a5e085af 6b667cdd M glibc-fedora.patch commit 4208e2390232ee349c0eb970e09c2d582a6183a1 Author: Jakub Jelinek @@ -29160,10 +29280,10 @@ CommitDate: Thu Nov 9 21:11:26 2006 +0000 auto-import glibc-2.5.90-5 on branch devel from glibc-2.5.90-5.src.rpm -:100644 100644 19ab90a 4e6c2a9 M .cvsignore -:100644 100644 c90f376 a5e085a M glibc-fedora.patch -:100644 100644 b10ccb9 9eb68bf M glibc.spec -:100644 100644 cf4dbec e05374c M sources +:100644 100644 19ab90ab 4e6c2a91 M .cvsignore +:100644 100644 c90f376e a5e085af M glibc-fedora.patch +:100644 100644 b10ccb97 9eb68bf7 M glibc.spec +:100644 100644 cf4dbecb e05374c1 M sources commit b1f781be295efd556e42def75bd42922887b9939 Author: Jakub Jelinek @@ -29173,10 +29293,10 @@ CommitDate: Fri Nov 3 17:08:57 2006 +0000 auto-import glibc-2.5.90-4 on branch devel from glibc-2.5.90-4.src.rpm -:100644 100644 4cf66c6 19ab90a M .cvsignore -:100644 100644 15efea5 c90f376 M glibc-fedora.patch -:100644 100644 c25a0dc b10ccb9 M glibc.spec -:100644 100644 29ad6cf cf4dbec M sources +:100644 100644 4cf66c68 19ab90ab M .cvsignore +:100644 100644 15efea5e c90f376e M glibc-fedora.patch +:100644 100644 c25a0dc7 b10ccb97 M glibc.spec +:100644 100644 29ad6cfc cf4dbecb M sources commit 2918dc4bea9eb142b3c09d6a7c437a110333f7f7 Author: Jakub Jelinek @@ -29186,7 +29306,7 @@ CommitDate: Sun Oct 29 23:32:49 2006 +0000 2.5.90-3 -:100644 100644 62035b4 15efea5 M glibc-fedora.patch +:100644 100644 62035b41 15efea5e M glibc-fedora.patch commit aa026ce62ec872972d436036a3e61544b02a5a95 Author: Jakub Jelinek @@ -29196,7 +29316,7 @@ CommitDate: Sun Oct 29 22:54:17 2006 +0000 2.5.90-3 -:100644 100644 e1f4b79 62035b4 M glibc-fedora.patch +:100644 100644 e1f4b793 62035b41 M glibc-fedora.patch commit 8788e1de6970d5f4fa0c4b7bb8a9c2f798bdcc63 Author: Jakub Jelinek @@ -29206,10 +29326,10 @@ CommitDate: Sun Oct 29 22:16:58 2006 +0000 auto-import glibc-2.5.90-3 on branch devel from glibc-2.5.90-3.src.rpm -:100644 100644 545bf3d 4cf66c6 M .cvsignore -:100644 100644 9d7f586 e1f4b79 M glibc-fedora.patch -:100644 100644 cf933d1 c25a0dc M glibc.spec -:100644 100644 f778564 29ad6cf M sources +:100644 100644 545bf3df 4cf66c68 M .cvsignore +:100644 100644 9d7f5860 e1f4b793 M glibc-fedora.patch +:100644 100644 cf933d17 c25a0dc7 M glibc.spec +:100644 100644 f7785646 29ad6cfc M sources commit e8f96c9a5c4eacc1c5ae702110dd195050cfc317 Author: Jakub Jelinek @@ -29219,10 +29339,10 @@ CommitDate: Fri Oct 27 19:39:25 2006 +0000 auto-import glibc-2.5.90-2 on branch devel from glibc-2.5.90-2.src.rpm -:100644 100644 f9c6ef0 545bf3d M .cvsignore -:100644 100644 187ed83 9d7f586 M glibc-fedora.patch -:100644 100644 2089792 cf933d1 M glibc.spec -:100644 100644 49e716d f778564 M sources +:100644 100644 f9c6ef0c 545bf3df M .cvsignore +:100644 100644 187ed833 9d7f5860 M glibc-fedora.patch +:100644 100644 20897928 cf933d17 M glibc.spec +:100644 100644 49e716d2 f7785646 M sources commit e72031f20698da29fc21c7167119bd91927aa92d Author: Jakub Jelinek @@ -29232,10 +29352,10 @@ CommitDate: Wed Oct 25 19:33:01 2006 +0000 auto-import glibc-2.5.90-1 on branch devel from glibc-2.5.90-1.src.rpm -:100644 100644 7e8d3f6 f9c6ef0 M .cvsignore -:000000 100644 0000000 187ed83 A glibc-fedora.patch -:100644 100644 e7af587 2089792 M glibc.spec -:100644 100644 bef3b87 49e716d M sources +:100644 100644 7e8d3f63 f9c6ef0c M .cvsignore +:000000 100644 00000000 187ed833 A glibc-fedora.patch +:100644 100644 e7af5878 20897928 M glibc.spec +:100644 100644 bef3b87e 49e716d2 M sources commit 9b74496363393dc9b368c7243d974f0bc61a2f26 Author: Jakub Jelinek @@ -29245,10 +29365,10 @@ CommitDate: Sun Oct 8 14:29:54 2006 +0000 auto-import glibc-2.5-3 on branch devel from glibc-2.5-3.src.rpm -:100644 100644 724c37b 7e8d3f6 M .cvsignore -:100644 000000 1846119 0000000 D glibc-fedora.patch -:100644 100644 22320bf e7af587 M glibc.spec -:100644 100644 6203f62 bef3b87 M sources +:100644 100644 724c37b3 7e8d3f63 M .cvsignore +:100644 000000 1846119a 00000000 D glibc-fedora.patch +:100644 100644 22320bf0 e7af5878 M glibc.spec +:100644 100644 6203f62f bef3b87e M sources commit fda5a5b07a95040f0dc5f1bbd23927bd4ac134f2 Author: Jakub Jelinek @@ -29258,10 +29378,10 @@ CommitDate: Mon Oct 2 19:16:08 2006 +0000 auto-import glibc-2.5-2 on branch devel from glibc-2.5-2.src.rpm -:100644 100644 9c4eb75 724c37b M .cvsignore -:100644 100644 c7d6dc0 1846119 M glibc-fedora.patch -:100644 100644 5328178 22320bf M glibc.spec -:100644 100644 30fc650 6203f62 M sources +:100644 100644 9c4eb75f 724c37b3 M .cvsignore +:100644 100644 c7d6dc03 1846119a M glibc-fedora.patch +:100644 100644 53281780 22320bf0 M glibc.spec +:100644 100644 30fc6502 6203f62f M sources commit bc14539ad9dab280b1048bc6f1116b62f19443c5 Author: Jakub Jelinek @@ -29271,10 +29391,10 @@ CommitDate: Fri Sep 29 21:34:27 2006 +0000 auto-import glibc-2.5-1 on branch devel from glibc-2.5-1.src.rpm -:100644 100644 c51fbd7 9c4eb75 M .cvsignore -:100644 100644 0faf214 c7d6dc0 M glibc-fedora.patch -:100644 100644 18ba195 5328178 M glibc.spec -:100644 100644 5f1b856 30fc650 M sources +:100644 100644 c51fbd7e 9c4eb75f M .cvsignore +:100644 100644 0faf2140 c7d6dc03 M glibc-fedora.patch +:100644 100644 18ba195f 53281780 M glibc.spec +:100644 100644 5f1b856b 30fc6502 M sources commit 4fa0b303125a0ad7c547e6bb850f2af04dd3dbd2 Author: Jakub Jelinek @@ -29284,7 +29404,7 @@ CommitDate: Tue Sep 26 22:21:00 2006 +0000 2.4.90-36 -:100644 100644 c39d44d 18ba195 M glibc.spec +:100644 100644 c39d44d2 18ba195f M glibc.spec commit 75f5a78b95351c07291d467f56ab9dbd4d5c8dca Author: Jakub Jelinek @@ -29294,10 +29414,10 @@ CommitDate: Mon Sep 25 17:36:39 2006 +0000 auto-import glibc-2.4.90-35 on branch devel from glibc-2.4.90-35.src.rpm -:100644 100644 80c491c c51fbd7 M .cvsignore -:100644 100644 3fc8902 0faf214 M glibc-fedora.patch -:100644 100644 a47e5ed c39d44d M glibc.spec -:100644 100644 5430872 5f1b856 M sources +:100644 100644 80c491c3 c51fbd7e M .cvsignore +:100644 100644 3fc8902e 0faf2140 M glibc-fedora.patch +:100644 100644 a47e5ed4 c39d44d2 M glibc.spec +:100644 100644 54308722 5f1b856b M sources commit 58ae4e23c391f7b9c3d78960101522a4a9f7e399 Author: Jakub Jelinek @@ -29307,10 +29427,10 @@ CommitDate: Sat Sep 23 10:43:23 2006 +0000 auto-import glibc-2.4.90-34 on branch devel from glibc-2.4.90-34.src.rpm -:100644 100644 95b8f94 80c491c M .cvsignore -:100644 100644 d2bcb41 3fc8902 M glibc-fedora.patch -:100644 100644 3317205 a47e5ed M glibc.spec -:100644 100644 0cfa1d6 5430872 M sources +:100644 100644 95b8f947 80c491c3 M .cvsignore +:100644 100644 d2bcb415 3fc8902e M glibc-fedora.patch +:100644 100644 3317205d a47e5ed4 M glibc.spec +:100644 100644 0cfa1d6d 54308722 M sources commit 7fcbff86ea0e785e17b4b964680589f3ebd429f3 Author: Jakub Jelinek @@ -29320,7 +29440,7 @@ CommitDate: Tue Sep 19 21:25:00 2006 +0000 2.4.90-33 -:100644 100644 d42cfc5 3317205 M glibc.spec +:100644 100644 d42cfc56 3317205d M glibc.spec commit 1b8e233f9916a8557aa7bd1c23a5ea78acb337e2 Author: Jakub Jelinek @@ -29330,10 +29450,10 @@ CommitDate: Tue Sep 19 19:15:48 2006 +0000 auto-import glibc-2.4.90-33 on branch devel from glibc-2.4.90-33.src.rpm -:100644 100644 43880be 95b8f94 M .cvsignore -:100644 100644 bee2de2 d2bcb41 M glibc-fedora.patch -:100644 100644 0d755b8 d42cfc5 M glibc.spec -:100644 100644 7f275c4 0cfa1d6 M sources +:100644 100644 43880bea 95b8f947 M .cvsignore +:100644 100644 bee2de25 d2bcb415 M glibc-fedora.patch +:100644 100644 0d755b80 d42cfc56 M glibc.spec +:100644 100644 7f275c4b 0cfa1d6d M sources commit 18aa46f17ddd51f40a44d47e32eacef7d6d752b1 Author: Jakub Jelinek @@ -29343,10 +29463,10 @@ CommitDate: Fri Sep 15 20:28:56 2006 +0000 auto-import glibc-2.4.90-32 on branch devel from glibc-2.4.90-32.src.rpm -:100644 100644 607584e 43880be M .cvsignore -:100644 100644 dedd493 bee2de2 M glibc-fedora.patch -:100644 100644 c1f48bc 0d755b8 M glibc.spec -:100644 100644 bf379de 7f275c4 M sources +:100644 100644 607584e3 43880bea M .cvsignore +:100644 100644 dedd493e bee2de25 M glibc-fedora.patch +:100644 100644 c1f48bcd 0d755b80 M glibc.spec +:100644 100644 bf379ded 7f275c4b M sources commit e4ba40623d3a4d151d795c875b71a946c7c6d1f9 Author: Jakub Jelinek @@ -29356,10 +29476,10 @@ CommitDate: Sun Sep 10 19:27:02 2006 +0000 auto-import glibc-2.4.90-31 on branch devel from glibc-2.4.90-31.src.rpm -:100644 100644 52a4c68 607584e M .cvsignore -:100644 100644 bb3e981 dedd493 M glibc-fedora.patch -:100644 100644 899e445 c1f48bc M glibc.spec -:100644 100644 d665ca9 bf379de M sources +:100644 100644 52a4c68f 607584e3 M .cvsignore +:100644 100644 bb3e9812 dedd493e M glibc-fedora.patch +:100644 100644 899e4454 c1f48bcd M glibc.spec +:100644 100644 d665ca94 bf379ded M sources commit 812d0403a42eff72e279c20abefc8b48df60573b Author: Jakub Jelinek @@ -29369,7 +29489,7 @@ CommitDate: Thu Sep 7 11:34:46 2006 +0000 2.4.90-30 -:100644 100644 89cd128 899e445 M glibc.spec +:100644 100644 89cd1282 899e4454 M glibc.spec commit 52b0ac125e0aa8f08cfdafc812d962f7c122e1b5 Author: Jakub Jelinek @@ -29379,10 +29499,10 @@ CommitDate: Thu Sep 7 10:56:50 2006 +0000 auto-import glibc-2.4.90-30 on branch devel from glibc-2.4.90-30.src.rpm -:100644 100644 d54fe7d 52a4c68 M .cvsignore -:100644 100644 56efcb5 bb3e981 M glibc-fedora.patch -:100644 100644 290e0ba 89cd128 M glibc.spec -:100644 100644 955b304 d665ca9 M sources +:100644 100644 d54fe7d1 52a4c68f M .cvsignore +:100644 100644 56efcb59 bb3e9812 M glibc-fedora.patch +:100644 100644 290e0ba7 89cd1282 M glibc.spec +:100644 100644 955b3040 d665ca94 M sources commit f5c307d7d7e631539fa035275e77530335838a58 Author: Jakub Jelinek @@ -29392,10 +29512,10 @@ CommitDate: Tue Sep 5 07:07:39 2006 +0000 auto-import glibc-2.4.90-29 on branch devel from glibc-2.4.90-29.src.rpm -:100644 100644 37bfb13 d54fe7d M .cvsignore -:100644 100644 a722867 56efcb5 M glibc-fedora.patch -:100644 100644 09ac3a5 290e0ba M glibc.spec -:100644 100644 9213d0b 955b304 M sources +:100644 100644 37bfb13a d54fe7d1 M .cvsignore +:100644 100644 a7228673 56efcb59 M glibc-fedora.patch +:100644 100644 09ac3a54 290e0ba7 M glibc.spec +:100644 100644 9213d0b3 955b3040 M sources commit 2fd2ea9791ded5d067a7d3306db504d5759097db Author: Jakub Jelinek @@ -29405,10 +29525,10 @@ CommitDate: Thu Aug 31 19:18:22 2006 +0000 auto-import glibc-2.4.90-28 on branch devel from glibc-2.4.90-28.src.rpm -:100644 100644 47fff7d 37bfb13 M .cvsignore -:100644 100644 d39002a a722867 M glibc-fedora.patch -:100644 100644 b9e4dd0 09ac3a5 M glibc.spec -:100644 100644 a69543d 9213d0b M sources +:100644 100644 47fff7df 37bfb13a M .cvsignore +:100644 100644 d39002a1 a7228673 M glibc-fedora.patch +:100644 100644 b9e4dd08 09ac3a54 M glibc.spec +:100644 100644 a69543d1 9213d0b3 M sources commit dc27b199c9d6a3e1cdbabf3ada3d7df93f91d2a4 Author: Jakub Jelinek @@ -29418,10 +29538,10 @@ CommitDate: Thu Aug 31 07:08:06 2006 +0000 auto-import glibc-2.4.90-27 on branch devel from glibc-2.4.90-27.src.rpm -:100644 100644 050f168 47fff7d M .cvsignore -:100644 100644 48d5dd1 d39002a M glibc-fedora.patch -:100644 100644 c1b869e b9e4dd0 M glibc.spec -:100644 100644 93079de a69543d M sources +:100644 100644 050f168e 47fff7df M .cvsignore +:100644 100644 48d5dd15 d39002a1 M glibc-fedora.patch +:100644 100644 c1b869ee b9e4dd08 M glibc.spec +:100644 100644 93079ded a69543d1 M sources commit 4e2035941bb3baca9341246f4bb02c1ec6f6976b Author: Jakub Jelinek @@ -29431,10 +29551,10 @@ CommitDate: Mon Aug 28 19:38:25 2006 +0000 auto-import glibc-2.4.90-26 on branch devel from glibc-2.4.90-26.src.rpm -:100644 100644 a305349 050f168 M .cvsignore -:100644 100644 f185833 48d5dd1 M glibc-fedora.patch -:100644 100644 6899e19 c1b869e M glibc.spec -:100644 100644 83a4512 93079de M sources +:100644 100644 a305349c 050f168e M .cvsignore +:100644 100644 f1858330 48d5dd15 M glibc-fedora.patch +:100644 100644 6899e192 c1b869ee M glibc.spec +:100644 100644 83a45121 93079ded M sources commit f9ba25105ee4772e33b439b81c097f82eb508304 Author: Jakub Jelinek @@ -29444,8 +29564,8 @@ CommitDate: Fri Aug 25 09:56:17 2006 +0000 2.4.90-25 -:100644 100644 476a5ef f185833 M glibc-fedora.patch -:100644 100644 bbdc69b 6899e19 M glibc.spec +:100644 100644 476a5ef1 f1858330 M glibc-fedora.patch +:100644 100644 bbdc69b3 6899e192 M glibc.spec commit 81806726368692f84db7af83d7a89ba818611d42 Author: Jakub Jelinek @@ -29455,7 +29575,7 @@ CommitDate: Fri Aug 25 09:12:06 2006 +0000 2.4.90-25 -:100644 100644 14b7fa0 476a5ef M glibc-fedora.patch +:100644 100644 14b7fa04 476a5ef1 M glibc-fedora.patch commit 71e49893fb0462d2d94802fa61d69d128fdb9ba9 Author: Jakub Jelinek @@ -29465,10 +29585,10 @@ CommitDate: Fri Aug 25 07:14:59 2006 +0000 auto-import glibc-2.4.90-24 on branch devel from glibc-2.4.90-24.src.rpm -:100644 100644 c6b9499 a305349 M .cvsignore -:100644 100644 6245bca 14b7fa0 M glibc-fedora.patch -:100644 100644 d44cab2 bbdc69b M glibc.spec -:100644 100644 b42145b 83a4512 M sources +:100644 100644 c6b94999 a305349c M .cvsignore +:100644 100644 6245bca4 14b7fa04 M glibc-fedora.patch +:100644 100644 d44cab2d bbdc69b3 M glibc.spec +:100644 100644 b42145b9 83a45121 M sources commit 62cf09be2f1dce74724a662b22388f333693b662 Author: Jakub Jelinek @@ -29478,10 +29598,10 @@ CommitDate: Tue Aug 22 09:27:29 2006 +0000 auto-import glibc-2.4.90-23 on branch devel from glibc-2.4.90-23.src.rpm -:100644 100644 26e6fc9 c6b9499 M .cvsignore -:100644 100644 df9a408 6245bca M glibc-fedora.patch -:100644 100644 1a8f3a2 d44cab2 M glibc.spec -:100644 100644 dd3cec3 b42145b M sources +:100644 100644 26e6fc97 c6b94999 M .cvsignore +:100644 100644 df9a4087 6245bca4 M glibc-fedora.patch +:100644 100644 1a8f3a25 d44cab2d M glibc.spec +:100644 100644 dd3cec3f b42145b9 M sources commit f94eb77db45de1c4b0baa35c351954a1fc8422c8 Author: Jakub Jelinek @@ -29491,7 +29611,7 @@ CommitDate: Fri Aug 18 09:50:20 2006 +0000 2.4.90-22 -:100644 100644 9533afe 1a8f3a2 M glibc.spec +:100644 100644 9533afec 1a8f3a25 M glibc.spec commit e5feab2ee5b3575662e180737754065ffa694c30 Author: Jakub Jelinek @@ -29501,10 +29621,10 @@ CommitDate: Tue Aug 15 21:03:14 2006 +0000 auto-import glibc-2.4.90-21 on branch devel from glibc-2.4.90-21.src.rpm -:100644 100644 cfe24cd 26e6fc9 M .cvsignore -:100644 100644 05603d8 df9a408 M glibc-fedora.patch -:100644 100644 80f696e 9533afe M glibc.spec -:100644 100644 f2a851c dd3cec3 M sources +:100644 100644 cfe24cdc 26e6fc97 M .cvsignore +:100644 100644 05603d83 df9a4087 M glibc-fedora.patch +:100644 100644 80f696ef 9533afec M glibc.spec +:100644 100644 f2a851c7 dd3cec3f M sources commit 218b9026d8a507b13b39e43025f6b4d47955106a Author: Jakub Jelinek @@ -29514,7 +29634,7 @@ CommitDate: Tue Aug 15 08:45:05 2006 +0000 2.4.90-20 -:100644 100644 e23097b 05603d8 M glibc-fedora.patch +:100644 100644 e23097be 05603d83 M glibc-fedora.patch commit 4333d793d9265cf0a9a98d5752c6993635e8da94 Author: Jakub Jelinek @@ -29524,7 +29644,7 @@ CommitDate: Tue Aug 15 06:42:11 2006 +0000 2.4.90-20 -:100644 100644 64fcb4f e23097b M glibc-fedora.patch +:100644 100644 64fcb4f8 e23097be M glibc-fedora.patch commit 467134fe2ba2f632bec45bfed6822e1969313d52 Author: Jakub Jelinek @@ -29534,10 +29654,10 @@ CommitDate: Tue Aug 15 06:07:33 2006 +0000 auto-import glibc-2.4.90-20 on branch devel from glibc-2.4.90-20.src.rpm -:100644 100644 1f89f69 cfe24cd M .cvsignore -:100644 100644 677ab3e 64fcb4f M glibc-fedora.patch -:100644 100644 a5d8e36 80f696e M glibc.spec -:100644 100644 a9d68f6 f2a851c M sources +:100644 100644 1f89f69b cfe24cdc M .cvsignore +:100644 100644 677ab3e7 64fcb4f8 M glibc-fedora.patch +:100644 100644 a5d8e369 80f696ef M glibc.spec +:100644 100644 a9d68f63 f2a851c7 M sources commit ff4f47a9ee2fc6722b4cffd546020eba2c412f2f Author: Jakub Jelinek @@ -29547,10 +29667,10 @@ CommitDate: Thu Aug 10 07:07:14 2006 +0000 auto-import glibc-2.4.90-19 on branch devel from glibc-2.4.90-19.src.rpm -:100644 100644 e2708b0 1f89f69 M .cvsignore -:100644 100644 c820da1 677ab3e M glibc-fedora.patch -:100644 100644 69c6bd8 a5d8e36 M glibc.spec -:100644 100644 31eb979 a9d68f6 M sources +:100644 100644 e2708b0f 1f89f69b M .cvsignore +:100644 100644 c820da14 677ab3e7 M glibc-fedora.patch +:100644 100644 69c6bd8e a5d8e369 M glibc.spec +:100644 100644 31eb9796 a9d68f63 M sources commit 29d3ac057f87b77d148cd22287fe7f42a74e4af4 Author: Jakub Jelinek @@ -29560,10 +29680,10 @@ CommitDate: Mon Aug 7 19:49:00 2006 +0000 auto-import glibc-2.4.90-18 on branch devel from glibc-2.4.90-18.src.rpm -:100644 100644 3e24cf5 e2708b0 M .cvsignore -:100644 100644 a575fd0 c820da1 M glibc-fedora.patch -:100644 100644 090106e 69c6bd8 M glibc.spec -:100644 100644 4b2f690 31eb979 M sources +:100644 100644 3e24cf5f e2708b0f M .cvsignore +:100644 100644 a575fd06 c820da14 M glibc-fedora.patch +:100644 100644 090106ed 69c6bd8e M glibc.spec +:100644 100644 4b2f6900 31eb9796 M sources commit 35a1d020bda65cfde99d5e899bc1688603b16d9a Author: Jakub Jelinek @@ -29573,10 +29693,10 @@ CommitDate: Wed Aug 2 18:29:53 2006 +0000 auto-import glibc-2.4.90-17 on branch devel from glibc-2.4.90-17.src.rpm -:100644 100644 49efca7 3e24cf5 M .cvsignore -:100644 100644 18c03bd a575fd0 M glibc-fedora.patch -:100644 100644 02c3487 090106e M glibc.spec -:100644 100644 412ee3f 4b2f690 M sources +:100644 100644 49efca7d 3e24cf5f M .cvsignore +:100644 100644 18c03bd4 a575fd06 M glibc-fedora.patch +:100644 100644 02c3487f 090106ed M glibc.spec +:100644 100644 412ee3f5 4b2f6900 M sources commit 467bd1bb03a7461bae9ca3a0ed4169dd398129de Author: Jakub Jelinek @@ -29586,10 +29706,10 @@ CommitDate: Wed Aug 2 17:11:18 2006 +0000 auto-import glibc-2.4.90-16 on branch devel from glibc-2.4.90-16.src.rpm -:100644 100644 4581db3 49efca7 M .cvsignore -:100644 100644 68fe228 18c03bd M glibc-fedora.patch -:100644 100644 c314016 02c3487 M glibc.spec -:100644 100644 952931e 412ee3f M sources +:100644 100644 4581db34 49efca7d M .cvsignore +:100644 100644 68fe228a 18c03bd4 M glibc-fedora.patch +:100644 100644 c3140166 02c3487f M glibc.spec +:100644 100644 952931e3 412ee3f5 M sources commit afab52d6a909c03c0bfb416c10603adc8bb4bdf0 Author: roland @@ -29599,10 +29719,10 @@ CommitDate: Mon Jul 31 08:33:04 2006 +0000 auto-import glibc-2.4.90-15 on branch devel from glibc-2.4.90-15.src.rpm -:100644 100644 f5ab496 4581db3 M .cvsignore -:100644 100644 e69de29 68fe228 M glibc-fedora.patch -:100644 100644 df1f181 c314016 M glibc.spec -:100644 100644 fffa980 952931e M sources +:100644 100644 f5ab4965 4581db34 M .cvsignore +:100644 100644 e69de29b 68fe228a M glibc-fedora.patch +:100644 100644 df1f1811 c3140166 M glibc.spec +:100644 100644 fffa9806 952931e3 M sources commit 33d4ca22fa44d3beb2cccf55fc4b6d7cb3273812 Author: roland @@ -29612,10 +29732,10 @@ CommitDate: Sun Jul 30 01:43:49 2006 +0000 auto-import glibc-2.4.90-14 on branch devel from glibc-2.4.90-14.src.rpm -:100644 100644 e0c08af f5ab496 M .cvsignore -:100644 100644 a11cf6e e69de29 M glibc-fedora.patch -:100644 100644 0a76797 df1f181 M glibc.spec -:100644 100644 0a8ca81 fffa980 M sources +:100644 100644 e0c08afb f5ab4965 M .cvsignore +:100644 100644 a11cf6e0 e69de29b M glibc-fedora.patch +:100644 100644 0a76797b df1f1811 M glibc.spec +:100644 100644 0a8ca81a fffa9806 M sources commit 754fe39471d1610862ec2865562ae69e63165f93 Author: Jakub Jelinek @@ -29625,7 +29745,7 @@ CommitDate: Tue Jul 11 15:23:42 2006 +0000 2.4.90-13 -:100644 100644 3c9e473 0a76797 M glibc.spec +:100644 100644 3c9e4739 0a76797b M glibc.spec commit eda216b028ed00911d19fac16ef6c3b28bc9cd21 Author: Jakub Jelinek @@ -29635,10 +29755,10 @@ CommitDate: Tue Jul 11 10:26:01 2006 +0000 auto-import glibc-2.4.90-13 on branch devel from glibc-2.4.90-13.src.rpm -:100644 100644 9ff11b2 e0c08af M .cvsignore -:100644 100644 199b4ef a11cf6e M glibc-fedora.patch -:100644 100644 c3d283e 3c9e473 M glibc.spec -:100644 100644 c500aa0 0a8ca81 M sources +:100644 100644 9ff11b22 e0c08afb M .cvsignore +:100644 100644 199b4ef5 a11cf6e0 M glibc-fedora.patch +:100644 100644 c3d283e2 3c9e4739 M glibc.spec +:100644 100644 c500aa04 0a8ca81a M sources commit 623fb2e6b19067ea703f32862836f644e737f9b6 Author: Jakub Jelinek @@ -29648,10 +29768,10 @@ CommitDate: Fri Jun 30 09:31:42 2006 +0000 auto-import glibc-2.4.90-12 on branch devel from glibc-2.4.90-12.src.rpm -:100644 100644 3025646 9ff11b2 M .cvsignore -:100644 100644 6750c16 199b4ef M glibc-fedora.patch -:100644 100644 3db2b4d c3d283e M glibc.spec -:100644 100644 e165403 c500aa0 M sources +:100644 100644 30256464 9ff11b22 M .cvsignore +:100644 100644 6750c166 199b4ef5 M glibc-fedora.patch +:100644 100644 3db2b4d5 c3d283e2 M glibc.spec +:100644 100644 e1654036 c500aa04 M sources commit 149e4031fdb1a6907ce04fe9098c0d40a5a23bb2 Author: Jakub Jelinek @@ -29661,7 +29781,7 @@ CommitDate: Wed May 31 17:21:14 2006 +0000 2.4.90-11 -:100644 100644 30610f0 6750c16 M glibc-fedora.patch +:100644 100644 30610f04 6750c166 M glibc-fedora.patch commit 6cc49f42fe0b0c1dbccae358859a585d7683d36d Author: Jakub Jelinek @@ -29671,10 +29791,10 @@ CommitDate: Wed May 31 15:41:01 2006 +0000 auto-import glibc-2.4.90-11 on branch devel from glibc-2.4.90-11.src.rpm -:100644 100644 f9d7cc8 3025646 M .cvsignore -:100644 100644 0fbf0ce 30610f0 M glibc-fedora.patch -:100644 100644 2383b24 3db2b4d M glibc.spec -:100644 100644 89fb651 e165403 M sources +:100644 100644 f9d7cc84 30256464 M .cvsignore +:100644 100644 0fbf0cef 30610f04 M glibc-fedora.patch +:100644 100644 2383b248 3db2b4d5 M glibc.spec +:100644 100644 89fb651a e1654036 M sources commit d1be4dbe44555713ac23db868dd78c4cc44f95a1 Author: Jakub Jelinek @@ -29684,10 +29804,10 @@ CommitDate: Wed May 24 08:09:35 2006 +0000 auto-import glibc-2.4.90-10 on branch devel from glibc-2.4.90-10.src.rpm -:100644 100644 07c27d4 f9d7cc8 M .cvsignore -:100644 100644 1b5ba91 0fbf0ce M glibc-fedora.patch -:100644 100644 19bc942 2383b24 M glibc.spec -:100644 100644 05b634b 89fb651 M sources +:100644 100644 07c27d40 f9d7cc84 M .cvsignore +:100644 100644 1b5ba91b 0fbf0cef M glibc-fedora.patch +:100644 100644 19bc9421 2383b248 M glibc.spec +:100644 100644 05b634b6 89fb651a M sources commit 686b07852ae17f2cf130c22745ca9c92d136c99e Author: Jakub Jelinek @@ -29697,10 +29817,10 @@ CommitDate: Sun May 21 22:19:31 2006 +0000 auto-import glibc-2.4.90-9 on branch devel from glibc-2.4.90-9.src.rpm -:100644 100644 15e0e2b 07c27d4 M .cvsignore -:100644 100644 9b60864 1b5ba91 M glibc-fedora.patch -:100644 100644 f4b5904 19bc942 M glibc.spec -:100644 100644 9b8b023 05b634b M sources +:100644 100644 15e0e2b6 07c27d40 M .cvsignore +:100644 100644 9b60864a 1b5ba91b M glibc-fedora.patch +:100644 100644 f4b5904f 19bc9421 M glibc.spec +:100644 100644 9b8b023a 05b634b6 M sources commit 3c1907f5251fc32fde36ad8ea11dd56a343ca089 Author: Jakub Jelinek @@ -29710,10 +29830,10 @@ CommitDate: Fri May 19 17:14:15 2006 +0000 auto-import glibc-2.4.90-8 on branch devel from glibc-2.4.90-8.src.rpm -:100644 100644 60ee3f3 15e0e2b M .cvsignore -:100644 100644 0a7a762 9b60864 M glibc-fedora.patch -:100644 100644 2e8f588 f4b5904 M glibc.spec -:100644 100644 9338606 9b8b023 M sources +:100644 100644 60ee3f31 15e0e2b6 M .cvsignore +:100644 100644 0a7a7621 9b60864a M glibc-fedora.patch +:100644 100644 2e8f5886 f4b5904f M glibc.spec +:100644 100644 93386062 9b8b023a M sources commit b4d0018f1a2c2dc15eebfff88c9e09a9fe3b0912 Author: Jakub Jelinek @@ -29723,10 +29843,10 @@ CommitDate: Thu May 11 15:53:04 2006 +0000 auto-import glibc-2.4.90-7 on branch devel from glibc-2.4.90-7.src.rpm -:100644 100644 ab86e8a 60ee3f3 M .cvsignore -:100644 100644 1163663 0a7a762 M glibc-fedora.patch -:100644 100644 fe2846a 2e8f588 M glibc.spec -:100644 100644 b63d429 9338606 M sources +:100644 100644 ab86e8ad 60ee3f31 M .cvsignore +:100644 100644 11636636 0a7a7621 M glibc-fedora.patch +:100644 100644 fe2846a3 2e8f5886 M glibc.spec +:100644 100644 b63d4291 93386062 M sources commit b579012a56ed5ef8a9b840b97a5db8b8778a6a8a Author: Jakub Jelinek @@ -29736,10 +29856,10 @@ CommitDate: Fri May 5 15:11:56 2006 +0000 auto-import glibc-2.4.90-6 on branch devel from glibc-2.4.90-6.src.rpm -:100644 100644 9bd76cb ab86e8a M .cvsignore -:100644 100644 b045262 1163663 M glibc-fedora.patch -:100644 100644 0528d43 fe2846a M glibc.spec -:100644 100644 734c61c b63d429 M sources +:100644 100644 9bd76cb6 ab86e8ad M .cvsignore +:100644 100644 b0452628 11636636 M glibc-fedora.patch +:100644 100644 0528d432 fe2846a3 M glibc.spec +:100644 100644 734c61cd b63d4291 M sources commit a2dbc1428544947c21cac9e71b2a47689ad8474a Author: Jakub Jelinek @@ -29749,7 +29869,7 @@ CommitDate: Fri May 5 07:42:23 2006 +0000 2.4.90-5 -:100644 100644 d53f7dd 0528d43 M glibc.spec +:100644 100644 d53f7dd7 0528d432 M glibc.spec commit 97f2be9b878028e9cd9baa172c893f1d8b8d8695 Author: Jakub Jelinek @@ -29759,10 +29879,10 @@ CommitDate: Fri May 5 06:46:41 2006 +0000 auto-import glibc-2.4.90-5 on branch devel from glibc-2.4.90-5.src.rpm -:100644 100644 a485384 9bd76cb M .cvsignore -:100644 100644 07b224b b045262 M glibc-fedora.patch -:100644 100644 33c5cd9 d53f7dd M glibc.spec -:100644 100644 86021e8 734c61c M sources +:100644 100644 a485384a 9bd76cb6 M .cvsignore +:100644 100644 07b224b3 b0452628 M glibc-fedora.patch +:100644 100644 33c5cd9f d53f7dd7 M glibc.spec +:100644 100644 86021e88 734c61cd M sources commit ddac4ccb1e418d0919d4d5869ad2d1baf6ef16dd Author: Jakub Jelinek @@ -29772,10 +29892,10 @@ CommitDate: Mon May 1 08:15:37 2006 +0000 auto-import glibc-2.4.90-4 on branch devel from glibc-2.4.90-4.src.rpm -:100644 100644 c69094b a485384 M .cvsignore -:100644 100644 d8e6172 07b224b M glibc-fedora.patch -:100644 100644 214da0c 33c5cd9 M glibc.spec -:100644 100644 eaa670f 86021e8 M sources +:100644 100644 c69094b0 a485384a M .cvsignore +:100644 100644 d8e61721 07b224b3 M glibc-fedora.patch +:100644 100644 214da0c8 33c5cd9f M glibc.spec +:100644 100644 eaa670fc 86021e88 M sources commit 408bca6551eefbf34ff1a99716eb3aea1ad3d972 Author: Jakub Jelinek @@ -29785,10 +29905,10 @@ CommitDate: Thu Apr 27 21:48:35 2006 +0000 auto-import glibc-2.4.90-3 on branch devel from glibc-2.4.90-3.src.rpm -:100644 100644 afc9878 c69094b M .cvsignore -:100644 100644 73988b6 d8e6172 M glibc-fedora.patch -:100644 100644 6cfcb32 214da0c M glibc.spec -:100644 100644 a4f26fa eaa670f M sources +:100644 100644 afc98787 c69094b0 M .cvsignore +:100644 100644 73988b62 d8e61721 M glibc-fedora.patch +:100644 100644 6cfcb322 214da0c8 M glibc.spec +:100644 100644 a4f26faa eaa670fc M sources commit 072becccdde608fcdb6903ec474c1e2aba907bbd Author: Jakub Jelinek @@ -29798,10 +29918,10 @@ CommitDate: Wed Apr 26 20:37:20 2006 +0000 auto-import glibc-2.4.90-2 on branch devel from glibc-2.4.90-2.src.rpm -:100644 100644 213cf9d afc9878 M .cvsignore -:100644 100644 c771b03 73988b6 M glibc-fedora.patch -:100644 100644 29b49a7 6cfcb32 M glibc.spec -:100644 100644 87a0ccd a4f26fa M sources +:100644 100644 213cf9d4 afc98787 M .cvsignore +:100644 100644 c771b038 73988b62 M glibc-fedora.patch +:100644 100644 29b49a70 6cfcb322 M glibc.spec +:100644 100644 87a0ccd4 a4f26faa M sources commit 62dd407febe4f4a3b6d605ad5d99035876beda95 Author: Jakub Jelinek @@ -29811,10 +29931,10 @@ CommitDate: Tue Apr 25 09:47:01 2006 +0000 auto-import glibc-2.4.90-1 on branch devel from glibc-2.4.90-1.src.rpm -:100644 100644 66498eb 213cf9d M .cvsignore -:100644 100644 b259b97 c771b03 M glibc-fedora.patch -:100644 100644 aead829 29b49a7 M glibc.spec -:100644 100644 b970f2b 87a0ccd M sources +:100644 100644 66498eb2 213cf9d4 M .cvsignore +:100644 100644 b259b974 c771b038 M glibc-fedora.patch +:100644 100644 aead8297 29b49a70 M glibc.spec +:100644 100644 b970f2bc 87a0ccd4 M sources commit 90074e377353e21192818052bbafa6dfa653c243 Author: Jakub Jelinek @@ -29824,10 +29944,10 @@ CommitDate: Mon Apr 24 11:22:15 2006 +0000 auto-import glibc-2.4-6 on branch devel from glibc-2.4-6.src.rpm -:100644 100644 7febcd7 66498eb M .cvsignore -:100644 100644 ba4d863 b259b97 M glibc-fedora.patch -:100644 100644 5bbdc14 aead829 M glibc.spec -:100644 100644 cc3125f b970f2b M sources +:100644 100644 7febcd70 66498eb2 M .cvsignore +:100644 100644 ba4d863e b259b974 M glibc-fedora.patch +:100644 100644 5bbdc14d aead8297 M glibc.spec +:100644 100644 cc3125f8 b970f2bc M sources commit f90fe5a888306d9d02bd9f72b94dd993ea5c31a2 Author: Jakub Jelinek @@ -29837,10 +29957,10 @@ CommitDate: Tue Mar 28 10:15:50 2006 +0000 2.4-5 -:100644 100644 9167382 7febcd7 M .cvsignore -:100644 100644 87c22c7 ba4d863 M glibc-fedora.patch -:100644 100644 e0140c1 5bbdc14 M glibc.spec -:100644 100644 7496d6e cc3125f M sources +:100644 100644 91673824 7febcd70 M .cvsignore +:100644 100644 87c22c7d ba4d863e M glibc-fedora.patch +:100644 100644 e0140c13 5bbdc14d M glibc.spec +:100644 100644 7496d6e7 cc3125f8 M sources commit d880bb2829d1bda327bf13e585bb61ea51eb86e5 Author: roland @@ -29850,7 +29970,7 @@ CommitDate: Tue Mar 7 21:37:04 2006 +0000 die, beehive, die -:100644 100644 6d8a829 e0140c1 M glibc.spec +:100644 100644 6d8a8290 e0140c13 M glibc.spec commit 2360d290c43a1d3f378be3e0138dfa8b20ca1035 Author: roland @@ -29860,7 +29980,7 @@ CommitDate: Tue Mar 7 21:18:23 2006 +0000 back up %%{ix86} gdb conflicts to < 6.3.0.0-1.111 -:100644 100644 d40f94c 6d8a829 M glibc.spec +:100644 100644 d40f94c8 6d8a8290 M glibc.spec commit 6f71a8469c2f7b0364bcc2e2a082983151e2f86a Author: Jakub Jelinek @@ -29870,9 +29990,9 @@ CommitDate: Tue Mar 7 13:39:01 2006 +0000 auto-import glibc-2.4-3 on branch devel from glibc-2.4-3.src.rpm -:100644 100644 b0c91ab 87c22c7 M glibc-fedora.patch -:100644 100644 aa4fe4e d40f94c M glibc.spec -:100644 100644 a93398a 7496d6e M sources +:100644 100644 b0c91ab4 87c22c7d M glibc-fedora.patch +:100644 100644 aa4fe4ee d40f94c8 M glibc.spec +:100644 100644 a93398a2 7496d6e7 M sources commit ac0e846b3503b14d3240d9a63c646188cf42d3a1 Author: Jakub Jelinek @@ -29882,9 +30002,9 @@ CommitDate: Tue Mar 7 08:44:55 2006 +0000 auto-import glibc-2.4-2 on branch devel from glibc-2.4-2.src.rpm -:100644 100644 245d867 b0c91ab M glibc-fedora.patch -:100644 100644 8f9803b aa4fe4e M glibc.spec -:100644 100644 694c072 a93398a M sources +:100644 100644 245d8676 b0c91ab4 M glibc-fedora.patch +:100644 100644 8f9803bf aa4fe4ee M glibc.spec +:100644 100644 694c0725 a93398a2 M sources commit 7020da29910a131f5727177ca4890a8b7875b42c Author: Jakub Jelinek @@ -29894,10 +30014,10 @@ CommitDate: Mon Mar 6 13:33:54 2006 +0000 auto-import glibc-2.4-1 on branch devel from glibc-2.4-1.src.rpm -:100644 100644 5474af4 9167382 M .cvsignore -:100644 100644 e6e20f8 245d867 M glibc-fedora.patch -:100644 100644 e09b839 8f9803b M glibc.spec -:100644 100644 2e71d9d 694c072 M sources +:100644 100644 5474af4e 91673824 M .cvsignore +:100644 100644 e6e20f82 245d8676 M glibc-fedora.patch +:100644 100644 e09b8399 8f9803bf M glibc.spec +:100644 100644 2e71d9da 694c0725 M sources commit 350c8dab797b4d65364f4c096b3ea6c3d7b28a95 Author: Jakub Jelinek @@ -29907,7 +30027,7 @@ CommitDate: Mon Mar 6 08:29:36 2006 +0000 2.3.91-2 -:100644 100644 2984bda e6e20f8 M glibc-fedora.patch +:100644 100644 2984bdaa e6e20f82 M glibc-fedora.patch commit 1fda0f1c116a3f674c28ff07a1c9cb395cbde6f6 Author: Jakub Jelinek @@ -29917,7 +30037,7 @@ CommitDate: Mon Mar 6 08:24:20 2006 +0000 2.3.91-2 -:100644 100644 0686f27 2984bda M glibc-fedora.patch +:100644 100644 0686f270 2984bdaa M glibc-fedora.patch commit a18e83c77d3439e6bfca516f71b163c2283e1216 Author: Jakub Jelinek @@ -29927,10 +30047,10 @@ CommitDate: Mon Mar 6 07:55:58 2006 +0000 auto-import glibc-2.3.91-2 on branch devel from glibc-2.3.91-2.src.rpm -:100644 100644 4540fa5 5474af4 M .cvsignore -:100644 100644 34af045 0686f27 M glibc-fedora.patch -:100644 100644 d8ee533 e09b839 M glibc.spec -:100644 100644 f330ae5 2e71d9d M sources +:100644 100644 4540fa5d 5474af4e M .cvsignore +:100644 100644 34af045b 0686f270 M glibc-fedora.patch +:100644 100644 d8ee533c e09b8399 M glibc.spec +:100644 100644 f330ae56 2e71d9da M sources commit 54462ec57fd41f472a9135007b6885bb22ed3f36 Author: Jakub Jelinek @@ -29940,10 +30060,10 @@ CommitDate: Thu Mar 2 11:47:25 2006 +0000 auto-import glibc-2.3.91-1 on branch devel from glibc-2.3.91-1.src.rpm -:100644 100644 19267bf 4540fa5 M .cvsignore -:100644 100644 05d40eb 34af045 M glibc-fedora.patch -:100644 100644 1a0d89c d8ee533 M glibc.spec -:100644 100644 99a8bcf f330ae5 M sources +:100644 100644 19267bf6 4540fa5d M .cvsignore +:100644 100644 05d40eb1 34af045b M glibc-fedora.patch +:100644 100644 1a0d89cb d8ee533c M glibc.spec +:100644 100644 99a8bcfd f330ae56 M sources commit d8040d3ce191889dde71d48f47be18997ec95765 Author: Jakub Jelinek @@ -29953,7 +30073,7 @@ CommitDate: Wed Mar 1 12:33:03 2006 +0000 2.3.90-39 -:100644 100644 a9deec2 05d40eb M glibc-fedora.patch +:100644 100644 a9deec27 05d40eb1 M glibc-fedora.patch commit c069edd618e1082ac61fc0521fead13c6b839e0a Author: Jakub Jelinek @@ -29963,10 +30083,10 @@ CommitDate: Wed Mar 1 09:47:51 2006 +0000 auto-import glibc-2.3.90-39 on branch devel from glibc-2.3.90-39.src.rpm -:100644 100644 aeb8122 19267bf M .cvsignore -:100644 100644 88c04f0 a9deec2 M glibc-fedora.patch -:100644 100644 204d4c7 1a0d89c M glibc.spec -:100644 100644 bf8c313 99a8bcf M sources +:100644 100644 aeb8122b 19267bf6 M .cvsignore +:100644 100644 88c04f0b a9deec27 M glibc-fedora.patch +:100644 100644 204d4c76 1a0d89cb M glibc.spec +:100644 100644 bf8c313e 99a8bcfd M sources commit 7bf905942e818d48a8774d9cad3ea3d1145e67ef Author: Jakub Jelinek @@ -29976,8 +30096,8 @@ CommitDate: Fri Feb 17 17:21:19 2006 +0000 2.3.90-38 -:100644 100644 592c486 88c04f0 M glibc-fedora.patch -:100644 100644 ab934cc 204d4c7 M glibc.spec +:100644 100644 592c4866 88c04f0b M glibc-fedora.patch +:100644 100644 ab934cca 204d4c76 M glibc.spec commit 4779efd52d2af17048df7cc837cf72ce66bc7178 Author: Jakub Jelinek @@ -29987,7 +30107,7 @@ CommitDate: Fri Feb 17 17:00:52 2006 +0000 2.3.90-38 -:100644 100644 b048095 592c486 M glibc-fedora.patch +:100644 100644 b0480955 592c4866 M glibc-fedora.patch commit 7cded629f33013fcfaa371348a28223d0d0ee20f Author: Jakub Jelinek @@ -29997,10 +30117,10 @@ CommitDate: Fri Feb 17 16:35:21 2006 +0000 auto-import glibc-2.3.90-38 on branch devel from glibc-2.3.90-38.src.rpm -:100644 100644 9f9942e aeb8122 M .cvsignore -:100644 100644 ecc24cd b048095 M glibc-fedora.patch -:100644 100644 0453909 ab934cc M glibc.spec -:100644 100644 266697b bf8c313 M sources +:100644 100644 9f9942e3 aeb8122b M .cvsignore +:100644 100644 ecc24cd7 b0480955 M glibc-fedora.patch +:100644 100644 04539095 ab934cca M glibc.spec +:100644 100644 266697b2 bf8c313e M sources commit 8f4c4fba000afb7e198955b3c1efb1e8ca9df247 Author: Jakub Jelinek @@ -30010,8 +30130,8 @@ CommitDate: Mon Feb 13 09:40:11 2006 +0000 2.3.90-37 -:100644 100644 460a7d1 ecc24cd M glibc-fedora.patch -:100644 100644 979b836 0453909 M glibc.spec +:100644 100644 460a7d1f ecc24cd7 M glibc-fedora.patch +:100644 100644 979b8363 04539095 M glibc.spec commit d4ea1803719c0a6a851cc3249051477168d62758 Author: Jakub Jelinek @@ -30021,7 +30141,7 @@ CommitDate: Mon Feb 13 09:18:47 2006 +0000 2.3.90-37 -:100644 100644 e97d629 460a7d1 M glibc-fedora.patch +:100644 100644 e97d6290 460a7d1f M glibc-fedora.patch commit 85afbd46b7ee4107498d854a32335af4fb39f447 Author: Jakub Jelinek @@ -30031,7 +30151,7 @@ CommitDate: Mon Feb 13 08:33:23 2006 +0000 2.3.90-37 -:100644 100644 69791df e97d629 M glibc-fedora.patch +:100644 100644 69791df1 e97d6290 M glibc-fedora.patch commit 358286c6f67d3c2095129ad535f95eb303707354 Author: Jakub Jelinek @@ -30041,10 +30161,10 @@ CommitDate: Mon Feb 13 07:56:52 2006 +0000 auto-import glibc-2.3.90-37 on branch devel from glibc-2.3.90-37.src.rpm -:100644 100644 8a96908 9f9942e M .cvsignore -:100644 100644 1fc6d2a 69791df M glibc-fedora.patch -:100644 100644 067bb0e 979b836 M glibc.spec -:100644 100644 524f764 266697b M sources +:100644 100644 8a96908b 9f9942e3 M .cvsignore +:100644 100644 1fc6d2ad 69791df1 M glibc-fedora.patch +:100644 100644 067bb0e7 979b8363 M glibc.spec +:100644 100644 524f7647 266697b2 M sources commit 2908c9bb10bb7450ee815a8abb687437c46c3369 Author: Jesse Keating @@ -30054,7 +30174,7 @@ CommitDate: Sat Feb 11 03:11:03 2006 +0000 bump for bug in double-long on ppc(64) -:100644 100644 0daea8e 067bb0e M glibc.spec +:100644 100644 0daea8e3 067bb0e7 M glibc.spec commit 89cd40eff0ecbcd95f208d5ee2aaf9372e658670 Author: Jakub Jelinek @@ -30064,10 +30184,10 @@ CommitDate: Sat Feb 4 08:44:52 2006 +0000 auto-import glibc-2.3.90-36 on branch devel from glibc-2.3.90-36.src.rpm -:100644 100644 56665fc 8a96908 M .cvsignore -:100644 100644 2319df1 1fc6d2a M glibc-fedora.patch -:100644 100644 00b272d 0daea8e M glibc.spec -:100644 100644 577136d 524f764 M sources +:100644 100644 56665fca 8a96908b M .cvsignore +:100644 100644 2319df1c 1fc6d2ad M glibc-fedora.patch +:100644 100644 00b272d9 0daea8e3 M glibc.spec +:100644 100644 577136dc 524f7647 M sources commit b17a54fa650af51e8f91878c24faec1b77b4cf58 Author: Jakub Jelinek @@ -30077,10 +30197,10 @@ CommitDate: Fri Feb 3 09:58:00 2006 +0000 auto-import glibc-2.3.90-35 on branch devel from glibc-2.3.90-35.src.rpm -:100644 100644 e31ca4f 56665fc M .cvsignore -:100644 100644 1392b1e 2319df1 M glibc-fedora.patch -:100644 100644 6c37d1c 00b272d M glibc.spec -:100644 100644 15e3fc5 577136d M sources +:100644 100644 e31ca4f6 56665fca M .cvsignore +:100644 100644 1392b1eb 2319df1c M glibc-fedora.patch +:100644 100644 6c37d1cd 00b272d9 M glibc.spec +:100644 100644 15e3fc59 577136dc M sources commit 91ee8a2b3c0bda36594026c2a0841efebdfee434 Author: Jakub Jelinek @@ -30090,7 +30210,7 @@ CommitDate: Thu Feb 2 19:06:19 2006 +0000 2.3.90-34 -:100644 100644 e229b92 6c37d1c M glibc.spec +:100644 100644 e229b92c 6c37d1cd M glibc.spec commit a7c52d76cf5f1760d4ecd9c42f181c2b07a7daf5 Author: Jakub Jelinek @@ -30100,10 +30220,10 @@ CommitDate: Thu Feb 2 09:35:12 2006 +0000 auto-import glibc-2.3.90-33 on branch devel from glibc-2.3.90-33.src.rpm -:100644 100644 e109f2a e31ca4f M .cvsignore -:100644 100644 c7a7dd9 1392b1e M glibc-fedora.patch -:100644 100644 560bf98 e229b92 M glibc.spec -:100644 100644 a35072a 15e3fc5 M sources +:100644 100644 e109f2a3 e31ca4f6 M .cvsignore +:100644 100644 c7a7dd96 1392b1eb M glibc-fedora.patch +:100644 100644 560bf98e e229b92c M glibc.spec +:100644 100644 a35072a2 15e3fc59 M sources commit 914423a575ae72883958da9ac5207465146631b6 Author: Jakub Jelinek @@ -30113,10 +30233,10 @@ CommitDate: Wed Feb 1 10:20:18 2006 +0000 auto-import glibc-2.3.90-32 on branch devel from glibc-2.3.90-32.src.rpm -:100644 100644 882dac8 e109f2a M .cvsignore -:100644 100644 b55f968 c7a7dd9 M glibc-fedora.patch -:100644 100644 5ca4690 560bf98 M glibc.spec -:100644 100644 cdb3648 a35072a M sources +:100644 100644 882dac8e e109f2a3 M .cvsignore +:100644 100644 b55f9685 c7a7dd96 M glibc-fedora.patch +:100644 100644 5ca4690c 560bf98e M glibc.spec +:100644 100644 cdb36487 a35072a2 M sources commit d352a6d77f6acac70d21a812400c9dbcd503c80c Author: Jakub Jelinek @@ -30126,7 +30246,7 @@ CommitDate: Mon Jan 30 11:39:52 2006 +0000 2.3.90-31 -:100644 100644 524b64e 5ca4690 M glibc.spec +:100644 100644 524b64eb 5ca4690c M glibc.spec commit 8e4e6fe8365a85542263a5c7e8126ae5f776a8ff Author: Jakub Jelinek @@ -30136,7 +30256,7 @@ CommitDate: Mon Jan 30 10:19:55 2006 +0000 2.3.90-31 -:100644 100644 c7a5a93 524b64e M glibc.spec +:100644 100644 c7a5a930 524b64eb M glibc.spec commit 57d2c535c194b3b39d11f0de52c8eb3050387ef0 Author: Jakub Jelinek @@ -30146,10 +30266,10 @@ CommitDate: Mon Jan 30 10:11:25 2006 +0000 auto-import glibc-2.3.90-31 on branch devel from glibc-2.3.90-31.src.rpm -:100644 100644 63066ab 882dac8 M .cvsignore -:100644 100644 c3747b5 b55f968 M glibc-fedora.patch -:100644 100644 44f8726 c7a5a93 M glibc.spec -:100644 100644 2bd03ff cdb3648 M sources +:100644 100644 63066abc 882dac8e M .cvsignore +:100644 100644 c3747b5d b55f9685 M glibc-fedora.patch +:100644 100644 44f87262 c7a5a930 M glibc.spec +:100644 100644 2bd03ffc cdb36487 M sources commit 75ff4bc0d94a4d3743191d611adb248b4d561bfb Author: Jakub Jelinek @@ -30159,7 +30279,7 @@ CommitDate: Mon Jan 9 23:28:07 2006 +0000 2.3.90-30 -:100644 100644 e5bc927 44f8726 M glibc.spec +:100644 100644 e5bc9279 44f87262 M glibc.spec commit f8e8bfb7a957a92ba591ab000ccd9c624468ba69 Author: Jakub Jelinek @@ -30169,7 +30289,7 @@ CommitDate: Mon Jan 9 22:33:25 2006 +0000 2.3.90-30 -:100644 100644 3972a74 e5bc927 M glibc.spec +:100644 100644 3972a74e e5bc9279 M glibc.spec commit cc5c5b17529358aab3efdc9ede0e6eb0eee63b5d Author: Jakub Jelinek @@ -30179,10 +30299,10 @@ CommitDate: Mon Jan 9 22:19:27 2006 +0000 auto-import glibc-2.3.90-30 on branch devel from glibc-2.3.90-30.src.rpm -:100644 100644 ea87776 63066ab M .cvsignore -:100644 100644 7d05070 c3747b5 M glibc-fedora.patch -:100644 100644 e4596c9 3972a74 M glibc.spec -:100644 100644 2d02d20 2bd03ff M sources +:100644 100644 ea877767 63066abc M .cvsignore +:100644 100644 7d050706 c3747b5d M glibc-fedora.patch +:100644 100644 e4596c93 3972a74e M glibc.spec +:100644 100644 2d02d208 2bd03ffc M sources commit e7c1483cefea88ace550abc98ad92ab2b4c4b41e Author: Jakub Jelinek @@ -30192,7 +30312,7 @@ CommitDate: Fri Jan 6 23:08:27 2006 +0000 2.3.90-29 -:100644 100644 2606390 7d05070 M glibc-fedora.patch +:100644 100644 26063908 7d050706 M glibc-fedora.patch commit eca69a8feed820654b4f9e5fb1c239dcc4406bf4 Author: Jakub Jelinek @@ -30202,7 +30322,7 @@ CommitDate: Fri Jan 6 22:27:39 2006 +0000 2.3.90-29 -:100644 100644 c843492 2606390 M glibc-fedora.patch +:100644 100644 c8434929 26063908 M glibc-fedora.patch commit b8270fb977e5e771fe9ce93d1e13c98dc662e207 Author: Jakub Jelinek @@ -30212,10 +30332,10 @@ CommitDate: Fri Jan 6 22:17:50 2006 +0000 auto-import glibc-2.3.90-29 on branch devel from glibc-2.3.90-29.src.rpm -:100644 100644 4987344 ea87776 M .cvsignore -:100644 100644 8285bd6 c843492 M glibc-fedora.patch -:100644 100644 a32e7e2 e4596c9 M glibc.spec -:100644 100644 6ede128 2d02d20 M sources +:100644 100644 49873448 ea877767 M .cvsignore +:100644 100644 8285bd62 c8434929 M glibc-fedora.patch +:100644 100644 a32e7e2a e4596c93 M glibc.spec +:100644 100644 6ede1286 2d02d208 M sources commit bd4957a00099553bc14680f478649139e7345c53 Author: Jakub Jelinek @@ -30225,10 +30345,10 @@ CommitDate: Fri Jan 6 09:59:51 2006 +0000 auto-import glibc-2.3.90-28 on branch devel from glibc-2.3.90-28.src.rpm -:100644 100644 6dfb672 4987344 M .cvsignore -:100644 100644 6ba1224 8285bd6 M glibc-fedora.patch -:100644 100644 d4ba90f a32e7e2 M glibc.spec -:100644 100644 9ebfbf5 6ede128 M sources +:100644 100644 6dfb6728 49873448 M .cvsignore +:100644 100644 6ba1224c 8285bd62 M glibc-fedora.patch +:100644 100644 d4ba90f1 a32e7e2a M glibc.spec +:100644 100644 9ebfbf5d 6ede1286 M sources commit 0f5b781e74b867f7a04a1386d70f902f7e83c85f Author: Jakub Jelinek @@ -30238,7 +30358,7 @@ CommitDate: Fri Jan 6 05:06:44 2006 +0000 2.3.90-27 -:100644 100644 b23bbad d4ba90f M glibc.spec +:100644 100644 b23bbada d4ba90f1 M glibc.spec commit 8c0a3d8241dc6310ded62fffedf9ace875ebf189 Author: Jakub Jelinek @@ -30248,7 +30368,7 @@ CommitDate: Wed Jan 4 09:38:31 2006 +0000 2.3.90-26 -:100644 100644 82757f7 b23bbad M glibc.spec +:100644 100644 82757f76 b23bbada M glibc.spec commit 8dcd30911718e1062e09b0ea9d3fb4fd06139350 Author: Jakub Jelinek @@ -30258,7 +30378,7 @@ CommitDate: Wed Jan 4 08:49:45 2006 +0000 2.3.90-26 -:100644 100644 ed6433e 82757f7 M glibc.spec +:100644 100644 ed6433ee 82757f76 M glibc.spec commit 813f76e2aa55b4e2d281e7b13cfdecb56d8e76ce Author: Jakub Jelinek @@ -30268,7 +30388,7 @@ CommitDate: Wed Jan 4 08:30:46 2006 +0000 2.3.90-26 -:100644 100644 b1df3f9 ed6433e M glibc.spec +:100644 100644 b1df3f9a ed6433ee M glibc.spec commit e1fb04fe0681cfc13e8b3fcde431959008f80ce9 Author: Jakub Jelinek @@ -30278,10 +30398,10 @@ CommitDate: Wed Jan 4 08:23:00 2006 +0000 auto-import glibc-2.3.90-26 on branch devel from glibc-2.3.90-26.src.rpm -:100644 100644 d030215 6dfb672 M .cvsignore -:100644 100644 d308a61 6ba1224 M glibc-fedora.patch -:100644 100644 8a90d3f b1df3f9 M glibc.spec -:100644 100644 0aab381 9ebfbf5 M sources +:100644 100644 d0302150 6dfb6728 M .cvsignore +:100644 100644 d308a612 6ba1224c M glibc-fedora.patch +:100644 100644 8a90d3f1 b1df3f9a M glibc.spec +:100644 100644 0aab3815 9ebfbf5d M sources commit 37f94da133d7a6acbc69cb3e86274be75c913703 Author: Jakub Jelinek @@ -30291,7 +30411,7 @@ CommitDate: Mon Jan 2 22:12:57 2006 +0000 2.3.90-25 -:100644 100644 aa2dcba 8a90d3f M glibc.spec +:100644 100644 aa2dcbaf 8a90d3f1 M glibc.spec commit 96f42f961a8adcfe58d8632003f39daf4cf14e5b Author: Jakub Jelinek @@ -30301,10 +30421,10 @@ CommitDate: Mon Jan 2 21:54:32 2006 +0000 auto-import glibc-2.3.90-25 on branch devel from glibc-2.3.90-25.src.rpm -:100644 100644 8696446 d030215 M .cvsignore -:100644 100644 c72209c d308a61 M glibc-fedora.patch -:100644 100644 b05fac7 aa2dcba M glibc.spec -:100644 100644 c66feaa 0aab381 M sources +:100644 100644 8696446a d0302150 M .cvsignore +:100644 100644 c72209c9 d308a612 M glibc-fedora.patch +:100644 100644 b05fac72 aa2dcbaf M glibc.spec +:100644 100644 c66feaa5 0aab3815 M sources commit dfc0bd01920a61cf2bfb12aff469cfbd70a7868f Author: Jakub Jelinek @@ -30314,7 +30434,7 @@ CommitDate: Mon Jan 2 11:58:25 2006 +0000 2.3.90-24 -:100644 100644 8fb0071 b05fac7 M glibc.spec +:100644 100644 8fb0071d b05fac72 M glibc.spec commit d73fe4152dd491f30ac04889b2dc98c75a33f40c Author: Jakub Jelinek @@ -30324,10 +30444,10 @@ CommitDate: Mon Jan 2 11:34:49 2006 +0000 auto-import glibc-2.3.90-24 on branch devel from glibc-2.3.90-24.src.rpm -:100644 100644 91821d7 8696446 M .cvsignore -:100644 100644 2dbd90a c72209c M glibc-fedora.patch -:100644 100644 c45696c 8fb0071 M glibc.spec -:100644 100644 a203901 c66feaa M sources +:100644 100644 91821d79 8696446a M .cvsignore +:100644 100644 2dbd90a2 c72209c9 M glibc-fedora.patch +:100644 100644 c45696c9 8fb0071d M glibc.spec +:100644 100644 a2039014 c66feaa5 M sources commit 0853a65b6536a9b209800b89216251c548715a87 Author: Jakub Jelinek @@ -30337,7 +30457,7 @@ CommitDate: Tue Dec 27 17:06:57 2005 +0000 2.3.90-23 -:100644 100644 99e13cc c45696c M glibc.spec +:100644 100644 99e13ccc c45696c9 M glibc.spec commit 5383d1f6145d0aa8a9b8f43040080cb1dc82a7d2 Author: Jakub Jelinek @@ -30347,7 +30467,7 @@ CommitDate: Tue Dec 27 16:50:40 2005 +0000 2.3.90-23 -:100644 100644 30169a3 99e13cc M glibc.spec +:100644 100644 30169a3f 99e13ccc M glibc.spec commit 807fd31c2b95a491d660a387b9218ef44ed8d7fb Author: Jakub Jelinek @@ -30357,10 +30477,10 @@ CommitDate: Tue Dec 27 16:48:46 2005 +0000 auto-import glibc-2.3.90-23 on branch devel from glibc-2.3.90-23.src.rpm -:100644 100644 4c381ad 91821d7 M .cvsignore -:100644 100644 41d1789 2dbd90a M glibc-fedora.patch -:100644 100644 b8b8a23 30169a3 M glibc.spec -:100644 100644 585dd45 a203901 M sources +:100644 100644 4c381ad4 91821d79 M .cvsignore +:100644 100644 41d17890 2dbd90a2 M glibc-fedora.patch +:100644 100644 b8b8a23f 30169a3f M glibc.spec +:100644 100644 585dd454 a2039014 M sources commit b287e0ac43449f24616171f3c38cb60bbd9a3951 Author: Jakub Jelinek @@ -30370,7 +30490,7 @@ CommitDate: Wed Dec 21 13:00:40 2005 +0000 2.3.90-22 -:100644 100644 50ac228 b8b8a23 M glibc.spec +:100644 100644 50ac2286 b8b8a23f M glibc.spec commit 5f488048217f9e4f33e98952b67720458196a0fe Author: Jakub Jelinek @@ -30380,10 +30500,10 @@ CommitDate: Wed Dec 21 11:47:59 2005 +0000 auto-import glibc-2.3.90-22 on branch devel from glibc-2.3.90-22.src.rpm -:100644 100644 13adc77 4c381ad M .cvsignore -:100644 100644 d6f117e 41d1789 M glibc-fedora.patch -:100644 100644 c55ba38 50ac228 M glibc.spec -:100644 100644 b006892 585dd45 M sources +:100644 100644 13adc775 4c381ad4 M .cvsignore +:100644 100644 d6f117e4 41d17890 M glibc-fedora.patch +:100644 100644 c55ba382 50ac2286 M glibc.spec +:100644 100644 b0068925 585dd454 M sources commit 5bba32e6d5d1afab4689a11f0ef9d97d5bc5a18b Author: Jakub Jelinek @@ -30393,10 +30513,10 @@ CommitDate: Tue Dec 20 18:34:30 2005 +0000 auto-import glibc-2.3.90-21 on branch devel from glibc-2.3.90-21.src.rpm -:100644 100644 b8ea667 13adc77 M .cvsignore -:100644 100644 63d98e9 d6f117e M glibc-fedora.patch -:100644 100644 25a375a c55ba38 M glibc.spec -:100644 100644 7fac811 b006892 M sources +:100644 100644 b8ea667f 13adc775 M .cvsignore +:100644 100644 63d98e9b d6f117e4 M glibc-fedora.patch +:100644 100644 25a375ac c55ba382 M glibc.spec +:100644 100644 7fac8118 b0068925 M sources commit 909acf057916a8642eeef9c165d972c32752fa49 Author: Jakub Jelinek @@ -30406,7 +30526,7 @@ CommitDate: Tue Dec 20 12:37:10 2005 +0000 2.3.90-20 -:100644 100644 cae3f06 25a375a M glibc.spec +:100644 100644 cae3f06e 25a375ac M glibc.spec commit 9723f24ad39c34c9320c9cebdc75b70d65ae2a6e Author: Jakub Jelinek @@ -30416,7 +30536,7 @@ CommitDate: Tue Dec 20 11:51:46 2005 +0000 2.3.90-20 -:100644 100644 fb5bfc8 cae3f06 M glibc.spec +:100644 100644 fb5bfc87 cae3f06e M glibc.spec commit 6a56b8e5985c3f177244d1c386533c0e702f6888 Author: Jakub Jelinek @@ -30426,7 +30546,7 @@ CommitDate: Tue Dec 20 11:37:17 2005 +0000 2.3.90-20 -:100644 100644 2258068 fb5bfc8 M glibc.spec +:100644 100644 22580682 fb5bfc87 M glibc.spec commit 8a25c5ed4152cbd5f3a3483346c397497bb7c56d Author: Jakub Jelinek @@ -30436,10 +30556,10 @@ CommitDate: Tue Dec 20 11:34:34 2005 +0000 auto-import glibc-2.3.90-20 on branch devel from glibc-2.3.90-20.src.rpm -:100644 100644 6a9c30c b8ea667 M .cvsignore -:100644 100644 fb55bce 63d98e9 M glibc-fedora.patch -:100644 100644 e19c8d0 2258068 M glibc.spec -:100644 100644 5c42ccf 7fac811 M sources +:100644 100644 6a9c30cc b8ea667f M .cvsignore +:100644 100644 fb55bce2 63d98e9b M glibc-fedora.patch +:100644 100644 e19c8d00 22580682 M glibc.spec +:100644 100644 5c42ccf5 7fac8118 M sources commit 0d2c529b1e01408c7296595e5bc60a417cfb774c Author: Jakub Jelinek @@ -30449,7 +30569,7 @@ CommitDate: Mon Dec 19 18:16:27 2005 +0000 2.3.90-19 -:100644 100644 8b8f1e0 e19c8d0 M glibc.spec +:100644 100644 8b8f1e09 e19c8d00 M glibc.spec commit da64eed81e024e698117add4e52fd6979c957793 Author: Jakub Jelinek @@ -30459,7 +30579,7 @@ CommitDate: Mon Dec 19 18:04:52 2005 +0000 2.3.90-19 -:100644 100644 ff36ad8 8b8f1e0 M glibc.spec +:100644 100644 ff36ad8e 8b8f1e09 M glibc.spec commit bb3cbbeb3ee491bb465d2c0344cabdae9e294c6c Author: Jakub Jelinek @@ -30469,7 +30589,7 @@ CommitDate: Mon Dec 19 13:36:53 2005 +0000 2.3.90-19 -:100644 100644 1059b80 ff36ad8 M glibc.spec +:100644 100644 1059b801 ff36ad8e M glibc.spec commit f99593848d0bb9b9c217bf51d36a46bce7d77d16 Author: Jakub Jelinek @@ -30479,10 +30599,10 @@ CommitDate: Mon Dec 19 13:06:57 2005 +0000 auto-import glibc-2.3.90-19 on branch devel from glibc-2.3.90-19.src.rpm -:100644 100644 0d5b4ec 6a9c30c M .cvsignore -:100644 100644 52a6d9d fb55bce M glibc-fedora.patch -:100644 100644 8a2d645 1059b80 M glibc.spec -:100644 100644 2dd0240 5c42ccf M sources +:100644 100644 0d5b4ec1 6a9c30cc M .cvsignore +:100644 100644 52a6d9da fb55bce2 M glibc-fedora.patch +:100644 100644 8a2d6459 1059b801 M glibc.spec +:100644 100644 2dd02407 5c42ccf5 M sources commit f37579f0c0547be1aae86734e108b053f5783edc Author: Jakub Jelinek @@ -30492,7 +30612,7 @@ CommitDate: Mon Dec 19 10:08:45 2005 +0000 2.3.90-18.1 -:100644 100644 5434de7 8a2d645 M glibc.spec +:100644 100644 5434de7c 8a2d6459 M glibc.spec commit b8b11f3758d09eeaaba0f5faea8c80c2a57005a1 Author: Jakub Jelinek @@ -30502,7 +30622,7 @@ CommitDate: Sat Nov 19 22:02:46 2005 +0000 2.3.90-18 -:100644 100644 4d98800 52a6d9d M glibc-fedora.patch +:100644 100644 4d98800a 52a6d9da M glibc-fedora.patch commit 3a237114b13851d5182d7c1173b4acfefa026d48 Author: Jakub Jelinek @@ -30512,10 +30632,10 @@ CommitDate: Sat Nov 19 20:44:50 2005 +0000 auto-import glibc-2.3.90-18 on branch devel from glibc-2.3.90-18.src.rpm -:100644 100644 bf7f2ce 0d5b4ec M .cvsignore -:100644 100644 c182824 4d98800 M glibc-fedora.patch -:100644 100644 ce9c141 5434de7 M glibc.spec -:100644 100644 7aaa3c0 2dd0240 M sources +:100644 100644 bf7f2ce9 0d5b4ec1 M .cvsignore +:100644 100644 c1828245 4d98800a M glibc-fedora.patch +:100644 100644 ce9c141a 5434de7c M glibc.spec +:100644 100644 7aaa3c04 2dd02407 M sources commit 41974371a622447ff2640fbe7c026e45100ac74d Author: Jakub Jelinek @@ -30525,10 +30645,10 @@ CommitDate: Wed Nov 16 08:56:27 2005 +0000 auto-import glibc-2.3.90-17 on branch devel from glibc-2.3.90-17.src.rpm -:100644 100644 a013e12 bf7f2ce M .cvsignore -:100644 100644 e707040 c182824 M glibc-fedora.patch -:100644 100644 4b85ccd ce9c141 M glibc.spec -:100644 100644 2734e9b 7aaa3c0 M sources +:100644 100644 a013e121 bf7f2ce9 M .cvsignore +:100644 100644 e7070407 c1828245 M glibc-fedora.patch +:100644 100644 4b85ccd9 ce9c141a M glibc.spec +:100644 100644 2734e9bd 7aaa3c04 M sources commit e4a18002564e2da764c86bd02e389066d0ab363f Author: Jakub Jelinek @@ -30538,7 +30658,7 @@ CommitDate: Tue Nov 15 10:01:26 2005 +0000 2.3.90-16 -:100644 100644 62beec7 e707040 M glibc-fedora.patch +:100644 100644 62beec7c e7070407 M glibc-fedora.patch commit b656b188181d70274d16be5d4d45770872c81a56 Author: Jakub Jelinek @@ -30548,10 +30668,10 @@ CommitDate: Tue Nov 15 09:36:31 2005 +0000 auto-import glibc-2.3.90-16 on branch devel from glibc-2.3.90-16.src.rpm -:100644 100644 23955b3 a013e12 M .cvsignore -:100644 100644 bcdfaa2 62beec7 M glibc-fedora.patch -:100644 100644 0fbe3df 4b85ccd M glibc.spec -:100644 100644 b82cd75 2734e9b M sources +:100644 100644 23955b3e a013e121 M .cvsignore +:100644 100644 bcdfaa23 62beec7c M glibc-fedora.patch +:100644 100644 0fbe3df8 4b85ccd9 M glibc.spec +:100644 100644 b82cd755 2734e9bd M sources commit df0287f83bf017827d1affb214465e28ace7e2cd Author: Jakub Jelinek @@ -30561,10 +30681,10 @@ CommitDate: Thu Oct 20 07:46:13 2005 +0000 auto-import glibc-2.3.90-15 on branch devel from glibc-2.3.90-15.src.rpm -:100644 100644 e5b6e3d 23955b3 M .cvsignore -:100644 100644 ba1df27 bcdfaa2 M glibc-fedora.patch -:100644 100644 d5c5ec8 0fbe3df M glibc.spec -:100644 100644 8a66b9c b82cd75 M sources +:100644 100644 e5b6e3dd 23955b3e M .cvsignore +:100644 100644 ba1df271 bcdfaa23 M glibc-fedora.patch +:100644 100644 d5c5ec81 0fbe3df8 M glibc.spec +:100644 100644 8a66b9cb b82cd755 M sources commit c8ff10b6da2a4475c6966dd54d0efb8bb436c8c7 Author: Jakub Jelinek @@ -30574,10 +30694,10 @@ CommitDate: Mon Oct 10 15:26:58 2005 +0000 auto-import glibc-2.3.90-14 on branch devel from glibc-2.3.90-14.src.rpm -:100644 100644 ffe9c8e e5b6e3d M .cvsignore -:100644 100644 54c104f ba1df27 M glibc-fedora.patch -:100644 100644 bbda5ef d5c5ec8 M glibc.spec -:100644 100644 6474a1f 8a66b9c M sources +:100644 100644 ffe9c8e0 e5b6e3dd M .cvsignore +:100644 100644 54c104f7 ba1df271 M glibc-fedora.patch +:100644 100644 bbda5eff d5c5ec81 M glibc.spec +:100644 100644 6474a1f8 8a66b9cb M sources commit 3a12799361566c1a979797bf02370cf82690b58d Author: Jakub Jelinek @@ -30587,7 +30707,7 @@ CommitDate: Mon Oct 3 21:56:48 2005 +0000 2.3.90-13 -:100644 100644 9999e10 54c104f M glibc-fedora.patch +:100644 100644 9999e102 54c104f7 M glibc-fedora.patch commit d81612f8ce4de23ba1151d481eb9935c3ca063bb Author: Jakub Jelinek @@ -30597,10 +30717,10 @@ CommitDate: Mon Oct 3 21:25:44 2005 +0000 auto-import glibc-2.3.90-13 on branch devel from glibc-2.3.90-13.src.rpm -:100644 100644 459f6bb ffe9c8e M .cvsignore -:100644 100644 77904f3 9999e10 M glibc-fedora.patch -:100644 100644 0e0cb5b bbda5ef M glibc.spec -:100644 100644 5f12ce8 6474a1f M sources +:100644 100644 459f6bbd ffe9c8e0 M .cvsignore +:100644 100644 77904f3a 9999e102 M glibc-fedora.patch +:100644 100644 0e0cb5b3 bbda5eff M glibc.spec +:100644 100644 5f12ce8c 6474a1f8 M sources commit bc6fb1284d31a93342bbbddee2b5477f1a8226fa Author: Jakub Jelinek @@ -30610,7 +30730,7 @@ CommitDate: Mon Sep 12 16:18:05 2005 +0000 2.3.90-12 -:100644 100644 bc1133f 5f12ce8 M sources +:100644 100644 bc1133f6 5f12ce8c M sources commit 2d428cd3f3c018f963e670506d490ee5cb063fde Author: Jakub Jelinek @@ -30620,7 +30740,7 @@ CommitDate: Mon Sep 12 14:44:40 2005 +0000 2.3.90-12 -:100644 100644 0b6978e bc1133f M sources +:100644 100644 0b6978ec bc1133f6 M sources commit 63b6b66e8c4bfe92147414dcdf198904e6420f9d Author: Jakub Jelinek @@ -30630,10 +30750,10 @@ CommitDate: Mon Sep 12 13:33:00 2005 +0000 auto-import glibc-2.3.90-12 on branch devel from glibc-2.3.90-12.src.rpm -:100644 100644 ca438a8 459f6bb M .cvsignore -:100644 100644 6b9204d 77904f3 M glibc-fedora.patch -:100644 100644 09fe7e7 0e0cb5b M glibc.spec -:100644 100644 4f7d60f 0b6978e M sources +:100644 100644 ca438a86 459f6bbd M .cvsignore +:100644 100644 6b9204d5 77904f3a M glibc-fedora.patch +:100644 100644 09fe7e7f 0e0cb5b3 M glibc.spec +:100644 100644 4f7d60f7 0b6978ec M sources commit 50c75d2c4de20dde140905dfa48cb0135b844855 Author: Jakub Jelinek @@ -30643,10 +30763,10 @@ CommitDate: Mon Aug 29 19:59:27 2005 +0000 auto-import glibc-2.3.90-11 on branch devel from glibc-2.3.90-11.src.rpm -:100644 100644 68c10d9 ca438a8 M .cvsignore -:100644 100644 cf2b183 6b9204d M glibc-fedora.patch -:100644 100644 989df32 09fe7e7 M glibc.spec -:100644 100644 8cc5a61 4f7d60f M sources +:100644 100644 68c10d9a ca438a86 M .cvsignore +:100644 100644 cf2b1837 6b9204d5 M glibc-fedora.patch +:100644 100644 989df322 09fe7e7f M glibc.spec +:100644 100644 8cc5a61e 4f7d60f7 M sources commit d1bc0a01f94b7861ae9096627681cff8824f083f Author: Jakub Jelinek @@ -30656,10 +30776,10 @@ CommitDate: Wed Aug 24 08:04:30 2005 +0000 auto-import glibc-2.3.90-10 on branch devel from glibc-2.3.90-10.src.rpm -:100644 100644 334f335 68c10d9 M .cvsignore -:100644 100644 cd4fd4c cf2b183 M glibc-fedora.patch -:100644 100644 05b5faf 989df32 M glibc.spec -:100644 100644 83ead89 8cc5a61 M sources +:100644 100644 334f335a 68c10d9a M .cvsignore +:100644 100644 cd4fd4c6 cf2b1837 M glibc-fedora.patch +:100644 100644 05b5faf0 989df322 M glibc.spec +:100644 100644 83ead896 8cc5a61e M sources commit 20eeaeb056bac259aaf6783759b8b53fd88e8470 Author: Jakub Jelinek @@ -30669,10 +30789,10 @@ CommitDate: Mon Aug 22 08:38:00 2005 +0000 auto-import glibc-2.3.90-9 on branch devel from glibc-2.3.90-9.src.rpm -:100644 100644 952655f 334f335 M .cvsignore -:100644 100644 71638e7 cd4fd4c M glibc-fedora.patch -:100644 100644 5c85cfd 05b5faf M glibc.spec -:100644 100644 780a220 83ead89 M sources +:100644 100644 952655f2 334f335a M .cvsignore +:100644 100644 71638e7b cd4fd4c6 M glibc-fedora.patch +:100644 100644 5c85cfd4 05b5faf0 M glibc.spec +:100644 100644 780a220e 83ead896 M sources commit 6bdbb1e7e59c1585ddc789395fc1c571e3787c03 Author: Jakub Jelinek @@ -30682,10 +30802,10 @@ CommitDate: Mon Aug 8 22:05:34 2005 +0000 auto-import glibc-2.3.90-8 on branch devel from glibc-2.3.90-8.src.rpm -:100644 100644 1758f0e 952655f M .cvsignore -:100644 100644 6d62e0e 71638e7 M glibc-fedora.patch -:100644 100644 1fceb96 5c85cfd M glibc.spec -:100644 100644 4424e82 780a220 M sources +:100644 100644 1758f0e2 952655f2 M .cvsignore +:100644 100644 6d62e0e1 71638e7b M glibc-fedora.patch +:100644 100644 1fceb961 5c85cfd4 M glibc.spec +:100644 100644 4424e825 780a220e M sources commit eed6a0fa9fb071eb0ca92536e7b12cc5016dc8f7 Author: Jakub Jelinek @@ -30695,10 +30815,10 @@ CommitDate: Fri Jul 29 17:44:03 2005 +0000 auto-import glibc-2.3.90-7 on branch devel from glibc-2.3.90-7.src.rpm -:100644 100644 f33c7f6 1758f0e M .cvsignore -:100644 100644 3061a08 6d62e0e M glibc-fedora.patch -:100644 100644 d745d6a 1fceb96 M glibc.spec -:100644 100644 87c9020 4424e82 M sources +:100644 100644 f33c7f63 1758f0e2 M .cvsignore +:100644 100644 3061a08a 6d62e0e1 M glibc-fedora.patch +:100644 100644 d745d6a1 1fceb961 M glibc.spec +:100644 100644 87c90205 4424e825 M sources commit 799ca1979c9dfeb377ff0efa58f27e297491c10a Author: Jakub Jelinek @@ -30708,10 +30828,10 @@ CommitDate: Mon Jul 25 07:05:29 2005 +0000 auto-import glibc-2.3.90-6 on branch devel from glibc-2.3.90-6.src.rpm -:100644 100644 81ef5e9 f33c7f6 M .cvsignore -:100644 100644 3cc5288 3061a08 M glibc-fedora.patch -:100644 100644 42d543a d745d6a M glibc.spec -:100644 100644 fe963e9 87c9020 M sources +:100644 100644 81ef5e97 f33c7f63 M .cvsignore +:100644 100644 3cc52884 3061a08a M glibc-fedora.patch +:100644 100644 42d543a0 d745d6a1 M glibc.spec +:100644 100644 fe963e98 87c90205 M sources commit 6396c0946132dcaebb3b1cc95ca3c61dd2aea609 Author: Jakub Jelinek @@ -30721,9 +30841,9 @@ CommitDate: Fri Jul 22 09:26:40 2005 +0000 auto-import glibc-2.3.90-5 on branch devel from glibc-2.3.90-5.src.rpm -:100644 100644 672585a 3cc5288 M glibc-fedora.patch -:100644 100644 72d9fe8 42d543a M glibc.spec -:100644 100644 552659c fe963e9 M sources +:100644 100644 672585a7 3cc52884 M glibc-fedora.patch +:100644 100644 72d9fe8b 42d543a0 M glibc.spec +:100644 100644 552659c2 fe963e98 M sources commit a70b2b646e6f6e48750547088595265b2548f23a Author: Jakub Jelinek @@ -30733,10 +30853,10 @@ CommitDate: Fri Jul 22 06:22:21 2005 +0000 auto-import glibc-2.3.90-4 on branch devel from glibc-2.3.90-4.src.rpm -:100644 100644 363ee18 81ef5e9 M .cvsignore -:100644 100644 75d508e 672585a M glibc-fedora.patch -:100644 100644 03ae758 72d9fe8 M glibc.spec -:100644 100644 8d7d2d7 552659c M sources +:100644 100644 363ee18d 81ef5e97 M .cvsignore +:100644 100644 75d508eb 672585a7 M glibc-fedora.patch +:100644 100644 03ae758d 72d9fe8b M glibc.spec +:100644 100644 8d7d2d71 552659c2 M sources commit 48f35507394ca875ac495bd4f7e4918944630749 Author: Jakub Jelinek @@ -30746,10 +30866,10 @@ CommitDate: Thu Jul 21 10:04:55 2005 +0000 auto-import glibc-2.3.90-3 on branch devel from glibc-2.3.90-3.src.rpm -:100644 100644 268475d 363ee18 M .cvsignore -:100644 100644 098ac05 75d508e M glibc-fedora.patch -:100644 100644 478155d 03ae758 M glibc.spec -:100644 100644 d50b48d 8d7d2d7 M sources +:100644 100644 268475d9 363ee18d M .cvsignore +:100644 100644 098ac054 75d508eb M glibc-fedora.patch +:100644 100644 478155d0 03ae758d M glibc.spec +:100644 100644 d50b48d7 8d7d2d71 M sources commit efbd5659f4b70179456dcb9bfa6bef6cc19fe96f Author: Jakub Jelinek @@ -30759,7 +30879,7 @@ CommitDate: Fri Jul 8 11:42:04 2005 +0000 2.3.90-2 -:100644 100644 8bdf203 478155d M glibc.spec +:100644 100644 8bdf2030 478155d0 M glibc.spec commit 2f520cac16a8ae1a47a06bb93ab6934a9c104c9e Author: Jakub Jelinek @@ -30769,7 +30889,7 @@ CommitDate: Fri Jul 8 10:21:35 2005 +0000 2.3.90-2 -:100644 100644 31e8a3e 8bdf203 M glibc.spec +:100644 100644 31e8a3e6 8bdf2030 M glibc.spec commit 24d9119125e6c3721e3254f96e36bd90309b1f61 Author: Jakub Jelinek @@ -30779,10 +30899,10 @@ CommitDate: Fri Jul 8 10:17:59 2005 +0000 auto-import glibc-2.3.90-2 on branch devel from glibc-2.3.90-2.src.rpm -:100644 100644 11ce915 268475d M .cvsignore -:100644 100644 cf9d6b6 098ac05 M glibc-fedora.patch -:100644 100644 6e9e26c 31e8a3e M glibc.spec -:100644 100644 9b72895 d50b48d M sources +:100644 100644 11ce9155 268475d9 M .cvsignore +:100644 100644 cf9d6b6c 098ac054 M glibc-fedora.patch +:100644 100644 6e9e26c6 31e8a3e6 M glibc.spec +:100644 100644 9b72895d d50b48d7 M sources commit ee4656d0203f760b9c0d2e06ce3ba7a025583636 Author: Jakub Jelinek @@ -30792,7 +30912,7 @@ CommitDate: Mon Jun 27 20:06:18 2005 +0000 2.3.90-1 -:100644 100644 8326784 6e9e26c M glibc.spec +:100644 100644 8326784b 6e9e26c6 M glibc.spec commit 0ccd41a417beb99b4ff95bc1b1fb26c44e311836 Author: Jakub Jelinek @@ -30802,7 +30922,7 @@ CommitDate: Mon Jun 27 16:54:27 2005 +0000 2.3.90-1 -:100644 100644 2a93a04 8326784 M glibc.spec +:100644 100644 2a93a04b 8326784b M glibc.spec commit 38ff1b6d72935606cbac199b855abe4dcc3fef65 Author: Jakub Jelinek @@ -30812,7 +30932,7 @@ CommitDate: Mon Jun 27 14:48:07 2005 +0000 2.3.90-1 -:100644 100644 cd32dd5 2a93a04 M glibc.spec +:100644 100644 cd32dd5e 2a93a04b M glibc.spec commit ab188f024d2dbfd4f1a15fb74e82f88d91cb33f5 Author: Jakub Jelinek @@ -30822,7 +30942,7 @@ CommitDate: Mon Jun 27 14:09:49 2005 +0000 2.3.90-1 -:100644 100644 064158e cd32dd5 M glibc.spec +:100644 100644 064158e7 cd32dd5e M glibc.spec commit 5a7053e819af6cb4accf455647d072535f06b05b Author: Jakub Jelinek @@ -30832,10 +30952,10 @@ CommitDate: Mon Jun 27 14:02:02 2005 +0000 auto-import glibc-2.3.90-1 on branch devel from glibc-2.3.90-1.src.rpm -:100644 100644 6f486d4 11ce915 M .cvsignore -:100644 100644 1b6a54f cf9d6b6 M glibc-fedora.patch -:100644 100644 327cefa 064158e M glibc.spec -:100644 100644 2be3a7a 9b72895 M sources +:100644 100644 6f486d45 11ce9155 M .cvsignore +:100644 100644 1b6a54f3 cf9d6b6c M glibc-fedora.patch +:100644 100644 327cefa2 064158e7 M glibc.spec +:100644 100644 2be3a7a6 9b72895d M sources commit 0d2a757f3ea80b52056f6b1dcef05f521257e164 Author: Jakub Jelinek @@ -30845,10 +30965,10 @@ CommitDate: Mon Jun 20 17:17:29 2005 +0000 auto-import glibc-2.3.5-11 on branch devel from glibc-2.3.5-11.src.rpm -:100644 100644 615dfbb 6f486d4 M .cvsignore -:100644 100644 2092a22 1b6a54f M glibc-fedora.patch -:100644 100644 b2fa86b 327cefa M glibc.spec -:100644 100644 1c282bd 2be3a7a M sources +:100644 100644 615dfbbf 6f486d45 M .cvsignore +:100644 100644 2092a22a 1b6a54f3 M glibc-fedora.patch +:100644 100644 b2fa86be 327cefa2 M glibc.spec +:100644 100644 1c282bd5 2be3a7a6 M sources commit 1803713c8ce506ad176e8bd77625059ec4276a55 Author: Jakub Jelinek @@ -30858,9 +30978,9 @@ CommitDate: Mon May 30 10:02:23 2005 +0000 auto-import glibc-2.3.5-10 on branch devel from glibc-2.3.5-10.src.rpm -:100644 100644 5f110ad 2092a22 M glibc-fedora.patch -:100644 100644 21bc5c6 b2fa86b M glibc.spec -:100644 100644 2b63493 1c282bd M sources +:100644 100644 5f110ad3 2092a22a M glibc-fedora.patch +:100644 100644 21bc5c61 b2fa86be M glibc.spec +:100644 100644 2b63493e 1c282bd5 M sources commit 3fd119196fc05c9cf7fa07646c00b35780f207ab Author: Jakub Jelinek @@ -30870,10 +30990,10 @@ CommitDate: Tue May 24 16:58:02 2005 +0000 auto-import glibc-2.3.5-9 on branch devel from glibc-2.3.5-9.src.rpm -:100644 100644 3651b84 615dfbb M .cvsignore -:100644 100644 d7804f7 5f110ad M glibc-fedora.patch -:100644 100644 c3d996f 21bc5c6 M glibc.spec -:100644 100644 1ffd8c2 2b63493 M sources +:100644 100644 3651b844 615dfbbf M .cvsignore +:100644 100644 d7804f75 5f110ad3 M glibc-fedora.patch +:100644 100644 c3d996f3 21bc5c61 M glibc.spec +:100644 100644 1ffd8c22 2b63493e M sources commit 11b589d5c99c3bb665286549c97b77b4f0fe6c4f Author: Jakub Jelinek @@ -30883,9 +31003,9 @@ CommitDate: Mon May 23 18:09:03 2005 +0000 2.3.5-8 -:100644 100644 b742dbc d7804f7 M glibc-fedora.patch -:100644 100644 9965143 c3d996f M glibc.spec -:100644 100644 b06fdb4 1ffd8c2 M sources +:100644 100644 b742dbc9 d7804f75 M glibc-fedora.patch +:100644 100644 99651433 c3d996f3 M glibc.spec +:100644 100644 b06fdb4d 1ffd8c22 M sources commit 102ad46987791b5aaab706cf638f5a416f4d32a0 Author: Jakub Jelinek @@ -30895,10 +31015,10 @@ CommitDate: Mon May 23 15:24:21 2005 +0000 auto-import glibc-2.3.5-8 on branch devel from glibc-2.3.5-8.src.rpm -:100644 100644 0d2235a 3651b84 M .cvsignore -:100644 100644 afa21dd b742dbc M glibc-fedora.patch -:100644 100644 ba9adb5 9965143 M glibc.spec -:100644 100644 1d774df b06fdb4 M sources +:100644 100644 0d2235a6 3651b844 M .cvsignore +:100644 100644 afa21dd9 b742dbc9 M glibc-fedora.patch +:100644 100644 ba9adb5a 99651433 M glibc.spec +:100644 100644 1d774dfe b06fdb4d M sources commit f00c809b1db967b13d49156ece796ecf0ed1f8f6 Author: Jakub Jelinek @@ -30908,10 +31028,10 @@ CommitDate: Fri May 20 10:32:46 2005 +0000 auto-import glibc-2.3.5-7 on branch devel from glibc-2.3.5-7.src.rpm -:100644 100644 0682b47 0d2235a M .cvsignore -:100644 100644 3d1cbb9 afa21dd M glibc-fedora.patch -:100644 100644 1a06159 ba9adb5 M glibc.spec -:100644 100644 aca96b5 1d774df M sources +:100644 100644 0682b474 0d2235a6 M .cvsignore +:100644 100644 3d1cbb9c afa21dd9 M glibc-fedora.patch +:100644 100644 1a061590 ba9adb5a M glibc.spec +:100644 100644 aca96b51 1d774dfe M sources commit 1c9570f3b708180121f085efeb712f229c192036 Author: Jakub Jelinek @@ -30921,7 +31041,7 @@ CommitDate: Wed May 4 19:04:18 2005 +0000 2.3.5-6 -:100644 100644 21ca32c 1a06159 M glibc.spec +:100644 100644 21ca32cd 1a061590 M glibc.spec commit 96892c8405a3c03db7b6828b494a261bd84e96fd Author: Jakub Jelinek @@ -30931,10 +31051,10 @@ CommitDate: Wed May 4 18:53:32 2005 +0000 auto-import glibc-2.3.5-6 on branch devel from glibc-2.3.5-6.src.rpm -:100644 100644 367bec2 0682b47 M .cvsignore -:100644 100644 7ee2754 3d1cbb9 M glibc-fedora.patch -:100644 100644 3c6662f 21ca32c M glibc.spec -:100644 100644 f4a7225 aca96b5 M sources +:100644 100644 367bec27 0682b474 M .cvsignore +:100644 100644 7ee2754e 3d1cbb9c M glibc-fedora.patch +:100644 100644 3c6662fa 21ca32cd M glibc.spec +:100644 100644 f4a7225a aca96b51 M sources commit afd017c96126bef261fccf093e61b66dac9d0797 Author: Jakub Jelinek @@ -30944,10 +31064,10 @@ CommitDate: Tue May 3 10:14:26 2005 +0000 auto-import glibc-2.3.5-5 on branch devel from glibc-2.3.5-5.src.rpm -:100644 100644 a2fc35b 367bec2 M .cvsignore -:100644 100644 925f0d9 7ee2754 M glibc-fedora.patch -:100644 100644 fcae8fe 3c6662f M glibc.spec -:100644 100644 1074d34 f4a7225 M sources +:100644 100644 a2fc35bd 367bec27 M .cvsignore +:100644 100644 925f0d9f 7ee2754e M glibc-fedora.patch +:100644 100644 fcae8fe2 3c6662fa M glibc.spec +:100644 100644 1074d340 f4a7225a M sources commit 5869ee1726adbc0b18b780bff970c9b044eb073e Author: Jakub Jelinek @@ -30957,10 +31077,10 @@ CommitDate: Thu Apr 28 09:50:59 2005 +0000 auto-import glibc-2.3.5-4 on branch devel from glibc-2.3.5-4.src.rpm -:100644 100644 1468f54 a2fc35b M .cvsignore -:100644 100644 921619b 925f0d9 M glibc-fedora.patch -:100644 100644 7223ab7 fcae8fe M glibc.spec -:100644 100644 fd164a6 1074d34 M sources +:100644 100644 1468f545 a2fc35bd M .cvsignore +:100644 100644 921619b4 925f0d9f M glibc-fedora.patch +:100644 100644 7223ab78 fcae8fe2 M glibc.spec +:100644 100644 fd164a6e 1074d340 M sources commit 7ee79946457805f86e5a88f526f37a3733f7c933 Author: Jakub Jelinek @@ -30970,10 +31090,10 @@ CommitDate: Wed Apr 27 20:09:52 2005 +0000 auto-import glibc-2.3.5-3 on branch devel from glibc-2.3.5-3.src.rpm -:100644 100644 a57f606 1468f54 M .cvsignore -:100644 100644 c02d285 921619b M glibc-fedora.patch -:100644 100644 53207d1 7223ab7 M glibc.spec -:100644 100644 9d09a8c fd164a6 M sources +:100644 100644 a57f6067 1468f545 M .cvsignore +:100644 100644 c02d2859 921619b4 M glibc-fedora.patch +:100644 100644 53207d16 7223ab78 M glibc.spec +:100644 100644 9d09a8cb fd164a6e M sources commit 9b11b7894709b040aa33b0c4759081f566865100 Author: Jakub Jelinek @@ -30983,7 +31103,7 @@ CommitDate: Wed Apr 27 13:51:37 2005 +0000 2.3.5-2 -:100644 100644 427331c c02d285 M glibc-fedora.patch +:100644 100644 427331c0 c02d2859 M glibc-fedora.patch commit d4f6361c18d48b76792ec4967238b997e2fca075 Author: Jakub Jelinek @@ -30993,7 +31113,7 @@ CommitDate: Wed Apr 27 13:20:28 2005 +0000 2.3.5-2 -:100644 100644 149227b 427331c M glibc-fedora.patch +:100644 100644 149227ba 427331c0 M glibc-fedora.patch commit 82511e5f80f26f287272ce0105ae21ca0ba89ec1 Author: Jakub Jelinek @@ -31003,7 +31123,7 @@ CommitDate: Wed Apr 27 12:53:38 2005 +0000 2.3.5-2 -:100644 100644 78748e9 149227b M glibc-fedora.patch +:100644 100644 78748e93 149227ba M glibc-fedora.patch commit a9d8ca8272da17b7ee0e59af90bfef546771e624 Author: Jakub Jelinek @@ -31013,10 +31133,10 @@ CommitDate: Wed Apr 27 12:26:45 2005 +0000 auto-import glibc-2.3.5-2 on branch devel from glibc-2.3.5-2.src.rpm -:100644 100644 9ad3ab6 a57f606 M .cvsignore -:100644 100644 b3bb663 78748e9 M glibc-fedora.patch -:100644 100644 c10a89d 53207d1 M glibc.spec -:100644 100644 73ca7f4 9d09a8c M sources +:100644 100644 9ad3ab60 a57f6067 M .cvsignore +:100644 100644 b3bb6631 78748e93 M glibc-fedora.patch +:100644 100644 c10a89d1 53207d16 M glibc.spec +:100644 100644 73ca7f44 9d09a8cb M sources commit 0a19918c48de7b77f579be06378c7a4331aff3a8 Author: roland @@ -31026,10 +31146,10 @@ CommitDate: Fri Apr 15 09:58:24 2005 +0000 auto-import glibc-2.3.5-1 on branch devel from glibc-2.3.5-1.src.rpm -:100644 100644 4fe2777 9ad3ab6 M .cvsignore -:100644 100644 6909e05 b3bb663 M glibc-fedora.patch -:100644 100644 4e0a0eb c10a89d M glibc.spec -:100644 100644 4f06374 73ca7f4 M sources +:100644 100644 4fe27779 9ad3ab60 M .cvsignore +:100644 100644 6909e052 b3bb6631 M glibc-fedora.patch +:100644 100644 4e0a0eb2 c10a89d1 M glibc.spec +:100644 100644 4f06374f 73ca7f44 M sources commit a9a561553fc86dc139b8687d07ca4f14bb369c51 Author: Jakub Jelinek @@ -31039,10 +31159,10 @@ CommitDate: Tue Apr 5 22:14:00 2005 +0000 auto-import glibc-2.3.4-21 on branch devel from glibc-2.3.4-21.src.rpm -:100644 100644 007b46e 4fe2777 M .cvsignore -:100644 100644 b24805c 6909e05 M glibc-fedora.patch -:100644 100644 19e5abc 4e0a0eb M glibc.spec -:100644 100644 a49c134 4f06374 M sources +:100644 100644 007b46e5 4fe27779 M .cvsignore +:100644 100644 b24805cb 6909e052 M glibc-fedora.patch +:100644 100644 19e5abc9 4e0a0eb2 M glibc.spec +:100644 100644 a49c134d 4f06374f M sources commit d84155bf0ce48114ec7ecd70962de9f3b089e021 Author: Jakub Jelinek @@ -31052,7 +31172,7 @@ CommitDate: Mon Apr 4 22:18:34 2005 +0000 2.3.4-20 -:100644 100644 aa135c1 19e5abc M glibc.spec +:100644 100644 aa135c1c 19e5abc9 M glibc.spec commit ced11a0e35fc2b015bb3132a1fd8ccb26a40644d Author: Jakub Jelinek @@ -31062,8 +31182,8 @@ CommitDate: Mon Apr 4 19:51:39 2005 +0000 2.3.4-20 -:100644 100644 fbb3d66 b24805c M glibc-fedora.patch -:100644 100644 d97231c aa135c1 M glibc.spec +:100644 100644 fbb3d662 b24805cb M glibc-fedora.patch +:100644 100644 d97231cc aa135c1c M glibc.spec commit a2deec0522be348bac963c07b7995bc241f21a90 Author: Jakub Jelinek @@ -31073,7 +31193,7 @@ CommitDate: Sat Apr 2 11:17:47 2005 +0000 2.3.4-19 -:100644 100644 d7d79d1 d97231c M glibc.spec +:100644 100644 d7d79d16 d97231cc M glibc.spec commit adfd9b81dd6b38c7b039423513bdc70993c49fe4 Author: Jakub Jelinek @@ -31083,7 +31203,7 @@ CommitDate: Sat Apr 2 11:13:35 2005 +0000 2.3.4-19 -:100644 100644 ac6854b d7d79d1 M glibc.spec +:100644 100644 ac6854b2 d7d79d16 M glibc.spec commit b9e65a8e5be41e35da3e7dbcee8717b47f30c562 Author: Jakub Jelinek @@ -31093,7 +31213,7 @@ CommitDate: Fri Apr 1 23:36:57 2005 +0000 2.3.4-19 -:100644 100644 aa870a2 ac6854b M glibc.spec +:100644 100644 aa870a28 ac6854b2 M glibc.spec commit 619faf4e2671ce3a751f83ad70796d776e8c2b90 Author: Jakub Jelinek @@ -31103,7 +31223,7 @@ CommitDate: Fri Apr 1 23:13:25 2005 +0000 2.3.4-19 -:100644 100644 59819be aa870a2 M glibc.spec +:100644 100644 59819be0 aa870a28 M glibc.spec commit 4465bbcd3df379f7d25fad196160bd43ec0d92ae Author: Jakub Jelinek @@ -31113,10 +31233,10 @@ CommitDate: Fri Apr 1 16:55:01 2005 +0000 auto-import glibc-2.3.4-19 on branch devel from glibc-2.3.4-19.src.rpm -:100644 100644 a744cf5 007b46e M .cvsignore -:100644 100644 1d0994b fbb3d66 M glibc-fedora.patch -:100644 100644 2a1c787 59819be M glibc.spec -:100644 100644 c2bf21d a49c134 M sources +:100644 100644 a744cf5e 007b46e5 M .cvsignore +:100644 100644 1d0994b1 fbb3d662 M glibc-fedora.patch +:100644 100644 2a1c787d 59819be0 M glibc.spec +:100644 100644 c2bf21da a49c134d M sources commit 382a296001a6f2490468dd808ad9bd46249f3e6e Author: Jakub Jelinek @@ -31126,9 +31246,9 @@ CommitDate: Fri Mar 25 12:20:11 2005 +0000 auto-import glibc-2.3.4-18 on branch devel from glibc-2.3.4-18.src.rpm -:100644 100644 e69b395 1d0994b M glibc-fedora.patch -:100644 100644 51ffad2 2a1c787 M glibc.spec -:100644 100644 3e3dade c2bf21d M sources +:100644 100644 e69b3959 1d0994b1 M glibc-fedora.patch +:100644 100644 51ffad22 2a1c787d M glibc.spec +:100644 100644 3e3dade6 c2bf21da M sources commit a5475cb9242512613dd81664172fcb595b83d37a Author: Jakub Jelinek @@ -31138,7 +31258,7 @@ CommitDate: Fri Mar 25 08:31:15 2005 +0000 Fix wcstol and strtol with new GCC. -:100644 100644 8626f2d e69b395 M glibc-fedora.patch +:100644 100644 8626f2d2 e69b3959 M glibc-fedora.patch commit d04ad27e565774089eb299a9e67113bc5e3a4ebb Author: Jakub Jelinek @@ -31148,10 +31268,10 @@ CommitDate: Thu Mar 24 09:08:31 2005 +0000 auto-import glibc-2.3.4-17 on branch devel from glibc-2.3.4-17.src.rpm -:100644 100644 f19de63 a744cf5 M .cvsignore -:100644 100644 c756eae 8626f2d M glibc-fedora.patch -:100644 100644 ec2d1be 51ffad2 M glibc.spec -:100644 100644 5b258a7 3e3dade M sources +:100644 100644 f19de63f a744cf5e M .cvsignore +:100644 100644 c756eae5 8626f2d2 M glibc-fedora.patch +:100644 100644 ec2d1be2 51ffad22 M glibc.spec +:100644 100644 5b258a7f 3e3dade6 M sources commit a67e3da90770c5102ca03640a361b624717707b3 Author: Jakub Jelinek @@ -31161,7 +31281,7 @@ CommitDate: Sun Mar 20 07:06:13 2005 +0000 2.3.4-16 -:100644 100644 2ce9ad1 ec2d1be M glibc.spec +:100644 100644 2ce9ad16 ec2d1be2 M glibc.spec commit 8d6dc3baf57a3d267769e146b46244a809bbc893 Author: Jakub Jelinek @@ -31171,10 +31291,10 @@ CommitDate: Sat Mar 19 22:00:27 2005 +0000 auto-import glibc-2.3.4-15 on branch devel from glibc-2.3.4-15.src.rpm -:100644 100644 74b6c81 f19de63 M .cvsignore -:100644 100644 5bf1e4d c756eae M glibc-fedora.patch -:100644 100644 8c79947 2ce9ad1 M glibc.spec -:100644 100644 4854449 5b258a7 M sources +:100644 100644 74b6c810 f19de63f M .cvsignore +:100644 100644 5bf1e4d9 c756eae5 M glibc-fedora.patch +:100644 100644 8c799477 2ce9ad16 M glibc.spec +:100644 100644 4854449a 5b258a7f M sources commit 5de4c62391633e92fd8640dd288ffcd515a4b447 Author: roland @@ -31184,8 +31304,8 @@ CommitDate: Sun Mar 6 23:47:00 2005 +0000 auto-import glibc-2.3.4-14 on branch devel from glibc-2.3.4-14.src.rpm -:100644 100644 35804a2 5bf1e4d M glibc-fedora.patch -:100644 100644 1f5457b 8c79947 M glibc.spec +:100644 100644 35804a2e 5bf1e4d9 M glibc-fedora.patch +:100644 100644 1f5457b7 8c799477 M glibc.spec commit 0c99a24061577ea491c8420dfaf36b2c229ad250 Author: roland @@ -31195,9 +31315,9 @@ CommitDate: Sun Mar 6 21:04:43 2005 +0000 auto-import glibc-2.3.4-13 on branch devel from glibc-2.3.4-13.src.rpm -:100644 100644 4c95fb5 35804a2 M glibc-fedora.patch -:100644 100644 fc5b920 1f5457b M glibc.spec -:100644 100644 a723d6f 4854449 M sources +:100644 100644 4c95fb57 35804a2e M glibc-fedora.patch +:100644 100644 fc5b9202 1f5457b7 M glibc.spec +:100644 100644 a723d6f0 4854449a M sources commit ff798471238935f07a95d6adebc61ff8cf9498ef Author: Jakub Jelinek @@ -31207,9 +31327,9 @@ CommitDate: Sat Mar 5 14:14:54 2005 +0000 auto-import glibc-2.3.4-12 on branch devel from glibc-2.3.4-12.src.rpm -:100644 100644 45d08f9 4c95fb5 M glibc-fedora.patch -:100644 100644 b5c1a3b fc5b920 M glibc.spec -:100644 100644 51dbc5a a723d6f M sources +:100644 100644 45d08f9a 4c95fb57 M glibc-fedora.patch +:100644 100644 b5c1a3bd fc5b9202 M glibc.spec +:100644 100644 51dbc5a6 a723d6f0 M sources commit 155304c64077fc06876d87a462a3b13afb6dea49 Author: Jakub Jelinek @@ -31219,7 +31339,7 @@ CommitDate: Sat Mar 5 00:23:38 2005 +0000 2.3.4-11 -:100644 100644 93abdc2 45d08f9 M glibc-fedora.patch +:100644 100644 93abdc29 45d08f9a M glibc-fedora.patch commit 1fec258384d14a8ef063cb9a53eebfc6ac1a47a0 Author: Jakub Jelinek @@ -31229,7 +31349,7 @@ CommitDate: Fri Mar 4 23:28:05 2005 +0000 2.3.4-11 -:100644 100644 6b6bd39 93abdc2 M glibc-fedora.patch +:100644 100644 6b6bd39f 93abdc29 M glibc-fedora.patch commit 28d2eaadf879398cec88535200491598574f0653 Author: Jakub Jelinek @@ -31239,7 +31359,7 @@ CommitDate: Fri Mar 4 19:28:16 2005 +0000 2.3.4-11 -:100644 100644 fec8864 6b6bd39 M glibc-fedora.patch +:100644 100644 fec88649 6b6bd39f M glibc-fedora.patch commit aa68137e2d84f111451803fae1bc3a13b453c14d Author: Jakub Jelinek @@ -31249,10 +31369,10 @@ CommitDate: Fri Mar 4 00:18:49 2005 +0000 auto-import glibc-2.3.4-11 on branch devel from glibc-2.3.4-11.src.rpm -:100644 100644 32bd9f5 74b6c81 M .cvsignore -:100644 100644 2c2f3d3 fec8864 M glibc-fedora.patch -:100644 100644 56977a8 b5c1a3b M glibc.spec -:100644 100644 8651cdc 51dbc5a M sources +:100644 100644 32bd9f5d 74b6c810 M .cvsignore +:100644 100644 2c2f3d3a fec88649 M glibc-fedora.patch +:100644 100644 56977a8a b5c1a3bd M glibc.spec +:100644 100644 8651cdc5 51dbc5a6 M sources commit 258b61751e0328039f915177416e526d45b0003f Author: Jakub Jelinek @@ -31262,7 +31382,7 @@ CommitDate: Sat Feb 12 11:48:25 2005 +0000 2.3.4-10 -:100644 100644 4cf6881 56977a8 M glibc.spec +:100644 100644 4cf6881c 56977a8a M glibc.spec commit efa0c2f7671fa45863859ae514ad54e54af0a720 Author: Jakub Jelinek @@ -31272,9 +31392,9 @@ CommitDate: Sat Feb 12 11:01:55 2005 +0000 auto-import glibc-2.3.4-10 on branch devel from glibc-2.3.4-10.src.rpm -:100644 100644 7ccfc2f 2c2f3d3 M glibc-fedora.patch -:100644 100644 22c2109 4cf6881 M glibc.spec -:100644 100644 3b676e4 8651cdc M sources +:100644 100644 7ccfc2f1 2c2f3d3a M glibc-fedora.patch +:100644 100644 22c21096 4cf6881c M glibc.spec +:100644 100644 3b676e4a 8651cdc5 M sources commit 54d12e3eef4032330e03f0f4bbedc9e1717c5ce4 Author: Jakub Jelinek @@ -31284,7 +31404,7 @@ CommitDate: Fri Feb 11 19:30:58 2005 +0000 2.3.4-9 -:100644 100644 793300c 22c2109 M glibc.spec +:100644 100644 793300c7 22c21096 M glibc.spec commit e023db3a7598099414bd7b2958b85726259111df Author: Jakub Jelinek @@ -31294,9 +31414,9 @@ CommitDate: Fri Feb 11 15:23:09 2005 +0000 2.3.4-9 -:100644 100644 755406d 7ccfc2f M glibc-fedora.patch -:100644 100644 e0ef836 793300c M glibc.spec -:100644 100644 071747e 3b676e4 M sources +:100644 100644 755406d3 7ccfc2f1 M glibc-fedora.patch +:100644 100644 e0ef8364 793300c7 M glibc.spec +:100644 100644 071747e0 3b676e4a M sources commit 271728ab7e9ba4438ae82daa1a26bb5777d1a43c Author: Jakub Jelinek @@ -31306,10 +31426,10 @@ CommitDate: Fri Feb 11 11:29:59 2005 +0000 auto-import glibc-2.3.4-9 on branch devel from glibc-2.3.4-9.src.rpm -:100644 100644 acb9860 32bd9f5 M .cvsignore -:100644 100644 d4ee94a 755406d M glibc-fedora.patch -:100644 100644 6be301c e0ef836 M glibc.spec -:100644 100644 589725a 071747e M sources +:100644 100644 acb9860c 32bd9f5d M .cvsignore +:100644 100644 d4ee94a0 755406d3 M glibc-fedora.patch +:100644 100644 6be301cc e0ef8364 M glibc.spec +:100644 100644 589725a6 071747e0 M sources commit b691459b9d2eb83f4c5c220bc00f0b09d375d4db Author: Jakub Jelinek @@ -31319,10 +31439,10 @@ CommitDate: Fri Feb 11 10:07:12 2005 +0000 auto-import glibc-2.3.4-8 on branch devel from glibc-2.3.4-8.src.rpm -:100644 100644 e9721f8 acb9860 M .cvsignore -:100644 100644 d03b960 d4ee94a M glibc-fedora.patch -:100644 100644 64879a9 6be301c M glibc.spec -:100644 100644 9015a5d 589725a M sources +:100644 100644 e9721f8d acb9860c M .cvsignore +:100644 100644 d03b960a d4ee94a0 M glibc-fedora.patch +:100644 100644 64879a9a 6be301cc M glibc.spec +:100644 100644 9015a5da 589725a6 M sources commit 1acd360444c179476d349850dd7dddbd35369898 Author: Jakub Jelinek @@ -31332,10 +31452,10 @@ CommitDate: Tue Feb 8 23:09:41 2005 +0000 auto-import glibc-2.3.4-7 on branch devel from glibc-2.3.4-7.src.rpm -:100644 100644 9d22ca5 e9721f8 M .cvsignore -:100644 100644 1a1f658 d03b960 M glibc-fedora.patch -:100644 100644 5227a83 64879a9 M glibc.spec -:100644 100644 941b2c7 9015a5d M sources +:100644 100644 9d22ca53 e9721f8d M .cvsignore +:100644 100644 1a1f6583 d03b960a M glibc-fedora.patch +:100644 100644 5227a83d 64879a9a M glibc.spec +:100644 100644 941b2c75 9015a5da M sources commit 3246028926fb4268f1c02d26412e9593560a1256 Author: Jakub Jelinek @@ -31345,7 +31465,7 @@ CommitDate: Tue Feb 8 14:19:56 2005 +0000 2.3.4-6 -:100644 100644 038b498 5227a83 M glibc.spec +:100644 100644 038b4982 5227a83d M glibc.spec commit 9ea18a709b7501cc207a04809eaee57072b856d1 Author: Jakub Jelinek @@ -31355,7 +31475,7 @@ CommitDate: Tue Feb 8 12:51:52 2005 +0000 2.3.4-6 -:100644 100644 9e8fed4 038b498 M glibc.spec +:100644 100644 9e8fed47 038b4982 M glibc.spec commit cc43692c0e5344f3c587636d69c53444937f8e28 Author: Jakub Jelinek @@ -31365,10 +31485,10 @@ CommitDate: Tue Feb 8 10:49:20 2005 +0000 auto-import glibc-2.3.4-6 on branch devel from glibc-2.3.4-6.src.rpm -:100644 100644 6794f04 9d22ca5 M .cvsignore -:100644 100644 6f41ae1 1a1f658 M glibc-fedora.patch -:100644 100644 31269e9 9e8fed4 M glibc.spec -:100644 100644 7e8b98c 941b2c7 M sources +:100644 100644 6794f045 9d22ca53 M .cvsignore +:100644 100644 6f41ae1c 1a1f6583 M glibc-fedora.patch +:100644 100644 31269e98 9e8fed47 M glibc.spec +:100644 100644 7e8b98c5 941b2c75 M sources commit b9a4ff0da44504dd03edb69aa45c12b6fed46db2 Author: Jakub Jelinek @@ -31378,10 +31498,10 @@ CommitDate: Thu Jan 6 22:47:44 2005 +0000 auto-import glibc-2.3.4-5 on branch devel from glibc-2.3.4-5.src.rpm -:100644 100644 91aa434 6794f04 M .cvsignore -:100644 100644 5b1447d 6f41ae1 M glibc-fedora.patch -:100644 100644 39440c8 31269e9 M glibc.spec -:100644 100644 68802a1 7e8b98c M sources +:100644 100644 91aa4343 6794f045 M .cvsignore +:100644 100644 5b1447d5 6f41ae1c M glibc-fedora.patch +:100644 100644 39440c86 31269e98 M glibc.spec +:100644 100644 68802a1a 7e8b98c5 M sources commit 5b49637891d2c657456e57382b4ec593cde42b24 Author: Jakub Jelinek @@ -31391,10 +31511,10 @@ CommitDate: Thu Jan 6 15:47:36 2005 +0000 auto-import glibc-2.3.4-4 on branch devel from glibc-2.3.4-4.src.rpm -:100644 100644 47a1307 91aa434 M .cvsignore -:100644 100644 9d9330c 5b1447d M glibc-fedora.patch -:100644 100644 da1cf69 39440c8 M glibc.spec -:100644 100644 f45fcc8 68802a1 M sources +:100644 100644 47a1307f 91aa4343 M .cvsignore +:100644 100644 9d9330c3 5b1447d5 M glibc-fedora.patch +:100644 100644 da1cf69f 39440c86 M glibc.spec +:100644 100644 f45fcc88 68802a1a M sources commit cae8344de5d4268de62fe6b69c6de9f1c494a44d Author: Jakub Jelinek @@ -31404,10 +31524,10 @@ CommitDate: Tue Dec 21 09:22:01 2004 +0000 auto-import glibc-2.3.4-3 on branch devel from glibc-2.3.4-3.src.rpm -:100644 100644 accd8e4 47a1307 M .cvsignore -:100644 100644 1ab133a 9d9330c M glibc-fedora.patch -:100644 100644 1595fc1 da1cf69 M glibc.spec -:100644 100644 b235d2c f45fcc8 M sources +:100644 100644 accd8e4f 47a1307f M .cvsignore +:100644 100644 1ab133a4 9d9330c3 M glibc-fedora.patch +:100644 100644 1595fc14 da1cf69f M glibc.spec +:100644 100644 b235d2c1 f45fcc88 M sources commit 83613a0af1294a4850057fb1c795fc0276fea5a1 Author: Jakub Jelinek @@ -31417,10 +31537,10 @@ CommitDate: Sat Dec 18 23:34:50 2004 +0000 auto-import glibc-2.3.3-99 on branch devel from glibc-2.3.3-99.src.rpm -:100644 100644 2eec0b2 accd8e4 M .cvsignore -:100644 100644 5a3054c 1ab133a M glibc-fedora.patch -:100644 100644 edc901e 1595fc1 M glibc.spec -:100644 100644 d8a5b5b b235d2c M sources +:100644 100644 2eec0b2f accd8e4f M .cvsignore +:100644 100644 5a3054ce 1ab133a4 M glibc-fedora.patch +:100644 100644 edc901e1 1595fc14 M glibc.spec +:100644 100644 d8a5b5b3 b235d2c1 M sources commit 6492fbc2b0f1b7b23c52d8c35726577e77be5572 Author: Jakub Jelinek @@ -31430,10 +31550,10 @@ CommitDate: Fri Dec 17 11:36:40 2004 +0000 auto-import glibc-2.3.3-97 on branch devel from glibc-2.3.3-97.src.rpm -:100644 100644 4399dff 2eec0b2 M .cvsignore -:100644 100644 0ff022a 5a3054c M glibc-fedora.patch -:100644 100644 e544267 edc901e M glibc.spec -:100644 100644 5247dad d8a5b5b M sources +:100644 100644 4399dff3 2eec0b2f M .cvsignore +:100644 100644 0ff022ad 5a3054ce M glibc-fedora.patch +:100644 100644 e5442677 edc901e1 M glibc.spec +:100644 100644 5247dade d8a5b5b3 M sources commit f08a267818c999dbaca7304f5b0d0aebed4b3613 Author: Jakub Jelinek @@ -31443,7 +31563,7 @@ CommitDate: Wed Dec 15 12:27:17 2004 +0000 2.3.3-93 -:100644 100644 7dbd6fc 0ff022a M glibc-fedora.patch +:100644 100644 7dbd6fc8 0ff022ad M glibc-fedora.patch commit b99305215fabfa79e91ecbd2b3eb967412c07674 Author: Jakub Jelinek @@ -31453,10 +31573,10 @@ CommitDate: Wed Dec 15 11:45:56 2004 +0000 auto-import glibc-2.3.3-93 on branch devel from glibc-2.3.3-93.src.rpm -:100644 100644 dc56105 4399dff M .cvsignore -:100644 100644 a35fc5c 7dbd6fc M glibc-fedora.patch -:100644 100644 2c0ea7e e544267 M glibc.spec -:100644 100644 e90d9a9 5247dad M sources +:100644 100644 dc561059 4399dff3 M .cvsignore +:100644 100644 a35fc5cd 7dbd6fc8 M glibc-fedora.patch +:100644 100644 2c0ea7e1 e5442677 M glibc.spec +:100644 100644 e90d9a9e 5247dade M sources commit 96343339ed9d37c701f6813b5c0e6fb078350192 Author: Jakub Jelinek @@ -31466,10 +31586,10 @@ CommitDate: Tue Dec 14 12:01:31 2004 +0000 auto-import glibc-2.3.3-92 on branch devel from glibc-2.3.3-92.src.rpm -:100644 100644 e0384fe dc56105 M .cvsignore -:100644 100644 f9ffd06 a35fc5c M glibc-fedora.patch -:100644 100644 663f2b4 2c0ea7e M glibc.spec -:100644 100644 9768807 e90d9a9 M sources +:100644 100644 e0384fe6 dc561059 M .cvsignore +:100644 100644 f9ffd06b a35fc5cd M glibc-fedora.patch +:100644 100644 663f2b49 2c0ea7e1 M glibc.spec +:100644 100644 97688071 e90d9a9e M sources commit 08ffd2e675b55ee41fbf62d5fadbffc945c315e4 Author: Jakub Jelinek @@ -31479,10 +31599,10 @@ CommitDate: Tue Dec 14 00:07:47 2004 +0000 auto-import glibc-2.3.3-91 on branch devel from glibc-2.3.3-91.src.rpm -:100644 100644 d5b9b31 e0384fe M .cvsignore -:100644 100644 400bccd f9ffd06 M glibc-fedora.patch -:100644 100644 765370a 663f2b4 M glibc.spec -:100644 100644 3f24210 9768807 M sources +:100644 100644 d5b9b31b e0384fe6 M .cvsignore +:100644 100644 400bccd8 f9ffd06b M glibc-fedora.patch +:100644 100644 765370a3 663f2b49 M glibc.spec +:100644 100644 3f242105 97688071 M sources commit d0685fc7fa88480f2e365b7718bba721f5655045 Author: Jakub Jelinek @@ -31493,7 +31613,7 @@ CommitDate: Fri Dec 10 09:22:15 2004 +0000 auto-import glibc-2.3.3-90.EL4 on branch devel from glibc-2.3.3-90.EL4.src.rpm -:100644 100644 9f666e9 765370a M glibc.spec +:100644 100644 9f666e92 765370a3 M glibc.spec commit 55a4f67377b7de012c7a3c1c48819014385dedee Author: Jakub Jelinek @@ -31503,7 +31623,7 @@ CommitDate: Fri Dec 10 09:12:18 2004 +0000 2.3.3-90 -:100644 100644 95a59ea 400bccd M glibc-fedora.patch +:100644 100644 95a59ea9 400bccd8 M glibc-fedora.patch commit fed967a9be39a2dd8529246a99f63d609ceb6894 Author: Jakub Jelinek @@ -31513,10 +31633,10 @@ CommitDate: Fri Dec 10 07:02:45 2004 +0000 auto-import glibc-2.3.3-90 on branch devel from glibc-2.3.3-90.src.rpm -:100644 100644 73519dc d5b9b31 M .cvsignore -:100644 100644 c4f9465 95a59ea M glibc-fedora.patch -:100644 100644 e4f4245 9f666e9 M glibc.spec -:100644 100644 43c47fe 3f24210 M sources +:100644 100644 73519dc5 d5b9b31b M .cvsignore +:100644 100644 c4f9465f 95a59ea9 M glibc-fedora.patch +:100644 100644 e4f4245c 9f666e92 M glibc.spec +:100644 100644 43c47fe3 3f242105 M sources commit 61d52d11e863d537d124c2e79c25ff74119e8c75 Author: Jakub Jelinek @@ -31526,10 +31646,10 @@ CommitDate: Wed Dec 8 11:39:39 2004 +0000 auto-import glibc-2.3.3-89 on branch devel from glibc-2.3.3-89.src.rpm -:100644 100644 3cb85d2 73519dc M .cvsignore -:100644 100644 3e57bdd c4f9465 M glibc-fedora.patch -:100644 100644 2f470a7 e4f4245 M glibc.spec -:100644 100644 54625fb 43c47fe M sources +:100644 100644 3cb85d24 73519dc5 M .cvsignore +:100644 100644 3e57bddf c4f9465f M glibc-fedora.patch +:100644 100644 2f470a7c e4f4245c M glibc.spec +:100644 100644 54625fbd 43c47fe3 M sources commit d0f23188c9e4ecfbd416dbcb95ce995ca5da954f Author: Jakub Jelinek @@ -31539,7 +31659,7 @@ CommitDate: Tue Dec 7 16:27:44 2004 +0000 2.3.3-88 -:100644 100644 8f943ba 3e57bdd M glibc-fedora.patch +:100644 100644 8f943ba5 3e57bddf M glibc-fedora.patch commit ef031de359879786ba38183ea651497a4a635b5b Author: Jakub Jelinek @@ -31549,10 +31669,10 @@ CommitDate: Tue Dec 7 15:19:04 2004 +0000 auto-import glibc-2.3.3-88 on branch devel from glibc-2.3.3-88.src.rpm -:100644 100644 3698e68 3cb85d2 M .cvsignore -:100644 100644 941aee1 8f943ba M glibc-fedora.patch -:100644 100644 b8d27e2 2f470a7 M glibc.spec -:100644 100644 fe1f30f 54625fb M sources +:100644 100644 3698e687 3cb85d24 M .cvsignore +:100644 100644 941aee11 8f943ba5 M glibc-fedora.patch +:100644 100644 b8d27e27 2f470a7c M glibc.spec +:100644 100644 fe1f30fc 54625fbd M sources commit 99d596a1feb06c324f51bb823d6732fa017787bc Author: Jakub Jelinek @@ -31562,10 +31682,10 @@ CommitDate: Fri Dec 3 12:38:56 2004 +0000 auto-import glibc-2.3.3-87 on branch devel from glibc-2.3.3-87.src.rpm -:100644 100644 928be02 3698e68 M .cvsignore -:100644 100644 fbc9c55 941aee1 M glibc-fedora.patch -:100644 100644 08a5949 b8d27e2 M glibc.spec -:100644 100644 eb36d04 fe1f30f M sources +:100644 100644 928be021 3698e687 M .cvsignore +:100644 100644 fbc9c558 941aee11 M glibc-fedora.patch +:100644 100644 08a59498 b8d27e27 M glibc.spec +:100644 100644 eb36d041 fe1f30fc M sources commit 38c8be067cee6c11014c2ad2f8a88a5216ee137a Author: Jakub Jelinek @@ -31575,10 +31695,10 @@ CommitDate: Fri Nov 26 14:08:00 2004 +0000 auto-import glibc-2.3.3-85 on branch devel from glibc-2.3.3-85.src.rpm -:100644 100644 0f47cc0 928be02 M .cvsignore -:100644 100644 e6e0ce5 fbc9c55 M glibc-fedora.patch -:100644 100644 4b75648 08a5949 M glibc.spec -:100644 100644 57822a3 eb36d04 M sources +:100644 100644 0f47cc0d 928be021 M .cvsignore +:100644 100644 e6e0ce5c fbc9c558 M glibc-fedora.patch +:100644 100644 4b75648d 08a59498 M glibc.spec +:100644 100644 57822a37 eb36d041 M sources commit 4f3e9bcdfecd9b3f97e055e51565430650a22611 Author: Jakub Jelinek @@ -31588,10 +31708,10 @@ CommitDate: Wed Nov 24 08:45:39 2004 +0000 auto-import glibc-2.3.3-84 on branch devel from glibc-2.3.3-84.src.rpm -:100644 100644 a1e20b5 0f47cc0 M .cvsignore -:100644 100644 3216ca4 e6e0ce5 M glibc-fedora.patch -:100644 100644 9afce73 4b75648 M glibc.spec -:100644 100644 4b963ff 57822a3 M sources +:100644 100644 a1e20b51 0f47cc0d M .cvsignore +:100644 100644 3216ca40 e6e0ce5c M glibc-fedora.patch +:100644 100644 9afce732 4b75648d M glibc.spec +:100644 100644 4b963ffe 57822a37 M sources commit 83a138efa0f6480d8f6f2295c03b210a2950ff42 Author: Jakub Jelinek @@ -31601,10 +31721,10 @@ CommitDate: Sat Nov 20 10:12:53 2004 +0000 auto-import glibc-2.3.3-82 on branch devel from glibc-2.3.3-82.src.rpm -:100644 100644 802fd6b a1e20b5 M .cvsignore -:100644 100644 c74fb4d 3216ca4 M glibc-fedora.patch -:100644 100644 7435880 9afce73 M glibc.spec -:100644 100644 917c5f2 4b963ff M sources +:100644 100644 802fd6b2 a1e20b51 M .cvsignore +:100644 100644 c74fb4de 3216ca40 M glibc-fedora.patch +:100644 100644 74358801 9afce732 M glibc.spec +:100644 100644 917c5f2e 4b963ffe M sources commit 36d99a3d2a730afd06adadfeb6d5ebdc5a0136e9 Author: Jakub Jelinek @@ -31614,8 +31734,8 @@ CommitDate: Fri Nov 19 06:46:12 2004 +0000 auto-import glibc-2.3.3-81 on branch devel from glibc-2.3.3-81.src.rpm -:100644 100644 fb26514 c74fb4d M glibc-fedora.patch -:100644 100644 47098be 7435880 M glibc.spec +:100644 100644 fb26514d c74fb4de M glibc-fedora.patch +:100644 100644 47098bef 74358801 M glibc.spec commit 76b3fa33768affb8c6cbe16a706e2141908ed230 Author: Jakub Jelinek @@ -31625,10 +31745,10 @@ CommitDate: Fri Nov 19 00:41:25 2004 +0000 auto-import glibc-2.3.3-80 on branch devel from glibc-2.3.3-80.src.rpm -:100644 100644 60dd781 802fd6b M .cvsignore -:100644 100644 0ab8afb fb26514 M glibc-fedora.patch -:100644 100644 36efb46 47098be M glibc.spec -:100644 100644 05b3756 917c5f2 M sources +:100644 100644 60dd7816 802fd6b2 M .cvsignore +:100644 100644 0ab8afb2 fb26514d M glibc-fedora.patch +:100644 100644 36efb464 47098bef M glibc.spec +:100644 100644 05b3756d 917c5f2e M sources commit 45fdec0ef89ff2c66ba3c0b0368063d938c89a28 Author: Jakub Jelinek @@ -31638,10 +31758,10 @@ CommitDate: Tue Nov 16 10:39:21 2004 +0000 auto-import glibc-2.3.3-79 on branch devel from glibc-2.3.3-79.src.rpm -:100644 100644 b819709 60dd781 M .cvsignore -:100644 100644 41f704a 0ab8afb M glibc-fedora.patch -:100644 100644 6263e7f 36efb46 M glibc.spec -:100644 100644 ab17e96 05b3756 M sources +:100644 100644 b8197093 60dd7816 M .cvsignore +:100644 100644 41f704a7 0ab8afb2 M glibc-fedora.patch +:100644 100644 6263e7f1 36efb464 M glibc.spec +:100644 100644 ab17e962 05b3756d M sources commit ba41ef5365a2e9cb4e8d7beafede0694ae189214 Author: Jakub Jelinek @@ -31651,7 +31771,7 @@ CommitDate: Mon Nov 15 10:48:51 2004 +0000 2.3.3-78 -:100644 100644 684199e 41f704a M glibc-fedora.patch +:100644 100644 684199ea 41f704a7 M glibc-fedora.patch commit b74a61038603452555b26741b93431f98893629d Author: Jakub Jelinek @@ -31661,10 +31781,10 @@ CommitDate: Mon Nov 15 10:37:39 2004 +0000 auto-import glibc-2.3.3-78 on branch devel from glibc-2.3.3-78.src.rpm -:100644 100644 94efa61 b819709 M .cvsignore -:100644 100644 63ddb63 684199e M glibc-fedora.patch -:100644 100644 81c7ecc 6263e7f M glibc.spec -:100644 100644 ac77e0c ab17e96 M sources +:100644 100644 94efa619 b8197093 M .cvsignore +:100644 100644 63ddb633 684199ea M glibc-fedora.patch +:100644 100644 81c7ecc5 6263e7f1 M glibc.spec +:100644 100644 ac77e0c7 ab17e962 M sources commit f67657a8381b7d23f6bb005effeca720cee4581d Author: Jakub Jelinek @@ -31674,7 +31794,7 @@ CommitDate: Fri Nov 12 18:43:26 2004 +0000 2.3.3-77 -:100644 100644 880877b 63ddb63 M glibc-fedora.patch +:100644 100644 880877b2 63ddb633 M glibc-fedora.patch commit 716ff1cd257fdd72bf5264e96b32cdc0390d54bd Author: Jakub Jelinek @@ -31684,10 +31804,10 @@ CommitDate: Fri Nov 12 18:11:26 2004 +0000 auto-import glibc-2.3.3-77 on branch devel from glibc-2.3.3-77.src.rpm -:100644 100644 fc812dc 94efa61 M .cvsignore -:100644 100644 5b9904f 880877b M glibc-fedora.patch -:100644 100644 bbd828a 81c7ecc M glibc.spec -:100644 100644 8cb847a ac77e0c M sources +:100644 100644 fc812dc8 94efa619 M .cvsignore +:100644 100644 5b9904ff 880877b2 M glibc-fedora.patch +:100644 100644 bbd828a7 81c7ecc5 M glibc.spec +:100644 100644 8cb847a3 ac77e0c7 M sources commit 217261e7355076c2a80e8e88bcd7329fea95e9be Author: Jakub Jelinek @@ -31697,10 +31817,10 @@ CommitDate: Wed Nov 10 10:13:44 2004 +0000 auto-import glibc-2.3.3-76 on branch devel from glibc-2.3.3-76.src.rpm -:100644 100644 14342b2 fc812dc M .cvsignore -:100644 100644 b90dc3d 5b9904f M glibc-fedora.patch -:100644 100644 8febd3d bbd828a M glibc.spec -:100644 100644 5818dcc 8cb847a M sources +:100644 100644 14342b28 fc812dc8 M .cvsignore +:100644 100644 b90dc3da 5b9904ff M glibc-fedora.patch +:100644 100644 8febd3d6 bbd828a7 M glibc.spec +:100644 100644 5818dcc8 8cb847a3 M sources commit 2254f537a73ca67acc88c28c754df19ade0b1927 Author: Jakub Jelinek @@ -31710,7 +31830,7 @@ CommitDate: Tue Nov 2 17:33:31 2004 +0000 2.3.3-75 -:100644 100644 b8a8749 b90dc3d M glibc-fedora.patch +:100644 100644 b8a87494 b90dc3da M glibc-fedora.patch commit 67c2a6a3808a20d4300d030515cfdb693247c8f9 Author: Jakub Jelinek @@ -31720,10 +31840,10 @@ CommitDate: Tue Nov 2 14:03:10 2004 +0000 auto-import glibc-2.3.3-75 on branch devel from glibc-2.3.3-75.src.rpm -:100644 100644 9dd9d46 14342b2 M .cvsignore -:100644 100644 aa9622d b8a8749 M glibc-fedora.patch -:100644 100644 bc26ce8 8febd3d M glibc.spec -:100644 100644 670d862 5818dcc M sources +:100644 100644 9dd9d465 14342b28 M .cvsignore +:100644 100644 aa9622d5 b8a87494 M glibc-fedora.patch +:100644 100644 bc26ce8b 8febd3d6 M glibc.spec +:100644 100644 670d8620 5818dcc8 M sources commit 03d052509c1b4af8990dc3ab0e598448cabdd9c1 Author: Jakub Jelinek @@ -31733,8 +31853,8 @@ CommitDate: Thu Oct 21 11:56:17 2004 +0000 auto-import glibc-2.3.3-73 on branch devel from glibc-2.3.3-73.src.rpm -:100644 100644 3708bb3 aa9622d M glibc-fedora.patch -:100644 100644 3eac487 bc26ce8 M glibc.spec +:100644 100644 3708bb3d aa9622d5 M glibc-fedora.patch +:100644 100644 3eac487b bc26ce8b M glibc.spec commit 6bd344f17f40c612b2744617f132a09fa55a00ae Author: Jakub Jelinek @@ -31744,10 +31864,10 @@ CommitDate: Thu Oct 21 08:49:09 2004 +0000 auto-import glibc-2.3.3-72 on branch devel from glibc-2.3.3-72.src.rpm -:100644 100644 cd8f010 9dd9d46 M .cvsignore -:100644 100644 880edf6 3708bb3 M glibc-fedora.patch -:100644 100644 e97d5d7 3eac487 M glibc.spec -:100644 100644 82512b8 670d862 M sources +:100644 100644 cd8f010f 9dd9d465 M .cvsignore +:100644 100644 880edf6e 3708bb3d M glibc-fedora.patch +:100644 100644 e97d5d76 3eac487b M glibc.spec +:100644 100644 82512b8b 670d8620 M sources commit af0b5d4445588d3b9de462a27f2f3b1418a18734 Author: Jakub Jelinek @@ -31757,7 +31877,7 @@ CommitDate: Wed Oct 20 13:41:43 2004 +0000 2.3.3-71 -:100644 100644 f4af1e7 e97d5d7 M glibc.spec +:100644 100644 f4af1e7b e97d5d76 M glibc.spec commit 8660b873a822d9fc7d85312aad626b66faf1a7bd Author: Jakub Jelinek @@ -31767,10 +31887,10 @@ CommitDate: Wed Oct 20 11:45:54 2004 +0000 auto-import glibc-2.3.3-71 on branch devel from glibc-2.3.3-71.src.rpm -:100644 100644 f8400ab cd8f010 M .cvsignore -:100644 100644 a1938c6 880edf6 M glibc-fedora.patch -:100644 100644 393674f f4af1e7 M glibc.spec -:100644 100644 0416600 82512b8 M sources +:100644 100644 f8400ab1 cd8f010f M .cvsignore +:100644 100644 a1938c67 880edf6e M glibc-fedora.patch +:100644 100644 393674f4 f4af1e7b M glibc.spec +:100644 100644 04166005 82512b8b M sources commit cfeb07d562eb72ce1de828c7e2771536b6be924e Author: Jakub Jelinek @@ -31780,9 +31900,9 @@ CommitDate: Mon Oct 18 23:44:24 2004 +0000 auto-import glibc-2.3.3-70 on branch devel from glibc-2.3.3-70.src.rpm -:100644 100644 6bd6bad a1938c6 M glibc-fedora.patch -:100644 100644 f903bcb 393674f M glibc.spec -:100644 100644 78151c6 0416600 M sources +:100644 100644 6bd6badb a1938c67 M glibc-fedora.patch +:100644 100644 f903bcbb 393674f4 M glibc.spec +:100644 100644 78151c61 04166005 M sources commit 468791b35108c78204b0069f51543a85b0d3e1bf Author: Jakub Jelinek @@ -31792,10 +31912,10 @@ CommitDate: Mon Oct 18 12:35:19 2004 +0000 auto-import glibc-2.3.3-69 on branch devel from glibc-2.3.3-69.src.rpm -:100644 100644 036a52a f8400ab M .cvsignore -:100644 100644 882ad4d 6bd6bad M glibc-fedora.patch -:100644 100644 93a4c75 f903bcb M glibc.spec -:100644 100644 ccf8722 78151c6 M sources +:100644 100644 036a52ad f8400ab1 M .cvsignore +:100644 100644 882ad4d9 6bd6badb M glibc-fedora.patch +:100644 100644 93a4c757 f903bcbb M glibc.spec +:100644 100644 ccf87229 78151c61 M sources commit fb72ee058fe1cd44a118d97e83b7a4bf40bf2e73 Author: Jakub Jelinek @@ -31805,8 +31925,8 @@ CommitDate: Thu Oct 14 13:09:38 2004 +0000 2.3.3-68 -:100644 100644 f2becd4 882ad4d M glibc-fedora.patch -:100644 100644 36a5957 ccf8722 M sources +:100644 100644 f2becd4c 882ad4d9 M glibc-fedora.patch +:100644 100644 36a59575 ccf87229 M sources commit 348245d3f97573da8834c997794a847e5f03562f Author: Jakub Jelinek @@ -31816,7 +31936,7 @@ CommitDate: Thu Oct 14 12:17:19 2004 +0000 2.3.3-68 -:100644 100644 9e577e2 f2becd4 M glibc-fedora.patch +:100644 100644 9e577e27 f2becd4c M glibc-fedora.patch commit b488809b5de285547f94e67367dd86a6bd747d9f Author: Jakub Jelinek @@ -31826,8 +31946,8 @@ CommitDate: Thu Oct 14 10:45:16 2004 +0000 2.3.3-68 -:100644 100644 fdb01af 9e577e2 M glibc-fedora.patch -:100644 100644 305650f 36a5957 M sources +:100644 100644 fdb01afe 9e577e27 M glibc-fedora.patch +:100644 100644 305650f6 36a59575 M sources commit b709c7ef3e73d009c82e9e0b46a54168443fee58 Author: Jakub Jelinek @@ -31837,10 +31957,10 @@ CommitDate: Thu Oct 14 06:14:09 2004 +0000 auto-import glibc-2.3.3-68 on branch devel from glibc-2.3.3-68.src.rpm -:100644 100644 0ce191c 036a52a M .cvsignore -:100644 100644 37b3db3 fdb01af M glibc-fedora.patch -:100644 100644 48025ae 93a4c75 M glibc.spec -:100644 100644 4872bd2 305650f M sources +:100644 100644 0ce191c5 036a52ad M .cvsignore +:100644 100644 37b3db3a fdb01afe M glibc-fedora.patch +:100644 100644 48025aec 93a4c757 M glibc.spec +:100644 100644 4872bd2c 305650f6 M sources commit fae95423abb4c19a61326e4da4243d8bc96385c1 Author: Jakub Jelinek @@ -31850,10 +31970,10 @@ CommitDate: Tue Oct 12 12:23:57 2004 +0000 auto-import glibc-2.3.3-67 on branch devel from glibc-2.3.3-67.src.rpm -:100644 100644 6f5f4fd 0ce191c M .cvsignore -:100644 100644 f653d58 37b3db3 M glibc-fedora.patch -:100644 100644 c995798 48025ae M glibc.spec -:100644 100644 756e4ee 4872bd2 M sources +:100644 100644 6f5f4fd8 0ce191c5 M .cvsignore +:100644 100644 f653d58b 37b3db3a M glibc-fedora.patch +:100644 100644 c9957984 48025aec M glibc.spec +:100644 100644 756e4ee0 4872bd2c M sources commit a0d8ce000e54c86051d9aca969fe6593ab3097c6 Author: Jakub Jelinek @@ -31863,10 +31983,10 @@ CommitDate: Wed Oct 6 09:51:52 2004 +0000 auto-import glibc-2.3.3-66 on branch devel from glibc-2.3.3-66.src.rpm -:100644 100644 65f0535 6f5f4fd M .cvsignore -:100644 100644 f953053 f653d58 M glibc-fedora.patch -:100644 100644 7a057a9 c995798 M glibc.spec -:100644 100644 28b8e21 756e4ee M sources +:100644 100644 65f05352 6f5f4fd8 M .cvsignore +:100644 100644 f953053d f653d58b M glibc-fedora.patch +:100644 100644 7a057a9c c9957984 M glibc.spec +:100644 100644 28b8e21f 756e4ee0 M sources commit 3611d17ac6744097b1c3f6945d7ff1a6703a90db Author: Jakub Jelinek @@ -31876,7 +31996,7 @@ CommitDate: Tue Oct 5 15:50:38 2004 +0000 2.3.3-65 -:100644 100644 5d6b106 f953053 M glibc-fedora.patch +:100644 100644 5d6b1067 f953053d M glibc-fedora.patch commit 1c1864e24536efefb9df7488e0f2b658609ec663 Author: Jakub Jelinek @@ -31886,7 +32006,7 @@ CommitDate: Tue Oct 5 15:24:37 2004 +0000 2.3.3-65 -:100644 100644 38abfa6 5d6b106 M glibc-fedora.patch +:100644 100644 38abfa67 5d6b1067 M glibc-fedora.patch commit 7e89ca471ac0d08ac620ae6924f8982e74b1eece Author: Jakub Jelinek @@ -31896,7 +32016,7 @@ CommitDate: Tue Oct 5 12:50:02 2004 +0000 2.3.3-65 -:100644 100644 9b6397e 38abfa6 M glibc-fedora.patch +:100644 100644 9b6397e5 38abfa67 M glibc-fedora.patch commit 8e2ca29c895de54f97822127d8956898ddbd65cb Author: Jakub Jelinek @@ -31906,8 +32026,8 @@ CommitDate: Tue Oct 5 11:34:53 2004 +0000 2.3.3-65 -:100644 100644 3ff3d92 9b6397e M glibc-fedora.patch -:100644 100644 e8e447c 28b8e21 M sources +:100644 100644 3ff3d921 9b6397e5 M glibc-fedora.patch +:100644 100644 e8e447c8 28b8e21f M sources commit 78a67cf59d37d70f554de8122a3436a53ef3060b Author: Jakub Jelinek @@ -31917,10 +32037,10 @@ CommitDate: Tue Oct 5 09:19:10 2004 +0000 auto-import glibc-2.3.3-65 on branch devel from glibc-2.3.3-65.src.rpm -:100644 100644 793bb4f 65f0535 M .cvsignore -:100644 100644 9c58862 3ff3d92 M glibc-fedora.patch -:100644 100644 c40e697 7a057a9 M glibc.spec -:100644 100644 dc2b11f e8e447c M sources +:100644 100644 793bb4f5 65f05352 M .cvsignore +:100644 100644 9c588628 3ff3d921 M glibc-fedora.patch +:100644 100644 c40e6976 7a057a9c M glibc.spec +:100644 100644 dc2b11fb e8e447c8 M sources commit 3b26136617351664885f2644dae06f5140f95b40 Author: Jakub Jelinek @@ -31930,10 +32050,10 @@ CommitDate: Mon Oct 4 09:35:40 2004 +0000 auto-import glibc-2.3.3-64 on branch devel from glibc-2.3.3-64.src.rpm -:100644 100644 e833ff7 793bb4f M .cvsignore -:100644 100644 ac16772 9c58862 M glibc-fedora.patch -:100644 100644 cb95ff7 c40e697 M glibc.spec -:100644 100644 5343615 dc2b11f M sources +:100644 100644 e833ff77 793bb4f5 M .cvsignore +:100644 100644 ac16772d 9c588628 M glibc-fedora.patch +:100644 100644 cb95ff75 c40e6976 M glibc.spec +:100644 100644 53436150 dc2b11fb M sources commit f6aa9ffe91cb715159826e9fe3c98064f7188572 Author: Jakub Jelinek @@ -31943,10 +32063,10 @@ CommitDate: Fri Oct 1 21:54:12 2004 +0000 auto-import glibc-2.3.3-63 on branch devel from glibc-2.3.3-63.src.rpm -:100644 100644 fa5b3ed e833ff7 M .cvsignore -:100644 100644 4d4ab74 ac16772 M glibc-fedora.patch -:100644 100644 ea22dc1 cb95ff7 M glibc.spec -:100644 100644 d69a440 5343615 M sources +:100644 100644 fa5b3edc e833ff77 M .cvsignore +:100644 100644 4d4ab74d ac16772d M glibc-fedora.patch +:100644 100644 ea22dc16 cb95ff75 M glibc.spec +:100644 100644 d69a440d 53436150 M sources commit 12fd806326d09a6c50c0563eba4df3fdb436e6fd Author: Jakub Jelinek @@ -31956,10 +32076,10 @@ CommitDate: Fri Oct 1 12:06:34 2004 +0000 auto-import glibc-2.3.3-62 on branch devel from glibc-2.3.3-62.src.rpm -:100644 100644 fa4afe3 fa5b3ed M .cvsignore -:100644 100644 8203dc5 4d4ab74 M glibc-fedora.patch -:100644 100644 1bfba20 ea22dc1 M glibc.spec -:100644 100644 d695940 d69a440 M sources +:100644 100644 fa4afe3e fa5b3edc M .cvsignore +:100644 100644 8203dc53 4d4ab74d M glibc-fedora.patch +:100644 100644 1bfba207 ea22dc16 M glibc.spec +:100644 100644 d695940b d69a440d M sources commit bb8d7783fdb3b5a8e18d555e5d9c4e4fb62c5a17 Author: Jakub Jelinek @@ -31969,10 +32089,10 @@ CommitDate: Thu Sep 30 09:26:07 2004 +0000 auto-import glibc-2.3.3-61 on branch devel from glibc-2.3.3-61.src.rpm -:100644 100644 f073e5f fa4afe3 M .cvsignore -:100644 100644 c026097 8203dc5 M glibc-fedora.patch -:100644 100644 42c700a 1bfba20 M glibc.spec -:100644 100644 b897848 d695940 M sources +:100644 100644 f073e5f9 fa4afe3e M .cvsignore +:100644 100644 c0260973 8203dc53 M glibc-fedora.patch +:100644 100644 42c700a5 1bfba207 M glibc.spec +:100644 100644 b8978488 d695940b M sources commit c372148b5f14f4e1b56c706c57c186a560bd8725 Author: Jakub Jelinek @@ -31982,8 +32102,8 @@ CommitDate: Wed Sep 29 10:46:14 2004 +0000 2.3.3-60 -:100644 100644 140055e c026097 M glibc-fedora.patch -:100644 100644 e9dbbb5 b897848 M sources +:100644 100644 140055e1 c0260973 M glibc-fedora.patch +:100644 100644 e9dbbb55 b8978488 M sources commit 612f3e8c2813d5151dc9f3bc0304619edc696e11 Author: Jakub Jelinek @@ -31993,7 +32113,7 @@ CommitDate: Wed Sep 29 10:35:17 2004 +0000 2.3.3-60 -:100644 100644 11500f6 140055e M glibc-fedora.patch +:100644 100644 11500f69 140055e1 M glibc-fedora.patch commit f3926e3d10453593d240d326c15753335a0201de Author: Jakub Jelinek @@ -32003,10 +32123,10 @@ CommitDate: Wed Sep 29 09:50:33 2004 +0000 auto-import glibc-2.3.3-60 on branch devel from glibc-2.3.3-60.src.rpm -:100644 100644 a946896 f073e5f M .cvsignore -:100644 100644 bddf40d 11500f6 M glibc-fedora.patch -:100644 100644 c2301ad 42c700a M glibc.spec -:100644 100644 b751b9e e9dbbb5 M sources +:100644 100644 a946896b f073e5f9 M .cvsignore +:100644 100644 bddf40db 11500f69 M glibc-fedora.patch +:100644 100644 c2301adb 42c700a5 M glibc.spec +:100644 100644 b751b9ec e9dbbb55 M sources commit b9cb6db770fd96ed9f17fabef3eaf626b6626081 Author: Jakub Jelinek @@ -32016,10 +32136,10 @@ CommitDate: Mon Sep 27 06:37:42 2004 +0000 auto-import glibc-2.3.3-59 on branch devel from glibc-2.3.3-59.src.rpm -:100644 100644 0c719b4 a946896 M .cvsignore -:100644 100644 22fd78b bddf40d M glibc-fedora.patch -:100644 100644 58b68f8 c2301ad M glibc.spec -:100644 100644 6955c21 b751b9e M sources +:100644 100644 0c719b43 a946896b M .cvsignore +:100644 100644 22fd78bd bddf40db M glibc-fedora.patch +:100644 100644 58b68f89 c2301adb M glibc.spec +:100644 100644 6955c212 b751b9ec M sources commit b3c1f7270571fbfb43f1c03d3f75045faaf70169 Author: Jakub Jelinek @@ -32029,10 +32149,10 @@ CommitDate: Sun Sep 26 08:58:16 2004 +0000 auto-import glibc-2.3.3-58 on branch devel from glibc-2.3.3-58.src.rpm -:100644 100644 f95f545 0c719b4 M .cvsignore -:100644 100644 9e54104 22fd78b M glibc-fedora.patch -:100644 100644 8cd69ff 58b68f8 M glibc.spec -:100644 100644 8649343 6955c21 M sources +:100644 100644 f95f5454 0c719b43 M .cvsignore +:100644 100644 9e541041 22fd78bd M glibc-fedora.patch +:100644 100644 8cd69ff0 58b68f89 M glibc.spec +:100644 100644 8649343f 6955c212 M sources commit 631accf9ab21b2a0462b2896b94d320308df480f Author: Jakub Jelinek @@ -32042,8 +32162,8 @@ CommitDate: Sun Sep 26 04:55:06 2004 +0000 2.3.3-57 -:100644 100644 d594d55 9e54104 M glibc-fedora.patch -:100644 100644 b74223c 8649343 M sources +:100644 100644 d594d558 9e541041 M glibc-fedora.patch +:100644 100644 b74223c2 8649343f M sources commit ac27057750534b9718b943f9538643d64c9c1063 Author: Jakub Jelinek @@ -32053,9 +32173,9 @@ CommitDate: Sat Sep 25 12:21:22 2004 +0000 2.3.3-57 -:100644 100644 b5a34b2 f95f545 M .cvsignore -:100644 100644 bf8c75b d594d55 M glibc-fedora.patch -:100644 100644 56df34f b74223c M sources +:100644 100644 b5a34b25 f95f5454 M .cvsignore +:100644 100644 bf8c75b2 d594d558 M glibc-fedora.patch +:100644 100644 56df34fa b74223c2 M sources commit 2342cb0ed936f5e8580b9eb736d420dd9f0b7d2d Author: Jakub Jelinek @@ -32065,8 +32185,8 @@ CommitDate: Sat Sep 25 12:20:42 2004 +0000 2.3.3-57 -:100644 100644 f95f545 b5a34b2 M .cvsignore -:100644 100644 26cbcf7 56df34f M sources +:100644 100644 f95f5454 b5a34b25 M .cvsignore +:100644 100644 26cbcf77 56df34fa M sources commit c7aa529bd29880da55414efcf317319c8dd790e0 Author: Jakub Jelinek @@ -32076,10 +32196,10 @@ CommitDate: Sat Sep 25 08:23:12 2004 +0000 auto-import glibc-2.3.3-57 on branch devel from glibc-2.3.3-57.src.rpm -:100644 100644 0dce928 f95f545 M .cvsignore -:000000 100644 0000000 bf8c75b A glibc-fedora.patch -:100644 100644 9787051 8cd69ff M glibc.spec -:100644 100644 fa67f03 26cbcf7 M sources +:100644 100644 0dce9284 f95f5454 M .cvsignore +:000000 100644 00000000 bf8c75b2 A glibc-fedora.patch +:100644 100644 9787051d 8cd69ff0 M glibc.spec +:100644 100644 fa67f034 26cbcf77 M sources commit 80169fee7b7bc2ab0fbb7e2b0cee35c0af0411f5 Author: Jakub Jelinek @@ -32089,9 +32209,9 @@ CommitDate: Wed Sep 22 06:44:09 2004 +0000 auto-import glibc-2.3.3-55 on branch devel from glibc-2.3.3-55.src.rpm -:100644 100644 f8d4801 0dce928 M .cvsignore -:100644 100644 ad843d9 9787051 M glibc.spec -:100644 100644 bda78ed fa67f03 M sources +:100644 100644 f8d4801b 0dce9284 M .cvsignore +:100644 100644 ad843d96 9787051d M glibc.spec +:100644 100644 bda78ed0 fa67f034 M sources commit 5660d36681a5d8cc21957cab325bcf1fa2b50484 Author: Jakub Jelinek @@ -32101,9 +32221,9 @@ CommitDate: Fri Sep 17 06:41:05 2004 +0000 auto-import glibc-2.3.3-54 on branch devel from glibc-2.3.3-54.src.rpm -:100644 100644 1524712 f8d4801 M .cvsignore -:100644 100644 71917fa ad843d9 M glibc.spec -:100644 100644 7a0acd7 bda78ed M sources +:100644 100644 15247125 f8d4801b M .cvsignore +:100644 100644 71917faa ad843d96 M glibc.spec +:100644 100644 7a0acd7e bda78ed0 M sources commit 639ba184b5f1562bc4f88af2a9a5259e73682bd5 Author: Jakub Jelinek @@ -32113,8 +32233,8 @@ CommitDate: Tue Sep 14 14:31:42 2004 +0000 auto-import glibc-2.3.3-53 on branch devel from glibc-2.3.3-53.src.rpm -:100644 100644 3179723 71917fa M glibc.spec -:100644 100644 bc56508 7a0acd7 M sources +:100644 100644 31797235 71917faa M glibc.spec +:100644 100644 bc565081 7a0acd7e M sources commit 5aec04cca283c7be2dd8abc3d7d9af1d99fcb84a Author: Jakub Jelinek @@ -32124,9 +32244,9 @@ CommitDate: Tue Sep 14 13:41:56 2004 +0000 auto-import glibc-2.3.3-52 on branch devel from glibc-2.3.3-52.src.rpm -:100644 100644 29d2eca 1524712 M .cvsignore -:100644 100644 2345902 3179723 M glibc.spec -:100644 100644 e2bcb65 bc56508 M sources +:100644 100644 29d2ecac 15247125 M .cvsignore +:100644 100644 2345902c 31797235 M glibc.spec +:100644 100644 e2bcb65c bc565081 M sources commit 6e86160076ddaeb7cb4ca1cf53f9d91f405b9eb0 Author: Jakub Jelinek @@ -32136,9 +32256,9 @@ CommitDate: Fri Sep 10 21:13:22 2004 +0000 auto-import glibc-2.3.3-51 on branch devel from glibc-2.3.3-51.src.rpm -:100644 100644 4744718 29d2eca M .cvsignore -:100644 100644 0d50f57 2345902 M glibc.spec -:100644 100644 2a428df e2bcb65 M sources +:100644 100644 47447180 29d2ecac M .cvsignore +:100644 100644 0d50f572 2345902c M glibc.spec +:100644 100644 2a428df1 e2bcb65c M sources commit fe619b540a2aed0f8e7db8b025630e673e6211ba Author: Jakub Jelinek @@ -32148,9 +32268,9 @@ CommitDate: Fri Sep 10 10:22:16 2004 +0000 auto-import glibc-2.3.3-50 on branch devel from glibc-2.3.3-50.src.rpm -:100644 100644 65a4ab1 4744718 M .cvsignore -:100644 100644 13ecf0b 0d50f57 M glibc.spec -:100644 100644 88a0496 2a428df M sources +:100644 100644 65a4ab13 47447180 M .cvsignore +:100644 100644 13ecf0be 0d50f572 M glibc.spec +:100644 100644 88a04961 2a428df1 M sources commit 7abcfd39ad06d4423938ba20906654d16bc4156e Author: cvsdist @@ -32170,9 +32290,9 @@ CommitDate: Thu Sep 9 05:54:44 2004 +0000 - add NPTL support for i386 glibc (only if run on i486 or higher CPU) - add __NR_waitid defines for i386, x86_64 and sparc* -:100644 100644 2e17dda 65a4ab1 M .cvsignore -:100644 100644 165315c 13ecf0b M glibc.spec -:100644 100644 6185c51 88a0496 M sources +:100644 100644 2e17ddad 65a4ab13 M .cvsignore +:100644 100644 165315c1 13ecf0be M glibc.spec +:100644 100644 6185c51d 88a04961 M sources commit 4a201b7398751f527677f1636613d936dfeba1a2 Author: cvsdist @@ -32191,9 +32311,9 @@ CommitDate: Thu Sep 9 05:53:08 2004 +0000 line is missing (#120588) - ugly hacks for the IA-64 /emul braindamage (#124996, #128267) -:100644 100644 ce08237 2e17dda M .cvsignore -:100644 100644 51a89db 165315c M glibc.spec -:100644 100644 7bea376 6185c51 M sources +:100644 100644 ce082375 2e17ddad M .cvsignore +:100644 100644 51a89dba 165315c1 M glibc.spec +:100644 100644 7bea376d 6185c51d M sources commit f3d86bbd54359e8475c903fd9620bc9f8fc6d764 Author: cvsdist @@ -32205,9 +32325,9 @@ CommitDate: Thu Sep 9 05:52:58 2004 +0000 Sat Aug 21 2004 Jakub Jelinek 2.3.3-46 - update from CVS -:100644 100644 ae5dc01 ce08237 M .cvsignore -:100644 100644 adaa198 51a89db M glibc.spec -:100644 100644 4deec86 7bea376 M sources +:100644 100644 ae5dc01e ce082375 M .cvsignore +:100644 100644 adaa198e 51a89dba M glibc.spec +:100644 100644 4deec86e 7bea376d M sources commit e8590cd432dd5b05db272d05724c9b773f1ad26f Author: cvsdist @@ -32226,9 +32346,9 @@ CommitDate: Thu Sep 9 05:52:48 2004 +0000 - BuildPrereq libselinux-devel (#129946) - on ppc64, build without dot symbols -:100644 100644 26bed52 ae5dc01 M .cvsignore -:100644 100644 4fb9279 adaa198 M glibc.spec -:100644 100644 da3b8fe 4deec86 M sources +:100644 100644 26bed522 ae5dc01e M .cvsignore +:100644 100644 4fb92796 adaa198e M glibc.spec +:100644 100644 da3b8fe6 4deec86e M sources commit 48f92b4b2d7e99aa5f5eeb16bcff56bf7ae3fb36 Author: cvsdist @@ -32244,9 +32364,9 @@ CommitDate: Thu Sep 9 05:52:21 2004 +0000 - update RLIMIT_* constants in , make POSIX compliant (#129740) -:100644 100644 85faa7c 26bed52 M .cvsignore -:100644 100644 b73a25a 4fb9279 M glibc.spec -:100644 100644 9140488 da3b8fe M sources +:100644 100644 85faa7c1 26bed522 M .cvsignore +:100644 100644 b73a25a0 4fb92796 M glibc.spec +:100644 100644 91404885 da3b8fe6 M sources commit 3990320c40c82d860005b0f2f1e75fe711e2cc36 Author: cvsdist @@ -32280,9 +32400,9 @@ CommitDate: Thu Sep 9 05:52:01 2004 +0000 - handle /lib/i686/librtkaio-* in i386 glibc_post_upgrade the same as /lib/i686/librt-* -:100644 100644 259ba3a 85faa7c M .cvsignore -:100644 100644 57284a1 b73a25a M glibc.spec -:100644 100644 cf1ae7f 9140488 M sources +:100644 100644 259ba3a7 85faa7c1 M .cvsignore +:100644 100644 57284a18 b73a25a0 M glibc.spec +:100644 100644 cf1ae7fb 91404885 M sources commit 6d3776a9db87859a6fca5683a664688bb1477592 Author: cvsdist @@ -32296,9 +32416,9 @@ CommitDate: Thu Sep 9 05:51:19 2004 +0000 - conformance related changes in headers - remove -finline-limit=2000 for GCC 3.4.x+ -:100644 100644 2800178 259ba3a M .cvsignore -:100644 100644 71a2622 57284a1 M glibc.spec -:100644 100644 8449ebb cf1ae7f M sources +:100644 100644 28001783 259ba3a7 M .cvsignore +:100644 100644 71a26223 57284a18 M glibc.spec +:100644 100644 8449ebb5 cf1ae7fb M sources commit bbcc9fcd80fa271a30976dd2fe5f72cfb3fa423b Author: cvsdist @@ -32314,9 +32434,9 @@ CommitDate: Thu Sep 9 05:51:13 2004 +0000 - fix ppc64 setjmp - fix strtold (BZ #274) -:100644 100644 e937f40 2800178 M .cvsignore -:100644 100644 51cc71f 71a2622 M glibc.spec -:100644 100644 dbfc74d 8449ebb M sources +:100644 100644 e937f400 28001783 M .cvsignore +:100644 100644 51cc71f2 71a26223 M glibc.spec +:100644 100644 dbfc74d0 8449ebb5 M sources commit 57f83e48464a59c6fb14d2a4629a700cf800113e Author: cvsdist @@ -32331,9 +32451,9 @@ CommitDate: Thu Sep 9 05:51:10 2004 +0000 - fix pow{f,,l} on IA-32 and powl on x86-64 - allow PIEs on IA-32 to have main in a shared library they depend on -:100644 100644 f78cd9f e937f40 M .cvsignore -:100644 100644 b3648b0 51cc71f M glibc.spec -:100644 100644 12248a2 dbfc74d M sources +:100644 100644 f78cd9f2 e937f400 M .cvsignore +:100644 100644 b3648b0c 51cc71f2 M glibc.spec +:100644 100644 12248a27 dbfc74d0 M sources commit 488256d1400d830b853632047db38f23a65b4b32 Author: cvsdist @@ -32355,9 +32475,9 @@ CommitDate: Thu Sep 9 05:51:02 2004 +0000 - printf_parsemb initialization fix - NPTL version is now the same as glibc version -:100644 100644 0dca632 f78cd9f M .cvsignore -:100644 100644 2843f6a b3648b0 M glibc.spec -:100644 100644 bad778c 12248a2 M sources +:100644 100644 0dca6324 f78cd9f2 M .cvsignore +:100644 100644 2843f6a3 b3648b0c M glibc.spec +:100644 100644 bad778ce 12248a27 M sources commit 9c616202ba89314d8cb843351b22ef7a557f3feb Author: cvsdist @@ -32373,9 +32493,9 @@ CommitDate: Thu Sep 9 05:50:18 2004 +0000 -m32 -D_FILE_OFFSET_BITS=64 compilations - avoid calling non-existing fcntl64 syscall on ppc64 -:100644 100644 ada5cb6 0dca632 M .cvsignore -:100644 100644 2c3f3e4 2843f6a M glibc.spec -:100644 100644 09ddb30 bad778c M sources +:100644 100644 ada5cb60 0dca6324 M .cvsignore +:100644 100644 2c3f3e45 2843f6a3 M glibc.spec +:100644 100644 09ddb301 bad778ce M sources commit f28d1a99a9eb693c09ab7ea4c47b53d7f1025156 Author: cvsdist @@ -32390,9 +32510,9 @@ CommitDate: Thu Sep 9 05:50:07 2004 +0000 - fix backtrace in statically linked programs - rebuilt with GCC 3.4, adjusted ulps and i386 -:100644 100644 9684613 ada5cb6 M .cvsignore -:100644 100644 b940e09 2c3f3e4 M glibc.spec -:100644 100644 f296ad8 09ddb30 M sources +:100644 100644 9684613f ada5cb60 M .cvsignore +:100644 100644 b940e090 2c3f3e45 M glibc.spec +:100644 100644 f296ad8d 09ddb301 M sources commit d07b59af3605df6bfb77c0625c6ac18fcc4de04b Author: cvsdist @@ -32404,7 +32524,7 @@ CommitDate: Thu Sep 9 05:49:35 2004 +0000 Wed Jun 09 2004 Elliot Lee 2.3.3-31.1 - rebuild with gcc 3.4 -:100644 100644 8366dec b940e09 M glibc.spec +:100644 100644 8366deca b940e090 M glibc.spec commit 7df9d7d88dab34690b943b5b735dc2952224d5cb Author: cvsdist @@ -32418,9 +32538,9 @@ CommitDate: Thu Sep 9 05:49:31 2004 +0000 - and changes for GCC 3.{2,4,5}+ - make c_stubs buildable even with GCC 3.2.x (#123042) -:100644 100644 cfbc0a2 9684613 M .cvsignore -:100644 100644 d3365d6 8366dec M glibc.spec -:100644 100644 2469e8a f296ad8 M sources +:100644 100644 cfbc0a22 9684613f M .cvsignore +:100644 100644 d3365d6c 8366deca M glibc.spec +:100644 100644 2469e8a4 f296ad8d M sources commit e166fbd3b9e44c1fecd6b55509b657334434fed9 Author: cvsdist @@ -32432,9 +32552,9 @@ CommitDate: Thu Sep 9 05:49:08 2004 +0000 Fri May 21 2004 Jakub Jelinek 2.3.3-30 - fix pthread_cond_wait on architectures other than IA-32 and x86_64 -:100644 100644 12be0fa cfbc0a2 M .cvsignore -:100644 100644 fd9e2d2 d3365d6 M glibc.spec -:100644 100644 85b3294 2469e8a M sources +:100644 100644 12be0faa cfbc0a22 M .cvsignore +:100644 100644 fd9e2d24 d3365d6c M glibc.spec +:100644 100644 85b3294b 2469e8a4 M sources commit 7cbfe8c1d247f10ad566ec8bfada5e2e37325e3a Author: cvsdist @@ -32446,9 +32566,9 @@ CommitDate: Thu Sep 9 05:49:02 2004 +0000 Thu May 20 2004 Jakub Jelinek 2.3.3-29 - use lib64 instead of lib on ia64 if %{_lib} is defined to lib64 -:000000 100644 0000000 05fd922 A glibc-ia64-lib64.patch -:100644 100644 e8b3388 fd9e2d2 M glibc.spec -:100644 100644 887bd60 85b3294 M sources +:000000 100644 00000000 05fd9229 A glibc-ia64-lib64.patch +:100644 100644 e8b33886 fd9e2d24 M glibc.spec +:100644 100644 887bd609 85b3294b M sources commit b335e4b24374c5d0854392e26bee98648944c1c1 Author: cvsdist @@ -32467,9 +32587,9 @@ CommitDate: Thu Sep 9 05:48:51 2004 +0000 - x86_64 makecontext alignment fix - make POSIX sigpause the default sigpause, unless BSD sigpause requested -:100644 100644 d5dcb45 12be0fa M .cvsignore -:100644 100644 c466b28 e8b3388 M glibc.spec -:100644 100644 52a963b 887bd60 M sources +:100644 100644 d5dcb45c 12be0faa M .cvsignore +:100644 100644 c466b28a e8b33886 M glibc.spec +:100644 100644 52a963b3 887bd609 M sources commit ce09106efc1013ae7c8d4a9c55f309d938fbe7ba Author: cvsdist @@ -32548,9 +32668,9 @@ CommitDate: Thu Sep 9 05:48:43 2004 +0000 - update from CVS - affinity API changes -:100644 100644 e979483 d5dcb45 M .cvsignore -:100644 100644 f33d09e c466b28 M glibc.spec -:100644 100644 72e9e4f 52a963b M sources +:100644 100644 e979483c d5dcb45c M .cvsignore +:100644 100644 f33d09e9 c466b28a M glibc.spec +:100644 100644 72e9e4fc 52a963b3 M sources commit 195182b0b448eb6352c068fdddb4e011ee9a6228 Author: cvsdist @@ -32595,9 +32715,9 @@ CommitDate: Thu Sep 9 05:46:40 2004 +0000 Fri Feb 20 2004 Jakub Jelinek 2.3.3-9 - update from CVS -:100644 100644 6b2f0c9 e979483 M .cvsignore -:100644 100644 66a0377 f33d09e M glibc.spec -:100644 100644 98399ef 72e9e4f M sources +:100644 100644 6b2f0c95 e979483c M .cvsignore +:100644 100644 66a0377b f33d09e9 M glibc.spec +:100644 100644 98399eff 72e9e4fc M sources commit aa7475ac1a6971add99dbad42b0188dca6594d60 Author: cvsdist @@ -32607,9 +32727,9 @@ CommitDate: Thu Sep 9 05:43:45 2004 +0000 auto-import glibc-2.3.3-7 from glibc-2.3.3-7.src.rpm -:100644 100644 4755b6a 6b2f0c9 M .cvsignore -:100644 100644 a2af76d 66a0377 M glibc.spec -:100644 100644 9dc9a0f 98399ef M sources +:100644 100644 4755b6a6 6b2f0c95 M .cvsignore +:100644 100644 a2af76d6 66a0377b M glibc.spec +:100644 100644 9dc9a0ff 98399eff M sources commit 083e7af5618e589e1e5ecd9d21a70ccb5f306995 Author: cvsdist @@ -32619,9 +32739,9 @@ CommitDate: Thu Sep 9 05:43:31 2004 +0000 auto-import glibc-2.3.3-6 from glibc-2.3.3-6.src.rpm -:100644 100644 6832ad2 4755b6a M .cvsignore -:100644 100644 54d0401 a2af76d M glibc.spec -:100644 100644 e147d78 9dc9a0f M sources +:100644 100644 6832ad2b 4755b6a6 M .cvsignore +:100644 100644 54d04010 a2af76d6 M glibc.spec +:100644 100644 e147d783 9dc9a0ff M sources commit 67f9b52e0d0585505f5a2013380a1cd56f6b0fe9 Author: cvsdist @@ -32631,9 +32751,9 @@ CommitDate: Thu Sep 9 05:42:45 2004 +0000 auto-import glibc-2.3.3-3 from glibc-2.3.3-3.src.rpm -:100644 100644 929550a 6832ad2 M .cvsignore -:100644 100644 bf99cd3 54d0401 M glibc.spec -:100644 100644 510093e e147d78 M sources +:100644 100644 929550a3 6832ad2b M .cvsignore +:100644 100644 bf99cd37 54d04010 M glibc.spec +:100644 100644 510093ec e147d783 M sources commit b3d3095f21ba26c32aedc482213e2a7b36d7510e Author: cvsdist @@ -32643,9 +32763,9 @@ CommitDate: Thu Sep 9 05:42:39 2004 +0000 auto-import glibc-2.3.3-2 from glibc-2.3.3-2.src.rpm -:100644 100644 e7b1493 929550a M .cvsignore -:100644 100644 e8c3a18 bf99cd3 M glibc.spec -:100644 100644 aed4d53 510093e M sources +:100644 100644 e7b1493f 929550a3 M .cvsignore +:100644 100644 e8c3a18f bf99cd37 M glibc.spec +:100644 100644 aed4d536 510093ec M sources commit 7da373a20cb92723bdb01d4be30669e2f3b3e898 Author: cvsdist @@ -32655,9 +32775,9 @@ CommitDate: Thu Sep 9 05:42:25 2004 +0000 auto-import glibc-2.3.3-1 from glibc-2.3.3-1.src.rpm -:100644 100644 4da0c3c e7b1493 M .cvsignore -:100644 100644 82db9c8 e8c3a18 M glibc.spec -:100644 100644 947fba0 aed4d53 M sources +:100644 100644 4da0c3c7 e7b1493f M .cvsignore +:100644 100644 82db9c88 e8c3a18f M glibc.spec +:100644 100644 947fba03 aed4d536 M sources commit 9253f552c03d67ecb130dea84c882ee0f67e1f7c Author: cvsdist @@ -32685,7 +32805,7 @@ CommitDate: Thu Sep 9 05:42:03 2004 +0000 - pthread_cond_timedwait bugfix - protect _dl_make_stack_executable with a special challenge -:100644 100644 5f25f07 82db9c8 M glibc.spec +:100644 100644 5f25f07e 82db9c88 M glibc.spec commit a004e0e1f2b394501374e60a0ec875938f90b69b Author: cvsdist @@ -32700,7 +32820,7 @@ CommitDate: Thu Sep 9 05:41:57 2004 +0000 - change regfree to match old regex behaviour (what is freed and clearing of freed pointers) -:100644 100644 af48133 5f25f07 M glibc.spec +:100644 100644 af481338 5f25f07e M glibc.spec commit 41ee47bf4aa3a076c2b86290761315ee5a5da7c4 Author: cvsdist @@ -32710,7 +32830,7 @@ CommitDate: Thu Sep 9 05:41:47 2004 +0000 auto-import glibc-2.3.2-101.3 from glibc-2.3.2-101.3.src.rpm -:100644 100644 08ef8bb af48133 M glibc.spec +:100644 100644 08ef8bb6 af481338 M glibc.spec commit 849c1214f63a25f7f3448364164a5d9ad01c5b61 Author: cvsdist @@ -32744,7 +32864,7 @@ CommitDate: Thu Sep 9 05:41:43 2004 +0000 - randomize PIE shared libraries, honor LD_USE_LOAD_BIAS env variable - fix execstack handling on kernels without exec-shield -:100644 100644 c8a416e 08ef8bb M glibc.spec +:100644 100644 c8a416e2 08ef8bb6 M glibc.spec commit e2748b71cbd715a1dcff7b85325c73b77e0e3a56 Author: cvsdist @@ -32767,7 +32887,7 @@ CommitDate: Thu Sep 9 05:41:22 2004 +0000 - fix RE_ICASE multi-byte handling in regex - fix pthread_exit in libpthread.a (#109790) -:100644 100644 39aa8b7 c8a416e M glibc.spec +:100644 100644 39aa8b7e c8a416e2 M glibc.spec commit c381c23439d5f6c69b74a5017f82009c2567f3a3 Author: cvsdist @@ -32777,9 +32897,9 @@ CommitDate: Thu Sep 9 05:40:37 2004 +0000 auto-import glibc-2.3.2-101 from glibc-2.3.2-101.src.rpm -:100644 100644 172c870 4da0c3c M .cvsignore -:000000 100644 0000000 39aa8b7 A glibc.spec -:100644 100644 d6e0a3f 947fba0 M sources +:100644 100644 172c870f 4da0c3c7 M .cvsignore +:000000 100644 00000000 39aa8b7e A glibc.spec +:100644 100644 d6e0a3f2 947fba03 M sources commit d955dcc554c5888be05ac416b4692f593db3b4d4 Author: cvsdist @@ -32789,9 +32909,9 @@ CommitDate: Thu Sep 9 05:33:04 2004 +0000 auto-import glibc-2.3.2-33.9 from glibc-2.3.2-33.9.src.rpm -:100644 100644 20b42dc 172c870 M .cvsignore -:100644 000000 2741f2f 0000000 D glibc.spec -:100644 100644 1787902 d6e0a3f M sources +:100644 100644 20b42dc5 172c870f M .cvsignore +:100644 000000 2741f2f5 00000000 D glibc.spec +:100644 100644 1787902f d6e0a3f2 M sources commit 93178aa3c3473640dcc8c539c361742c1dbc5f3c Author: cvsdist @@ -32801,7 +32921,7 @@ CommitDate: Thu Sep 9 05:32:57 2004 +0000 auto-import glibc-2.3.2-27.9.6 from glibc-2.3.2-27.9.6.src.rpm -:000000 100644 0000000 2741f2f A glibc.spec +:000000 100644 00000000 2741f2f5 A glibc.spec commit da256929431e0d200f005b96add79e8421d535e5 Author: cvsdist @@ -32811,8 +32931,8 @@ CommitDate: Thu Sep 9 05:32:38 2004 +0000 auto-import glibc-2.3.2-27.9 from glibc-2.3.2-27.9.src.rpm -:100644 100644 8cb74ee 20b42dc M .cvsignore -:100644 100644 bacee56 1787902 M sources +:100644 100644 8cb74ee5 20b42dc5 M .cvsignore +:100644 100644 bacee566 1787902f M sources commit 60f9d3369035dc710335c8e1aa082707b1057a67 Author: cvsdist @@ -32822,9 +32942,9 @@ CommitDate: Thu Sep 9 05:32:18 2004 +0000 auto-import glibc-2.3.2-11.9 from glibc-2.3.2-11.9.src.rpm -:100644 100644 47d7e6c 8cb74ee M .cvsignore -:100644 000000 ec09e57 0000000 D glibc.spec -:100644 100644 a3c5617 bacee56 M sources +:100644 100644 47d7e6c6 8cb74ee5 M .cvsignore +:100644 000000 ec09e57a 00000000 D glibc.spec +:100644 100644 a3c56170 bacee566 M sources commit e9ae29d032d290dd79f05ff8afbba2a0722acf08 Author: cvsdist @@ -32834,9 +32954,9 @@ CommitDate: Thu Sep 9 05:31:53 2004 +0000 auto-import glibc-2.3.2-5 from glibc-2.3.2-5.src.rpm -:100644 100644 6d6f606 47d7e6c M .cvsignore -:100644 100644 55beb85 ec09e57 M glibc.spec -:100644 100644 c905376 a3c5617 M sources +:100644 100644 6d6f606b 47d7e6c6 M .cvsignore +:100644 100644 55beb855 ec09e57a M glibc.spec +:100644 100644 c905376e a3c56170 M sources commit 296254e820ea61af80ef8e89b4265c5c43e86557 Author: cvsdist @@ -32846,7 +32966,7 @@ CommitDate: Thu Sep 9 05:31:44 2004 +0000 auto-import glibc-2.3.2-4.80.8 from glibc-2.3.2-4.80.8.src.rpm -:000000 100644 0000000 55beb85 A glibc.spec +:000000 100644 00000000 55beb855 A glibc.spec commit e7a3a9dfd3cb55e689983d9f5788124c9c526040 Author: cvsdist @@ -32856,9 +32976,9 @@ CommitDate: Thu Sep 9 05:31:03 2004 +0000 auto-import glibc-2.3.2-4.80 from glibc-2.3.2-4.80.src.rpm -:100644 100644 64231d7 6d6f606 M .cvsignore -:100644 000000 fcdfa04 0000000 D glibc.spec -:100644 100644 f0e1d2c c905376 M sources +:100644 100644 64231d7c 6d6f606b M .cvsignore +:100644 000000 fcdfa043 00000000 D glibc.spec +:100644 100644 f0e1d2cc c905376e M sources commit f68ab8f6040c12512f4cc44a037ccd1d4afc29a1 Author: cvsdist @@ -32868,9 +32988,9 @@ CommitDate: Thu Sep 9 05:30:51 2004 +0000 auto-import glibc-2.3.1-32 from glibc-2.3.1-32.src.rpm -:100644 100644 e427f50 64231d7 M .cvsignore -:100644 100644 e42acea fcdfa04 M glibc.spec -:100644 100644 5f11f0a f0e1d2c M sources +:100644 100644 e427f50a 64231d7c M .cvsignore +:100644 100644 e42aceaa fcdfa043 M glibc.spec +:100644 100644 5f11f0aa f0e1d2cc M sources commit 72f7cf67bfe5e38887a39974065cdc732e3a5a41 Author: cvsdist @@ -32880,9 +33000,9 @@ CommitDate: Thu Sep 9 05:30:40 2004 +0000 auto-import glibc-2.3-1 from glibc-2.3-1.src.rpm -:100644 100644 f44e75f e427f50 M .cvsignore -:100644 100644 0befbf6 e42acea M glibc.spec -:100644 100644 4056861 5f11f0a M sources +:100644 100644 f44e75fb e427f50a M .cvsignore +:100644 100644 0befbf66 e42aceaa M glibc.spec +:100644 100644 4056861a 5f11f0aa M sources commit e0cdfa0614286b48df083440c6803cf104cc55b5 Author: cvsdist @@ -32892,9 +33012,9 @@ CommitDate: Thu Sep 9 05:30:26 2004 +0000 auto-import glibc-2.2.93-5 from glibc-2.2.93-5.src.rpm -:100644 100644 063b70e f44e75f M .cvsignore -:100644 100644 20aa798 0befbf6 M glibc.spec -:100644 100644 1cfaed6 4056861 M sources +:100644 100644 063b70ea f44e75fb M .cvsignore +:100644 100644 20aa798d 0befbf66 M glibc.spec +:100644 100644 1cfaed64 4056861a M sources commit 00522b9a349261e83a842eec8c3066d333612269 Author: cvsdist @@ -32906,7 +33026,7 @@ CommitDate: Thu Sep 9 05:30:08 2004 +0000 Wed Nov 05 2003 Jakub Jelinek 2.2.4-44 - fix getgrouplist (#101691) -:100644 100644 51a0c1a 20aa798 M glibc.spec +:100644 100644 51a0c1a0 20aa798d M glibc.spec commit 18c157db6de33b61313a6ab4a7cbad4eb3958fe5 Author: cvsdist @@ -32916,7 +33036,7 @@ CommitDate: Thu Sep 9 05:29:21 2004 +0000 auto-import glibc-2.2.5-43 from glibc-2.2.5-43.src.rpm -:100644 100644 ad4cad0 51a0c1a M glibc.spec +:100644 100644 ad4cad0b 51a0c1a0 M glibc.spec commit 211c16fa70183fdc10c12be7ea48875e6f73f1ce Author: cvsdist @@ -32926,7 +33046,7 @@ CommitDate: Thu Sep 9 05:29:06 2004 +0000 auto-import glibc-2.2.5-40 from glibc-2.2.5-40.src.rpm -:100644 100644 a7f776a ad4cad0 M glibc.spec +:100644 100644 a7f776a1 ad4cad0b M glibc.spec commit b18ac84fd3ff734f4641b1467e07170b1c47bbdb Author: cvsdist @@ -32936,7 +33056,7 @@ CommitDate: Thu Sep 9 05:29:00 2004 +0000 auto-import glibc-2.2.5-39 from glibc-2.2.5-39.src.rpm -:100644 100644 ca07d5f a7f776a M glibc.spec +:100644 100644 ca07d5ff a7f776a1 M glibc.spec commit 2e3cbbc31c01e11e39a269f1603096b4b228723c Author: cvsdist @@ -32946,9 +33066,9 @@ CommitDate: Thu Sep 9 05:28:20 2004 +0000 auto-import glibc-2.2.5-36 from glibc-2.2.5-36.src.rpm -:100644 100644 17d63cd 063b70e M .cvsignore -:100644 100644 101530e ca07d5f M glibc.spec -:100644 100644 e5e63bc 1cfaed6 M sources +:100644 100644 17d63cd2 063b70ea M .cvsignore +:100644 100644 101530e7 ca07d5ff M glibc.spec +:100644 100644 e5e63bc5 1cfaed64 M sources commit a76a167f168722f8661a701a0d9b615b96fb6319 Author: cvsdist @@ -32958,7 +33078,7 @@ CommitDate: Thu Sep 9 05:28:12 2004 +0000 auto-import glibc-2.2.5-34.1 from glibc-2.2.5-34.1.src.rpm -:100644 100644 26cef09 101530e M glibc.spec +:100644 100644 26cef095 101530e7 M glibc.spec commit 075c0fe7e4904b896081c824c1932f6cfdb81346 Author: cvsdist @@ -32968,9 +33088,9 @@ CommitDate: Thu Sep 9 05:27:57 2004 +0000 auto-import glibc-2.2.5-34 from glibc-2.2.5-34.src.rpm -:100644 100644 ed48422 17d63cd M .cvsignore -:100644 100644 b8b4380 26cef09 M glibc.spec -:100644 100644 70fe94a e5e63bc M sources +:100644 100644 ed484223 17d63cd2 M .cvsignore +:100644 100644 b8b4380f 26cef095 M glibc.spec +:100644 100644 70fe94aa e5e63bc5 M sources commit 9282a2c0c5bd13ad0dc8384d95aee3d2da6c1f65 Author: cvsdist @@ -32980,7 +33100,7 @@ CommitDate: Thu Sep 9 05:25:26 2004 +0000 auto-import glibc-2.2.4-32 from glibc-2.2.4-32.src.rpm -:100644 100644 1be481c b8b4380 M glibc.spec +:100644 100644 1be481ca b8b4380f M glibc.spec commit b7c7924237d64b70b232c744c403eccea7f3fa93 Author: cvsdist @@ -32990,7 +33110,7 @@ CommitDate: Thu Sep 9 05:24:55 2004 +0000 auto-import glibc-2.2.4-30 from glibc-2.2.4-30.src.rpm -:100644 100644 5b6004d 1be481c M glibc.spec +:100644 100644 5b6004da 1be481ca M glibc.spec commit fb47195111335311d0fd7c10258fb77029389f05 Author: cvsdist @@ -33000,7 +33120,7 @@ CommitDate: Thu Sep 9 05:24:23 2004 +0000 auto-import glibc-2.2.4-29 from glibc-2.2.4-29.src.rpm -:100644 100644 8f3eb71 5b6004d M glibc.spec +:100644 100644 8f3eb710 5b6004da M glibc.spec commit 48664b95f6328b7e87c437f5648c7a25a9c93500 Author: cvsdist @@ -33010,7 +33130,7 @@ CommitDate: Thu Sep 9 05:23:16 2004 +0000 auto-import glibc-2.2.4-26 from glibc-2.2.4-26.src.rpm -:100644 100644 adfb115 8f3eb71 M glibc.spec +:100644 100644 adfb1150 8f3eb710 M glibc.spec commit 3f472ec1585bb483a5f49d7ccfe6bedbd11dce75 Author: cvsdist @@ -33026,7 +33146,7 @@ CommitDate: Thu Sep 9 05:22:57 2004 +0000 Sat Apr 13 2002 Florian La Roche - add missing s390/s390x patches -:100644 100644 2e476b5 adfb115 M glibc.spec +:100644 100644 2e476b5e adfb1150 M glibc.spec commit cc7ca1e799ed49d8e41ab4c60925118f93eb92a3 Author: cvsdist @@ -33050,7 +33170,7 @@ CommitDate: Thu Sep 9 05:22:37 2004 +0000 - remove /lib/i686/ libraries in glibc_post_upgrade when performing i386 glibc install -:100644 100644 2794b81 2e476b5 M glibc.spec +:100644 100644 2794b812 2e476b5e M glibc.spec commit e86a80cd574c03820be936dc8492063d72c42654 Author: cvsdist @@ -33060,7 +33180,7 @@ CommitDate: Thu Sep 9 05:21:51 2004 +0000 auto-import glibc-2.2.4-19.3m from glibc-2.2.4-19.3m.src.rpm -:100644 100644 c7d61b9 2794b81 M glibc.spec +:100644 100644 c7d61b98 2794b812 M glibc.spec commit 16298371ca74bff3dd22974a9309b3c0c2ef1c91 Author: cvsdist @@ -33072,7 +33192,7 @@ CommitDate: Thu Sep 9 05:21:36 2004 +0000 Sat Dec 08 2001 Jakub Jelinek 2.2.4-19.3 - fix inttypes.h typo (#57268) -:100644 100644 eee4ee3 c7d61b9 M glibc.spec +:100644 100644 eee4ee37 c7d61b98 M glibc.spec commit 55dc6c2895373402b277b468b520ef8fd81b425a Author: cvsdist @@ -33082,7 +33202,7 @@ CommitDate: Thu Sep 9 05:21:18 2004 +0000 auto-import glibc-2.2.4-19a from glibc-2.2.4-19a.src.rpm -:100644 100644 0203370 eee4ee3 M glibc.spec +:100644 100644 02033709 eee4ee37 M glibc.spec commit 2704fae76df0e30cbdfcbd237cbaa4d90b7088df Author: cvsdist @@ -33092,7 +33212,7 @@ CommitDate: Thu Sep 9 05:21:12 2004 +0000 auto-import glibc-2.2.4-19 from glibc-2.2.4-19.src.rpm -:100644 100644 db4a8a9 0203370 M glibc.spec +:100644 100644 db4a8a9a 02033709 M glibc.spec commit c6011023afca1f264181275f63b9be8895fb3244 Author: cvsdist @@ -33104,8 +33224,8 @@ CommitDate: Thu Sep 9 05:19:45 2004 +0000 Tue Dec 04 2001 Jakub Jelinek 2.2.4-18.7.0.2 - fix glob buffer overflow -:100644 100644 a501440 db4a8a9 M glibc.spec -:100644 100644 012169e 70fe94a M sources +:100644 100644 a5014408 db4a8a9a M glibc.spec +:100644 100644 012169ef 70fe94aa M sources commit f2d193bb0cb89442326b9aa14575a7472bac13c3 Author: cvsdist @@ -33119,7 +33239,7 @@ CommitDate: Thu Sep 9 05:19:29 2004 +0000 - reapply yshao@redhat.com's glibc-2.2.4-gb18030.patch - reapply llch@redhat.com's glibc-2.2.4-sc.patch -:100644 100644 03b1f6d a501440 M glibc.spec +:100644 100644 03b1f6dd a5014408 M glibc.spec commit 12cb3228aded26b7c8b167d405ddea4962a413dc Author: cvsdist @@ -33133,7 +33253,7 @@ CommitDate: Thu Sep 9 05:19:24 2004 +0000 Sat Nov 10 2001 Yu Shao 2.2.4-14c - gb18030 fix -:100644 100644 d3fdd3c 03b1f6d M glibc.spec +:100644 100644 d3fdd3c8 03b1f6dd M glibc.spec commit 06aa72cc307afd8794290eb1550e3aa44a52b24c Author: cvsdist @@ -33221,9 +33341,9 @@ CommitDate: Thu Sep 9 05:19:00 2004 +0000 - update from CVS (#43681, #43350, #44663, #45685) - fix ro_RO bug (#44644) -:100644 100644 1f70636 ed48422 M .cvsignore -:100644 100644 17c021e d3fdd3c M glibc.spec -:100644 100644 5be2249 012169e M sources +:100644 100644 1f706369 ed484223 M .cvsignore +:100644 100644 17c021e0 d3fdd3c8 M glibc.spec +:100644 100644 5be22498 012169ef M sources commit 4118c172e9a71624b118a11fb84032e4fa3697ee Author: cvsdist @@ -33240,8 +33360,8 @@ CommitDate: Thu Sep 9 05:18:46 2004 +0000 - update from CVS to (among other things): - fix tanhl bug (#43352) -:100644 100644 3368597 17c021e M glibc.spec -:100644 100644 22a0bac 5be2249 M sources +:100644 100644 33685977 17c021e0 M glibc.spec +:100644 100644 22a0bac9 5be22498 M sources commit e2f026e202a32747435193ce0956a5d43eebc231 Author: cvsdist @@ -33296,9 +33416,9 @@ CommitDate: Thu Sep 9 05:18:39 2004 +0000 Wed Apr 11 2001 Jakub Jelinek - update from CVS -:100644 100644 3d6f0ef 1f70636 M .cvsignore -:100644 100644 5bdcb32 3368597 M glibc.spec -:100644 100644 0ce7b99 22a0bac M sources +:100644 100644 3d6f0efa 1f706369 M .cvsignore +:100644 100644 5bdcb320 33685977 M glibc.spec +:100644 100644 0ce7b99b 22a0bac9 M sources commit 987ea0c1bd4b6cc0c43054dd05b968c79feb5746 Author: cvsdist @@ -33363,9 +33483,9 @@ CommitDate: Thu Sep 9 05:18:35 2004 +0000 - fix getaddrinfo (#25437) - support DF_1_INITFIRST (#25029) -:100644 100644 20b92fe 3d6f0ef M .cvsignore -:100644 100644 5d41894 5bdcb32 M glibc.spec -:100644 100644 642da77 0ce7b99 M sources +:100644 100644 20b92fec 3d6f0efa M .cvsignore +:100644 100644 5d418942 5bdcb320 M glibc.spec +:100644 100644 642da77e 0ce7b99b M sources commit dac76f742288c68393ea0902644ec78b0a24a591 Author: cvsdist @@ -33407,9 +33527,9 @@ CommitDate: Thu Sep 9 05:18:27 2004 +0000 - move nscd in rc.d before netfs on shutdown - fix $RESOLV_HOST_CONF in SUID apps (#23562) -:100644 100644 04efab1 20b92fe M .cvsignore -:100644 100644 0b8d78b 5d41894 M glibc.spec -:100644 100644 ebabe3a 642da77 M sources +:100644 100644 04efab11 20b92fec M .cvsignore +:100644 100644 0b8d78b5 5d418942 M glibc.spec +:100644 100644 ebabe3a8 642da77e M sources commit 99bce0062ea7167c744553d4ed7812ebbac7a984 Author: cvsdist @@ -33435,8 +33555,8 @@ CommitDate: Thu Sep 9 05:18:16 2004 +0000 - use auxarches define in spec file for auxiliary architectures (#21219) - remove /usr/share directory from filelist (#21218) -:100644 100644 6d64c06 0b8d78b M glibc.spec -:100644 100644 94f3531 ebabe3a M sources +:100644 100644 6d64c060 0b8d78b5 M glibc.spec +:100644 100644 94f3531e ebabe3a8 M sources commit dc652d4df13002774ab6dc538c7799c7eeb6a097 Author: cvsdist @@ -33448,7 +33568,7 @@ CommitDate: Thu Sep 9 05:18:04 2004 +0000 Wed Dec 06 2000 Bill Nottingham - fix strcpy on ia64 (random SIGILLs) -:100644 100644 869ff78 6d64c06 M glibc.spec +:100644 100644 869ff787 6d64c060 M glibc.spec commit 3bf2920539e463f3e263cffd4814b8048fe75df0 Author: cvsdist @@ -33481,9 +33601,9 @@ CommitDate: Thu Sep 9 05:17:59 2004 +0000 - set LC_MESSAGES in zic/zdump for proper error message output (#19495) - fix LFS fcntl when used with non-LFS aware kernels (#19730) -:100644 100644 38ab9cb 04efab1 M .cvsignore -:100644 100644 398e0cd 869ff78 M glibc.spec -:100644 100644 3030d77 94f3531 M sources +:100644 100644 38ab9cb8 04efab11 M .cvsignore +:100644 100644 398e0cde 869ff787 M glibc.spec +:100644 100644 3030d774 94f3531e M sources commit b32d7ee5d82462b7aabb6842502626e34917f24c Author: cvsdist @@ -33500,8 +33620,8 @@ CommitDate: Thu Sep 9 05:17:54 2004 +0000 - fix rexec on little endian machines (#18886) - started writing changelog again -:100644 100644 3c3c4e9 398e0cd M glibc.spec -:100644 100644 0bbdf83 3030d77 M sources +:100644 100644 3c3c4e94 398e0cde M glibc.spec +:100644 100644 0bbdf831 3030d774 M sources commit ab184636b8f254a0844a9781ebecdeacef1f37ea Author: cvsdist @@ -33513,9 +33633,9 @@ CommitDate: Thu Sep 9 05:17:39 2004 +0000 Mon Oct 16 2000 Jakub Jelinek - build from CVS archive -:100644 100644 981ba9a 38ab9cb M .cvsignore -:100644 100644 0c61941 3c3c4e9 M glibc.spec -:100644 100644 c2993c2 0bbdf83 M sources +:100644 100644 981ba9ae 38ab9cb8 M .cvsignore +:100644 100644 0c61941d 3c3c4e94 M glibc.spec +:100644 100644 c2993c26 0bbdf831 M sources commit 1ced64dde7c2a6e8b411605d00b649b0edbfb256 Author: cvsdist @@ -33527,9 +33647,9 @@ CommitDate: Thu Sep 9 05:17:10 2004 +0000 Wed Sep 13 2000 Jakub Jelinek - build from CVS archive -:100644 100644 536ff86 981ba9a M .cvsignore -:100644 100644 977c755 0c61941 M glibc.spec -:100644 100644 a9c6b66 c2993c2 M sources +:100644 100644 536ff86a 981ba9ae M .cvsignore +:100644 100644 977c7552 0c61941d M glibc.spec +:100644 100644 a9c6b66c c2993c26 M sources commit 742e23890a3fd90e921d99ebc3db4b6abe043b32 Author: cvsdist @@ -33539,7 +33659,7 @@ CommitDate: Thu Sep 9 05:16:57 2004 +0000 auto-import glibc-2.1.92-14.2.4 from glibc-2.1.92-14.2.4.src.rpm -:100644 100644 e0cb949 977c755 M glibc.spec +:100644 100644 e0cb9498 977c7552 M glibc.spec commit 8200dbbd45ec46eeaf2a5d25424786d8f9ef457d Author: cvsdist @@ -33551,9 +33671,9 @@ CommitDate: Thu Sep 9 05:16:54 2004 +0000 Wed Aug 30 2000 Jakub Jelinek - build from CVS archive -:100644 100644 e69de29 536ff86 M .cvsignore -:000000 100644 0000000 e0cb949 A glibc.spec -:100644 100644 e69de29 a9c6b66 M sources +:100644 100644 e69de29b 536ff86a M .cvsignore +:000000 100644 00000000 e0cb9498 A glibc.spec +:100644 100644 e69de29b a9c6b66c M sources commit f2c89a195bdc5c23254376c49f7df070e47c7ec9 Author: cvsdist @@ -33563,6 +33683,6 @@ CommitDate: Thu Sep 9 05:16:51 2004 +0000 Setup of module glibc -:000000 100644 0000000 e69de29 A .cvsignore -:000000 100644 0000000 d4168e9 A Makefile -:000000 100644 0000000 e69de29 A sources +:000000 100644 00000000 e69de29b A .cvsignore +:000000 100644 00000000 d4168e91 A Makefile +:000000 100644 00000000 e69de29b A sources