From 8b113ac9572c8dabc59c42a18f9354646fa952a3 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 10:59:56 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.1.1-1mamba;Sat Dec 05 2015] --- README.md | 2 ++ python-cryptography.spec | 51 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 python-cryptography.spec diff --git a/README.md b/README.md index 1bb8273..6fbd367 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-cryptography +Cryptographic recipes and primitives to Python developers. + diff --git a/python-cryptography.spec b/python-cryptography.spec new file mode 100644 index 0000000..10e1e83 --- /dev/null +++ b/python-cryptography.spec @@ -0,0 +1,51 @@ +Name: python-cryptography +Version: 1.1.1 +Release: 1mamba +Summary: Cryptographic recipes and primitives to Python developers +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/pyca/cryptography +Source: https://pypi.python.org/packages/source/c/cryptography/cryptography-%{version}.tar.gz +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libopenssl-devel +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +Requires: python-enum34 +Requires: python-pyasn1 +Requires: python-idna +Requires: python-cffi +Requires: python-ipaddress +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q -n cryptography-%{version} + +%build +CFLAGS="%{optflags}" %{__python} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} setup.py install \ + -O1 --skip-build \ + --root="%{buildroot}" \ + --install-headers=%{_includedir}/python \ + --install-lib=%{python_sitearch} \ + --record=%{name}.filelist + +sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist + +%files -f %{name}.filelist +%defattr(-,root,root) +%doc LICENSE + +%changelog +* Sat Dec 05 2015 Silvan Calarco 1.1.1-1mamba +- package created using the webbuild interface