package created using the webbuild interface [release 0.11-1mamba;Mon Mar 24 2014]
This commit is contained in:
parent
53bc8356c2
commit
060ca0e533
@ -1,2 +1,4 @@
|
|||||||
# python-ecdsa
|
# python-ecdsa
|
||||||
|
|
||||||
|
An easy-to-use implementation of ECDSA cryptography (Elliptic Curve Digital Signature Algorithm).
|
||||||
|
|
||||||
|
49
python-ecdsa.spec
Normal file
49
python-ecdsa.spec
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
Name: python-ecdsa
|
||||||
|
Version: 0.11
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: An easy-to-use implementation of ECDSA cryptography (Elliptic Curve Digital Signature Algorithm)
|
||||||
|
Group: System/Libraries
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
URL: https://pypi.python.org/pypi/ecdsa
|
||||||
|
Source: https://pypi.python.org/packages/source/e/ecdsa/ecdsa-%{version}.tar.gz
|
||||||
|
License: MIT
|
||||||
|
## AUTOBUILDREQ-BEGIN
|
||||||
|
BuildRequires: libpython-devel
|
||||||
|
## AUTOBUILDREQ-END
|
||||||
|
Requires: python >= %python_version
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n ecdsa-%{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)
|
||||||
|
## note: this list is just an example; modify as required
|
||||||
|
# %{python_sitearch}/%{name}.py*
|
||||||
|
# %{python_sitearch}/%{name}.so
|
||||||
|
%doc LICENSE
|
||||||
|
## note: eventually add the remaining documents (if any)
|
||||||
|
# %doc NEWS README.md
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Mar 24 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 0.11-1mamba
|
||||||
|
- package created using the webbuild interface
|
Loading…
Reference in New Issue
Block a user