[packages/python-cffi] - new

qboosh qboosh at pld-linux.org
Fri Feb 28 20:15:13 CET 2014


commit a3ed093066b71c653b77360edb0e0ab49bee6ad3
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date:   Fri Feb 28 20:17:40 2014 +0100

    - new

 python-cffi.spec | 128 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 128 insertions(+)
---
diff --git a/python-cffi.spec b/python-cffi.spec
new file mode 100644
index 0000000..dd3192e
--- /dev/null
+++ b/python-cffi.spec
@@ -0,0 +1,128 @@
+#
+# Conditional build:
+%bcond_without  python2 # CPython 2.x module
+%bcond_without  python3 # CPython 3.x module
+%bcond_without	doc	# sphinx based documentation
+#
+Summary:	Foreign Function Interface for Python 2 calling C code
+Summary(pl.UTF-8):	Interfejs funkcji obcych (FFI) dla Pythona 2 wywołującego kod w C
+Name:		python-cffi
+Version:	0.8.1
+Release:	1
+License:	MIT
+Group:		Libraries/Python
+Source0:	https://pypi.python.org/packages/source/c/cffi/cffi-%{version}.tar.gz
+# Source0-md5:	1a877bf113bfe90fdefedbf9e39310d2
+URL:		http://cffi.readthedocs.org/
+%if %{with python2}
+BuildRequires:	python >= 1:2.6
+BuildRequires:	python-devel >= 1:2.6
+BuildRequires:	rpmbuild(macros) >= 1.219
+%endif
+%if %{with python3}
+BuildRequires:	python3 >= 3.2
+BuildRequires:	python3-devel >= 3.2
+%endif
+%{?with_doc:BuildRequires:	sphinx-pdg}
+BuildRequires:	rpm-pythonprov
+Requires:	python-modules
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Foreign Function Interface for Python calling C code. The aim of this
+project is to provide a convenient and reliable way of calling C code
+from Python without learning additional language or API.
+
+This package contains Python 2 module.
+
+%description -l pl.UTF-8
+CFFI to interfejs funkcji obcych (FFI - foreign Function Interface) do
+wywoływania kodu w C z Pythona. Celem projektu jest dostarczenie
+wygodnego i wiarygodnego sposobu wywoływania kodu w C z Pythona bez
+potrzeby nauki dodatkowego języka lub API.
+
+Ten pakiet zawiera moduł Pythona 2.
+
+%package -n python3-cffi
+Summary:	Foreign Function Interface for Python 3 calling C code
+Summary(pl.UTF-8):	Interfejs funkcji obcych (FFI) dla Pythona 3 wywołującego kod w C
+Group:		Libraries/Python
+Requires:	python3-modules
+
+%description -n python3-cffi
+Foreign Function Interface for Python calling C code. The aim of this
+project is to provide a convenient and reliable way of calling C code
+from Python without learning additional language or API.
+
+This package contains Python 3 module.
+
+%description -n python3-cffi -l pl.UTF-8
+CFFI to interfejs funkcji obcych (FFI - foreign Function Interface) do
+wywoływania kodu w C z Pythona. Celem projektu jest dostarczenie
+wygodnego i wiarygodnego sposobu wywoływania kodu w C z Pythona bez
+potrzeby nauki dodatkowego języka lub API.
+
+Ten pakiet zawiera moduł Pythona 3.
+
+%prep
+%setup -q -n cffi-%{version}
+
+%build
+%if %{with python2}
+%{__python} setup.py build \
+	--build-base build-2
+%endif
+%if %{with python3}
+%{__python3} setup.py build \
+	--build-base build-3
+%endif
+
+%if %{with doc}
+%{__make} -C doc html
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%{__python} setup.py \
+	build \
+		--build-base build-2 \
+	install \
+		--root=$RPM_BUILD_ROOT \
+		--optimize=2
+
+%py_postclean
+%endif
+
+%if %{with python3}
+%{__python3} setup.py \
+	build \
+		--build-base build-3 \
+	install \
+		--root=$RPM_BUILD_ROOT \
+		--optimize=2
+%endif
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with python2}
+%files
+%defattr(644,root,root,755)
+%{?with_doc:%doc doc/build/html/{*.html,*.js,_static}}
+%attr(755,root,root) %{py_sitedir}/_cffi_backend.so
+%dir %{py_sitedir}/cffi
+%{py_sitedir}/cffi/*.py[co]
+%{py_sitedir}/cffi-%{version}-py*.egg-info
+%endif
+
+%if %{with python3}
+%files -n python3-cffi
+%defattr(644,root,root,755)
+%{?with_doc:%doc doc/build/html/{*.html,*.js,_static}}
+%attr(755,root,root) %{py3_sitedir}/_cffi_backend.cpython-*.so
+%{py3_sitedir}/cffi/*.py
+%{py3_sitedir}/cffi/__pycache__
+%{py3_sitedir}/cffi-%{version}-py*.egg-info
+%endif
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-cffi.git/commitdiff/a3ed093066b71c653b77360edb0e0ab49bee6ad3



More information about the pld-cvs-commit mailing list