Sophie

Sophie

distrib > Mageia > cauldron > x86_64 > media > core-release-src > by-pkgid > 4ec02b92b35a7b3f798dee4393300998 > files > 1

python-pythran-0.14.0-1.mga10.src.rpm

# Created by pyp2rpm-3.3.8
%global pypi_name pythran

%bcond_with docs
%bcond_with check

Name:           python-%{pypi_name}
Version:        0.14.0
Release:        %mkrel 1
Summary:        Ahead of Time compiler for numeric kernels
Group:          Development/Python
License:        BSD 3-Clause
URL:            https://github.com/serge-sans-paille/pythran
Source0:        %{pypi_source}
BuildArch:      noarch

BuildRequires:  pyproject-rpm-macros
BuildRequires:  python3-devel
%if %{with docs}
BuildRequires:  python3dist(sphinx)
BuildRequires:  python3dist(numpy)
BuildRequires:  python3dist(beniget)
BuildRequires:  python3dist(gast)
%endif

%description
Pythran is an ahead of time compiler for a subset of the Python language, with
a focus on scientific computing. It takes a Python module annotated with a few
interface descriptions and turns it into a native Python module with the same
interface, but (hopefully) faster.

It is meant to efficiently compile scientific programs, and takes advantage of
multi-cores and SIMD instruction units.

%package -n     python3-%{pypi_name}
Summary:        %{summary}
%{?python_provide:%python_provide python3-%{pypi_name}}

%description -n python3-%{pypi_name}
Pythran is an ahead of time compiler for a subset of the Python language, with
a focus on scientific computing. It takes a Python module annotated with a few
interface descriptions and turns it into a native Python module with the same
interface, but (hopefully) faster.

It is meant to efficiently compile scientific programs, and takes advantage of
multi-cores and SIMD instruction units.

%prep
%autosetup -n %{pypi_name}-%{version}

# clean unwanted files
find . -name "*.rej" -delete -print

%build
%pyproject_wheel

%if %{with docs}
# generate html docs
PYTHONPATH=${PWD} sphinx-build-3 docs html
# remove the sphinx-build leftovers
rm -rf html/.{doctrees,buildinfo}
%endif

%install
%pyproject_install
%pyproject_save_files %{pypi_name} omp

%if %{with check}
%check
%{__python3} setup.py test
%endif

%files -n python3-%{pypi_name} -f %{pyproject_files}
%license LICENSE
%doc README.rst pythran/pythonic/patch/README.rst
%if %{with docs}
%doc html
%endif
%{_bindir}/pythran
%{_bindir}/pythran-config


%changelog
* Thu Dec 21 2023 daviddavid <daviddavid> 0.14.0-1.mga10
+ Revision: 2020594
- new version: 0.14.0

* Thu Dec 21 2023 daviddavid <daviddavid> 0.11.0-2.mga10
+ Revision: 2020590
- rebuild for py3.12

* Thu Sep 08 2022 wally <wally> 0.11.0-1.mga9
+ Revision: 1885842
- imported package python-pythran