14
0

- Update to 2.3+hg20121105.3c94a3a1ebe1

+ See mercurial changes

- Correctly fix non-executable-script rpmlint warning
- No need to explicitly require python(abi), RPM does that since ages
- Cleanup old SUSE version checks

- Update to 2.3+hg20121105.3c94a3a1ebe1
  + See mercurial changes
- Add progressbar-python3-relative-imports.patch: Fix import paths

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-progressbar?expand=0&rev=11
This commit is contained in:
Sascha Peilicke
2012-11-12 09:09:22 +00:00
committed by Git OBS Bridge
parent f2184a5129
commit 0c8481b89a
7 changed files with 79 additions and 38 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-progressbar
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -11,23 +11,24 @@
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define modname progressbar
Name: python-%{modname}
Version: 2.3
Name: python-progressbar
Version: 2.3+hg20121105.3c94a3a1ebe1
Release: 0
License: LGPL-2.1+ or BSD-3-Clause
Summary: Text Progressbar Library for Python
Url: http://code.google.com/p/python-%{modname}/
License: LGPL-2.1+ or BSD-3-Clause
Group: Development/Libraries/Python
Source: http://python-progressbar.googlecode.com/files/%{modname}-%{version}.tar.gz
Url: http://code.google.com/p/python-progressbar/
Source: progressbar-%{version}.tar.bz2
BuildRequires: python-devel
BuildRequires: python-distribute
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()")}
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch: noarch
%endif
@@ -38,7 +39,8 @@ display the progress of a long running operation, providing a visual clue that
processing is underway.
%prep
%setup -q -n %{modname}-%{version}
%setup -q -n progressbar
sed -i "/\/usr\/bin\/python/d" progressbar/*.py # Correctly fix non-executable-script warning
%build
python setup.py build
@@ -49,7 +51,7 @@ python setup.py install --prefix="%{_prefix}" --root=%{buildroot}
%files
%defattr(-,root,root)
%doc LICENSE.txt README.txt examples.py
%{python_sitelib}/%{modname}/
%{python_sitelib}/%{modname}-%{version}-py%{py_ver}.egg-info
%{python_sitelib}/progressbar/
%{python_sitelib}/progressbar-2.3-py%{py_ver}.egg-info
%changelog