1
0

- update to 3.4.0:

* Do not fail on certain config option help strings
  * Updated from global requirements
  * enhance sphinx integration to allow links to option definitions
  * Remove argparse from requirements
  * Updated from global requirements
  * replace reference to default value in option help text in docs
  * add built-in options to auto-generated documentation
  * register the built-in options for the config generator to find
  * Add reST work label for configuration options
  * Allow port number with 0
  * Replace deprecated library function os.popen() with subprocess
  * Fix can't generate config sample with non-None value
  * Fixed deprecated_for_removal warning generation
  * Module index grouping
  * Docs class links
  * generator: ignore doubles
  * Numerous corrections to the docstrings
  * Make oslo-config-generator fail gracefully when no arguments
  * Replace assertEqual(*, None) with assertIsNone in tests
  * Python 3 deprecated the logger.warn method in favor of warning
  * Replace assertEqual(None,*) with assertIsNone(*)
  * Cleanly handle an undefined attribute reference
  * Replace assertEqual with assertTrue and assertFalse
  * assertIsNone(val) instead of assertEqual(None,val)

OBS-URL: https://build.opensuse.org/package/show/Cloud:OpenStack:Factory/python-oslo.config?expand=0&rev=37
This commit is contained in:
Dirk Mueller 2016-02-26 13:24:18 +00:00 committed by Git OBS Bridge
parent 5ed98c347d
commit db7485e50a
4 changed files with 44 additions and 11 deletions

View File

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

3
oslo.config-3.4.0.tar.gz Normal file
View File

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

View File

@ -1,4 +1,32 @@
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Feb 11 07:39:04 UTC 2016 - dmueller@suse.com
- update to 3.4.0:
* Do not fail on certain config option help strings
* Updated from global requirements
* enhance sphinx integration to allow links to option definitions
* Remove argparse from requirements
* Updated from global requirements
* replace reference to default value in option help text in docs
* add built-in options to auto-generated documentation
* register the built-in options for the config generator to find
* Add reST work label for configuration options
* Allow port number with 0
* Replace deprecated library function os.popen() with subprocess
* Fix can't generate config sample with non-None value
* Fixed deprecated_for_removal warning generation
* Module index grouping
* Docs class links
* generator: ignore doubles
* Numerous corrections to the docstrings
* Make oslo-config-generator fail gracefully when no arguments
* Replace assertEqual(*, None) with assertIsNone in tests
* Python 3 deprecated the logger.warn method in favor of warning
* Replace assertEqual(None,*) with assertIsNone(*)
* Cleanly handle an undefined attribute reference
* Replace assertEqual with assertTrue and assertFalse
* assertIsNone(val) instead of assertEqual(None,val)
-------------------------------------------------------------------
Fri Jan 8 08:21:27 UTC 2016 - bwiedemann@suse.com Fri Jan 8 08:21:27 UTC 2016 - bwiedemann@suse.com
- Update to version 3.2.0 - Update to version 3.2.0

View File

@ -17,7 +17,7 @@
Name: python-oslo.config Name: python-oslo.config
Version: 3.2.0 Version: 3.4.0
Release: 0 Release: 0
Summary: OpenStack configuration API Summary: OpenStack configuration API
License: Apache-2.0 License: Apache-2.0
@ -29,6 +29,8 @@ BuildRequires: fdupes
BuildRequires: openstack-suse-macros BuildRequires: openstack-suse-macros
BuildRequires: python-devel BuildRequires: python-devel
# Test requirements: # Test requirements:
BuildRequires: git-core
BuildRequires: python-debtcollector >= 1.2.0
BuildRequires: python-fixtures >= 0.3.14 BuildRequires: python-fixtures >= 0.3.14
BuildRequires: python-mock >= 1.0 BuildRequires: python-mock >= 1.0
BuildRequires: python-netaddr BuildRequires: python-netaddr
@ -42,6 +44,7 @@ BuildRequires: python-stevedore
BuildRequires: python-testrepository >= 0.0.18 BuildRequires: python-testrepository >= 0.0.18
BuildRequires: python-testscenarios >= 0.4 BuildRequires: python-testscenarios >= 0.4
BuildRequires: python-testtools >= 0.9.36 BuildRequires: python-testtools >= 0.9.36
Requires: python-debtcollector >= 1.2.0
Requires: python-netaddr >= 0.7.12 Requires: python-netaddr >= 0.7.12
Requires: python-six >= 1.9.0 Requires: python-six >= 1.9.0
Requires: python-stevedore >= 1.5.0 Requires: python-stevedore >= 1.5.0
@ -73,23 +76,25 @@ This package contains documentation files for %{name}.
%build %build
%{__python2} setup.py build %{__python2} setup.py build
%install # disabling git call for last modification date from git repo
%{__python2} setup.py install --skip-build --root %{buildroot} sed '/^html_last_updated_fmt.*/,/.)/ s/^/#/' -i doc/source/conf.py
# generate html docs # generate html docs
python setup.py build_sphinx python setup.py build_sphinx
# remove the sphinx-build leftovers # remove the sphinx-build leftovers
rm -rf doc/build/html/.{doctrees,buildinfo} rm -rf doc/build/html/.{doctrees,buildinfo}
%install
%{__python2} setup.py install --skip-build --root %{buildroot}
%files %files
%defattr(-,root,root,-) %license LICENSE
%doc LICENSE README.rst AUTHORS %doc README.rst AUTHORS
%{_bindir}/oslo-config-generator %{_bindir}/oslo-config-generator
%{python2_sitelib}/oslo_config %{python2_sitelib}/oslo_config
%{python2_sitelib}/*.egg-info %{python2_sitelib}/*.egg-info
%files doc %files doc
%defattr(-,root,root,-) %license LICENSE
%doc LICENSE doc/build/html %doc doc/build/html
%changelog %changelog