Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 2094394 Details for
Bug 2368742
Review Request: mariadb11.8 - rebase from 10.11 to 11.8
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh109 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
Migrated Products
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
The .spec file difference from Copr build 9092323 to 9183437
spec-from-9092323-to-9183437.diff (text/plain), 37.04 KB, created by
Fedora Review Service
on 2025-06-19 13:19:54 UTC
(
hide
)
Description:
The .spec file difference from Copr build 9092323 to 9183437
Filename:
MIME Type:
Creator:
Fedora Review Service
Created:
2025-06-19 13:19:54 UTC
Size:
37.04 KB
patch
obsolete
>--- https://copr.fedorainfracloud.org/coprs/build/9092323 >+++ https://copr.fedorainfracloud.org/coprs/build/9183437 >@@ -1,13 +1,13 @@ > # Plain package name for cases, where %%{name} differs (e.g. for versioned packages) > %global majorname mariadb >-%define package_version 11.8.1 >-%define majorversion %(echo %{package_version} | cut -d'.' -f1-2 ) >+%global package_version 11.8.2 >+%global majorversion %(echo %{package_version} | cut -d'.' -f1-2 ) > > # Set if this package will be the default one in distribution > %{!?mariadb_default:%global mariadb_default 0} > > # Regression tests may take a long time (many cores recommended), skip them by >-%{!?runselftest:%global runselftest 1} >+%{!?runselftest:%global runselftest 0} > > # Set this to 1 to see which tests fail, but 0 on production ready build > %global ignore_testsuite_result 0 >@@ -15,21 +15,13 @@ > # The last version on which the full testsuite has been run > # In case of further rebuilds of that version, don't require full testsuite to be run > # run only "main" suite >-%global last_tested_version 10.11.11 >+%global last_tested_version 10.11.13 > # Set to 1 to force run the testsuite even if it was already tested in current version > %global force_run_testsuite 0 > > # Filtering: https://docs.fedoraproject.org/en-US/packaging-guidelines/AutoProvidesAndRequiresFiltering/ > %global __requires_exclude ^perl\\((hostnames|lib::mtr|lib::v1|mtr_|My::|wsrep) > %global __provides_exclude_from ^(%{_datadir}/(mysql|mysql-test)/.*|%{_libdir}/%{majorname}/plugin/.*\\.so)$ >- >-# Temporary workaround to fix the "internal compiler error" described in https://bugzilla.redhat.com/show_bug.cgi?id=2239498 >-# TODO: Remove when the issue is resolved >-%ifarch i686 >-%global _lto_cflags %{nil} >-%endif >- >- > > # For some use cases we do not need some parts of the package. Set to "...with" to exclude > %bcond_with clibrary >@@ -39,10 +31,17 @@ > %bcond_without client > %bcond_without common > %bcond_without errmsg >+%bcond_without backup >+ >+# Package 'galera' (which is a run-time requirement for 'mariadb-server-galera') is no longer built for i686 architecture in Fedora >+%ifarch %{ix86} >+%bcond_with galera >+%else > %bcond_without galera >-%bcond_without backup >+%endif >+ > %if !0%{?flatpak} >-%bcond_with test >+%bcond_without test > %endif > > # Page compression algorithms for various storage engines >@@ -69,6 +68,7 @@ > %bcond_without pam > %endif > %if 0%{?fedora} >+# MariaDB upstream packages this as a separate subpackage > %bcond_without hashicorp > %else > %bcond_with hashicorp >@@ -112,20 +112,21 @@ > %endif > > >+%global selinuxtype targeted > > # MariaDB 10.0 and later requires pcre >= 10.34, otherwise we need to use > # the bundled library, since the package cannot be build with older version > # https://mariadb.com/kb/en/pcre/ >-%bcond bundled_pcre 1 >+%bcond bundled_pcre 0 > %if %{with bundled_pcre} >-%global pcre_bundled_version 10.44 >+%global pcre_bundled_version 10.45 > %endif > > # To avoid issues with a breaking change in FMT library, bundle it on systems where FMT wasn't fixed yet > # See mariadb-libfmt.patch for detailed description. > %bcond bundled_fmt 1 > %if %{with bundled_fmt} >-%global fmt_bundled_version 11.0.2 >+%global fmt_bundled_version 11.1.4 > %endif > > # Include systemd files >@@ -205,27 +206,24 @@ > > # Upstream said: "Generally MariaDB has more allows to allow for xtradb sst mechanism". > # https://jira.mariadb.org/browse/MDEV-12646 >-Source72: mariadb-server-galera.te >+Source72: mariadb-server-galera.cil > > # Script to support encrypted rsync transfers when SST is required between nodes. > # https://github.com/dciabrin/wsrep_sst_rsync_tunnel/blob/master/wsrep_sst_rsync_tunnel > Source73: wsrep_sst_rsync_tunnel > >-# Patch4: Red Hat distributions specific logrotate fix >-# it would be big unexpected change, if we start shipping it now. Better wait for MariaDB 10.2 >+# Patch4: Use the correct log file pathname for Red Hat installations > Patch4: %{majorname}-logrotate.patch > # Patch7: add to the CMake file all files where we want macros to be expanded > Patch7: %{majorname}-scripts.patch > # Patch9: pre-configure to comply with guidelines > Patch9: %{majorname}-ownsetup.patch >-# Patch12: fixes of RocksDB for GCC 13 >-Patch12: rocksdb-6.8-gcc13.patch > # Patch13: bundle the FMT library > Patch13: %{majorname}-libfmt.patch > # Patch14: make MTR port calculation reasonably predictable > Patch14: %{majorname}-mtr.patch > >-Patch15: %{majorname}-pcre.patch >+Patch16: %{majorname}-federated.patch > > # This macro is used for package/sub-package names in the entire specfile > %if %?mariadb_default >@@ -379,11 +377,14 @@ > %endif > > %package -n %{pkgname}-client-utils >+BuildArch: noarch > Summary: Non-essential client utilities for MariaDB/MySQL applications >-Requires: %{pkgname}%{?_isa} = %{sameevr} >+Requires: %{pkgname} = %{sameevr} > Requires: perl(DBI) > >-%virtual_conflicts_and_provides client-utils >+# Only conflicts, provides would add %%{_isa} provides for noarch, >+# which is not wanted >+%conflict_with_other_streams client-utils > > %description -n %{pkgname}-client-utils > This package contains all non-essential client utilities and scripts for >@@ -480,10 +481,11 @@ > Requires: %{pkgname}-common = %{sameevr} > Requires: %{pkgname}-server%{?_isa} = %{sameevr} > Requires: galera >= 26.4.3 >-BuildRequires: selinux-policy-devel >-Requires(post): (libselinux-utils if selinux-policy-targeted) >-Requires(post): (policycoreutils if selinux-policy-targeted) >-Requires(post): (policycoreutils-python-utils if selinux-policy-targeted) >+BuildRequires: selinux-policy-%{selinuxtype} >+Requires: selinux-policy-%{selinuxtype} >+Requires(post): (libselinux-utils if selinux-policy-%{selinuxtype}) >+Requires(post): (policycoreutils if selinux-policy-%{selinuxtype}) >+Requires(post): (policycoreutils-python-utils if selinux-policy-%{selinuxtype}) > # wsrep requirements > Requires: lsof > # Default wsrep_sst_method >@@ -503,10 +505,14 @@ > %package -n %{pkgname}-server > Summary: The MariaDB server and related files > >+%if %{with hashicorp} >+BuildRequires: curl-devel >+%endif >+ > Requires: %{pkgname}%{?_isa} = %{sameevr} > Requires: %{pkgname}-common = %{sameevr} > Requires: %{pkgname}-errmsg = %{sameevr} >-Recommends: %{pkgname}-server-utils%{?_isa} = %{sameevr} >+Recommends: %{pkgname}-server-utils = %{sameevr} > Recommends: %{pkgname}-backup%{?_isa} = %{sameevr} > %{?with_cracklib:Recommends: %{pkgname}-cracklib-password-check%{?_isa} = %{sameevr}} > %{?with_gssapi:Recommends: %{pkgname}-gssapi-server%{?_isa} = %{sameevr}} >@@ -534,7 +540,7 @@ > # For cases, where we want to fix a SELinux issues in MariaDB sooner than patched selinux-policy-targeted package is released > %if %{with require_mysql_selinux} > # The *-selinux package should only be required on SELinux enabled systems. Therefore the following rich dependency syntax should be used: >-Requires: (mysql-selinux >= 1.0.10 if selinux-policy-targeted) >+Requires: (mysql-selinux >= 1.0.10 if selinux-policy-%{selinuxtype}) > # This ensures that the *-selinux package and all its dependencies are not pulled into containers and other systems that do not use SELinux. > # https://fedoraproject.org/wiki/SELinux/IndependentPolicy#Adding_dependency_to_the_spec_file_of_corresponding_package > %endif >@@ -546,6 +552,8 @@ > %{?systemd_requires} > # RHBZ#1496131; use 'iproute' instead of 'net-tools' > Requires: iproute >+# The 'wsrep_sst_common' and 'wsrep_sst_rsync_tunnel' calls 'which' utility >+%{?with_galera:Requires: which} > > %{?with_conflicts_mysql:Conflicts: mysql-server} > %{?with_conflicts_community_mysql:Conflicts: community-mysql-server} >@@ -618,6 +626,15 @@ > %package -n %{pkgname}-rocksdb-engine > Summary: The RocksDB storage engine for MariaDB > Requires: %{pkgname}-server%{?_isa} = %{sameevr} >+# The version of rocksdb provided is not specified because the mariadb >+# upstream provides it as a submodule, which is linked in their github >+# https://github.com/MariaDB/server/ inside storage/rocksdb >+# the commits linked here don't match the releases made by the rocksdb >+# upstream: https://github.com/facebook/rocksdb/ >+# therefore the release specified here would be rough at best. >+# A rough release can also be found inside the source tarball >+# inside the storage/rocksdb/rocksdb/include/rocksdb/version.h file >+# but it does not match the real release every time > Provides: bundled(rocksdb) > > %virtual_conflicts_and_provides rocksdb-engine >@@ -635,9 +652,9 @@ > Requires: cracklib-dicts > > BuildRequires: selinux-policy-devel >-Requires(post): (libselinux-utils if selinux-policy-targeted) >-Requires(post): (policycoreutils if selinux-policy-targeted) >-Requires(post): (policycoreutils-python-utils if selinux-policy-targeted) >+Requires(post): (libselinux-utils if selinux-policy-%{selinuxtype}) >+Requires(post): (policycoreutils if selinux-policy-%{selinuxtype}) >+Requires(post): (policycoreutils-python-utils if selinux-policy-%{selinuxtype}) > > %virtual_conflicts_and_provides cracklib-password-check > >@@ -682,10 +699,11 @@ > > > %if %{with sphinx} >+# MariaDB upstream packages this inside the client sub-package > %package -n %{pkgname}-sphinx-engine > Summary: The Sphinx storage engine for MariaDB > Requires: %{pkgname}-server%{?_isa} = %{sameevr} >-BuildRequires: sphinx libsphinxclient libsphinxclient-devel >+BuildRequires: sphinx libsphinxclient-devel > Requires: sphinx libsphinxclient > > %virtual_conflicts_and_provides sphinx-engine >@@ -712,12 +730,15 @@ > > > %package -n %{pkgname}-server-utils >+BuildArch: noarch > Summary: Non-essential server utilities for MariaDB/MySQL applications >-Requires: %{pkgname}-server%{?_isa} = %{sameevr} >+Requires: %{pkgname}-server = %{sameevr} > # mysqlhotcopy needs DBI/DBD support > Requires: perl(DBI) perl(DBD::MariaDB) > >-%virtual_conflicts_and_provides server-utils >+# Only conflicts, provides would add %%{_isa} provides for noarch, >+# which is not wanted >+%conflict_with_other_streams server-utils > > %{?with_conflicts_mysql:Conflicts: mysql-server} > %{?with_conflicts_community_mysql:Conflicts: community-mysql-server} >@@ -836,18 +857,18 @@ > rm -r debian > > %if %{with bundled_fmt} >-mkdir -p redhat-linux-build/extra/libfmt/ >-mv %{SOURCE1} redhat-linux-build/extra/libfmt/ >+mkdir -p %{_vpath_builddir}/extra/libfmt/ >+mv %{SOURCE1} %{_vpath_builddir}/extra/libfmt/ > %endif > %if %{with bundled_pcre} >-mkdir -p redhat-linux-build/extra/pcre2/ >-mv %{SOURCE4} redhat-linux-build/extra/pcre2/ >+mkdir -p %{_vpath_builddir}/extra/pcre2/ >+mv %{SOURCE4} %{_vpath_builddir}/extra/pcre2/ > %endif > > # Remove JAR files that upstream puts into tarball > find . -name "*.jar" -type f -exec rm --verbose -f {} \; > # Remove testsuite for the mariadb-connector-c >-rm -rf libmariadb/unittest >+rm -r libmariadb/unittest > %if %{without rocksdb} > rm -r storage/rocksdb/ > %endif >@@ -856,18 +877,12 @@ > %patch -P4 -p1 > %patch -P7 -p1 > %patch -P9 -p1 >-%if %{with rocksdb} >-%patch -P12 -p1 -d storage/rocksdb/rocksdb/ >-%endif > %if %{with bundled_fmt} > %patch -P13 -p1 > %endif > > %patch -P14 -p1 >- >-%if %{with bundled_pcre} >-%patch -P15 -p1 >-%endif >+%patch -P16 -p1 > > # generate a list of tests that fail, but are not disabled by upstream > cat %{SOURCE50} | tee -a mysql-test/unstable-tests >@@ -890,14 +905,13 @@ > > # Create a sysusers.d config file > # We no longer enforce the hardcoded UID/GID 27. >-cat > support-files/%{name}.sysusers.conf << EOF >+cat > support-files/%{majorname}.sysusers.conf << EOF > u mysql - 'MariaDB and MySQL Server' %{dbdatadir} - > EOF > > %if %{with galera} > # prepare selinux policy >-mkdir selinux >-sed 's/mariadb-server-galera/%{majorname}-server-galera/' %{SOURCE72} > selinux/%{majorname}-server-galera.te >+sed 's/mariadb-server-galera/%{majorname}-server-galera/' %{SOURCE72} > %{majorname}-server-galera.cil > %endif > > >@@ -915,7 +929,7 @@ > pcre_system_version=`pkgconf /usr/%{_lib}/pkgconfig/libpcre2-*.pc --modversion 2>/dev/null | head -n 1` > > if [ "$pcre_system_version" != "$pcre_version" ] ; then >- echo -e "\n Warning: Error: Bundled PCRE version is not correct. \n\tSystem version number: $pcre_system_version \n\tUpstream version number: $pcre_version\n" >+ echo -e "\n Warning: Error: System version of PCRE differs from the version used by the MariaDB upstream. \n\tSystem version number: $pcre_system_version \n\tUpstream version number: $pcre_version\n" > fi > %endif > >@@ -931,6 +945,27 @@ > exit 1 > fi > %endif >+ >+ >+# Adjust the compliation flags: >+# First initialize the distribution default values >+%{set_build_flags} >+# Add custom tweaks >+CFLAGS="$CFLAGS -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE" >+# Force the 'PIC' mode so that we can build libmysqld.so >+CFLAGS="$CFLAGS -fPIC" >+ >+# When making a debug build, remove all optimizations >+%if %{with debug} >+# -D_FORTIFY_SOURCE requires optimizations enabled. Disable the fortify. >+%undefine _fortify_level >+CFLAGS=`echo "$CFLAGS" | sed -r 's/-O[0123]//'` >+CFLAGS="$CFLAGS -O0 -g" >+%endif >+ >+# Apply the updated values >+CXXFLAGS="$CFLAGS"; CPPFLAGS="$CFLAGS"; export CFLAGS CXXFLAGS CPPFLAGS >+ > > # The INSTALL_xxx macros have to be specified relative to CMAKE_INSTALL_PREFIX > # so we can't use %%{_datadir} and so forth here. >@@ -961,8 +996,10 @@ > -DINSTALL_SCRIPTDIR=bin \ > -DINSTALL_SUPPORTFILESDIR=share/%{majorname} \ > -DMYSQL_DATADIR="%{dbdatadir}" \ >- -DMYSQL_UNIX_ADDR="/var/lib/mysql/mysql.sock" \ >- -DTMPDIR=/var/tmp \ >+ -DMYSQL_UNIX_ADDR="%{dbdatadir}/mysql.sock" \ >+ -DTMPDIR=%{_localstatedir}/tmp \ >+ -DINSTALL_SYSTEMD_TMPFILESDIR="" \ >+ -DINSTALL_SYSTEMD_SYSUSERSDIR="" \ > -DGRN_DATA_DIR=share/%{majorname}-server/groonga \ > -DGROONGA_NORMALIZER_MYSQL_PROJECT_NAME=%{majorname}-server/groonga-normalizer-mysql \ > -DENABLED_LOCAL_INFILE=ON \ >@@ -991,6 +1028,7 @@ > -DPLUGIN_SPHINX=%{?with_sphinx:DYNAMIC}%{!?with_sphinx:NO} \ > -DPLUGIN_CONNECT=%{?with_connect:DYNAMIC}%{!?with_connect:NO} \ > -DPLUGIN_S3=%{?with_s3:DYNAMIC}%{!?with_s3:NO} \ >+ -DPLUGIN_AUTH_GSSAPI=%{?with_gssapi:DYNAMIC}%{!?with_gssapi:NO} \ > -DPLUGIN_AUTH_PAM=%{?with_pam:YES}%{!?with_pam:NO} \ > -DPLUGIN_AUTH_PAM_V1=%{?with_pam:DYNAMIC}%{!?with_pam:NO} \ > -DPLUGIN_COLUMNSTORE=NO \ >@@ -1006,44 +1044,10 @@ > # The issue is that the MariaDB upstream level of hardening is lower than expected by Red Hat > # We disable this option to the default compilation flags (which have higher level of hardening) will be used > >- >-CFLAGS="$CFLAGS -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE" >-# force PIC mode so that we can build libmysqld.so >-CFLAGS="$CFLAGS -fPIC" >- >-%if %{with debug} >-# Override all optimization flags when making a debug build >-# -D_FORTIFY_SOURCE requires optimizations enabled. Disable the fortify. >-%undefine _fortify_level >-CFLAGS=`echo "$CFLAGS" | sed -r 's/-O[0123]//'` >- >-CFLAGS="$CFLAGS -O0 -g" >- >-# Fixes for Fedora 32 & Rawhide (GCC 10.0): >-%if 0%{?fedora} >= 32 >-CFLAGS="$CFLAGS -Wno-error=class-memaccess" >-CFLAGS="$CFLAGS -Wno-error=enum-conversion" >-# endif f32 >-%endif >-# endif debug >-%endif >- >-CXXFLAGS="$CFLAGS" >-CPPFLAGS="$CFLAGS" >-export CFLAGS CXXFLAGS CPPFLAGS >- >- >-# Print all Cmake options values; "-LAH" means "List Advanced Help" >-cmake -B %{_vpath_builddir} -LAH >+# Print all cached CMake options values; "-N" means to run in read-only mode; "-LAH" means "List Advanced Help" for each option >+cmake -B %{_vpath_builddir} -N -LAH > > %cmake_build >- >-# build selinux policy >-%if %{with galera} >-pushd selinux >-make -f /usr/share/selinux/devel/Makefile %{majorname}-server-galera.pp >-%endif >- > > > %install >@@ -1066,21 +1070,18 @@ > ln -s mysql_config.1 %{buildroot}%{_mandir}/man1/mysql_config-%{__isa_bits}.1 > fi > >-# install INFO_SRC, INFO_BIN into libdir (upstream thinks these are doc files, >-# but that's pretty wacko --- see also %%{majorname}-file-contents.patch) >-install -p -m 644 %{_vpath_builddir}/Docs/INFO_SRC %{buildroot}%{_libdir}/%{majorname}/ >-install -p -m 644 %{_vpath_builddir}/Docs/INFO_BIN %{buildroot}%{_libdir}/%{majorname}/ >-rm -r %{buildroot}%{_datadir}/doc/%{majorname}/MariaDB-server-%{version} >- > # Logfile creation > mkdir -p %{buildroot}%{logfiledir} > chmod 0750 %{buildroot}%{logfiledir} > touch %{buildroot}%{logfile} > >+# PID file directory > # current setting in my.cnf is to use /var/run/mariadb for creating pid file, > # however since my.cnf is not updated by RPM if changed, we need to create mysqld > # as well because users can have odd settings in their /etc/my.cnf > mkdir -p %{buildroot}%{pidfiledir} >+ >+# DB datadir > install -p -m 0755 -d %{buildroot}%{dbdatadir} > > %if %{with config} >@@ -1097,9 +1098,6 @@ > rm %{buildroot}%{_libexecdir}/rcmysql > # Remove upstream Systemd service files > rm -r %{buildroot}%{_datadir}/%{majorname}/systemd >-# Our downstream Systemd service file have set aliases to the "mysql" names in the [Install] section. >-# They can be enabled / disabled by "systemctl enable / diable <service_name>" >-rm %{buildroot}%{_unitdir}/{mysql,mysqld}.service > > # install systemd unit files and scripts for handling server startup > install -D -p -m 644 %{_vpath_builddir}/scripts/mysql.service %{buildroot}%{_unitdir}/%{daemon_name}.service >@@ -1115,15 +1113,13 @@ > install -D -p -m 0644 %{_vpath_builddir}/scripts/mariadb.tmpfiles.d %{buildroot}%{_tmpfilesdir}/%{majorname}.conf > echo "d %{pidfiledir} 0755 mysql mysql -" >>%{buildroot}%{_tmpfilesdir}/%{majorname}.conf > >-# Remove any upstream variant of the sysusers.d config >-rm -r %{buildroot}%{_sysusersdir}/* > # Install downstream version of sysusers.d config >-install -m0644 -D support-files/%{name}.sysusers.conf %{buildroot}%{_sysusersdir}/%{name}.conf >+install -m0644 -D support-files/%{majorname}.sysusers.conf %{buildroot}%{_sysusersdir}/%{majorname}.conf > > # Install additional cracklib selinux policy > %if %{with cracklib} >-mkdir -p %{buildroot}%{_datadir}/selinux/packages/targeted/ >-mv %{buildroot}%{_datadir}/mariadb/policy/selinux/mariadb-plugin-cracklib-password-check.pp %{buildroot}%{_datadir}/selinux/packages/targeted/%{majorname}-plugin-cracklib-password-check.pp >+mkdir -p %{buildroot}%{_datadir}/selinux/packages/%{selinuxtype}/ >+mv %{buildroot}%{_datadir}/mariadb/policy/selinux/mariadb-plugin-cracklib-password-check.pp %{buildroot}%{_datadir}/selinux/packages/%{selinuxtype}/%{majorname}-plugin-cracklib-password-check.pp > rm %{buildroot}%{_datadir}/mariadb/policy/selinux/mariadb-plugin-cracklib-password-check.te > %endif > >@@ -1135,11 +1131,6 @@ > ln -s unstable-tests %{buildroot}%{_datadir}/mysql-test/rh-skipped-tests.list > %endif > >- >-# Client that uses libmysqld embedded server. >-# Pretty much like normal mysql command line client, but it doesn't require a running mariadb server. >-%{?with_embedded:rm %{buildroot}%{_bindir}/{mariadb-,mysql_}embedded} >-rm %{buildroot}%{_mandir}/man1/{mysql_,mariadb-}embedded.1* > # Static libraries > rm %{buildroot}%{_libdir}/*.a > # This script creates the MySQL system tables and starts the server. >@@ -1190,7 +1181,7 @@ > install -p -m 0644 %{_vpath_builddir}/support-files/wsrep.cnf %{buildroot}%{_sysconfdir}/my.cnf.d/galera.cnf > > # install additional galera selinux policy >-install -p -m 644 -D selinux/%{majorname}-server-galera.pp %{buildroot}%{_datadir}/selinux/packages/targeted/%{majorname}-server-galera.pp >+install -p -m 644 -D %{majorname}-server-galera.cil %{buildroot}%{_datadir}/selinux/packages/%{selinuxtype}/%{majorname}-server-galera.cil > > # Fix Galera Replication config file > # The replication requires cluster address upon startup (which is end-user specific). >@@ -1219,6 +1210,7 @@ > %if %{without embedded} > rm %{buildroot}%{_mandir}/man1/{mysql_client_test_embedded,mysqltest_embedded}.1* > rm %{buildroot}%{_mandir}/man1/{mariadb-client-test-embedded,mariadb-test-embedded}.1* >+rm %{buildroot}%{_mandir}/man1/{mariadb-,mysql_}embedded.1* > %endif > > >@@ -1235,7 +1227,7 @@ > rm %{buildroot}%{_mandir}/man3/* > # Client plugins > rm %{buildroot}%{_libdir}/%{majorname}/plugin/{dialog.so,mysql_clear_password.so,sha256_password.so,parsec.so} >-%if %{with gssapi} >+%if %{with gssapi} || %{with hashicorp} > rm %{buildroot}%{_libdir}/%{majorname}/plugin/auth_gssapi_client.so > %endif > %endif >@@ -1268,20 +1260,25 @@ > > %if %{without client} > rm %{buildroot}%{_bindir}/msql2mysql >+rm %{buildroot}%{_bindir}/my_print_defaults >+rm %{buildroot}%{_bindir}/replace > rm %{buildroot}%{_bindir}/{mysql,mariadb} >-rm %{buildroot}%{_bindir}/mysql{access,admin,binlog,check,dump,_find_rows,import,_plugin,show,slap,_waitpid} >-rm %{buildroot}%{_bindir}/mariadb-{access,admin,binlog,check,dump,find-rows,import,plugin,show,slap,waitpid} >+rm %{buildroot}%{_bindir}/mysql{access,admin,binlog,check,_convert_table_format,dump,dumpslow,_find_rows,hotcopy,import,_plugin,_setpermission,show,slap,_tzinfo_to_sql,_waitpid} >+rm %{buildroot}%{_bindir}/mariadb-{access,admin,binlog,check,convert-table-format,dump,dumpslow,find-rows,hotcopy,import,plugin,setpermission,show,slap,tzinfo-to-sql,waitpid} > > rm %{buildroot}%{_mandir}/man1/msql2mysql.1* >+rm %{buildroot}%{_mandir}/man1/my_print_defaults.1* >+rm %{buildroot}%{_mandir}/man1/replace.1* > rm %{buildroot}%{_mandir}/man1/{mysql,mariadb}.1* >-rm %{buildroot}%{_mandir}/man1/mysql{access,admin,binlog,check,dump,_find_rows,import,_plugin,show,slap,_waitpid}.1* >-rm %{buildroot}%{_mandir}/man1/mariadb-{access,admin,binlog,check,dump,find-rows,import,plugin,show,slap,waitpid}.1* >+rm %{buildroot}%{_mandir}/man1/mysql{access,admin,binlog,check,_convert_table_format,dump,dumpslow,_find_rows,hotcopy,import,_plugin,_setpermission,show,slap,_tzinfo_to_sql,_waitpid}.1* >+rm %{buildroot}%{_mandir}/man1/mariadb-{access,admin,binlog,check,convert-table-format,dump,dumpslow,find-rows,hotcopy,import,plugin,setpermission,show,slap,tzinfo-to-sql,waitpid}.1* > > rm %{buildroot}%{_sysconfdir}/my.cnf.d/mysql-clients.cnf > %endif > > %if %{without common} > rm -r %{buildroot}%{_datadir}/%{majorname}/charsets >+rm -r %{buildroot}%{_docdir}/%{majorname} > %endif > > %if %{without errmsg} >@@ -1310,6 +1307,25 @@ > rm %{buildroot}%{_mandir}/man1/{mysql_client_test,mysqltest,my_safe_process}.1* > rm %{buildroot}%{_mandir}/man1/{mariadb-client-test,mariadb-test}.1* > rm %{buildroot}%{_mandir}/man1/{mysql-test-run,mysql-stress-test}.pl.1* >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/adt_null.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/auth_0x0100.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/auth_test_plugin.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/debug_key_management.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/dialog_examples.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/example_key_management.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/func_test.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/ha_example.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/ha_test_sql_discovery.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/libdaemon_example.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/mypluglib.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/qa_auth_client.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/qa_auth_interface.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/qa_auth_server.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/test_sql_service.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/test_versioning.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/type_mysql_timestamp.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/type_test.so >+rm %{buildroot}%{_libdir}/%{majorname}/plugin/daemon_example.ini > %endif > > %if %{without backup} >@@ -1399,7 +1415,7 @@ > > %if %{with galera} > %post -n %{pkgname}-server-galera >-%selinux_modules_install -s "targeted" %{_datadir}/selinux/packages/targeted/%{majorname}-server-galera.pp >+%selinux_modules_install -s %{selinuxtype} %{_datadir}/selinux/packages/%{selinuxtype}/%{majorname}-server-galera.cil > > # Allow ports needed for the replication: > # https://fedoraproject.org/wiki/SELinux/IndependentPolicy#Port_Labeling >@@ -1416,7 +1432,7 @@ > > %postun -n %{pkgname}-server-galera > if [ $1 -eq 0 ]; then >- %selinux_modules_uninstall -s "targeted" %{majorname}-server-galera >+ %selinux_modules_uninstall -s %{selinuxtype} %{majorname}-server-galera > > # Delete port labeling when the package is removed > # https://fedoraproject.org/wiki/SELinux/IndependentPolicy#Port_Labeling >@@ -1429,11 +1445,11 @@ > > %if %{with cracklib} > %post -n %{pkgname}-cracklib-password-check >-%selinux_modules_install -s "targeted" %{_datadir}/selinux/packages/targeted/%{majorname}-plugin-cracklib-password-check.pp >+%selinux_modules_install -s %{selinuxtype} %{_datadir}/selinux/packages/%{selinuxtype}/%{majorname}-plugin-cracklib-password-check.pp > > %postun -n %{pkgname}-cracklib-password-check > if [ $1 -eq 0 ]; then >- %selinux_modules_uninstall -s "targeted" %{majorname}-plugin-cracklib-password-check >+ %selinux_modules_uninstall -s %{selinuxtype} %{majorname}-plugin-cracklib-password-check > fi > %endif > >@@ -1441,23 +1457,25 @@ > > %if %{with client} > %files -n %{pkgname} >-%{_bindir}/msql2mysql >+%{_bindir}/{msql2mysql,replace} > %{_bindir}/{mysql,mariadb} >-%{_bindir}/mysql{admin,binlog,check,dump,import,_plugin,show,slap,_waitpid} >-%{_bindir}/mariadb-{admin,binlog,check,dump,import,plugin,show,slap,waitpid} >- >-%{_mandir}/man1/msql2mysql.1* >+%{_bindir}/mysql{admin,binlog,check,dump,import,_plugin,show,slap,_tzinfo_to_sql,_waitpid} >+%{_bindir}/mariadb-{admin,binlog,check,dump,import,plugin,show,slap,tzinfo-to-sql,waitpid} >+%{_bindir}/my_print_defaults >+ >+%{_mandir}/man1/{msql2mysql,replace}.1* > %{_mandir}/man1/{mysql,mariadb}.1* >-%{_mandir}/man1/mysql{access,admin,binlog,check,dump,_find_rows,import,_plugin,show,slap,_waitpid}.1* >-%{_mandir}/man1/mariadb-{access,admin,binlog,check,dump,find-rows,import,plugin,show,slap,waitpid}.1* >+%{_mandir}/man1/mysql{access,admin,binlog,check,dump,_find_rows,import,_plugin,show,slap,_tzinfo_to_sql,_waitpid}.1* >+%{_mandir}/man1/mariadb-{access,admin,binlog,check,dump,find-rows,import,plugin,show,slap,tzinfo-to-sql,waitpid}.1* >+%{_mandir}/man1/my_print_defaults.1* > > %config(noreplace) %{_sysconfdir}/my.cnf.d/mysql-clients.cnf > > %files -n %{pkgname}-client-utils >-%{_bindir}/mysql{access,_find_rows} >-%{_bindir}/mariadb-{access,find-rows} >-%{_mandir}/man1/mysql{access,_find_rows}.1* >-%{_mandir}/man1/mariadb-{access,find-rows}.1* >+%{_bindir}/mysql{access,_convert_table_format,dumpslow,_find_rows,hotcopy,_setpermission} >+%{_bindir}/mariadb-{access,convert-table-format,dumpslow,find-rows,hotcopy,setpermission} >+%{_mandir}/man1/mysql{access,_convert_table_format,dumpslow,_find_rows,hotcopy,_setpermission}.1* >+%{_mandir}/man1/mariadb-{access,convert-table-format,dumpslow,find-rows,hotcopy,setpermission}.1* > %endif > > %if %{with clibrary} >@@ -1477,7 +1495,8 @@ > > %if %{with common} > %files -n %{pkgname}-common >-%doc %{_datadir}/doc/%{majorname} >+%doc %{_docdir}/%{majorname} >+%exclude %{_docdir}/%{majorname}/MariaDB-server-%{version}/README-wsrep > %dir %{_datadir}/%{majorname} > %{_datadir}/%{majorname}/charsets > %if %{with clibrary} >@@ -1525,34 +1544,40 @@ > %{_bindir}/clustercheck > %{_bindir}/galera_new_cluster > %{_bindir}/galera_recovery >+%{_libdir}/%{majorname}/plugin/wsrep_info.so > %{_mandir}/man1/galera_new_cluster.1* > %{_mandir}/man1/galera_recovery.1* > %config(noreplace) %{_sysconfdir}/my.cnf.d/galera.cnf > %attr(0640,root,root) %ghost %config(noreplace) %{_sysconfdir}/sysconfig/clustercheck >-%{_datadir}/selinux/packages/targeted/%{majorname}-server-galera.pp >+%ghost %verify(not md5 size mode mtime) %{_sharedstatedir}/selinux/%{selinuxtype}/active/modules/200/%{majorname}-server-galera >+%{_datadir}/selinux/packages/%{selinuxtype}/%{majorname}-server-galera.cil > %endif > > %files -n %{pkgname}-server > > %{_bindir}/aria_{chk,dump_log,ftdump,pack,read_log} >+%{_mandir}/man1/aria_{chk,dump_log,ftdump,pack,read_log}.1* >+ >+%{_bindir}/myisam{chk,_ftdump,log,pack} >+%{_mandir}/man1/myisam{chk,_ftdump,log,pack}.1* >+ > %{_bindir}/mariadb-service-convert >-%{_bindir}/myisamchk >-%{_bindir}/myisam_ftdump >-%{_bindir}/myisamlog >-%{_bindir}/myisampack >-%{_bindir}/my_print_defaults >- >+%{_mandir}/man1/mariadb-service-convert.1* > %{_bindir}/mariadb-conv >- >-%{_bindir}/mysql_{install_db,secure_installation,tzinfo_to_sql} >-%{_bindir}/mariadb-{install-db,secure-installation,tzinfo-to-sql} >+%{_mandir}/man1/mariadb-conv.1* >+ >+%{_bindir}/mysql_{install_db,secure_installation,upgrade} >+%{_mandir}/man1/mysql_{install_db,secure_installation,upgrade}.1* >+%{_bindir}/mariadb-{install-db,secure-installation,upgrade} >+%{_mandir}/man1/mariadb-{install-db,secure-installation,upgrade}.1* > %{_bindir}/{mysqld_,mariadbd-}safe >+%{_mandir}/man1/{mysqld_,mariadbd-}safe.1* > %{_bindir}/{mysqld_safe_helper,mariadbd-safe-helper} >- >-%{_bindir}/innochecksum >-%{_bindir}/replace >-%{_bindir}/resolve_stack_dump >-%{_bindir}/resolveip >+%{_mandir}/man1/{mysqld_safe_helper,mariadbd-safe-helper}.1* >+ >+%{_bindir}/{innochecksum,perror,resolve_stack_dump,resolveip} >+%{_mandir}/man1/{innochecksum,perror,resolve_stack_dump,resolveip}.1* >+ > %if %{with galera} > # wsrep_sst_common should be moved to /usr/share/mariadb: https://jira.mariadb.org/browse/MDEV-14296 > %{_bindir}/wsrep_* >@@ -1576,8 +1601,9 @@ > %{_sbindir}/mariadbd > %{_libexecdir}/{mysqld,mariadbd} > >-%{_libdir}/%{majorname}/INFO_SRC >-%{_libdir}/%{majorname}/INFO_BIN >+%{_mandir}/man1/mysql.server.1* >+%{_mandir}/man8/{mysqld,mariadbd}.8* >+ > %if %{without common} > %dir %{_datadir}/%{majorname} > %endif >@@ -1585,46 +1611,30 @@ > %dir %{_libdir}/%{majorname} > %dir %{_libdir}/%{majorname}/plugin > >-%{_libdir}/%{majorname}/plugin/* >-%{?with_oqgraph:%exclude %{_libdir}/%{majorname}/plugin/ha_oqgraph.so} >-%{?with_connect:%exclude %{_libdir}/%{majorname}/plugin/ha_connect.so} >-%{?with_cracklib:%exclude %{_libdir}/%{majorname}/plugin/cracklib_password_check.so} >-%{?with_rocksdb:%exclude %{_libdir}/%{majorname}/plugin/ha_rocksdb.so} >-%{?with_gssapi:%exclude %{_libdir}/%{majorname}/plugin/auth_gssapi.so} >-%{?with_sphinx:%exclude %{_libdir}/%{majorname}/plugin/ha_sphinx.so} >-%{?with_s3:%exclude %{_libdir}/%{majorname}/plugin/ha_s3.so} >-%if %{with clibrary} >-%exclude %{_libdir}/%{majorname}/plugin/dialog.so >-%exclude %{_libdir}/%{majorname}/plugin/mysql_clear_password.so >-%endif >- >-# PAM plugin; moved to a standalone sub-package >-%exclude %{_libdir}/%{majorname}/plugin/{auth_pam_v1.so,auth_pam.so} >-%exclude %dir %{_libdir}/%{majorname}/plugin/auth_pam_tool_dir >-%exclude %{_libdir}/%{majorname}/plugin/auth_pam_tool_dir/auth_pam_tool >- >-%{_mandir}/man1/aria_{chk,dump_log,ftdump,pack,read_log}.1* >-%{_mandir}/man1/mariadb-service-convert.1* >-%{_mandir}/man1/myisamchk.1* >-%{_mandir}/man1/myisamlog.1* >-%{_mandir}/man1/myisampack.1* >-%{_mandir}/man1/myisam_ftdump.1* >-%{_mandir}/man1/my_print_defaults.1* >- >-%{_mandir}/man1/mariadb-conv.1* >- >-%{_mandir}/man1/mysql_{install_db,secure_installation,tzinfo_to_sql}.1* >-%{_mandir}/man1/mariadb-{install-db,secure-installation,tzinfo-to-sql}.1* >-%{_mandir}/man1/{mysqld_,mariadbd-}safe.1* >-%{_mandir}/man1/{mysqld_safe_helper,mariadbd-safe-helper}.1* >- >-%{_mandir}/man1/innochecksum.1* >-%{_mandir}/man1/replace.1* >-%{_mandir}/man1/resolveip.1* >-%{_mandir}/man1/resolve_stack_dump.1* >-%{_mandir}/man8/{mysqld,mariadbd}.8* >- >-%{_mandir}/man1/mysql.server.1* >+%{_libdir}/%{majorname}/plugin/auth_ed25519.so >+%{_libdir}/%{majorname}/plugin/auth_parsec.so >+%{_libdir}/%{majorname}/plugin/disks.so >+%{_libdir}/%{majorname}/plugin/file_key_management.so >+%{_libdir}/%{majorname}/plugin/ha_archive.so >+%{_libdir}/%{majorname}/plugin/ha_blackhole.so >+%{_libdir}/%{majorname}/plugin/ha_federatedx.so >+%{_libdir}/%{majorname}/plugin/ha_spider.so >+%{_libdir}/%{majorname}/plugin/handlersocket.so >+%{?with_hashicorp:%{_libdir}/%{majorname}/plugin/hashicorp_key_management.so} >+%{_libdir}/%{majorname}/plugin/locales.so >+%{_libdir}/%{majorname}/plugin/metadata_lock_info.so >+%{_libdir}/%{majorname}/plugin/password_reuse_check.so >+%{?with_bzip2:%{_libdir}/%{majorname}/plugin/provider_bzip2.so} >+%{?with_lz4:%{_libdir}/%{majorname}/plugin/provider_lz4.so} >+%{?with_lzma:%{_libdir}/%{majorname}/plugin/provider_lzma.so} >+%{?with_lzo:%{_libdir}/%{majorname}/plugin/provider_lzo.so} >+%{?with_snappy:%{_libdir}/%{majorname}/plugin/provider_snappy.so} >+%{_libdir}/%{majorname}/plugin/query_cache_info.so >+%{_libdir}/%{majorname}/plugin/query_response_time.so >+%{_libdir}/%{majorname}/plugin/server_audit.so >+%{_libdir}/%{majorname}/plugin/simple_password_check.so >+%{_libdir}/%{majorname}/plugin/sql_errlog.so >+%{_libdir}/%{majorname}/plugin/type_mysql_json.so > > %{_datadir}/%{majorname}/mini-benchmark > %{_datadir}/%{majorname}/fill_help_tables.sql >@@ -1637,6 +1647,7 @@ > %dir %{_datadir}/%{majorname}-server/groonga-normalizer-mysql > %{_datadir}/%{majorname}/mroonga/install.sql > %{_datadir}/%{majorname}/mroonga/uninstall.sql >+%{_libdir}/%{majorname}/plugin/ha_mroonga.so > %license %{_datadir}/%{majorname}/mroonga/COPYING > %license %{_datadir}/%{majorname}/mroonga/AUTHORS > %license %{_datadir}/%{majorname}-server/groonga-normalizer-mysql/lgpl-2.0.txt >@@ -1657,6 +1668,7 @@ > # More on socket activation or extra port service at > # https://mariadb.com/kb/en/systemd/ > %{_unitdir}/%{daemon_name}.service >+%{_unitdir}/mysql{,d}.service > %{_unitdir}/%{daemon_name}@.service > %{_unitdir}/%{daemon_name}.socket > %{_unitdir}/%{daemon_name}@.socket >@@ -1678,13 +1690,14 @@ > %config(noreplace) %{logrotateddir}/%{daemon_name} > > %{_tmpfilesdir}/%{majorname}.conf >-%{_sysusersdir}/%{name}.conf >+%{_sysusersdir}/%{majorname}.conf > > %if %{with cracklib} > %files -n %{pkgname}-cracklib-password-check > %config(noreplace) %{_sysconfdir}/my.cnf.d/cracklib_password_check.cnf > %{_libdir}/%{majorname}/plugin/cracklib_password_check.so >-%{_datadir}/selinux/packages/targeted/%{majorname}-plugin-cracklib-password-check.pp >+%{_datadir}/selinux/packages/%{selinuxtype}/%{majorname}-plugin-cracklib-password-check.pp >+%ghost %verify(not md5 size mode mtime) %{_sharedstatedir}/selinux/%{selinuxtype}/active/modules/200/%{majorname}-plugin-cracklib-password-check > %endif > > %if %{with backup} >@@ -1749,18 +1762,13 @@ > > %files -n %{pkgname}-server-utils > # Perl utilities >-%{_bindir}/mysql{_convert_table_format,dumpslow,_fix_extensions,hotcopy,_setpermission} >-%{_bindir}/mariadb-{convert-table-format,dumpslow,fix-extensions,hotcopy,setpermission} >+%{_bindir}/mysql{_fix_extensions} >+%{_bindir}/mariadb-{fix-extensions} > %{_bindir}/{mysqld_,mariadbd-}multi > >-%{_mandir}/man1/mysql{_convert_table_format,dumpslow,_fix_extensions,hotcopy,_setpermission}.1* >-%{_mandir}/man1/mariadb-{convert-table-format,dumpslow,fix-extensions,hotcopy,setpermission}.1* >+%{_mandir}/man1/mysql{_fix_extensions}.1* >+%{_mandir}/man1/mariadb-{fix-extensions}.1* > %{_mandir}/man1/{mysqld_,mariadbd-}multi.1* >-# Utilities that can be used remotely >-%{_bindir}/{mysql_,mariadb-}upgrade >-%{_bindir}/perror >-%{_mandir}/man1/{mysql_,mariadb-}upgrade.1* >-%{_mandir}/man1/perror.1* > > %if %{with devel} > %files -n %{pkgname}-devel >@@ -1783,6 +1791,8 @@ > %if %{with embedded} > %files -n %{pkgname}-embedded > %{_libdir}/libmariadbd.so.* >+%{_bindir}/{mariadb-,mysql_}embedded >+%{_mandir}/man1/{mysql_,mariadb-}embedded.1* > > %files -n %{pkgname}-embedded-devel > %{_libdir}/libmysqld.so >@@ -1800,6 +1810,27 @@ > %endif > %{_bindir}/{mysql_client_test,mysqltest,mariadb-client-test,mariadb-test} > %{_bindir}/my_safe_process >+%dir %{_libdir}/%{majorname}/plugin >+# shared objects required for testing >+%{_libdir}/%{majorname}/plugin/adt_null.so >+%{_libdir}/%{majorname}/plugin/auth_0x0100.so >+%{_libdir}/%{majorname}/plugin/auth_test_plugin.so >+%{_libdir}/%{majorname}/plugin/debug_key_management.so >+%{_libdir}/%{majorname}/plugin/dialog_examples.so >+%{_libdir}/%{majorname}/plugin/example_key_management.so >+%{_libdir}/%{majorname}/plugin/func_test.so >+%{_libdir}/%{majorname}/plugin/ha_example.so >+%{_libdir}/%{majorname}/plugin/ha_test_sql_discovery.so >+%{_libdir}/%{majorname}/plugin/libdaemon_example.so >+%{_libdir}/%{majorname}/plugin/mypluglib.so >+%{_libdir}/%{majorname}/plugin/qa_auth_client.so >+%{_libdir}/%{majorname}/plugin/qa_auth_interface.so >+%{_libdir}/%{majorname}/plugin/qa_auth_server.so >+%{_libdir}/%{majorname}/plugin/test_sql_service.so >+%{_libdir}/%{majorname}/plugin/test_versioning.so >+%{_libdir}/%{majorname}/plugin/type_mysql_timestamp.so >+%{_libdir}/%{majorname}/plugin/type_test.so >+%{_libdir}/%{majorname}/plugin/daemon_example.ini > %attr(-,mysql,mysql) %{_datadir}/mysql-test > %{_mandir}/man1/{mysql_client_test,mysqltest,mariadb-client-test,mariadb-test}.1* > %{_mandir}/man1/my_safe_process.1* >@@ -1808,11 +1839,24 @@ > %endif > > %changelog >-* Tue Apr 29 2025 Michal Schorm <mschorm@redhat.com> - 3:11.8.1-1 >+* Tue Jun 17 2025 Michal Schorm <mschorm@redhat.com> - 3:11.8.2-1 > - Rebase to 11.8 major version > >-* Fri Apr 25 2025 Michal Schorm <mschorm@redhat.com> - 3:11.4.5-1 >+* Mon Jun 16 2025 Michal Schorm <mschorm@redhat.com> - 3:11.4.5-1 > - Rebase to 11.4 major version >+ >+* Fri Jun 06 2025 Pavol Sloboda <psloboda@redhat.com> - 3:10.11.13-1 >+- Rebase to 10.11.13 >+ >+* Wed May 07 2025 Michal Schorm <mschorm@redhat.com> - 3:10.11.11-8 >+- Bump release for package rebuild >+- Partial revert of the removal of the tmpfiles.d >+ >+* Mon May 05 2025 Michal Schorm <mschorm@redhat.com> - 3:10.11.11-7 >+- Bump release for package rebuild >+ >+* Tue Apr 22 2025 Michal Schorm <mschorm@redhat.com> - 3:10.11.11-6 >+- Bump release for package rebuild > > * Mon Apr 07 2025 Michal Schorm <mschorm@redhat.com> - 3:10.11.11-5 > - Bump release for package rebuild
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 2368742
: 2094394