15
0

Accepting request 304047 from home:benoit_monin:branches:devel:languages:python

- update to version 0.9
- update project URL
- add fdupes as BuildRequires and call it after install
- set a minimum version to python 2.7
- remove python-six from BuildRequires: now unneeded
- quiet the test run to avoid spamming the build log

OBS-URL: https://build.opensuse.org/request/show/304047
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-biplist?expand=0&rev=10
This commit is contained in:
Michal Čihař
2015-04-27 07:24:51 +00:00
committed by Git OBS Bridge
parent 0695aa8817
commit afc6312e1e
4 changed files with 26 additions and 9 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:322405634a2d7c7ef206589d4be7f17c33c2954d4d1678b84c013bed77cf7ad1
size 13306

3
biplist-0.9.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b57cadfd26e4754efdf89e9e37de87885f9b5c847b2615688ca04adfaf6ca604
size 14591

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Sun Apr 26 13:02:09 UTC 2015 - benoit.monin@gmx.fr
- update to version 0.9:
* Fixes #5 ValueError: timestamp out of range for platform time_t
* Merged pull request #3 removing the `six` module while keeping
Python3 compatibility
- additional changes from version v0.8:
* Fixes #3 testFileRead fails using python 3.x along with several
other Python 3 compatibility issues.
- update project URL
- add fdupes as BuildRequires and call it after install
- set a minimum version to python 2.7
- remove python-six from BuildRequires: now unneeded
- quiet the test run to avoid spamming the build log
-------------------------------------------------------------------
Thu Oct 24 10:59:13 UTC 2013 - speilicke@suse.com

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-biplist
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,19 +17,19 @@
Name: python-biplist
Version: 0.5
Version: 0.9
Release: 0
Url: https://github.com/wooster/biplist
Url: https://bitbucket.org/wooster/biplist
Summary: A library for reading/writing binary plists
License: BSD-3-Clause
Group: Development/Languages/Python
Source: http://pypi.python.org/packages/source/b/biplist/biplist-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: fdupes
BuildRequires: python-coverage
BuildRequires: python-devel
BuildRequires: python-devel >= 2.7
BuildRequires: python-nose
BuildRequires: python-setuptools
BuildRequires: python-six
%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()")}
%else
@@ -51,9 +51,10 @@ python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%fdupes %buildroot/%_prefix
%check
python setup.py test
python setup.py -q test
%files
%defattr(-,root,root,-)