|
|
a938da |
%global module_name backports.ssl_match_hostname
|
|
|
a938da |
|
|
|
a938da |
Name: python-backports-ssl_match_hostname
|
|
|
238c94 |
Version: 3.4.0.2
|
|
|
238c94 |
Release: 4%{?dist}
|
|
|
238c94 |
Summary: The ssl.match_hostname() function from Python 3
|
|
|
a938da |
|
|
|
a938da |
License: Python
|
|
|
a938da |
URL: https://bitbucket.org/brandon/backports.ssl_match_hostname
|
|
|
238c94 |
Source0: http://pypi.python.org/packages/source/b/%{module_name}/%{module_name}-%{version}.tar.gz
|
|
|
a938da |
|
|
|
a938da |
BuildArch: noarch
|
|
|
a938da |
BuildRequires: python2-devel
|
|
|
a938da |
BuildRequires: python-setuptools
|
|
|
238c94 |
Requires: python-backports
|
|
|
a938da |
|
|
|
a938da |
%description
|
|
|
a938da |
The Secure Sockets layer is only actually secure if you check the hostname in
|
|
|
a938da |
the certificate returned by the server to which you are connecting, and verify
|
|
|
a938da |
that it matches to hostname that you are trying to reach.
|
|
|
a938da |
|
|
|
a938da |
But the matching logic, defined in RFC2818, can be a bit tricky to implement on
|
|
|
a938da |
your own. So the ssl package in the Standard Library of Python 3.2 now includes
|
|
|
a938da |
a match_hostname() function for performing this check instead of requiring
|
|
|
a938da |
every application to implement the check separately.
|
|
|
a938da |
|
|
|
a938da |
This backport brings match_hostname() to users of earlier versions of Python.
|
|
|
a938da |
The actual code inside comes verbatim from Python 3.2.
|
|
|
a938da |
|
|
|
a938da |
|
|
|
a938da |
%prep
|
|
|
238c94 |
%setup -qn %{module_name}-%{version}
|
|
|
a938da |
mv src/backports/ssl_match_hostname/README.txt ./
|
|
|
238c94 |
mv src/backports/ssl_match_hostname/LICENSE.txt ./
|
|
|
a938da |
|
|
|
a938da |
|
|
|
a938da |
%build
|
|
|
a938da |
python setup.py build
|
|
|
a938da |
|
|
|
a938da |
|
|
|
a938da |
%install
|
|
|
a938da |
python setup.py install --skip-build --root %{buildroot}
|
|
|
238c94 |
rm %{buildroot}%{python_sitelib}/backports/__init__.py*
|
|
|
a938da |
|
|
|
a938da |
|
|
|
a938da |
%files
|
|
|
238c94 |
%doc README.txt LICENSE.txt
|
|
|
a938da |
%{python_sitelib}/*
|
|
|
a938da |
|
|
|
a938da |
|
|
|
a938da |
%changelog
|
|
|
238c94 |
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.4.0.2-4
|
|
|
238c94 |
- Mass rebuild 2013-12-27
|
|
|
238c94 |
|
|
|
238c94 |
* Thu Dec 19 2013 Endi S. Dewata <edewata@redhat.com> - 3.4.0.2-3
|
|
|
238c94 |
- Restore python-backports dependency on RHEL
|
|
|
238c94 |
|
|
|
238c94 |
* Mon Dec 09 2013 Endi S. Dewata <edewata@redhat.com> - 3.4.0.2-2
|
|
|
238c94 |
- Drop python-backports dependency on RHEL
|
|
|
238c94 |
|
|
|
238c94 |
* Sun Oct 27 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 3.4.0.2-1
|
|
|
238c94 |
- Update to upstream 3.4.0.2 for a security fix
|
|
|
238c94 |
- http://bugs.python.org/issue17997
|
|
|
238c94 |
|
|
|
238c94 |
* Mon Sep 02 2013 Ian Weller <iweller@redhat.com> - 3.4.0.1-1
|
|
|
238c94 |
- Update to upstream 3.4.0.1
|
|
|
238c94 |
|
|
|
238c94 |
* Mon Aug 19 2013 Ian Weller <iweller@redhat.com> - 3.2-0.5.a3
|
|
|
238c94 |
- Use python-backports instead of providing backports/__init__.py
|
|
|
238c94 |
|
|
|
238c94 |
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-0.4.a3
|
|
|
238c94 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
238c94 |
|
|
|
a938da |
* Mon May 20 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 3.2-0.3.a3
|
|
|
a938da |
- Add patch for CVE 2013-2099 https://bugzilla.redhat.com/show_bug.cgi?id=963260
|
|
|
a938da |
|
|
|
a938da |
* Tue Feb 05 2013 Ian Weller <iweller@redhat.com> - 3.2-0.2.a3
|
|
|
a938da |
- Fix Python issue 12000
|
|
|
a938da |
|
|
|
a938da |
* Fri Dec 07 2012 Ian Weller <iweller@redhat.com> - 3.2-0.1.a3
|
|
|
a938da |
- Initial package build
|