14
0

Accepting request 149449 from home:posophe:branches:devel:languages:python

Add python3 support

OBS-URL: https://build.opensuse.org/request/show/149449
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setuptools-git?expand=0&rev=7
This commit is contained in:
Alexandre Rogoski
2013-01-22 10:20:24 +00:00
committed by Git OBS Bridge
parent fac332d1e5
commit 3fca5cc3a5
5 changed files with 131 additions and 3 deletions

View File

@@ -15,6 +15,16 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define mod_name setuptools-git
%define build_for_python3 0
%if %{build_for_python3}
%define local_python python3
%define local_sitelib %{python3_sitelib}
%else
%define local_python python
%define local_sitelib %{python_sitelib}
%endif
Name: python-setuptools-git
Version: 1.0b1
@@ -24,8 +34,13 @@ License: BSD-3-Clause
Group: Development/Languages/Python
Url: https://github.com/wichert/setuptools-git
Source: http://pypi.python.org/packages/source/s/setuptools-git/setuptools-git-%{version}.tar.gz
%if %{build_for_python3}
BuildRequires: python3-devel
BuildRequires: python3-distribute
%else
BuildRequires: python-devel
BuildRequires: python-distribute
%endif
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
@@ -48,13 +63,13 @@ uniform naming convention.
%setup -q -n setuptools-git-%{version}
%build
CFLAGS="%{optflags}" python setup.py build
%{local_python} setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%{local_python} setup.py install --prefix=%{_prefix} --root=%{buildroot}
%files
%defattr(-,root,root,-)
%{python_sitelib}/*
%{local_sitelib}/*
%changelog