Name: python3-ndg-httpsclient Version: 0.5.1 Release: 6%{?dist} Summary: Enhanced HTTPS support for httplib and urllib2 using PyOpenSSL. License: BSD Group: Development/Languages/Python Url: https://pypi.python.org/pypi/ndg-httpsclient Vendor: VMware, Inc. Distribution: Photon Source0: ndg_httpsclient-%{version}.tar.gz %define sha512 ndg_httpsclient=b2b4c1b1df87ea1a94811b9ae831e7bf32af27258f487fd5ec319e0e6e0d79dfdb1f7bfadaf397d0693a8a7f0720df170a7fc946aaf10c82e3957ac5464f672e BuildRequires: python3-devel BuildRequires: python3-pip BuildRequires: python3-setuptools %if 0%{?with_check} BuildRequires: python3-urllib3 BuildRequires: python3-pyOpenSSL BuildRequires: openssl-devel BuildRequires: curl-devel BuildRequires: libffi-devel %endif Requires: python3 Requires: python3-setuptools BuildArch: noarch %description Enhanced HTTPS support for httplib and urllib2 using PyOpenSSL. %prep %autosetup -p1 -n ndg_httpsclient-%{version} %build %py3_build %install %py3_install %if 0%{?with_check} %check pushd ndg/httpsclient/test openssl s_server -www -cert pki/localhost.crt -key pki/localhost.key -accept 4443 & openssl_pid=$! if ps -p $openssl_pid > /dev/null; then echo "Started openssl. PID:$openssl_pid" else echo "Failed to start openssl" exit 1 fi trap "{ kill $openssl_pid ; }" EXIT function run_python3_test() { test_script="$1" export PATH=%{buildroot}%{_bindir}:${PATH} export PYTHONPATH=%{buildroot}%{python3_sitelib} python3 $test_script } test_cases=(test_urllib2.py test_https.py test_utils.py) for test_case in "${test_cases[@]}"; do run_python3_test $test_case done popd %endif %files %defattr(-,root,root,-) %{_bindir}/ndg_httpclient %{python3_sitelib}/* %changelog * Sun Nov 19 2023 Shreenidhi Shedi 0.5.1-6 - Bump version as a part of openssl upgrade * Tue Dec 06 2022 Prashant S Chauhan 0.5.1-5 - Update release to compile with python 3.11 * Tue Sep 29 2020 Satya Naga Vasamsetty 0.5.1-4 - openssl 1.1.1 * Thu Jun 18 2020 Tapas Kundu 0.5.1-3 - Remove python3 * Wed Dec 05 2018 Ashwin H 0.5.1-2 - Add %check * Sun Sep 09 2018 Tapas Kundu 0.5.1-1 - Updated to 0.5.1 * Tue Aug 29 2017 Vinay Kulkarni 0.4.2-1 - Initial version of python ndg-httpsclient for PhotonOS.