After discussion in the 2024-11-21 FPC meeting, I am updating the epel build script to allow creating a forge-srpm-macros-epel backport package that overrides the EL 10 package. The backport package will address a critical bug that has gone unfixed in RHEL and include other features that have been added since the EL 10 branching. Ref: https://bugzilla.redhat.com/show_bug.cgi?id=2314083 Ref: https://issues.redhat.com/browse/RHEL-60802 Ref: https://meetbot.fedoraproject.org/meeting-1_matrix_fedoraproject-org/2024-11-21/fpc.2024-11-21-17.00.log.html
101 lines
2.3 KiB
RPMSpec
101 lines
2.3 KiB
RPMSpec
# SPDX-License-Identifier: MIT
|
|
# Copyright (C) 2023 Maxwell G <maxwell@gtmx.me>
|
|
|
|
%bcond tests 1
|
|
|
|
Name: forge-srpm-macros
|
|
Version: 0.4.0
|
|
Release: 1%{?dist}
|
|
Summary: Macros to simplify packaging of forge-hosted projects
|
|
|
|
License: GPL-1.0-or-later
|
|
URL: https://git.sr.ht/~gotmax23/forge-srpm-macros
|
|
Source0: %{url}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: make
|
|
%if %{with tests}
|
|
BuildRequires: python3-pytest
|
|
BuildRequires: python3-pyyaml
|
|
# For %%pytest definition
|
|
BuildRequires: python3-rpm-macros
|
|
%endif
|
|
|
|
# We require macros and lua defined in redhat-rpm-config
|
|
# We constrain this to the version released after the code was split out that
|
|
# doesn't contain the same files.
|
|
%if (0%{?fedora} >= 40 || 0%{?rhel} >= 10)
|
|
Requires: redhat-rpm-config >= 266-1
|
|
%elif 0%{?fedora} == 39
|
|
Requires: redhat-rpm-config >= 265-1
|
|
%else
|
|
# For testing purposes on older releases,
|
|
# we can depend on any version of redhat-rpm-config.
|
|
Requires: redhat-rpm-config
|
|
%endif
|
|
|
|
|
|
%description
|
|
%{summary}.
|
|
|
|
|
|
%prep
|
|
%autosetup -n %{name}-v%{version}
|
|
|
|
|
|
%build
|
|
%if %{defined epel}
|
|
%make_build epel-build
|
|
%endif
|
|
|
|
|
|
%install
|
|
%make_build \
|
|
DESTDIR=%{buildroot} \
|
|
RPMMACRODIR=%{_rpmmacrodir} RPMLUADIR=%{_rpmluadir} %{?epel:epel-}install
|
|
|
|
|
|
%check
|
|
%if %{with tests}
|
|
export MACRO_DIR=%{buildroot}%{_rpmmacrodir}
|
|
export MACRO_LUA_DIR="%{buildroot}%{_rpmluadir}"
|
|
%pytest
|
|
%endif
|
|
|
|
|
|
%files
|
|
%license LICENSES/GPL-1.0-or-later.txt
|
|
%doc README.md NEWS.md
|
|
%if %{undefined epel}
|
|
%{_rpmluadir}/fedora/srpm/forge.lua
|
|
%{_rpmluadir}/fedora/srpm/_forge_util.lua
|
|
%{_rpmmacrodir}/macros.forge
|
|
%else
|
|
%{_rpmluadir}/fedora/srpm/forge_epel.lua
|
|
%{_rpmluadir}/fedora/srpm/_forge_epel_util.lua
|
|
%{_rpmmacrodir}/macros.zzz-forge_epel
|
|
%endif
|
|
|
|
|
|
%changelog
|
|
* Fri Sep 27 2024 Maxwell G <maxwell@gtmx.me> - 0.4.0-1
|
|
- Update to 0.4.0.
|
|
|
|
* Wed Aug 7 2024 Maxwell G <maxwell@gtmx.me> - 0.3.2-1
|
|
- Update to 0.3.2.
|
|
|
|
* Wed Apr 10 2024 Maxwell G <maxwell@gtmx.me> - 0.3.1-1
|
|
- Update to 0.3.1.
|
|
|
|
* Sat Mar 2 2024 Maxwell G <maxwell@gtmx.me> - 0.3.0-1
|
|
- Update to 0.3.0.
|
|
|
|
* Thu Dec 7 2023 Maxwell G <maxwell@gtmx.me> - 0.2.0-1
|
|
- Update to 0.2.0.
|
|
|
|
* Mon Sep 4 2023 Maxwell G <maxwell@gtmx.me> - 0.1.0-1
|
|
- Update to 0.1.0.
|
|
|
|
* Sun Aug 13 2023 Maxwell G <maxwell@gtmx.me> - 0.0.1-1
|
|
- Update to 0.0.1.
|