public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/python3-rpm] epel9: Merge c9s into epel9-next
@ 2026-06-04 15:28
0 siblings, 0 replies; only message in thread
From: @ 2026-06-04 15:28 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/python3-rpm
Branch : epel9
Commit : 39800b659b6a10f9548a6949a6b450c663197a50
Author : Miro Hrončok <miro@hroncok.cz>
Date : 2025-12-10T12:17:45+01:00
Stats : +1296/-1299 in 8 file(s)
URL : https://src.fedoraproject.org/rpms/python3-rpm/c/39800b659b6a10f9548a6949a6b450c663197a50?branch=epel9
Log:
Merge c9s into epel9-next
---
diff --git a/0001-Improve-error-handling-on-keystore-load.patch b/0001-Improve-error-handling-on-keystore-load.patch
new file mode 100644
index 0000000..8d16b69
--- /dev/null
+++ b/0001-Improve-error-handling-on-keystore-load.patch
@@ -0,0 +1,168 @@
+From 38ccf257f278e6b71f73dee9ccb568fe2ad3037a Mon Sep 17 00:00:00 2001
+From: Michal Domonkos <mdomonko@redhat.com>
+Date: Fri, 31 Oct 2025 11:21:28 +0100
+Subject: [PATCH 1/2] Obtain nvr string only once, before the loop
+
+Refactor loadKeyringFromDB() a bit so that the nvr string can be reused
+in multiple places. This will be handy in the next commit.
+
+No functional change.
+---
+ lib/rpmts.c | 7 +++----
+ 1 file changed, 3 insertions(+), 4 deletions(-)
+
+diff --git a/lib/rpmts.c b/lib/rpmts.c
+index 69888acfc..ceb021789 100644
+--- a/lib/rpmts.c
++++ b/lib/rpmts.c
+@@ -327,10 +327,12 @@ static int loadKeyringFromDB(rpmts ts)
+ while ((h = rpmdbNextIterator(mi)) != NULL) {
+ struct rpmtd_s pubkeys;
+ const char *key;
++ char *nvr;
+
+ if (!headerGet(h, RPMTAG_PUBKEYS, &pubkeys, HEADERGET_MINMEM))
+ continue;
+
++ nvr = headerGetAsString(h, RPMTAG_NVR);
+ while ((key = rpmtdNextString(&pubkeys))) {
+ uint8_t *pkt;
+ size_t pktlen;
+@@ -341,9 +343,7 @@ static int loadKeyringFromDB(rpmts ts)
+ rpmPubkey *subkeys = rpmGetSubkeys(key, &subkeysCount);
+
+ if (rpmKeyringAddKey(ts->keyring, key) == 0) {
+- char *nvr = headerGetAsString(h, RPMTAG_NVR);
+ rpmlog(RPMLOG_DEBUG, "added key %s to keyring\n", nvr);
+- free(nvr);
+ nkeys++;
+ }
+ rpmPubkeyFree(key);
+@@ -352,12 +352,10 @@ static int loadKeyringFromDB(rpmts ts)
+ rpmPubkey subkey = subkeys[i];
+
+ if (rpmKeyringAddKey(ts->keyring, subkey) == 0) {
+- char *nvr = headerGetAsString(h, RPMTAG_NVR);
+ rpmlog(RPMLOG_DEBUG,
+ "added subkey %d of main key %s to keyring\n",
+ i, nvr);
+
+- free(nvr);
+ nkeys++;
+ }
+ rpmPubkeyFree(subkey);
+@@ -367,6 +365,7 @@ static int loadKeyringFromDB(rpmts ts)
+ }
+ }
+ rpmtdFreeData(&pubkeys);
++ free(nvr);
+ }
+ rpmdbFreeIterator(mi);
+
+--
+2.51.1
+
+
+From c68a557146c594458fb00109863565651cbe8f0a Mon Sep 17 00:00:00 2001
+From: Michal Domonkos <mdomonko@redhat.com>
+Date: Fri, 31 Oct 2025 14:17:25 +0100
+Subject: [PATCH 2/2] Improve error handling on keystore load
+
+Report a failure to load a key, but only as a non-fatal warning so that
+other keys can still be loaded, if any. This behavior is in the spirit
+of #3996, too.
+
+Only emit *one* warning in the keystore_rpmdb, to keep the (code) noise
+down. This covers all three steps (rpmBase64Decode, rpmPubkeyNew and
+rpmKeyringAddKey). We don't need to check if key is NULL since that's
+handled by rpmKeyringAddKey() which returns immediately if that's the
+case.
+
+In the other two backends, we already handle a failure to *read* a key,
+so keep that and just add another warning for a failed addition.
+
+This would be difficult to test (especially in the rpmdb backend) so
+skimping on that here.
+
+(backported from commit 75de4f3eb28c686e7f73b750ca116a8e57b7a690)
+---
+ lib/rpmts.c | 18 +++++++++++++++---
+ 1 file changed, 15 insertions(+), 3 deletions(-)
+
+diff --git a/lib/rpmts.c b/lib/rpmts.c
+index ceb021789..f6fe38c7a 100644
+--- a/lib/rpmts.c
++++ b/lib/rpmts.c
+@@ -281,6 +281,7 @@ static int loadKeyringFromFiles(rpmts ts)
+ }
+
+ for (char **f = files; *f; f++) {
++ int rc = 1;
+ int subkeysCount, i;
+ rpmPubkey *subkeys;
+ rpmPubkey key = rpmPubkeyRead(*f);
+@@ -289,7 +290,7 @@ static int loadKeyringFromFiles(rpmts ts)
+ rpmlog(RPMLOG_ERR, _("%s: reading of public key failed.\n"), *f);
+ continue;
+ }
+- if (rpmKeyringAddKey(ts->keyring, key) == 0) {
++ if ((rc = rpmKeyringAddKey(ts->keyring, key)) == 0) {
+ nkeys++;
+ rpmlog(RPMLOG_DEBUG, "added key %s to keyring\n", *f);
+ }
+@@ -305,10 +306,15 @@ static int loadKeyringFromFiles(rpmts ts)
+ i, *f);
+
+ nkeys++;
++ } else {
++ rc = 1;
+ }
+ rpmPubkeyFree(subkey);
+ }
+ free(subkeys);
++
++ if (rc)
++ rpmlog(RPMLOG_WARNING, _("Could not load key %s\n"), *f);
+ }
+ exit:
+ free(pkpath);
+@@ -334,15 +340,16 @@ static int loadKeyringFromDB(rpmts ts)
+
+ nvr = headerGetAsString(h, RPMTAG_NVR);
+ while ((key = rpmtdNextString(&pubkeys))) {
++ int rc = 1;
+ uint8_t *pkt;
+ size_t pktlen;
+
+- if (rpmBase64Decode(key, (void **) &pkt, &pktlen) == 0) {
++ if ((rc = rpmBase64Decode(key, (void **) &pkt, &pktlen)) == 0) {
+ rpmPubkey key = rpmPubkeyNew(pkt, pktlen);
+ int subkeysCount, i;
+ rpmPubkey *subkeys = rpmGetSubkeys(key, &subkeysCount);
+
+- if (rpmKeyringAddKey(ts->keyring, key) == 0) {
++ if ((rc = rpmKeyringAddKey(ts->keyring, key)) == 0) {
+ rpmlog(RPMLOG_DEBUG, "added key %s to keyring\n", nvr);
+ nkeys++;
+ }
+@@ -357,12 +364,17 @@ static int loadKeyringFromDB(rpmts ts)
+ i, nvr);
+
+ nkeys++;
++ } else {
++ rc = 1;
+ }
+ rpmPubkeyFree(subkey);
+ }
+ free(subkeys);
+ free(pkt);
+ }
++
++ if (rc)
++ rpmlog(RPMLOG_WARNING, _("Could not load key %s\n"), nvr);
+ }
+ rpmtdFreeData(&pubkeys);
+ free(nvr);
+--
+2.51.1
+
diff --git a/0001-Sort-files-before-passing-to-file-attribute-dependen.patch b/0001-Sort-files-before-passing-to-file-attribute-dependen.patch
new file mode 100644
index 0000000..0f4c312
--- /dev/null
+++ b/0001-Sort-files-before-passing-to-file-attribute-dependen.patch
@@ -0,0 +1,61 @@
+From 08d5e162c2ec3a415a5e657fd8b63f0cdf14ddd8 Mon Sep 17 00:00:00 2001
+From: Chris Riches <chris.riches@nutanix.com>
+Date: Thu, 5 Jun 2025 09:47:02 +0000
+Subject: [PATCH] Sort files before passing to file attribute dependency
+ generators
+
+The fc->fahash map is constructed in parallel, and so ends up with
+non-deterministic ordering of files. Passing this unordered list through
+to file attribute dependency generators can therefore result in
+non-reproducible RPM builds.
+
+In theory, a file attribute generator should only care about each
+individual file it is given, and so the order should not matter.
+However, some generators track state in-between files and so this
+property does not hold. Notably, the python3-rpm-generators in RHEL
+(ab)use this system to apply package-level dependencies that are based
+on the package name rather than the content of any particular file, and
+simply apply this to the first file that they see from a matching
+package. Therefore, different input file orderings will result in
+different files getting the dependency, and therefore different output
+RPMs.
+
+To avoid this, sort the files before passing them to the generators.
+Since the fc->fn array is already sorted by filename, we just need to
+sort the list of indices into that array.
+
+(backported from commit bc0b94026bc5651435819043394cbe9a766a4fd5)
+---
+ build/rpmfc.c | 9 +++++++++
+ 1 file changed, 9 insertions(+)
+
+diff --git a/build/rpmfc.c b/build/rpmfc.c
+index c3015ffcb..b5fb611db 100644
+--- a/build/rpmfc.c
++++ b/build/rpmfc.c
+@@ -1010,6 +1010,13 @@ static const struct applyDep_s applyDepTable[] = {
+ { 0, 0, NULL },
+ };
+
++static int compareInts(const void *a, const void *b)
++{
++ int ia = *((int*)a);
++ int ib = *((int*)b);
++ return ia > ib ? 1 : ia < ib ? -1 : 0;
++}
++
+ static int applyAttr(rpmfc fc, int aix, const char *aname,
+ const struct exclreg_s *excl,
+ const struct applyDep_s *dep)
+@@ -1032,6 +1039,8 @@ static int applyAttr(rpmfc fc, int aix, const char *aname,
+
+ if (!rstreq(cmd, "")) {
+ char *ns = rpmfcAttrMacro(aname, "namespace", NULL);
++ /* Sort for reproducibility - hashmap was constructed in parallel */
++ qsort(ixs, n, sizeof(*ixs), compareInts);
+ for (int i = 0; i < n; i++) {
+ if (rpmfcHelper(fc, ixs[i], excl, dep->type, dep->tag,
+ ns, cmd, callable))
+--
+2.51.1
+
diff --git a/python3-rpm.spec b/python3-rpm.spec
index 21f0240..e53b2cd 100644
--- a/python3-rpm.spec
+++ b/python3-rpm.spec
@@ -31,7 +31,7 @@
%global rpmver 4.16.1.3
#global snapver rc1
-%global rel 39
+%global rel 40
%global sover 9
%global rhelrel %{?snapver:0.%{snapver}.}%{rel}
%global rel_next %{lua:print(tonumber(rpm.expand("%rel")) + 1)}
@@ -126,6 +126,8 @@ Patch152: 0001-Fix-a-race-condition-in-brp-strip.patch
Patch153: 0002-Store-configurable-digest-s-on-packages-from-verific.patch
Patch154: 0003-Add-support-for-spec-local-file-attributes-and-gener.patch
Patch155: 0001-Allow-an-optional-override-clock-for-deterministic-t.patch
+Patch156: 0001-Improve-error-handling-on-keystore-load.patch
+Patch157: 0001-Sort-files-before-passing-to-file-attribute-dependen.patch
# These are not yet upstream
Patch906: rpm-4.7.1-geode-i686.patch
@@ -411,6 +413,10 @@ make clean
%{python3_sitearch}/rpm-%{rpmver}*.egg-info/
%changelog
+* Fri Nov 21 2025 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-40
+- Improve error handling on keystore load (RHEL-114837)
+- Sort files before passing to file attr dependency generators (RHEL-95376)
+
* Wed Aug 20 2025 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-39
- Allow an optional "override clock" for deterministic timestamps (RHEL-106672)
diff --git a/.fmf/version b/.fmf/version
deleted file mode 100644
index d00491f..0000000
--- a/.fmf/version
+++ /dev/null
@@ -1 +0,0 @@
-1
diff --git a/0001-Replace-uses-of-deprecated-PyEval_CallObject-with-Py.patch b/0001-Replace-uses-of-deprecated-PyEval_CallObject-with-Py.patch
new file mode 100644
index 0000000..0d113c0
--- /dev/null
+++ b/0001-Replace-uses-of-deprecated-PyEval_CallObject-with-Py.patch
@@ -0,0 +1,37 @@
+From 9ef1e790602622ab7d5e3b680b105958ee0199e7 Mon Sep 17 00:00:00 2001
+From: Panu Matilainen <pmatilai@redhat.com>
+Date: Wed, 28 Oct 2020 09:09:47 +0200
+Subject: [PATCH] Replace uses of deprecated PyEval_CallObject() with
+ PyObject_Call()
+
+Python 3.9 has deprecated PyEval_CallObject(), replace with a more
+modern and documented interface (https://bugs.python.org/issue29548).
+---
+ python/rpmts-py.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/python/rpmts-py.c b/python/rpmts-py.c
+index c2a4150..fa09220 100644
+--- a/python/rpmts-py.c
++++ b/python/rpmts-py.c
+@@ -244,7 +244,7 @@ rpmts_SolveCallback(rpmts ts, rpmds ds, const void * data)
+ args = Py_BuildValue("(OiNNi)", cbInfo->tso,
+ rpmdsTagN(ds), utf8FromString(rpmdsN(ds)),
+ utf8FromString(rpmdsEVR(ds)), rpmdsFlags(ds));
+- result = PyEval_CallObject(cbInfo->cb, args);
++ result = PyObject_Call(cbInfo->cb, args, NULL);
+ Py_DECREF(args);
+
+ if (!result) {
+@@ -536,7 +536,7 @@ rpmtsCallback(const void * hd, const rpmCallbackType what,
+ Py_INCREF(pkgObj);
+
+ args = Py_BuildValue("(iLLOO)", what, amount, total, pkgObj, cbInfo->data);
+- result = PyEval_CallObject(cbInfo->cb, args);
++ result = PyObject_Call(cbInfo->cb, args, NULL);
+ Py_DECREF(args);
+ Py_DECREF(pkgObj);
+
+--
+2.50.0
+
diff --git a/ci.fmf b/ci.fmf
deleted file mode 100644
index c5aa0e0..0000000
--- a/ci.fmf
+++ /dev/null
@@ -1 +0,0 @@
-resultsdb-testcase: separate
diff --git a/plans/internal/CI-Tier-1.fmf b/plans/internal/CI-Tier-1.fmf
deleted file mode 100644
index 42b51a0..0000000
--- a/plans/internal/CI-Tier-1.fmf
+++ /dev/null
@@ -1,12 +0,0 @@
-summary: Internal CI-Tier-1 tests plan
-discover:
- - name: rpm
- how: fmf
- filter: 'tag: CI-Tier-1'
- url: https://pkgs.devel.redhat.com/git/tests/rpm
-execute:
- how: tmt
-adjust:
- enabled: false
- when: distro == centos-stream or distro == fedora
-
diff --git a/python3-rpm.spec b/python3-rpm.spec
new file mode 100644
index 0000000..e53b2cd
--- /dev/null
+++ b/python3-rpm.spec
@@ -0,0 +1,1023 @@
+# run internal testsuite?
+# fakechroot is severely broken beyond fedora 33, disable...
+%if 0%{?fedora} > 33 || 0%{?rhel} > 8
+%bcond_with check
+%else
+%bcond_without check
+%endif
+
+# build against xz?
+%bcond_without xz
+# build with plugins?
+%bcond_without plugins
+# build with libarchive? (needed for rpm2archive)
+%bcond_without libarchive
+# build with libimaevm.so
+%bcond_without libimaevm
+# build with zstd support?
+%bcond_without zstd
+# build with ndb backend?
+%bcond_without ndb
+# build with sqlite support?
+%bcond_without sqlite
+# build with bdb support?
+%bcond_with bdb
+# build with internal Berkeley DB?
+%bcond_with int_bdb
+# build with bdb_ro support?
+%bcond_without bdb_ro
+
+%define rpmhome /usr/lib/rpm
+
+%global rpmver 4.16.1.3
+#global snapver rc1
+%global rel 40
+%global sover 9
+%global rhelrel %{?snapver:0.%{snapver}.}%{rel}
+%global rel_next %{lua:print(tonumber(rpm.expand("%rel")) + 1)}
+%global rhelrel_next %{?snapver:0.%{snapver}.}%{rel_next}
+
+# Bump this for EPEL only rebuilds, reset when %%rel was bumped
+%global baserelease 1
+
+%global srcver %{rpmver}%{?snapver:-%{snapver}}
+%global srcdir %{?snapver:testing}%{!?snapver:rpm-%(echo %{rpmver} | cut -d'.' -f1-2).x}
+
+%if %{with bdb}
+%define bdbver 5.3.15
+
+# Build-dependency on systemd for the sake of one macro would be a bit much...
+%{!?_tmpfilesdir:%global _tmpfilesdir /usr/lib/tmpfiles.d}
+%endif
+
+Summary: Python 3.X packages with RPM bindings
+Name: python3-rpm
+Version: %{rpmver}
+Release: %{rhelrel}.%{baserelease}%{?dist}
+Url: http://www.rpm.org/
+Source0: http://ftp.rpm.org/releases/%{srcdir}/rpm-%{srcver}.tar.bz2
+%if %{with bdb} && %{with int_bdb}
+Source1: db-%{bdbver}.tar.gz
+%endif
+
+Source10: rpmdb-rebuild.service
+
+# Disable autoconf config.site processing (#962837)
+Patch1: rpm-4.15.x-siteconfig.patch
+# In current Fedora, man-pages pkg owns all the localized man directories
+Patch3: rpm-4.9.90-no-man-dirs.patch
+# Temporary band-aid for rpm2cpio whining on payload size mismatch (#1142949)
+Patch5: rpm-4.12.0-rpm2cpio-hack.patch
+# https://github.com/rpm-software-management/rpm/pull/473
+Patch6: 0001-find-debuginfo.sh-decompress-DWARF-compressed-ELF-se.patch
+Patch7: 0001-Issue-deprecation-warning-when-creating-BDB-database.patch
+
+# Patches already upstream:
+Patch100: rpm-4.16.1.3-imp-covscan-fixes.patch
+Patch101: rpm-4.16.1.3-rpmsign-support-EdDSA-sig.patch
+Patch102: rpm-4.16.1.3-add-fapolicyd-plugin.patch
+Patch103: rpm-4.16.1.3-unblock-signals-in-forked-scriptlets.patch
+Patch104: rpm-4.16.1.3-support-bdb-hash-v8.patch
+Patch105: rpm-4.16.1.3-ELF-files-strip-when-debuginfo-disabled.patch
+Patch106: rpm-4.16.1.3-unbreak-checking-of-installed-rich-deps.patch
+Patch107: rpm-4.16.1.3-fix-IMA-sig-len-assumed-const.patch
+Patch108: rpm-4.16.1.3-validate-and-require-subkey-binding-sigs.patch
+Patch109: rpm-4.16.1.3-bump-rpmdb-cookie-hash-to-SHA256-for-FIPS.patch
+Patch110: rpm-4.16.1.3-add-path-query-option.patch
+Patch111: rpm-4.16.1.3-skip-recorded-symlinks-in-setperms.patch
+Patch112: rpm-4.16.1.3-fix-regression-reading-rpm-v3-pkgs.patch
+Patch113: rpm-4.16.1.3-fix-spurious-transfiletriggerpostun-execution.patch
+Patch114: rpm-4.16.1.3-Make-rpm2cpio.sh-more-robust.patch
+Patch115: rpm-4.16.1.3-fapolicyd-make-write-nonblocking.patch
+Patch116: rpm-4.16.1.3-bcond-macros.patch
+Patch117: rpm-4.16.1.3-caret-query.patch
+Patch118: rpm-4.16.1.3-caret-query2.patch
+Patch119: rpm-4.18-libselinux-log.patch
+Patch120: rpm-4.16.1.3-rpm2archive-error-handling.patch
+Patch121: rpm-4.16.1.3-rpm2archive-nocompression.patch
+Patch122: rpm-4.16.1.3-Support-long-languages-names-for-QT.patch
+Patch123: rpm-4.14.3-rpm2archive-parse-popt-options.patch
+Patch124: rpm-4.14.3-rpm2archive-Don-t-print-usage.patch
+Patch125: rpm-4.16.1.3-IMA-without-xattr.patch
+# Backport fsm to fix CVEs
+Patch126: 0001-Eliminate-code-duplication-from-rpmfiNext.patch
+Patch127: 0001-Add-optional-callback-on-directory-changes-during-rp.patch
+Patch128: 0001-Pass-file-descriptor-to-file-prepare-plugin-hook-use.patch
+Patch129: 0001-Swap-over-to-dirfd-basename-based-operation-within-t.patch
+Patch130: 0001-Use-file-state-machine-from-rpm-4.19.patch
+Patch131: 0001-Emit-full-paths-for-file-disposition-diagnostics-on-.patch
+Patch132: 0001-Fix-wrong-return-code-on-O_DIRECTORY-open-of-invalid.patch
+Patch133: 0001-Print-full-path-if-file-removal-fails.patch
+Patch134: 0001-Don-t-warn-about-missing-user-group-on-skipped-files.patch
+
+Patch140: 0001-Fix-short-circuiting-of-version-strings-in-expressio.patch
+Patch141: 0001-Fix-a-copy-paste-help-description-of-whatconflicts-R.patch
+Patch142: 0001-Expose-and-document-rpmdb-verifydb-operation.patch
+Patch143: 0001-Don-t-segfault-on-missing-priority-tag.patch
+Patch144: 0001-Use-unsigned-integers-for-buildtime-too-for-Y2K38-sa.patch
+Patch145: 0001-Fix-potential-use-of-uninitialized-pipe-array.patch
+Patch146: 0001-Fix-potential-use-of-uninitialized-pgp-struct.patch
+Patch147: 0001-Add-SourceLicense-tag-to-spec-syntax.patch
+Patch148: 0001-Talk-about-rpmsign-in-the-rpmsign-man-page.patch
+Patch149: 0001-Allow-parametric-macros-to-opt-out-of-option-process.patch
+Patch150: 0001-Report-unsafe-symlinks-during-installation-as-a-spec.patch
+Patch151: 0002-Fix-FA_TOUCH-ed-files-getting-removed-on-failed-upda.patch
+Patch152: 0001-Fix-a-race-condition-in-brp-strip.patch
+Patch153: 0002-Store-configurable-digest-s-on-packages-from-verific.patch
+Patch154: 0003-Add-support-for-spec-local-file-attributes-and-gener.patch
+Patch155: 0001-Allow-an-optional-override-clock-for-deterministic-t.patch
+Patch156: 0001-Improve-error-handling-on-keystore-load.patch
+Patch157: 0001-Sort-files-before-passing-to-file-attribute-dependen.patch
+
+# These are not yet upstream
+Patch906: rpm-4.7.1-geode-i686.patch
+# Probably to be upstreamed in slightly different form
+Patch907: rpm-4.15.x-ldflags.patch
+Patch908: 0001-Give-warning-on-not-supported-hash-for-RSA-keys.patch
+Patch909: rpm-4.16.1.3-external-debugedit.patch
+
+# Not yet (all) upstream, debugedit DWARF5
+# https://code.wildebeest.org/git/user/mjw/rpm/log/?h=gcc-dwarf5-4.16.1.2
+Patch911: 0001-NFC-debugedit-Protect-macro-arguments-by-parentheses.patch
+Patch912: 0002-NFC-debugedit-Move-code-from-edit_dwarf2-to-edit_inf.patch
+Patch913: 0003-debugedit-Fix-missing-relocation-of-.debug_types-sec.patch
+Patch914: 0004-NFC-debugedit-Move-code-to-separate-functions.patch
+Patch915: 0005-debugedit-Implement-DWARF-5-unit-header-and-new-form.patch
+Patch916: 0006-debugedit-Handle-DWARF-5-debug_line-and-debug_line_s.patch
+
+# Downstream-only patches
+Patch1000: rpm-4.16.1.3-hashtab-use-after-free-fix.patch
+Patch1001: rpm-4.16.1.3-find_debuginfo_vendor_opts.patch
+Patch1002: 0001-Macroize-find-debuginfo-script-location.patch
+Patch1003: 0001-Fix-root-relocation-regression.patch
+Patch1004: 0001-Skip-to-hashed-subpacket-data-directly.patch
+Patch1005: rpm-4.16.1.3-fix-patch-zero-semantics.patch
+
+# EPEL-only patches
+# Upstream backport for Python 3.13 compatibility
+# From https://github.com/rpm-software-management/rpm/commit/4821d42abb
+Patch3001: 0001-Replace-uses-of-deprecated-PyEval_CallObject-with-Py.patch
+
+# Partially GPL/LGPL dual-licensed and some bits with BSD
+# SourceLicense: (GPLv2+ and LGPLv2+ with exceptions) and BSD
+License: GPLv2+
+
+# This prevents a build with uninstallable runtime Requires
+BuildRequires: (rpm-libs >= %{version}-%{rhelrel} with rpm-libs < %{version}-%{rhelrel_next})
+BuildRequires: rpm-sign-libs
+
+%if %{with bdb} && %{without int_bdb}
+BuildRequires: libdb-devel
+%endif
+
+%if %{with check}
+BuildRequires: fakechroot gnupg2 debugedit
+%endif
+
+# XXX generally assumed to be installed but make it explicit as rpm
+# is a bit special...
+BuildRequires: redhat-rpm-config >= 94
+BuildRequires: systemd-rpm-macros
+BuildRequires: gcc make
+BuildRequires: gawk
+BuildRequires: elfutils-devel >= 0.112
+BuildRequires: elfutils-libelf-devel
+BuildRequires: readline-devel zlib-devel
+BuildRequires: openssl-devel
+# The popt version here just documents an older known-good version
+BuildRequires: popt-devel >= 1.10.2
+BuildRequires: file-devel
+BuildRequires: gettext-devel
+BuildRequires: ncurses-devel
+BuildRequires: bzip2-devel >= 0.9.0c-2
+BuildRequires: lua-devel >= 5.1
+BuildRequires: libcap-devel
+BuildRequires: libacl-devel
+%if %{with xz}
+BuildRequires: xz-devel >= 4.999.8
+%endif
+%if %{with libarchive}
+BuildRequires: libarchive-devel
+%endif
+%if %{with zstd}
+BuildRequires: libzstd-devel
+%endif
+%if %{with sqlite}
+BuildRequires: sqlite-devel
+%endif
+# Couple of patches change makefiles so, require for now...
+BuildRequires: automake libtool
+
+%if %{with plugins}
+BuildRequires: libselinux-devel
+BuildRequires: dbus-devel
+BuildRequires: audit-libs-devel
+%endif
+
+%if %{with libimaevm}
+BuildRequires: ima-evm-utils-devel >= 1.0
+%endif
+
+%description
+Additional Python 3.X packages with the RPM Python bindings.
+
+%define python3x_package %{?name:%package -n python%{python3_pkgversion}-rpm
+Summary: Python %{python3_pkgversion} bindings for apps which will manipulate RPM packages
+BuildRequires: python%{python3_pkgversion}-devel
+%if v"%{python3_pkgversion}" >= v"3.12"
+BuildRequires: python%{python3_pkgversion}-setuptools
+%endif
+Requires: (rpm-libs%{?_isa} >= %{version}-%{rhelrel} with rpm-libs%{?_isa} < %{version}-%{rhelrel_next})
+
+%description -n python%{python3_pkgversion}-rpm
+The python%{python3_pkgversion}-rpm package contains a module that permits applications
+written in the Python programming language to use the interface
+supplied by RPM Package Manager libraries.
+
+This package should be installed if you want to develop Python %{python3_pkgversion}
+programs that will manipulate RPM packages and databases.}
+
+%global python3_pkgversion 3.11
+%python3x_package
+%global python3_pkgversion 3.12
+%python3x_package
+%global python3_pkgversion 3.13
+%python3x_package
+
+%prep
+%autosetup -n rpm-%{srcver} %{?with_int_bdb:-a 1} -p1
+
+%if %{with bdb} && %{with int_bdb}
+ln -s db-%{bdbver} db
+%endif
+
+# switch to sqlite db by default, including during build-time tests
+%if %{with sqlite}
+sed -i -e "/_db_backend/ s/ bdb/ sqlite/g" macros.in
+%endif
+
+sed -i 's/python3.9/python%{python3_pkgversion}/' aclocal.m4
+
+%build
+%set_build_flags
+
+autoreconf -i -f
+
+# Hardening hack taken from macro %%configure defined in redhat-rpm-config
+for i in $(find . -name ltmain.sh) ; do
+ %{__sed} -i.backup -e 's~compiler_flags=$~compiler_flags="%{_hardened_ldflags}"~' $i
+done;
+
+export PYTHON=%{python3}
+
+# Using configure macro has some unwanted side-effects on rpm platform
+# setup, use the old-fashioned way for now only defining minimal paths.
+./configure \
+ --prefix=%{_usr} \
+ --sysconfdir=%{_sysconfdir} \
+ --localstatedir=%{_var} \
+ --sharedstatedir=%{_var}/lib \
+ --libdir=%{_libdir} \
+ --build=%{_target_platform} \
+ --host=%{_target_platform} \
+ --with-vendor=redhat \
+ --enable-bdb=%{?with_bdb:yes}%{!?with_bdb:no} \
+ %{!?with_int_bdb: --with-external-db} \
+ %{!?with_plugins: --disable-plugins} \
+ --with-lua \
+ --with-selinux \
+ --with-cap \
+ --with-acl \
+ %{?with_ndb: --enable-ndb} \
+ %{!?with_libarchive: --without-archive} \
+ %{?with_libimaevm: --with-imaevm} \
+ %{?with_zstd: --enable-zstd} \
+ %{?with_sqlite: --enable-sqlite} \
+ %{?with_bdb_ro: --enable-bdb-ro} \
+ --with-fapolicyd \
+ --enable-python \
+ --with-crypto=openssl
+
+%make_build
+
+pushd python
+%global python3_pkgversion 3.11
+%py3_build
+%global python3_pkgversion 3.12
+%py3_build
+%global python3_pkgversion 3.13
+%py3_build
+popd
+
+%install
+%make_install
+
+# We need to build with --enable-python for the self-test suite, but we
+# actually package the bindings built with setup.py (#531543#c26)
+pushd python
+%global python3_pkgversion 3.11
+%py3_install
+%global python3_pkgversion 3.12
+%py3_install
+%global python3_pkgversion 3.13
+%py3_install
+popd
+
+cat > $RPM_BUILD_ROOT/%{rpmhome}/debugedit << END
+#!/bin/sh
+/usr/bin/debugedit "\$@"
+END
+cat > $RPM_BUILD_ROOT/%{rpmhome}/sepdebugcrcfix << END
+#!/bin/sh
+/usr/bin/sepdebugcrcfix "\$@"
+END
+cat > $RPM_BUILD_ROOT/%{rpmhome}/find-debuginfo.sh << END
+#!/bin/sh
+/usr/bin/find-debuginfo.sh "\$@"
+END
+
+mkdir -p $RPM_BUILD_ROOT%{_unitdir}
+install -m 644 %{SOURCE10} $RPM_BUILD_ROOT/%{_unitdir}
+
+# Save list of packages through cron
+mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/cron.daily
+install -m 755 scripts/rpm.daily ${RPM_BUILD_ROOT}%{_sysconfdir}/cron.daily/rpm
+
+mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/logrotate.d
+install -m 644 scripts/rpm.log ${RPM_BUILD_ROOT}%{_sysconfdir}/logrotate.d/rpm
+
+%if %{with bdb}
+mkdir -p ${RPM_BUILD_ROOT}%{_tmpfilesdir}
+echo "r /var/lib/rpm/__db.*" > ${RPM_BUILD_ROOT}%{_tmpfilesdir}/rpm.conf
+%endif
+
+mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rpm
+mkdir -p $RPM_BUILD_ROOT%{rpmhome}/macros.d
+mkdir -p $RPM_BUILD_ROOT/var/lib/rpm
+
+# init an empty database for %ghost'ing for all supported backends
+for be in %{?with_ndb:ndb} %{?with_sqlite:sqlite} %{?with_bdb:bdb}; do
+ ./rpmdb --define "_db_backend ${be}" --dbpath=${PWD}/${be} --initdb
+ cp -va ${be}/. $RPM_BUILD_ROOT/var/lib/rpm/
+done
+
+find $RPM_BUILD_ROOT -name "*.la"|xargs rm -f
+
+# These live in perl-generators and python-rpm-generators now
+rm -f $RPM_BUILD_ROOT/%{rpmhome}/{perldeps.pl,perl.*,pythond*}
+rm -f $RPM_BUILD_ROOT/%{_fileattrsdir}/{perl*,python*}
+rm -rf $RPM_BUILD_ROOT/var/tmp
+# This is installed by mistake by setup.py
+rm -f $RPM_BUILD_ROOT/usr/lib*/python*/site-packages/rpm/_rpm.so
+
+# Remove all non-Python files
+rm -r %{buildroot}%{_bindir}
+rm -r %{buildroot}%{_datadir}
+rm -r %{buildroot}%{_includedir}
+rm -r %{buildroot}%{_libdir}/lib*
+rm -r %{buildroot}%{_libdir}/pkgconfig/
+rm -r %{buildroot}%{_libdir}/rpm-plugins/
+rm -r %{buildroot}%{_localstatedir}
+rm -r %{buildroot}%{_prefix}/lib
+rm -r %{buildroot}%{_sysconfdir}
+
+%check
+%global python3_pkgversion 3.11
+%py3_check_import rpm rpm.transaction
+%global python3_pkgversion 3.12
+%py3_check_import rpm rpm.transaction
+%global python3_pkgversion 3.13
+%py3_check_import rpm rpm.transaction
+%if %{with check}
+make check TESTSUITEFLAGS=-j%{_smp_build_ncpus} || (cat tests/rpmtests.log; exit 1)
+# rpm >= 4.16.0 testsuite leaves a read-only tree behind, clean it up
+make clean
+%endif
+
+%global python3_pkgversion 3.11
+%files -n python%{python3_pkgversion}-rpm
+%license COPYING
+%{python3_sitearch}/rpm/
+%{python3_sitearch}/rpm-%{rpmver}*.egg-info
+
+%global python3_pkgversion 3.12
+%files -n python%{python3_pkgversion}-rpm
+%license COPYING
+%{python3_sitearch}/rpm/
+%{python3_sitearch}/rpm-%{rpmver}*.egg-info/
+
+%global python3_pkgversion 3.13
+%files -n python%{python3_pkgversion}-rpm
+%license COPYING
+%{python3_sitearch}/rpm/
+%{python3_sitearch}/rpm-%{rpmver}*.egg-info/
+
+%changelog
+* Fri Nov 21 2025 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-40
+- Improve error handling on keystore load (RHEL-114837)
+- Sort files before passing to file attr dependency generators (RHEL-95376)
+
+* Wed Aug 20 2025 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-39
+- Allow an optional "override clock" for deterministic timestamps (RHEL-106672)
+
+* Thu Jul 03 2025 Miro Hrončok <mhroncok@redhat.com> - 4.16.1.3-37.1
+- Add python3.13-rpm
+
+* Mon Jan 13 2025 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-37
+- Allow parametric macros to opt out of option processing (RHEL-67161)
+- Report unsafe symlinks during installation as a specific case (RHEL-33393)
+- Fix FA_TOUCH'ed files getting removed on failed update (RHEL-63070)
+
+* Wed Nov 06 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-36
+- Improve newly added %%patch warning/error messages (RHEL-6294)
+
+* Wed Oct 16 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-35
+- Fix %%patch N applying Patch0 implicitly (RHEL-6294)
+- Issue deprecation warning for number-less %%patch (RHEL-6294)
+
+* Tue Aug 13 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-34
+- Fix discarded const qualifier in previous patch (RHEL-22607)
+
+* Mon Aug 05 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-33
+- Fix root relocation regression (RHEL-28967)
+- Don't confuse OpenScanHub with false array overrun (RHEL-22607)
+
+* Fri Jul 12 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-32
+- Revert incorrect fix for false array overrun (RHEL-22607)
+
+* Fri Jul 12 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-31
+- Fix potential use of uninitialized pipe array (RHEL-22604)
+- Fix potential use of uninitialized pgp struct (RHEL-22605)
+- Don't confuse OpenScanHub with false array overrun (RHEL-22607)
+- Add SourceLicense tag to spec syntax (RHEL-28798)
+- Talk about rpmsign in the rpmsign(8) man page (RHEL-40895)
+
+* Mon Jun 03 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-30
+- Don't segfault on missing priority tag (RHEL-35249)
+- Use unsigned integers for buildtime too for Y2K38 safety (RHEL-22602)
+- Rebuild against libimaevm.so.4 (RHEL-32505)
+
+* Mon Jan 29 2024 Miro Hrončok <mhroncok@redhat.com> - 4.16.1.3-29.2
+- Add python3.12-rpm
+
+* Wed Dec 13 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-29
+- Actually add --verifydb to the man page (RHEL-14591)
+- Don't warn about missing user/group on skipped files (RHEL-18037)
+
+* Mon Dec 11 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-28
+- Fix warning if file removal fails
+
+* Mon Nov 27 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-27
+- Fix short circuiting of version strings in expressions (RHEL-15688)
+- Fix description of whatconflicts in the man page (RHEL-6303)
+- Expose and document rpmdb --verifydb operation (RHEL-14591)
+- Fixes to the file handling backport
+
+* Fri Nov 10 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-26
+- Backport file handling code from rpm-4.19 to fix CVE-2021-35937,
+ CVE-2021-35938 and CVE-2021-35939
+
+* Fri Jun 30 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-25
+- Followup on #2166383
+- Add compat scripts calling external find-debug, sepdebugcrcfix and debugedit
+- Add %%__find_debuginfo macro
+
+* Thu May 04 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-24
+- Use external find-debug and debugedit (#2166383)
+
+* Wed May 03 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-23
+- Don't error out on IMA signatures on files not supporting them
+ (#2157835, #2157836)
+
+* Mon Dec 19 2022 Florian Festi <ffesti@redhat.com> - 4.16.1.3-22
+- Fix option handling in rpm2archive for #2150804
+
+* Fri Nov 18 2022 Yaakov Selkowitz <yselkowi@redhat.com> - 4.16.1.3-21
+- Support long language names for QT (#2144005)
+
+* Mon Nov 07 2022 Florian Festi <ffesti@redhat.com> - 4.16.1.3-20
+- Add bcond macros (#2129060)
+- Fix db queries with carets (#2129468)
+- Remove spurious Python rpm module (#2135731)
+- Handle SELinux log messages (#2123719)
+- Add --nocompression to rpm2archive (#2150804)
+
+* Fri Oct 21 2022 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-19
+- Bump release for rebuild
+
+* Fri Sep 23 2022 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-18
+- Make write() nonblocking in fapolicyd plugin (#2111251)
+
+* Wed Aug 03 2022 Florian Festi <ffesti@redhat.com> - 4.16.1.3-17
+- Make rpm2cpio.sh more robust (#1983015)
+
+* Thu Jun 30 2022 Nick Clifton <nickc@redhat.com> - 4.16.1.3-15
+- Pass _find_debuginfo_vendor_opts to the find-debuginfo script. (#2099617)
+
+* Tue Jun 28 2022 Florian Festi <ffesti@redhat.com> - 4.16.1.3-14
+- Warning for failed key import (#2069877)
+
+* Tue Apr 05 2022 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-12
+- Fix minor ABI regression in rpmcli.h (#2037352)
+
+* Mon Feb 14 2022 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-11
+- Fix IMA signature lengths assumed constant, take III (#2018937)
+- Fix regression reading rpm v3 and other rare packages (#2037186)
+- Fix spurious %transfiletriggerpostun execution (#2023692)
+
+* Mon Jan 31 2022 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-10
+- Address covscan issues in binding sigs validation patch (#1943724)
+- Bump hash for rpmdb cookie to SHA256 for FIPS (#2048455)
+- Add --path query option (#2037352)
+- Skip recorded symlinks in --setperms (#2025906)
+
+* Mon Dec 13 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-9
+- Fix IMA signature lengths assumed constant, take II (#2018937)
+
+* Thu Dec 09 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-8
+- Support hash v8 databases from BDB < 4.6 (#1965147)
+- Ensure ELF files get stripped when debuginfo is disabled (#1999009)
+- Actually honor libarchive bcond at configure time (#1999012)
+- Unbreak checking of installed rich dependencies (#2015407)
+- Rebuild against soname bump in ima-evm-utils (#2026079)
+- Fix IMA signature lengths assumed constant (#2018937)
+- Validate and require subkey binding sigs on PGP pubkeys (#1943724)
+- Fixes CVE-2021-3521
+
+* Thu Aug 19 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-7
+- Unblock signals in forked scriptlets (#1991667)
+
+* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 4.16.1.3-6.1
+- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
+ Related: rhbz#1991688
+
+* Wed Jul 28 2021 Florian Weimer <fweimer@redhat.com> - 4.16.1.3-6
+- Rebuild to pick up OpenSSL 3.0 Beta ABI (#1984097)
+
+* Fri Jul 23 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-5
+- Rebuild for gating.yaml
+
+* Thu Jul 22 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-4
+- Add support for EdDSA signatures to rpmsign (#1962234)
+- Add fapolicyd plugin (#1942549)
+
+* Mon Jul 12 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-3
+- Release bump for a rebuild
+
+* Tue Jun 29 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-2
+- Address important covscan issues (#1938861)
+
+* Tue Jun 15 2021 Mohan Boddu <mboddu@redhat.com> - 4.16.1.3-1.2
+- Rebuilt for RHEL 9 BETA for openssl 3.0. Related: rhbz#1971065
+
+* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 4.16.1.3-1.1
+- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
+
+* Mon Mar 22 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.1.3-1
+- Rebase to rpm 4.16.1.3 (https://rpm.org/wiki/Releases/4.16.1.3)
+
+* Wed Feb 03 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.1.2-6
+- Drop support for read-write Berkeley DB format (#1787311)
+
+* Wed Feb 03 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.1.2-5
+- Make with/without bdb build option actually work
+- Clean up unpackaged /var/tmp from the build root
+
+* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.16.1.2-4.1
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Fri Jan 22 2021 Mark Wielaard <mjw@fedoraproject.org> - 4.16.1.2-4
+- Fix edit_attributes_str_comp_dir in Patch916 (#1919107)
+
+* Tue Jan 19 2021 Jeff Law <law@redhat.com> - 4.16.1.2-3
+- Fix typo in test for F33 or newer
+
+* Tue Jan 19 2021 Mark Wielaard <mjw@fedoraproject.org> - 4.16.1.2-2
+- Add debugedit DWARF5 support
+
+* Wed Dec 16 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.1.2-1
+- Rebase to rpm 4.16.1.2 (http://rpm.org/wiki/Releases/4.16.1.2)
+- Add a spec safeguard for accidental soname bumps
+
+* Wed Dec 16 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.1.1-1
+- Rebase to rpm 4.16.1.1 (http://rpm.org/wiki/Releases/4.16.1.1)
+
+* Thu Dec 10 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.1-1
+- Rebase to rpm 4.16.1 (http://rpm.org/wiki/Releases/4.16.1)
+
+* Mon Nov 30 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-5
+- Only disable test-suite where it's actually broken
+
+* Mon Nov 30 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-4
+- Fix BDB crashing on failed open attempts (#1902395, #1898299, #1900407)
+- Fix unnecessary double failure on lazy keyring open
+
+* Wed Oct 28 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-3
+- Issue deprecation warning when creating BDB databases (#1787311)
+- Temporarily disable test-suite due to massive fakechroot breakage
+
+* Mon Oct 05 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-2
+- Clean up after test-suite which leaves a read-only tree behind
+
+* Wed Sep 30 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-1
+- Rebase to 4.16.0 final (https://rpm.org/wiki/Releases/4.16.0)
+
+* Mon Aug 31 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.rc1.1
+- Rebase to 4.16.0-rc1
+- Run test-suite in parallel
+
+* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.16.0-0.beta3.2.3
+- Second attempt - Rebuilt for
+ https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.16.0-0.beta3.2.2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
+
+* Sun Jul 26 2020 Peter Robinson <pbrobinson@fedoraproject.org> - 4.16.0-0.beta3.2.1
+- rebuild for ima-evm-utils 1.3
+
+* Mon Jun 29 2020 Tom Callaway <spot@fedoraproject.org> - 4.16.0-0.beta3.2
+- rebuild for lua 5.4
+
+* Wed Jun 24 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta3.1
+- Rebase to beta3
+
+* Wed Jun 10 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta1.4
+- Fix prefix search on sqlite backend (many file triggers not running)
+
+* Mon Jun 8 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta1.3
+- Unbreak metainfo() provide generation
+
+* Wed Jun 3 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta1.2
+- Don't auto-enable _flush_io on non-rotational media, it's too costly
+
+* Mon Jun 1 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta1.1
+- Rebase to rpm 4.16.0-beta1
+
+* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 4.15.90-0.git14971.12.1
+- Rebuilt for Python 3.9
+
+* Tue May 12 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.12
+- Fix segfault when trying to use unknown database backend
+
+* Thu May 7 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.11
+- Flag BDB databases for rebuild on next reboot whenever rpm is updated
+- Switch default database to sqlite (#1818910)
+
+* Mon May 4 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.10
+- Handle rpmdb-rebuild service enablement for upgrades
+
+* Thu Apr 23 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.9
+- Fix questionable uses of %%{name} and %%{version} in the spec
+
+* Wed Apr 22 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.8
+- Fix regression(s) on build dependency resolution
+
+* Wed Apr 22 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.7
+- Add rpmdb-rebuild systemd service
+
+* Fri Apr 17 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.6
+- Warn on undefined macros in buildtree setup macros (#1820349)
+
+* Thu Apr 09 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.5
+- Fix regression causing all ELF files classified as OCaml
+
+* Mon Apr 06 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.4
+- Fix invalid path passed to parametric macro generators
+
+* Thu Apr 02 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.3
+- Fix db lock files not getting packaged
+
+* Tue Mar 31 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.2
+- Move bdb specific systemd-tmpfiles cleanup crutch behind the bdb bcond
+
+* Tue Mar 31 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.1
+- Rebase to rpm 4.16 alpha (https://rpm.org/wiki/Releases/4.16.0)
+- Add bconds for and enable sqlite, ndb and bdb_ro database backends
+- Add bcond for disabling bdb backend
+- Drop lmdb bcond, the backend was removed upstream
+- Ensure all database backend files are owned
+- Fix external environment causing test-suite failures in spec build
+- Re-enable hard test-suite failures again
+
+* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.15.1-2.1
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
+
+* Thu Jan 9 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.1-2
+- Obsolete python2-rpm to fix upgrade path (#1775113)
+
+* Mon Nov 18 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.1-1
+- Rebase to 4.15.1 (https://rpm.org/wiki/Releases/4.15.1)
+
+* Thu Nov 14 2019 Adam Williamson <awilliam@redhat.com> - 4.15.0-7
+- Really revert armv8 detection improvements (patch was not applied in -6)
+
+* Wed Oct 23 2019 Peter Robinson <pbrobinson@fedoraproject.org> 4.15.0-6
+- Revert armv8 detection improvements
+
+* Mon Oct 21 2019 Stephen Gallagher <sgallagh@redhat.com> - 4.15.0-5
+- Revert aliasing arm64 to aarch64
+- Resolves: rhbz#1763831
+
+* Fri Oct 18 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-4
+- Revert problematic sub-variants of armv8 (#1691430)
+
+* Thu Oct 17 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-3
+- Drop python2 bindings for good (#1761211)
+
+* Tue Oct 15 2019 Adam Williamson <awilliam@redhat.com> - 4.15.0-2
+- Revert systemd inhibit plugin's calling of dbus_shutdown (#1750575)
+
+* Thu Sep 26 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-1
+- Update to 4.15.0 final (https://rpm.org/wiki/Releases/4.15.0)
+
+* Wed Aug 28 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.rc1.1
+- Update to 4.15.0-rc1
+
+* Tue Aug 27 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.6
+- Fix some issues in the thread cap logic
+
+* Mon Aug 26 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.5
+- Re-enable test-suite, temporarily disabled during alpha troubleshooting
+
+* Fri Aug 23 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.4
+- Cap number of threads on 32bit platforms (#1729382)
+- Drop %%_lto_cflags macro (reverted upstream)
+
+* Fri Aug 23 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.3
+- Restore strict order of build scriptlet stdout/stderr output
+
+* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 4.15.0-0.beta.2.3
+- Rebuilt for Python 3.8
+
+* Wed Jul 31 2019 Miro Hrončok <mhroncok@redhat.com> - 4.15.0-0.beta.2.2
+- Rebuilt for libimaevm.so.1
+
+* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.15.0-0.beta.2.1
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
+
+* Sat Jul 20 18:30:10 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.15.0-0.beta.2
+- Backport patch to not set RPMTAG_BUILDTIME to SOURCE_DATE_EPOCH
+
+* Thu Jun 27 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.1
+- Rebase to 4.15.0 beta
+
+* Thu Jun 20 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.18
+- Fix excessive TLS use, part II (#1722181)
+
+* Thu Jun 20 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.17
+- Fix excessive TLS use (#1722181)
+
+* Wed Jun 19 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.16
+- Drop buildarch again now that python_provide no longer needs it (#1720139)
+
+* Fri Jun 14 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.15
+- Temporarily re-enable buildarch macro for python_provide macro use (#1720139)
+
+* Thu Jun 13 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.14
+- Don't fail build trying to kill a non-existent process (#1720143)
+
+* Tue Jun 11 14:59:16 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.90-0.git14653.13
+- Fix build of binary packages in parallel
+
+* Tue Jun 11 00:08:50 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.90-0.git14653.10
+- Revert generation of binary packages in parallel
+
+* Mon Jun 10 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.1
+- Update to 4.15.0 alpha
+
+* Mon Jun 10 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-14
+- Drop support for sanitizer build, it never really worked anyway
+- Drop leftover build-dependency on binutils-devel
+- Truncate changelog to rpm 4.14.x (last two years)
+
+* Mon Jun 10 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-13
+- Drop support for Fedora < 28 builds
+- Drop leftover BDB-related compiler flag foo
+
+* Fri Jun 07 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-12
+- Use pre-determined buildhost in test-suite to avoid DNS usage
+- Drop obsolete specspo and gpg2 related patches
+
+* Fri Jun 07 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2.1-11
+- Use py2/3 macros for building and installing the bindings
+
+* Tue May 21 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-10
+- Support build-id generation from compressed ELF files (#1650072)
+
+* Fri May 03 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2.1-9
+- Suggest gdb-minimal
+
+* Thu Apr 25 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-8
+- Replace deprecated __global_ldflags uses with build_ldflags macro
+
+* Thu Apr 11 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-7
+- Fix excessive reference counting on faked string .decode()
+
+* Wed Apr 10 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-6
+- Unbreak Python 3 API by returning string data as surrogate-escaped utf-8
+ string objects instead of bytes (#1693751)
+- As a temporary crutch, monkey-patch a .decode() method to returned strings
+ to give users time to migrate from the long-standing broken behavior
+
+* Wed Apr 10 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-5
+- Generate minidebug for PIE executables on file >= 5.33 too
+- Backport find-debuginfo --g-libs option for glibc's benefit (#1661512)
+
+* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.14.2.1-4.1
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
+
+* Wed Dec 19 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-4
+- Backport the new modularity label tag (#1650286)
+
+* Mon Nov 19 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-3
+- Take prefix into account when compressing man pages etc for Flatpak builds
+
+* Wed Oct 24 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-2
+- Selinux plugin requires a base policy to work (#1641631)
+
+* Mon Oct 22 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-1
+- Rebase to rpm 4.14.2.1 (http://rpm.org/wiki/Releases/4.14.2.1)
+
+* Wed Oct 17 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2-9
+- Push name/epoch/version/release macro before invoking depgens
+
+* Tue Oct 16 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2-8
+- Resurrect long since broken Lua library path
+
+* Fri Oct 12 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-7
+- Actually fail build on test-suite failures again
+- Invoke python2 explicitly from test-suite to unbreak build, part II
+
+* Thu Oct 11 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-6
+- Drop duplicate BDB buildrequire
+- Drop nowadays unnecessary BDB macro foo
+- Drop nowadays unnecessary manual libcap dependency
+
+* Thu Oct 11 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-5
+- Own all rpmdb files and ensure the list remains up to date
+- Drop redundant verify exclusions on rpmdb ghosts
+- Fix build when systemd is not installed (duh)
+
+* Thu Oct 11 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-4
+- Erm, really use the macro for tmpfiles.d path
+- Erm, don't nuke buildroot at beginning of %%install
+- Use modern build/install helper macros
+
+* Thu Oct 11 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-3
+- Eh, selinux plugin dependency condition was upside down (#1493267)
+- Drop no longer necessary condition over imaevm name
+- Drop no longer necessary obsolete on compat-librpm3
+
+* Thu Oct 11 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-2
+- Fix ancient Python GIL locking bug (#1632488)
+- Use the appropriate macro for tmpfiles.d now that one exists
+
+* Tue Aug 21 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-1
+- Update to rpm 4.14.2 final (http://rpm.org/wiki/Releases/4.14.2)
+
+* Mon Aug 13 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-0.rc2.2
+- Move python-macro-helper to main package where the macros are (#1577860)
+
+* Wed Aug 08 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-0.rc2.1
+- Update to rpm 4.14.2-rc2
+
+* Sat Jul 21 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2-0.rc1.2
+- Decompress DWARF compressed ELF sections
+
+* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.14.2-0.rc1.1.2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
+
+* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 4.14.2-0.rc1.1.1
+- Rebuilt for Python 3.7
+
+* Fri Jun 29 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-0.rc1.1
+- Update to rpm 4.14.2-rc1
+- Patching test-suite for python2 too painful, just sed it instead
+- Fix premature version increment from previous changelog entries, oops
+
+* Fri Jun 29 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-13
+- Ehm, need to patch the autogenerated rpmtests script too for python2
+- Ehm, it's ldconfig_scriptlets not scripts
+- Drop the non-working python envvar magic from obsoleted change
+
+* Fri Jun 29 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-12
+- Invoke python2 explicitly from test-suite to unbreak build
+
+* Fri Jun 29 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-11
+- Remove direct ldconfig calls, use compat macros instead
+
+* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 4.14.1-10.1
+- Rebuilt for Python 3.7
+
+* Mon May 28 2018 Miro Hrončok <mhroncok@redhat.com> - 4.14.1-10
+- Backport upstream solution to make brp-python-bytecompile automagic part opt-outable
+ https://fedoraproject.org/wiki/Changes/No_more_automagic_Python_bytecompilation
+
+* Tue May 22 2018 Mark Wielaard <mjw@fedoraproject.org> - 4.14.1-9
+- find-debuginfo.sh: Handle application/x-pie-executable (#1581224)
+
+* Tue Feb 20 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.1-8
+- Split rpm-build-libs to one more subpackage rpm-sign-libs
+
+* Mon Feb 19 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-7
+- Explicitly BuildRequire gcc and make
+
+* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.1-6.1
+- Escape macros in %%changelog
+
+* Wed Jan 31 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-6
+- Avoid unnecessary macro helper dependency on /usr/bin/python (#1538657)
+- Fix release of previous changelog entry
+
+* Tue Jan 30 2018 Tomas Orsava <torsava@redhat.com> - 4.14.1-5
+- Add envvar that will be present during RPM build,
+ Part of a Fedora Change for F28: "Avoid /usr/bin/python in RPM build"
+ https://fedoraproject.org/wiki/Changes/Avoid_usr_bin_python_in_RPM_Build
+
+* Tue Jan 30 2018 Petr Viktorin <pviktori@redhat.com> - 4.14.1-4
+- Skip automatic Python byte-compilation if *.py files are not present
+
+* Thu Jan 25 2018 Florian Weimer <fweimer@redhat.com> - 4.14.1-3
+- Rebuild to work around gcc bug leading to librpm miscompilation (#1538648)
+
+* Thu Jan 18 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-2
+- Avoid nuking the new python-macro-helper along with dep generators (#1535692)
+
+* Tue Jan 16 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-1
+- Rebase to rpm 4.14.1 (http://rpm.org/wiki/Releases/4.14.1)
+
+* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.0-5
+- Fix typo in Obsoletes
+
+* Mon Nov 06 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.0-4
+- Remove platform-python bits
+
+* Thu Oct 26 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-3
+- Move selinux plugin dependency to selinux-policy in Fedora >= 28 (#1493267)
+
+* Thu Oct 12 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-2
+- Dump out test-suite log in case of failures again
+- Don't assume per-user groups in test-suite
+
+* Thu Oct 12 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-1
+- Rebase to rpm 4.14.0 final (http://rpm.org/wiki/Releases/4.14.0)
+
+* Tue Oct 10 2017 Troy Dawson <tdawson@redhat.com> - 4.14.0-0.rc2.6
+- Cleanup spec file conditionals
+
+* Tue Oct 03 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc2.5
+- Add build conditionals for zstd and lmdb support
+- Enable zstd support
+
+* Tue Oct 03 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc2.4
+- Spec cleanups
+
+* Fri Sep 29 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc2.3
+- BuildRequire gnupg2 for the testsuite
+
+* Fri Sep 29 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc2.2
+- ima-evm-utils only has a -devel package in fedora >= 28
+
+* Thu Sep 28 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc2.1
+- Rebase to rpm 4.14.0-rc2 (http://rpm.org/wiki/Releases/4.14.0)
+
+* Mon Sep 18 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc1.3
+- Fix Ftell() past 2GB on 32bit architectures (#1492587)
+
+* Thu Sep 07 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc1.2
+- Actually honor with/without libimaevm option
+- ima-evm-utils-devel >= 1.0 is required for rpm >= 4.14.0
+
+* Wed Sep 06 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc1.1
+- Rebase to rpm 4.14.0-rc1 (http://rpm.org/wiki/Releases/4.14.0)
+- Re-enable SHA256 header digest generation (see #1480407)
+
+* Mon Aug 28 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.8
+- Band-aid for DB_VERSION_MISMATCH errors on glibc updates (#1465809)
+
+* Thu Aug 24 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.7
+- Remove ugly kludges from posttrans script, BDB handles this now
+
+* Fri Aug 18 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.6
+- Silence harmless but bogus error message on noarch packages (#1482144)
+
+* Thu Aug 17 2017 Miro Hrončok <mhroncok@redhat.com> - 4.13.90-0.git14002.5
+- Build with platform_python
+
+* Mon Aug 14 2017 Miro Hrončok <mhroncok@redhat.com> - 4.13.90-0.git14000.4
+- Add platform-python bytecompilation patch: platform-python-bytecompile.patch
+- Add platform python deps generator patch: platform-python-abi.patch
+- Add a platform-python subpackage and remove system python related declarations
+- Build rpm without platform_python for bytecompilation
+ (https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
+
+* Mon Aug 14 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.3
+- Disable macro argument quoting as a band-aid to #1481025
+
+* Fri Aug 11 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.2
+- Disable SHA256 header-only digest generation temporarily (#1480407)
+
+* Thu Aug 10 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.1
+- Rebase to rpm 4.13.90 aka 4.14.0-alpha (#1474836)
+
diff --git a/rpm.spec b/rpm.spec
deleted file mode 100644
index b665b69..0000000
--- a/rpm.spec
+++ /dev/null
@@ -1,1284 +0,0 @@
-
-# run internal testsuite?
-# fakechroot is severely broken beyond fedora 33, disable...
-%if 0%{?fedora} > 33 || 0%{?rhel} > 8
-%bcond_with check
-%else
-%bcond_without check
-%endif
-
-# build against xz?
-%bcond_without xz
-# build with plugins?
-%bcond_without plugins
-# build with libarchive? (needed for rpm2archive)
-%bcond_without libarchive
-# build with libimaevm.so
-%bcond_without libimaevm
-# build with zstd support?
-%bcond_without zstd
-# build with ndb backend?
-%bcond_without ndb
-# build with sqlite support?
-%bcond_without sqlite
-# build with bdb support?
-%bcond_with bdb
-# build with internal Berkeley DB?
-%bcond_with int_bdb
-# build with bdb_ro support?
-%bcond_without bdb_ro
-
-%define rpmhome /usr/lib/rpm
-
-%global rpmver 4.16.1.3
-#global snapver rc1
-%global rel 40
-%global sover 9
-
-%global srcver %{rpmver}%{?snapver:-%{snapver}}
-%global srcdir %{?snapver:testing}%{!?snapver:rpm-%(echo %{rpmver} | cut -d'.' -f1-2).x}
-
-%if %{with bdb}
-%define bdbver 5.3.15
-
-# Build-dependency on systemd for the sake of one macro would be a bit much...
-%{!?_tmpfilesdir:%global _tmpfilesdir /usr/lib/tmpfiles.d}
-%endif
-
-Summary: The RPM package management system
-Name: rpm
-Version: %{rpmver}
-Release: %{?snapver:0.%{snapver}.}%{rel}%{?dist}
-Url: http://www.rpm.org/
-Source0: http://ftp.rpm.org/releases/%{srcdir}/rpm-%{srcver}.tar.bz2
-%if %{with bdb} && %{with int_bdb}
-Source1: db-%{bdbver}.tar.gz
-%endif
-
-Source10: rpmdb-rebuild.service
-
-# Disable autoconf config.site processing (#962837)
-Patch1: rpm-4.15.x-siteconfig.patch
-# In current Fedora, man-pages pkg owns all the localized man directories
-Patch3: rpm-4.9.90-no-man-dirs.patch
-# Temporary band-aid for rpm2cpio whining on payload size mismatch (#1142949)
-Patch5: rpm-4.12.0-rpm2cpio-hack.patch
-# https://github.com/rpm-software-management/rpm/pull/473
-Patch6: 0001-find-debuginfo.sh-decompress-DWARF-compressed-ELF-se.patch
-Patch7: 0001-Issue-deprecation-warning-when-creating-BDB-database.patch
-
-# Patches already upstream:
-Patch100: rpm-4.16.1.3-imp-covscan-fixes.patch
-Patch101: rpm-4.16.1.3-rpmsign-support-EdDSA-sig.patch
-Patch102: rpm-4.16.1.3-add-fapolicyd-plugin.patch
-Patch103: rpm-4.16.1.3-unblock-signals-in-forked-scriptlets.patch
-Patch104: rpm-4.16.1.3-support-bdb-hash-v8.patch
-Patch105: rpm-4.16.1.3-ELF-files-strip-when-debuginfo-disabled.patch
-Patch106: rpm-4.16.1.3-unbreak-checking-of-installed-rich-deps.patch
-Patch107: rpm-4.16.1.3-fix-IMA-sig-len-assumed-const.patch
-Patch108: rpm-4.16.1.3-validate-and-require-subkey-binding-sigs.patch
-Patch109: rpm-4.16.1.3-bump-rpmdb-cookie-hash-to-SHA256-for-FIPS.patch
-Patch110: rpm-4.16.1.3-add-path-query-option.patch
-Patch111: rpm-4.16.1.3-skip-recorded-symlinks-in-setperms.patch
-Patch112: rpm-4.16.1.3-fix-regression-reading-rpm-v3-pkgs.patch
-Patch113: rpm-4.16.1.3-fix-spurious-transfiletriggerpostun-execution.patch
-Patch114: rpm-4.16.1.3-Make-rpm2cpio.sh-more-robust.patch
-Patch115: rpm-4.16.1.3-fapolicyd-make-write-nonblocking.patch
-Patch116: rpm-4.16.1.3-bcond-macros.patch
-Patch117: rpm-4.16.1.3-caret-query.patch
-Patch118: rpm-4.16.1.3-caret-query2.patch
-Patch119: rpm-4.18-libselinux-log.patch
-Patch120: rpm-4.16.1.3-rpm2archive-error-handling.patch
-Patch121: rpm-4.16.1.3-rpm2archive-nocompression.patch
-Patch122: rpm-4.16.1.3-Support-long-languages-names-for-QT.patch
-Patch123: rpm-4.14.3-rpm2archive-parse-popt-options.patch
-Patch124: rpm-4.14.3-rpm2archive-Don-t-print-usage.patch
-Patch125: rpm-4.16.1.3-IMA-without-xattr.patch
-# Backport fsm to fix CVEs
-Patch126: 0001-Eliminate-code-duplication-from-rpmfiNext.patch
-Patch127: 0001-Add-optional-callback-on-directory-changes-during-rp.patch
-Patch128: 0001-Pass-file-descriptor-to-file-prepare-plugin-hook-use.patch
-Patch129: 0001-Swap-over-to-dirfd-basename-based-operation-within-t.patch
-Patch130: 0001-Use-file-state-machine-from-rpm-4.19.patch
-Patch131: 0001-Emit-full-paths-for-file-disposition-diagnostics-on-.patch
-Patch132: 0001-Fix-wrong-return-code-on-O_DIRECTORY-open-of-invalid.patch
-Patch133: 0001-Print-full-path-if-file-removal-fails.patch
-Patch134: 0001-Don-t-warn-about-missing-user-group-on-skipped-files.patch
-
-Patch140: 0001-Fix-short-circuiting-of-version-strings-in-expressio.patch
-Patch141: 0001-Fix-a-copy-paste-help-description-of-whatconflicts-R.patch
-Patch142: 0001-Expose-and-document-rpmdb-verifydb-operation.patch
-Patch143: 0001-Don-t-segfault-on-missing-priority-tag.patch
-Patch144: 0001-Use-unsigned-integers-for-buildtime-too-for-Y2K38-sa.patch
-Patch145: 0001-Fix-potential-use-of-uninitialized-pipe-array.patch
-Patch146: 0001-Fix-potential-use-of-uninitialized-pgp-struct.patch
-Patch147: 0001-Add-SourceLicense-tag-to-spec-syntax.patch
-Patch148: 0001-Talk-about-rpmsign-in-the-rpmsign-man-page.patch
-Patch149: 0001-Allow-parametric-macros-to-opt-out-of-option-process.patch
-Patch150: 0001-Report-unsafe-symlinks-during-installation-as-a-spec.patch
-Patch151: 0002-Fix-FA_TOUCH-ed-files-getting-removed-on-failed-upda.patch
-Patch152: 0001-Fix-a-race-condition-in-brp-strip.patch
-Patch153: 0002-Store-configurable-digest-s-on-packages-from-verific.patch
-Patch154: 0003-Add-support-for-spec-local-file-attributes-and-gener.patch
-Patch155: 0001-Allow-an-optional-override-clock-for-deterministic-t.patch
-Patch156: 0001-Improve-error-handling-on-keystore-load.patch
-Patch157: 0001-Sort-files-before-passing-to-file-attribute-dependen.patch
-
-# These are not yet upstream
-Patch906: rpm-4.7.1-geode-i686.patch
-# Probably to be upstreamed in slightly different form
-Patch907: rpm-4.15.x-ldflags.patch
-Patch908: 0001-Give-warning-on-not-supported-hash-for-RSA-keys.patch
-Patch909: rpm-4.16.1.3-external-debugedit.patch
-
-# Not yet (all) upstream, debugedit DWARF5
-# https://code.wildebeest.org/git/user/mjw/rpm/log/?h=gcc-dwarf5-4.16.1.2
-Patch911: 0001-NFC-debugedit-Protect-macro-arguments-by-parentheses.patch
-Patch912: 0002-NFC-debugedit-Move-code-from-edit_dwarf2-to-edit_inf.patch
-Patch913: 0003-debugedit-Fix-missing-relocation-of-.debug_types-sec.patch
-Patch914: 0004-NFC-debugedit-Move-code-to-separate-functions.patch
-Patch915: 0005-debugedit-Implement-DWARF-5-unit-header-and-new-form.patch
-Patch916: 0006-debugedit-Handle-DWARF-5-debug_line-and-debug_line_s.patch
-
-# Downstream-only patches
-Patch1000: rpm-4.16.1.3-hashtab-use-after-free-fix.patch
-Patch1001: rpm-4.16.1.3-find_debuginfo_vendor_opts.patch
-Patch1002: 0001-Macroize-find-debuginfo-script-location.patch
-Patch1003: 0001-Fix-root-relocation-regression.patch
-Patch1004: 0001-Skip-to-hashed-subpacket-data-directly.patch
-Patch1005: rpm-4.16.1.3-fix-patch-zero-semantics.patch
-
-# Partially GPL/LGPL dual-licensed and some bits with BSD
-# SourceLicense: (GPLv2+ and LGPLv2+ with exceptions) and BSD
-License: GPLv2+
-
-Requires: coreutils
-Requires: popt%{_isa} >= 1.10.2.1
-Requires: curl
-Obsoletes: python2-rpm < %{version}-%{release}
-
-%if %{with bdb} && %{without int_bdb}
-BuildRequires: libdb-devel
-%endif
-
-%if %{with check}
-BuildRequires: fakechroot gnupg2 debugedit
-%endif
-
-# XXX generally assumed to be installed but make it explicit as rpm
-# is a bit special...
-BuildRequires: redhat-rpm-config >= 94
-BuildRequires: systemd-rpm-macros
-BuildRequires: gcc make
-BuildRequires: gawk
-BuildRequires: elfutils-devel >= 0.112
-BuildRequires: elfutils-libelf-devel
-BuildRequires: readline-devel zlib-devel
-BuildRequires: openssl-devel
-# The popt version here just documents an older known-good version
-BuildRequires: popt-devel >= 1.10.2
-BuildRequires: file-devel
-BuildRequires: gettext-devel
-BuildRequires: ncurses-devel
-BuildRequires: bzip2-devel >= 0.9.0c-2
-BuildRequires: lua-devel >= 5.1
-BuildRequires: libcap-devel
-BuildRequires: libacl-devel
-%if %{with xz}
-BuildRequires: xz-devel >= 4.999.8
-%endif
-%if %{with libarchive}
-BuildRequires: libarchive-devel
-%endif
-%if %{with zstd}
-BuildRequires: libzstd-devel
-%endif
-%if %{with sqlite}
-BuildRequires: sqlite-devel
-%endif
-# Couple of patches change makefiles so, require for now...
-BuildRequires: automake libtool
-
-%if %{with plugins}
-BuildRequires: libselinux-devel
-BuildRequires: dbus-devel
-BuildRequires: audit-libs-devel
-%endif
-
-%if %{with libimaevm}
-BuildRequires: ima-evm-utils-devel >= 1.0
-%endif
-
-%description
-The RPM Package Manager (RPM) is a powerful command line driven
-package management system capable of installing, uninstalling,
-verifying, querying, and updating software packages. Each software
-package consists of an archive of files along with information about
-the package like its version, a description, etc.
-
-%package libs
-Summary: Libraries for manipulating RPM packages
-License: GPLv2+ and LGPLv2+ with exceptions
-Requires: %{name} = %{version}-%{release}
-
-%description libs
-This package contains the RPM shared libraries.
-
-%package build-libs
-Summary: Libraries for building RPM packages
-License: GPLv2+ and LGPLv2+ with exceptions
-Requires: rpm-libs%{_isa} = %{version}-%{release}
-
-%description build-libs
-This package contains the RPM shared libraries for building packages.
-
-%package sign-libs
-Summary: Libraries for signing RPM packages
-License: GPLv2+ and LGPLv2+ with exceptions
-Requires: rpm-libs%{_isa} = %{version}-%{release}
-Requires: %{_bindir}/gpg2
-
-%description sign-libs
-This package contains the RPM shared libraries for signing packages.
-
-%package devel
-Summary: Development files for manipulating RPM packages
-License: GPLv2+ and LGPLv2+ with exceptions
-Requires: %{name} = %{version}-%{release}
-Requires: %{name}-libs%{_isa} = %{version}-%{release}
-Requires: %{name}-build-libs%{_isa} = %{version}-%{release}
-Requires: %{name}-sign-libs%{_isa} = %{version}-%{release}
-Requires: popt-devel%{_isa}
-
-%description devel
-This package contains the RPM C library and header files. These
-development files will simplify the process of writing programs that
-manipulate RPM packages and databases. These files are intended to
-simplify the process of creating graphical package managers or any
-other tools that need an intimate knowledge of RPM packages in order
-to function.
-
-This package should be installed if you want to develop programs that
-will manipulate RPM packages and databases.
-
-%package build
-Summary: Scripts and executable programs used to build packages
-Requires: rpm = %{version}-%{release}
-Requires: elfutils >= 0.128 binutils
-Requires: findutils sed grep gawk diffutils file patch >= 2.5
-Requires: tar unzip gzip bzip2 cpio xz
-%if %{with zstd}
-Requires: zstd
-%endif
-Requires: pkgconfig >= 1:0.24
-Requires: /usr/bin/gdb-add-index
-# https://fedoraproject.org/wiki/Changes/Minimal_GDB_in_buildroot
-Suggests: gdb-minimal
-# Technically rpmbuild doesn't require any external configuration, but
-# creating distro-compatible packages does. To make the common case
-# "just work" while allowing for alternatives, depend on a virtual
-# provide, typically coming from redhat-rpm-config.
-Requires: system-rpm-config
-Requires: debugedit
-
-%description build
-The rpm-build package contains the scripts and executable programs
-that are used to build packages using the RPM Package Manager.
-
-%package sign
-Summary: Package signing support
-Requires: rpm-sign-libs%{_isa} = %{version}-%{release}
-
-%description sign
-This package contains support for digitally signing RPM packages.
-
-%package -n python3-%{name}
-Summary: Python 3 bindings for apps which will manipulate RPM packages
-BuildRequires: python3-devel
-%{?python_provide:%python_provide python3-%{name}}
-Requires: %{name}-libs%{?_isa} = %{version}-%{release}
-Provides: %{name}-python3 = %{version}-%{release}
-Obsoletes: %{name}-python3 < %{version}-%{release}
-Obsoletes: platform-python-%{name} < %{version}-%{release}
-
-%description -n python3-%{name}
-The python3-rpm package contains a module that permits applications
-written in the Python programming language to use the interface
-supplied by RPM Package Manager libraries.
-
-This package should be installed if you want to develop Python 3
-programs that will manipulate RPM packages and databases.
-
-%package apidocs
-Summary: API documentation for RPM libraries
-BuildArch: noarch
-
-%description apidocs
-This package contains API documentation for developing applications
-that will manipulate RPM packages and databases.
-
-%package cron
-Summary: Create daily logs of installed packages.
-BuildArch: noarch
-Requires: crontabs logrotate rpm = %{version}-%{release}
-
-%description cron
-This package contains a cron job which creates daily logs of installed
-packages on a system.
-
-%if %{with plugins}
-%package plugin-selinux
-Summary: Rpm plugin for SELinux functionality
-Requires: rpm-libs%{_isa} = %{version}-%{release}
-Requires: selinux-policy-base
-
-%description plugin-selinux
-%{summary}.
-
-%package plugin-syslog
-Summary: Rpm plugin for syslog functionality
-Requires: rpm-libs%{_isa} = %{version}-%{release}
-
-%description plugin-syslog
-%{summary}.
-
-%package plugin-systemd-inhibit
-Summary: Rpm plugin for systemd inhibit functionality
-Requires: rpm-libs%{_isa} = %{version}-%{release}
-
-%description plugin-systemd-inhibit
-This plugin blocks systemd from entering idle, sleep or shutdown while an rpm
-transaction is running using the systemd-inhibit mechanism.
-
-%package plugin-ima
-Summary: Rpm plugin ima file signatures
-Requires: rpm-libs%{_isa} = %{version}-%{release}
-
-%description plugin-ima
-%{summary}.
-
-%package plugin-fapolicyd
-Summary: Rpm plugin for fapolicyd functionality
-Requires: rpm-libs%{_isa} = %{version}-%{release}
-Provides: fapolicyd-plugin
-Obsoletes: fapolicyd-dnf-plugin
-
-%description plugin-fapolicyd
-%{summary}.
-
-%package plugin-prioreset
-Summary: Rpm plugin for resetting scriptlet priorities for SysV init
-Requires: rpm-libs%{_isa} = %{version}-%{release}
-
-%description plugin-prioreset
-%{summary}.
-
-Useful on legacy SysV init systems if you run rpm transactions with
-nice/ionice priorities. Should not be used on systemd systems.
-
-%package plugin-audit
-Summary: Rpm plugin for logging audit events on package operations
-Requires: rpm-libs%{_isa} = %{version}-%{release}
-
-%description plugin-audit
-%{summary}.
-
-# with plugins
-%endif
-
-%prep
-%autosetup -n rpm-%{srcver} %{?with_int_bdb:-a 1} -p1
-
-%if %{with bdb} && %{with int_bdb}
-ln -s db-%{bdbver} db
-%endif
-
-# switch to sqlite db by default, including during build-time tests
-%if %{with sqlite}
-sed -i -e "/_db_backend/ s/ bdb/ sqlite/g" macros.in
-%endif
-
-%build
-%set_build_flags
-
-autoreconf -i -f
-
-# Hardening hack taken from macro %%configure defined in redhat-rpm-config
-for i in $(find . -name ltmain.sh) ; do
- %{__sed} -i.backup -e 's~compiler_flags=$~compiler_flags="%{_hardened_ldflags}"~' $i
-done;
-
-# Using configure macro has some unwanted side-effects on rpm platform
-# setup, use the old-fashioned way for now only defining minimal paths.
-./configure \
- --prefix=%{_usr} \
- --sysconfdir=%{_sysconfdir} \
- --localstatedir=%{_var} \
- --sharedstatedir=%{_var}/lib \
- --libdir=%{_libdir} \
- --build=%{_target_platform} \
- --host=%{_target_platform} \
- --with-vendor=redhat \
- --enable-bdb=%{?with_bdb:yes}%{!?with_bdb:no} \
- %{!?with_int_bdb: --with-external-db} \
- %{!?with_plugins: --disable-plugins} \
- --with-lua \
- --with-selinux \
- --with-cap \
- --with-acl \
- %{?with_ndb: --enable-ndb} \
- %{!?with_libarchive: --without-archive} \
- %{?with_libimaevm: --with-imaevm} \
- %{?with_zstd: --enable-zstd} \
- %{?with_sqlite: --enable-sqlite} \
- %{?with_bdb_ro: --enable-bdb-ro} \
- --with-fapolicyd \
- --enable-python \
- --with-crypto=openssl
-
-%make_build
-
-pushd python
-%py3_build
-popd
-
-%install
-%make_install
-
-# We need to build with --enable-python for the self-test suite, but we
-# actually package the bindings built with setup.py (#531543#c26)
-pushd python
-%py3_install
-popd
-
-cat > $RPM_BUILD_ROOT/%{rpmhome}/debugedit << END
-#!/bin/sh
-/usr/bin/debugedit "\$@"
-END
-cat > $RPM_BUILD_ROOT/%{rpmhome}/sepdebugcrcfix << END
-#!/bin/sh
-/usr/bin/sepdebugcrcfix "\$@"
-END
-cat > $RPM_BUILD_ROOT/%{rpmhome}/find-debuginfo.sh << END
-#!/bin/sh
-/usr/bin/find-debuginfo.sh "\$@"
-END
-
-mkdir -p $RPM_BUILD_ROOT%{_unitdir}
-install -m 644 %{SOURCE10} $RPM_BUILD_ROOT/%{_unitdir}
-
-# Save list of packages through cron
-mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/cron.daily
-install -m 755 scripts/rpm.daily ${RPM_BUILD_ROOT}%{_sysconfdir}/cron.daily/rpm
-
-mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/logrotate.d
-install -m 644 scripts/rpm.log ${RPM_BUILD_ROOT}%{_sysconfdir}/logrotate.d/rpm
-
-%if %{with bdb}
-mkdir -p ${RPM_BUILD_ROOT}%{_tmpfilesdir}
-echo "r /var/lib/rpm/__db.*" > ${RPM_BUILD_ROOT}%{_tmpfilesdir}/rpm.conf
-%endif
-
-mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rpm
-mkdir -p $RPM_BUILD_ROOT%{rpmhome}/macros.d
-mkdir -p $RPM_BUILD_ROOT/var/lib/rpm
-
-# init an empty database for %ghost'ing for all supported backends
-for be in %{?with_ndb:ndb} %{?with_sqlite:sqlite} %{?with_bdb:bdb}; do
- ./rpmdb --define "_db_backend ${be}" --dbpath=${PWD}/${be} --initdb
- cp -va ${be}/. $RPM_BUILD_ROOT/var/lib/rpm/
-done
-
-%find_lang rpm
-
-find $RPM_BUILD_ROOT -name "*.la"|xargs rm -f
-
-# These live in perl-generators and python-rpm-generators now
-rm -f $RPM_BUILD_ROOT/%{rpmhome}/{perldeps.pl,perl.*,pythond*}
-rm -f $RPM_BUILD_ROOT/%{_fileattrsdir}/{perl*,python*}
-rm -rf $RPM_BUILD_ROOT/var/tmp
-# This is installed by mistake by setup.py
-rm -f $RPM_BUILD_ROOT/usr/lib*/python*/site-packages/rpm/_rpm.so
-
-%if %{with check}
-%check
-make check TESTSUITEFLAGS=-j%{_smp_build_ncpus} || (cat tests/rpmtests.log; exit 1)
-# rpm >= 4.16.0 testsuite leaves a read-only tree behind, clean it up
-make clean
-%endif
-
-# Handle rpmdb rebuild service on erasure of old to avoid ordering issues
-# https://pagure.io/fesco/issue/2382
-%triggerun -- rpm < 4.15.90-0.git14971.10
-if [ -x /usr/bin/systemctl ]; then
- systemctl --no-reload preset rpmdb-rebuild ||:
-fi
-
-%posttrans
-if [ -f /var/lib/rpm/Packages ]; then
- touch /var/lib/rpm/.rebuilddb
-fi
-
-%files -f rpm.lang
-%license COPYING
-%doc CREDITS doc/manual/[a-z]*
-
-%if %{with bdb}
-%{_tmpfilesdir}/rpm.conf
-%endif
-
-%{_unitdir}/rpmdb-rebuild.service
-
-%dir %{_sysconfdir}/rpm
-
-%attr(0755, root, root) %dir /var/lib/rpm
-%attr(0644, root, root) %ghost %config(missingok,noreplace) /var/lib/rpm/*
-%attr(0644, root, root) %ghost /var/lib/rpm/.*.lock
-
-%{_bindir}/rpm
-%if %{with libarchive}
-%{_bindir}/rpm2archive
-%endif
-%{_bindir}/rpm2cpio
-%{_bindir}/rpmdb
-%{_bindir}/rpmkeys
-%{_bindir}/rpmquery
-%{_bindir}/rpmverify
-
-%{_mandir}/man8/rpm.8*
-%{_mandir}/man8/rpmdb.8*
-%{_mandir}/man8/rpmkeys.8*
-%if %{with libarchive}
-%{_mandir}/man8/rpm2archive.8*
-%endif
-%{_mandir}/man8/rpm2cpio.8*
-%{_mandir}/man8/rpm-misc.8*
-%{_mandir}/man8/rpm-plugins.8*
-
-# XXX this places translated manuals to wrong package wrt eg rpmbuild
-%lang(fr) %{_mandir}/fr/man[18]/*.[18]*
-%lang(ko) %{_mandir}/ko/man[18]/*.[18]*
-%lang(ja) %{_mandir}/ja/man[18]/*.[18]*
-%lang(pl) %{_mandir}/pl/man[18]/*.[18]*
-%lang(ru) %{_mandir}/ru/man[18]/*.[18]*
-%lang(sk) %{_mandir}/sk/man[18]/*.[18]*
-
-%attr(0755, root, root) %dir %{rpmhome}
-%{rpmhome}/macros
-%{rpmhome}/macros.d
-%{rpmhome}/lua
-%{rpmhome}/rpmpopt*
-%{rpmhome}/rpmrc
-
-%{rpmhome}/rpmdb_*
-%{rpmhome}/rpm.daily
-%{rpmhome}/rpm.log
-%{rpmhome}/rpm.supp
-%{rpmhome}/rpm2cpio.sh
-%{rpmhome}/tgpg
-
-%{rpmhome}/platform
-
-%dir %{rpmhome}/fileattrs
-
-%files libs
-%{_libdir}/librpmio.so.%{sover}
-%{_libdir}/librpm.so.%{sover}
-%{_libdir}/librpmio.so.%{sover}.*
-%{_libdir}/librpm.so.%{sover}.*
-%if %{with plugins}
-%dir %{_libdir}/rpm-plugins
-
-%files plugin-syslog
-%{_libdir}/rpm-plugins/syslog.so
-%{_mandir}/man8/rpm-plugin-syslog.8*
-
-%files plugin-selinux
-%{_libdir}/rpm-plugins/selinux.so
-%{_mandir}/man8/rpm-plugin-selinux.8*
-
-%files plugin-systemd-inhibit
-%{_libdir}/rpm-plugins/systemd_inhibit.so
-%{_mandir}/man8/rpm-plugin-systemd-inhibit.8*
-
-%files plugin-ima
-%{_libdir}/rpm-plugins/ima.so
-%{_mandir}/man8/rpm-plugin-ima.8*
-
-%files plugin-fapolicyd
-%{_libdir}/rpm-plugins/fapolicyd.so
-%{_mandir}/man8/rpm-plugin-fapolicyd.8*
-
-%files plugin-prioreset
-%{_libdir}/rpm-plugins/prioreset.so
-%{_mandir}/man8/rpm-plugin-prioreset.8*
-
-%files plugin-audit
-%{_libdir}/rpm-plugins/audit.so
-%{_mandir}/man8/rpm-plugin-audit.8*
-# with plugins
-%endif
-
-%files build-libs
-%{_libdir}/librpmbuild.so.%{sover}
-%{_libdir}/librpmbuild.so.%{sover}.*
-
-%files sign-libs
-%{_libdir}/librpmsign.so.%{sover}
-%{_libdir}/librpmsign.so.%{sover}.*
-
-%files build
-%{_bindir}/rpmbuild
-%{_bindir}/gendiff
-%{_bindir}/rpmspec
-
-%{_mandir}/man1/gendiff.1*
-%{_mandir}/man8/rpmbuild.8*
-%{_mandir}/man8/rpmdeps.8*
-%{_mandir}/man8/rpmspec.8*
-
-%{rpmhome}/brp-*
-%{rpmhome}/check-*
-%{rpmhome}/debugedit
-%{rpmhome}/sepdebugcrcfix
-%{rpmhome}/find-debuginfo.sh
-%{rpmhome}/find-lang.sh
-%{rpmhome}/*provides*
-%{rpmhome}/*requires*
-%{rpmhome}/*deps*
-%{rpmhome}/*.prov
-%{rpmhome}/*.req
-%{rpmhome}/mkinstalldirs
-%{rpmhome}/fileattrs/*
-
-%files sign
-%{_bindir}/rpmsign
-%{_mandir}/man8/rpmsign.8*
-
-%files -n python3-%{name}
-%{python3_sitearch}/rpm/
-%{python3_sitearch}/rpm-%{rpmver}*.egg-info
-
-%files devel
-%{_mandir}/man8/rpmgraph.8*
-%{_bindir}/rpmgraph
-%{_libdir}/librp*[a-z].so
-%{_libdir}/pkgconfig/rpm.pc
-%{_includedir}/rpm/
-
-%files cron
-%{_sysconfdir}/cron.daily/rpm
-%config(noreplace) %{_sysconfdir}/logrotate.d/rpm
-
-%files apidocs
-%license COPYING
-%doc doc/librpm/html/*
-
-%changelog
-* Fri Nov 21 2025 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-40
-- Improve error handling on keystore load (RHEL-114837)
-- Sort files before passing to file attr dependency generators (RHEL-95376)
-
-* Wed Aug 20 2025 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-39
-- Allow an optional "override clock" for deterministic timestamps (RHEL-106672)
-
-* Wed May 07 2025 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-38
-- Add support for spec local file attributes and generators (RHEL-52772)
-- Store configurable digest(s) on packages in rpmdb (RHEL-35619)
-- Fix a hard link race condition in brp-strip (RHEL-74011)
-
-* Mon Jan 13 2025 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-37
-- Allow parametric macros to opt out of option processing (RHEL-67161)
-- Report unsafe symlinks during installation as a specific case (RHEL-33393)
-- Fix FA_TOUCH'ed files getting removed on failed update (RHEL-63070)
-
-* Wed Nov 06 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-36
-- Improve newly added %%patch warning/error messages (RHEL-6294)
-
-* Wed Oct 16 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-35
-- Fix %%patch N applying Patch0 implicitly (RHEL-6294)
-- Issue deprecation warning for number-less %%patch (RHEL-6294)
-
-* Tue Aug 13 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-34
-- Fix discarded const qualifier in previous patch (RHEL-22607)
-
-* Mon Aug 05 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-33
-- Fix root relocation regression (RHEL-28967)
-- Don't confuse OpenScanHub with false array overrun (RHEL-22607)
-
-* Fri Jul 12 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-32
-- Revert incorrect fix for false array overrun (RHEL-22607)
-
-* Fri Jul 12 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-31
-- Fix potential use of uninitialized pipe array (RHEL-22604)
-- Fix potential use of uninitialized pgp struct (RHEL-22605)
-- Don't confuse OpenScanHub with false array overrun (RHEL-22607)
-- Add SourceLicense tag to spec syntax (RHEL-28798)
-- Talk about rpmsign in the rpmsign(8) man page (RHEL-40895)
-
-* Mon Jun 03 2024 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-30
-- Don't segfault on missing priority tag (RHEL-35249)
-- Use unsigned integers for buildtime too for Y2K38 safety (RHEL-22602)
-- Rebuild against libimaevm.so.4 (RHEL-32505)
-
-* Wed Dec 13 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-29
-- Actually add --verifydb to the man page (RHEL-14591)
-- Don't warn about missing user/group on skipped files (RHEL-18037)
-
-* Mon Dec 11 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-28
-- Fix warning if file removal fails
-
-* Mon Nov 27 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-27
-- Fix short circuiting of version strings in expressions (RHEL-15688)
-- Fix description of whatconflicts in the man page (RHEL-6303)
-- Expose and document rpmdb --verifydb operation (RHEL-14591)
-- Fixes to the file handling backport
-
-* Fri Nov 10 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-26
-- Backport file handling code from rpm-4.19 to fix CVE-2021-35937,
- CVE-2021-35938 and CVE-2021-35939
-
-* Fri Jun 30 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-25
-- Followup on #2166383
-- Add compat scripts calling external find-debug, sepdebugcrcfix and debugedit
-- Add %%__find_debuginfo macro
-
-* Thu May 04 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-24
-- Use external find-debug and debugedit (#2166383)
-
-* Wed May 03 2023 Florian Festi <ffesti@redhat.com> - 4.16.1.3-23
-- Don't error out on IMA signatures on files not supporting them
- (#2157835, #2157836)
-
-* Mon Dec 19 2022 Florian Festi <ffesti@redhat.com> - 4.16.1.3-22
-- Fix option handling in rpm2archive for #2150804
-
-* Fri Nov 18 2022 Yaakov Selkowitz <yselkowi@redhat.com> - 4.16.1.3-21
-- Support long language names for QT (#2144005)
-
-* Mon Nov 07 2022 Florian Festi <ffesti@redhat.com> - 4.16.1.3-20
-- Add bcond macros (#2129060)
-- Fix db queries with carets (#2129468)
-- Remove spurious Python rpm module (#2135731)
-- Handle SELinux log messages (#2123719)
-- Add --nocompression to rpm2archive (#2150804)
-
-* Fri Oct 21 2022 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-19
-- Bump release for rebuild
-
-* Fri Sep 23 2022 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-18
-- Make write() nonblocking in fapolicyd plugin (#2111251)
-
-* Wed Aug 03 2022 Florian Festi <ffesti@redhat.com> - 4.16.1.3-17
-- Make rpm2cpio.sh more robust (#1983015)
-
-* Thu Jun 30 2022 Nick Clifton <nickc@redhat.com> - 4.16.1.3-15
-- Pass _find_debuginfo_vendor_opts to the find-debuginfo script. (#2099617)
-
-* Tue Jun 28 2022 Florian Festi <ffesti@redhat.com> - 4.16.1.3-14
-- Warning for failed key import (#2069877)
-
-* Tue Apr 05 2022 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-12
-- Fix minor ABI regression in rpmcli.h (#2037352)
-
-* Mon Feb 14 2022 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-11
-- Fix IMA signature lengths assumed constant, take III (#2018937)
-- Fix regression reading rpm v3 and other rare packages (#2037186)
-- Fix spurious %transfiletriggerpostun execution (#2023692)
-
-* Mon Jan 31 2022 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-10
-- Address covscan issues in binding sigs validation patch (#1943724)
-- Bump hash for rpmdb cookie to SHA256 for FIPS (#2048455)
-- Add --path query option (#2037352)
-- Skip recorded symlinks in --setperms (#2025906)
-
-* Mon Dec 13 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-9
-- Fix IMA signature lengths assumed constant, take II (#2018937)
-
-* Thu Dec 09 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-8
-- Support hash v8 databases from BDB < 4.6 (#1965147)
-- Ensure ELF files get stripped when debuginfo is disabled (#1999009)
-- Actually honor libarchive bcond at configure time (#1999012)
-- Unbreak checking of installed rich dependencies (#2015407)
-- Rebuild against soname bump in ima-evm-utils (#2026079)
-- Fix IMA signature lengths assumed constant (#2018937)
-- Validate and require subkey binding sigs on PGP pubkeys (#1943724)
-- Fixes CVE-2021-3521
-
-* Thu Aug 19 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-7
-- Unblock signals in forked scriptlets (#1991667)
-
-* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 4.16.1.3-6.1
-- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
- Related: rhbz#1991688
-
-* Wed Jul 28 2021 Florian Weimer <fweimer@redhat.com> - 4.16.1.3-6
-- Rebuild to pick up OpenSSL 3.0 Beta ABI (#1984097)
-
-* Fri Jul 23 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-5
-- Rebuild for gating.yaml
-
-* Thu Jul 22 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-4
-- Add support for EdDSA signatures to rpmsign (#1962234)
-- Add fapolicyd plugin (#1942549)
-
-* Mon Jul 12 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-3
-- Release bump for a rebuild
-
-* Tue Jun 29 2021 Michal Domonkos <mdomonko@redhat.com> - 4.16.1.3-2
-- Address important covscan issues (#1938861)
-
-* Tue Jun 15 2021 Mohan Boddu <mboddu@redhat.com> - 4.16.1.3-1.2
-- Rebuilt for RHEL 9 BETA for openssl 3.0. Related: rhbz#1971065
-
-* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 4.16.1.3-1.1
-- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
-
-* Mon Mar 22 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.1.3-1
-- Rebase to rpm 4.16.1.3 (https://rpm.org/wiki/Releases/4.16.1.3)
-
-* Wed Feb 03 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.1.2-6
-- Drop support for read-write Berkeley DB format (#1787311)
-
-* Wed Feb 03 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.1.2-5
-- Make with/without bdb build option actually work
-- Clean up unpackaged /var/tmp from the build root
-
-* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.16.1.2-4.1
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Fri Jan 22 2021 Mark Wielaard <mjw@fedoraproject.org> - 4.16.1.2-4
-- Fix edit_attributes_str_comp_dir in Patch916 (#1919107)
-
-* Tue Jan 19 2021 Jeff Law <law@redhat.com> - 4.16.1.2-3
-- Fix typo in test for F33 or newer
-
-* Tue Jan 19 2021 Mark Wielaard <mjw@fedoraproject.org> - 4.16.1.2-2
-- Add debugedit DWARF5 support
-
-* Wed Dec 16 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.1.2-1
-- Rebase to rpm 4.16.1.2 (http://rpm.org/wiki/Releases/4.16.1.2)
-- Add a spec safeguard for accidental soname bumps
-
-* Wed Dec 16 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.1.1-1
-- Rebase to rpm 4.16.1.1 (http://rpm.org/wiki/Releases/4.16.1.1)
-
-* Thu Dec 10 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.1-1
-- Rebase to rpm 4.16.1 (http://rpm.org/wiki/Releases/4.16.1)
-
-* Mon Nov 30 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-5
-- Only disable test-suite where it's actually broken
-
-* Mon Nov 30 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-4
-- Fix BDB crashing on failed open attempts (#1902395, #1898299, #1900407)
-- Fix unnecessary double failure on lazy keyring open
-
-* Wed Oct 28 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-3
-- Issue deprecation warning when creating BDB databases (#1787311)
-- Temporarily disable test-suite due to massive fakechroot breakage
-
-* Mon Oct 05 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-2
-- Clean up after test-suite which leaves a read-only tree behind
-
-* Wed Sep 30 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-1
-- Rebase to 4.16.0 final (https://rpm.org/wiki/Releases/4.16.0)
-
-* Mon Aug 31 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.rc1.1
-- Rebase to 4.16.0-rc1
-- Run test-suite in parallel
-
-* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.16.0-0.beta3.2.3
-- Second attempt - Rebuilt for
- https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.16.0-0.beta3.2.2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Sun Jul 26 2020 Peter Robinson <pbrobinson@fedoraproject.org> - 4.16.0-0.beta3.2.1
-- rebuild for ima-evm-utils 1.3
-
-* Mon Jun 29 2020 Tom Callaway <spot@fedoraproject.org> - 4.16.0-0.beta3.2
-- rebuild for lua 5.4
-
-* Wed Jun 24 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta3.1
-- Rebase to beta3
-
-* Wed Jun 10 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta1.4
-- Fix prefix search on sqlite backend (many file triggers not running)
-
-* Mon Jun 8 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta1.3
-- Unbreak metainfo() provide generation
-
-* Wed Jun 3 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta1.2
-- Don't auto-enable _flush_io on non-rotational media, it's too costly
-
-* Mon Jun 1 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta1.1
-- Rebase to rpm 4.16.0-beta1
-
-* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 4.15.90-0.git14971.12.1
-- Rebuilt for Python 3.9
-
-* Tue May 12 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.12
-- Fix segfault when trying to use unknown database backend
-
-* Thu May 7 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.11
-- Flag BDB databases for rebuild on next reboot whenever rpm is updated
-- Switch default database to sqlite (#1818910)
-
-* Mon May 4 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.10
-- Handle rpmdb-rebuild service enablement for upgrades
-
-* Thu Apr 23 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.9
-- Fix questionable uses of %%{name} and %%{version} in the spec
-
-* Wed Apr 22 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.8
-- Fix regression(s) on build dependency resolution
-
-* Wed Apr 22 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.7
-- Add rpmdb-rebuild systemd service
-
-* Fri Apr 17 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.6
-- Warn on undefined macros in buildtree setup macros (#1820349)
-
-* Thu Apr 09 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.5
-- Fix regression causing all ELF files classified as OCaml
-
-* Mon Apr 06 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.4
-- Fix invalid path passed to parametric macro generators
-
-* Thu Apr 02 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.3
-- Fix db lock files not getting packaged
-
-* Tue Mar 31 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.2
-- Move bdb specific systemd-tmpfiles cleanup crutch behind the bdb bcond
-
-* Tue Mar 31 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.1
-- Rebase to rpm 4.16 alpha (https://rpm.org/wiki/Releases/4.16.0)
-- Add bconds for and enable sqlite, ndb and bdb_ro database backends
-- Add bcond for disabling bdb backend
-- Drop lmdb bcond, the backend was removed upstream
-- Ensure all database backend files are owned
-- Fix external environment causing test-suite failures in spec build
-- Re-enable hard test-suite failures again
-
-* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.15.1-2.1
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
-
-* Thu Jan 9 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.1-2
-- Obsolete python2-rpm to fix upgrade path (#1775113)
-
-* Mon Nov 18 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.1-1
-- Rebase to 4.15.1 (https://rpm.org/wiki/Releases/4.15.1)
-
-* Thu Nov 14 2019 Adam Williamson <awilliam@redhat.com> - 4.15.0-7
-- Really revert armv8 detection improvements (patch was not applied in -6)
-
-* Wed Oct 23 2019 Peter Robinson <pbrobinson@fedoraproject.org> 4.15.0-6
-- Revert armv8 detection improvements
-
-* Mon Oct 21 2019 Stephen Gallagher <sgallagh@redhat.com> - 4.15.0-5
-- Revert aliasing arm64 to aarch64
-- Resolves: rhbz#1763831
-
-* Fri Oct 18 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-4
-- Revert problematic sub-variants of armv8 (#1691430)
-
-* Thu Oct 17 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-3
-- Drop python2 bindings for good (#1761211)
-
-* Tue Oct 15 2019 Adam Williamson <awilliam@redhat.com> - 4.15.0-2
-- Revert systemd inhibit plugin's calling of dbus_shutdown (#1750575)
-
-* Thu Sep 26 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-1
-- Update to 4.15.0 final (https://rpm.org/wiki/Releases/4.15.0)
-
-* Wed Aug 28 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.rc1.1
-- Update to 4.15.0-rc1
-
-* Tue Aug 27 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.6
-- Fix some issues in the thread cap logic
-
-* Mon Aug 26 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.5
-- Re-enable test-suite, temporarily disabled during alpha troubleshooting
-
-* Fri Aug 23 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.4
-- Cap number of threads on 32bit platforms (#1729382)
-- Drop %%_lto_cflags macro (reverted upstream)
-
-* Fri Aug 23 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.3
-- Restore strict order of build scriptlet stdout/stderr output
-
-* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 4.15.0-0.beta.2.3
-- Rebuilt for Python 3.8
-
-* Wed Jul 31 2019 Miro Hrončok <mhroncok@redhat.com> - 4.15.0-0.beta.2.2
-- Rebuilt for libimaevm.so.1
-
-* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.15.0-0.beta.2.1
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
-
-* Sat Jul 20 18:30:10 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.15.0-0.beta.2
-- Backport patch to not set RPMTAG_BUILDTIME to SOURCE_DATE_EPOCH
-
-* Thu Jun 27 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.1
-- Rebase to 4.15.0 beta
-
-* Thu Jun 20 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.18
-- Fix excessive TLS use, part II (#1722181)
-
-* Thu Jun 20 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.17
-- Fix excessive TLS use (#1722181)
-
-* Wed Jun 19 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.16
-- Drop buildarch again now that python_provide no longer needs it (#1720139)
-
-* Fri Jun 14 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.15
-- Temporarily re-enable buildarch macro for python_provide macro use (#1720139)
-
-* Thu Jun 13 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.14
-- Don't fail build trying to kill a non-existent process (#1720143)
-
-* Tue Jun 11 14:59:16 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.90-0.git14653.13
-- Fix build of binary packages in parallel
-
-* Tue Jun 11 00:08:50 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.90-0.git14653.10
-- Revert generation of binary packages in parallel
-
-* Mon Jun 10 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.1
-- Update to 4.15.0 alpha
-
-* Mon Jun 10 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-14
-- Drop support for sanitizer build, it never really worked anyway
-- Drop leftover build-dependency on binutils-devel
-- Truncate changelog to rpm 4.14.x (last two years)
-
-* Mon Jun 10 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-13
-- Drop support for Fedora < 28 builds
-- Drop leftover BDB-related compiler flag foo
-
-* Fri Jun 07 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-12
-- Use pre-determined buildhost in test-suite to avoid DNS usage
-- Drop obsolete specspo and gpg2 related patches
-
-* Fri Jun 07 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2.1-11
-- Use py2/3 macros for building and installing the bindings
-
-* Tue May 21 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-10
-- Support build-id generation from compressed ELF files (#1650072)
-
-* Fri May 03 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2.1-9
-- Suggest gdb-minimal
-
-* Thu Apr 25 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-8
-- Replace deprecated __global_ldflags uses with build_ldflags macro
-
-* Thu Apr 11 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-7
-- Fix excessive reference counting on faked string .decode()
-
-* Wed Apr 10 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-6
-- Unbreak Python 3 API by returning string data as surrogate-escaped utf-8
- string objects instead of bytes (#1693751)
-- As a temporary crutch, monkey-patch a .decode() method to returned strings
- to give users time to migrate from the long-standing broken behavior
-
-* Wed Apr 10 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-5
-- Generate minidebug for PIE executables on file >= 5.33 too
-- Backport find-debuginfo --g-libs option for glibc's benefit (#1661512)
-
-* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.14.2.1-4.1
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
-
-* Wed Dec 19 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-4
-- Backport the new modularity label tag (#1650286)
-
-* Mon Nov 19 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-3
-- Take prefix into account when compressing man pages etc for Flatpak builds
-
-* Wed Oct 24 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-2
-- Selinux plugin requires a base policy to work (#1641631)
-
-* Mon Oct 22 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-1
-- Rebase to rpm 4.14.2.1 (http://rpm.org/wiki/Releases/4.14.2.1)
-
-* Wed Oct 17 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2-9
-- Push name/epoch/version/release macro before invoking depgens
-
-* Tue Oct 16 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2-8
-- Resurrect long since broken Lua library path
-
-* Fri Oct 12 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-7
-- Actually fail build on test-suite failures again
-- Invoke python2 explicitly from test-suite to unbreak build, part II
-
-* Thu Oct 11 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-6
-- Drop duplicate BDB buildrequire
-- Drop nowadays unnecessary BDB macro foo
-- Drop nowadays unnecessary manual libcap dependency
-
-* Thu Oct 11 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-5
-- Own all rpmdb files and ensure the list remains up to date
-- Drop redundant verify exclusions on rpmdb ghosts
-- Fix build when systemd is not installed (duh)
-
-* Thu Oct 11 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-4
-- Erm, really use the macro for tmpfiles.d path
-- Erm, don't nuke buildroot at beginning of %%install
-- Use modern build/install helper macros
-
-* Thu Oct 11 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-3
-- Eh, selinux plugin dependency condition was upside down (#1493267)
-- Drop no longer necessary condition over imaevm name
-- Drop no longer necessary obsolete on compat-librpm3
-
-* Thu Oct 11 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-2
-- Fix ancient Python GIL locking bug (#1632488)
-- Use the appropriate macro for tmpfiles.d now that one exists
-
-* Tue Aug 21 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-1
-- Update to rpm 4.14.2 final (http://rpm.org/wiki/Releases/4.14.2)
-
-* Mon Aug 13 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-0.rc2.2
-- Move python-macro-helper to main package where the macros are (#1577860)
-
-* Wed Aug 08 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-0.rc2.1
-- Update to rpm 4.14.2-rc2
-
-* Sat Jul 21 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2-0.rc1.2
-- Decompress DWARF compressed ELF sections
-
-* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.14.2-0.rc1.1.2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
-
-* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 4.14.2-0.rc1.1.1
-- Rebuilt for Python 3.7
-
-* Fri Jun 29 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-0.rc1.1
-- Update to rpm 4.14.2-rc1
-- Patching test-suite for python2 too painful, just sed it instead
-- Fix premature version increment from previous changelog entries, oops
-
-* Fri Jun 29 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-13
-- Ehm, need to patch the autogenerated rpmtests script too for python2
-- Ehm, it's ldconfig_scriptlets not scripts
-- Drop the non-working python envvar magic from obsoleted change
-
-* Fri Jun 29 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-12
-- Invoke python2 explicitly from test-suite to unbreak build
-
-* Fri Jun 29 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-11
-- Remove direct ldconfig calls, use compat macros instead
-
-* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 4.14.1-10.1
-- Rebuilt for Python 3.7
-
-* Mon May 28 2018 Miro Hrončok <mhroncok@redhat.com> - 4.14.1-10
-- Backport upstream solution to make brp-python-bytecompile automagic part opt-outable
- https://fedoraproject.org/wiki/Changes/No_more_automagic_Python_bytecompilation
-
-* Tue May 22 2018 Mark Wielaard <mjw@fedoraproject.org> - 4.14.1-9
-- find-debuginfo.sh: Handle application/x-pie-executable (#1581224)
-
-* Tue Feb 20 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.1-8
-- Split rpm-build-libs to one more subpackage rpm-sign-libs
-
-* Mon Feb 19 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-7
-- Explicitly BuildRequire gcc and make
-
-* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.1-6.1
-- Escape macros in %%changelog
-
-* Wed Jan 31 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-6
-- Avoid unnecessary macro helper dependency on /usr/bin/python (#1538657)
-- Fix release of previous changelog entry
-
-* Tue Jan 30 2018 Tomas Orsava <torsava@redhat.com> - 4.14.1-5
-- Add envvar that will be present during RPM build,
- Part of a Fedora Change for F28: "Avoid /usr/bin/python in RPM build"
- https://fedoraproject.org/wiki/Changes/Avoid_usr_bin_python_in_RPM_Build
-
-* Tue Jan 30 2018 Petr Viktorin <pviktori@redhat.com> - 4.14.1-4
-- Skip automatic Python byte-compilation if *.py files are not present
-
-* Thu Jan 25 2018 Florian Weimer <fweimer@redhat.com> - 4.14.1-3
-- Rebuild to work around gcc bug leading to librpm miscompilation (#1538648)
-
-* Thu Jan 18 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-2
-- Avoid nuking the new python-macro-helper along with dep generators (#1535692)
-
-* Tue Jan 16 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-1
-- Rebase to rpm 4.14.1 (http://rpm.org/wiki/Releases/4.14.1)
-
-* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.0-5
-- Fix typo in Obsoletes
-
-* Mon Nov 06 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.0-4
-- Remove platform-python bits
-
-* Thu Oct 26 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-3
-- Move selinux plugin dependency to selinux-policy in Fedora >= 28 (#1493267)
-
-* Thu Oct 12 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-2
-- Dump out test-suite log in case of failures again
-- Don't assume per-user groups in test-suite
-
-* Thu Oct 12 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-1
-- Rebase to rpm 4.14.0 final (http://rpm.org/wiki/Releases/4.14.0)
-
-* Tue Oct 10 2017 Troy Dawson <tdawson@redhat.com> - 4.14.0-0.rc2.6
-- Cleanup spec file conditionals
-
-* Tue Oct 03 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc2.5
-- Add build conditionals for zstd and lmdb support
-- Enable zstd support
-
-* Tue Oct 03 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc2.4
-- Spec cleanups
-
-* Fri Sep 29 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc2.3
-- BuildRequire gnupg2 for the testsuite
-
-* Fri Sep 29 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc2.2
-- ima-evm-utils only has a -devel package in fedora >= 28
-
-* Thu Sep 28 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc2.1
-- Rebase to rpm 4.14.0-rc2 (http://rpm.org/wiki/Releases/4.14.0)
-
-* Mon Sep 18 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc1.3
-- Fix Ftell() past 2GB on 32bit architectures (#1492587)
-
-* Thu Sep 07 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc1.2
-- Actually honor with/without libimaevm option
-- ima-evm-utils-devel >= 1.0 is required for rpm >= 4.14.0
-
-* Wed Sep 06 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc1.1
-- Rebase to rpm 4.14.0-rc1 (http://rpm.org/wiki/Releases/4.14.0)
-- Re-enable SHA256 header digest generation (see #1480407)
-
-* Mon Aug 28 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.8
-- Band-aid for DB_VERSION_MISMATCH errors on glibc updates (#1465809)
-
-* Thu Aug 24 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.7
-- Remove ugly kludges from posttrans script, BDB handles this now
-
-* Fri Aug 18 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.6
-- Silence harmless but bogus error message on noarch packages (#1482144)
-
-* Thu Aug 17 2017 Miro Hrončok <mhroncok@redhat.com> - 4.13.90-0.git14002.5
-- Build with platform_python
-
-* Mon Aug 14 2017 Miro Hrončok <mhroncok@redhat.com> - 4.13.90-0.git14000.4
-- Add platform-python bytecompilation patch: platform-python-bytecompile.patch
-- Add platform python deps generator patch: platform-python-abi.patch
-- Add a platform-python subpackage and remove system python related declarations
-- Build rpm without platform_python for bytecompilation
- (https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
-
-* Mon Aug 14 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.3
-- Disable macro argument quoting as a band-aid to #1481025
-
-* Fri Aug 11 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.2
-- Disable SHA256 header-only digest generation temporarily (#1480407)
-
-* Thu Aug 10 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.1
-- Rebase to rpm 4.13.90 aka 4.14.0-alpha (#1474836)
-
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-04 15:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-04 15:28 [rpms/python3-rpm] epel9: Merge c9s into epel9-next
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox