From ba40b00fa2afd9f7dcb670d19a539ddae6ff96e5 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 26 Nov 2024 19:11:30 +0300 Subject: [PATCH] import rpm-4.19.1.1-3.el10 --- .gitignore | 1 + .rpm.metadata | 1 + SOURCES/0001-Fix-memory-leak-in-rpmsign.patch | 27 + ...tial-use-of-uninitialized-pgp-struct.patch | 32 + ...tial-use-of-uninitialized-pipe-array.patch | 32 + SOURCES/rpm-4.17.x-rpm_dbpath.patch | 12 + SOURCES/rpm-4.18.90-weak-user-group.patch | 11 + SOURCES/rpm-4.18.92-disable-sysusers.patch | 12 + SOURCES/rpm-4.18.x-siteconfig.patch | 14 + SOURCES/rpm-4.7.1-geode-i686.patch | 14 + SOURCES/rpm-4.9.90-no-man-dirs.patch | 12 + SOURCES/rpmdb-migrate.service | 18 + SOURCES/rpmdb-rebuild.service | 19 + SOURCES/rpmdb_migrate | 40 + SPECS/rpm.spec | 1349 +++++++++++++++++ 15 files changed, 1594 insertions(+) create mode 100644 .gitignore create mode 100644 .rpm.metadata create mode 100644 SOURCES/0001-Fix-memory-leak-in-rpmsign.patch create mode 100644 SOURCES/0001-Fix-potential-use-of-uninitialized-pgp-struct.patch create mode 100644 SOURCES/0001-Fix-potential-use-of-uninitialized-pipe-array.patch create mode 100644 SOURCES/rpm-4.17.x-rpm_dbpath.patch create mode 100644 SOURCES/rpm-4.18.90-weak-user-group.patch create mode 100644 SOURCES/rpm-4.18.92-disable-sysusers.patch create mode 100644 SOURCES/rpm-4.18.x-siteconfig.patch create mode 100644 SOURCES/rpm-4.7.1-geode-i686.patch create mode 100644 SOURCES/rpm-4.9.90-no-man-dirs.patch create mode 100644 SOURCES/rpmdb-migrate.service create mode 100644 SOURCES/rpmdb-rebuild.service create mode 100644 SOURCES/rpmdb_migrate create mode 100644 SPECS/rpm.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..85b5970 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/rpm-4.19.1.1.tar.bz2 diff --git a/.rpm.metadata b/.rpm.metadata new file mode 100644 index 0000000..1c8e699 --- /dev/null +++ b/.rpm.metadata @@ -0,0 +1 @@ +5ff9a545a18cd7183854b7ec6de675969fd9b1ec SOURCES/rpm-4.19.1.1.tar.bz2 diff --git a/SOURCES/0001-Fix-memory-leak-in-rpmsign.patch b/SOURCES/0001-Fix-memory-leak-in-rpmsign.patch new file mode 100644 index 0000000..d9c401f --- /dev/null +++ b/SOURCES/0001-Fix-memory-leak-in-rpmsign.patch @@ -0,0 +1,27 @@ +From 65fa582b5cb267bb73c3e2b4c502f456d50c41f0 Mon Sep 17 00:00:00 2001 +From: Michal Domonkos +Date: Mon, 12 Aug 2024 17:15:48 +0200 +Subject: [PATCH] Fix memory leak in rpmsign + +Found by Coverity. + +Fixes: RHEL-37564 +--- + tools/rpmsign.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/tools/rpmsign.c b/tools/rpmsign.c +index a47b2c109..c5e3e11b4 100644 +--- a/tools/rpmsign.c ++++ b/tools/rpmsign.c +@@ -152,6 +152,7 @@ static int doSign(poptContext optCon, struct rpmSignArgs *sargs) + char *key = rpmExpand("%{?_file_signing_key}", NULL); + if (rstreq(key, "")) { + fprintf(stderr, _("You must set \"%%_file_signing_key\" in your macro file or on the command line with --fskpath\n")); ++ free(key); + goto exit; + } + +-- +2.46.0 + diff --git a/SOURCES/0001-Fix-potential-use-of-uninitialized-pgp-struct.patch b/SOURCES/0001-Fix-potential-use-of-uninitialized-pgp-struct.patch new file mode 100644 index 0000000..8869bb5 --- /dev/null +++ b/SOURCES/0001-Fix-potential-use-of-uninitialized-pgp-struct.patch @@ -0,0 +1,32 @@ +From 1b90b8c7d176026b669ce28c6e185724a4b208b0 Mon Sep 17 00:00:00 2001 +From: Michal Domonkos +Date: Fri, 7 Jun 2024 10:14:25 +0200 +Subject: [PATCH] Fix potential use of uninitialized pgp struct + +We only call initPgpData() after base64 encoding the pubkey so if the +latter fails, the kd struct will be left uninitialized and subsequently +read from after skipping to the exit label. Fix by initializing it. + +Found by Coverity. + +Fixes: RHEL-22605 +--- + lib/rpmts.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/lib/rpmts.c b/lib/rpmts.c +index 3070b97e6..76964c60a 100644 +--- a/lib/rpmts.c ++++ b/lib/rpmts.c +@@ -508,6 +508,8 @@ static int makePubkeyHeader(rpmts ts, rpmPubkey key, rpmPubkey *subkeys, + int rc = -1; + int i; + ++ memset(&kd, 0, sizeof(kd)); ++ + if ((enc = rpmPubkeyBase64(key)) == NULL) + goto exit; + +-- +2.46.0 + diff --git a/SOURCES/0001-Fix-potential-use-of-uninitialized-pipe-array.patch b/SOURCES/0001-Fix-potential-use-of-uninitialized-pipe-array.patch new file mode 100644 index 0000000..d6c71e2 --- /dev/null +++ b/SOURCES/0001-Fix-potential-use-of-uninitialized-pipe-array.patch @@ -0,0 +1,32 @@ +From bff65aad8af719542c7b0c6429e09223c014a909 Mon Sep 17 00:00:00 2001 +From: Michal Domonkos +Date: Thu, 6 Jun 2024 09:15:02 +0200 +Subject: [PATCH] Fix potential use of uninitialized pipe array + +We only call pipe(2) after the script is written to disk so if the +latter fails, the array will be left uninitialized and subsequently read +after skipping to the exit label. Fix by initializing it. + +Found by Coverity. + +Fixes: RHEL-22604 +--- + lib/rpmscript.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/rpmscript.c b/lib/rpmscript.c +index 281c55c53..1de4acf8e 100644 +--- a/lib/rpmscript.c ++++ b/lib/rpmscript.c +@@ -316,7 +316,7 @@ static rpmRC runExtScript(rpmPlugins plugins, ARGV_const_t prefixes, + char * fn = NULL; + pid_t pid, reaped; + int status; +- int inpipe[2]; ++ int inpipe[2] = { -1, -1 }; + FILE *in = NULL; + const char *line; + char *mline = NULL; +-- +2.46.0 + diff --git a/SOURCES/rpm-4.17.x-rpm_dbpath.patch b/SOURCES/rpm-4.17.x-rpm_dbpath.patch new file mode 100644 index 0000000..b1dff4d --- /dev/null +++ b/SOURCES/rpm-4.17.x-rpm_dbpath.patch @@ -0,0 +1,12 @@ +diff '--color=auto' -rup rpm-4.17.0-orig/macros.in rpm-4.17.0/macros.in +--- rpm-4.17.0-orig/macros.in 2021-08-20 04:44:56.264259007 -0400 ++++ rpm-4.17.0/macros.in 2022-01-26 20:11:26.864195884 -0500 +@@ -140,7 +140,7 @@ + %_buildshell /bin/sh + + # The location of the rpm database file(s). +-%_dbpath %{_var}/lib/rpm ++%_dbpath %{_usr}/lib/sysimage/rpm + + # The location of the rpm database file(s) after "rpm --rebuilddb". + %_dbpath_rebuild %{_dbpath} diff --git a/SOURCES/rpm-4.18.90-weak-user-group.patch b/SOURCES/rpm-4.18.90-weak-user-group.patch new file mode 100644 index 0000000..3ba6f29 --- /dev/null +++ b/SOURCES/rpm-4.18.90-weak-user-group.patch @@ -0,0 +1,11 @@ +--- rpm-4.18.90/macros.in.orig 2023-04-17 14:48:14.802719586 +0200 ++++ rpm-4.18.90/macros.in 2023-04-17 14:48:25.268852972 +0200 +@@ -236,7 +236,7 @@ + %clamp_mtime_to_source_date_epoch 0 + + # If enabled, dilute user() and group() requires into recommends +-#%_use_weak_usergroup_deps 1 ++%_use_weak_usergroup_deps 1 + + # The directory where newly built binary packages will be written. + %_rpmdir %{_topdir}/RPMS diff --git a/SOURCES/rpm-4.18.92-disable-sysusers.patch b/SOURCES/rpm-4.18.92-disable-sysusers.patch new file mode 100644 index 0000000..80582a5 --- /dev/null +++ b/SOURCES/rpm-4.18.92-disable-sysusers.patch @@ -0,0 +1,12 @@ +diff -up rpm-4.18.92/macros.in.orig rpm-4.18.92/macros.in +--- rpm-4.18.92/macros.in.orig 2023-08-02 17:56:49.858065935 +0200 ++++ rpm-4.18.92/macros.in 2023-08-02 17:57:01.967988065 +0200 +@@ -138,7 +138,7 @@ + + # sysusers helper binary (or a replacement script), uncomment to disable + #%__systemd_sysusers @__SYSTEMD_SYSUSERS@ +-%__systemd_sysusers %{_rpmconfigdir}/sysusers.sh ++#%__systemd_sysusers %{_rpmconfigdir}/sysusers.sh + + # + # Path to script that creates debug symbols in a /usr/lib/debug diff --git a/SOURCES/rpm-4.18.x-siteconfig.patch b/SOURCES/rpm-4.18.x-siteconfig.patch new file mode 100644 index 0000000..af6ebf0 --- /dev/null +++ b/SOURCES/rpm-4.18.x-siteconfig.patch @@ -0,0 +1,14 @@ +diff -up rpm-4.18.1/macros.in.orig rpm-4.18.1/macros.in +--- rpm-4.18.1/macros.in.orig 2023-03-15 13:52:55.211928040 +0100 ++++ rpm-4.18.1/macros.in 2023-03-15 13:55:04.113129930 +0100 +@@ -746,7 +746,9 @@ package or when debugging this package.\ + %{?_javaclasspath:CLASSPATH=\"%{_javaclasspath}\"\ + export CLASSPATH}\ + PKG_CONFIG_PATH=\"${PKG_CONFIG_PATH}:%{_libdir}/pkgconfig:%{_datadir}/pkgconfig\"\ +- export PKG_CONFIG_PATH ++ export PKG_CONFIG_PATH\ ++ CONFIG_SITE=${CONFIG_SITE:-NONE}\ ++ export CONFIG_SITE + + %___build_pre \ + %{___build_pre_env} \ diff --git a/SOURCES/rpm-4.7.1-geode-i686.patch b/SOURCES/rpm-4.7.1-geode-i686.patch new file mode 100644 index 0000000..2e8692a --- /dev/null +++ b/SOURCES/rpm-4.7.1-geode-i686.patch @@ -0,0 +1,14 @@ +diff --git a/rpmrc.in b/rpmrc.in +index 4a6cca9..d62ddaf 100644 +--- a/rpmrc.in ++++ b/rpmrc.in +@@ -281,7 +281,7 @@ arch_compat: alphaev5: alpha + arch_compat: alpha: axp noarch + + arch_compat: athlon: i686 +-arch_compat: geode: i586 ++arch_compat: geode: i686 + arch_compat: pentium4: pentium3 + arch_compat: pentium3: i686 + arch_compat: i686: i586 + diff --git a/SOURCES/rpm-4.9.90-no-man-dirs.patch b/SOURCES/rpm-4.9.90-no-man-dirs.patch new file mode 100644 index 0000000..04f276a --- /dev/null +++ b/SOURCES/rpm-4.9.90-no-man-dirs.patch @@ -0,0 +1,12 @@ +diff -up rpm-4.9.90.git11486/scripts/find-lang.sh.no-man-dirs rpm-4.9.90.git11486/scripts/find-lang.sh +--- rpm-4.9.90.git11486/scripts/find-lang.sh.no-man-dirs 2012-03-07 11:31:10.000000000 +0200 ++++ rpm-4.9.90.git11486/scripts/find-lang.sh 2012-03-07 15:11:57.465801075 +0200 +@@ -181,7 +181,7 @@ s:%lang(C) :: + find "$TOP_DIR" -type d|sed ' + s:'"$TOP_DIR"':: + '"$ALL_NAME$MAN"'s:\(.*/man/\([^/_]\+\).*/man[a-z0-9]\+/\):: +-'"$ALL_NAME$MAN"'s:\(.*/man/\([^/_]\+\).*/man[a-z0-9]\+$\):%lang(\2) \1*: ++'"$ALL_NAME$MAN"'s:\(.*/man/\([^/_]\+\).*/man[a-z0-9]\+$\):%lang(\2) \1/*: + s:^\([^%].*\):: + s:%lang(C) :: + /^$/d' >> $MO_NAME diff --git a/SOURCES/rpmdb-migrate.service b/SOURCES/rpmdb-migrate.service new file mode 100644 index 0000000..54a934d --- /dev/null +++ b/SOURCES/rpmdb-migrate.service @@ -0,0 +1,18 @@ +[Unit] +Description=RPM database migration to /usr +ConditionPathExists=/var/lib/rpm/.migratedb + +# This should run before any daemons that may open the rpmdb +DefaultDependencies=no +After=sysinit.target +Before=basic.target shutdown.target +Conflicts=shutdown.target +# In case /var is remote-mounted +RequiresMountsFor=/var + +[Service] +Type=oneshot +ExecStart=/usr/lib/rpm/rpmdb_migrate + +[Install] +WantedBy=basic.target diff --git a/SOURCES/rpmdb-rebuild.service b/SOURCES/rpmdb-rebuild.service new file mode 100644 index 0000000..4cd2f33 --- /dev/null +++ b/SOURCES/rpmdb-rebuild.service @@ -0,0 +1,19 @@ +[Unit] +Description=RPM database rebuild +ConditionPathExists=/usr/lib/sysimage/rpm/.rebuilddb + +# This should run before any daemons that may open the rpmdb +DefaultDependencies=no +After=sysinit.target +Before=basic.target shutdown.target +Conflicts=shutdown.target +# In case /usr is remote-mounted +RequiresMountsFor=/usr + +[Service] +Type=oneshot +ExecStart=/usr/bin/rpmdb --rebuilddb +ExecStartPost=rm -f /usr/lib/sysimage/rpm/.rebuilddb + +[Install] +WantedBy=basic.target diff --git a/SOURCES/rpmdb_migrate b/SOURCES/rpmdb_migrate new file mode 100644 index 0000000..196744d --- /dev/null +++ b/SOURCES/rpmdb_migrate @@ -0,0 +1,40 @@ +#!/bin/bash +# Script to migrate rpmdb from /var/lib/rpm to new rpmdb path in /usr + +# Copyright (C) 2022 Neal Gompa . +# +# Fedora-License-Identifier: GPLv2+ +# SPDX-2.0-License-Identifier: GPL-2.0+ +# SPDX-3.0-License-Identifier: GPL-2.0-or-later +# +# This program is free software. +# For more information on the license, see COPYING or +# . +# For more information on free software, see +# . + + +set -euo pipefail + +# Script to migrate the rpmdb to /usr +rpmdb_path="$(rpm --eval '%_dbpath')" +rpmdb_path_old="/var/lib/rpm" +rpmdb_path_new="${rpmdb_path}" + + +if [ "${rpmdb_path}" = "${rpmdb_path_old}" ]; then + echo "The rpmdb path is still in /var, exiting!" + exit 0 +fi + +if [ -L "${rpmdb_path_old}" ]; then + echo "The rpmdb has already been migrated, exiting!" + rm -v "${rpmdb_path_old}/.migratedb" + exit 0 +fi + +rpm --verbose --rebuilddb + +rm -rfv ${rpmdb_path_old} + +ln -srv ${rpmdb_path_new} ${rpmdb_path_old} diff --git a/SPECS/rpm.spec b/SPECS/rpm.spec new file mode 100644 index 0000000..b952f09 --- /dev/null +++ b/SPECS/rpm.spec @@ -0,0 +1,1349 @@ +# 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 fsverity support? +%if 0%{?rhel} +%bcond_with fsverity +%else +%bcond_without fsverity +%endif +# build with zstd support? +%bcond_without zstd +# build with ndb backend? +%bcond_without ndb +# build with sqlite support? +%bcond_without sqlite +# build with bdb_ro support? +%bcond_without bdb_ro +# build with sequoia crypto? +%bcond_without sequoia + +%define rpmhome /usr/lib/rpm + +%global rpmver 4.19.1.1 +#global snapver rc1 +%global baserelease 3 +%global sover 10 + +%global srcver %{rpmver}%{?snapver:-%{snapver}} +%global srcdir %{?snapver:testing}%{!?snapver:rpm-%(echo %{rpmver} | cut -d'.' -f1-2).x} + +Summary: The RPM package management system +Name: rpm +Version: %{rpmver} +Release: %{?snapver:0.%{snapver}.}%{baserelease}%{?dist} +Url: http://www.rpm.org/ +License: GPL-2.0-or-later +Source0: http://ftp.rpm.org/releases/%{srcdir}/rpm-%{srcver}.tar.bz2 + +Source10: rpmdb-rebuild.service + +Source20: rpmdb-migrate.service +Source21: rpmdb_migrate + +Requires: coreutils +Requires: popt%{_isa} >= 1.10.2.1 +Requires: curl +Conflicts: systemd < 253.5-6 +Obsoletes: python2-rpm < %{version}-%{release} + +# 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: cmake >= 3.18 +BuildRequires: gawk +BuildRequires: elfutils-devel >= 0.112 +BuildRequires: elfutils-libelf-devel +BuildRequires: readline-devel zlib-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 + +# Needed for re-building the documentation and man pages +# normally those are shipped in the tarball pre-build +# but need re-building if sources are patched +%if 0 +BuildRequires: pandoc +BuildRequires: doxygen +%endif + + +%if %{with sequoia} +%global crypto sequoia +BuildRequires: rpm-sequoia-devel >= 1.4.0 +%else +%global crypto openssl +BuildRequires: openssl-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 + +%if %{with fsverity} +BuildRequires: fsverity-utils-devel +%endif + +# For the rpmdb migration scriptlet (#2055033) +Requires(pre): coreutils +Requires(pre): findutils +Requires(pre): sed + +%patchlist +# Set rpmdb path to /usr/lib/sysimage/rpm +rpm-4.17.x-rpm_dbpath.patch +# Disable autoconf config.site processing (#962837) +rpm-4.18.x-siteconfig.patch +# In current Fedora, man-pages pkg owns all the localized man directories +rpm-4.9.90-no-man-dirs.patch +# Disable new user/group handling + +rpm-4.18.92-disable-sysusers.patch +rpm-4.18.90-weak-user-group.patch + +# Patches already upstream: +0001-Fix-potential-use-of-uninitialized-pipe-array.patch +0001-Fix-potential-use-of-uninitialized-pgp-struct.patch +0001-Fix-memory-leak-in-rpmsign.patch + +# These are not yet upstream +rpm-4.7.1-geode-i686.patch + +%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: GPL-2.0-or-later OR LGPL-2.1-or-later +Requires(meta): %{name} = %{version}-%{release} +%if %{with sequoia} +# >= 1.4.0 required for pgpVerifySignature2() and pgpPrtParams2() +Requires: rpm-sequoia%{_isa} >= 1.4.0 +# Most systems should have a central package operations log +Recommends: rpm-plugin-audit +%endif + +%description libs +This package contains the RPM shared libraries. + +%package build-libs +Summary: Libraries for building RPM packages +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 +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: GPL-2.0-or-later OR LGPL-2.1-or-later +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: debugedit >= 0.3 +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 + +%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} + +%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(meta): 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. + +%if %{with libimaevm} +%package plugin-ima +Summary: Rpm plugin ima file signatures +Requires: rpm-libs%{_isa} = %{version}-%{release} + +%description plugin-ima +%{summary}. +%endif + +%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}. + +%if %{with fsverity} +%package plugin-fsverity +Summary: Rpm plugin for fsverity file signatures +Requires: rpm-libs%{_isa} = %{version}-%{release} + +%description plugin-fsverity +%{summary}. +%endif + +%package plugin-fapolicyd +Summary: Rpm plugin for fapolicyd support +Requires: rpm-libs%{_isa} = %{version}-%{release} +Provides: fapolicyd-plugin = %{version}-%{release} +# fapolicyd-dnf-plugin currently at 1.0.4 +Obsoletes: fapolicyd-dnf-plugin < 1.0.5 + +%description plugin-fapolicyd +%{summary}. + +See https://people.redhat.com/sgrubb/fapolicyd/ for information about +the fapolicyd daemon. + +%package plugin-dbus-announce +Summary: Rpm plugin for announcing transactions on the DBUS +Requires: rpm-libs%{_isa} = %{version}-%{release} + +%description plugin-dbus-announce +The plugin announces basic information about rpm transactions to the +system DBUS - like packages installed or removed. Other programs can +subscribe to the signals to get notified when packages on the system +change. + +# with plugins +%endif + +%prep +%autosetup -n rpm-%{srcver} -p1 + +%build +%set_build_flags + +mkdir _build +cd _build +cmake \ + -DCMAKE_INSTALL_PREFIX=%{_usr} \ + -DCMAKE_INSTALL_SHAREDSTATEDIR:PATH=%{_var}/lib \ + %{?with_bdb_ro:-DENABLE_BDB_RO=ON} \ + %{!?with_ndb:-DENABLE_NDB=OFF} \ + %{!?with_sqlite:-DENABLE_SQLITE=OFF} \ + %{!?with_plugins:-DENABLE_PLUGINS=OFF} \ + %{?with_fsverity:-DWITH_FSVERITY=ON} \ + %{?with_libimaevm:-DWITH_IMAEVM=ON} \ + %{!?with_libarchive:-DWITH_ARCHIVE=OFF} \ + %{!?with_check:-DENABLE_TESTSUITE=OFF} \ + %{!?with_sequoia:-DWITH_INTERNAL_OPENPGP=ON} \ + %{!?with_sequoia:-DWITH_OPENSSL=ON } \ + -DRPM_VENDOR=redhat \ + .. + +%make_build + +%install +cd _build +%make_install +cd .. + +mkdir -p $RPM_BUILD_ROOT%{_unitdir} +install -m 644 %{SOURCE10} $RPM_BUILD_ROOT/%{_unitdir} +install -m 644 %{SOURCE20} $RPM_BUILD_ROOT/%{_unitdir} + +mkdir -p $RPM_BUILD_ROOT%{rpmhome} +install -m 755 %{SOURCE21} $RPM_BUILD_ROOT/%{rpmhome} + +# Built-in replacement for systemd-sysusers(8) +install -m 755 scripts/sysusers.sh $RPM_BUILD_ROOT/%{rpmhome} + +# 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 + +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rpm +mkdir -p $RPM_BUILD_ROOT%{rpmhome}/macros.d +mkdir -p $RPM_BUILD_ROOT/usr/lib/sysimage/rpm +cd _build + +# init an empty database for %ghost'ing for all supported backends +for be in %{?with_ndb:ndb} %{?with_sqlite:sqlite}; do + mkdir ${be} + tools/rpmdb --rcfile rpmrc --define "_db_backend ${be}" --dbpath=${PWD}/${be} --initdb + cp -va ${be}/. $RPM_BUILD_ROOT/usr/lib/sysimage/rpm/ +done + +# some packages invoke find-debuginfo directly, preserve compat for now +ln -s ../../bin/find-debuginfo $RPM_BUILD_ROOT/usr/lib/rpm/find-debuginfo.sh + +%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 + +# workaround for https://github.com/rpm-software-management/rpm/issues/2811 +rm $RPM_BUILD_ROOT/%{_defaultdocdir}/rpm/README.md + +%pre +# Symlink all rpmdb files to the new location if we're still using /var/lib/rpm +if [ -d /var/lib/rpm ]; then + mkdir -p /usr/lib/sysimage/rpm + rpmdb_files=$(find /var/lib/rpm -maxdepth 1 -type f | sed 's|^/var/lib/rpm/||g' | sort) + for rpmdb_file in ${rpmdb_files[@]}; do + ln -sfr /var/lib/rpm/${rpmdb_file} /usr/lib/sysimage/rpm/${rpmdb_file} + done +fi + +%triggerun -- rpm < 4.17.0-7 +# Handle rpmdb migrate service on erasure of old to avoid ordering issues +if [ -x /usr/bin/systemctl ]; then + systemctl --no-reload preset rpmdb-migrate ||: +fi + +%posttrans +if [ -d /var/lib/rpm ]; then + touch /var/lib/rpm/.migratedb +fi +if [ ! -d /var/lib/rpm ] && [ -d /usr/lib/sysimage/rpm ] && [ ! -f /usr/lib/sysimage/rpm/.rpmdbdirsymlink_created ]; then + ln -sfr /usr/lib/sysimage/rpm /var/lib/rpm + touch /usr/lib/sysimage/rpm/.rpmdbdirsymlink_created +fi + +%files -f _build/rpm.lang +%license COPYING +%doc CREDITS docs/manual/[a-z]* +%doc %{_defaultdocdir}/rpm/CONTRIBUTING.md +%doc %{_defaultdocdir}/rpm/COPYING +%doc %{_defaultdocdir}/rpm/INSTALL +%doc %{_defaultdocdir}/rpm/README + +%{_unitdir}/rpmdb-rebuild.service +%{_unitdir}/rpmdb-migrate.service + +%dir %{_sysconfdir}/rpm + +%attr(0755, root, root) %dir /usr/lib/sysimage/rpm +%attr(0644, root, root) %ghost %config(missingok,noreplace) /usr/lib/sysimage/rpm/* +%attr(0644, root, root) %ghost /usr/lib/sysimage/rpm/.*.lock + +%{_bindir}/rpm +%{_bindir}/rpm2archive +%{_bindir}/rpm2cpio +%{_bindir}/rpmdb +%{_bindir}/rpmkeys +%{_bindir}/rpmquery +%{_bindir}/rpmverify +%{_bindir}/rpmsort + +%{_mandir}/man8/rpm.8* +%{_mandir}/man8/rpmdb.8* +%{_mandir}/man8/rpmkeys.8* +%{_mandir}/man8/rpm2archive.8* +%{_mandir}/man8/rpm2cpio.8* +%{_mandir}/man8/rpm-misc.8* +%{_mandir}/man8/rpmsort.8* +%{_mandir}/man8/rpm-plugins.8* + +%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 +%{rpmhome}/sysusers.sh + +%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* + +%if %{with libimaevm} +%files plugin-ima +%{_libdir}/rpm-plugins/ima.so +%{_mandir}/man8/rpm-plugin-ima.8* +%endif + +%if %{with fsverity} +%files plugin-fsverity +%{_libdir}/rpm-plugins/fsverity.so +%endif + +%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 + +%files plugin-dbus-announce +%{_libdir}/rpm-plugins/dbus_announce.so +%{_mandir}/man8/rpm-plugin-dbus-announce.8* +%{_datadir}/dbus-1/system.d/org.rpm.conf +%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 +%{_bindir}/rpmlua + +%{_mandir}/man1/gendiff.1* +%{_mandir}/man8/rpmbuild.8* +%{_mandir}/man8/rpmdeps.8* +%{_mandir}/man8/rpmspec.8* +%{_mandir}/man8/rpmlua.8* + +%{rpmhome}/brp-* +%{rpmhome}/check-* +%{rpmhome}/find-lang.sh +%{rpmhome}/*provides* +%{rpmhome}/*requires* +%{rpmhome}/*deps* +%{rpmhome}/*.prov +%{rpmhome}/*.req +%{rpmhome}/fileattrs/* +%{rpmhome}/find-debuginfo.sh +%{rpmhome}/rpmuncompress + +%files sign +%{_bindir}/rpmsign +%{_mandir}/man8/rpmsign.8* + +%files -n python3-%{name} +%dir %{python3_sitearch}/rpm +%{python3_sitearch}/rpm-%{rpmver}*.egg-info +%{python3_sitearch}/rpm/__init__.py +%{python3_sitearch}/rpm/transaction.py +%{python3_sitearch}/rpm/_rpm.so +%artifact %{python3_sitearch}/rpm/__pycache__/ + +# Python examples +%{_defaultdocdir}/rpm/examples/*.py + +%files devel +%{_mandir}/man8/rpmgraph.8* +%{_bindir}/rpmgraph +%{_libdir}/librp*[a-z].so +%{_libdir}/pkgconfig/rpm.pc +%{_libdir}/cmake/rpm/ +%{_includedir}/rpm/ + +%files cron +%{_sysconfdir}/cron.daily/rpm +%config(noreplace) %{_sysconfdir}/logrotate.d/rpm + +%files apidocs +%license COPYING +%doc %{_defaultdocdir}/rpm/API/ + +%changelog +* Tue Nov 26 2024 MSVSphere Packaging Team - 4.19.1.1-3 +- Rebuilt for MSVSphere 10 + +* Tue Aug 13 2024 Michal Domonkos - 4.19.1.1-3 +- Fix potential use of uninitialized pipe array (RHEL-54012) +- Fix potential use of uninitialized pgp struct (RHEL-54013) +- Fix memory leak in rpmsign(8) (RHEL-37564) + +* Mon Jun 24 2024 Troy Dawson - 4.19.1.1-2 +- Bump release for June 2024 mass rebuild + +* Wed Feb 07 2024 Michal Domonkos - 4.19.1.1-1 +- Update to 4.19.1.1 (https://rpm.org/wiki/Releases/4.19.1.1) + +* Fri Jan 26 2024 Fedora Release Engineering - 4.19.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Jan 22 2024 Fedora Release Engineering - 4.19.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Dec 15 2023 Panu Matilainen - 4.19.1-2 +- Fix bogus warnings about runaway Lua scripts (#2254463) + +* Tue Dec 12 2023 Michal Domonkos - 4.19.1-1 +- Update to 4.19.1 (https://rpm.org/wiki/Releases/4.19.1) + +* Thu Nov 30 2023 Stephen Gallagher - 4.19.0-3 +- Fix issues with %%getncpus sometimes returning 0 on i686 systems + +* Mon Nov 13 2023 Panu Matilainen - 4.19.0-2 +- Ensure central package ops log via rpm-plugin-audit recommends (#1476926) +- Own our Python module directory (#2248555) +- Fix sysusers.d generator barfing on legit content (#2246236) + +* Tue Sep 19 2023 Michal Domonkos - 4.19.0-1 +- Update to 4.19.0 + +* Mon Sep 04 2023 Michal Domonkos - 4.18.99-1 +- Update to 4.19 rc1 + +* Tue Aug 22 2023 Panu Matilainen - 4.18.92-3 +- Fix regression on uncompressing 7zip compressed sources (#2229984) +- Fix a conflict with pre-existing scl-utils %_root_prefix macro (#2233454) + +* Mon Aug 21 2023 Panu Matilainen - 4.18.92-2 +- Behave more consistently when target %%optflags are not defined (#2231727) + +* Wed Aug 02 2023 Michal Domonkos - 4.18.92-1 +- Update to 4.19 beta + +* Tue Jul 25 2023 Yaakov Selkowitz - 4.18.91-9 +- Drop fsverity plugin from RHEL builds + +* Fri Jul 21 2023 Fedora Release Engineering - 4.18.91-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Wed Jun 28 2023 Panu Matilainen - 4.18.91-7 +- Rebuilt for Python 3.12 + +* Wed Jun 28 2023 Panu Matilainen - 4.18.91-6 +- Fix a spec parsing error handling regression +- Fix a per-file plugin hook regression + +* Tue Jun 27 2023 Panu Matilainen - 4.18.91-5 +- Fix potential crash with multiple in-process sqlite uses + +* Mon Jun 26 2023 Python Maint - 4.18.91-4 +- Rebuilt for Python 3.12 + +* Wed Jun 21 2023 Panu Matilainen - 4.18.91-3 +- Enable user/group provide generation +- Add a conflict for systemd versions carrying their own + +* Tue Jun 13 2023 Python Maint - 4.18.91-2 +- Rebuilt for Python 3.12 + +* Fri Jun 09 2023 Michal Domonkos - 4.18.91-1 +- Update to 4.19 alpha2 + +* Thu Jun 08 2023 Peter Robinson - 4.18.90-10 +- Rebuild for ima-evm-utils 1.5 soname bump + +* Mon May 29 2023 Panu Matilainen - 4.18.90-9 +- Revert %%_smp_build_ncpus macro changing to parametric (#2210347) + +* Thu May 25 2023 Florian Festi - 4.18.90-8 +- Set %_sharedstatedir to /var/lib (#2209989) + +* Thu May 25 2023 Florian Festi - 4.18.90-7 +- Remove compat links for old so name of the libraries +- Remove compat forward ports for libdnf + +* Mon May 22 2023 Florian Festi - 4.18.90-6 +- Fix undefined symbols from plugins + +* Wed May 17 2023 Florian Festi - 4.18.90-5 +- Use mkdir -p for creating SPECPARTS dir + +* Wed May 17 2023 Florian Festi - 4.18.90-4 +- Enable large file support on 32-bit systems again + +* Mon May 15 2023 Florian Festi - 4.18.90-3 +- Fix libbzip2 detection + +* Thu May 11 2023 Florian Festi - 4.18.90-2 +- Add compat links for building dnf and friends + +* Thu May 04 2023 Florian Festi - 4.18.90-1 +- Update to 4.19 alpha + +* Tue Apr 25 2023 Miro Hrončok - 4.18.1-3 +- Explicitly require rpm-sequoia >= 1.4.0 on runtime to avoid + rpm: symbol lookup error: /lib64/librpmio.so.9: undefined symbol: _pgpVerifySignature2 + +* Thu Apr 20 2023 Panu Matilainen - 4.18.1-2 +- Backport improved crypto error messages from upstream + +* Wed Mar 15 2023 Michal Domonkos - 4.18.1-1 +- Rebase to rpm 4.18.1 (https://rpm.org/wiki/Releases/4.18.1) + +* Thu Feb 16 2023 Panu Matilainen - 4.18.0-11 +- Disable debuginfod lookups in rpmbuild scripts +- Exclude kernel modules from ELF dependency generation + +* Fri Jan 20 2023 Fedora Release Engineering - 4.18.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Mon Jan 09 2023 Panu Matilainen - 4.18.0-9 +- Generate Python egg-info from automake (#2135561) +- Drop setup.py-based Python build (#2135719) + +* Wed Dec 07 2022 Panu Matilainen - 4.18.0-8 +- Fix hang-up on failed key import (related to #2149762) + +* Thu Nov 24 2022 Panu Matilainen - 4.18.0-7 +- Require rpm-sequoia >= 1.2.0 for V3 signature support, re-enable (#2141686) + +* Thu Nov 10 2022 Panu Matilainen - 4.18.0-6 +- Revert back to internal OpenPGP parser for V3 signature support (#2141686) + +* Tue Nov 01 2022 Panu Matilainen - 4.18.0-5 +- Switch to Sequoia crypto (https://fedoraproject.org/wiki/Changes/RpmSequoia) + +* Fri Oct 14 2022 Panu Matilainen - 4.18.0-4 +- Add an option for building with Sequoia crypto + +* Wed Oct 05 2022 Panu Matilainen - 4.18.0-3 +- Break ancient rpm <-> rpm-libs ordering loop + +* Mon Oct 03 2022 Panu Matilainen - 4.18.0-2 +- Drop the temporary build-dependency on pandoc before it grows a beard +- Start utilizing %%patchlist, finally + +* Wed Sep 21 2022 Panu Matilainen - 4.18.0-1 +- Rebase to rpm 4.18.0 (https://rpm.org/wiki/Releases/4.18.0) + +* Wed Sep 14 2022 Panu Matilainen - 4.18.0-0.rc1.4 +- Fix a largish directory walk related memory leak in transactions + +* Wed Sep 07 2022 Panu Matilainen - 4.18.0-0.rc1.3 +- Fix buffer overrun on rpmdb queries involving ^ in version + +* Wed Sep 07 2022 Panu Matilainen - 4.18.0-0.rc1.2 +- Break selinux-policy <-> rpm-plugin-selinux ordering loop (#1851266) + +* Fri Sep 02 2022 Panu Matilainen - 4.18.0-0.rc1.1 +- Rebase to 4.18.0-rc1 (https://rpm.org/wiki/Releases/4.18.0) + +* Tue Aug 02 2022 Michal Domonkos - 4.18.0-0.beta1.4 +- Revert %%autosetup -S git patch due to another regression + +* Sat Jul 23 2022 Fedora Release Engineering - 4.18.0-0.beta1.3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Jul 11 2022 Michal Domonkos - 4.18.0-0.beta1.2 +- Fix check-buildroot regression wrt bundled SRPM (#2104150) +- Fix %%autosetup -S git regression wrt default git branch + +* Tue Jun 28 2022 Panu Matilainen - 4.18.0-0.beta1.1 +- Rebase to 4.18.0-beta1 (https://rpm.org/wiki/Releases/4.18.0) + +* Mon Jun 13 2022 Python Maint - 4.18.0-0.alpha2.2 +- Rebuilt for Python 3.11 + +* Mon May 23 2022 Panu Matilainen - 4.18.0-0.alpha2.1 +- Rebase to 4.18.0-0.alpha2 +- Prevent uncontrolled sqlite WAL growth during large transactions + +* Thu Apr 28 2022 Panu Matilainen - 4.18.0-0.alpha1.6 +- Fix rubygem unpack regression, causing rubygem builds to fail + +* Wed Apr 27 2022 Panu Matilainen - 4.18.0-0.alpha1.5 +- Fix verbose source uncompress regression (#2079127) + +* Tue Apr 26 2022 Panu Matilainen - 4.18.0-0.alpha1.4 +- Further dynamic buildrequires cli switch regression fixes (#2078744) + +* Tue Apr 26 2022 Panu Matilainen - 4.18.0-0.alpha1.3 +- Fix rpmbuild -ba --nodeps regression wrt dynamic buildrequires (#2078744) + +* Tue Apr 26 2022 Panu Matilainen - 4.18.0-0.alpha1.2 +- Fix rpmbuild -br not producing a src.rpm regression (#2078744) + +* Mon Apr 25 2022 Panu Matilainen - 4.18.0-0.alpha1.1 +- Rebase to 4.18.0 alpha (https://fedoraproject.org/wiki/Changes/RPM-4.18) +- Add patches for two late discovered regressions + +* Mon Mar 21 2022 Neal Gompa - 4.17.0-10 +- Create rpmdb directory symlink in posttrans by default (#2066427) + +* Wed Feb 16 2022 Neal Gompa - 4.17.0-9 +- Add dependencies for the rpmdb migration scriptlet (#2055033) + +* Wed Feb 02 2022 Panu Matilainen - 4.17.0-8 +- Really fix spurious %%transfiletriggerpostun execution (#2023311, #2048168) + +* Wed Jan 26 2022 Neal Gompa - 4.17.0-7 +- Migrate rpmdb to /usr/lib/sysimage/rpm (#2042099) + https://fedoraproject.org/wiki/Changes/RelocateRPMToUsr + +* Fri Jan 21 2022 Fedora Release Engineering - 4.17.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Jan 20 2022 Björn Esser - 4.17.0-5 +- Rebuild (ima-evm-utils) +- Use baserelease for rpm release tag to make rpmdev-bumpspec work + +* Fri Jan 14 2022 Panu Matilainen - 4.17.0-4 +- Fix spurious %%transfiletriggerpostun execution (#2023311) + +* Fri Jan 14 2022 Panu Matilainen - 4.17.0-3 +- Fix fapolicyd plugin dependencies to replace fapolicyd-dnf-plugin (#2007639) + +* Mon Nov 08 2021 Peter Robinson - 4.17.0-2 +- Rebuils for ima-evm-utils 1.4 soname bump + +* Tue Sep 14 2021 Sahana Prasad - 4.17.0-1.1 +- Rebuilt with OpenSSL 3.0.0 + +* Fri Sep 03 2021 Panu Matilainen - 4.17.0-1 +- Rebase to 4.17.0 final (https://rpm.org/wiki/Releases/4.17.0) + +* Thu Aug 19 2021 Panu Matilainen - 4.17.0-0.rc1.1 +- Rebase to 4.17.0 rc1 + +* Fri Jul 23 2021 Fedora Release Engineering - 4.17.0-0.beta1.0.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Jun 22 2021 Panu Matilainen - 4.17.0-0.beta1.1 +- Rebase to 4.17.0 beta1 +- Add back /usr/lib/rpm/find-debuginfo.sh as a compat symlink +- Add temporary buildrequire on pandoc due to makefile bugs in beta1 + +* Wed Jun 02 2021 Python Maint - 4.16.90-0.git15395.8.1 +- Rebuilt for Python 3.10 + +* Mon May 17 2021 Panu Matilainen - 4.16.90-0.git15395.8 +- Switch to external debugedit + +* Mon May 17 2021 Panu Matilainen - 4.16.90-0.git15395.7 +- Handle different find-debuginfo.sh location with external debugedit + +* Fri May 07 2021 Panu Matilainen - 4.16.90-0.git15395.6 +- Fix regression causing a crash on Lua state reset (#1958095) + +* Thu Apr 29 2021 Panu Matilainen - 4.16.90-0.git15395.5 +- Proper fix for comments affecting macro file parsing (#1953910) + +* Tue Apr 27 2021 Panu Matilainen - 4.16.90-0.git15395.4 +- Enable fapolicyd plugin build + +* Tue Apr 27 2021 Panu Matilainen - 4.16.90-0.git15395.3 +- Temporarily revert macro file loading fix due to regression #1953910 + +* Mon Apr 26 2021 Panu Matilainen - 4.16.90-0.git15395.2 +- Add a bcond to build with external debugedit + +* Mon Apr 26 2021 Panu Matilainen - 4.16.90-0.git15395.1 +- Rebase to rpm 4.17.0 alpha (https://rpm.org/wiki/Releases/4.17.0) +- Drop a local hack for a cosmetic Fedora 22 era rpm2cpio issue +- Drop BDB support leftovers from the spec +- Add build conditional for fsverity plugin + +* Mon Mar 22 2021 Panu Matilainen - 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 - 4.16.1.2-6 +- Drop support for read-write Berkeley DB format (#1787311) + +* Wed Feb 03 2021 Panu Matilainen - 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 - 4.16.1.2-4.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Fri Jan 22 2021 Mark Wielaard - 4.16.1.2-4 +- Fix edit_attributes_str_comp_dir in Patch916 (#1919107) + +* Tue Jan 19 2021 Jeff Law - 4.16.1.2-3 +- Fix typo in test for F33 or newer + +* Tue Jan 19 2021 Mark Wielaard - 4.16.1.2-2 +- Add debugedit DWARF5 support + +* Wed Dec 16 2020 Panu Matilainen - 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 - 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 - 4.16.1-1 +- Rebase to rpm 4.16.1 (http://rpm.org/wiki/Releases/4.16.1) + +* Mon Nov 30 2020 Panu Matilainen - 4.16.0-5 +- Only disable test-suite where it's actually broken + +* Mon Nov 30 2020 Panu Matilainen - 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 - 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 - 4.16.0-2 +- Clean up after test-suite which leaves a read-only tree behind + +* Wed Sep 30 2020 Panu Matilainen - 4.16.0-1 +- Rebase to 4.16.0 final (https://rpm.org/wiki/Releases/4.16.0) + +* Mon Aug 31 2020 Panu Matilainen - 4.16.0-0.rc1.1 +- Rebase to 4.16.0-rc1 +- Run test-suite in parallel + +* Sat Aug 01 2020 Fedora Release Engineering - 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 - 4.16.0-0.beta3.2.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun Jul 26 2020 Peter Robinson - 4.16.0-0.beta3.2.1 +- rebuild for ima-evm-utils 1.3 + +* Mon Jun 29 2020 Tom Callaway - 4.16.0-0.beta3.2 +- rebuild for lua 5.4 + +* Wed Jun 24 2020 Panu Matilainen - 4.16.0-0.beta3.1 +- Rebase to beta3 + +* Wed Jun 10 2020 Panu Matilainen - 4.16.0-0.beta1.4 +- Fix prefix search on sqlite backend (many file triggers not running) + +* Mon Jun 8 2020 Panu Matilainen - 4.16.0-0.beta1.3 +- Unbreak metainfo() provide generation + +* Wed Jun 3 2020 Panu Matilainen - 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 - 4.16.0-0.beta1.1 +- Rebase to rpm 4.16.0-beta1 + +* Fri May 22 2020 Miro Hrončok - 4.15.90-0.git14971.12.1 +- Rebuilt for Python 3.9 + +* Tue May 12 2020 Panu Matilainen - 4.15.90-0.git14971.12 +- Fix segfault when trying to use unknown database backend + +* Thu May 7 2020 Panu Matilainen - 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 - 4.15.90-0.git14971.10 +- Handle rpmdb-rebuild service enablement for upgrades + +* Thu Apr 23 2020 Panu Matilainen - 4.15.90-0.git14971.9 +- Fix questionable uses of %%{name} and %%{version} in the spec + +* Wed Apr 22 2020 Panu Matilainen - 4.15.90-0.git14971.8 +- Fix regression(s) on build dependency resolution + +* Wed Apr 22 2020 Panu Matilainen - 4.15.90-0.git14971.7 +- Add rpmdb-rebuild systemd service + +* Fri Apr 17 2020 Panu Matilainen - 4.15.90-0.git14971.6 +- Warn on undefined macros in buildtree setup macros (#1820349) + +* Thu Apr 09 2020 Panu Matilainen - 4.15.90-0.git14971.5 +- Fix regression causing all ELF files classified as OCaml + +* Mon Apr 06 2020 Panu Matilainen - 4.15.90-0.git14971.4 +- Fix invalid path passed to parametric macro generators + +* Thu Apr 02 2020 Panu Matilainen - 4.15.90-0.git14971.3 +- Fix db lock files not getting packaged + +* Tue Mar 31 2020 Panu Matilainen - 4.15.90-0.git14971.2 +- Move bdb specific systemd-tmpfiles cleanup crutch behind the bdb bcond + +* Tue Mar 31 2020 Panu Matilainen - 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 - 4.15.1-2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 9 2020 Panu Matilainen - 4.15.1-2 +- Obsolete python2-rpm to fix upgrade path (#1775113) + +* Mon Nov 18 2019 Panu Matilainen - 4.15.1-1 +- Rebase to 4.15.1 (https://rpm.org/wiki/Releases/4.15.1) + +* Thu Nov 14 2019 Adam Williamson - 4.15.0-7 +- Really revert armv8 detection improvements (patch was not applied in -6) + +* Wed Oct 23 2019 Peter Robinson 4.15.0-6 +- Revert armv8 detection improvements + +* Mon Oct 21 2019 Stephen Gallagher - 4.15.0-5 +- Revert aliasing arm64 to aarch64 +- Resolves: rhbz#1763831 + +* Fri Oct 18 2019 Panu Matilainen - 4.15.0-4 +- Revert problematic sub-variants of armv8 (#1691430) + +* Thu Oct 17 2019 Panu Matilainen - 4.15.0-3 +- Drop python2 bindings for good (#1761211) + +* Tue Oct 15 2019 Adam Williamson - 4.15.0-2 +- Revert systemd inhibit plugin's calling of dbus_shutdown (#1750575) + +* Thu Sep 26 2019 Panu Matilainen - 4.15.0-1 +- Update to 4.15.0 final (https://rpm.org/wiki/Releases/4.15.0) + +* Wed Aug 28 2019 Panu Matilainen - 4.15.0-0.rc1.1 +- Update to 4.15.0-rc1 + +* Tue Aug 27 2019 Panu Matilainen - 4.15.0-0.beta.6 +- Fix some issues in the thread cap logic + +* Mon Aug 26 2019 Panu Matilainen - 4.15.0-0.beta.5 +- Re-enable test-suite, temporarily disabled during alpha troubleshooting + +* Fri Aug 23 2019 Panu Matilainen - 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 - 4.15.0-0.beta.3 +- Restore strict order of build scriptlet stdout/stderr output + +* Thu Aug 15 2019 Miro Hrončok - 4.15.0-0.beta.2.3 +- Rebuilt for Python 3.8 + +* Wed Jul 31 2019 Miro Hrončok - 4.15.0-0.beta.2.2 +- Rebuilt for libimaevm.so.1 + +* Fri Jul 26 2019 Fedora Release Engineering - 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 - 4.15.0-0.beta.2 +- Backport patch to not set RPMTAG_BUILDTIME to SOURCE_DATE_EPOCH + +* Thu Jun 27 2019 Panu Matilainen - 4.15.0-0.beta.1 +- Rebase to 4.15.0 beta + +* Thu Jun 20 2019 Panu Matilainen - 4.14.90-0.git14653.18 +- Fix excessive TLS use, part II (#1722181) + +* Thu Jun 20 2019 Panu Matilainen - 4.14.90-0.git14653.17 +- Fix excessive TLS use (#1722181) + +* Wed Jun 19 2019 Panu Matilainen - 4.14.90-0.git14653.16 +- Drop buildarch again now that python_provide no longer needs it (#1720139) + +* Fri Jun 14 2019 Panu Matilainen - 4.14.90-0.git14653.15 +- Temporarily re-enable buildarch macro for python_provide macro use (#1720139) + +* Thu Jun 13 2019 Panu Matilainen - 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 - 4.14.90-0.git14653.13 +- Fix build of binary packages in parallel + +* Tue Jun 11 00:08:50 CEST 2019 Igor Gnatenko - 4.14.90-0.git14653.10 +- Revert generation of binary packages in parallel + +* Mon Jun 10 2019 Panu Matilainen - 4.14.90-0.git14653.1 +- Update to 4.15.0 alpha + +* Mon Jun 10 2019 Panu Matilainen - 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 - 4.14.2.1-13 +- Drop support for Fedora < 28 builds +- Drop leftover BDB-related compiler flag foo + +* Fri Jun 07 2019 Panu Matilainen - 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 - 4.14.2.1-11 +- Use py2/3 macros for building and installing the bindings + +* Tue May 21 2019 Panu Matilainen - 4.14.2.1-10 +- Support build-id generation from compressed ELF files (#1650072) + +* Fri May 03 2019 Igor Gnatenko - 4.14.2.1-9 +- Suggest gdb-minimal + +* Thu Apr 25 2019 Panu Matilainen - 4.14.2.1-8 +- Replace deprecated __global_ldflags uses with build_ldflags macro + +* Thu Apr 11 2019 Panu Matilainen - 4.14.2.1-7 +- Fix excessive reference counting on faked string .decode() + +* Wed Apr 10 2019 Panu Matilainen - 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 - 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 - 4.14.2.1-4.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Dec 19 2018 Panu Matilainen - 4.14.2.1-4 +- Backport the new modularity label tag (#1650286) + +* Mon Nov 19 2018 Panu Matilainen - 4.14.2.1-3 +- Take prefix into account when compressing man pages etc for Flatpak builds + +* Wed Oct 24 2018 Panu Matilainen - 4.14.2.1-2 +- Selinux plugin requires a base policy to work (#1641631) + +* Mon Oct 22 2018 Panu Matilainen - 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 - 4.14.2-9 +- Push name/epoch/version/release macro before invoking depgens + +* Tue Oct 16 2018 Igor Gnatenko - 4.14.2-8 +- Resurrect long since broken Lua library path + +* Fri Oct 12 2018 Panu Matilainen - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 4.14.2-0.rc2.2 +- Move python-macro-helper to main package where the macros are (#1577860) + +* Wed Aug 08 2018 Panu Matilainen - 4.14.2-0.rc2.1 +- Update to rpm 4.14.2-rc2 + +* Sat Jul 21 2018 Igor Gnatenko - 4.14.2-0.rc1.2 +- Decompress DWARF compressed ELF sections + +* Sat Jul 14 2018 Fedora Release Engineering - 4.14.2-0.rc1.1.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Mon Jul 02 2018 Miro Hrončok - 4.14.2-0.rc1.1.1 +- Rebuilt for Python 3.7 + +* Fri Jun 29 2018 Panu Matilainen - 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 - 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 - 4.14.1-12 +- Invoke python2 explicitly from test-suite to unbreak build + +* Fri Jun 29 2018 Panu Matilainen - 4.14.1-11 +- Remove direct ldconfig calls, use compat macros instead + +* Fri Jun 15 2018 Miro Hrončok - 4.14.1-10.1 +- Rebuilt for Python 3.7 + +* Mon May 28 2018 Miro Hrončok - 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 - 4.14.1-9 +- find-debuginfo.sh: Handle application/x-pie-executable (#1581224) + +* Tue Feb 20 2018 Igor Gnatenko - 4.14.1-8 +- Split rpm-build-libs to one more subpackage rpm-sign-libs + +* Mon Feb 19 2018 Panu Matilainen - 4.14.1-7 +- Explicitly BuildRequire gcc and make + +* Fri Feb 09 2018 Igor Gnatenko - 4.14.1-6.1 +- Escape macros in %%changelog + +* Wed Jan 31 2018 Panu Matilainen - 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 - 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 - 4.14.1-4 +- Skip automatic Python byte-compilation if *.py files are not present + +* Thu Jan 25 2018 Florian Weimer - 4.14.1-3 +- Rebuild to work around gcc bug leading to librpm miscompilation (#1538648) + +* Thu Jan 18 2018 Panu Matilainen - 4.14.1-2 +- Avoid nuking the new python-macro-helper along with dep generators (#1535692) + +* Tue Jan 16 2018 Panu Matilainen - 4.14.1-1 +- Rebase to rpm 4.14.1 (http://rpm.org/wiki/Releases/4.14.1) + +* Tue Nov 07 2017 Igor Gnatenko - 4.14.0-5 +- Fix typo in Obsoletes + +* Mon Nov 06 2017 Igor Gnatenko - 4.14.0-4 +- Remove platform-python bits + +* Thu Oct 26 2017 Panu Matilainen - 4.14.0-3 +- Move selinux plugin dependency to selinux-policy in Fedora >= 28 (#1493267) + +* Thu Oct 12 2017 Panu Matilainen - 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 - 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 - 4.14.0-0.rc2.6 +- Cleanup spec file conditionals + +* Tue Oct 03 2017 Panu Matilainen - 4.14.0-0.rc2.5 +- Add build conditionals for zstd and lmdb support +- Enable zstd support + +* Tue Oct 03 2017 Panu Matilainen - 4.14.0-0.rc2.4 +- Spec cleanups + +* Fri Sep 29 2017 Panu Matilainen - 4.14.0-0.rc2.3 +- BuildRequire gnupg2 for the testsuite + +* Fri Sep 29 2017 Panu Matilainen - 4.14.0-0.rc2.2 +- ima-evm-utils only has a -devel package in fedora >= 28 + +* Thu Sep 28 2017 Panu Matilainen - 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 - 4.14.0-0.rc1.3 +- Fix Ftell() past 2GB on 32bit architectures (#1492587) + +* Thu Sep 07 2017 Panu Matilainen - 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 - 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 - 4.13.90-0.git14000.8 +- Band-aid for DB_VERSION_MISMATCH errors on glibc updates (#1465809) + +* Thu Aug 24 2017 Panu Matilainen - 4.13.90-0.git14000.7 +- Remove ugly kludges from posttrans script, BDB handles this now + +* Fri Aug 18 2017 Panu Matilainen - 4.13.90-0.git14000.6 +- Silence harmless but bogus error message on noarch packages (#1482144) + +* Thu Aug 17 2017 Miro Hrončok - 4.13.90-0.git14002.5 +- Build with platform_python + +* Mon Aug 14 2017 Miro Hrončok - 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 - 4.13.90-0.git14000.3 +- Disable macro argument quoting as a band-aid to #1481025 + +* Fri Aug 11 2017 Panu Matilainen - 4.13.90-0.git14000.2 +- Disable SHA256 header-only digest generation temporarily (#1480407) + +* Thu Aug 10 2017 Panu Matilainen - 4.13.90-0.git14000.1 +- Rebase to rpm 4.13.90 aka 4.14.0-alpha (#1474836) +