Add CI tests for python(abi) provides
This commit is contained in:
parent
486ca7e540
commit
eae8dd0f57
3 changed files with 80 additions and 0 deletions
43
tests/pythonabi.spec
Normal file
43
tests/pythonabi.spec
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
Name: pythonabi
|
||||
Version: 0
|
||||
Release: 0
|
||||
Summary: ...
|
||||
License: MIT
|
||||
BuildRequires: python3-devel
|
||||
|
||||
%description
|
||||
...
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{python3_sitelib}
|
||||
mkdir -p %{buildroot}%{python3_sitearch}
|
||||
mkdir -p %{buildroot}%{_bindir}
|
||||
echo "print()" > %{buildroot}%{python3_sitelib}/file.py
|
||||
cp %{python3_sitearch}/../lib-dynload/cmath.*.so %{buildroot}%{python3_sitearch}/file.so
|
||||
cp %{_bindir}/python%{python3_version} %{buildroot}%{_bindir}/python%{python3_version}
|
||||
|
||||
|
||||
%package -n python-noarch
|
||||
Summary: ...
|
||||
BuildArch: noarch
|
||||
%description -n python-noarch
|
||||
...
|
||||
%files -n python-noarch
|
||||
%pycached %{python3_sitelib}/file.py
|
||||
|
||||
|
||||
%package -n python-arched
|
||||
Summary: ...
|
||||
%description -n python-arched
|
||||
...
|
||||
%files -n python-arched
|
||||
%{python3_sitearch}/file.so
|
||||
|
||||
|
||||
%package -n python-interpreter
|
||||
Summary: ...
|
||||
%description -n python-interpreter
|
||||
...
|
||||
%files -n python-interpreter
|
||||
%{_bindir}/python%{python3_version}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue