public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/fedrq] f43: Update to 1.7.0.
@ 2026-07-14  1:11 Maxwell G
  0 siblings, 0 replies; only message in thread
From: Maxwell G @ 2026-07-14  1:11 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/fedrq
Branch : f43
Commit : 57f6f5d1731161bfbc804fe766b575c53d1d44e4
Author : Maxwell G <maxwell@gtmx.me>
Date   : 2026-07-13T20:09:12-05:00
Stats  : +21/-9 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/fedrq/c/57f6f5d1731161bfbc804fe766b575c53d1d44e4?branch=f43

Log:
Update to 1.7.0.

---
diff --git a/.gitignore b/.gitignore
index 65c1cd7..b0045a1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -36,3 +36,5 @@
 /fedrq-1.5.0.tar.gz.asc
 /fedrq-1.6.0.tar.gz
 /fedrq-1.6.0.tar.gz.asc
+/fedrq-1.7.0.tar.gz
+/fedrq-1.7.0.tar.gz.asc

diff --git a/fedrq.spec b/fedrq.spec
index f3a31c2..874e1c0 100644
--- a/fedrq.spec
+++ b/fedrq.spec
@@ -4,11 +4,12 @@
 # SPDX-License-Identifier: MIT
 # License text: https://spdx.org/licenses/MIT.html
 
-%bcond libdnf5 %[0%{?fedora} >= 38]
+%bcond libdnf5 %[ %{undefined rhel} || 0%{?rhel} >= 11 ]
+%define min_libdnf5_version 5.2.0
 
 Name:           fedrq
-Version:        1.6.0
-Release:        2%{?dist}
+Version:        1.7.0
+Release:        1%{?dist}
 Summary:        A tool to query the Fedora and EPEL repositories
 
 # - code is GPL-2.0-or-later
@@ -17,9 +18,11 @@ Summary:        A tool to query the Fedora and EPEL repositories
 # - PSF-2.0 code copied from Cpython 3.11 for older Python versions
 License:        GPL-2.0-or-later AND Unlicense AND MIT AND PSF-2.0
 URL:            https://fedrq.gtmx.me
-%global furl    https://git.sr.ht/~gotmax23/fedrq
-Source0:        %{furl}/refs/download/v%{version}/fedrq-%{version}.tar.gz
-Source1:        %{furl}/refs/download/v%{version}/fedrq-%{version}.tar.gz.asc
+%global furl    https://forge.fedoraproject.org/packaging/fedrq
+%dnl Use pre-generated sdist archive instead of forgejo archive
+%dnl Source0:        %{furl}/archive/v%{version}.tar.gz#/fedrq-%{version}.tar.gz
+Source0:        %{furl}/releases/download/v%{version}/fedrq-%{version}.tar.gz
+Source1:        %{furl}/releases/download/v%{version}/fedrq-%{version}.tar.gz.asc
 Source2:        https://meta.sr.ht/~gotmax23.pgp
 
 BuildArch:      noarch
@@ -31,13 +34,16 @@ BuildRequires:  distribution-gpg-keys
 BuildRequires:  python3-argcomplete
 BuildRequires:  python3-dnf
 %if %{with libdnf5}
-BuildRequires:  python3-libdnf5
+BuildRequires:  python3-libdnf5 >= %{min_libdnf5_version}
 %endif
 # Manpage
 BuildRequires:  scdoc
+# gpgverify
+BuildRequires:  gnupg2
 
 Requires:       (python3-dnf or python3-libdnf5)
 Suggests:       (python3-libdnf5 if dnf5)
+Requires:       (python3-libdnf5 >= %{min_libdnf5_version} if python3-libdnf5)
 Requires:       distribution-gpg-keys
 Recommends:     fedora-repos-rawhide
 Recommends:     python3-argcomplete
@@ -114,6 +120,10 @@ FEDRQ_BACKEND=libdnf5 %{py3_test_envvars} \
 
 
 %changelog
+* Mon Jul 13 2026 Maxwell G <maxwell@gtmx.me> - 1.7.0-1
+- Update to 1.7.0.
+- Switch upstream to forge.fedoraproject.org.
+
 * Thu Jun 04 2026 Python Maint <python-maint@redhat.com> - 1.6.0-2
 - Rebuilt for Python 3.15
 

diff --git a/sources b/sources
index cba3802..fe523e5 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (fedrq-1.6.0.tar.gz) = 55f4ed579668481757e61450a7ce123fe623acb9654faca1c51b3b3eeb8be7aa50fa20cebf27f648acc436c59e69ab8bdcc45e9add3029ca8d780f693be8182b
-SHA512 (fedrq-1.6.0.tar.gz.asc) = 440fdd1b1ad1ea27cd6df17171a2531b0a3b2494560e6953e16808024fda6c7ee615c3d375f16e24943b06e298b8b972cc4ab15e0e5a5d09cf5130af8c4066e1
+SHA512 (fedrq-1.7.0.tar.gz) = 3ca3f942dad18d559dbad276f5426de0f53b926c3d726f9f2b267688197b20882a7c041e31eaad7cbdf3bc8f339a8e5fb834292a8e5c45b57166c82257ff9e05
+SHA512 (fedrq-1.7.0.tar.gz.asc) = 755937647628b377b09c11081a3e965f2f896597c23f96478fb1d80db75205ef7470663bdf1b42b48f7b940107d3a46cd09181e07ed42f50819b6e1a50e81978

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-07-14  1:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-14  1:11 [rpms/fedrq] f43: Update to 1.7.0 Maxwell G

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox