Blame SOURCES/macros.python2

f245b7
%__python2 /usr/bin/python2
f245b7
%python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")
f245b7
%python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")
f245b7
%python2_version %(%{__python2} -c "import sys; sys.stdout.write('{0.major}.{0.minor}'.format(sys.version_info))")
f245b7
%python2_version_nodots %(%{__python2} -c "import sys; sys.stdout.write('{0.major}{0.minor}'.format(sys.version_info))")
f245b7
f245b7
%py2_shbang_opts -s
f245b7
f245b7
# Use the slashes after expand so that the command starts on the same line as
f245b7
# the macro
f245b7
%py2_build() %{expand:\\\
f245b7
  CFLAGS="%{optflags}" %{__python2} %{py_setup} %{?py_setup_args} build --executable="%{__python2} %{py2_shbang_opts}" %{?*}
f245b7
  sleep 1
f245b7
}
f245b7
f245b7
%py2_build_egg() %{expand:\\\
f245b7
  CFLAGS="%{optflags}" %{__python2} %{py_setup} %{?py_setup_args} bdist_egg %{?*}
f245b7
  sleep 1
f245b7
}
f245b7
f245b7
%py2_build_wheel() %{expand:\\\
f245b7
  CFLAGS="%{optflags}" %{__python2} %{py_setup} %{?py_setup_args} bdist_wheel %{?*}
f245b7
  sleep 1
f245b7
}
f245b7
f245b7
%py2_install() %{expand:\\\
f245b7
  CFLAGS="%{optflags}" %{__python2} %{py_setup} %{?py_setup_args} install -O1 --skip-build --root %{buildroot} %{?*}
f245b7
}
f245b7
f245b7
%py2_install_egg() %{expand:\\\
f245b7
  mkdir -p %{buildroot}%{python2_sitelib}
f245b7
  easy_install-%{python2_version} -m --prefix %{buildroot}%{_prefix} -Z dist/*-py%{python2_version}.egg %{?*}
f245b7
}
f245b7
f245b7
%py2_install_wheel() %{expand:\\\
f245b7
  pip%{python2_version} install -I dist/%{1} --root %{buildroot} --strip-file-prefix %{buildroot} --no-deps
f245b7
}