rocky-release/SPECS/rocky-release.spec

436 lines
17 KiB
RPMSpec
Raw Normal View History

2021-11-30 08:24:40 +00:00
# Note to packagers/builders:
#
2022-05-08 15:40:04 +00:00
# If you wish to build the LookAhead or Beta variant of this package, sure
# that you are setting --with=rlbeta or --with=rllookahead on your mock
# command. See the README for more information.
%bcond_with rlbeta
%bcond_with rllookahead
%bcond_with rloverride
2021-11-30 08:24:40 +00:00
2021-04-09 03:50:23 +00:00
%define debug_package %{nil}
# Product information
%define product_family Rocky Linux
%define variant_titlecase Server
%define variant_lowercase server
# Distribution Name and Version
2021-05-25 00:36:03 +00:00
%define distro_name Rocky Linux
2021-10-19 08:39:56 +00:00
%define distro_code Blue Onyx
2021-11-30 02:37:33 +00:00
%define major 9
%define minor 0
%define rocky_rel 1%{?rllh:.%{rllh}}%{!?rllh:.12}
2021-07-10 22:01:25 +00:00
%define rpm_license BSD-3-Clause
2021-11-30 21:52:40 +00:00
%define dist .el%{major}
2021-04-09 03:50:23 +00:00
2021-11-30 02:37:33 +00:00
%define contentdir pub/rocky
2021-11-30 08:24:40 +00:00
%define rltype stable
2022-05-02 01:15:04 +00:00
%define os_bug_name Rocky-Linux-%{major}
2021-11-30 08:24:40 +00:00
################################################################################
# Rocky LookAhead Section
#
2021-11-30 21:52:40 +00:00
# Reset defines for LookAhead variant. Default is stable if 0 or undefined.
2022-05-08 15:40:04 +00:00
%if %{with rllookahead}
2022-04-23 03:15:13 +00:00
%define minor 1
2021-11-30 08:24:40 +00:00
%define contentdir pub/rocky-lh
%define rltype lookahead
%define rlpkg -lookahead
2021-11-30 21:52:40 +00:00
%define rlstatement LookAhead
2021-11-30 08:24:40 +00:00
%endif
# End Rocky LookAhead Section
################################################################################
2021-11-30 02:37:33 +00:00
2021-11-30 21:52:40 +00:00
################################################################################
# Rocky Beta Section
#
# Reset defines for Beta variant. Default is stable if 0 or undefined.
# We do NOT override the minor version number here.
2022-05-08 15:40:04 +00:00
%if %{with rlbeta}
2021-11-30 21:52:40 +00:00
%define contentdir pub/rocky-beta
%define rltype beta
%define rlpkg -beta
%define rlstatement Beta
%endif
# End Rocky Beta Section
################################################################################
2022-02-09 00:35:47 +00:00
################################################################################
# Rocky Override Section
#
# Resets only the dist tag for the override package. All this does is ensure
# that only the rhel macros and settings are provided - This is useful in the
# case of a build that cannot be properly debranded (eg dotnet).
%if 0%{?rloverride}
%define dist .el%{major}.override
%endif
# End Rocky Override Section
################################################################################
2021-04-09 03:50:23 +00:00
%define base_release_version %{major}
%define dist_release_version %{major}
%define full_release_version %{major}.%{minor}
2021-04-09 03:50:23 +00:00
%ifarch ppc64le
%define tuned_profile :server
%endif
# Avoids a weird anaconda problem
%global __requires_exclude_from %{_libexecdir}
2021-02-01 07:12:25 +00:00
# conditional section for future use
2021-11-30 08:24:40 +00:00
Name: rocky-release%{?rlpkg}
2021-11-30 21:52:40 +00:00
Version: %{full_release_version}
Release: %{rocky_rel}%{dist}
2021-05-25 00:36:03 +00:00
Summary: %{distro_name} release files
2021-11-30 02:37:33 +00:00
Group: System Environment/Base
2021-07-10 22:01:25 +00:00
License: %{rpm_license}
2021-02-01 07:12:25 +00:00
URL: https://rockylinux.org
BuildArch: noarch
# What do we provide? Some of these needs are a necesity (think comps and
# groups) and things like EPEL need it.
2021-04-09 03:52:11 +00:00
Provides: rocky-release = %{version}-%{release}
2021-10-20 23:21:00 +00:00
Provides: rocky-release(upstream) = %{full_release_version}
2021-04-09 03:59:11 +00:00
Provides: redhat-release = %{version}-%{release}
Provides: system-release = %{version}-%{release}
2021-04-09 03:50:23 +00:00
Provides: system-release(releasever) = %{major}
2021-09-13 22:28:39 +00:00
Provides: centos-release = %{version}-%{release}
2021-10-20 23:21:00 +00:00
Provides: centos-release(upstream) = %{full_release_version}
2021-02-01 07:12:25 +00:00
2021-04-09 03:50:23 +00:00
## Required by libdnf
Provides: base-module(platform:el%{major})
2021-11-30 02:55:46 +00:00
## This makes lorax/pungi/anaconda happy
Provides: rocky-release-eula = %{version}-%{release}
Provides: redhat-release-eula = %{version}-%{release}
Provides: centos-release-eula = %{version}-%{release}
2021-04-09 03:50:23 +00:00
# What are our requirements?
2021-05-28 05:29:55 +00:00
Requires: rocky-repos(%{major})
2021-02-01 07:12:25 +00:00
2021-10-20 03:10:35 +00:00
# GPG Keys (100-199)
2022-04-06 01:03:31 +00:00
Source101: RPM-GPG-KEY-Rocky-%{major}
2022-05-05 02:30:45 +00:00
Source102: RPM-GPG-KEY-Rocky-%{major}-Testing
2021-02-01 07:12:25 +00:00
2021-11-30 08:24:40 +00:00
# Release Sources (200-499)
2021-02-01 07:12:25 +00:00
Source200: EULA
Source201: LICENSE
Source202: Contributors
Source203: COMMUNITY-CHARTER
2021-11-30 08:24:40 +00:00
# !! Stable !!
2021-02-01 07:12:25 +00:00
Source300: 85-display-manager.preset
Source301: 90-default.preset
2021-10-05 07:52:23 +00:00
Source302: 90-default-user.preset
Source303: 99-default-disable.preset
Source304: 50-redhat.conf
2021-02-01 07:12:25 +00:00
2021-11-30 08:24:40 +00:00
# !! LookAhead !!
Source400: 85-display-manager.preset.lh
Source401: 90-default.preset.lh
Source402: 90-default-user.preset.lh
Source403: 99-default-disable.preset.lh
Source404: 50-redhat.conf.lh
2021-10-20 03:10:35 +00:00
# Repo Sources (1200-1299)
2022-04-23 02:04:30 +00:00
Source1200: rocky.repo
Source1201: rocky-addons.repo
Source1202: rocky-extras.repo
Source1203: rocky-devel.repo
2021-10-20 03:10:35 +00:00
# Add ons (1300-1399)
2021-05-26 15:09:34 +00:00
Source1300: rocky.1.gz
2021-04-09 03:50:23 +00:00
2021-10-20 03:10:35 +00:00
# rocky secureboot certs placeholder (1400-1499)
2022-04-16 04:07:11 +00:00
Source1400: rockydup1.x509
Source1401: rockykpatch1.x509
Source1402: rocky-root-ca.der
Source1403: rocky-signing.der
2021-10-19 04:47:21 +00:00
2021-02-01 07:12:25 +00:00
%description
2021-05-25 00:36:03 +00:00
%{distro_name} release files.
2021-02-01 07:12:25 +00:00
2021-11-30 08:24:40 +00:00
%package -n rocky-repos%{?rlpkg}
2021-05-25 00:36:03 +00:00
Summary: %{distro_name} Package Repositories
2021-07-10 22:01:25 +00:00
License: %{rpm_license}
2022-02-09 00:46:12 +00:00
Provides: system-repos = %{version}-%{release}
2021-10-20 23:21:00 +00:00
Provides: rocky-repos(%{major}) = %{full_release_version}
2022-02-09 00:46:12 +00:00
Requires: system-release = %{version}-%{release}
2021-04-09 03:50:23 +00:00
Requires: rocky-gpg-keys
2021-04-09 03:59:11 +00:00
Conflicts: %{name} < 8.0
2021-04-09 03:50:23 +00:00
2021-11-30 08:24:40 +00:00
%description -n rocky-repos%{?rlpkg}
2021-05-25 00:36:03 +00:00
%{distro_name} package repository files for yum/dnf
2021-04-09 03:50:23 +00:00
2021-11-30 08:24:40 +00:00
%package -n rocky-gpg-keys%{?rlpkg}
2021-04-09 03:50:23 +00:00
Summary: Rocky RPM GPG Keys
Conflicts: %{name} < 8.0
2021-11-30 08:24:40 +00:00
%description -n rocky-gpg-keys%{?rlpkg}
2021-04-09 03:50:23 +00:00
This package provides the RPM signature keys for Rocky.
2021-11-30 08:24:40 +00:00
%package -n rocky-sb-certs%{?rlpkg}
2021-10-19 04:47:21 +00:00
Summary: %{distro_name} public secureboot certificates
Group: System Environment/Base
Provides: system-sb-certs = %{version}-%{release}
2021-11-30 08:24:40 +00:00
%description -n rocky-sb-certs%{?rlpkg}
2021-10-19 04:47:21 +00:00
This package contains the %{distro_name} secureboot public certificates.
2021-04-09 03:50:23 +00:00
%prep
2022-05-08 15:40:04 +00:00
%if %{with rllookahead} && %{with rlbeta}
2021-11-30 21:52:40 +00:00
echo "!! WARNING !!"
echo "Both LookAhead and Beta were enabled. This is not supported."
echo "As a result: BUILD FAILED."
exit 1
%endif
2021-04-09 03:50:23 +00:00
echo Good.
%build
echo Good.
2021-02-01 07:12:25 +00:00
%install
2021-10-19 04:47:21 +00:00
# docs dir for license and contributors
mkdir ./docs
cp %{SOURCE201} %{SOURCE202} %{SOURCE203} ./docs
2021-02-01 07:12:25 +00:00
2021-10-19 08:39:56 +00:00
################################################################################
# system-release data
2021-02-01 07:12:25 +00:00
install -d -m 0755 %{buildroot}%{_sysconfdir}
2021-11-30 21:52:40 +00:00
echo "%{distro_name} release %{full_release_version}%{?rlstatement: %{rlstatement}} (%{distro_code})" > %{buildroot}%{_sysconfdir}/rocky-release
echo "Derived from Red Hat Enterprise Linux %{full_release_version}" > %{buildroot}%{_sysconfdir}/rocky-release-upstream
2021-02-01 07:12:25 +00:00
ln -s rocky-release %{buildroot}%{_sysconfdir}/system-release
ln -s rocky-release %{buildroot}%{_sysconfdir}/redhat-release
2021-05-26 03:23:29 +00:00
mkdir -p %{buildroot}%{_mandir}/man1
2021-05-26 03:07:44 +00:00
install -p -m 0644 %{SOURCE1300} %{buildroot}%{_mandir}/man1/
2021-02-01 07:12:25 +00:00
# Create the os-release file
install -d -m 0755 %{buildroot}%{_prefix}/lib
cat > %{buildroot}%{_prefix}/lib/os-release << EOF
2021-05-25 00:36:03 +00:00
NAME="%{distro_name}"
2021-10-20 23:21:00 +00:00
VERSION="%{full_release_version} (%{distro_code})"
2022-02-09 00:35:47 +00:00
ID="%{?rloverride:rhel}%{!?rloverride:rocky}"
2021-09-13 22:28:39 +00:00
ID_LIKE="rhel centos fedora"
2021-10-20 23:21:00 +00:00
VERSION_ID="%{full_release_version}"
2021-02-01 07:12:25 +00:00
PLATFORM_ID="platform:el%{major}"
2021-11-30 21:52:40 +00:00
PRETTY_NAME="%{distro_name} %{full_release_version}%{?rlstatement: %{rlstatement}} (%{distro_code})"
2021-05-25 00:36:03 +00:00
ANSI_COLOR="0;32"
2022-01-11 04:05:20 +00:00
LOGO="fedora-logo-icon"
2022-03-24 00:53:04 +00:00
CPE_NAME="cpe:/o:rocky:rocky:%{major}::baseos"
2021-02-01 07:12:25 +00:00
HOME_URL="https://rockylinux.org/"
BUG_REPORT_URL="https://bugs.rockylinux.org/"
2022-05-02 01:15:04 +00:00
ROCKY_SUPPORT_PRODUCT="%{os_bug_name}"
ROCKY_SUPPORT_PRODUCT_VERSION="%{full_release_version}%{?rlstatement:-%{rlstatement}}"
2022-03-29 21:04:01 +00:00
REDHAT_SUPPORT_PRODUCT="%{distro_name}"
REDHAT_SUPPORT_PRODUCT_VERSION="%{full_release_version}%{?rlstatement: %{rlstatement}}"
2021-02-01 07:12:25 +00:00
EOF
# Create the symlink for /etc/os-release
ln -s ../usr/lib/os-release %{buildroot}%{_sysconfdir}/os-release
# write cpe to /etc/system/release-cpe
2022-03-24 00:53:04 +00:00
echo "cpe:/o:rocky:rocky:%{major}::baseos" > %{buildroot}%{_sysconfdir}/system-release-cpe
2021-02-01 07:12:25 +00:00
# create /etc/issue and /etc/issue.net, /etc/issue.d
2021-05-20 00:06:30 +00:00
echo '\S' > %{buildroot}%{_sysconfdir}/issue
echo 'Kernel \r on an \m' >> %{buildroot}%{_sysconfdir}/issue
cp %{buildroot}%{_sysconfdir}/issue{,.net}
2021-02-01 07:12:25 +00:00
echo >> %{buildroot}%{_sysconfdir}/issue
mkdir -p %{buildroot}%{_sysconfdir}/issue.d
2021-02-01 07:12:25 +00:00
# set up the dist tag macros
install -d -m 0755 %{buildroot}%{_sysconfdir}/rpm
cat > %{buildroot}%{_sysconfdir}/rpm/macros.dist << EOF
# dist macros.
2022-02-14 08:52:17 +00:00
%%__bootstrap ~bootstrap
2021-02-01 07:12:25 +00:00
%%rocky_ver %{major}
%%rocky %{major}
2021-09-13 23:05:19 +00:00
%%centos_ver %{major}
%%centos %{major}
2021-02-01 07:12:25 +00:00
%%rhel %{major}
2022-02-14 08:52:17 +00:00
%%dist %%{!?distprefix0:%%{?distprefix}}%%{expand:%%{lua:for i=0,9999 do print("%%{?distprefix" .. i .."}") end}}.el%{major}%%{?with_bootstrap:%{__bootstrap}}
2021-02-01 07:12:25 +00:00
%%el%{major} 1
EOF
2021-04-09 18:14:55 +00:00
# Data directory
2021-02-01 07:12:25 +00:00
install -d -m 0755 %{buildroot}%{_datadir}/rocky-release
ln -s rocky-release %{buildroot}%{_datadir}/redhat-release
install -p -m 0644 %{SOURCE200} %{buildroot}%{_datadir}/rocky-release/
2021-10-19 08:39:56 +00:00
# end system-release data
################################################################################
2021-10-19 04:47:21 +00:00
################################################################################
# systemd section
2021-02-01 07:12:25 +00:00
install -d -m 0755 %{buildroot}%{_prefix}/lib/systemd/system-preset/
2021-10-05 07:52:23 +00:00
install -d -m 0755 %{buildroot}%{_prefix}/lib/systemd/user-preset/
2021-11-30 08:24:40 +00:00
2021-04-09 03:50:23 +00:00
install -m 0644 %{SOURCE300} %{buildroot}/%{_prefix}/lib/systemd/system-preset/
install -m 0644 %{SOURCE301} %{buildroot}/%{_prefix}/lib/systemd/system-preset/
install -m 0644 %{SOURCE302} %{buildroot}/%{_prefix}/lib/systemd/system-preset/
2021-02-01 07:12:25 +00:00
2021-10-19 04:47:21 +00:00
# same behavior for both presets
install -m 0644 %{SOURCE303} %{buildroot}/%{_prefix}/lib/systemd/system-preset/
2021-10-05 07:52:23 +00:00
install -m 0644 %{SOURCE303} %{buildroot}/%{_prefix}/lib/systemd/user-preset/
# sysctl presets
install -d -m 0755 %{buildroot}%{_prefix}/lib/sysctl.d/
install -m 0644 %{SOURCE304} %{buildroot}/%{_prefix}/lib/sysctl.d/
2021-10-19 08:39:56 +00:00
# systemd section
################################################################################
2021-10-19 04:47:21 +00:00
################################################################################
# start secureboot section
install -d -m 0755 %{buildroot}%{_sysconfdir}/pki/sb-certs/
install -d -m 0755 %{buildroot}%{_datadir}/pki/sb-certs/
2021-04-09 03:50:23 +00:00
2022-01-27 19:05:01 +00:00
# Backported certs for now
install -m 0644 %{SOURCE1400} %{buildroot}%{_datadir}/pki/sb-certs/
install -m 0644 %{SOURCE1401} %{buildroot}%{_datadir}/pki/sb-certs/
install -m 0644 %{SOURCE1402} %{buildroot}%{_datadir}/pki/sb-certs/
install -m 0644 %{SOURCE1403} %{buildroot}%{_datadir}/pki/sb-certs/
2022-04-13 16:46:28 +00:00
# Placeholders
2021-10-19 04:47:21 +00:00
# x86_64
2022-04-13 17:42:56 +00:00
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-root-ca.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-ca-x86_64.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-kernel-x86_64.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-grub2-x86_64.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-fwupd-x86_64.cer
2021-10-19 04:47:21 +00:00
# aarch64
2022-04-13 17:42:56 +00:00
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-root-ca.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-ca-aarch64.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-kernel-aarch64.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-grub2-aarch64.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-fwupd-aarch64.cer
2021-10-19 04:47:21 +00:00
# ppc64le
2022-04-13 17:42:56 +00:00
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-root-ca.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-ca-ppc64le.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-kernel-ppc64le.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-grub2-ppc64le.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-fwupd-ppc64le.cer
2021-10-19 04:47:21 +00:00
# armhfp
2022-04-13 17:42:56 +00:00
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-root-ca.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-ca-armhfp.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-kernel-armhfp.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-grub2-armhfp.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-fwupd-armhfp.cer
2021-04-09 03:50:23 +00:00
2021-10-19 04:47:21 +00:00
# s390x
2022-04-13 17:42:56 +00:00
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-root-ca.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-ca-s390x.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-kernel-s390x.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-grub2-s390x.cer
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/rocky-signing.der %{buildroot}%{_datadir}/pki/sb-certs/secureboot-fwupd-s390x.cer
2021-10-19 04:47:21 +00:00
# symlinks for everybody
for x in $(ls %{buildroot}%{_datadir}/pki/sb-certs); do
ln -sr %{buildroot}%{_datadir}/pki/sb-certs/${x} %{buildroot}%{_sysconfdir}/pki/sb-certs/${x}
done
# end secureboot section
################################################################################
################################################################################
# dnf repo section
2021-04-09 03:50:23 +00:00
install -d -m 0755 %{buildroot}%{_sysconfdir}/yum.repos.d
2021-04-19 03:21:16 +00:00
install -p -m 0644 %{SOURCE1200} %{buildroot}%{_sysconfdir}/yum.repos.d/
install -p -m 0644 %{SOURCE1201} %{buildroot}%{_sysconfdir}/yum.repos.d/
install -p -m 0644 %{SOURCE1202} %{buildroot}%{_sysconfdir}/yum.repos.d/
install -p -m 0644 %{SOURCE1203} %{buildroot}%{_sysconfdir}/yum.repos.d/
2021-02-01 07:12:25 +00:00
2021-10-19 04:47:21 +00:00
# dnf stuff
install -d -m 0755 %{buildroot}%{_sysconfdir}/dnf/vars
2021-10-20 23:21:00 +00:00
echo "%{contentdir}" > %{buildroot}%{_sysconfdir}/dnf/vars/contentdir
2021-11-30 08:24:40 +00:00
echo "%{rltype}" > %{buildroot}%{_sysconfdir}/dnf/vars/rltype
2021-10-19 04:47:21 +00:00
# Copy out GPG keys
install -d -m 0755 %{buildroot}%{_sysconfdir}/pki/rpm-gpg
2021-11-30 21:52:40 +00:00
install -p -m 0644 %{SOURCE101} %{buildroot}%{_sysconfdir}/pki/rpm-gpg/
2021-10-19 04:47:21 +00:00
install -p -m 0644 %{SOURCE102} %{buildroot}%{_sysconfdir}/pki/rpm-gpg/
# end dnf repo section
################################################################################
2021-11-30 21:52:40 +00:00
################################################################################
# lookahead overrides
# TODO: Is there a cleaner way?
2022-05-08 15:40:04 +00:00
%if %{with rllookahead}
2021-11-30 21:52:40 +00:00
install -m 0644 %{SOURCE400} %{buildroot}/%{_prefix}/lib/systemd/system-preset/85-display-manager.preset
install -m 0644 %{SOURCE401} %{buildroot}/%{_prefix}/lib/systemd/system-preset/90-default.preset
install -m 0644 %{SOURCE402} %{buildroot}/%{_prefix}/lib/systemd/system-preset/90-default-user.preset
install -m 0644 %{SOURCE403} %{buildroot}/%{_prefix}/lib/systemd/system-preset/99-default-disable.preset
install -m 0644 %{SOURCE403} %{buildroot}/%{_prefix}/lib/systemd/user-preset/99-default-disable.preset
install -m 0644 %{SOURCE404} %{buildroot}/%{_prefix}/lib/sysctl.d/50-redhat.conf
%endif
# lookahead replacements
################################################################################
2021-02-01 07:12:25 +00:00
%files
2021-10-19 04:47:21 +00:00
%license docs/LICENSE
%doc docs/Contributors docs/COMMUNITY-CHARTER
%dir %{_sysconfdir}/yum.repos.d
2021-02-01 07:12:25 +00:00
%{_sysconfdir}/redhat-release
%{_sysconfdir}/system-release
%{_sysconfdir}/rocky-release
%{_sysconfdir}/rocky-release-upstream
%config(noreplace) %{_sysconfdir}/os-release
%config %{_sysconfdir}/system-release-cpe
%config(noreplace) %{_sysconfdir}/issue
%config(noreplace) %{_sysconfdir}/issue.net
%dir %{_sysconfdir}/issue.d
2021-02-01 07:12:25 +00:00
%{_sysconfdir}/rpm/macros.dist
2021-11-30 02:55:46 +00:00
%{_datadir}/redhat-release
%{_datadir}/rocky-release
2021-02-01 07:12:25 +00:00
%{_prefix}/lib/os-release
%{_prefix}/lib/systemd/system-preset/*
2021-10-05 07:52:23 +00:00
%{_prefix}/lib/systemd/user-preset/*
2021-10-19 04:47:21 +00:00
%{_prefix}/lib/sysctl.d/50-redhat.conf
2021-05-26 15:09:34 +00:00
%{_mandir}/man1/rocky.1.gz
2021-02-01 07:12:25 +00:00
2021-11-30 08:24:40 +00:00
%files -n rocky-repos%{?rlpkg}
2021-10-19 05:03:01 +00:00
%license docs/LICENSE
2022-04-23 02:04:30 +00:00
%config(noreplace) %{_sysconfdir}/yum.repos.d/rocky.repo
%config(noreplace) %{_sysconfdir}/yum.repos.d/rocky-addons.repo
%config(noreplace) %{_sysconfdir}/yum.repos.d/rocky-extras.repo
%config(noreplace) %{_sysconfdir}/yum.repos.d/rocky-devel.repo
2021-04-09 03:50:23 +00:00
%config(noreplace) %{_sysconfdir}/dnf/vars/contentdir
2021-11-30 08:24:40 +00:00
%config(noreplace) %{_sysconfdir}/dnf/vars/rltype
2021-04-09 03:50:23 +00:00
2021-11-30 08:24:40 +00:00
%files -n rocky-gpg-keys%{?rlpkg}
2021-04-09 03:50:23 +00:00
%{_sysconfdir}/pki/rpm-gpg/
2021-02-01 07:12:25 +00:00
2021-11-30 08:24:40 +00:00
%files -n rocky-sb-certs%{?rlpkg}
2021-10-19 04:47:21 +00:00
# care: resetting symlinks is intended
%dir %{_sysconfdir}/pki/sb-certs
%dir %{_datadir}/pki/sb-certs
2022-04-13 17:44:38 +00:00
%{_sysconfdir}/pki/sb-certs/*
%{_datadir}/pki/sb-certs/*
2021-10-19 04:47:21 +00:00
2021-02-01 07:12:25 +00:00
%changelog
* Sun May 01 2022 Louis Abel <label@rockylinux.org> - 9.0-1.12
2022-01-27 19:05:01 +00:00
- Backport current SB certs for now
2022-02-09 00:35:47 +00:00
- Add logrotate timer and switcheroo
2022-02-14 08:52:17 +00:00
- Add missing macros
2022-03-24 00:53:04 +00:00
- Fix CPE values
- Remove /etc/centos-release file
2022-05-02 01:15:04 +00:00
- Add redhat and fix rocky tags in os-release
2022-04-06 01:03:31 +00:00
- Fix GPG key names to be consistent with SIG requirements
2022-04-23 02:04:30 +00:00
- Reduce number of repo files
2022-05-05 02:30:45 +00:00
- Change testing key to "testing" key from build system
- Add official "stable" key from build system
2022-05-05 02:30:45 +00:00
- List both GPG keys in repo files
2022-01-27 19:05:01 +00:00
2022-01-11 04:09:37 +00:00
* Mon Jan 10 2022 Louis Abel <label@rockylinux.org> - 9.0-1.1
- Add LOGO to /etc/os-release
2021-11-30 08:24:40 +00:00
* Tue Nov 30 2021 Louis Abel <label@rockylinux.org> - 9.0-1.0
2021-10-05 07:52:23 +00:00
- Init for Rocky Linux 9 (Blue Onyx)
2021-11-30 08:24:40 +00:00
- Sync with upstream
- Add direct LookAhead support
2021-11-30 21:52:40 +00:00
- Add direct Beta support
2021-11-30 08:24:40 +00:00
- Add spec file notes for packagers
2021-12-22 02:34:34 +00:00
- Add countme=1 to all base repos