]> git.pld-linux.org Git - packages/python-cffi.git/commitdiff
- new
authorJakub Bogusz <qboosh@pld-linux.org>
Fri, 28 Feb 2014 19:17:40 +0000 (20:17 +0100)
committerJakub Bogusz <qboosh@pld-linux.org>
Fri, 28 Feb 2014 19:17:40 +0000 (20:17 +0100)
python-cffi.spec [new file with mode: 0644]

diff --git a/python-cffi.spec b/python-cffi.spec
new file mode 100644 (file)
index 0000000..dd3192e
--- /dev/null
@@ -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
This page took 0.077437 seconds and 4 git commands to generate.