%define pypi_name requestsexceptions %def_with python3 Name: python-module-%pypi_name Version: 1.1.3 Release: alt1 Summary: Import exceptions from potentially bundled packages in requests Group: Development/Python License: ASL 2.0 Url: https://github.com/openstack/%pypi_name Source: %name-%version.tar BuildArch: noarch BuildRequires: python-devel BuildRequires: python-module-setuptools BuildRequires: python-module-pbr >= 1.6 %if_with python3 BuildRequires(pre): rpm-build-python3 BuildRequires: python3-devel BuildRequires: python3-module-setuptools BuildRequires: python3-module-pbr >= 1.6 %endif %description The python requests library bundles the urllib3 library, however, some software distributions modify requests to remove the bundled library. This makes some operations, such as supressing the "insecure platform warning" messages that urllib emits difficult. This is a simple library to find the correct path to exceptions in the requests library regardless of whether they are bundled. %if_with python3 %package -n python3-module-%pypi_name Summary: Import exceptions from potentially bundled packages in requests Group: Development/Python3 %description -n python3-module-%pypi_name The python requests library bundles the urllib3 library, however, some software distributions modify requests to remove the bundled library. This makes some operations, such as supressing the "insecure platform warning" messages that urllib emits difficult. This is a simple library to find the correct path to exceptions in the requests library regardless of whether they are bundled. %endif %prep %setup # Let RPM handle the dependencies rm -f test-requirements.txt requirements.txt %if_with python3 rm -rf ../python3 cp -a . ../python3 %endif %build %python_build %if_with python3 pushd ../python3 %python3_build popd %endif %install %python_install %if_with python3 pushd ../python3 %python3_install popd %endif %files %python_sitelibdir/* %if_with python3 %files -n python3-module-%pypi_name %python3_sitelibdir/* %endif %changelog * Thu Apr 14 2016 Alexey Shabalin 1.1.3-alt1 - Initial packaging