Blame SOURCES/macros.python3

61e6f0
%__python3 /usr/libexec/platform-python
61e6f0
%python3_sitelib %(%{__python3} -Ic "from distutils.sysconfig import get_python_lib; print(get_python_lib())")
61e6f0
%python3_sitearch %(%{__python3} -Ic "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")
61e6f0
%python3_version %(%{__python3} -Ic "import sys; sys.stdout.write(sys.version[:3])")
61e6f0
%python3_version_nodots %(%{__python3} -Ic "import sys; sys.stdout.write(sys.version[:3].replace('.',''))")
61e6f0
%python3_platform %(%{__python3} -Ic "import sysconfig; print(sysconfig.get_platform())")
61e6f0
%py3dir %{_builddir}/python3-%{name}-%{version}-%{release}
61e6f0
61e6f0
%py3_shbang_opts -s
61e6f0
61e6f0
# Use the slashes after expand so that the command starts on the same line as
61e6f0
# the macro
61e6f0
%py3_build() %{expand:\\\
61e6f0
  CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS}}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}"\\\
61e6f0
  %{__python3} %{py_setup} %{?py_setup_args} build --executable="%{__python3} %{py3_shbang_opts}" %{?*}
61e6f0
  sleep 1
61e6f0
}
61e6f0
61e6f0
%py3_build_egg() %{expand:\\\
61e6f0
  CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS}}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}"\\\
61e6f0
  %{__python3} %{py_setup} %{?py_setup_args} bdist_egg %{?*}
61e6f0
  sleep 1
61e6f0
}
61e6f0
61e6f0
%py3_build_wheel() %{expand:\\\
61e6f0
  CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS}}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}"\\\
61e6f0
  %{__python3} %{py_setup} %{?py_setup_args} bdist_wheel %{?*}
61e6f0
  sleep 1
61e6f0
}
61e6f0
61e6f0
%py3_install() %{expand:\\\
61e6f0
  CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS}}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}"\\\
61e6f0
  %{__python3} %{py_setup} %{?py_setup_args} install -O1 --skip-build --root %{buildroot} %{?*}
61e6f0
}
61e6f0
61e6f0
%py3_install_egg() %{expand:\\\
61e6f0
  mkdir -p %{buildroot}%{python3_sitelib}
61e6f0
  CFLAGS="%{optflags}" %{__python3} -m easy_install -m --prefix %{buildroot}%{_prefix} -Z dist/*-py%{python3_version}.egg %{?*}
61e6f0
}
61e6f0
61e6f0
%py3_install_wheel() %{expand:\\\
61e6f0
  CFLAGS="%{optflags}" %{__python3} -m pip install -I dist/%{1} --root %{buildroot} --strip-file-prefix %{buildroot} --no-deps
61e6f0
}