[packages/python-service_identity] - new

qboosh qboosh at pld-linux.org
Sun Mar 22 20:37:26 CET 2020


commit 7f2ca10b6ed2bc71d8c93f66ef4ba6e6e602cd9e
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date:   Sun Mar 22 20:38:00 2020 +0100

    - new

 python-service_identity.spec | 152 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 152 insertions(+)
---
diff --git a/python-service_identity.spec b/python-service_identity.spec
new file mode 100644
index 0000000..22df8d6
--- /dev/null
+++ b/python-service_identity.spec
@@ -0,0 +1,152 @@
+#
+# Conditional build:
+%bcond_without	doc	# Sphinx documentation
+%bcond_with	tests	# unit tests (not included in release tarball)
+%bcond_without	python2 # CPython 2.x module
+%bcond_without	python3 # CPython 3.x module
+
+Summary:	Service identity verification for pyOpenSSL & cryptography
+Summary(pl.UTF-8):	Weryfikacja tożsamości usługi dla modułów pyOpenSSL i cryptography
+Name:		python-service_identity
+Version:	18.1.0
+Release:	1
+License:	MIT
+Group:		Libraries/Python
+#Source0Download: https://pypi.org/simple/service_identity/
+Source0:	https://files.pythonhosted.org/packages/source/s/service-identity/service_identity-%{version}.tar.gz
+# Source0-md5:	c6b8bac93e7d899a1da313a19cc6570a
+URL:		https://pypi.org/project/service_identity/
+%if %{with python2}
+BuildRequires:	python-modules >= 1:2.7
+BuildRequires:	python-setuptools
+%if %{with tests}
+BuildRequires:	python-attrs >= 16.0.0
+BuildRequires:	python-cryptography
+BuildRequires:	python-ipaddress
+BuildRequires:	python-pyasn1
+BuildRequires:	python-pyasn1_modules
+BuildRequires:	python-pytest
+%endif
+%endif
+%if %{with python3}
+BuildRequires:	python3-modules >= 1:3.4
+BuildRequires:	python3-setuptools
+%if %{with tests}
+BuildRequires:	python3-attrs >= 16.0.0
+BuildRequires:	python3-cryptography
+BuildRequires:	python3-pyasn1
+BuildRequires:	python3-pyasn1_modules
+BuildRequires:	python3-pytest
+%endif
+%endif
+BuildRequires:	rpm-pythonprov
+BuildRequires:	rpmbuild(macros) >= 1.714
+%if %{with doc}
+BuildRequires:	sphinx-pdg
+%endif
+Requires:	python-modules >= 1:2.7
+BuildArch:	noarch
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Use this package if:
+- you use pyOpenSSL and don't want to be MITM'ed or
+- if you want to verify that a PyCA cryptography certificate is valid
+  for a certain hostname or IP address.
+
+%description -l pl.UTF-8
+Ten moduł jest przydatny jeśli:
+- używamy pyOpenSSL i chcemy uniknąć ataku MITM, lub też
+- chcemy zweryfikować, że certyfikat PyCA cryptography jest poprawny
+  dla określonej nazwy hosta lub adresu IP.
+
+%package -n python3-service_identity
+Summary:	Service identity verification for pyOpenSSL & cryptography
+Summary(pl.UTF-8):	Weryfikacja tożsamości usługi dla modułów pyOpenSSL i cryptography
+Group:		Libraries/Python
+Requires:	python3-modules >= 1:3.4
+
+%description -n python3-service_identity
+Use this package if:
+- you use pyOpenSSL and don't want to be MITM'ed or
+- if you want to verify that a PyCA cryptography certificate is valid
+  for a certain hostname or IP address.
+
+%description -n python3-service_identity -l pl.UTF-8
+Ten moduł jest przydatny jeśli:
+- używamy pyOpenSSL i chcemy uniknąć ataku MITM, lub też
+- chcemy zweryfikować, że certyfikat PyCA cryptography jest poprawny
+  dla określonej nazwy hosta lub adresu IP.
+
+%package apidocs
+Summary:	API documentation for Python service_identity module
+Summary(pl.UTF-8):	Dokumentacja API modułu Pythona service_identity
+Group:		Documentation
+
+%description apidocs
+API documentation for Python service_identity module.
+
+%description apidocs -l pl.UTF-8
+Dokumentacja API modułu Pythona service_identity.
+
+%prep
+%setup -q -n service_identity-%{version}
+
+%build
+%if %{with python2}
+%py_build
+
+%if %{with tests}
+%{__python} -m pytest tests
+%endif
+%endif
+
+%if %{with python3}
+%py3_build
+
+%if %{with tests}
+%{__python3} -m pytest tests
+%endif
+%endif
+
+%if %{with doc}
+%{__make} -C docs html
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%py_install
+
+%py_postclean
+%endif
+
+%if %{with python3}
+%py3_install
+%endif
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS.rst CHANGELOG.rst LICENSE README.rst
+%{py_sitescriptdir}/service_identity
+%{py_sitescriptdir}/service_identity-%{version}-py*.egg-info
+%endif
+
+%if %{with python3}
+%files -n python3-service_identity
+%defattr(644,root,root,755)
+%doc AUTHORS.rst CHANGELOG.rst LICENSE README.rst
+%{py3_sitescriptdir}/service_identity
+%{py3_sitescriptdir}/service_identity-%{version}-py*.egg-info
+%endif
+
+%if %{with doc}
+%files apidocs
+%defattr(644,root,root,755)
+%doc docs/_build/html/{_static,*.html,*.js}
+%endif
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-service_identity.git/commitdiff/7f2ca10b6ed2bc71d8c93f66ef4ba6e6e602cd9e



More information about the pld-cvs-commit mailing list