|
|
@ -1,123 +1,262 @@
|
|
|
|
%if 0%{?fedora} >= 13
|
|
|
|
%global srcname httplib2
|
|
|
|
%global with_python3 1
|
|
|
|
|
|
|
|
%else
|
|
|
|
Name: python-%{srcname}
|
|
|
|
%if 0%{?rhel} >= 7
|
|
|
|
Version: 0.21.0
|
|
|
|
%global with_python3 1
|
|
|
|
Release: 9%{?dist}
|
|
|
|
%endif
|
|
|
|
Summary: Comprehensive HTTP client library
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?rhel} > 7
|
|
|
|
|
|
|
|
# Disable python2 build by default
|
|
|
|
|
|
|
|
%bcond_with python2
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
%bcond_without python2
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name: python-httplib2
|
|
|
|
|
|
|
|
Version: 0.10.3
|
|
|
|
|
|
|
|
Release: 4%{?dist}
|
|
|
|
|
|
|
|
Summary: A comprehensive HTTP client library
|
|
|
|
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
|
|
|
|
License: MIT
|
|
|
|
License: MIT
|
|
|
|
URL: https://pypi.python.org/pypi/httplib2
|
|
|
|
URL: https://pypi.python.org/pypi/httplib2
|
|
|
|
Source0: https://pypi.python.org/packages/source/h/httplib2/httplib2-%{version}.tar.gz
|
|
|
|
Source: https://github.com/httplib2/httplib2/archive/v%{version}/%{srcname}-%{version}.tar.gz
|
|
|
|
# See also the 'locater plugin' system httplib2 now allows, and
|
|
|
|
|
|
|
|
# https://github.com/dreamhost/httplib2-ca_certs_locater
|
|
|
|
|
|
|
|
# It's kind of problematic, though: https://github.com/jcgregorio/httplib2/issues/293
|
|
|
|
|
|
|
|
Patch1: %{name}.certfile.patch
|
|
|
|
|
|
|
|
Patch2: %{name}.getCertHost.patch
|
|
|
|
|
|
|
|
Patch3: %{name}.rfc2459.patch
|
|
|
|
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Fix proxy with plain http
|
|
|
|
# Patch to use the Fedora ca certs instead of the bundled ones
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=857514
|
|
|
|
#
|
|
|
|
# https://github.com/jcgregorio/httplib2/issues/228
|
|
|
|
Patch1: python-%{srcname}.certfile.patch
|
|
|
|
#
|
|
|
|
|
|
|
|
Patch4: python-httplib2-0.9-proxy-http.patch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
%if %{with python2}
|
|
|
|
|
|
|
|
BuildRequires: python2-setuptools
|
|
|
|
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
|
|
|
|
%endif # with python2
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
|
|
|
|
%endif # if with_python3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%global _description\
|
|
|
|
%global _description\
|
|
|
|
A comprehensive HTTP client library that supports many features left out of\
|
|
|
|
A comprehensive HTTP client library that supports many features left out of\
|
|
|
|
other HTTP libraries.
|
|
|
|
other HTTP libraries.
|
|
|
|
|
|
|
|
|
|
|
|
%description %_description
|
|
|
|
%description %{_description}
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with python2}
|
|
|
|
%package -n python3-%{srcname}
|
|
|
|
%package -n python2-httplib2
|
|
|
|
Summary: %{summary}
|
|
|
|
Summary: %summary
|
|
|
|
BuildRequires: python3-pytest
|
|
|
|
%{?python_provide:%python_provide python2-httplib2}
|
|
|
|
# This is listed as a test requirement, but doesn't seem to actually be used.
|
|
|
|
|
|
|
|
#BuildRequires: python3-pytest-forked
|
|
|
|
|
|
|
|
BuildRequires: python3-pytest-timeout
|
|
|
|
|
|
|
|
BuildRequires: python3-six
|
|
|
|
|
|
|
|
BuildRequires: python3-cryptography
|
|
|
|
|
|
|
|
# This is a runtime dependency required to run the tests:
|
|
|
|
|
|
|
|
BuildRequires: python3-pyparsing
|
|
|
|
|
|
|
|
|
|
|
|
%description -n python2-httplib2 %_description
|
|
|
|
%description -n python3-%{srcname} %{_description}
|
|
|
|
%endif # with python2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
|
|
|
|
%package -n python3-httplib2
|
|
|
|
|
|
|
|
Summary: A comprehensive HTTP client library
|
|
|
|
|
|
|
|
%{?python_provide:%python_provide python3-httplib2}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description -n python3-httplib2
|
|
|
|
|
|
|
|
A comprehensive HTTP client library that supports many features left out of
|
|
|
|
|
|
|
|
other HTTP libraries.
|
|
|
|
|
|
|
|
%endif # with_python3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%prep
|
|
|
|
%setup -q -n httplib2-%{version}
|
|
|
|
%autosetup -p1 -n %{srcname}-%{version}
|
|
|
|
%patch1 -p1 -b .certfile
|
|
|
|
|
|
|
|
%patch2 -p0 -b .getCertHost
|
|
|
|
# Drop coverage
|
|
|
|
%patch3 -p0 -b .rfc2459
|
|
|
|
sed -i '/--cov/d' setup.cfg
|
|
|
|
%patch4 -p1
|
|
|
|
|
|
|
|
|
|
|
|
%generate_buildrequires
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%pyproject_buildrequires
|
|
|
|
rm -rf %{py3dir}
|
|
|
|
|
|
|
|
cp -a . %{py3dir}
|
|
|
|
|
|
|
|
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!/usr/bin/python|#!%{__python3}|'
|
|
|
|
|
|
|
|
%endif # with_python3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%build
|
|
|
|
%if %{with python2}
|
|
|
|
%pyproject_wheel
|
|
|
|
%py2_build
|
|
|
|
|
|
|
|
%endif # with python2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
|
|
|
|
pushd %{py3dir}
|
|
|
|
|
|
|
|
%py3_build
|
|
|
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
%endif # with_python3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%install
|
|
|
|
%if %{with python2}
|
|
|
|
%pyproject_install
|
|
|
|
%py2_install
|
|
|
|
|
|
|
|
%endif # with python2
|
|
|
|
%pyproject_save_files -l httplib2
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%check
|
|
|
|
pushd %{py3dir}
|
|
|
|
# test_get_301_no_redirect is disabled because it leads to Segfault on Python 3.11
|
|
|
|
%py3_install
|
|
|
|
# the other disabled tests are broken PySocks tests
|
|
|
|
popd
|
|
|
|
%pytest -k "not test_unknown_server \
|
|
|
|
%endif # with_python3
|
|
|
|
and not test_socks5_auth and not \
|
|
|
|
|
|
|
|
test_server_not_found_error_is_raised_for_invalid_hostname and not \
|
|
|
|
%if %{with python2}
|
|
|
|
test_functional_noproxy_star_https and not \
|
|
|
|
%files -n python2-httplib2
|
|
|
|
test_sni_set_servername_callback and not test_not_trusted_ca and not \
|
|
|
|
%{python2_sitelib}/*
|
|
|
|
test_invalid_ca_certs_path and not test_max_tls_version and not \
|
|
|
|
%endif # with python2
|
|
|
|
test_get_301_via_https and not test_client_cert_password_verified and not\
|
|
|
|
|
|
|
|
test_get_via_https and not test_min_tls_version and not\
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
test_client_cert_verified and not test_inject_space and not test_get_301_no_redirect"
|
|
|
|
%files -n python3-httplib2
|
|
|
|
|
|
|
|
%{python3_sitelib}/*
|
|
|
|
%files -n python3-%{srcname} -f %{pyproject_files}
|
|
|
|
%endif # with_python3
|
|
|
|
%doc README.md
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
* Fri Jun 08 2018 Charalampos Stratakis <cstratak@redhat.com> - 0.10.3-4
|
|
|
|
* Sat Dec 28 2024 Arkady L. Shane <tigro@msvsphere-os.ru> - 0.21.0-9
|
|
|
|
- Conditionalize the python2 subpackage
|
|
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Sep 22 2024 Kevin Fenzi <kevin@scrye.com> - 0.21.0-9
|
|
|
|
|
|
|
|
- Modernize spec
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.21.0-8
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 0.21.0-7
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.13
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.21.0-6
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.21.0-5
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.21.0-4
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jun 14 2023 Python Maint <python-maint@redhat.com> - 0.21.0-3
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.12
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Mar 07 2023 Gwyn Ciesla <gwync@protonmail.com> - 0.21.0-2
|
|
|
|
|
|
|
|
- migrated to SPDX license
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Feb 19 2023 Kevin Fenzi <kevin@scrye.com> - 0.21.0-1
|
|
|
|
|
|
|
|
- Update to 0.21.0. rhbz#2138541
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jan 25 2023 Miro Hrončok <mhroncok@redhat.com> - 0.20.4-8
|
|
|
|
|
|
|
|
- Explicitly BuildRequire runtime dependencies for tests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.20.4-7
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.20.4-6
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jul 20 2022 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.20.4-5
|
|
|
|
|
|
|
|
- Rebuilt for pyparsing-3.0.9 (2nd attempt)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jul 19 2022 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.20.4-4
|
|
|
|
|
|
|
|
- Rebuilt for pyparsing-3.0.9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jun 15 2022 Tomáš Hrnčiar <thrnciar@redhat.com> - 0.20.4-3
|
|
|
|
|
|
|
|
- Disable broken test for compatibility with Python 3.11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 0.20.4-2
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Feb 20 2022 Kevin Fenzi <kevin@scrye.com> - 0.20.4-1
|
|
|
|
|
|
|
|
- Update to 0.20.4. Fixes rhbz#2049986
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.20.3-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Dec 13 2021 Paul Wouters <paul.wouters@aiven.io> - 0.20.3-1
|
|
|
|
|
|
|
|
- Update to 0.20.3. Only fixes test cases
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Nov 06 2021 Kevin Fenzi <kevin@scrye.com> - 0.20.2-1
|
|
|
|
|
|
|
|
- Update to 0.20.2. Fixes rhbz#2011750
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.1-4
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.19.1-3
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu May 13 2021 Miro Hrončok <mhroncok@redhat.com> - 0.19.1-2
|
|
|
|
|
|
|
|
- Drop BuildRequires on pytest-flake8
|
|
|
|
|
|
|
|
- Deselect failing test
|
|
|
|
|
|
|
|
- Fixes: rhbz#1958945
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Apr 24 2021 Kevin Fenzi <kevin@scrye.com> - 0.19.1-1
|
|
|
|
|
|
|
|
- Update to 0.19.1. Fixes rhbz#1944789
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Mar 3 2021 Pavel Cahyna <pcahyna@redhat.com> - 0.19.0-2
|
|
|
|
|
|
|
|
- Remove unused python3-pytest-cov build dependency
|
|
|
|
|
|
|
|
- Use mock from the standard library, remove build dependency
|
|
|
|
|
|
|
|
on the deprecated python-mock package
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Feb 07 2021 Kevin Fenzi <kevin@scrye.com> - 0.19.0-1
|
|
|
|
|
|
|
|
- Update t0 0.19.0. Fixes rhbz#1925988
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.18.1-10
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Jan 02 2021 Miro Hrončok <mhroncok@redhat.com> - 0.18.1-9
|
|
|
|
|
|
|
|
- Disable Python 2 build entirely
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Nov 24 2020 Miro Hrončok <mhroncok@redhat.com> - 0.18.1-8
|
|
|
|
|
|
|
|
- Disable Python 2 build on RHEL 9+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Sep 04 2020 Joel Capitao <jcapitao@redhat.com> - 0.18.1-7
|
|
|
|
|
|
|
|
- Remove unused BR
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Aug 05 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.18.1-6
|
|
|
|
|
|
|
|
- Disable tests related to PySocks bug.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.18.1-5
|
|
|
|
|
|
|
|
- Second attempt - Rebuilt for
|
|
|
|
|
|
|
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.18.1-4
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jun 11 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.18.1-3
|
|
|
|
|
|
|
|
- BR fixes.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 0.18.1-2
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed May 20 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.18.1-1
|
|
|
|
|
|
|
|
- 0.18.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed May 20 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.18.0-1
|
|
|
|
|
|
|
|
- 0.18.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed May 20 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.17.4-1
|
|
|
|
|
|
|
|
- 0.17.4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon May 04 2020 Miro Hrončok <mhroncok@redhat.com> - 0.17.3-3
|
|
|
|
|
|
|
|
- Fix python2/python3 mishmash (#1830222)
|
|
|
|
|
|
|
|
- Run tests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Apr 22 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.17.3-2
|
|
|
|
|
|
|
|
- Cleanup spec
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Apr 22 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.17.3-1
|
|
|
|
|
|
|
|
- 0.17.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Apr 13 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.17.2-1
|
|
|
|
|
|
|
|
- 0.17.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Apr 02 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.17.1-1
|
|
|
|
|
|
|
|
- 0.17.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.17.0-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 24 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.17.0-1
|
|
|
|
|
|
|
|
- 0.17.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 17 2020 Gwyn Ciesla <gwync@protonmail.com> - 0.16.0-1
|
|
|
|
|
|
|
|
- 0.16.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Dec 19 2019 Gwyn Ciesla <gwync@protonmail.com> - 0.15.0-1
|
|
|
|
|
|
|
|
- 0.15.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Nov 06 2019 Gwyn Ciesla <gwync@protonmail.com> - 0.14.0-1
|
|
|
|
|
|
|
|
- 0.14.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.13.1-2
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Aug 22 2019 Kevin Fenzi <kevin@scrye.com> - 0.13.1-1
|
|
|
|
|
|
|
|
- Update to 0.13.1. Fixes bug #1742362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 0.13.0-3
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.13.0-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Jun 30 2019 Kevin Fenzi <kevin@scrye.com> - 0.13.0-1
|
|
|
|
|
|
|
|
- Update to 0.13.0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Apr 23 2019 Kevin Fenzi <kevin@scrye.com> - 0.12.3-1
|
|
|
|
|
|
|
|
- Update to 0.12.3.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.3-6
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Jul 21 2018 Kevin Fenzi <kevin@scrye.com> - 0.11.3-5
|
|
|
|
|
|
|
|
- Fix files section on python2 subpackage.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 20 2018 Kevin Fenzi <kevin@scrye.com> - 0.11.3-4
|
|
|
|
|
|
|
|
- Fix FTBFS bug #1605725
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.3-3
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 0.11.3-2
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Sun Jun 10 2018 Kevin Fenzi <kevin@scrye.com> - 0.11.3-1
|
|
|
|
|
|
|
|
- Update to 0.11.3. Fixes bug #1559204
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.3-3
|
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|