rpm/SPECS/rpm.spec

1349 lines
48 KiB
RPMSpec
Raw Permalink Normal View History

2020-04-07 09:15:25 +00:00
# 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
2024-07-09 14:06:34 +00:00
# build with fsverity support?
%if 0%{?rhel}
%bcond_with fsverity
%else
%bcond_without fsverity
%endif
2020-04-07 09:15:25 +00:00
# build with zstd support?
2020-04-28 09:41:50 +00:00
%bcond_without zstd
2024-07-09 14:06:34 +00:00
# build with ndb backend?
%bcond_without ndb
# build with sqlite support?
2021-11-09 09:55:55 +00:00
%bcond_without sqlite
2024-07-09 14:06:34 +00:00
# build with bdb_ro support?
%bcond_without bdb_ro
# build with sequoia crypto?
%bcond_without sequoia
2020-04-07 09:15:25 +00:00
%define rpmhome /usr/lib/rpm
2024-07-09 14:06:34 +00:00
%global rpmver 4.19.1.1
#global snapver rc1
%global baserelease 2
%global sover 10
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
%global srcver %{rpmver}%{?snapver:-%{snapver}}
%global srcdir %{?snapver:testing}%{!?snapver:rpm-%(echo %{rpmver} | cut -d'.' -f1-2).x}
2020-04-07 09:15:25 +00:00
Summary: The RPM package management system
Name: rpm
Version: %{rpmver}
2024-08-01 07:39:44 +00:00
Release: %{?snapver:0.%{snapver}.}%{baserelease}%{?dist}.alma.2
2020-04-07 09:15:25 +00:00
Url: http://www.rpm.org/
2024-07-09 14:06:34 +00:00
License: GPL-2.0-or-later
Source0: http://ftp.rpm.org/releases/%{srcdir}/rpm-%{srcver}.tar.bz2
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
Source10: rpmdb-rebuild.service
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
Source20: rpmdb-migrate.service
Source21: rpmdb_migrate
2020-04-07 09:15:25 +00:00
Requires: coreutils
Requires: popt%{_isa} >= 1.10.2.1
Requires: curl
2024-07-09 14:06:34 +00:00
Conflicts: systemd < 253.5-6
Obsoletes: python2-rpm < %{version}-%{release}
2020-04-07 09:15:25 +00:00
# XXX generally assumed to be installed but make it explicit as rpm
# is a bit special...
2024-07-09 14:06:34 +00:00
BuildRequires: redhat-rpm-config >= 94
BuildRequires: systemd-rpm-macros
2020-04-07 09:15:25 +00:00
BuildRequires: gcc make
2024-07-09 14:06:34 +00:00
BuildRequires: cmake >= 3.18
2020-04-07 09:15:25 +00:00
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
2024-07-09 14:06:34 +00:00
%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
2020-04-07 09:15:25 +00:00
%endif
2024-07-09 14:06:34 +00:00
2020-04-07 09:15:25 +00:00
# Couple of patches change makefiles so, require for now...
BuildRequires: automake libtool
%if %{with plugins}
BuildRequires: libselinux-devel
BuildRequires: dbus-devel
2024-07-09 14:06:34 +00:00
BuildRequires: audit-libs-devel
2020-04-07 09:15:25 +00:00
%endif
%if %{with libimaevm}
2024-07-09 14:06:34 +00:00
BuildRequires: ima-evm-utils-devel >= 1.0
2020-04-07 09:15:25 +00:00
%endif
2024-07-09 14:06:34 +00:00
%if %{with fsverity}
BuildRequires: fsverity-utils-devel
2020-04-07 09:15:25 +00:00
%endif
2024-07-09 14:06:34 +00:00
# For the rpmdb migration scriptlet (#2055033)
Requires(pre): coreutils
Requires(pre): findutils
Requires(pre): sed
%patchlist
# AlmaLinux specific patches
0001-Fix-Treat-x86_64_v2-as-x86_64-in-architecture-checks.patch
2024-07-09 14:06:34 +00:00
# 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:
# ...
# These are not yet upstream
rpm-4.7.1-geode-i686.patch
2020-04-07 09:15:25 +00:00
%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
2024-07-09 14:06:34 +00:00
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
2020-04-07 09:15:25 +00:00
%description libs
This package contains the RPM shared libraries.
%package build-libs
2024-07-09 14:06:34 +00:00
Summary: Libraries for building RPM packages
2020-04-07 09:15:25 +00:00
Requires: rpm-libs%{_isa} = %{version}-%{release}
%description build-libs
2024-07-09 14:06:34 +00:00
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.
2020-04-07 09:15:25 +00:00
%package devel
Summary: Development files for manipulating RPM packages
2024-07-09 14:06:34 +00:00
License: GPL-2.0-or-later OR LGPL-2.1-or-later
2020-04-07 09:15:25 +00:00
Requires: %{name} = %{version}-%{release}
Requires: %{name}-libs%{_isa} = %{version}-%{release}
Requires: %{name}-build-libs%{_isa} = %{version}-%{release}
2024-07-09 14:06:34 +00:00
Requires: %{name}-sign-libs%{_isa} = %{version}-%{release}
2020-04-07 09:15:25 +00:00
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
2024-07-09 14:06:34 +00:00
Requires: debugedit >= 0.3
2020-04-07 09:15:25 +00:00
Requires: pkgconfig >= 1:0.24
Requires: /usr/bin/gdb-add-index
2024-07-09 14:06:34 +00:00
# https://fedoraproject.org/wiki/Changes/Minimal_GDB_in_buildroot
Suggests: gdb-minimal
2020-04-07 09:15:25 +00:00
# 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
2024-07-09 14:06:34 +00:00
Requires: rpm-sign-libs%{_isa} = %{version}-%{release}
2020-04-07 09:15:25 +00:00
%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}
2024-07-09 14:06:34 +00:00
Requires(meta): selinux-policy-base
2020-04-07 09:15:25 +00:00
%description plugin-selinux
2024-07-09 14:06:34 +00:00
%{summary}.
2020-04-07 09:15:25 +00:00
%package plugin-syslog
Summary: Rpm plugin for syslog functionality
Requires: rpm-libs%{_isa} = %{version}-%{release}
%description plugin-syslog
2024-07-09 14:06:34 +00:00
%{summary}.
2020-04-07 09:15:25 +00:00
%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.
2024-07-09 14:06:34 +00:00
%if %{with libimaevm}
2020-04-07 09:15:25 +00:00
%package plugin-ima
Summary: Rpm plugin ima file signatures
Requires: rpm-libs%{_isa} = %{version}-%{release}
%description plugin-ima
2024-07-09 14:06:34 +00:00
%{summary}.
%endif
2020-04-07 09:15:25 +00:00
%package plugin-prioreset
Summary: Rpm plugin for resetting scriptlet priorities for SysV init
Requires: rpm-libs%{_isa} = %{version}-%{release}
%description plugin-prioreset
2024-07-09 14:06:34 +00:00
%{summary}.
2020-04-07 09:15:25 +00:00
Useful on legacy SysV init systems if you run rpm transactions with
nice/ionice priorities. Should not be used on systemd systems.
2024-07-09 14:06:34 +00:00
%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
2021-05-18 06:35:40 +00:00
%package plugin-fapolicyd
2024-07-09 14:06:34 +00:00
Summary: Rpm plugin for fapolicyd support
2021-05-18 06:35:40 +00:00
Requires: rpm-libs%{_isa} = %{version}-%{release}
2024-07-09 14:06:34 +00:00
Provides: fapolicyd-plugin = %{version}-%{release}
# fapolicyd-dnf-plugin currently at 1.0.4
Obsoletes: fapolicyd-dnf-plugin < 1.0.5
2021-05-18 06:35:40 +00:00
%description plugin-fapolicyd
%{summary}.
2024-07-09 14:06:34 +00:00
See https://people.redhat.com/sgrubb/fapolicyd/ for information about
the fapolicyd daemon.
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
%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.
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
# with plugins
2020-04-07 09:15:25 +00:00
%endif
2024-07-09 14:06:34 +00:00
%prep
%autosetup -n rpm-%{srcver} -p1
cat
2024-07-09 14:06:34 +00:00
2020-04-07 09:15:25 +00:00
%build
2024-07-09 14:06:34 +00:00
%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
2020-04-07 09:15:25 +00:00
%install
2024-07-09 14:06:34 +00:00
cd _build
%make_install
cd ..
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
mkdir -p $RPM_BUILD_ROOT%{_unitdir}
install -m 644 %{SOURCE10} $RPM_BUILD_ROOT/%{_unitdir}
install -m 644 %{SOURCE20} $RPM_BUILD_ROOT/%{_unitdir}
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
mkdir -p $RPM_BUILD_ROOT%{rpmhome}
install -m 755 %{SOURCE21} $RPM_BUILD_ROOT/%{rpmhome}
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
# Built-in replacement for systemd-sysusers(8)
install -m 755 scripts/sysusers.sh $RPM_BUILD_ROOT/%{rpmhome}
2020-04-07 09:15:25 +00:00
# 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
2024-07-09 14:06:34 +00:00
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/
2020-04-07 09:15:25 +00:00
done
2024-07-09 14:06:34 +00:00
# some packages invoke find-debuginfo directly, preserve compat for now
ln -s ../../bin/find-debuginfo $RPM_BUILD_ROOT/usr/lib/rpm/find-debuginfo.sh
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
%find_lang rpm
2020-04-07 09:15:25 +00:00
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*}
2024-07-09 14:06:34 +00:00
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
2020-04-07 09:15:25 +00:00
%license COPYING
2024-07-09 14:06:34 +00:00
%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
2020-04-07 09:15:25 +00:00
%dir %{_sysconfdir}/rpm
2024-07-09 14:06:34 +00:00
%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
2020-04-07 09:15:25 +00:00
%{_bindir}/rpm
%{_bindir}/rpm2archive
%{_bindir}/rpm2cpio
%{_bindir}/rpmdb
%{_bindir}/rpmkeys
%{_bindir}/rpmquery
%{_bindir}/rpmverify
2024-07-09 14:06:34 +00:00
%{_bindir}/rpmsort
2020-04-07 09:15:25 +00:00
%{_mandir}/man8/rpm.8*
%{_mandir}/man8/rpmdb.8*
%{_mandir}/man8/rpmkeys.8*
2024-07-09 14:06:34 +00:00
%{_mandir}/man8/rpm2archive.8*
2020-04-07 09:15:25 +00:00
%{_mandir}/man8/rpm2cpio.8*
%{_mandir}/man8/rpm-misc.8*
2024-07-09 14:06:34 +00:00
%{_mandir}/man8/rpmsort.8*
%{_mandir}/man8/rpm-plugins.8*
2020-04-07 09:15:25 +00:00
%attr(0755, root, root) %dir %{rpmhome}
%{rpmhome}/macros
%{rpmhome}/macros.d
2024-07-09 14:06:34 +00:00
%{rpmhome}/lua
2020-04-07 09:15:25 +00:00
%{rpmhome}/rpmpopt*
%{rpmhome}/rpmrc
%{rpmhome}/rpmdb_*
%{rpmhome}/rpm.daily
%{rpmhome}/rpm.log
%{rpmhome}/rpm.supp
%{rpmhome}/rpm2cpio.sh
%{rpmhome}/tgpg
%{rpmhome}/platform
2024-07-09 14:06:34 +00:00
%{rpmhome}/sysusers.sh
2020-04-07 09:15:25 +00:00
%dir %{rpmhome}/fileattrs
%files libs
2024-07-09 14:06:34 +00:00
%{_libdir}/librpmio.so.%{sover}
%{_libdir}/librpm.so.%{sover}
%{_libdir}/librpmio.so.%{sover}.*
%{_libdir}/librpm.so.%{sover}.*
2020-04-07 09:15:25 +00:00
%if %{with plugins}
%dir %{_libdir}/rpm-plugins
%files plugin-syslog
%{_libdir}/rpm-plugins/syslog.so
2024-07-09 14:06:34 +00:00
%{_mandir}/man8/rpm-plugin-syslog.8*
2020-04-07 09:15:25 +00:00
%files plugin-selinux
%{_libdir}/rpm-plugins/selinux.so
2024-07-09 14:06:34 +00:00
%{_mandir}/man8/rpm-plugin-selinux.8*
2020-04-07 09:15:25 +00:00
%files plugin-systemd-inhibit
%{_libdir}/rpm-plugins/systemd_inhibit.so
%{_mandir}/man8/rpm-plugin-systemd-inhibit.8*
2024-07-09 14:06:34 +00:00
%if %{with libimaevm}
2020-04-07 09:15:25 +00:00
%files plugin-ima
%{_libdir}/rpm-plugins/ima.so
2024-07-09 14:06:34 +00:00
%{_mandir}/man8/rpm-plugin-ima.8*
%endif
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
%if %{with fsverity}
%files plugin-fsverity
%{_libdir}/rpm-plugins/fsverity.so
%endif
2021-05-18 06:35:40 +00:00
%files plugin-fapolicyd
%{_libdir}/rpm-plugins/fapolicyd.so
%{_mandir}/man8/rpm-plugin-fapolicyd.8*
2024-07-09 14:06:34 +00:00
%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
2020-04-07 09:15:25 +00:00
%files build-libs
2024-07-09 14:06:34 +00:00
%{_libdir}/librpmbuild.so.%{sover}
%{_libdir}/librpmbuild.so.%{sover}.*
%files sign-libs
%{_libdir}/librpmsign.so.%{sover}
%{_libdir}/librpmsign.so.%{sover}.*
2020-04-07 09:15:25 +00:00
%files build
%{_bindir}/rpmbuild
%{_bindir}/gendiff
%{_bindir}/rpmspec
2024-07-09 14:06:34 +00:00
%{_bindir}/rpmlua
2020-04-07 09:15:25 +00:00
%{_mandir}/man1/gendiff.1*
%{_mandir}/man8/rpmbuild.8*
%{_mandir}/man8/rpmdeps.8*
%{_mandir}/man8/rpmspec.8*
2024-07-09 14:06:34 +00:00
%{_mandir}/man8/rpmlua.8*
2020-04-07 09:15:25 +00:00
%{rpmhome}/brp-*
%{rpmhome}/check-*
%{rpmhome}/find-lang.sh
%{rpmhome}/*provides*
%{rpmhome}/*requires*
%{rpmhome}/*deps*
%{rpmhome}/*.prov
%{rpmhome}/*.req
%{rpmhome}/fileattrs/*
2024-07-09 14:06:34 +00:00
%{rpmhome}/find-debuginfo.sh
%{rpmhome}/rpmuncompress
2020-04-07 09:15:25 +00:00
%files sign
%{_bindir}/rpmsign
%{_mandir}/man8/rpmsign.8*
%files -n python3-%{name}
2024-07-09 14:06:34 +00:00
%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
2020-04-07 09:15:25 +00:00
%files devel
%{_mandir}/man8/rpmgraph.8*
%{_bindir}/rpmgraph
%{_libdir}/librp*[a-z].so
2024-07-09 14:06:34 +00:00
%{_libdir}/pkgconfig/rpm.pc
%{_libdir}/cmake/rpm/
%{_includedir}/rpm/
2020-04-07 09:15:25 +00:00
%files cron
%{_sysconfdir}/cron.daily/rpm
%config(noreplace) %{_sysconfdir}/logrotate.d/rpm
%files apidocs
%license COPYING
2024-07-09 14:06:34 +00:00
%doc %{_defaultdocdir}/rpm/API/
2020-04-07 09:15:25 +00:00
%changelog
2024-08-01 07:39:44 +00:00
* Thu Aug 01 2024 Eduard Abdullin <eabdullin@almalinux.org> - 4.19.1.1-2.alma.2
- Update patch to detect ExclusiveArch
* Tue Jul 09 2024 Eduard Abdullin <eabdullin@almalinux.org> - 4.19.1.1-2.alma.1
- Fix: Treat x86_64_v2 as x86_64 in architecture checks
2024-07-09 14:06:34 +00:00
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 4.19.1.1-2
- Bump release for June 2024 mass rebuild
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Feb 07 2024 Michal Domonkos <mdomonko@redhat.com> - 4.19.1.1-1
- Update to 4.19.1.1 (https://rpm.org/wiki/Releases/4.19.1.1)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Dec 15 2023 Panu Matilainen <pmatilai@redhat.com> - 4.19.1-2
- Fix bogus warnings about runaway Lua scripts (#2254463)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Dec 12 2023 Michal Domonkos <mdomonko@redhat.com> - 4.19.1-1
- Update to 4.19.1 (https://rpm.org/wiki/Releases/4.19.1)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Nov 30 2023 Stephen Gallagher <sgallagh@redhat.com> - 4.19.0-3
- Fix issues with %%getncpus sometimes returning 0 on i686 systems
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Nov 13 2023 Panu Matilainen <pmatilai@redhat.com> - 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Sep 19 2023 Michal Domonkos <mdomonko@redhat.com> - 4.19.0-1
- Update to 4.19.0
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Sep 04 2023 Michal Domonkos <mdomonko@redhat.com> - 4.18.99-1
- Update to 4.19 rc1
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Aug 22 2023 Panu Matilainen <pmatilai@redhat.com> - 4.18.92-3
- Fix regression on uncompressing 7zip compressed sources (#2229984)
- Fix a conflict with pre-existing scl-utils %_root_prefix macro (#2233454)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Aug 21 2023 Panu Matilainen <pmatilai@redhat.com> - 4.18.92-2
- Behave more consistently when target %%optflags are not defined (#2231727)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Aug 02 2023 Michal Domonkos <mdomonko@redhat.com> - 4.18.92-1
- Update to 4.19 beta
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Jul 25 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 4.18.91-9
- Drop fsverity plugin from RHEL builds
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.18.91-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Jun 28 2023 Panu Matilainen <pmatilai@redhat.com> - 4.18.91-7
- Rebuilt for Python 3.12
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Jun 28 2023 Panu Matilainen <pmatilai@redhat.com> - 4.18.91-6
- Fix a spec parsing error handling regression
- Fix a per-file plugin hook regression
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Jun 27 2023 Panu Matilainen <pmatilai@redhat.com> - 4.18.91-5
- Fix potential crash with multiple in-process sqlite uses
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Jun 26 2023 Python Maint <python-maint@redhat.com> - 4.18.91-4
- Rebuilt for Python 3.12
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Jun 21 2023 Panu Matilainen <pmatilai@redhat.com> - 4.18.91-3
- Enable user/group provide generation
- Add a conflict for systemd versions carrying their own
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 4.18.91-2
- Rebuilt for Python 3.12
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jun 09 2023 Michal Domonkos <mdomonko@redhat.com> - 4.18.91-1
- Update to 4.19 alpha2
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Jun 08 2023 Peter Robinson <pbrobinson@fedoraproject.org> - 4.18.90-10
- Rebuild for ima-evm-utils 1.5 soname bump
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon May 29 2023 Panu Matilainen <pmatilai@redhat.com> - 4.18.90-9
- Revert %%_smp_build_ncpus macro changing to parametric (#2210347)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu May 25 2023 Florian Festi <ffesti@redhat.com> - 4.18.90-8
- Set %_sharedstatedir to /var/lib (#2209989)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu May 25 2023 Florian Festi <ffesti@redhat.com> - 4.18.90-7
- Remove compat links for old so name of the libraries
- Remove compat forward ports for libdnf
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon May 22 2023 Florian Festi <ffesti@redhat.com> - 4.18.90-6
- Fix undefined symbols from plugins
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed May 17 2023 Florian Festi <ffesti@redhat.com> - 4.18.90-5
- Use mkdir -p for creating SPECPARTS dir
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed May 17 2023 Florian Festi <ffesti@redhat.com> - 4.18.90-4
- Enable large file support on 32-bit systems again
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon May 15 2023 Florian Festi <ffesti@redhat.com> - 4.18.90-3
- Fix libbzip2 detection
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu May 11 2023 Florian Festi <ffesti@redhat.com> - 4.18.90-2
- Add compat links for building dnf and friends
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu May 04 2023 Florian Festi <ffesti@redhat.com> - 4.18.90-1
- Update to 4.19 alpha
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Apr 25 2023 Miro Hrončok <mhroncok@redhat.com> - 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Apr 20 2023 Panu Matilainen <pmatilai@redhat.com> - 4.18.1-2
- Backport improved crypto error messages from upstream
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Mar 15 2023 Michal Domonkos <mdomonko@redhat.com> - 4.18.1-1
- Rebase to rpm 4.18.1 (https://rpm.org/wiki/Releases/4.18.1)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Feb 16 2023 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-11
- Disable debuginfod lookups in rpmbuild scripts
- Exclude kernel modules from ELF dependency generation
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.18.0-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Jan 09 2023 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-9
- Generate Python egg-info from automake (#2135561)
- Drop setup.py-based Python build (#2135719)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Dec 07 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-8
- Fix hang-up on failed key import (related to #2149762)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Nov 24 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-7
- Require rpm-sequoia >= 1.2.0 for V3 signature support, re-enable (#2141686)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Nov 10 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-6
- Revert back to internal OpenPGP parser for V3 signature support (#2141686)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Nov 01 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-5
- Switch to Sequoia crypto (https://fedoraproject.org/wiki/Changes/RpmSequoia)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Oct 14 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-4
- Add an option for building with Sequoia crypto
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Oct 05 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-3
- Break ancient rpm <-> rpm-libs ordering loop
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Oct 03 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-2
- Drop the temporary build-dependency on pandoc before it grows a beard
- Start utilizing %%patchlist, finally
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Sep 21 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-1
- Rebase to rpm 4.18.0 (https://rpm.org/wiki/Releases/4.18.0)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Sep 14 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-0.rc1.4
- Fix a largish directory walk related memory leak in transactions
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Sep 07 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-0.rc1.3
- Fix buffer overrun on rpmdb queries involving ^ in version
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Sep 07 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-0.rc1.2
- Break selinux-policy <-> rpm-plugin-selinux ordering loop (#1851266)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Sep 02 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-0.rc1.1
- Rebase to 4.18.0-rc1 (https://rpm.org/wiki/Releases/4.18.0)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Aug 02 2022 Michal Domonkos <mdomonko@redhat.com> - 4.18.0-0.beta1.4
- Revert %%autosetup -S git patch due to another regression
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.18.0-0.beta1.3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Jul 11 2022 Michal Domonkos <mdomonko@redhat.com> - 4.18.0-0.beta1.2
- Fix check-buildroot regression wrt bundled SRPM (#2104150)
- Fix %%autosetup -S git regression wrt default git branch
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Jun 28 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-0.beta1.1
- Rebase to 4.18.0-beta1 (https://rpm.org/wiki/Releases/4.18.0)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 4.18.0-0.alpha2.2
- Rebuilt for Python 3.11
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon May 23 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-0.alpha2.1
- Rebase to 4.18.0-0.alpha2
- Prevent uncontrolled sqlite WAL growth during large transactions
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Apr 28 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-0.alpha1.6
- Fix rubygem unpack regression, causing rubygem builds to fail
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Apr 27 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-0.alpha1.5
- Fix verbose source uncompress regression (#2079127)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Apr 26 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-0.alpha1.4
- Further dynamic buildrequires cli switch regression fixes (#2078744)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Apr 26 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-0.alpha1.3
- Fix rpmbuild -ba --nodeps regression wrt dynamic buildrequires (#2078744)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Apr 26 2022 Panu Matilainen <pmatilai@redhat.com> - 4.18.0-0.alpha1.2
- Fix rpmbuild -br not producing a src.rpm regression (#2078744)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Apr 25 2022 Panu Matilainen <pmatilai@redhat.com> - 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Mar 21 2022 Neal Gompa <ngompa@fedoraproject.org> - 4.17.0-10
- Create rpmdb directory symlink in posttrans by default (#2066427)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Feb 16 2022 Neal Gompa <ngompa@fedoraproject.org> - 4.17.0-9
- Add dependencies for the rpmdb migration scriptlet (#2055033)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Feb 02 2022 Panu Matilainen <pmatilai@redhat.com> - 4.17.0-8
- Really fix spurious %%transfiletriggerpostun execution (#2023311, #2048168)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Jan 26 2022 Neal Gompa <ngompa@fedoraproject.org> - 4.17.0-7
- Migrate rpmdb to /usr/lib/sysimage/rpm (#2042099)
https://fedoraproject.org/wiki/Changes/RelocateRPMToUsr
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.17.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Jan 20 2022 Björn Esser <besser82@fedoraproject.org> - 4.17.0-5
- Rebuild (ima-evm-utils)
- Use baserelease for rpm release tag to make rpmdev-bumpspec work
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jan 14 2022 Panu Matilainen <pmatilai@redhat.com> - 4.17.0-4
- Fix spurious %%transfiletriggerpostun execution (#2023311)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jan 14 2022 Panu Matilainen <pmatilai@redhat.com> - 4.17.0-3
- Fix fapolicyd plugin dependencies to replace fapolicyd-dnf-plugin (#2007639)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Nov 08 2021 Peter Robinson <pbrobinson@fedoraproject.org> - 4.17.0-2
- Rebuils for ima-evm-utils 1.4 soname bump
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 4.17.0-1.1
- Rebuilt with OpenSSL 3.0.0
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Sep 03 2021 Panu Matilainen <pmatilai@redhat.com> - 4.17.0-1
- Rebase to 4.17.0 final (https://rpm.org/wiki/Releases/4.17.0)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Aug 19 2021 Panu Matilainen <pmatilai@redhat.com> - 4.17.0-0.rc1.1
- Rebase to 4.17.0 rc1
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.17.0-0.beta1.0.2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Jun 22 2021 Panu Matilainen <pmatilai@redhat.com> - 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 4.16.90-0.git15395.8.1
- Rebuilt for Python 3.10
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon May 17 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.90-0.git15395.8
- Switch to external debugedit
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon May 17 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.90-0.git15395.7
- Handle different find-debuginfo.sh location with external debugedit
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri May 07 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.90-0.git15395.6
- Fix regression causing a crash on Lua state reset (#1958095)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Apr 29 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.90-0.git15395.5
- Proper fix for comments affecting macro file parsing (#1953910)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Apr 27 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.90-0.git15395.4
- Enable fapolicyd plugin build
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Apr 27 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.90-0.git15395.3
- Temporarily revert macro file loading fix due to regression #1953910
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Apr 26 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.90-0.git15395.2
- Add a bcond to build with external debugedit
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Apr 26 2021 Panu Matilainen <pmatilai@redhat.com> - 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Feb 03 2021 Panu Matilainen <pmatilai@redhat.com> - 4.16.1.2-6
- Drop support for read-write Berkeley DB format (#1787311)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jan 22 2021 Mark Wielaard <mjw@fedoraproject.org> - 4.16.1.2-4
- Fix edit_attributes_str_comp_dir in Patch916 (#1919107)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Jan 19 2021 Jeff Law <law@redhat.com> - 4.16.1.2-3
- Fix typo in test for F33 or newer
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Jan 19 2021 Mark Wielaard <mjw@fedoraproject.org> - 4.16.1.2-2
- Add debugedit DWARF5 support
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Nov 30 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-5
- Only disable test-suite where it's actually broken
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Sun Jul 26 2020 Peter Robinson <pbrobinson@fedoraproject.org> - 4.16.0-0.beta3.2.1
- rebuild for ima-evm-utils 1.3
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Jun 29 2020 Tom Callaway <spot@fedoraproject.org> - 4.16.0-0.beta3.2
- rebuild for lua 5.4
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Jun 24 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta3.1
- Rebase to beta3
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Jun 8 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta1.3
- Unbreak metainfo() provide generation
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Jun 1 2020 Panu Matilainen <pmatilai@redhat.com> - 4.16.0-0.beta1.1
- Rebase to rpm 4.16.0-beta1
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 4.15.90-0.git14971.12.1
- Rebuilt for Python 3.9
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue May 12 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.12
- Fix segfault when trying to use unknown database backend
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon May 4 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.10
- Handle rpmdb-rebuild service enablement for upgrades
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Apr 22 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.8
- Fix regression(s) on build dependency resolution
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Apr 22 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.7
- Add rpmdb-rebuild systemd service
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Apr 17 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.6
- Warn on undefined macros in buildtree setup macros (#1820349)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Apr 09 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.5
- Fix regression causing all ELF files classified as OCaml
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Apr 06 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.4
- Fix invalid path passed to parametric macro generators
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Apr 02 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.90-0.git14971.3
- Fix db lock files not getting packaged
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Jan 9 2020 Panu Matilainen <pmatilai@redhat.com> - 4.15.1-2
- Obsolete python2-rpm to fix upgrade path (#1775113)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Nov 14 2019 Adam Williamson <awilliam@redhat.com> - 4.15.0-7
- Really revert armv8 detection improvements (patch was not applied in -6)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Oct 23 2019 Peter Robinson <pbrobinson@fedoraproject.org> 4.15.0-6
- Revert armv8 detection improvements
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Oct 21 2019 Stephen Gallagher <sgallagh@redhat.com> - 4.15.0-5
- Revert aliasing arm64 to aarch64
- Resolves: rhbz#1763831
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Oct 18 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-4
- Revert problematic sub-variants of armv8 (#1691430)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Oct 17 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-3
- Drop python2 bindings for good (#1761211)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Oct 15 2019 Adam Williamson <awilliam@redhat.com> - 4.15.0-2
- Revert systemd inhibit plugin's calling of dbus_shutdown (#1750575)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Aug 28 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.rc1.1
- Update to 4.15.0-rc1
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Aug 27 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.6
- Fix some issues in the thread cap logic
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Aug 26 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.5
- Re-enable test-suite, temporarily disabled during alpha troubleshooting
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Aug 23 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.3
- Restore strict order of build scriptlet stdout/stderr output
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 4.15.0-0.beta.2.3
- Rebuilt for Python 3.8
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Jul 31 2019 Miro Hrončok <mhroncok@redhat.com> - 4.15.0-0.beta.2.2
- Rebuilt for libimaevm.so.1
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Jun 27 2019 Panu Matilainen <pmatilai@redhat.com> - 4.15.0-0.beta.1
- Rebase to 4.15.0 beta
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Jun 20 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.18
- Fix excessive TLS use, part II (#1722181)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Jun 20 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.17
- Fix excessive TLS use (#1722181)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Jun 10 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.90-0.git14653.1
- Update to 4.15.0 alpha
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jun 07 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2.1-11
- Use py2/3 macros for building and installing the bindings
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue May 21 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-10
- Support build-id generation from compressed ELF files (#1650072)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri May 03 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2.1-9
- Suggest gdb-minimal
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Apr 25 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-8
- Replace deprecated __global_ldflags uses with build_ldflags macro
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Apr 11 2019 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-7
- Fix excessive reference counting on faked string .decode()
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Dec 19 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-4
- Backport the new modularity label tag (#1650286)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Oct 24 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2.1-2
- Selinux plugin requires a base policy to work (#1641631)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Oct 17 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2-9
- Push name/epoch/version/release macro before invoking depgens
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Oct 16 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2-8
- Resurrect long since broken Lua library path
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Wed Aug 08 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.2-0.rc2.1
- Update to rpm 4.14.2-rc2
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Sat Jul 21 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.2-0.rc1.2
- Decompress DWARF compressed ELF sections
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 4.14.2-0.rc1.1.1
- Rebuilt for Python 3.7
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jun 29 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-12
- Invoke python2 explicitly from test-suite to unbreak build
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jun 29 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-11
- Remove direct ldconfig calls, use compat macros instead
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 4.14.1-10.1
- Rebuilt for Python 3.7
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue May 22 2018 Mark Wielaard <mjw@fedoraproject.org> - 4.14.1-9
- find-debuginfo.sh: Handle application/x-pie-executable (#1581224)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Feb 20 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.1-8
- Split rpm-build-libs to one more subpackage rpm-sign-libs
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Feb 19 2018 Panu Matilainen <pmatilai@redhat.com> - 4.14.1-7
- Explicitly BuildRequire gcc and make
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.1-6.1
- Escape macros in %%changelog
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Jan 30 2018 Petr Viktorin <pviktori@redhat.com> - 4.14.1-4
- Skip automatic Python byte-compilation if *.py files are not present
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Jan 25 2018 Florian Weimer <fweimer@redhat.com> - 4.14.1-3
- Rebuild to work around gcc bug leading to librpm miscompilation (#1538648)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.0-5
- Fix typo in Obsoletes
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Nov 06 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.14.0-4
- Remove platform-python bits
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Oct 26 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-3
- Move selinux plugin dependency to selinux-policy in Fedora >= 28 (#1493267)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Oct 10 2017 Troy Dawson <tdawson@redhat.com> - 4.14.0-0.rc2.6
- Cleanup spec file conditionals
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Tue Oct 03 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc2.4
- Spec cleanups
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Sep 29 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc2.3
- BuildRequire gnupg2 for the testsuite
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Mon Sep 18 2017 Panu Matilainen <pmatilai@redhat.com> - 4.14.0-0.rc1.3
- Fix Ftell() past 2GB on 32bit architectures (#1492587)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Thu Aug 17 2017 Miro Hrončok <mhroncok@redhat.com> - 4.13.90-0.git14002.5
- Build with platform_python
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* Fri Aug 11 2017 Panu Matilainen <pmatilai@redhat.com> - 4.13.90-0.git14000.2
- Disable SHA256 header-only digest generation temporarily (#1480407)
2020-04-07 09:15:25 +00:00
2024-07-09 14:06:34 +00:00
* 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)