commit 8668c9126b597fb034a1942bec445971eb79deb5
Author: Mateusz Korniak <[email protected]>
Date:   Wed Mar 25 11:12:23 2015 +0100

    Initial version 1.1.1-1. Contains work by Lukasz Gabrych.

 python-bcrypt.spec | 161 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 161 insertions(+)
---
diff --git a/python-bcrypt.spec b/python-bcrypt.spec
new file mode 100644
index 0000000..bd34029
--- /dev/null
+++ b/python-bcrypt.spec
@@ -0,0 +1,161 @@
+#
+# Conditional build:
+%bcond_with    doc             # don't build doc
+%bcond_without tests   # do not perform "make test"
+%bcond_without python2 # CPython 2.x module
+%bcond_without python3 # CPython 3.x module
+
+%define        module  bcrypt
+Summary:       Library for password hashing for your software and your servers
+Summary(pl.UTF-8):     Biblioteka do tworzenia skrótów haseł dla twojego 
oprogramowania i serwerów
+Name:          python-%{module}
+Version:       1.1.1
+Release:       1
+License:       Apache v2.0
+Group:         Libraries/Python
+Source0:       
https://pypi.python.org/packages/source/b/bcrypt/%{module}-%{version}.tar.gz
+# Source0-md5: 43c5871c6bc7da1efe6a8bae25f90ad8
+URL:           https://github.com/dstufft/bcrypt/
+BuildRequires: rpm-pythonprov
+# if py_postclean is used
+BuildRequires: rpmbuild(macros) >= 1.219
+%if %{with python2}
+BuildRequires: python-devel
+BuildRequires: python-distribute
+%endif
+%if %{with python3}
+BuildRequires: python3-devel
+BuildRequires: python3-distribute
+BuildRequires: python3-modules
+%endif
+# Below Rs only work for main package (python2)
+#Requires:             python-libs
+Requires:      python-modules
+Requires:      python-cffi > 8.0
+
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This library should be compatible with py-bcrypt and it will run on
+Python 2.6, 2.7, 3.2, 3.3 and PyPy 2.0
+
+%description -l pl.UTF-8
+Biblioteka powinna byc kompatybilna z biblioteką py-bcrypt, działa dla
+Python 2.6, 2.7, 3.2, 3.3 and PyPy 2.0
+
+%package -n python3-%{module}
+Summary:       Library for password hashing for your software and your servers
+Summary(pl.UTF-8):     Biblioteka do tworzenia skrótów haseł dla twojego 
oprogramowania i serwerów
+Group:         Libraries/Python
+Requires:      python3-modules
+Requires:      python3-cffi > 0.8
+
+%description -n python3-%{module}
+This library should be compatible with py-bcrypt and it will run on
+Python 2.6-3.4 and PyPy 2.0
+
+%description -n python3-%{module} -l pl.UTF-8
+Biblioteka powinna byc kompatybilna z biblioteką py-bcrypt, działa dla
+Python 2.6-3.4 and PyPy 2.0
+
+%package apidocs
+Summary:       %{module} API documentation
+Summary(pl.UTF-8):     Dokumentacja API %{module}
+Group:         Documentation
+
+%description apidocs
+API documentation for %{module}.
+
+%description apidocs -l pl.UTF-8
+Dokumentacja API %{module}.
+
+%prep
+%setup -q -n %{module}-%{version}
+
+%build
+%if %{with python2}
+CC="%{__cc}" \
+CFLAGS="%{rpmcppflags} %{rpmcflags}" \
+%{__python} setup.py build --build-base build-2 %{?with_tests:test}
+%endif
+
+%if %{with python3}
+CC="%{__cc}" \
+CFLAGS="%{rpmcppflags} %{rpmcflags}" \
+%{__python3} setup.py build --build-base build-3 %{?with_tests:test}
+%endif
+
+%if %{with doc}
+cd docs
+%{__make} -j1 html
+rm -rf _build/html/_sources
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%{__python} setup.py \
+       build --build-base build-2 \
+       install --skip-build \
+       --optimize=2 \
+       --root=$RPM_BUILD_ROOT
+# Deleting crypt_blowfish-1.3 source files installed
+%{__rm} $RPM_BUILD_ROOT/%{py_sitedir}/%{module}/crypt_blowfish-1.3/*
+%{__rmdir} $RPM_BUILD_ROOT/%{py_sitedir}/%{module}/crypt_blowfish-1.3/
+%py_postclean
+
+%endif
+
+%if %{with python3}
+%{__python3} setup.py \
+       build --build-base build-3 \
+       install --skip-build \
+       --optimize=2 \
+       --root=$RPM_BUILD_ROOT
+# Deleting crypt_blowfish-1.3 source files installed
+%{__rm} $RPM_BUILD_ROOT/%{py3_sitedir}/%{module}/crypt_blowfish-1.3/*
+%{__rmdir} $RPM_BUILD_ROOT/%{py3_sitedir}/%{module}/crypt_blowfish-1.3/
+%endif
+
+# in case there are examples provided
+%if %{with python2}
+# install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+# cp -a examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+%endif
+%if %{with python3}
+# install -d $RPM_BUILD_ROOT%{_examplesdir}/python3-%{module}-%{version}
+# cp -a examples/* $RPM_BUILD_ROOT%{_examplesdir}/python3-%{module}-%{version}
+# find $RPM_BUILD_ROOT%{_examplesdir}/python3-%{module}-%{version} -name 
'*.py' \
+#      | xargs sed -i '1s|^#!.*python\b|#!%{__python3}|'
+%endif
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%files
+%defattr(644,root,root,755)
+%doc README.rst
+%dir %{py_sitedir}/%{module}
+%{py_sitedir}/%{module}/*.py[co]
+%attr(755,root,root) %{py_sitedir}/*.so
+%if "%{py_ver}" > "2.4"
+%{py_sitedir}/%{module}-%{version}-py*.egg-info
+%endif
+%endif
+
+%if %{with python3}
+%files -n python3-%{module}
+%defattr(644,root,root,755)
+%doc README.rst
+%attr(755,root,root) %{py3_sitedir}/*.so
+%{py3_sitedir}/%{module}
+%{py3_sitedir}/%{module}-%{version}-py*.egg-info
+%endif
+
+%if %{with doc}
+%files apidocs
+%defattr(644,root,root,755)
+%doc docs/_build/html/*
+%endif
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-bcrypt.git/commitdiff/8668c9126b597fb034a1942bec445971eb79deb5

_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to