mirror of
https://github.com/openRuyi-Project/openRuyi.git
synced 2026-05-13 18:33:44 +00:00
94 lines
3.4 KiB
RPMSpec
94 lines
3.4 KiB
RPMSpec
# SPDX-FileCopyrightText: (C) 2025 Institute of Software, Chinese Academy of Sciences (ISCAS)
|
|
# SPDX-FileCopyrightText: (C) 2025 openRuyi Project Contributors
|
|
# SPDX-FileContributor: Zheng Junjie <zhengjunjie@iscas.ac.cn>
|
|
# SPDX-FileContributor: misaka00251 <liuxin@iscas.ac.cn>
|
|
#
|
|
# SPDX-License-Identifier: MulanPSL-2.0
|
|
|
|
# This bcond allows to ship a non-compiled version
|
|
# Slower, but sometimes necessary with alpha Python versions
|
|
%bcond cython_compile 1
|
|
|
|
Name: python-Cython
|
|
Version: 3.1.3
|
|
Release: %autorelease
|
|
Summary: Language for writing Python extension modules
|
|
License: Apache-2.0
|
|
URL: http://www.cython.org
|
|
#!RemoteAsset
|
|
Source: https://github.com/cython/cython/archive/%{version}/Cython-%{version}.tar.gz
|
|
|
|
BuildRequires: python3-devel
|
|
BuildRequires: expat
|
|
|
|
%if %{with cython_compile}
|
|
BuildRequires: gcc
|
|
%else
|
|
BuildArch: noarch
|
|
%endif
|
|
|
|
%description
|
|
The Cython language makes writing C extensions for the Python language as easy
|
|
as Python itself. Cython is a source code translator based on Pyrex,
|
|
but supports more cutting edge functionality and optimizations.
|
|
|
|
The Cython language is a superset of the Python language (almost all Python
|
|
code is also valid Cython code), but Cython additionally supports optional
|
|
static typing to natively call C functions, operate with C++ classes and
|
|
declare fast C types on variables and class attributes.
|
|
This allows the compiler to generate very efficient C code from Cython code.
|
|
|
|
This makes Cython the ideal language for writing glue code for external C/C++
|
|
libraries, and for fast C modules that speed up the execution of Python code.
|
|
|
|
%package -n python3-Cython
|
|
Summary: %{summary}
|
|
Provides: Cython = %{version}-%{release}
|
|
Provides: Cython%{?_isa} = %{version}-%{release}
|
|
Provides: cython = %{version}-%{release}
|
|
Provides: cython%{?_isa} = %{version}-%{release}
|
|
%py_provides python3-Cython
|
|
# For lazy people - 251
|
|
%py_provides python3-cython
|
|
# A small templating library is bundled in Cython/Tempita
|
|
# Upstream version 0.5.2 is available from https://pypi.org/project/Tempita
|
|
# but the bundled copy is patched and reorganized.
|
|
# Upstream homepage is inaccessible.
|
|
Provides: bundled(python3dist(tempita))
|
|
|
|
%description -n python3-Cython
|
|
The Cython language makes writing C extensions for the Python language as easy
|
|
as Python itself. Cython is a source code translator based on Pyrex,
|
|
but supports more cutting edge functionality and optimizations.
|
|
|
|
The Cython language is a superset of the Python language (almost all Python
|
|
code is also valid Cython code), but Cython additionally supports optional
|
|
static typing to natively call C functions, operate with C++ classes and
|
|
declare fast C types on variables and class attributes.
|
|
This allows the compiler to generate very efficient C code from Cython code.
|
|
|
|
This makes Cython the ideal language for writing glue code for external C/C++
|
|
libraries, and for fast C modules that speed up the execution of Python code.
|
|
|
|
%prep
|
|
%autosetup -n cython-%{version} -p1
|
|
|
|
%generate_buildrequires
|
|
%pyproject_buildrequires
|
|
|
|
%build
|
|
%pyproject_wheel %{!?with_cython_compile:-C--global-option=--no-cython-compile}
|
|
|
|
%install
|
|
%pyproject_install
|
|
%pyproject_save_files Cython cython pyximport
|
|
|
|
%files -n python3-Cython -f %{pyproject_files}
|
|
%doc README.rst CHANGES.rst USAGE.txt Demos Doc Tools
|
|
%{_bindir}/cython
|
|
%{_bindir}/cygdb
|
|
%{_bindir}/cythonize
|
|
|
|
%changelog
|
|
%{?autochangelog}
|