You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.5 KiB
73 lines
2.5 KiB
%py_setup setup.py |
|
%py_shbang_opts -s |
|
|
|
# Use the slashes after expand so that the command starts on the same line as |
|
# the macro |
|
%py_build() %{expand:\\\ |
|
CFLAGS="%{optflags}" %{__python} %{py_setup} %{?py_setup_args} build --executable="%{__python2} %{py_shbang_opts}" %{?*} |
|
sleep 1 |
|
} |
|
|
|
%py_build_egg() %{expand:\\\ |
|
CFLAGS="%{optflags}" %{__python} %{py_setup} %{?py_setup_args} bdist_egg %{?*} |
|
sleep 1 |
|
} |
|
|
|
%py_build_wheel() %{expand:\\\ |
|
CFLAGS="%{optflags}" %{__python} %{py_setup} %{?py_setup_args} bdist_wheel %{?*} |
|
sleep 1 |
|
} |
|
|
|
%py_install() %{expand:\\\ |
|
CFLAGS="%{optflags}" %{__python} %{py_setup} %{?py_setup_args} install -O1 --skip-build --root %{buildroot} %{?*} |
|
} |
|
|
|
%py_install_egg() %{expand:\\\ |
|
mkdir -p %{buildroot}%{python_sitelib} |
|
easy_install -m --prefix %{buildroot}%{_prefix} -Z dist/*-py%{python_version}.egg %{?*} |
|
} |
|
|
|
%py_install_wheel() %{expand:\\\ |
|
pip install -I dist/%{1} --root %{buildroot} --strip-file-prefix %{buildroot} --no-deps |
|
} |
|
|
|
%python_provide() %{lua: |
|
function string.starts(String,Start) |
|
return string.sub(String,1,string.len(Start))==Start |
|
end |
|
package = rpm.expand("%{?1}") |
|
vr = rpm.expand("%{?epoch:%{epoch}:}%{version}-%{release}") |
|
if (string.starts(package, "python2-")) then |
|
if (rpm.expand("%{?buildarch}") ~= "noarch") then |
|
str = "Provides: python-" .. string.sub(package,9,string.len(package)) .. "%{?_isa} = " .. vr |
|
print(rpm.expand(str)) |
|
end |
|
print("\\nProvides: python-") |
|
print(string.sub(package,9,string.len(package))) |
|
print(" = ") |
|
print(vr) |
|
--Obsoleting the previous default python package |
|
print("\\nObsoletes: python-") |
|
print(string.sub(package,9,string.len(package))) |
|
print(" < ") |
|
print(vr) |
|
elseif (string.starts(package, "python" .. rpm.expand("%{python3_pkgversion}") .. "-")) then |
|
--No unversioned provides as python3 is not default |
|
elseif (rpm.expand("%{?python3_other_pkgversion}") ~= "" and string.starts(package, "python" .. rpm.expand("%{python3_other_pkgversion}") .. "-")) then |
|
--No unversioned provides as python3_other is not default |
|
elseif (string.starts(package, "pypy-")) then |
|
--No unversioned provides as pypy is not default |
|
elseif (string.starts(package, "pypy3-")) then |
|
--No unversioned provides as pypy is not default |
|
elseif (string.starts(package, "python-")) then |
|
--Providing the current default python |
|
print("Provides: python2-") |
|
print(string.sub(package,8,string.len(package))) |
|
print(" = ") |
|
print(vr) |
|
else |
|
print("%python_provide: ERROR: ") |
|
print(package) |
|
print(" not recognized.") |
|
end |
|
}
|
|
|