From 02c7ee79ff116e7ca93fc0ef0370c71b8da4af44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Thu, 23 Dec 2021 15:03:38 +0100 Subject: [PATCH 01/17] Update to 2.3.0 Obsolete libut as it has been dropped upstream --- .gitignore | 5 +- sources | 2 +- uthash-2.0.2_fix-asciidoc.patch | 14 --- uthash.spec | 150 ++++++++++---------------------- 4 files changed, 48 insertions(+), 123 deletions(-) delete mode 100644 uthash-2.0.2_fix-asciidoc.patch diff --git a/.gitignore b/.gitignore index c787020..b772d1c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1 @@ -/v1.9.8.tar.gz -/uthash-1.9.9.tar.gz -/uthash-2.0.1.tar.gz -/uthash-2.0.2.tar.gz +/uthash-*.tar.gz diff --git a/sources b/sources index 6c5bb11..b640b01 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (uthash-2.0.2.tar.gz) = 0c2e686eb5a1d6a03a6fa1d42e803fca4e9b60b2d965c635a5a33d487c8d115f1f8155ff99a0e1874b69f6b66c04ea7d8866472a39abe5d1a23ae73f6fa956d7 +SHA512 (uthash-2.3.0.tar.gz) = 3b01f1074790fb242900411cb16eb82c1a9afcf58e3196a0f4611d9d7ef94690ad38c0a500e7783d3efa20328aa8d6ab14f246be63b3b3d385502ba2b6b2a294 diff --git a/uthash-2.0.2_fix-asciidoc.patch b/uthash-2.0.2_fix-asciidoc.patch deleted file mode 100644 index 3180e5a..0000000 --- a/uthash-2.0.2_fix-asciidoc.patch +++ /dev/null @@ -1,14 +0,0 @@ - doc/userguide.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/doc/userguide.txt b/doc/userguide.txt ---- a/doc/userguide.txt -+++ b/doc/userguide.txt -@@ -1,6 +1,6 @@ - uthash User Guide - ================= --Troy D. Hanson, Arthur O'Dwyer -+Hanson, O'Dwyer - v2.0.2, March 2017 - - To download uthash, follow this link back to the diff --git a/uthash.spec b/uthash.spec index 5ab1fa5..ae62db0 100644 --- a/uthash.spec +++ b/uthash.spec @@ -1,153 +1,95 @@ -%global sover 0 -%global git_url https://github.com/troydhanson/%{name} - -%global common_desc \ -Any C structure can be stored in a hash table using uthash. Just \ -add a UT_hash_handle to the structure and choose one or more fields \ -in your structure to act as the key. Then use these macros to store, \ -retrieve or delete items from the hash table. - -# Setup _pkgdocdir if not defined already -%{!?_pkgdocdir:%global _pkgdocdir %{_docdir}/%{name}-%{version}} +# Header-only lib. +%global debug_package %{nil} -Name: uthash -Version: 2.0.2 -Release: 11%{?dist} -Summary: A hash table for C structures +Name: uthash +Version: 2.3.0 +Release: 1%{?dist} +Summary: A hash table for C structures -License: BSD -URL: http://troydhanson.github.io/%{name} -Source0: %{git_url}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz +License: BSD +URL: http://troydhanson.github.io/%{name} +Source0: https://github.com/troydhanson/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz -%if (0%{?rhel} && 0%{?rhel} <= 6) -# Downstream patch for asciidoc generation. -Patch1000: %{name}-%{version}_fix-asciidoc.patch -%endif # (0#{?rhel} && 0#{?rhel} <= 6) - -BuildRequires: make +BuildRequires: asciidoc BuildRequires: gcc -BuildRequires: asciidoc -BuildRequires: perl-interpreter +BuildRequires: make +BuildRequires: perl-interpreter %description -%{common_desc} +Any C structure can be stored in a hash table using uthash. Just +add a UT_hash_handle to the structure and choose one or more fields +in your structure to act as the key. Then use these macros to store, +retrieve or delete items from the hash table. -%package devel -Summary: A hash table for C structures (headers only) +%package devel +Summary: A hash table for C structures (headers only) -Provides: %{name}-static == %{version}-%{release} +# c-compiled libraries have been dropped upstream. +Obsoletes: libut < 2.3.0 +Obsoletes: libut-devel < 2.3.0 -BuildArch: noarch +Provides: %{name} = %{version}-%{release} +Provides: %{name}-static = %{version}-%{release} +Provides: libut = %{version}-%{release} +Provides: libut-devel = %{version}-%{release} -%description devel -%{common_desc} +BuildArch: noarch + +%description devel +Any C structure can be stored in a hash table using uthash. Just +add a UT_hash_handle to the structure and choose one or more fields +in your structure to act as the key. Then use these macros to store, +retrieve or delete items from the hash table. %package doc -Summary: Documentation-files for %{name}. -BuildArch: noarch +Summary: Documentation-files for %{name} +BuildArch: noarch %description doc This package contains the documentation-files for %{name}. -%package -n libut -Summary: Library-implementation of utvector - -%description -n libut -The utvector is an alternative to utarray. It is a bit more -efficient. It's object code, not just a header. - - -%package -n libut-devel -Summary: Development-files for libut - -Requires: %{name}-devel == %{version}-%{release} -Requires: libut%{?_isa} == %{version}-%{release} - -%description -n libut-devel -Development-files for libut. - - %prep -%autosetup -p 1 +%autosetup -p1 %build -%configure || : -export CFLAGS="-fPIC ${CFLAGS}" -%make_build -C libut -%{__cc} -shared ${CFLAGS} ${LDFLAGS} \ - -Wl,-soname,libut.so.%{sover} \ - -o libut/libut.so.%{sover} libut/*.o %make_build -C doc %install -%{__mkdir} -p html \ - %{buildroot}%{_includedir} \ - %{buildroot}%{_libdir} \ - %{buildroot}%{_pkgdocdir}/{html,libut} -%{__install} -pm 0644 src/*.h %{buildroot}%{_includedir} -%{__install} -pm 0755 libut/libut.so.0 %{buildroot}%{_libdir} -/bin/ln -s %{_libdir}/libut.so.0 %{buildroot}%{_libdir}/libut.so - +mkdir -p %{buildroot}{%{_includedir},%{_pkgdocdir}/html} +install -pm 0644 src/*.h %{buildroot}%{_includedir} # Install doc. -%{__install} -pm 0644 doc/*.txt %{buildroot}%{_pkgdocdir} -%{__install} -pm 0644 doc/*.html doc/*.css doc/*.png %{buildroot}%{_pkgdocdir}/html -%{__install} -pm 0644 libut/README.md %{buildroot}%{_pkgdocdir}/libut -%if (0%{?rhel} && 0%{?rhel} <= 6) -%{__install} -pm 0644 LICENSE %{buildroot}%{_pkgdocdir} -%endif # (0#{?rhel} && 0#{?rhel} <= 6) +install -pm 0644 doc/*.txt %{buildroot}%{_pkgdocdir} +install -pm 0644 doc/*.html doc/*.css doc/*.png %{buildroot}%{_pkgdocdir}/html %check -%configure || : +%set_build_flags %make_build -C tests %make_build -C tests/threads -%make_build -C libut/tests - - -%ldconfig_scriptlets -n libut %files devel -%if !(0%{?rhel} && 0%{?rhel} <= 6) %license LICENSE -%else # !(0%{?rhel} && 0%{?rhel} <= 6) -%doc %{_pkgdocdir}/LICENSE -%endif # !(0%{?rhel} && 0%{?rhel} <= 6) %doc %dir %{_pkgdocdir} -%exclude %{_includedir}/utvector.h -%{_includedir}/ut*.h +%doc %{_pkgdocdir}/ChangeLog.txt +%{_includedir}/*.h %files doc -%if !(0%{?rhel} && 0%{?rhel} <= 6) %license %{_datadir}/licenses/%{name}* -%endif # !(0%{?rhel} && 0%{?rhel} <= 6) %doc %{_pkgdocdir} -%files -n libut -%if !(0%{?rhel} && 0%{?rhel} <= 6) -%license %{_datadir}/licenses/%{name}* -%else # !(0%{?rhel} && 0%{?rhel} <= 6) -%doc %{_pkgdocdir}/LICENSE -%endif # !(0%{?rhel} && 0%{?rhel} <= 6) -%doc %dir %{_pkgdocdir} -%{_libdir}/libut.so.%{sover} - -%files -n libut-devel -%doc %dir %{_pkgdocdir} -%doc %{_pkgdocdir}/libut -%{_includedir}/libut.h -%{_includedir}/ringbuf.h -%{_includedir}/utvector.h -%{_libdir}/libut.so - %changelog +* Thu Dec 23 2021 Björn Esser - 2.3.0-1 +- Update to 2.3.0 +- Obsolete libut as it has been dropped upstream + * Fri Jul 23 2021 Fedora Release Engineering - 2.0.2-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 60847809eb3bd3e43b169ad00faae7944e16a7ed Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 03:42:43 +0000 Subject: [PATCH 02/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- uthash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index ae62db0..80bfaba 100644 --- a/uthash.spec +++ b/uthash.spec @@ -4,7 +4,7 @@ Name: uthash Version: 2.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A hash table for C structures License: BSD @@ -86,6 +86,9 @@ install -pm 0644 doc/*.html doc/*.css doc/*.png %{buildroot}%{_pkgdocdir}/html %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 2.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Dec 23 2021 Björn Esser - 2.3.0-1 - Update to 2.3.0 - Obsolete libut as it has been dropped upstream From 4bae7e9ae76ed2be1bcd2243f84aa1b32df42fb5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 11:35:40 +0000 Subject: [PATCH 03/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- uthash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index 80bfaba..d3eb387 100644 --- a/uthash.spec +++ b/uthash.spec @@ -4,7 +4,7 @@ Name: uthash Version: 2.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A hash table for C structures License: BSD @@ -86,6 +86,9 @@ install -pm 0644 doc/*.html doc/*.css doc/*.png %{buildroot}%{_pkgdocdir}/html %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 2.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 2.3.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From cf194b15ec13b9fa7ca41e86da62346a81af3f39 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 06:01:19 +0000 Subject: [PATCH 04/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- uthash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index d3eb387..d0d1d6e 100644 --- a/uthash.spec +++ b/uthash.spec @@ -4,7 +4,7 @@ Name: uthash Version: 2.3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A hash table for C structures License: BSD @@ -86,6 +86,9 @@ install -pm 0644 doc/*.html doc/*.css doc/*.png %{buildroot}%{_pkgdocdir}/html %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 2.3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 2.3.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From d3de8c0bf2ec08e26af98c160a55454bdcbd0448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Wed, 28 Jun 2023 01:07:34 +0200 Subject: [PATCH 05/17] Add tools package --- uthash.spec | 42 ++++++++++++++++++++++++++++++------------ 1 file changed, 30 insertions(+), 12 deletions(-) diff --git a/uthash.spec b/uthash.spec index d0d1d6e..80a5d5e 100644 --- a/uthash.spec +++ b/uthash.spec @@ -1,10 +1,6 @@ -# Header-only lib. -%global debug_package %{nil} - - Name: uthash Version: 2.3.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A hash table for C structures License: BSD @@ -44,6 +40,22 @@ in your structure to act as the key. Then use these macros to store, retrieve or delete items from the hash table. +%package tools +Summary: Command-line utilities for %{name} +Requires: %{name} = %{version}-%{release} + +%description tools +This package provides the hashscan and keystats utility programs +for %{name}. + +The hashscan program examines a running process and reports on the +uthash tables that it finds in that program’s memory. It can also +save the keys from each table in a format that can be fed into keystats. + +The keystats program is able to analyze which hash function has the best +characteristics on the set of keys reported by the hashscan program. + + %package doc Summary: Documentation-files for %{name} BuildArch: noarch @@ -57,35 +69,41 @@ This package contains the documentation-files for %{name}. %build +%set_build_flags %make_build -C doc +%make_build -C tests +%make_build -C tests/threads %install -mkdir -p %{buildroot}{%{_includedir},%{_pkgdocdir}/html} +mkdir -p %{buildroot}{%{_bindir},%{_includedir},%{_pkgdocdir}/html} +install -pm 0755 tests/{hashscan,keystats} %{buildroot}%{_bindir} install -pm 0644 src/*.h %{buildroot}%{_includedir} # Install doc. install -pm 0644 doc/*.txt %{buildroot}%{_pkgdocdir} install -pm 0644 doc/*.html doc/*.css doc/*.png %{buildroot}%{_pkgdocdir}/html -%check -%set_build_flags -%make_build -C tests -%make_build -C tests/threads - - %files devel %license LICENSE %doc %dir %{_pkgdocdir} %doc %{_pkgdocdir}/ChangeLog.txt %{_includedir}/*.h + +%files tools +%{_bindir}/* + + %files doc %license %{_datadir}/licenses/%{name}* %doc %{_pkgdocdir} %changelog +* Tue Jun 27 2023 Björn Esser - 2.3.0-5 +- Add tools package + * Sat Jan 21 2023 Fedora Release Engineering - 2.3.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From ca04d4f5e6b3147f82f1a8657d33fcbb7088640f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Wed, 28 Jun 2023 01:08:25 +0200 Subject: [PATCH 06/17] Add explicit perl BRs --- uthash.spec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index 80a5d5e..a639735 100644 --- a/uthash.spec +++ b/uthash.spec @@ -11,6 +11,8 @@ BuildRequires: asciidoc BuildRequires: gcc BuildRequires: make BuildRequires: perl-interpreter +BuildRequires: perl(strict) +BuildRequires: perl(warnings) %description Any C structure can be stored in a hash table using uthash. Just @@ -96,13 +98,13 @@ install -pm 0644 doc/*.html doc/*.css doc/*.png %{buildroot}%{_pkgdocdir}/html %files doc -%license %{_datadir}/licenses/%{name}* %doc %{_pkgdocdir} %changelog * Tue Jun 27 2023 Björn Esser - 2.3.0-5 - Add tools package +- Add explicit perl BRs * Sat Jan 21 2023 Fedora Release Engineering - 2.3.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 374588bb32a3617092f8fbbfff3ba4ee00edf21d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Wed, 28 Jun 2023 01:09:20 +0200 Subject: [PATCH 07/17] Add example program to doc package --- uthash.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index a639735..9fe65cd 100644 --- a/uthash.spec +++ b/uthash.spec @@ -82,7 +82,7 @@ mkdir -p %{buildroot}{%{_bindir},%{_includedir},%{_pkgdocdir}/html} install -pm 0755 tests/{hashscan,keystats} %{buildroot}%{_bindir} install -pm 0644 src/*.h %{buildroot}%{_includedir} # Install doc. -install -pm 0644 doc/*.txt %{buildroot}%{_pkgdocdir} +install -pm 0644 doc/*.txt tests/example.c %{buildroot}%{_pkgdocdir} install -pm 0644 doc/*.html doc/*.css doc/*.png %{buildroot}%{_pkgdocdir}/html @@ -105,6 +105,7 @@ install -pm 0644 doc/*.html doc/*.css doc/*.png %{buildroot}%{_pkgdocdir}/html * Tue Jun 27 2023 Björn Esser - 2.3.0-5 - Add tools package - Add explicit perl BRs +- Add example program to doc package * Sat Jan 21 2023 Fedora Release Engineering - 2.3.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From f0195e551520f78334747dfe096e032b580c882e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Wed, 28 Jun 2023 01:10:20 +0200 Subject: [PATCH 08/17] Drop google site-verification file from doc package --- uthash.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/uthash.spec b/uthash.spec index 9fe65cd..c45bf4b 100644 --- a/uthash.spec +++ b/uthash.spec @@ -84,6 +84,7 @@ install -pm 0644 src/*.h %{buildroot}%{_includedir} # Install doc. install -pm 0644 doc/*.txt tests/example.c %{buildroot}%{_pkgdocdir} install -pm 0644 doc/*.html doc/*.css doc/*.png %{buildroot}%{_pkgdocdir}/html +rm -f %{buildroot}%{_pkgdocdir}/html/google*.html %files devel @@ -106,6 +107,7 @@ install -pm 0644 doc/*.html doc/*.css doc/*.png %{buildroot}%{_pkgdocdir}/html - Add tools package - Add explicit perl BRs - Add example program to doc package +- Drop google site-verification file from doc package * Sat Jan 21 2023 Fedora Release Engineering - 2.3.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 55d6af2e197611f61e16512134782823b27de56f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Wed, 28 Jun 2023 01:11:13 +0200 Subject: [PATCH 09/17] Require main package in doc package to avoid file conflicts --- uthash.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/uthash.spec b/uthash.spec index c45bf4b..34a1bb0 100644 --- a/uthash.spec +++ b/uthash.spec @@ -61,6 +61,7 @@ characteristics on the set of keys reported by the hashscan program. %package doc Summary: Documentation-files for %{name} BuildArch: noarch +Requires: %{name} = %{version}-%{release} %description doc This package contains the documentation-files for %{name}. @@ -108,6 +109,7 @@ rm -f %{buildroot}%{_pkgdocdir}/html/google*.html - Add explicit perl BRs - Add example program to doc package - Drop google site-verification file from doc package +- Require main package in doc package to avoid file conflicts * Sat Jan 21 2023 Fedora Release Engineering - 2.3.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 426d677d59d839493ddb2a92eb4767d8ba422c67 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 17:19:39 +0000 Subject: [PATCH 10/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- uthash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index 34a1bb0..aebdede 100644 --- a/uthash.spec +++ b/uthash.spec @@ -1,6 +1,6 @@ Name: uthash Version: 2.3.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A hash table for C structures License: BSD @@ -104,6 +104,9 @@ rm -f %{buildroot}%{_pkgdocdir}/html/google*.html %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 2.3.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Tue Jun 27 2023 Björn Esser - 2.3.0-5 - Add tools package - Add explicit perl BRs From 05db3e4e3024cb5e50606283ea4913241d2e5bc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 1 Nov 2023 15:24:52 +0000 Subject: [PATCH 11/17] Migrate to SPDX license This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_2 --- uthash.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index aebdede..256ae98 100644 --- a/uthash.spec +++ b/uthash.spec @@ -3,7 +3,7 @@ Version: 2.3.0 Release: 6%{?dist} Summary: A hash table for C structures -License: BSD +License: BSD-1-Clause URL: http://troydhanson.github.io/%{name} Source0: https://github.com/troydhanson/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz From 89e1ed1efa1fac4e764891f872e83e7ccbf4348b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 07:21:47 +0000 Subject: [PATCH 12/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- uthash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index 256ae98..0d539a6 100644 --- a/uthash.spec +++ b/uthash.spec @@ -1,6 +1,6 @@ Name: uthash Version: 2.3.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A hash table for C structures License: BSD-1-Clause @@ -104,6 +104,9 @@ rm -f %{buildroot}%{_pkgdocdir}/html/google*.html %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 2.3.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 2.3.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 4f80f6076baebaaedb051332c35230941570bdfa Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 08:28:24 +0000 Subject: [PATCH 13/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- uthash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index 0d539a6..5390d04 100644 --- a/uthash.spec +++ b/uthash.spec @@ -1,6 +1,6 @@ Name: uthash Version: 2.3.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A hash table for C structures License: BSD-1-Clause @@ -104,6 +104,9 @@ rm -f %{buildroot}%{_pkgdocdir}/html/google*.html %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 2.3.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sat Jan 27 2024 Fedora Release Engineering - 2.3.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 9987d430947ab5caf65c50261b80e506eb4d00ce Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 13:59:52 +0000 Subject: [PATCH 14/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- uthash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index 5390d04..83e26a5 100644 --- a/uthash.spec +++ b/uthash.spec @@ -1,6 +1,6 @@ Name: uthash Version: 2.3.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A hash table for C structures License: BSD-1-Clause @@ -104,6 +104,9 @@ rm -f %{buildroot}%{_pkgdocdir}/html/google*.html %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 2.3.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Sat Jul 20 2024 Fedora Release Engineering - 2.3.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From c1d9265ce4fe218f98bc76be92997cfb5cc4c5ac Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 19:54:24 +0000 Subject: [PATCH 15/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- uthash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index 83e26a5..fb6bec8 100644 --- a/uthash.spec +++ b/uthash.spec @@ -1,6 +1,6 @@ Name: uthash Version: 2.3.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A hash table for C structures License: BSD-1-Clause @@ -104,6 +104,9 @@ rm -f %{buildroot}%{_pkgdocdir}/html/google*.html %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 2.3.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 2.3.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From da2b48eb09dfd78942937350bad11bf1bf751441 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 20 Jan 2026 03:31:27 +0000 Subject: [PATCH 16/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- uthash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index fb6bec8..6218b78 100644 --- a/uthash.spec +++ b/uthash.spec @@ -1,6 +1,6 @@ Name: uthash Version: 2.3.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A hash table for C structures License: BSD-1-Clause @@ -104,6 +104,9 @@ rm -f %{buildroot}%{_pkgdocdir}/html/google*.html %changelog +* Tue Jan 20 2026 Fedora Release Engineering - 2.3.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 2.3.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 7ef41ef1ae73ea19e3e329830b73db96754eb306 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:18:17 +0000 Subject: [PATCH 17/17] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- uthash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/uthash.spec b/uthash.spec index 6218b78..7bf0b2a 100644 --- a/uthash.spec +++ b/uthash.spec @@ -1,6 +1,6 @@ Name: uthash Version: 2.3.0 -Release: 11%{?dist} +Release: 12%{?dist} Summary: A hash table for C structures License: BSD-1-Clause @@ -104,6 +104,9 @@ rm -f %{buildroot}%{_pkgdocdir}/html/google*.html %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 2.3.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Tue Jan 20 2026 Fedora Release Engineering - 2.3.0-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild