python-maturin/python-maturin.spec
Mia Herkt 41a876a3a1 - Update to v0.13.2
* Add Linux mips64el architecture support
    gh#PyO3/maturin#1023
  * Add Linux mipsel architecture support
    gh#PyO3/maturin#1024
  * Add Linux 32-bit powerpc architecture support
    gh#PyO3/maturin#1026
  * Add Linux sparc64 architecture support
    gh#PyO3/maturin#1027
  * Bump anyhow from 1.0.58 to 1.0.59
    gh#PyO3/maturin#1031
  * Bump serde from 1.0.140 to 1.0.141
    gh#PyO3/maturin#1032
  * Bump clap from 3.2.15 to 3.2.16
    gh#PyO3/maturin#1033
  * Bump tracing from 0.1.35 to 0.1.36
    gh#PyO3/maturin#1035
  * Bump dialoguer from 0.10.1 to 0.10.2
    gh#PyO3/maturin#1034
  * Add PEP 440 local version identifier support
    gh#PyO3/maturin#1037
  * Fix path search upon python3 -m maturin
    gh#PyO3/maturin#1038
  * Update cargo-zigbuild to 0.12.0
    gh#PyO3/maturin#1042
  * Fix inconsistent Cargo.toml and pyproject.toml path handling
    gh#PyO3/maturin#1043
  * Clarify sdist build error due to missing pyproject.toml
    gh#PyO3/maturin#1045
  * Find python module next to pyproject.toml if pyproject.toml

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-maturin?expand=0&rev=37
2022-08-14 15:43:49 +00:00

80 lines
2.5 KiB
RPMSpec

#
# spec file for package python-maturin
#
# Copyright (c) 2022 SUSE LLC
#
# 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/
#
Name: python-maturin
Version: 0.13.2
Release: 0
Summary: Rust/Python Interoperability
License: Apache-2.0 OR MIT
URL: https://github.com/PyO3/maturin
Source: https://files.pythonhosted.org/packages/source/m/maturin/maturin-%{version}.tar.gz
Source1: vendor.tar.xz
Source2: cargo_config
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools-rust >= 1.4.0}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module tomli >= 1.1.0 if %python-base < 3.11}
BuildRequires: %{python_module wheel >= 0.36.2}
BuildRequires: cargo-packaging
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires(post): update-alternatives
Requires(postun):update-alternatives
%if 0%{?python_version_nodots} < 311
Requires: python-tomli >= 1.1.0
%endif
%python_subpackages
%description
Build and publish crates with pyo3, rust-cpython and cffi bindings
as well as rust binaries as python packages.
This project is a zero-configuration replacement for
setuptools-rust milksnake. It supports building wheels for Python
3.6+, can upload them to PyPI and has basic PyPy support.
%prep
%autosetup -a1 -n maturin-%{version}
mkdir .cargo
cp %{SOURCE2} .cargo/config
sed -i '1{/env python/d}' maturin/__init__.py
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%python_clone -a %{buildroot}%{_bindir}/maturin
%post
%python_install_alternative maturin
%postun
%python_uninstall_alternative maturin
%files %{python_files}
%license license-apache license-mit
%doc Changelog.md Readme.md
%python_alternative %{_bindir}/maturin
%{python_sitearch}/maturin
%{python_sitearch}/maturin-%{version}*-info
%changelog