- update to 4.0.0:
* builddoc: Treat '[pbr] autodoc\_tree\_excludes' as a multi-line opt * update parse test to use reliable comparison * Make docs on env vars a little clearer * Updated from global requirements * future-proof invocation of apidoc * emit warning correctly * deprecations: Deprecate support for '-py{N}' requirements * doc: Minor rework of usage doc * doc: Rework features doc * Support v<semver> version * Deprecate testr and nose integration * tests: Increase coverage of requirements parsing * trivial: Move packaging tests to test\_packaging * Put test-requirements into an extra named 'test' * Support Description-Content-Type metadata * Avoid tox\_install.sh for constraints support * Test on Python 3.6 * Support PEP 345 Project-URL metadata * Remove setting of version/release from releasenotes * Use 'build\_reno' setuptools extension if available * Remove unnecessary 'if True' * Discover Distribution through the class hierarchy * Add reno for release notes management * Remove support for command hooks * Remove dead code * Deprecate support for Sphinx < 1.6 * builddoc: Use '[sphinx\_build] builders' with Sphinx < 1.6 * Remove win32/nt checks for wrapper script gen * Remove py26 support OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pbr?expand=0&rev=78
This commit is contained in:
parent
4dfea91c65
commit
9634c601f5
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:05f61c71aaefc02d8e37c0a3eeb9815ff526ea28b3b76324769e6158d7f95be1
|
||||
size 102665
|
3
pbr-4.0.0.tar.gz
Normal file
3
pbr-4.0.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cf66675e22ae91a4f20e4b8354f117d3e3d1de651513051d109cc39645fb3672
|
||||
size 106169
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 28 04:42:26 UTC 2018 - tbechtold@suse.com
|
||||
|
||||
- update to 4.0.0:
|
||||
* builddoc: Treat '[pbr] autodoc\_tree\_excludes' as a multi-line opt
|
||||
* update parse test to use reliable comparison
|
||||
* Make docs on env vars a little clearer
|
||||
* Updated from global requirements
|
||||
* future-proof invocation of apidoc
|
||||
* emit warning correctly
|
||||
* deprecations: Deprecate support for '-py{N}' requirements
|
||||
* doc: Minor rework of usage doc
|
||||
* doc: Rework features doc
|
||||
* Support v<semver> version
|
||||
* Deprecate testr and nose integration
|
||||
* tests: Increase coverage of requirements parsing
|
||||
* trivial: Move packaging tests to test\_packaging
|
||||
* Put test-requirements into an extra named 'test'
|
||||
* Support Description-Content-Type metadata
|
||||
* Avoid tox\_install.sh for constraints support
|
||||
* Test on Python 3.6
|
||||
* Support PEP 345 Project-URL metadata
|
||||
* Remove setting of version/release from releasenotes
|
||||
* Use 'build\_reno' setuptools extension if available
|
||||
* Remove unnecessary 'if True'
|
||||
* Discover Distribution through the class hierarchy
|
||||
* Add reno for release notes management
|
||||
* Remove support for command hooks
|
||||
* Remove dead code
|
||||
* Deprecate support for Sphinx < 1.6
|
||||
* builddoc: Use '[sphinx\_build] builders' with Sphinx < 1.6
|
||||
* Remove win32/nt checks for wrapper script gen
|
||||
* Remove py26 support
|
||||
* Update URLs in documents according to document migration
|
||||
* gitignore: Ignore .venv
|
||||
* switch from oslosphinx to openstackdocstheme
|
||||
* Trivial: Fix docstring
|
||||
* turn on warning-as-error flag for doc build
|
||||
* rearrange existing documentation using the new standard layout
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 29 16:16:36 UTC 2017 - tbechtold@suse.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-pbr-doc
|
||||
#
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2018 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
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-pbr-doc
|
||||
Version: 3.1.1
|
||||
Version: 4.0.0
|
||||
Release: 0
|
||||
Summary: Documentation for python-pbr
|
||||
License: Apache-2.0
|
||||
@ -28,7 +28,7 @@ Source: https://files.pythonhosted.org/packages/source/p/pbr/pbr-%{versi
|
||||
Source1: python-pbr-rpmlintrc
|
||||
BuildRequires: fdupes
|
||||
# Documentation requirements:
|
||||
BuildRequires: python3-Sphinx >= 1.1.2
|
||||
BuildRequires: python3-Sphinx >= 1.6.2
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
|
@ -1,3 +1,43 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 28 04:42:26 UTC 2018 - tbechtold@suse.com
|
||||
|
||||
- update to 4.0.0:
|
||||
* builddoc: Treat '[pbr] autodoc\_tree\_excludes' as a multi-line opt
|
||||
* update parse test to use reliable comparison
|
||||
* Make docs on env vars a little clearer
|
||||
* Updated from global requirements
|
||||
* future-proof invocation of apidoc
|
||||
* emit warning correctly
|
||||
* deprecations: Deprecate support for '-py{N}' requirements
|
||||
* doc: Minor rework of usage doc
|
||||
* doc: Rework features doc
|
||||
* Support v<semver> version
|
||||
* Deprecate testr and nose integration
|
||||
* tests: Increase coverage of requirements parsing
|
||||
* trivial: Move packaging tests to test\_packaging
|
||||
* Put test-requirements into an extra named 'test'
|
||||
* Support Description-Content-Type metadata
|
||||
* Avoid tox\_install.sh for constraints support
|
||||
* Test on Python 3.6
|
||||
* Support PEP 345 Project-URL metadata
|
||||
* Remove setting of version/release from releasenotes
|
||||
* Use 'build\_reno' setuptools extension if available
|
||||
* Remove unnecessary 'if True'
|
||||
* Discover Distribution through the class hierarchy
|
||||
* Add reno for release notes management
|
||||
* Remove support for command hooks
|
||||
* Remove dead code
|
||||
* Deprecate support for Sphinx < 1.6
|
||||
* builddoc: Use '[sphinx\_build] builders' with Sphinx < 1.6
|
||||
* Remove win32/nt checks for wrapper script gen
|
||||
* Remove py26 support
|
||||
* Update URLs in documents according to document migration
|
||||
* gitignore: Ignore .venv
|
||||
* switch from oslosphinx to openstackdocstheme
|
||||
* Trivial: Fix docstring
|
||||
* turn on warning-as-error flag for doc build
|
||||
* rearrange existing documentation using the new standard layout
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 30 16:09:24 UTC 2017 - jmatejek@suse.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-pbr
|
||||
#
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2018 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
|
||||
@ -22,7 +22,7 @@
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-pbr
|
||||
Version: 3.1.1
|
||||
Version: 4.0.0
|
||||
Release: 0
|
||||
Summary: Python Build Reasonableness
|
||||
License: Apache-2.0
|
||||
|
Loading…
Reference in New Issue
Block a user