2019-06-10 12:45:52 +00:00
|
|
|
# unversioned macros: used with user defined __python, no longer part of rpm >= 4.15
|
2019-06-12 09:26:03 +00:00
|
|
|
# __python is defined to error by default in the srpm macros
|
2019-06-10 12:45:52 +00:00
|
|
|
%python_sitelib %(%{__python} -Esc "from distutils.sysconfig import get_python_lib; print(get_python_lib())")
|
|
|
|
%python_sitearch %(%{__python} -Esc "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")
|
|
|
|
%python_version %(%{__python} -Esc "import sys; sys.stdout.write('{0.major}.{0.minor}'.format(sys.version_info))")
|
|
|
|
%python_version_nodots %(%{__python} -Esc "import sys; sys.stdout.write('{0.major}{0.minor}'.format(sys.version_info))")
|
2020-07-20 15:33:32 +00:00
|
|
|
%python_platform %(%{__python} -Esc "import sysconfig; print(sysconfig.get_platform())")
|
2019-06-10 12:45:52 +00:00
|
|
|
|
2016-01-12 23:52:28 +00:00
|
|
|
%py_setup setup.py
|
|
|
|
%py_shbang_opts -s
|
2020-02-06 09:24:03 +00:00
|
|
|
%py_shbang_opts_nodash %(opts=%{py_shbang_opts}; echo ${opts#-})
|
2020-05-18 16:58:39 +00:00
|
|
|
%py_shebang_flags %(opts=%{py_shbang_opts}; echo ${opts#-})
|
|
|
|
%py_shebang_fix %{expand:/usr/bin/pathfix.py -pni %{__python} -k%{?py_shebang_flags:a %py_shebang_flags}}
|
2016-01-12 23:52:28 +00:00
|
|
|
|
2016-11-24 14:53:47 +00:00
|
|
|
# Use the slashes after expand so that the command starts on the same line as
|
|
|
|
# the macro
|
|
|
|
%py_build() %{expand:\\\
|
2018-02-03 11:57:13 +00:00
|
|
|
CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS}}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}"\\\
|
2018-08-03 15:08:55 +00:00
|
|
|
%{__python} %{py_setup} %{?py_setup_args} build --executable="%{__python} %{py_shbang_opts}" %{?*}
|
2016-01-12 23:52:28 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 14:53:47 +00:00
|
|
|
%py_build_egg() %{expand:\\\
|
2018-02-03 11:57:13 +00:00
|
|
|
CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS}}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}"\\\
|
|
|
|
%{__python} %{py_setup} %{?py_setup_args} bdist_egg %{?*}
|
2016-11-16 23:28:31 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 14:53:47 +00:00
|
|
|
%py_build_wheel() %{expand:\\\
|
2018-02-03 11:57:13 +00:00
|
|
|
CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS}}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}"\\\
|
|
|
|
%{__python} %{py_setup} %{?py_setup_args} bdist_wheel %{?*}
|
2016-11-15 23:12:23 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 14:53:47 +00:00
|
|
|
%py_install() %{expand:\\\
|
2018-02-03 11:57:13 +00:00
|
|
|
CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS}}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}"\\\
|
|
|
|
%{__python} %{py_setup} %{?py_setup_args} install -O1 --skip-build --root %{buildroot} %{?*}
|
2019-12-28 18:16:16 +00:00
|
|
|
rm -rfv %{buildroot}%{_bindir}/__pycache__
|
2016-01-12 23:52:28 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 14:53:47 +00:00
|
|
|
%py_install_egg() %{expand:\\\
|
2016-11-15 23:12:23 +00:00
|
|
|
mkdir -p %{buildroot}%{python_sitelib}
|
2020-07-16 16:21:15 +00:00
|
|
|
%{__python} -m easy_install -m --prefix %{buildroot}%{_prefix} -Z dist/*-py%{python_version}.egg %{?*}
|
2019-12-28 18:16:16 +00:00
|
|
|
rm -rfv %{buildroot}%{_bindir}/__pycache__
|
2016-11-15 23:12:23 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 14:53:47 +00:00
|
|
|
%py_install_wheel() %{expand:\\\
|
2020-07-16 16:21:15 +00:00
|
|
|
%{__python} -m pip install -I dist/%{1} --root %{buildroot} --no-deps
|
2019-12-28 18:16:16 +00:00
|
|
|
rm -rfv %{buildroot}%{_bindir}/__pycache__
|
2020-05-04 09:01:42 +00:00
|
|
|
for distinfo in %{buildroot}%{python_sitelib}/*.dist-info %{buildroot}%{python_sitearch}/*.dist-info; do
|
|
|
|
if [ -f ${distinfo}/direct_url.json ]; then
|
|
|
|
rm -fv ${distinfo}/direct_url.json
|
|
|
|
sed -i '/direct_url.json/d' ${distinfo}/RECORD
|
|
|
|
fi
|
|
|
|
done
|
2016-11-16 23:28:31 +00:00
|
|
|
}
|
|
|
|
|
2016-11-15 23:16:16 +00:00
|
|
|
%python_provide() %{lua:
|
2020-04-28 13:31:23 +00:00
|
|
|
local python = require "fedora.srpm.python"
|
2016-11-15 23:16:16 +00:00
|
|
|
function string.starts(String,Start)
|
|
|
|
return string.sub(String,1,string.len(Start))==Start
|
|
|
|
end
|
2020-04-28 13:31:23 +00:00
|
|
|
local package = rpm.expand("%{?1}")
|
|
|
|
local vr = rpm.expand("%{?epoch:%{epoch}:}%{version}-%{release}")
|
2020-05-04 23:38:35 +00:00
|
|
|
local provides = python.python_altprovides(package, vr)
|
2020-03-23 11:17:38 +00:00
|
|
|
if (string.starts(package, "python3-")) then
|
2020-05-04 23:38:35 +00:00
|
|
|
for i, provide in ipairs(provides) do
|
|
|
|
print("\\nProvides: " .. provide)
|
2020-04-28 13:31:23 +00:00
|
|
|
end
|
2020-03-23 11:17:38 +00:00
|
|
|
--Obsoleting the previous default python package (if it doesn't have isa)
|
|
|
|
if (string.sub(package, "-1") ~= ")") then
|
|
|
|
print("\\nObsoletes: python-")
|
|
|
|
print(string.sub(package,9,string.len(package)))
|
2020-04-28 13:31:23 +00:00
|
|
|
print(" < " .. vr)
|
2020-03-23 11:17:38 +00:00
|
|
|
end
|
|
|
|
elseif (string.starts(package, "python" .. rpm.expand("%{__default_python3_pkgversion}") .. "-")) then
|
2020-05-04 23:38:35 +00:00
|
|
|
for i, provide in ipairs(provides) do
|
|
|
|
print("\\nProvides: " .. provide)
|
2020-04-28 13:31:23 +00:00
|
|
|
end
|
2019-07-09 11:40:59 +00:00
|
|
|
--Obsoleting the previous default python package (if it doesn't have isa)
|
|
|
|
if (string.sub(package, "-1") ~= ")") then
|
|
|
|
print("\\nObsoletes: python-")
|
2020-05-07 15:28:36 +00:00
|
|
|
print(string.sub(package,11,string.len(package)))
|
2020-04-28 13:31:23 +00:00
|
|
|
print(" < " .. vr)
|
2019-07-09 11:40:59 +00:00
|
|
|
end
|
2020-03-23 11:17:38 +00:00
|
|
|
elseif (string.starts(package, "python")) then
|
|
|
|
--No unversioned provides as other python3 cases are not the default
|
|
|
|
elseif (string.starts(package, "pypy")) then
|
|
|
|
--No unversioned provides as pypy is not default either
|
2016-11-15 23:16:16 +00:00
|
|
|
else
|
|
|
|
print("%python_provide: ERROR: ")
|
|
|
|
print(package)
|
|
|
|
print(" not recognized.")
|
|
|
|
end
|
2016-01-12 23:52:28 +00:00
|
|
|
}
|
2018-01-19 14:37:47 +00:00
|
|
|
|
2018-12-20 13:35:02 +00:00
|
|
|
%python_disable_dependency_generator() \
|
|
|
|
%undefine __pythondist_requires \
|
2018-01-19 14:37:47 +00:00
|
|
|
%{nil}
|