2021-11-28 20:30:04 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-setuptools-rust
|
|
|
|
#
|
2023-01-02 09:53:54 +00:00
|
|
|
# Copyright (c) 2023 SUSE LLC
|
2021-11-28 20:30:04 +00:00
|
|
|
#
|
|
|
|
# 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 https://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2023-04-21 14:24:15 +00:00
|
|
|
%global skip_python2 1
|
|
|
|
%{?sle15_python_module_pythons}
|
2021-11-28 20:30:04 +00:00
|
|
|
Name: python-setuptools-rust
|
2023-01-02 09:53:54 +00:00
|
|
|
Version: 1.5.2
|
2021-11-28 20:30:04 +00:00
|
|
|
Release: 0
|
|
|
|
Summary: Setuptools plugin for Rust extensions
|
|
|
|
License: BSD-3-Clause
|
|
|
|
Group: Development/Languages/Python
|
|
|
|
URL: https://github.com/PyO3/setuptools-rust
|
|
|
|
Source: https://files.pythonhosted.org/packages/source/s/setuptools-rust/setuptools-rust-%{version}.tar.gz
|
2022-07-20 10:10:13 +00:00
|
|
|
BuildRequires: %{python_module base >= 3.7}
|
2021-11-28 20:30:04 +00:00
|
|
|
BuildRequires: %{python_module pip}
|
2022-07-18 06:21:35 +00:00
|
|
|
BuildRequires: %{python_module pyparsing}
|
2021-11-28 20:30:04 +00:00
|
|
|
BuildRequires: %{python_module semantic_version >= 2.8.2}
|
2022-07-18 06:21:35 +00:00
|
|
|
BuildRequires: %{python_module setuptools >= 62.4}
|
2022-07-20 10:10:13 +00:00
|
|
|
BuildRequires: %{python_module setuptools_scm >= 6.3.2}
|
2021-11-28 20:30:04 +00:00
|
|
|
BuildRequires: %{python_module typing_extensions >= 3.7.4.3}
|
|
|
|
BuildRequires: %{python_module wheel}
|
2022-07-20 10:10:13 +00:00
|
|
|
BuildRequires: cargo
|
2022-07-18 07:35:58 +00:00
|
|
|
BuildRequires: fdupes
|
2021-11-28 20:30:04 +00:00
|
|
|
BuildRequires: python-rpm-macros
|
2022-07-20 10:10:13 +00:00
|
|
|
BuildRequires: rust
|
|
|
|
Requires: cargo
|
2021-11-28 20:30:04 +00:00
|
|
|
Requires: python-semantic_version >= 2.8.2
|
2022-07-20 10:10:13 +00:00
|
|
|
Requires: python-setuptools >= 62.4
|
2021-11-28 20:30:04 +00:00
|
|
|
Requires: python-typing_extensions >= 3.7.4.3
|
2022-07-20 10:10:13 +00:00
|
|
|
Requires: rust
|
2021-11-28 20:30:04 +00:00
|
|
|
BuildArch: noarch
|
2022-07-18 07:38:57 +00:00
|
|
|
# SECTION test requirements
|
|
|
|
BuildRequires: %{python_module pytest}
|
|
|
|
# /SECTION
|
2021-11-28 20:30:04 +00:00
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
%description
|
|
|
|
setuptools-rust is a plugin for setuptools to build Rust Python extensions
|
|
|
|
implemented with PyO3 or rust-cpython.
|
|
|
|
|
|
|
|
Compile and distribute Python extensions written in Rust as easily as if they
|
|
|
|
were written in C.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n setuptools-rust-%{version}
|
|
|
|
|
|
|
|
%build
|
2022-07-20 10:10:13 +00:00
|
|
|
%pyproject_wheel
|
2021-11-28 20:30:04 +00:00
|
|
|
|
|
|
|
%install
|
2022-07-20 10:10:13 +00:00
|
|
|
%pyproject_install
|
2022-07-18 07:35:58 +00:00
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2021-11-28 20:30:04 +00:00
|
|
|
|
|
|
|
%check
|
|
|
|
export LANG=en_US.UTF-8
|
2023-01-02 09:53:54 +00:00
|
|
|
# network / crates.io access
|
|
|
|
%pytest tests/ -k "not test_get_lib_name_namespace_package"
|
2022-07-20 10:10:13 +00:00
|
|
|
pushd examples/hello-world
|
|
|
|
%{python_expand # See noxfile.py
|
|
|
|
# hello-world is the only example which does not need extra rust packages (via cargo_vendor)
|
|
|
|
export PYTHONPATH=%{buildroot}%{$python_sitelib}
|
|
|
|
$python -m pip install --no-build-isolation --target=$PWD/build/exampleinstall/ --no-deps --no-index .
|
|
|
|
$PWD/build/exampleinstall/bin/hello-world
|
|
|
|
}
|
|
|
|
popd
|
2022-07-18 07:35:58 +00:00
|
|
|
|
2021-11-28 20:30:04 +00:00
|
|
|
%files %{python_files}
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md
|
2022-07-20 10:10:13 +00:00
|
|
|
%{python_sitelib}/setuptools_rust-%{version}*-info
|
|
|
|
%{python_sitelib}/setuptools_rust
|
2021-11-28 20:30:04 +00:00
|
|
|
|
|
|
|
%changelog
|