Accepting request 209160 from devel:languages:python

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/209160
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pbr?expand=0&rev=5
This commit is contained in:
Stephan Kulow 2013-12-03 09:49:53 +00:00 committed by Git OBS Bridge
parent 0cf4d6c5b4
commit c41ff4c455
5 changed files with 33 additions and 20 deletions

View File

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

3
pbr-0.5.23.tar.gz Normal file
View File

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

View File

@ -1,3 +1,17 @@
-------------------------------------------------------------------
Mon Nov 25 13:58:28 UTC 2013 - speilicke@suse.com
- Update dependencies
- Rename build-conditional to "test", avoid clash with Cloud:OpenStack:Master's
"tests" build-conditional. We've got other issues here
- Add rpmlintrc, we have some C files as part of the testsuite
-------------------------------------------------------------------
Thu Oct 31 23:47:07 UTC 2013 - dmueller@suse.com
- update to 0.5.23:
* Use dev based release versioning
-------------------------------------------------------------------
Thu Aug 8 06:49:22 UTC 2013 - speilicke@suse.com

View File

@ -16,12 +16,12 @@
#
# A build cycle exists between python-extras and python-testtools. Thus, only
# NOTE(saschpe): git invocation and pythonpath issues with testrepository
# enable testing with a build conditional (off by default):
%bcond_with tests
%bcond_with test
Name: python-pbr
Version: 0.5.21
Version: 0.5.23
Release: 0
Summary: Python Build Reasonableness
License: Apache-2.0
@ -30,25 +30,22 @@ Url: http://pypi.python.org/pypi/pbr
Source: http://pypi.python.org/packages/source/p/pbr/pbr-%{version}.tar.gz
BuildRequires: python-devel
# Documentation requirements:
BuildRequires: python-Sphinx
BuildRequires: python-Sphinx >= 1.1.2
# Test requirements:
%if %{with tests}
BuildRequires: python-coverage >= 3.6
%if %{with test}
#BuildRequires: python-coverage >= 3.6
%if 0%{?suse_version} <= 1110
BuildRequires: python-discover
%endif
BuildRequires: python-fixtures >= 0.3.12
BuildRequires: python-flake8
BuildRequires: python-mox
BuildRequires: python-nose
BuildRequires: python-oslo.config
BuildRequires: python-pip >= 1.0
BuildRequires: python-python-mimeparse
BuildRequires: python-flake8 >= 2.0
#BuildRequires: python-pip >= 1.0
#BuildRequires: python-python-mimeparse
BuildRequires: python-python-subunit
BuildRequires: python-testrepository >= 0.0.13
BuildRequires: python-testrepository >= 0.0.17
BuildRequires: python-testresources
BuildRequires: python-testscenarios
BuildRequires: python-testtools >= 0.9.27
BuildRequires: python-testscenarios >= 0.4
BuildRequires: python-testtools >= 0.9.32
%endif
Requires: python-pip >= 1.0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -77,9 +74,9 @@ python setup.py build_sphinx
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%if %{with tests}
%if %{with test}
%check
python setup.py testr || true
python setup.py testr
%endif
%files

2
rpmlintrc Normal file
View File

@ -0,0 +1,2 @@
# It's just the testsuite:
addFilter("E: devel-file-in-non-devel-package")