File pyrex.spec of Package pyrex
#
# spec file for package pyrex
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: pyrex
Version: 0.9.9
Release: 0
Summary: Compiles code that mixes Python and C data types into a C extension for Python
License: Apache-2.0
Group: Development/Languages/Python
Url: http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/
Source0: http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/Pyrex-%{version}.tar.gz
Patch0: pyrex-no-buildtime.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: pkgconfig
BuildRequires: python-devel
%if 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%else
BuildArch: noarch
%py_requires
%endif
%description
Pyrex is a language specially designed for writing Python extension
modules. It's designed to bridge the gap between the nice, high-level,
easy-to-use world of Python and the messy, low-level world of C.
%prep
%setup -q -n Pyrex-%{version}
%patch0 -p1
%build
export CFLAGS="%{optflags}"
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%defattr(-,root,root)
%doc *.txt Doc/*
%doc Demos
%{_bindir}/pyrexc
%{python_sitelib}/Pyrex-%{version}-py%{py_ver}.egg-info
%{python_sitelib}/Pyrex/
%changelog