public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
To: git-commits@fedoraproject.org
Subject: [rpms/fedpkg] 1.48-1: New release 1.40
Date: Mon, 10 Aug 2026 21:45:55 GMT	[thread overview]
Message-ID: <178639835566.1.10122469521383965158.rpms-fedpkg-33d00a425492@fedoraproject.org> (raw)

            A new commit has been pushed.

            Repo   : rpms/fedpkg
            Branch : 1.48-1
            Commit : 33d00a425492b989f559364cffe8f38e85e00ee5
            Author : Ondřej Nosek <onosek@redhat.com>
            Date   : 2020-12-04T13:17:57+00:00
            Stats  : +22/-34 in 3 file(s)
            URL    : https://src.fedoraproject.org/rpms/fedpkg/c/33d00a425492b989f559364cffe8f38e85e00ee5?branch=1.48-1

            Log:
            New release 1.40

Signed-off-by: Ondřej Nosek <onosek@redhat.com>

---
diff --git a/.gitignore b/.gitignore
index 52b6f2a..5cc9960 100644
--- a/.gitignore
+++ b/.gitignore
@@ -35,3 +35,4 @@
 /fedpkg-1.37.tar.bz2
 /fedpkg-1.38.tar.bz2
 /fedpkg-1.39.tar.bz2
+/fedpkg-1.40.tar.bz2

diff --git a/fedpkg.spec b/fedpkg.spec
index 32b1a3e..e1793f7 100644
--- a/fedpkg.spec
+++ b/fedpkg.spec
@@ -4,7 +4,7 @@
 %endif
 
 Name:           fedpkg
-Version:        1.39
+Version:        1.40
 Release:        1%{?dist}
 Summary:        Fedora utility for working with dist-git
 
@@ -15,7 +15,7 @@ Source0:        https://pagure.io/releases/fedpkg/%{name}-%{version}.tar.bz2
 BuildArch:      noarch
 Patch1:         0001-Do-not-use-pytest-related-dependencies-temporarily.patch
 
-# fedpkg command switched to python3 on Fedora 29 and RHEL > 7:
+# RHEL7 is currently the only release that is built for Python 2.
 %if 0%{?fedora} || 0%{?rhel} > 7
 %bcond_with python2
 %else
@@ -36,40 +36,21 @@ Requires:       redhat-rpm-config
 
 BuildRequires:  python2-devel
 # We br these things for man page generation due to imports
-BuildRequires:  python2-rpkg >= 1.60-3
+BuildRequires:  python2-rpkg >= 1.61-1
 BuildRequires:  python2-distro
-# This until fedora-cert gets fixed
 BuildRequires:  python2-fedora
 # For testing
 BuildRequires:  python2-mock
-
-
-%if 0%{?rhel} && 0%{?rhel} < 7
-BuildRequires:  python-nose
-BuildRequires:  python-setuptools
-BuildRequires:  python-unittest2
-BuildRequires:  python-freezegun
-%else
 BuildRequires:  python2-nose
 BuildRequires:  python2-setuptools
 BuildRequires:  python2-freezegun
-%endif
 
-%if 0%{?fedora} || (0%{?rhel} && 0%{?rhel} == 7)
-# Only bodhi-client>=2.0 is supported. EL6 has older version bodhi-client<1.0
 BuildRequires:  bodhi-client >= 2.0
-Requires:       bodhi-client >= 2.0
-%endif
-
-%if (0%{?rhel} && 0%{?rhel} <= 7)
 BuildRequires:  python-bugzilla
-Requires:       python-bugzilla
-%else
-BuildRequires:  python2-bugzilla
-Requires:       python2-bugzilla
-%endif
 
-Requires:       python2-rpkg >= 1.60-3
+Requires:       bodhi-client >= 2.0
+Requires:       python-bugzilla
+Requires:       python2-rpkg >= 1.61-1
 Requires:       python2-distro
 Requires:       python2-fedora
 Requires:       python2-openidc-client >= 0.6.0
@@ -80,9 +61,8 @@ Requires:       python2-openidc-client >= 0.6.0
 %global __python %{__python3}
 
 BuildRequires:  python3-devel
-BuildRequires:  python3-rpkg >= 1.60-3
+BuildRequires:  python3-rpkg >= 1.61-1
 BuildRequires:  python3-distro
-# This until fedora-cert gets fixed
 BuildRequires:  python3-fedora
 # For testing
 BuildRequires:  python3-mock
@@ -94,7 +74,7 @@ BuildRequires:  python3-bodhi-client
 
 
 Requires:       python3-bugzilla
-Requires:       python3-rpkg >= 1.60-3
+Requires:       python3-rpkg >= 1.61-1
 Requires:       python3-distro
 Requires:       python3-fedora
 Requires:       python3-openidc-client >= 0.6.0
@@ -132,11 +112,10 @@ mv %{buildroot}%{compdir}/fedpkg.bash %{buildroot}%{compdir}/fedpkg
 
 
 %check
-%if 0%{?rhel} == 6
-# cannot use -m nose on EL6 (python 2.6)
-nosetests
+%if %{with python2}
+%{__python2} -m nose
 %else
-%{__python} -m nose
+%{__python3} -m nose
 %endif
 
 
@@ -164,7 +143,15 @@ nosetests
 
 
 %changelog
-* Wed Sep 09 2020 Ondřej Nosek <onosek@redhat.com> - 1.38-1
+* Fri Dec 04 2020 Ondřej Nosek <onosek@redhat.com> - 1.40-1
+- Tests for "--release eln" (onosek)
+- Add support for using "--release eln" (mmathesi)
+- Fix Python 2 tests for epel7 (onosek)
+- Do not show warning when 'package.cfg' is missing - #417 (onosek)
+- Fix tests - #414 (michel)
+- Revert "Support for epel*-playground branch requests" - #414 (michel)
+
+* Wed Sep 09 2020 Ondřej Nosek <onosek@redhat.com> - 1.39-1
 - Pytest replaces nosetests (onosek)
 - More specific regex to detect bugs in changelog (onosek)
 - Print response data from Pagure for debugging (onosek)

diff --git a/sources b/sources
index 2a81bf5..c472e28 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (fedpkg-1.39.tar.bz2) = 5c02e9d3bdad055dd54e6058e160b97f29239b6a5ce0d9afb6f4675c460a474c04e0d3ae8b72507c0ec2d6578ecb6598dcadfaed092842e9cfa2ca069db1c35a
+SHA512 (fedpkg-1.40.tar.bz2) = 891eb5bf5927115e327259b9baef806257e46d14361ba2dad5897ef3c3cbe90b252c69424c0e5da23c51e318eeb40804c7aa1bc6611fedec4c2a75c7c0291f49

                 reply	other threads:[~2026-08-10 21:45 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178639835566.1.10122469521383965158.rpms-fedpkg-33d00a425492@fedoraproject.org \
    --to=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox