From 79808700a1ccaa7780fa0648bb559d25b0c2f47b Mon Sep 17 00:00:00 2001 From: Arjun Shankar Date: Tue, 24 Oct 2023 14:45:44 +0200 Subject: [PATCH] Provide template gai.conf in glibc-doc The gai.conf template used to be shipped via glibc-common, but was incorrectly removed during 1fa03e97ae4cb4 ("Introduce new glibc-doc.noarch subpackage (#1346925)" as unnecessary. However, it has value as a template file and shipping it is preferable. This commit reinstates the file at /usr/share/doc/glibc/gai.conf as part of the glibc-doc subpackage. --- glibc.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/glibc.spec b/glibc.spec index a0922b5..6cd8b01 100644 --- a/glibc.spec +++ b/glibc.spec @@ -159,7 +159,7 @@ Version: %{glibcversion} # - It allows using the Release number without the %%dist tag in the dependency # generator to make the generated requires interchangeable between Rawhide # and ELN (.elnYY < .fcXX). -%global baserelease 15 +%global baserelease 16 Release: %{baserelease}%{?dist} # In general, GPLv2+ is used by programs, LGPLv2+ is used for @@ -1348,6 +1348,7 @@ gzip -9nvf %{glibc_sysroot}%{_infodir}/libc* # Copy the debugger interface documentation over to the right location mkdir -p %{glibc_sysroot}%{_docdir}/glibc cp elf/rtld-debugger-interface.txt %{glibc_sysroot}%{_docdir}/glibc +cp posix/gai.conf %{glibc_sysroot}%{_docdir}/glibc %else rm -f %{glibc_sysroot}%{_infodir}/dir rm -f %{glibc_sysroot}%{_infodir}/libc.info* @@ -2200,6 +2201,9 @@ update_gconv_modules_cache () %files -f compat-libpthread-nonshared.filelist -n compat-libpthread-nonshared %changelog +* Tue Oct 24 2023 Arjun Shankar - 2.38.9000-16 +- Provide template gai.conf in glibc-doc + * Thu Oct 19 2023 Florian Weimer - 2.38.9000-15 - Fix force-first handling in dlclose (#2244992)