ignatenkobrain pushed to python-flask-restful (epel8). "update to
0.3.5"
by notificationsï¼ fedoraproject.org
Notification time stamped 2021-03-31 17:01:14 UTC
From 5d5e0753dc569cab4bc0ca0a9e71e6789fd03eb4 Mon Sep 17 00:00:00 2001
From: Jan Sedlák <jsedlak(a)redhat.com>
Date: Dec 11 2015 13:51:39 +0000
Subject: update to 0.3.5
---
diff --git a/.gitignore b/.gitignore
index d77004f..9a46107 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
/0.3.3.tar.gz
/0.3.4.tar.gz
+/0.3.5.tar.gz
diff --git a/0.3.4.tar.gz b/0.3.4.tar.gz
deleted file mode 100644
index 87ef565..0000000
Binary files a/0.3.4.tar.gz and /dev/null differ
diff --git a/python-flask-restful.spec b/python-flask-restful.spec
index a6ee901..9ac2bd9 100644
--- a/python-flask-restful.spec
+++ b/python-flask-restful.spec
@@ -8,8 +8,8 @@
%global sum Simple framework for creating REST APIs for Flask
Name: python-%{srcname}
-Version: 0.3.4
-Release: 3%{?dist}
+Version: 0.3.5
+Release: 1%{?dist}
Summary: %{sum}
Group: Development/Languages
@@ -100,6 +100,9 @@ rm -rf docs/_themes/.gitignore
%{python3_sitelib}/*
%changelog
+* Fri Dec 11 2015 Jan Sedlak <jsedlak(a)redhat.com> - 0.3.5-1
+- update to newest version
+
* Fri Nov 13 2015 Jan Sedlak <jsedlak(a)redhat.com> - 0.3.4-3
- change specfile to be more aligned with guidelines
diff --git a/sources b/sources
index d008d79..3a9906a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-becc4a527ab697cc05f567b511619dcc 0.3.4.tar.gz
+fd65c8fc5eaf5ff87c0e0733a904f1c1 0.3.5.tar.gz
https://src.fedoraproject.org/rpms/python-flask-restful/c/5d5e0753dc569ca...
1Â year, 12Â months
ignatenkobrain pushed to python-flask-restful (epel8). "rebuild
because of specfile changes"
by notificationsï¼ fedoraproject.org
Notification time stamped 2021-03-31 17:01:14 UTC
From 8390c78b1afadbfedc24bfa82c774992500ab945 Mon Sep 17 00:00:00 2001
From: Jan Sedlák <jsedlak(a)redhat.com>
Date: Nov 13 2015 11:45:58 +0000
Subject: rebuild because of specfile changes
---
diff --git a/python-flask-restful.remove_q0_testcase.patch b/python-flask-restful.remove_q0_testcase.patch
new file mode 100644
index 0000000..1a50171
--- /dev/null
+++ b/python-flask-restful.remove_q0_testcase.patch
@@ -0,0 +1,29 @@
+--- tests/test_accept.py.orig 2015-11-13 12:06:18.914003153 +0100
++++ tests/test_accept.py 2015-11-13 12:04:42.786435117 +0100
+@@ -121,26 +121,6 @@
+ assert_equals(res.content_type, 'text/plain')
+
+
+- def test_accept_no_default_match_q0_not_acceptable(self):
+- """
+- q=0 should be considered NotAcceptable,
+- but this depends on werkzeug >= 1.0 which is not yet released
+- so this test is expected to fail until we depend on werkzeug >= 1.0
+- """
+- class Foo(flask_restful.Resource):
+- def get(self):
+- return "data"
+-
+- app = Flask(__name__)
+- api = flask_restful.Api(app, default_mediatype=None)
+-
+- api.add_resource(Foo, '/')
+-
+- with app.test_client() as client:
+- res = client.get('/', headers=[('Accept', 'application/json; q=0')])
+- assert_equals(res.status_code, 406)
+- assert_equals(res.content_type, 'application/json')
+-
+ def test_accept_no_default_accept_highest_quality_of_two(self):
+ class Foo(flask_restful.Resource):
+ def get(self):
diff --git a/python-flask-restful.spec b/python-flask-restful.spec
index e9bc46e..800e6aa 100644
--- a/python-flask-restful.spec
+++ b/python-flask-restful.spec
@@ -4,30 +4,21 @@
%{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
%endif
-%if (0%{?fedora} > 12)
-%global with_python3 1
-%endif
-
-%global pkgname python-flask-restful
-%global tarball_name flask-restful
+%global srcname flask-restful
+%global sum Simple framework for creating REST APIs for Flask
-Name: python-flask-restful
+Name: python-%{srcname}
Version: 0.3.4
Release: 1%{?dist}
-Summary: Simple framework for creating REST APIs for Flask
+Summary: %{sum}
Group: Development/Languages
License: BSD
-URL: https://www.github.com/flask-restful/flask-restful/
-Source0: https://github.com/flask-restful/%{tarball_name}/archive/%{version}.tar.gz
-Patch0: remove_q0_testcase.patch
+URL: https://www.github.com/%{srcname}/%{srcname}/
+Source0: https://github.com/%{srcname}/%{srcname}/archive/%{version}.tar.gz
+Patch0: python-flask-restful.remove_q0_testcase.patch
BuildArch: noarch
-
-Requires: python-flask
-Requires: python-six
-Requires: python-aniso8601
-Requires: pytz
# those are needed for tests:
BuildRequires: python-flask
BuildRequires: python-six
@@ -39,20 +30,6 @@ BuildRequires: python-nose
BuildRequires: python-mock
BuildRequires: python-blinker
BuildRequires: python-crypto
-
-%description
-Flask-RESTful is Python 2 extension for Flask that adds support
-for quickly building REST APIs. It is a lightweight abstraction
-that works with your existing ORM/libraries.
-
-%if 0%{?with_python3}
-%package -n python3-flask-restful
-Summary: %{summary}
-Requires: python3-flask
-Requires: python3-six
-Requires: python3-aniso8601
-Requires: python3-pytz
-# those are needed for tests:
BuildRequires: python3-flask
BuildRequires: python3-six
BuildRequires: python3-aniso8601
@@ -64,62 +41,73 @@ BuildRequires: python3-mock
BuildRequires: python3-blinker
BuildRequires: python3-crypto
-%description -n python3-flask-restful
+%description
+Flask-RESTful is Python extension for Flask that adds support
+for quickly building REST APIs. It is a lightweight abstraction
+that works with your existing ORM/libraries.
+
+%package -n python2-%{srcname}
+Summary: %{sum}
+Requires: python-flask
+Requires: python-six
+Requires: python-aniso8601
+Requires: pytz
+%{?python_provide:%python_provide python2-%{srcname}}
+
+%description -n python2-%{srcname}
+Flask-RESTful is Python 2 extension for Flask that adds support
+for quickly building REST APIs. It is a lightweight abstraction
+that works with your existing ORM/libraries.
+
+%package -n python3-%{srcname}
+Summary: %{sum}
+Requires: python3-flask
+Requires: python3-six
+Requires: python3-aniso8601
+Requires: python3-pytz
+%{?python_provide:%python_provide python3-%{srcname}}
+
+%description -n python3-%{srcname}
Flask-RESTful is Python 3 extension for Flask that adds support
for quickly building REST APIs. It is a lightweight abstraction
that works with your existing ORM/libraries.
-%endif
%prep
-%setup -qn %{tarball_name}-%{version}
+%setup -qn %{srcname}-%{version}
rm -rf docs/_themes/.gitignore
-%patch0 -p1
-
-%if 0%{?with_python3}
-rm -rf %{py3dir}
-cp -a . %{py3dir}
-find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
-%endif
+%patch0
%build
-%{__python2} setup.py build
-
-%if 0%{?with_python3}
-pushd %{py3dir}
-%{__python3} setup.py build
-popd
-%endif
+%py2_build
+%py3_build
%install
-%{__python2} setup.py install --skip-build --root %{buildroot}
-%if 0%{?with_python3}
-pushd %{py3dir}
-%{__python3} setup.py install --skip-build --root %{buildroot}
-popd
-%endif
+%py2_install
+%py3_install
%check
%{__python2} setup.py test
-%if 0%{?with_python3}
%{__python3} setup.py test
-%endif
-%files
+%files -n python2-%{srcname}
%doc AUTHORS.md README.md examples/ docs/
%license LICENSE
%{python2_sitelib}/*
-%if 0%{?with_python3}
-%files -n python3-flask-restful
+%files -n python3-%{srcname}
%doc AUTHORS.md README.md examples/ docs/
%license LICENSE
%{python3_sitelib}/*
-%endif
%changelog
+* Fri Nov 13 2015 Jan Sedlak <jsedlak(a)redhat.com> - 0.3.4-2
+- change specfile to be more aligned with guidelines
+
* Thu Aug 20 2015 Jan Sedlak <jsedlak(a)redhat.com> - 0.3.4-1
- update version, correct project URL
+
* Tue Jul 07 2015 Jan Sedlak <jsedlak(a)redhat.com> - 0.3.3-1
- package newest version
+
* Wed Jan 22 2014 Jan Sedlak <jsedlak(a)redhat.com> - 0.2.11-1
- initial packaging
diff --git a/remove_q0_testcase.patch b/remove_q0_testcase.patch
deleted file mode 100644
index acc98b3..0000000
--- a/remove_q0_testcase.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From dd42963452e8bb79fb4baef11b47c6e3a41a3491 Mon Sep 17 00:00:00 2001
-From: Garret Raziel <boloomka(a)gmail.com>
-Date: Tue, 7 Jul 2015 16:15:17 +0200
-Subject: [PATCH] remove q=0 testcase
-
----
- tests/test_accept.py | 20 --------------------
- 1 file changed, 20 deletions(-)
-
-diff --git a/tests/test_accept.py b/tests/test_accept.py
-index 7d78118..1f294e9 100644
---- a/tests/test_accept.py
-+++ b/tests/test_accept.py
-@@ -121,26 +121,6 @@ class AcceptTestCase(unittest.TestCase):
- assert_equals(res.content_type, 'text/plain')
-
-
-- def test_accept_no_default_match_q0_not_acceptable(self):
-- """
-- q=0 should be considered NotAcceptable,
-- but this depends on werkzeug >= 1.0 which is not yet released
-- so this test is expected to fail until we depend on werkzeug >= 1.0
-- """
-- class Foo(flask_restful.Resource):
-- def get(self):
-- return "data"
--
-- app = Flask(__name__)
-- api = flask_restful.Api(app, default_mediatype=None)
--
-- api.add_resource(Foo, '/')
--
-- with app.test_client() as client:
-- res = client.get('/', headers=[('Accept', 'application/json; q=0')])
-- assert_equals(res.status_code, 406)
-- assert_equals(res.content_type, 'application/json')
--
- def test_accept_no_default_accept_highest_quality_of_two(self):
- class Foo(flask_restful.Resource):
- def get(self):
---
-2.4.3
-
https://src.fedoraproject.org/rpms/python-flask-restful/c/8390c78b1afadbf...
1Â year, 12Â months
ignatenkobrain pushed to python-flask-restful (epel8). "update
version, correct project URL"
by notificationsï¼ fedoraproject.org
Notification time stamped 2021-03-31 17:01:14 UTC
From 1414fd2cc3f937e4baecfe92599fd1f7d2f5c3aa Mon Sep 17 00:00:00 2001
From: Jan Sedlák <jsedlak(a)redhat.com>
Date: Aug 20 2015 07:57:03 +0000
Subject: update version, correct project URL
---
diff --git a/.gitignore b/.gitignore
index 747a504..d77004f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/0.3.3.tar.gz
+/0.3.4.tar.gz
diff --git a/0.3.4.tar.gz b/0.3.4.tar.gz
new file mode 100644
index 0000000..87ef565
Binary files /dev/null and b/0.3.4.tar.gz differ
diff --git a/python-flask-restful.spec b/python-flask-restful.spec
index 639318f..e9bc46e 100644
--- a/python-flask-restful.spec
+++ b/python-flask-restful.spec
@@ -12,13 +12,13 @@
%global tarball_name flask-restful
Name: python-flask-restful
-Version: 0.3.3
+Version: 0.3.4
Release: 1%{?dist}
Summary: Simple framework for creating REST APIs for Flask
Group: Development/Languages
License: BSD
-URL: https://www.github.com/twilio/flask-restful/
+URL: https://www.github.com/flask-restful/flask-restful/
Source0: https://github.com/flask-restful/%{tarball_name}/archive/%{version}.tar.gz
Patch0: remove_q0_testcase.patch
@@ -117,6 +117,8 @@ popd
%endif
%changelog
+* Thu Aug 20 2015 Jan Sedlak <jsedlak(a)redhat.com> - 0.3.4-1
+- update version, correct project URL
* Tue Jul 07 2015 Jan Sedlak <jsedlak(a)redhat.com> - 0.3.3-1
- package newest version
* Wed Jan 22 2014 Jan Sedlak <jsedlak(a)redhat.com> - 0.2.11-1
diff --git a/sources b/sources
index 6c4556b..d008d79 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-2ed0e4f3b56e5064bf916014adbf7c60 0.3.3.tar.gz
+becc4a527ab697cc05f567b511619dcc 0.3.4.tar.gz
https://src.fedoraproject.org/rpms/python-flask-restful/c/1414fd2cc3f937e...
1Â year, 12Â months
ignatenkobrain pushed to python-flask-restful (epel8). "Initial
import (#1061732)."
by notificationsï¼ fedoraproject.org
Notification time stamped 2021-03-31 17:01:14 UTC
From 51de2ac621ff30c7e7a605363cc4f0c44a30c509 Mon Sep 17 00:00:00 2001
From: Jan Sedlák <jsedlak(a)redhat.com>
Date: Aug 20 2015 06:53:38 +0000
Subject: Initial import (#1061732).
---
diff --git a/.gitignore b/.gitignore
index e69de29..747a504 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/0.3.3.tar.gz
diff --git a/python-flask-restful.spec b/python-flask-restful.spec
new file mode 100644
index 0000000..639318f
--- /dev/null
+++ b/python-flask-restful.spec
@@ -0,0 +1,123 @@
+%if 0%{?rhel} && 0%{?rhel} <= 6
+%{!?__python2: %global __python2 /usr/bin/python}
+%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
+%{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
+%endif
+
+%if (0%{?fedora} > 12)
+%global with_python3 1
+%endif
+
+%global pkgname python-flask-restful
+%global tarball_name flask-restful
+
+Name: python-flask-restful
+Version: 0.3.3
+Release: 1%{?dist}
+Summary: Simple framework for creating REST APIs for Flask
+
+Group: Development/Languages
+License: BSD
+URL: https://www.github.com/twilio/flask-restful/
+Source0: https://github.com/flask-restful/%{tarball_name}/archive/%{version}.tar.gz
+Patch0: remove_q0_testcase.patch
+
+BuildArch: noarch
+
+Requires: python-flask
+Requires: python-six
+Requires: python-aniso8601
+Requires: pytz
+# those are needed for tests:
+BuildRequires: python-flask
+BuildRequires: python-six
+BuildRequires: python-aniso8601
+BuildRequires: pytz
+BuildRequires: python2-devel
+BuildRequires: python-setuptools
+BuildRequires: python-nose
+BuildRequires: python-mock
+BuildRequires: python-blinker
+BuildRequires: python-crypto
+
+%description
+Flask-RESTful is Python 2 extension for Flask that adds support
+for quickly building REST APIs. It is a lightweight abstraction
+that works with your existing ORM/libraries.
+
+%if 0%{?with_python3}
+%package -n python3-flask-restful
+Summary: %{summary}
+Requires: python3-flask
+Requires: python3-six
+Requires: python3-aniso8601
+Requires: python3-pytz
+# those are needed for tests:
+BuildRequires: python3-flask
+BuildRequires: python3-six
+BuildRequires: python3-aniso8601
+BuildRequires: python3-pytz
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-nose
+BuildRequires: python3-mock
+BuildRequires: python3-blinker
+BuildRequires: python3-crypto
+
+%description -n python3-flask-restful
+Flask-RESTful is Python 3 extension for Flask that adds support
+for quickly building REST APIs. It is a lightweight abstraction
+that works with your existing ORM/libraries.
+%endif
+
+%prep
+%setup -qn %{tarball_name}-%{version}
+rm -rf docs/_themes/.gitignore
+%patch0 -p1
+
+%if 0%{?with_python3}
+rm -rf %{py3dir}
+cp -a . %{py3dir}
+find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
+%endif
+
+%build
+%{__python2} setup.py build
+
+%if 0%{?with_python3}
+pushd %{py3dir}
+%{__python3} setup.py build
+popd
+%endif
+
+%install
+%{__python2} setup.py install --skip-build --root %{buildroot}
+%if 0%{?with_python3}
+pushd %{py3dir}
+%{__python3} setup.py install --skip-build --root %{buildroot}
+popd
+%endif
+
+%check
+%{__python2} setup.py test
+%if 0%{?with_python3}
+%{__python3} setup.py test
+%endif
+
+%files
+%doc AUTHORS.md README.md examples/ docs/
+%license LICENSE
+%{python2_sitelib}/*
+
+%if 0%{?with_python3}
+%files -n python3-flask-restful
+%doc AUTHORS.md README.md examples/ docs/
+%license LICENSE
+%{python3_sitelib}/*
+%endif
+
+%changelog
+* Tue Jul 07 2015 Jan Sedlak <jsedlak(a)redhat.com> - 0.3.3-1
+- package newest version
+* Wed Jan 22 2014 Jan Sedlak <jsedlak(a)redhat.com> - 0.2.11-1
+- initial packaging
diff --git a/remove_q0_testcase.patch b/remove_q0_testcase.patch
new file mode 100644
index 0000000..acc98b3
--- /dev/null
+++ b/remove_q0_testcase.patch
@@ -0,0 +1,43 @@
+From dd42963452e8bb79fb4baef11b47c6e3a41a3491 Mon Sep 17 00:00:00 2001
+From: Garret Raziel <boloomka(a)gmail.com>
+Date: Tue, 7 Jul 2015 16:15:17 +0200
+Subject: [PATCH] remove q=0 testcase
+
+---
+ tests/test_accept.py | 20 --------------------
+ 1 file changed, 20 deletions(-)
+
+diff --git a/tests/test_accept.py b/tests/test_accept.py
+index 7d78118..1f294e9 100644
+--- a/tests/test_accept.py
++++ b/tests/test_accept.py
+@@ -121,26 +121,6 @@ class AcceptTestCase(unittest.TestCase):
+ assert_equals(res.content_type, 'text/plain')
+
+
+- def test_accept_no_default_match_q0_not_acceptable(self):
+- """
+- q=0 should be considered NotAcceptable,
+- but this depends on werkzeug >= 1.0 which is not yet released
+- so this test is expected to fail until we depend on werkzeug >= 1.0
+- """
+- class Foo(flask_restful.Resource):
+- def get(self):
+- return "data"
+-
+- app = Flask(__name__)
+- api = flask_restful.Api(app, default_mediatype=None)
+-
+- api.add_resource(Foo, '/')
+-
+- with app.test_client() as client:
+- res = client.get('/', headers=[('Accept', 'application/json; q=0')])
+- assert_equals(res.status_code, 406)
+- assert_equals(res.content_type, 'application/json')
+-
+ def test_accept_no_default_accept_highest_quality_of_two(self):
+ class Foo(flask_restful.Resource):
+ def get(self):
+--
+2.4.3
+
diff --git a/sources b/sources
index e69de29..6c4556b 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+2ed0e4f3b56e5064bf916014adbf7c60 0.3.3.tar.gz
https://src.fedoraproject.org/rpms/python-flask-restful/c/51de2ac621ff30c...
1Â year, 12Â months
catanzaro pushed to gnome-shell-extension-background-logo (rawhide).
"Fix logo flickering"
by notificationsï¼ fedoraproject.org
Notification time stamped 2021-03-31 17:01:14 UTC
From 175711d74d06cb3b5799fef2e3fb6a0bdafb9f40 Mon Sep 17 00:00:00 2001
From: Michael Catanzaro <mcatanzaro(a)gnome.org>
Date: Mar 31 2021 17:01:08 +0000
Subject: Fix logo flickering
---
diff --git a/gnome-shell-extension-background-logo.spec b/gnome-shell-extension-background-logo.spec
index bd9489c..358abf7 100644
--- a/gnome-shell-extension-background-logo.spec
+++ b/gnome-shell-extension-background-logo.spec
@@ -3,7 +3,7 @@
Name: gnome-shell-extension-background-logo
Version: 40.0~rc
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Background logo extension for GNOME Shell
License: GPLv2+
https://src.fedoraproject.org/rpms/gnome-shell-extension-background-logo/...
1Â year, 12Â months
catanzaro pushed to gnome-shell-extension-background-logo (rawhide).
"Fix logo flickering"
by notificationsï¼ fedoraproject.org
Notification time stamped 2021-03-31 17:00:49 UTC
From 34839235cac1f2680cc761756bdc5ac8e8cc8bbb Mon Sep 17 00:00:00 2001
From: Michael Catanzaro <mcatanzaro(a)gnome.org>
Date: Mar 31 2021 17:00:43 +0000
Subject: Fix logo flickering
---
diff --git a/32.patch b/32.patch
new file mode 100644
index 0000000..d1d4dfc
--- /dev/null
+++ b/32.patch
@@ -0,0 +1,33 @@
+From 423119599c7a98dc51dda6e5260c992e21438d60 Mon Sep 17 00:00:00 2001
+From: Carlos Garnacho <carlosg(a)gnome.org>
+Date: Mar 31 2021 16:40:10 +0000
+Subject: extension: Do not relayout on scale changes
+
+
+This makes the background logo position flicker as we enter the
+overview. This actor is part of the BackgroundActor actor hierarchy,
+and can be left to scale neatly with it.
+
+Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1943938
+
+---
+
+diff --git a/extension.js b/extension.js
+index d1bf35b..edf2868 100644
+--- a/extension.js
++++ b/extension.js
+@@ -25,13 +25,6 @@ var IconContainer = GObject.registerClass(
+ class IconContainer extends St.Widget {
+ _init(params) {
+ super._init(params);
+-
+- this.connect('notify::scale-x', () => {
+- this.queue_relayout();
+- });
+- this.connect('notify::scale-y', () => {
+- this.queue_relayout();
+- });
+ }
+
+ vfunc_get_preferred_width(forHeight) {
+
diff --git a/gnome-shell-extension-background-logo.spec b/gnome-shell-extension-background-logo.spec
index 41176c3..bd9489c 100644
--- a/gnome-shell-extension-background-logo.spec
+++ b/gnome-shell-extension-background-logo.spec
@@ -17,6 +17,9 @@ BuildRequires: git
Requires: gnome-shell >= %{shell_version}
+# https://pagure.io/background-logo-extension/pull-request/32
+Patch0: 32.patch
+
%description
Show your pride! Display the Fedora logo (or any other graphic) in the corner of your desktop.
@@ -36,6 +39,9 @@ Show your pride! Display the Fedora logo (or any other graphic) in the corner of
%{_datadir}/gnome-shell/extensions/background-logo(a)fedorahosted.org/
%changelog
+* Wed Mar 31 2021 Michael Catanzaro <mcatanzaro(a)redhat.com> - 40.0~rc-2
+- Fix logo flickering
+
* Tue Mar 16 2021 Florian Müllner <fmuellner(a)redhat.com> - 40.0~rc-1
- Update to 40.rc
https://src.fedoraproject.org/rpms/gnome-shell-extension-background-logo/...
1Â year, 12Â months
ignatenkobrain pushed to python-aniso8601 (epel8). "Release 9.0.1"
by notificationsï¼ fedoraproject.org
Notification time stamped 2021-03-31 17:00:31 UTC
From 26c5198fa586e8389c3a71ea2e6ae94ef34296b6 Mon Sep 17 00:00:00 2001
From: František Zatloukal <fzatlouk(a)redhat.com>
Date: Mar 02 2021 19:54:09 +0000
Subject: Release 9.0.1
---
diff --git a/.gitignore b/.gitignore
index 492437a..20bfdc6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,3 +11,4 @@
/aniso8601-8.1.0.tar.gz
/aniso8601-8.1.1.tar.gz
/aniso8601-9.0.0.tar.gz
+/aniso8601-9.0.1.tar.gz
diff --git a/python-aniso8601.spec b/python-aniso8601.spec
index f333db0..45a3b8f 100644
--- a/python-aniso8601.spec
+++ b/python-aniso8601.spec
@@ -2,8 +2,8 @@
%global sum Another ISO 8601 parser for Python
Name: python-%{srcname}
-Version: 9.0.0
-Release: 2%{?dist}
+Version: 9.0.1
+Release: 1%{?dist}
Summary: %{sum}
License: GPLv3+
@@ -43,6 +43,9 @@ in ISO 8601 format into datetime format.
%{python3_sitelib}/%{srcname}-*.egg-info/
%changelog
+* Tue Mar 02 2021 František Zatloukal <fzatlouk(a)redhat.com> - 9.0.1-1
+- New upstream release 9.0.1
+
* Thu Feb 18 2021 František Zatloukal <fzatlouk(a)redhat.com> - 9.0.0-2
- Stop removing egg-info
diff --git a/sources b/sources
index e62838b..594bdf5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (aniso8601-9.0.0.tar.gz) = e0fc9ab1de36ddc7a78c0fdd139769312302bb2f8d7ce874aba1e714c7da25ed153a883ef92e62ad9f1a0c4d192c43cc939b8e82405f9f60b7d4b400f104e348
+SHA512 (aniso8601-9.0.1.tar.gz) = a17c363a3a67b69a2fde50cc37b080b52615cebc453ef70090498ffce909775b0109c889b63e87381c795c2d8531efd6048542627c88e97297ac22ce81c10c8c
https://src.fedoraproject.org/rpms/python-aniso8601/c/26c5198fa586e8389c3...
1Â year, 12Â months
ignatenkobrain pushed to python-aniso8601 (epel8). "Bump release"
by notificationsï¼ fedoraproject.org
Notification time stamped 2021-03-31 17:00:31 UTC
From 90f2634e49d25818aa31ac7abc55bab89a3ec10e Mon Sep 17 00:00:00 2001
From: František Zatloukal <fzatlouk(a)redhat.com>
Date: Feb 18 2021 22:04:47 +0000
Subject: Bump release
---
diff --git a/python-aniso8601.spec b/python-aniso8601.spec
index b173fa8..f333db0 100644
--- a/python-aniso8601.spec
+++ b/python-aniso8601.spec
@@ -3,7 +3,7 @@
Name: python-%{srcname}
Version: 9.0.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: %{sum}
License: GPLv3+
@@ -43,6 +43,9 @@ in ISO 8601 format into datetime format.
%{python3_sitelib}/%{srcname}-*.egg-info/
%changelog
+* Thu Feb 18 2021 František Zatloukal <fzatlouk(a)redhat.com> - 9.0.0-2
+- Stop removing egg-info
+
* Thu Feb 18 2021 František Zatloukal <fzatlouk(a)redhat.com> - 9.0.0-1
- New upstream release 9.0.0
- Modernize spec a bit
https://src.fedoraproject.org/rpms/python-aniso8601/c/90f2634e49d25818aa3...
1Â year, 12Â months