Initial import
This commit is contained in:
parent
4f749574d5
commit
ec28c775cd
5 changed files with 165 additions and 0 deletions
54
macros.python
Normal file
54
macros.python
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
%py_setup setup.py
|
||||
%py_shbang_opts -s
|
||||
|
||||
%py_build() %{expand:\
|
||||
CFLAGS="%{optflags}" %{__python} %{py_setup} %{?py_setup_args} build --executable="%{__python2} %{py_shbang_opts}" %{?1}\
|
||||
}
|
||||
|
||||
%py_install() %{expand:\
|
||||
CFLAGS="%{optflags}" %{__python} %{py_setup} %{?py_setup_args} install -O1 --skip-build --root %{buildroot} %{?1}\
|
||||
}
|
||||
|
||||
%python_provide() %{lua:\
|
||||
function string.starts(String,Start)\
|
||||
return string.sub(String,1,string.len(Start))==Start\
|
||||
end\
|
||||
package = rpm.expand("%{?1:%{1}}");\
|
||||
vr = rpm.expand("%{?epoch:%{epoch}:}%{version}-%{release}")
|
||||
if (string.starts(package, "python2-")) then\
|
||||
str = "Provides: python-" .. string.sub(package,9,string.len(package)) .. "%{?_isa} = " .. vr;\
|
||||
print(rpm.expand(str));\
|
||||
print("\\nProvides: python-");\
|
||||
print(string.sub(package,9,string.len(package)));\
|
||||
print(" = ");\
|
||||
print(vr);\
|
||||
--Obsoleting the previous default python package\
|
||||
str = "\\nObsoletes: python-" .. string.sub(package,9,string.len(package)) .. "%{?_isa} < " .. vr;\
|
||||
print(rpm.expand(str));\
|
||||
print("\\nObsoletes: python-");\
|
||||
print(string.sub(package,9,string.len(package)));\
|
||||
print(" < ");\
|
||||
print(vr);\
|
||||
elseif (string.starts(package, "python3-")) then\
|
||||
--No unversioned provides as python3 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("ERROR: ");\
|
||||
print(package);\
|
||||
print("not recognized.");\
|
||||
end\
|
||||
}
|
||||
|
||||
# Set to /bin/true to avoid %ifdefs in specfiles
|
||||
%__python3_other /bin/true
|
||||
%py3_other_build /bin/true
|
||||
%py3_other_install /bin/true
|
||||
Loading…
Add table
Add a link
Reference in a new issue