public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/fedpkg] 1.48-1: New release 1.27
@ 2026-08-10 21:45 Chenxiong Qi
  0 siblings, 0 replies; only message in thread
From: Chenxiong Qi @ 2026-08-10 21:45 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/fedpkg
Branch : 1.48-1
Commit : 975d8f5a718ca4f69625f4b06af6bc50757b62b8
Author : Chenxiong Qi <cqi@redhat.com>
Date   : 2017-02-22T15:03:15+08:00
Stats  : +9/-88 in 5 file(s)
URL    : https://src.fedoraproject.org/rpms/fedpkg/c/975d8f5a718ca4f69625f4b06af6bc50757b62b8?branch=1.48-1

Log:
New release 1.27

---
diff --git a/.gitignore b/.gitignore
index b9c4c16..aad98b4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -22,3 +22,4 @@
 /fedpkg-1.24.tar.bz2
 /fedpkg-1.25.tar.bz2
 /fedpkg-1.26.tar.bz2
+/fedpkg-1.27.tar.bz2

diff --git a/0001-Disable-anongiturl-over-https.patch b/0001-Disable-anongiturl-over-https.patch
deleted file mode 100644
index e03ad5f..0000000
--- a/0001-Disable-anongiturl-over-https.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 20f6d59990cdeca8057e21e0cc734305bd39f0b7 Mon Sep 17 00:00:00 2001
-From: Chenxiong Qi <cqi@redhat.com>
-Date: Fri, 16 Dec 2016 16:49:36 +0800
-Subject: [PATCH] Disable anongiturl over https
-
-Because of https://pagure.io/fedora-infrastructure/issue/5636, changing
-to anongiturl over https will cause build failure in Koji. After, issue
-5636 is resolved, drop this patch.
-
-Signed-off-by: Chenxiong Qi <cqi@redhat.com>
----
- conf/etc/rpkg/fedpkg.conf | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/conf/etc/rpkg/fedpkg.conf b/conf/etc/rpkg/fedpkg.conf
-index d134eda..c927b80 100644
---- a/conf/etc/rpkg/fedpkg.conf
-+++ b/conf/etc/rpkg/fedpkg.conf
-@@ -3,7 +3,7 @@ lookaside = https://src.fedoraproject.org/repo/pkgs
- lookasidehash = sha512
- lookaside_cgi = https://src.fedoraproject.org/repo/pkgs/upload.cgi
- gitbaseurl = ssh://%(user)s@pkgs.fedoraproject.org/%(module)s
--anongiturl = https://src.fedoraproject.org/git/%(module)s
-+anongiturl = git://pkgs.fedoraproject.org/%(module)s
- tracbaseurl = https://%(user)s:%(password)s@fedorahosted.org/rel-eng/login/xmlrpc
- branchre = f\d$|f\d\d$|el\d$|olpc\d$|master$
- kojiconfig = /etc/koji.conf
--- 
-2.7.4
-

diff --git a/0001-Disable-tag-inheritance-check.patch b/0001-Disable-tag-inheritance-check.patch
deleted file mode 100644
index 2864514..0000000
--- a/0001-Disable-tag-inheritance-check.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From c776c303cb86a1f9bf912c74d4abc56b6a044a78 Mon Sep 17 00:00:00 2001
-From: Chenxiong Qi <cqi@redhat.com>
-Date: Wed, 11 Jan 2017 22:46:05 +0800
-Subject: [PATCH] Disable tag inheritance check
-
-Fixes: #98
-
-Signed-off-by: Chenxiong Qi <cqi@redhat.com>
----
- CHANGELOG.rst      | 5 +++++
- fedpkg/__init__.py | 7 +++++++
- 2 files changed, 12 insertions(+)
-
-diff --git a/CHANGELOG.rst b/CHANGELOG.rst
-index 771af16..e296d72 100644
---- a/CHANGELOG.rst
-+++ b/CHANGELOG.rst
-@@ -1,6 +1,11 @@
- ChangeLog
- =========
- 
-+NEXT
-+----
-+
-+- Disable tag inheritance check - #98 (cqi)
-+
- v1.26 (2016-12-15)
- ------------------
- 
-diff --git a/fedpkg/__init__.py b/fedpkg/__init__.py
-index 1b12abe..0345c7c 100644
---- a/fedpkg/__init__.py
-+++ b/fedpkg/__init__.py
-@@ -268,6 +268,13 @@ class Commands(pyrpkg.Commands):
-         # fall through, return None
-         return None
- 
-+    def check_inheritance(self, build_target, dest_tag):
-+        """Disable check inheritance
-+
-+        Tag inheritance check is not required in Fedora when make chain build
-+        in Koji.
-+        """
-+
-     def retire(self, message):
-         """Delete all tracked files and commit a new dead.package file
- 
--- 
-2.9.3
-

diff --git a/fedpkg.spec b/fedpkg.spec
index 10ff6fa..611c555 100644
--- a/fedpkg.spec
+++ b/fedpkg.spec
@@ -7,17 +7,14 @@
 %endif
 
 Name:           fedpkg
-Version:        1.26
-Release:        6%{?dist}
+Version:        1.27
+Release:        1%{?dist}
 Summary:        Fedora utility for working with dist-git
 
 Group:          Applications/System
 License:        GPLv2+
 URL:            https://pagure.io/fedpkg
 Source0:        https://pagure.io/releases/fedpkg/%{name}-%{version}.tar.bz2
-Patch0:         0001-Disable-anongiturl-over-https.patch
-# Backported from git, drop for next upstream release
-Patch1:         0001-Disable-tag-inheritance-check.patch
 
 Requires:       redhat-rpm-config
 Requires:       pyrpkg >= 1.47
@@ -52,8 +49,6 @@ Provides the fedpkg command for working with dist-git
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
 
 %build
 %{__python} setup.py build
@@ -97,6 +92,11 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Feb 22 2017 Chenxiong Qi <cqi@redhat.com> - 1.27-1
+- Python 3.6 invalid escape sequence deprecation fixes (ville.skytta)
+- Disable tag inheritance check - #98 (cqi)
+- Enable the fix to allow anonymous clone via https
+
 * Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.26-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
 

diff --git a/sources b/sources
index de508d3..876fd9c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (fedpkg-1.26.tar.bz2) = a2929f0b1db277d34cef30f07692485230785dd385ea264838fce52ac90fe6a048e833b49e7b556b45ddb715a300aa06180861c45a3e6e999af3de310bdcadb7
+SHA512 (fedpkg-1.27.tar.bz2) = f49baa859df12fba8c650267e27a1c12fc35b2e2b5942cf104fd4ca72d0342354e41440db58b5fd798ebd50aed1f80e2a6725288c5aadd5d258eeb23986f61f9

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

only message in thread, other threads:[~2026-08-10 21:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-10 21:45 [rpms/fedpkg] 1.48-1: New release 1.27 Chenxiong Qi

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