e2c2602
%global srcname urllib3
e2c2602
d2ba833
# When bootstrapping Python, we cannot test this yet
d2ba833
%bcond_without tests
d2ba833
e2c2602
Name:           python-%{srcname}
50b1f9d
Version:        1.26.9
778adc5
Release:        3%{?dist}
e2c2602
Summary:        Python HTTP library with thread-safe connection pooling and file post
e2c2602
e2c2602
License:        MIT
Jeremy Cline 9c6ea19
URL:            https://github.com/urllib3/urllib3
821ff06
Source0:        %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz
e2c2602
BuildArch:      noarch
e2c2602
bc86150
%description
bc86150
Python HTTP module with connection pooling and file POST abilities.
bc86150
821ff06
%package -n python3-%{srcname}
bc86150
Summary:        Python3 HTTP library with thread-safe connection pooling and file post
bc86150
821ff06
BuildRequires:  python3-devel
12d0355
BuildRequires:  python3-setuptools
d2ba833
%if %{with tests}
c3cafe2
BuildRequires:  python3-dateutil
821ff06
BuildRequires:  python3-six
821ff06
BuildRequires:  python3-pysocks
bda1937
BuildRequires:  python3-pytest
c3cafe2
BuildRequires:  python3-pytest-freezegun
c3cafe2
BuildRequires:  python3-pytest-timeout
821ff06
BuildRequires:  python3-tornado
Jeremy Cline d21c604
BuildRequires:  python3-trustme
Jeremy Cline 17996d6
BuildRequires:  python3-idna
d2ba833
%endif
0597377
0597377
Requires:       ca-certificates
Jeremy Cline 17996d6
Requires:       python3-idna
a1d6618
Requires:       python3-six >= 1.16.0
821ff06
Requires:       python3-pysocks
821ff06
821ff06
%description -n python3-%{srcname}
e2c2602
Python3 HTTP module with connection pooling and file POST abilities.
e2c2602
e2c2602
e2c2602
%prep
Jeremy Cline 9c6ea19
%autosetup -p1 -n %{srcname}-%{version}
87cc35d
# Make sure that the RECENT_DATE value doesn't get too far behind what the current date is.
87cc35d
# RECENT_DATE must not be older that 2 years from the build time, or else test_recent_date
87cc35d
# (from test/test_connection.py) would fail. However, it shouldn't be to close to the build time either,
87cc35d
# since a user's system time could be set to a little in the past from what build time is (because of timezones,
87cc35d
# corner cases, etc). As stated in the comment in src/urllib3/connection.py:
87cc35d
#   When updating RECENT_DATE, move it to within two years of the current date,
87cc35d
#   and not less than 6 months ago.
87cc35d
#   Example: if Today is 2018-01-01, then RECENT_DATE should be any date on or
87cc35d
#   after 2016-01-01 (today - 2 years) AND before 2017-07-01 (today - 6 months)
87cc35d
# There is also a test_ssl_wrong_system_time test (from test/with_dummyserver/test_https.py) that tests if
87cc35d
# user's system time isn't set as too far in the past, because it could lead to SSL verification errors.
87cc35d
# That is why we need RECENT_DATE to be set at most 2 years ago (or else test_ssl_wrong_system_time would
87cc35d
# result in false positive), but before at least 6 month ago (so this test could tolerate user's system time being
87cc35d
# set to some time in the past, but not to far away from the present).
87cc35d
# Next few lines update RECENT_DATE dynamically.
87cc35d
recent_date=$(date --date "7 month ago" +"%Y, %_m, %_d")
87cc35d
sed -i "s/^RECENT_DATE = datetime.date(.*)/RECENT_DATE = datetime.date($recent_date)/" src/urllib3/connection.py
87cc35d
b73a1a9
# Drop the dummyserver tests in koji.  They fail there in real builds, but not
b73a1a9
# in scratch builds (weird).
b73a1a9
rm -rf test/with_dummyserver/
da96fff
# Don't run the Google App Engine tests
da96fff
rm -rf test/appengine/
821ff06
# Lots of these tests started failing, even for old versions, so it has something
821ff06
# to do with Fedora in particular. They don't fail in upstream build infrastructure
821ff06
rm -rf test/contrib/
a1d2b32
Jeremy Cline 9c6ea19
# Tests for Python built without SSL, but Fedora builds with SSL. These tests
Jeremy Cline 9c6ea19
# fail when combined with the unbundling of backports-ssl_match_hostname
Jeremy Cline 9c6ea19
rm -f test/test_no_ssl.py
Jeremy Cline 9c6ea19
edd63be
# Use the standard library instead of a backport
edd63be
sed -i -e 's/^import mock/from unittest import mock/' \
edd63be
       -e 's/^from mock import /from unittest.mock import /' \
edd63be
    test/*.py docs/conf.py
edd63be
e2c2602
%build
821ff06
%py3_build
e2c2602
e2c2602
e2c2602
%install
821ff06
%py3_install
f611c7a
821ff06
# Unbundle the Python 3 build
c3cafe2
rm -rf %{buildroot}/%{python3_sitelib}/urllib3/packages/six.py
c3cafe2
rm -rf %{buildroot}/%{python3_sitelib}/urllib3/packages/__pycache__/six.*
f611c7a
f611c7a
mkdir -p %{buildroot}/%{python3_sitelib}/urllib3/packages/
Jeremy Cline 9c6ea19
ln -s %{python3_sitelib}/six.py %{buildroot}/%{python3_sitelib}/urllib3/packages/six.py
Jeremy Cline 9c6ea19
ln -s %{python3_sitelib}/__pycache__/six.cpython-%{python3_version_nodots}.opt-1.pyc \
Jeremy Cline 9c6ea19
      %{buildroot}/%{python3_sitelib}/urllib3/packages/__pycache__/
Jeremy Cline 9c6ea19
ln -s %{python3_sitelib}/__pycache__/six.cpython-%{python3_version_nodots}.pyc \
Jeremy Cline 9c6ea19
      %{buildroot}/%{python3_sitelib}/urllib3/packages/__pycache__/
f611c7a
e2c2602
d2ba833
%if %{with tests}
e2c2602
%check
c3cafe2
%pytest -v
d2ba833
%endif
e2c2602
e2c2602
821ff06
%files -n python3-%{srcname}
149e0ed
%license LICENSE.txt
67a7304
%doc CHANGES.rst README.rst
f611c7a
%{python3_sitelib}/urllib3/
12d0355
%{python3_sitelib}/urllib3-*.egg-info/
821ff06
e2c2602
e2c2602
%changelog
778adc5
* Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 1.26.9-3
778adc5
- Rebuilt for Python 3.11
778adc5
7ec3514
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.26.9-2
7ec3514
- Bootstrap for Python 3.11
7ec3514
50b1f9d
* Mon May 30 2022 Kevin Fenzi <kevin@scrye.com> - 1.26.9-1
50b1f9d
- Update to 1.26.9. fixes rhbz#2064777
50b1f9d
047bcf3
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.26.8-2
047bcf3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
047bcf3
a7666c4
* Sat Jan 08 2022 Kevin Fenzi <kevin@scrye.com> - 1.26.8-1
a7666c4
- Update to 1.26.8. Fixes rhbz#2038246
a7666c4
e98e5d8
* Tue Jan 04 2022 Adam Williamson <awilliam@redhat.com> - 1.26.7-2
e98e5d8
- Stop unbundling ssl.match_hostname, it's deprecated upstream (#2009550)
e98e5d8
2f8e5b2
* Sun Sep 26 2021 Kevin Fenzi <kevin@scrye.com> - 1.26.7-1
2f8e5b2
- Update to 1.26.7. Fixes rhbz#2006973
2f8e5b2
822b1fd
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.26.6-2
822b1fd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
822b1fd
67a7304
* Sun Jul 11 2021 Kevin Fenzi <kevin@scrye.com> - 1.26.6-1
67a7304
- Update to 1.26.1. Fixes rhbz#1976190
67a7304
- Fix FTBFS. Fixes rhbz#1966120
67a7304
a1d6618
* Wed Jun 30 2021 Yatin Karel <ykarel@redhat.com> - 1.26.5-2
a1d6618
- Update minimal requirement of six to >= 1.16.0
a1d6618
70fe2fa
* Wed Jun 16 2021 Karolina Surma <ksurma@redhat.com> - 1.26.5-1
70fe2fa
- Update to 1.26.5
70fe2fa
- Fixes rhbz#1965056
70fe2fa
8a16680
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.26.4-3
8a16680
- Rebuilt for Python 3.10
8a16680
dc936fb
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 1.26.4-2
dc936fb
- Bootstrap for Python 3.10
dc936fb
c3cafe2
* Tue May 18 2021 Miro Hrončok <mhroncok@redhat.com> - 1.26.4-1
c3cafe2
- Update to 1.26.4
c3cafe2
- Fixes rhbz#1889391
c3cafe2
0d27139
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.10-4
0d27139
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
0d27139
edd63be
* Fri Jan 15 2021 Miro Hrončok <mhroncok@redhat.com> - 1.25.10-3
edd63be
- Drop redundant BuildRequires for nose
edd63be
- Instead of the mock backport, use unittest.mock from the standard library
edd63be
87cc35d
* Tue Jan 05 2021 Anna Khaitovich <akhaitov@redhat.com> - 1.25.10-2
87cc35d
- Update RECENT_DATE dynamically
87cc35d
2a89201
* Sun Sep 27 2020 Kevin Fenzi <kevin@scrye.com> - 1.25.10-1
2a89201
- Update to 1.25.10. Fixed bug #1824900
2a89201
e65e04a
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.8-4
e65e04a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
e65e04a
23fcbeb
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 1.25.8-3
23fcbeb
- Rebuilt for Python 3.9
23fcbeb
6fdabe5
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 1.25.8-2
6fdabe5
- Bootstrap for Python 3.9
6fdabe5
f3350c1
* Sun Mar 22 2020 Carl George <carl@george.computer> - 1.25.8-1
f3350c1
- Latest upstream rhbz#1771186
f3350c1
9ba37f0
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.7-3
9ba37f0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
9ba37f0
2cea24b
* Mon Nov 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.7-2
2cea24b
- Subpackage python2-urllib3 has been removed
2cea24b
  See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
2cea24b
Jeremy Cline 5787270
* Tue Oct 15 2019 Jeremy Cline <jcline@redhat.com> - 1.25.6-1
Jeremy Cline 5787270
- Update to v1.25.6
Jeremy Cline 5787270
492a345
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.3-7
492a345
- Rebuilt for Python 3.8.0rc1 (#1748018)
492a345
a028911
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.3-6
a028911
- Rebuilt for Python 3.8
a028911
5d54ee2
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.3-5
5d54ee2
- Bootstrap for Python 3.8
5d54ee2
c43e056
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.3-4
c43e056
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
c43e056
85d9ed5
* Mon Jul 08 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.3-3
85d9ed5
- Set RECENT_DATE not to be older than 2 years (#1727796)
85d9ed5
Jeremy Cline f032b5b
* Tue May 28 2019 Jeremy Cline <jcline@redhat.com> - 1.25.3-2
Jeremy Cline f032b5b
- Drop the Python 2 tests since Tornado is going away
Jeremy Cline f032b5b
Jeremy Cline 17996d6
* Tue May 28 2019 Jeremy Cline <jcline@redhat.com> - 1.25.3-1
Jeremy Cline 17996d6
- Update to 1.25.3
Jeremy Cline 17996d6
4a6b9a8
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.24.1-3
4a6b9a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
4a6b9a8
Jeremy Cline 4425178
* Tue Nov 13 2018 Jeremy Cline <jeremy@jcline.org> - 1.24.1-2
Jeremy Cline 4425178
- Adjust unbundling of ssl_match_hostname
Jeremy Cline 4425178
Jeremy Cline 9c6ea19
* Mon Oct 29 2018 Jeremy Cline <jeremy@jcline.org> - 1.24.1-1
Jeremy Cline 9c6ea19
- Update to v1.24.1
Jeremy Cline 9c6ea19
da5d9b9
* Wed Jun 20 2018 Lumír Balhar <lbalhar@redhat.com> - 1.23-4
da5d9b9
- Removed unneeded dependency python[23]-psutil
da5d9b9
5a18048
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 1.23-3
5a18048
- Rebuilt for Python 3.7
5a18048
ab1886d
* Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 1.23-2
ab1886d
- Bootstrap for Python 3.7
ab1886d
Jeremy Cline 0b513a8
* Tue Jun 05 2018 Jeremy Cline <jeremy@jcline.org> - 1.23-1
Jeremy Cline 0b513a8
- Update to the latest upstream release (rhbz 1586072)
Jeremy Cline 0b513a8
Jeremy Cline 0905637
* Wed May 30 2018 Jeremy Cline <jeremy@jcline.org> - 1.22-10
Jeremy Cline 0905637
- Backport patch to support Python 3.7 (rhbz 1584112)
Jeremy Cline 0905637
f9db920
* Thu May 03 2018 Lukas Slebodnik <lslebodn@fedoraproject.org> - 1.22-9
f9db920
- Do not lowercase hostnames with custom-protocol (rhbz 1567862)
f9db920
- upstream: https://github.com/urllib3/urllib3/issues/1267
f9db920
f545e58
* Wed Apr 18 2018 Jeremy Cline <jeremy@jcline.org> - 1.22-8
f545e58
- Drop the dependency on idna and cryptography (rhbz 1567862)
f545e58
2b8e0c7
* Mon Apr 16 2018 Jeremy Cline <jeremy@jcline.org> - 1.22-7
2b8e0c7
- Drop the dependency on PyOpenSSL, it's not needed (rhbz 1567862)
2b8e0c7
ff1ca88
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-6
ff1ca88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
ff1ca88
31b337f
* Wed Jan 31 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.22-5
31b337f
- Update Python 2 dependency declarations to new packaging standards
31b337f
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
31b337f
9b84183
* Thu Jan 25 2018 Tomas Hoger <thoger@redhat.com> - 1.22-4
9b84183
- Fix FTBFS - Move RECENT_DATE to 2017-06-30
9b84183
a4ea2a3
* Fri Dec 01 2017 Jeremy Cline <jeremy@jcline.org> - 1.22-3
a4ea2a3
- Symlink the Python 3 bytecode for six (rbhz 1519147)
a4ea2a3
cd30118
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.22-2
cd30118
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
cd30118
d5c3e09
* Fri Jul 21 2017 Jeremy Cline <jeremy@jcline.org> - 1.22-1
d5c3e09
- Update to 1.22 (#1473293)
d5c3e09
ebed522
* Wed May 17 2017 Jeremy Cline <jeremy@jcline.org> - 1.21.1-1
ebed522
- Update to 1.21.1 (#1445280)
ebed522
6a3f489
* Thu Feb 09 2017 Jeremy Cline <jeremy@jcline.org> - 1.20-1
6a3f489
- Update to 1.20 (#1414775)
6a3f489
f7d96a6
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 1.19.1-2
f7d96a6
- Rebuild for Python 3.6
a103d65
821ff06
* Thu Nov 17 2016 Jeremy Cline <jeremy@jcline.org> 1.19.1-1
821ff06
- Update to 1.19.1
821ff06
- Clean up the specfile to only support Fedora 26
821ff06
66b4499
* Wed Aug 10 2016 Kevin Fenzi <kevin@scrye.com> - 1.16-3
66b4499
- Rebuild now that python-requests is ready to update.
66b4499
57ee1a8
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16-2
57ee1a8
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
57ee1a8
0731463
* Wed Jun 15 2016 Kevin Fenzi <kevin@scrye.com> - 1.16-1
0731463
- Update to 1.16
0731463
bc86150
* Thu Jun 02 2016 Ralph Bean <rbean@redhat.com> - 1.15.1-3
bc86150
- Create python2 subpackage to comply with guidelines.
bc86150
646b329
* Wed Jun 01 2016 Ralph Bean <rbean@redhat.com> - 1.15.1-2
646b329
- Remove broken symlinks to unbundled python3-six files
646b329
  https://bugzilla.redhat.com/show_bug.cgi?id=1295015
646b329
0597377
* Fri Apr 29 2016 Ralph Bean <rbean@redhat.com> - 1.15.1-1
0597377
- Removed patch for ipv6 support, now applied upstream.
0597377
- Latest version.
0597377
- New dep on pysocks.
0597377
baa5773
* Fri Feb 26 2016 Ralph Bean <rbean@redhat.com> - 1.13.1-3
baa5773
- Apply patch from upstream to fix ipv6.
baa5773
84fceb2
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.13.1-2
84fceb2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
84fceb2
948beaa
* Mon Dec 21 2015 Ralph Bean <rbean@redhat.com> - 1.13.1-1
948beaa
- new version
948beaa
298ec5c
* Fri Dec 18 2015 Ralph Bean <rbean@redhat.com> - 1.13-1
298ec5c
- new version
298ec5c
5e3e64d
* Mon Dec 14 2015 Ralph Bean <rbean@redhat.com> - 1.12-1
5e3e64d
- new version
5e3e64d
Robert Kuska 9cbc253
* Thu Oct 15 2015 Robert Kuska <rkuska@redhat.com> - 1.10.4-7
Robert Kuska 9cbc253
- Rebuilt for Python3.5 rebuild
Robert Kuska 9cbc253
a8898e4
* Sat Oct 10 2015 Ralph Bean <rbean@redhat.com> - 1.10.4-6
a8898e4
- Sync from PyPI instead of a git checkout.
a8898e4
762324a
* Tue Sep 08 2015 Ralph Bean <rbean@redhat.com> - 1.10.4-5.20150503gita91975b
762324a
- Drop requirement on python-backports-ssl_match_hostname on F22 and newer.
762324a
d15a22c
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.4-4.20150503gita91975b
d15a22c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d15a22c
a1d2b32
* Mon Jun 08 2015 Ralph Bean <rbean@redhat.com> - 1.10.4-3.20150503gita91975b
a1d2b32
- Apply pyopenssl injection for an outdated cpython as per upstream advice
a1d2b32
  https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning
a1d2b32
  https://urllib3.readthedocs.org/en/latest/security.html#pyopenssl
a1d2b32
7e15819
* Tue May 19 2015 Ralph Bean <rbean@redhat.com> - 1.10.4-2.20150503gita91975b
7e15819
- Specify symlinks for six.py{c,o}, fixing rhbz #1222142.
7e15819
7e15819
* Sun May 03 2015 Ralph Bean <rbean@redhat.com> - 1.10.4-1.20150503gita91975b
65b0367
- Latest release for python-requests-2.7.0
65b0367
98fa605
* Wed Apr 29 2015 Ralph Bean <rbean@redhat.com> - 1.10.3-2.20150429git585983a
98fa605
- Grab a git snapshot to get around this chunked encoding failure.
817aac8
9dff84a
* Wed Apr 22 2015 Ralph Bean <rbean@redhat.com> - 1.10.3-1
9dff84a
- new version
9dff84a
db79cba
* Thu Feb 26 2015 Ralph Bean <rbean@redhat.com> - 1.10.2-1
db79cba
- new version
db79cba
5ce4305
* Wed Feb 18 2015 Ralph Bean <rbean@redhat.com> - 1.10.1-1
5ce4305
- new version
5ce4305
39487aa
* Wed Feb 18 2015 Ralph Bean <rbean@redhat.com> - 1.10.1-1
39487aa
- new version
39487aa
a641ca8
* Mon Jan 05 2015 Ralph Bean <rbean@redhat.com> - 1.10-2
a641ca8
- Copy in a shim for ssl_match_hostname on python3.
a641ca8
f611c7a
* Sun Dec 14 2014 Ralph Bean <rbean@redhat.com> - 1.10-1
f611c7a
- Latest upstream 1.10, for python-requests-2.5.0.
f611c7a
- Re-do unbundling without patch, with symlinks.
f611c7a
- Modernize python2 macros.
2d10204
- Remove the with_dummyserver tests which fail only sometimes.
f611c7a
1960586
* Wed Nov 05 2014 Ralph Bean <rbean@redhat.com> - 1.9.1-1
1960586
- Latest upstream, 1.9.1 for latest python-requests.
1960586
149e0ed
* Mon Aug  4 2014 Tom Callaway <spot@fedoraproject.org> - 1.8.2-4
149e0ed
- fix license handling
149e0ed
90da227
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.2-3
90da227
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
90da227
b8e7d56
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 1.8.2-2
b8e7d56
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
b8e7d56
131a805
* Mon Apr 21 2014 Arun S A G <sagarun@gmail.com> - 1.8.2-1
131a805
- Update to latest upstream version
131a805
4670672
* Mon Oct 28 2013 Ralph Bean <rbean@redhat.com> - 1.7.1-2
4670672
- Update patch to find ca_certs in the correct location.
4670672
4a646b9
* Wed Sep 25 2013 Ralph Bean <rbean@redhat.com> - 1.7.1-1
4a646b9
- Latest upstream with support for a new timeout class and py3.4.
4a646b9
89b1807
* Wed Aug 28 2013 Ralph Bean <rbean@redhat.com> - 1.7-3
89b1807
- Bump release again, just to push an unpaired update.
89b1807
e709c88
* Mon Aug 26 2013 Ralph Bean <rbean@redhat.com> - 1.7-2
e709c88
- Bump release to pair an update with python-requests.
e709c88
1563f31
* Thu Aug 22 2013 Ralph Bean <rbean@redhat.com> - 1.7-1
1563f31
- Update to latest upstream.
1563f31
- Removed the accept-header proxy patch which is included in upstream now.
1563f31
- Removed py2.6 compat patch which is included in upstream now.
1563f31
da55d72
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-7
da55d72
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
da55d72
f54a32e
* Tue Jun 11 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5-6
f54a32e
- Fix Requires of python-ordereddict to only apply to RHEL
f54a32e
750fa89
* Fri Mar  1 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5-5
750fa89
- Unbundling finished!
750fa89
23a06f9
* Fri Mar 01 2013 Ralph Bean <rbean@redhat.com> - 1.5-4
23a06f9
- Upstream patch to fix Accept header when behind a proxy.
23a06f9
- Reorganize patch numbers to more clearly distinguish them.
23a06f9
e2c2602
* Wed Feb 27 2013 Ralph Bean <rbean@redhat.com> - 1.5-3
e2c2602
- Renamed patches to python-urllib3-*
e2c2602
- Fixed ssl check patch to use the correct cert path for Fedora.
e2c2602
- Included dependency on ca-certificates
e2c2602
- Cosmetic indentation changes to the .spec file.
e2c2602
e2c2602
* Tue Feb  5 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5-2
e2c2602
- python3-tornado BR and run all unittests on python3
e2c2602
e2c2602
* Mon Feb 04 2013 Toshio Kuratomi <toshio@fedoraproject.org> 1.5-1
e2c2602
- Initial fedora build.