%global module_name backports.ssl_match_hostname %global alphatag a3 %global fullversion %{version}%{alphatag} Name: python-backports-ssl_match_hostname Version: 3.2 Release: 0.1.%{alphatag}%{?dist} Summary: The ssl.match_hostname() function from Python 3.2 # Webpages claim MIT but the code is cut-and-paste from Python source code License: Python URL: https://bitbucket.org/brandon/backports.ssl_match_hostname Source0: http://pypi.python.org/packages/source/b/backports.ssl_match_hostname/backports.ssl_match_hostname-%{fullversion}.tar.gz BuildArch: noarch BuildRequires: python-devel %description The Secure Sockets layer is only actually secure if you check the hostname in the certificate returned by the server to which you are connecting, and verify that it matches to hostname that you are trying to reach. But the matching logic, defined in RFC2818, can be a bit tricky to implement on your own. So the ssl package in the Standard Library of Python 3.2 now includes a match_hostname() function for performing this check instead of requiring every application to implement the check separately. This backport brings match_hostname() to users of earlier versions of Python. The actual code inside comes verbatim from Python 3.2. %prep %setup -qn %{module_name}-%{fullversion} mv src/backports/ssl_match_hostname/README.txt ./ %build python setup.py build %install rm -rf %{buildroot} python setup.py install -O1 --skip-build --root %{buildroot} %files %doc README.txt %{python_sitelib}/* %changelog * Fri Dec 07 2012 Ian Weller - 3.2-0.1.a3 - Initial package build