See https://lists.fedoraproject.org/archives/list/packaging@lists.fedoraproject.org/thread/UFKUM5UKCTNGIT3KJVYEI5VXPI23QMBN/ Flatpak builds redefine %_prefix and the dependencies should remain present. Also get rid of one useless ^ and prep the pattern for two digit Python major versions. Add a test that tests that we match our default %_prefix (was the case even before this commit).
28 lines
1.1 KiB
Text
28 lines
1.1 KiB
Text
%__python_provides() %{lua:
|
|
-- Match buildroot/payload paths of the form
|
|
-- /PATH/OF/BUILDROOT/usr/bin/pythonMAJOR.MINOR
|
|
-- generating a line of the form
|
|
-- python(abi) = MAJOR.MINOR
|
|
-- (Don't match against -config tools e.g. /usr/bin/python2.6-config)
|
|
local path = rpm.expand('%1')
|
|
if path:match('/usr/bin/python%d+%.%d+$') then
|
|
provides = path:gsub('.*/usr/bin/python(%d+%.%d+)', 'python(abi) = %1')
|
|
print(provides)
|
|
end
|
|
}
|
|
|
|
%__python_requires() %{lua:
|
|
-- Match buildroot paths of the form
|
|
-- /PATH/OF/BUILDROOT/usr/lib/pythonMAJOR.MINOR/ and
|
|
-- /PATH/OF/BUILDROOT/usr/lib64/pythonMAJOR.MINOR/
|
|
-- generating a line of the form:
|
|
-- python(abi) = MAJOR.MINOR
|
|
local path = rpm.expand('%1')
|
|
if path:match('/usr/lib%d*/python%d+%.%d+/.*') then
|
|
requires = path:gsub('.*/usr/lib%d*/python(%d+%.%d+)/.*', 'python(abi) = %1')
|
|
print(requires)
|
|
end
|
|
}
|
|
|
|
%__python_path ^((%{_prefix}/lib(64)?/python[[:digit:]]+\\.[[:digit:]]+/.*\\.(py[oc]?|so))|(%{_bindir}/python[[:digit:]]+\\.[[:digit:]]+))$
|
|
%__python_magic [Pp]ython.*(executable|byte-compiled)
|