python-httplib2 package is retired on branch c10s for BAKERY-412
This commit is contained in:
parent
57e1387eec
commit
f6a38b6465
29
.gitignore
vendored
29
.gitignore
vendored
@ -1,29 +0,0 @@
|
||||
httplib2-0.4.0.tar.gz
|
||||
/httplib2-0.7.2.tar.gz
|
||||
/httplib2-0.7.4.tar.gz
|
||||
|
||||
/httplib2-0.7.6.tar.gz
|
||||
/httplib2-0.7.7.tar.gz
|
||||
/httplib2-0.9.tar.gz
|
||||
/httplib2-0.9.1.tar.gz
|
||||
/httplib2-0.9.2.tar.gz
|
||||
/httplib2-0.10.3.tar.gz
|
||||
/httplib2-0.11.3.tar.gz
|
||||
/httplib2-0.13.0.tar.gz
|
||||
/httplib2-0.13.1.tar.gz
|
||||
/httplib2-0.14.0.tar.gz
|
||||
/httplib2-0.15.0.tar.gz
|
||||
/httplib2-0.16.0.tar.gz
|
||||
/httplib2-0.17.0.tar.gz
|
||||
/httplib2-0.17.1.tar.gz
|
||||
/httplib2-0.17.2.tar.gz
|
||||
/httplib2-0.17.3.tar.gz
|
||||
/httplib2-0.17.4.tar.gz
|
||||
/httplib2-0.18.0.tar.gz
|
||||
/httplib2-0.18.1.tar.gz
|
||||
/httplib2-0.19.0.tar.gz
|
||||
/httplib2-0.19.1.tar.gz
|
||||
/httplib2-0.20.2.tar.gz
|
||||
/httplib2-0.20.3.tar.gz
|
||||
/httplib2-0.20.4.tar.gz
|
||||
/httplib2-0.21.0.tar.gz
|
1
dead.package
Normal file
1
dead.package
Normal file
@ -0,0 +1 @@
|
||||
python-httplib2 package is retired on branch c10s for BAKERY-412
|
@ -1,79 +0,0 @@
|
||||
diff --git a/python2/httplib2/certs.py b/python2/httplib2/certs.py
|
||||
index 59d1ffc..a2e7513 100644
|
||||
--- a/python2/httplib2/certs.py
|
||||
+++ b/python2/httplib2/certs.py
|
||||
@@ -23,6 +23,7 @@ BUILTIN_CA_CERTS = os.path.join(
|
||||
os.path.dirname(os.path.abspath(__file__)), "cacerts.txt"
|
||||
)
|
||||
|
||||
+FEDORA_CA_CERTS = "/etc/pki/tls/certs/ca-bundle.crt"
|
||||
|
||||
def where():
|
||||
env = os.environ.get("HTTPLIB2_CA_CERTS")
|
||||
@@ -35,7 +36,7 @@ def where():
|
||||
return custom_ca_locater_where()
|
||||
if certifi_available:
|
||||
return certifi_where()
|
||||
- return BUILTIN_CA_CERTS
|
||||
+ return FEDORA_CA_CERTS
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
diff --git a/python3/httplib2/certs.py b/python3/httplib2/certs.py
|
||||
index 59d1ffc..2708393 100644
|
||||
--- a/python3/httplib2/certs.py
|
||||
+++ b/python3/httplib2/certs.py
|
||||
@@ -23,6 +23,8 @@ BUILTIN_CA_CERTS = os.path.join(
|
||||
os.path.dirname(os.path.abspath(__file__)), "cacerts.txt"
|
||||
)
|
||||
|
||||
+FEDORA_CA_CERTS = "/etc/pki/tls/certs/ca-bundle.crt"
|
||||
+
|
||||
|
||||
def where():
|
||||
env = os.environ.get("HTTPLIB2_CA_CERTS")
|
||||
@@ -35,7 +37,7 @@ def where():
|
||||
return custom_ca_locater_where()
|
||||
if certifi_available:
|
||||
return certifi_where()
|
||||
- return BUILTIN_CA_CERTS
|
||||
+ return FEDORA_CA_CERTS
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
diff --git a/tests/test_cacerts_from_env.py b/tests/test_cacerts_from_env.py
|
||||
index cb2bd9f..0fed4d5 100644
|
||||
--- a/tests/test_cacerts_from_env.py
|
||||
+++ b/tests/test_cacerts_from_env.py
|
||||
@@ -7,6 +7,7 @@ import httplib2
|
||||
|
||||
|
||||
CA_CERTS_BUILTIN = os.path.join(os.path.dirname(httplib2.__file__), "cacerts.txt")
|
||||
+FEDORA_CA_CERTS = "/etc/pki/tls/certs/ca-bundle.crt"
|
||||
CERTIFI_CERTS_FILE = "unittest_certifi_file"
|
||||
CUSTOM_CA_CERTS = "unittest_custom_ca_certs"
|
||||
|
||||
@@ -32,7 +33,7 @@ def ca_certs_tmpfile(clean_env):
|
||||
@mock.patch("httplib2.certs.certifi_available", False)
|
||||
@mock.patch("httplib2.certs.custom_ca_locater_available", False)
|
||||
def test_certs_file_from_builtin(clean_env):
|
||||
- assert httplib2.certs.where() == CA_CERTS_BUILTIN
|
||||
+ assert httplib2.certs.where() == FEDORA_CA_CERTS
|
||||
|
||||
|
||||
@mock.patch("httplib2.certs.certifi_available", False)
|
||||
@@ -44,7 +45,7 @@ def test_certs_file_from_environment(ca_certs_tmpfile):
|
||||
with pytest.raises(RuntimeError):
|
||||
httplib2.certs.where()
|
||||
os.environ.pop("HTTPLIB2_CA_CERTS")
|
||||
- assert httplib2.certs.where() == CA_CERTS_BUILTIN
|
||||
+ assert httplib2.certs.where() == FEDORA_CA_CERTS
|
||||
|
||||
|
||||
@mock.patch("httplib2.certs.certifi_where", mock.MagicMock(return_value=CERTIFI_CERTS_FILE))
|
||||
@@ -69,4 +70,4 @@ def test_with_certifi_removed_from_modules(ca_certs_tmpfile):
|
||||
os.environ["HTTPLIB2_CA_CERTS"] = ca_certs_tmpfile
|
||||
assert httplib2.certs.where() == ca_certs_tmpfile
|
||||
os.environ.pop("HTTPLIB2_CA_CERTS")
|
||||
- assert httplib2.certs.where() == CA_CERTS_BUILTIN
|
||||
+ assert httplib2.certs.where() == FEDORA_CA_CERTS
|
@ -1,392 +0,0 @@
|
||||
%global srcname httplib2
|
||||
|
||||
Name: python-%{srcname}
|
||||
Version: 0.21.0
|
||||
Release: 6%{?dist}
|
||||
Summary: Comprehensive HTTP client library
|
||||
License: MIT
|
||||
URL: https://pypi.python.org/pypi/httplib2
|
||||
Source: https://github.com/httplib2/httplib2/archive/v%{version}/%{srcname}-%{version}.tar.gz
|
||||
#
|
||||
# Patch to use the Fedora ca certs instead of the bundled ones
|
||||
#
|
||||
Patch1: python-%{srcname}.certfile.patch
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
%global _description\
|
||||
A comprehensive HTTP client library that supports many features left out of\
|
||||
other HTTP libraries.
|
||||
|
||||
%description %{_description}
|
||||
|
||||
%package -n python3-%{srcname}
|
||||
Summary: %{summary}
|
||||
%{?python_provide:%python_provide python3-%{srcname}}
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-pytest
|
||||
# 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 python3-%{srcname} %{_description}
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n %{srcname}-%{version}
|
||||
rm -r python2
|
||||
|
||||
# drop python2-only requirement for old pyparsing
|
||||
sed -i '/TODO remove after dropping Python2 support/d' requirements.txt
|
||||
|
||||
# Drop coverage
|
||||
sed -i '/--cov/d' setup.cfg
|
||||
|
||||
|
||||
%build
|
||||
%py3_build
|
||||
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
|
||||
|
||||
%check
|
||||
# test_get_301_no_redirect is disabled because it leads to Segfault on Python 3.11
|
||||
# the other disabled tests are broken PySocks tests
|
||||
PYTHONPATH=%{buildroot}%{python3_sitelib} pytest -k "not test_unknown_server \
|
||||
and not test_socks5_auth and not \
|
||||
test_server_not_found_error_is_raised_for_invalid_hostname and not \
|
||||
test_functional_noproxy_star_https and not \
|
||||
test_sni_set_servername_callback and not test_not_trusted_ca and not \
|
||||
test_invalid_ca_certs_path and not test_max_tls_version and not \
|
||||
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\
|
||||
test_client_cert_verified and not test_inject_space and not test_get_301_no_redirect"
|
||||
|
||||
|
||||
%files -n python3-%{srcname}
|
||||
%doc README.md
|
||||
%{python3_sitelib}/%{srcname}-*.egg-info/
|
||||
%{python3_sitelib}/%{srcname}/
|
||||
|
||||
%changelog
|
||||
* 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
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Mon Sep 11 2017 Nick Bebout <nb@fedoraproject.org> - 0.10.3-2
|
||||
- Fix BuildRequires to use python2-* instead of python-*
|
||||
|
||||
* Sun Sep 10 2017 Nick Bebout <nb@fedoraproject.org> - 0.10.3-1
|
||||
- Update to 0.10.3
|
||||
|
||||
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.9.2-7
|
||||
- Python 2 binary package renamed to python2-httplib2
|
||||
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.9.2-4
|
||||
- Rebuild for Python 3.6
|
||||
|
||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-3
|
||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Sat Dec 26 2015 Kevin Fenzi <kevin@scrye.com> - 0.9.2-1
|
||||
- Update to 0.9.2
|
||||
|
||||
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sun Apr 12 2015 Kevin Fenzi <kevin@scrye.com> 0.9.1-1
|
||||
- Update to 0.9.1 and drop upstreamed patches
|
||||
|
||||
* Fri Apr 03 2015 Kevin Fenzi <kevin@scrye.com> 0.9-6
|
||||
- Add patch to fix http over proxy. Fixes bug #857514
|
||||
- Add patch to fix CVE-2013-2037. Fixes bug #958640
|
||||
- Add patch to fix binary headers in python3. Fixes bug #1205127
|
||||
|
||||
* Mon Jan 12 2015 Adam Williamson <awilliam@redhat.com> - 0.9-5
|
||||
- certfile.patch: use /etc/pki/tls not /etc/ssl/certs, patch python3 too
|
||||
|
||||
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 0.9-4
|
||||
- Replace python-setuptools-devel BR with python-setuptools
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 0.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
||||
|
||||
* Fri May 23 2014 Kevin Fenzi <kevin@scrye.com> 0.9-1
|
||||
- Update to 0.9
|
||||
|
||||
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 0.7.7-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Jan 02 2013 Ding-Yi Chen <dchen at redhat.com> - 0.7.7-1
|
||||
- Upstream update to 0.7.7
|
||||
|
||||
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 0.7.4-7
|
||||
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
||||
|
||||
* Fri Jul 27 2012 Ding-Yi Chen <dchen at redhat.com> - 0.7.4-6
|
||||
- Fixed Bug 840968 - SSL errors when the site certificate contains
|
||||
subjectAltName but DNS is not in it
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.4-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Fri Jun 22 2012 Ding-Yi Chen <dchen at redhat.com> - 0.7.4-4
|
||||
- Unify the spec file between EPEL and Fedora.
|
||||
|
||||
* Thu Jun 21 2012 Ding-Yi Chen <dchen at redhat.com> - 0.7.4-3
|
||||
- Applied patch suggested by richardfearn@gmail.com regarding issue 208
|
||||
- Fixed: Bug 832344 - Certification validation fails due to multiple 'dns' entries in subjectAltName
|
||||
|
||||
* Fri Jun 01 2012 Ding-Yi Chen <dchen at redhat.com> - 0.7.4-2
|
||||
- Upstream update for Fedora
|
||||
|
||||
* Thu May 03 2012 Ding-Yi Chen <dchen at redhat.com> - 0.7.4-1
|
||||
- Upstream update to 0.7.4
|
||||
- Applied patch suggested in issue 208
|
||||
|
||||
* Fri Feb 24 2012 Ding-Yi Chen <dchen at redhat.com> - 0.7.2-1
|
||||
- Upstream update to 0.7.2
|
||||
Which may fixed http://code.google.com/p/httplib2/issues/detail?id=62
|
||||
Note this version uses fedora's cert file bundle instead of httplib2
|
||||
default.
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Fri Jul 29 2011 Ding-Yi Chen <dchen at redhat.com> - 0.4.0-5.el6
|
||||
- Apply that address python-httplib2 (GoogleCode Hosted) issue 39
|
||||
http://code.google.com/p/httplib2/issues/detail?id=39
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Aug 25 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.0-4
|
||||
- rebuild with python3.2
|
||||
http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
|
||||
|
||||
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
||||
|
||||
* Tue Apr 20 2010 Tom "spot" Callaway <tcallawa@redhat.com>
|
||||
- minor spec cleanups
|
||||
- enable python3 support
|
||||
|
||||
* Fri Apr 02 2010 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de> - 0.6.0-1
|
||||
- version upgrade (#566721)
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.4.0-2
|
||||
- Rebuild for Python 2.6
|
||||
|
||||
* Thu Dec 27 2007 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de> - 0.4.0-1
|
||||
- initial version
|
Loading…
Reference in New Issue
Block a user