1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
%global pypi_name transforms3d
Name: python-%{pypi_name}
Version: 0.4.2
Release: 1%{?dist}
Summary: Functions for 3D coordinate transformations
License: BSD-2-Clause
URL: https://github.com/matthew-brett/transforms3d
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-versioneer
%description
Code to convert between various geometric transformations, including:
composing rotations, zooms, shears and translations into affine matrices,
decomposing affine matrices, and converting between different representations
of rotations (matrices, Euler angles, quaternions).
%package -n python3-%{pypi_name}
Summary: Functions for 3D coordinate transformations
Provides: python-%{pypi_name} = %{version}-%{release}
Provides: python3dist(%{pypi_name}) = %{version}
Requires: python3-numpy >= 1.15
%description -n python3-%{pypi_name}
Code to convert between various geometric transformations, including:
composing rotations, zooms, shears and translations into affine matrices,
decomposing affine matrices, and converting between different representations
of rotations (matrices, Euler angles, quaternions).
%package help
Summary: Development documents and examples for %{pypi_name}
Provides: python3-%{pypi_name}-doc
Requires: python3-%{pypi_name} = %{version}-%{release}
%description help
Development documents and examples for %{pypi_name}.
%prep
%autosetup -n %{name}-%{version} -p1
# versioneer reads version from git tags or parentdir_prefix; override _version.py
# with a minimal hardcoded version to avoid UNKNOWN version in the build environment
cat > transforms3d/_version.py << 'EOF'
# This file is auto-generated by RPM spec to fix versioneer in non-git build environments.
__version__ = "0.4.2"
__version_tuple__ = (0, 4, 2)
version = "0.4.2"
version_tuple = (0, 4, 2)
EOF
%build
%py3_build
%install
%py3_install
%files -n python3-%{pypi_name}
%license LICENSE
%{python3_sitelib}/%{pypi_name}/
%{python3_sitelib}/%{pypi_name}-%{version}*.egg-info/
%files help
%doc README.rst Changelog
%license LICENSE
%changelog
* Sun Sep 20 2026 Python_Bot <Python_Bot@openeuler.org> - 0.4.2-1
- Initial package
|