public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
To: git-commits@fedoraproject.org
Subject: [rpms/rpkg] 1.70-1: New release 1.62
Date: Mon, 10 Aug 2026 21:44:16 GMT	[thread overview]
Message-ID: <178639825656.1.11895817835057626947.rpms-rpkg-1be3bb1c417a@fedoraproject.org> (raw)

            A new commit has been pushed.

            Repo   : rpms/rpkg
            Branch : 1.70-1
            Commit : 1be3bb1c417a6485a1d878800034fa89d65b9bee
            Author : Ondřej Nosek <onosek@redhat.com>
            Date   : 2020-12-03T16:06:41+00:00
            Stats  : +17/-39 in 3 file(s)
            URL    : https://src.fedoraproject.org/rpms/rpkg/c/1be3bb1c417a6485a1d878800034fa89d65b9bee?branch=1.70-1

            Log:
            New release 1.62

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

---
diff --git a/.gitignore b/.gitignore
index 504ced8..1732947 100644
--- a/.gitignore
+++ b/.gitignore
@@ -57,3 +57,4 @@
 /rpkg-1.59.tar.gz
 /rpkg-1.60.tar.gz
 /rpkg-1.61.tar.gz
+/rpkg-1.62.tar.gz

diff --git a/rpkg.spec b/rpkg.spec
index 7d19406..74e5bb9 100644
--- a/rpkg.spec
+++ b/rpkg.spec
@@ -1,5 +1,5 @@
 Name:           rpkg
-Version:        1.61
+Version:        1.62
 Release:        1%{?dist}
 
 Summary:        Python library for interacting with rpm+git
@@ -19,6 +19,7 @@ Source0:        https://pagure.io/releases/rpkg/%{name}-%{version}.tar.gz
 Patch0:         remove-koji-and-rpm-py-installer-from-requires.patch
 Patch1:         0001-Do-not-use-pytest-related-dependencies-temporarily.patch
 
+# RHEL7 is currently the only release that is built for Python 2.
 %if 0%{?fedora} || 0%{?rhel} > 7
 # Disable python2 build by default
 %global with_python2 0
@@ -48,59 +49,26 @@ BuildRequires:  rpmlint
 BuildRequires:  python2-koji >= 1.17
 BuildRequires:  python2-cccolutils
 BuildRequires:  PyYAML
-
-%if 0%{?rhel}
 BuildRequires:  GitPython
 BuildRequires:  python-pycurl
 BuildRequires:  python-requests
 BuildRequires:  python-six >= 1.9.0
-%else
-BuildRequires:  python2-GitPython
-BuildRequires:  python2-pycurl
-BuildRequires:  python2-requests
-BuildRequires:  python2-six >= 1.9.0
-BuildRequires:  python2-openidc-client
-BuildRequires:  python2-libmodulemd
-%endif
-
-%if 0%{?rhel} && 0%{?rhel} < 7
-BuildRequires:  python-argparse
-BuildRequires:  python-mock
-BuildRequires:  python-nose
-BuildRequires:  python-setuptools
-BuildRequires:  python-unittest2
-%else
 BuildRequires:  python2-mock
 BuildRequires:  python2-nose
 BuildRequires:  python2-setuptools
-%endif
 
 Requires:       mock
 Requires:       redhat-rpm-config
 Requires:       rpm-build
 Requires:       rpmlint
-
 Requires:       python2-cccolutils
 Requires:       python2-koji >= 1.17
 Requires:       PyYAML
-
-%if 0%{?rhel}
 Requires:       GitPython >= 0.2.0
 Requires:       python-pycurl
 Requires:       python-requests
 Requires:       python-six >= 1.9.0
 Requires:       rpm-python
-%else
-Requires:       python2-GitPython
-Requires:       python2-rpm
-Requires:       python2-pycurl
-Requires:       python2-six >= 1.9.0
-Requires:       python2-libmodulemd
-%endif
-
-%if 0%{?rhel} && 0%{?rhel} < 7
-Requires:       python-argparse
-%endif
 
 Requires:       %{name}-common = %{version}-%{release}
 
@@ -130,7 +98,7 @@ Obsoletes:      python2-rpkg < %{version}-%{release}
 BuildRequires:  python3-devel
 BuildRequires:  python3-GitPython
 BuildRequires:  python3-koji >= 1.17
-%if 0%{?rhel} > 7
+%if 0%{?rhel}
 BuildRequires:  python3-gobject-base
 BuildRequires:  libmodulemd
 %else
@@ -155,7 +123,7 @@ Requires:       rpmlint
 Requires:       python3-GitPython >= 0.2.0
 Requires:       python3-cccolutils
 Requires:       python3-koji >= 1.17
-%if 0%{?rhel} > 7
+%if 0%{?rhel}
 Requires:       python3-gobject-base
 Requires:       libmodulemd
 %else
@@ -232,9 +200,8 @@ example_cli_dir=$RPM_BUILD_ROOT%{_datadir}/%{name}/examples/cli
 
 
 %check
-# cannot use python2 -m nose on EPEL 6 (Python 2.6)
 %if 0%{?with_python2}
-nosetests tests
+%{__python2} -m nose tests
 %endif
 
 %if 0%{?with_python3}
@@ -269,6 +236,16 @@ nosetests tests
 
 
 %changelog
+* Wed Dec 02 2020 Ondřej Nosek <onosek@redhat.com> - 1.62-1
+- Allow skipping nvr checking for chain-build - rhbz#1890701 (onosek)
+- Code-style improvement - imports are sorted (onosek)
+- Fix Jenkinks tests (onosek)
+- Avoid blank lines in log files for lookaside (contyk)
+- container-build: fix help text for --isolated argument (kdreyer)
+- Add --signing-intent and --repo-url to 'flatpak-build' (otaylor)
+- Add hashtype to lookaside download path - #521 (turivniy)
+- Add new layout for packages that missing specfile - rhbz#1885771 (onosek)
+
 * Mon Sep 07 2020 Ondřej Nosek <onosek@redhat.com> - 1.61-1
 - Pytest update and MANIFEST.in prune (onosek)
 - Re-enable clog tests (onosek)

diff --git a/sources b/sources
index d0ff436..50c86e7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (rpkg-1.61.tar.gz) = e9016eca5bf5a9c5ae3c9e13ffffd53549a9db6beb1028aa5011e0222f56aa45de0ca233b956ebf756cdde78fa409b29806fde88e67b38edaae755a085b3bfe2
+SHA512 (rpkg-1.62.tar.gz) = 7d661a5289cad131917dfaa8c744222b2b57dbd3bfff110ee5dd64cd406f64545d8924ddeb505d78d558696c7d6840a88a4e77d6aa920a0c6b33d9939f05ca24

                 reply	other threads:[~2026-08-10 21:44 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=178639825656.1.11895817835057626947.rpms-rpkg-1be3bb1c417a@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