avoid using unversioned python macros

This commit is contained in:
Nils Philippsen 2014-10-15 17:39:19 +02:00
parent 5a10f901c3
commit 86284c766e

View File

@ -1,5 +1,7 @@
%if ! 0%{?rhel} > 5 %if 0%{?rhel} && 0%{?rhel} <= 6
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} %{!?__python2: %global __python2 %{__python}}
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
%endif %endif
%if 0%{?fedora} > 12 %if 0%{?fedora} > 12
@ -61,7 +63,7 @@ This package includes the python 3 version of the module.
%endif # with_python3 %endif # with_python3
# Filter unnecessary dependencies # Filter unnecessary dependencies
%global __provides_exclude_from ^(%{python_sitearch}|%{python3_sitearch})/.*\\.so$ %global __provides_exclude_from ^(%{python2_sitearch}|%{python3_sitearch})/.*\\.so$
%prep %prep
%setup -q -n %{srcname}-%{version} %setup -q -n %{srcname}-%{version}
@ -73,7 +75,7 @@ cp -a . %{py3dir}
%endif # with_python3 %endif # with_python3
%build %build
CFLAGS="%{optflags}" %{__python} setup.py --with-cextensions build CFLAGS="%{optflags}" %{__python2} setup.py --with-cextensions build
%if 0%{?with_python3} %if 0%{?with_python3}
pushd %{py3dir} pushd %{py3dir}
@ -84,8 +86,8 @@ popd
%install %install
rm -rf %{buildroot} rm -rf %{buildroot}
mkdir -p %{buildroot}%{python_sitelib} mkdir -p %{buildroot}%{python2_sitelib}
%{__python} setup.py --with-cextensions install --skip-build --root %{buildroot} %{__python2} setup.py --with-cextensions install --skip-build --root %{buildroot}
%if 0%{?with_python3} %if 0%{?with_python3}
pushd %{py3dir} pushd %{py3dir}
@ -101,7 +103,7 @@ rm -rf doc/build
rm -rf %{buildroot} rm -rf %{buildroot}
%check %check
%{__python} ./sqla_nose.py %{__python2} ./sqla_nose.py
%if 0%{?with_python3} %if 0%{?with_python3}
pushd %{py3dir} pushd %{py3dir}
@ -113,7 +115,7 @@ popd
%files %files
%defattr(-,root,root,-) %defattr(-,root,root,-)
%doc README.rst LICENSE PKG-INFO CHANGES doc examples %doc README.rst LICENSE PKG-INFO CHANGES doc examples
%{python_sitearch}/* %{python2_sitearch}/*
%if 0%{?with_python3} %if 0%{?with_python3}
%files -n python3-sqlalchemy %files -n python3-sqlalchemy
@ -125,6 +127,7 @@ popd
%changelog %changelog
* Wed Oct 15 2014 Nils Philippsen <nils@redhat.com> - 0.9.8-1 * Wed Oct 15 2014 Nils Philippsen <nils@redhat.com> - 0.9.8-1
- version 0.9.8, upstream feature and bugfix release - version 0.9.8, upstream feature and bugfix release
- avoid using unversioned python macros
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.7-2 * Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.7-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild