public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/fedfind] test-pr-branch: New release 4.2.8: expire collections cache after a day
@ 2026-06-19 12:17 Adam Williamson
0 siblings, 0 replies; 2+ messages in thread
From: Adam Williamson @ 2026-06-19 12:17 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/fedfind
Branch : test-pr-branch
Commit : ff8ea26e4db995a2acdd034b6e1f6c28975b51a4
Author : Adam Williamson <awilliam@redhat.com>
Date : 2019-10-01T18:20:24-07:00
Stats : +10/-2 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/fedfind/c/ff8ea26e4db995a2acdd034b6e1f6c28975b51a4?branch=test-pr-branch
Log:
New release 4.2.8: expire collections cache after a day
---
diff --git a/.gitignore b/.gitignore
index 73798ef..af681bc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -75,3 +75,4 @@
/fedfind-4.2.5.tar.gz
/fedfind-4.2.6.tar.gz
/fedfind-4.2.7.tar.gz
+/fedfind-4.2.8.tar.gz
diff --git a/fedfind.spec b/fedfind.spec
index 0549b90..02737a8 100644
--- a/fedfind.spec
+++ b/fedfind.spec
@@ -23,7 +23,7 @@
%global srcname fedfind
Name: fedfind
-Version: 4.2.7
+Version: 4.2.8
Release: 1%{?dist}
Summary: Fedora compose and image finder
@@ -34,12 +34,14 @@ BuildArch: noarch
%if 0%{?with_python2}
BuildRequires: python2-devel
+BuildRequires: python2-freezegun
BuildRequires: python2-pytest
BuildRequires: python2-mock
BuildRequires: %{test_requires2}
%endif # if with_python2
%if 0%{?with_python3}
BuildRequires: python%{python3_pkgversion}-devel
+BuildRequires: python%{python3_pkgversion}-freezegun
BuildRequires: python%{python3_pkgversion}-setuptools
BuildRequires: python%{python3_pkgversion}-pytest
BuildRequires: python%{python3_pkgversion}-mock
@@ -101,6 +103,8 @@ Python 3 library package.
%prep
%autosetup -n %{srcname}-%{version} -p1
+# this is needed for doing sdist, but not for anything else
+sed -i -e '/setuptools_git/d' setup.py
%if 0%{?with_python3}
rm -rf %{py3dir}
cp -a . %{py3dir}
@@ -164,6 +168,9 @@ popd
%changelog
+* Tue Oct 01 2019 Adam Williamson <awilliam@redhat.com> - 4.2.8-1
+- New release 4.2.8: expire collections cache after a day
+
* Wed Jul 10 2019 Adam Williamson <awilliam@redhat.com> - 4.2.7-1
- New release 4.2.7: fix 'version' for update composes
diff --git a/sources b/sources
index dafba69..17bbbc3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (fedfind-4.2.7.tar.gz) = ef841611277974ef0b9c5b3c44d645954d42413dd85fd4a7f99297a70c22f18a54d44eeee8ddf192bebca798420f0da184e32189c895920b7facdddfaa83b3a7
+SHA512 (fedfind-4.2.8.tar.gz) = 9fbdfec5ea2ceed737f21e2cc33785730c5b5bcc98f37f11b62fa03f0a86ddb4abf096910f6f7ae3ee36daabbb60141f8e2125092fbe5099c6c87b8d754331d7
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [rpms/fedfind] test-pr-branch: New release 4.2.8: expire collections cache after a day
@ 2026-06-19 12:17 Adam Williamson
0 siblings, 0 replies; 2+ messages in thread
From: Adam Williamson @ 2026-06-19 12:17 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/fedfind
Branch : test-pr-branch
Commit : d51979a8c6bb1c9fc2a935cf19ea54424a861377
Author : Adam Williamson <awilliam@redhat.com>
Date : 2019-10-01T18:24:30-07:00
Stats : +11/-3 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/fedfind/c/d51979a8c6bb1c9fc2a935cf19ea54424a861377?branch=test-pr-branch
Log:
New release 4.2.8: expire collections cache after a day
---
diff --git a/.gitignore b/.gitignore
index 73798ef..af681bc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -75,3 +75,4 @@
/fedfind-4.2.5.tar.gz
/fedfind-4.2.6.tar.gz
/fedfind-4.2.7.tar.gz
+/fedfind-4.2.8.tar.gz
diff --git a/fedfind.spec b/fedfind.spec
index 26c02dc..61291f3 100644
--- a/fedfind.spec
+++ b/fedfind.spec
@@ -23,8 +23,8 @@
%global srcname fedfind
Name: fedfind
-Version: 4.2.7
-Release: 3%{?dist}
+Version: 4.2.8
+Release: 1%{?dist}
Summary: Fedora compose and image finder
License: GPLv3+
@@ -34,12 +34,14 @@ BuildArch: noarch
%if 0%{?with_python2}
BuildRequires: python2-devel
+BuildRequires: python2-freezegun
BuildRequires: python2-pytest
BuildRequires: python2-mock
BuildRequires: %{test_requires2}
%endif # if with_python2
%if 0%{?with_python3}
BuildRequires: python%{python3_pkgversion}-devel
+BuildRequires: python%{python3_pkgversion}-freezegun
BuildRequires: python%{python3_pkgversion}-setuptools
BuildRequires: python%{python3_pkgversion}-pytest
BuildRequires: python%{python3_pkgversion}-mock
@@ -101,6 +103,8 @@ Python 3 library package.
%prep
%autosetup -n %{srcname}-%{version} -p1
+# this is needed for doing sdist, but not for anything else
+sed -i -e '/setuptools_git/d' setup.py
%if 0%{?with_python3}
rm -rf %{py3dir}
cp -a . %{py3dir}
@@ -164,6 +168,9 @@ popd
%changelog
+* Tue Oct 01 2019 Adam Williamson <awilliam@redhat.com> - 4.2.8-1
+- New release 4.2.8: expire collections cache after a day
+
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 4.2.7-3
- Rebuilt for Python 3.8
diff --git a/sources b/sources
index dafba69..17bbbc3 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (fedfind-4.2.7.tar.gz) = ef841611277974ef0b9c5b3c44d645954d42413dd85fd4a7f99297a70c22f18a54d44eeee8ddf192bebca798420f0da184e32189c895920b7facdddfaa83b3a7
+SHA512 (fedfind-4.2.8.tar.gz) = 9fbdfec5ea2ceed737f21e2cc33785730c5b5bcc98f37f11b62fa03f0a86ddb4abf096910f6f7ae3ee36daabbb60141f8e2125092fbe5099c6c87b8d754331d7
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-06-19 12:17 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-19 12:17 [rpms/fedfind] test-pr-branch: New release 4.2.8: expire collections cache after a day Adam Williamson
2026-06-19 12:17 Adam Williamson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox