diff --git a/.rpmlint b/.rpmlint deleted file mode 100644 index 8c685d4..0000000 --- a/.rpmlint +++ /dev/null @@ -1,2 +0,0 @@ -from Config import * -addFilter("spelling-error .* customizable"); diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..f126b62 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,15 @@ +--- !Policy +product_versions: + - fedora-rawhide +decision_context: bodhi_update_push_stable +subject_type: koji_build +rules: + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpmdeplint.functional} +--- !Policy +product_versions: + - fedora-* +decision_context: bodhi_update_push_stable +subject_type: koji_build +rules: + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.installability.functional} + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.rpminspect.static-analysis} diff --git a/slrn.spec b/slrn.spec index 150d959..5b39a25 100644 --- a/slrn.spec +++ b/slrn.spec @@ -1,14 +1,36 @@ Summary: A threaded Internet news reader Name: slrn Version: 1.0.3a -Release: 14%{?dist} -License: GPLv2+ -URL: http://slrn.sourceforge.net/ -Source0: http://jedsoft.org/releases/%{name}/%{name}-%{version}.tar.bz2 +Release: 20%{?dist} +# COPYRIGHT: GPL-2.0-or-later +# src: GPL-2.0-or-later +# src/vms.c: "donated for use in slrn by Andrew Greer" +## Not in any binary package +# autoconf/config.guess: GPL-3.0-or-later WITH Autoconf-exception-generic-3.0 +# autoconf/config.rpath: FSFULLR +# autoconf/config.sub: GPL-3.0-or-later WITH Autoconf-exception-generic-3.0 +# autoconf/include/ax_lib_socket_nsl.m4: FSFAP +# autoconf/include/gettext.m4: GPL-1.0-or-later +# autoconf/include/iconv.m4: FSFULLR +# autoconf/include/lib-ld.m4: FSFULLR +# autoconf/include/lib-link.m4: FSFULLR +# autoconf/include/lib-prefix.m4: FSFULLR +# autoconf/include/mkdirp.m4: FSFULLR +# autoconf/include/nls.m4: FSFULLR +# autoconf/include/po.m4: FSFULLR +# autoconf/include/progtest.m4: FSFULLR +# autoconf/install.sh: HPND-sell-variant +# configure: FSFUL AND FSFAP AND FSFULLR +# contrib/cleanscore: GPL-2.0-or-later +# po/Makefile.in.in: "copied and used freely without restrictions" +License: GPL-2.0-or-later +SourceLicense: %{license} AND GPL-3.0-or-later WITH Autoconf-exception-generic-3.0 AND GPL-1.0-or-later AND HPND-sell-variant AND FSFULLR AND FSFUL AND FSFAP +URL: https://slrn.sourceforge.net/ +Source0: https://jedsoft.org/releases/%{name}/%{name}-%{version}.tar.bz2 Source1: slrn-pull-expire Source2: slrnpull.log Source4: README.rpm-slrnpull -Source5: http://jedsoft.org/releases/%{name}/%{name}-%{version}.tar.bz2.asc +Source5: https://jedsoft.org/releases/%{name}/%{name}-%{version}.tar.bz2.asc # 2016-06-09: # Merged GPG keys from https://rg3.github.io/youtube-dl/download.html in one file # gpg --export --export-options export-minimal "428D F5D6 3EF0 7494 BB45 5AC0 EBF0 1804 BCF0 5F6B" \ @@ -25,9 +47,12 @@ BuildRequires: make BuildRequires: inews BuildRequires: openssl-devel, gcc BuildRequires: slang-devel >= 2.2.3 +BuildRequires: systemd-rpm-macros # Some s-lang scripts (smime.sl) use slsh interpreter Requires: slang-slsh +%if (0%{?fedora} && 0%{?fedora} < 42) || (0%{?rhel} && 0%{?rhel} < 11) Requires(pre): shadow-utils +%endif # For source verification with gpgv BuildRequires: gnupg2 @@ -52,10 +77,10 @@ the slrnpull utility. %define shortver %(echo %{version}|tr -d 'a') gpgv2 --quiet --keyring %{SOURCE6} %{SOURCE5} %{SOURCE0} %setup -q -n %{name}-%{shortver} -%patch1 -p1 -b .nostrip -%patch2 -p1 -b .sendmail -%patch3 -p1 -b .FSFaddress -%patch4 -p1 +%patch -P1 -p1 -b .nostrip +%patch -P2 -p1 -b .sendmail +%patch -P3 -p1 -b .FSFaddress +%patch -P4 -p1 #%#patch4 -p1 -b .longsignatures for i in changes.txt; do @@ -64,6 +89,13 @@ done chmod 644 doc/slrnpull/* contrib/* +# Create a sysusers.d config file +# Static UID and GID defined by /usr/share/doc/setup-*/uidgid +cat >slrn.sysusers.conf </dev/null || groupadd -r -g 13 news getent passwd news >/dev/null || \ useradd -r -u 9 -g news -d / -s /sbin/nologin -c "news user" news exit 0 +%endif %files -f %{name}.lang %license COPYING COPYRIGHT @@ -115,6 +151,7 @@ exit 0 %{_bindir}/slrn %{_datadir}/slrn %{_mandir}/man1/slrn.1* +%{_sysusersdir}/slrn.conf %files pull %doc doc/slrnpull/* @@ -127,6 +164,24 @@ exit 0 %{_mandir}/man1/slrnpull.1* %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1.0.3a-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Tue Feb 11 2025 Zbigniew Jędrzejewski-Szmek - 1.0.3a-19 +- Add sysusers.d config file to allow rpm to create users/groups automatically + +* Sun Jan 19 2025 Fedora Release Engineering - 1.0.3a-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Fri Jul 26 2024 Miroslav Suchý - 1.0.3a-17 +- convert license to SPDX + +* Sat Jul 20 2024 Fedora Release Engineering - 1.0.3a-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Sat Jan 27 2024 Fedora Release Engineering - 1.0.3a-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 1.0.3a-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild