From 7f019f4f7dfbe8635579a92ba3737d97519244e26371500c622a37cdbe4352f9 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Wed, 10 Aug 2016 16:24:45 +0000 Subject: [PATCH 1/3] Accepting request 418295 from Cloud:OpenStack:Master - update to 0.9.3 OBS-URL: https://build.opensuse.org/request/show/418295 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-voluptuous?expand=0&rev=3 --- python-voluptuous.changes | 5 +++++ python-voluptuous.spec | 9 +++++---- voluptuous-0.8.7.tar.gz | 3 --- voluptuous-0.9.3.tar.gz | 3 +++ 4 files changed, 13 insertions(+), 7 deletions(-) delete mode 100644 voluptuous-0.8.7.tar.gz create mode 100644 voluptuous-0.9.3.tar.gz diff --git a/python-voluptuous.changes b/python-voluptuous.changes index 73e3a68..5c94824 100644 --- a/python-voluptuous.changes +++ b/python-voluptuous.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Aug 10 11:43:06 UTC 2016 - tbechtold@suse.com + +- update to 0.9.3 + ------------------------------------------------------------------- Wed Apr 1 21:13:38 BST 2015 - aspiers@suse.com diff --git a/python-voluptuous.spec b/python-voluptuous.spec index 1bd3819..368d7c1 100644 --- a/python-voluptuous.spec +++ b/python-voluptuous.spec @@ -1,7 +1,7 @@ # # spec file for package python-voluptuous # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2016 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 @@ -13,15 +13,16 @@ # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Name: python-voluptuous -Version: 0.8.7 +Version: 0.9.3 Release: 0 -License: BSD-3-Clause Summary: Voluptuous is a Python data validation library -Url: http://github.com/alecthomas/voluptuous +License: BSD-3-Clause Group: Development/Languages/Python +Url: http://github.com/alecthomas/voluptuous Source: https://pypi.python.org/packages/source/v/voluptuous/voluptuous-%{version}.tar.gz BuildRequires: python-devel BuildRequires: python-nose diff --git a/voluptuous-0.8.7.tar.gz b/voluptuous-0.8.7.tar.gz deleted file mode 100644 index c272a33..0000000 --- a/voluptuous-0.8.7.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:17c438cd0bc73e22988d05d3c1f6118598b260456af9a0990c00e2ba5a2fff23 -size 24929 diff --git a/voluptuous-0.9.3.tar.gz b/voluptuous-0.9.3.tar.gz new file mode 100644 index 0000000..ae16b15 --- /dev/null +++ b/voluptuous-0.9.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed5a11fda273754caabb6becd5fe172ee2621cd2c8ff8279433173bb7b0ec568 +size 34097 From 3b41aec7319827ed23d89712fd6c111ae32a10e2698545da5bb233bc6a528553 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Wed, 10 Aug 2016 16:28:39 +0000 Subject: [PATCH 2/3] Accepting request 418338 from Cloud:OpenStack:Master - update to 0.9.3: * README: Document Schema.extend * Also include README.rst in distribution. * Add missing % formatting character * Mention use of Any to allow None values * Flake8 errors resolved; Tox now running successfully * Bump to 0.9.2 * if/else conditions modified * 0.9.1 to fix missing Error import. * Don't assume a user's dict type can be instantiated. * Eliminate unnecessary SequenceItemInvalid exception. * Squashing commits into 1 * Fixes issue #118 by guarding against a TypeError: unhashable type: 'list' exception * Bump version. * Include tests in sdist. * Removed docs from master to avoid confusion * Added additional @wraps where appropriate * Added Unique and Set * Added recursive schema into README #128 * Remove setup_requires from setup.py * Added validator for datetime strings * 0.8.9 release. * Documentation made with Sphinx * Make many of the validators have useful __repr__ * Test cases for checking validation of domain less url's * Added Literal wrapper for literal comparisons. * Fixed docs for doctest * Added Documentation Link * Implement Schema.extend * Release 0.8.7. OBS-URL: https://build.opensuse.org/request/show/418338 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-voluptuous?expand=0&rev=4 --- python-voluptuous.changes | 77 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 76 insertions(+), 1 deletion(-) diff --git a/python-voluptuous.changes b/python-voluptuous.changes index 5c94824..be2bf4e 100644 --- a/python-voluptuous.changes +++ b/python-voluptuous.changes @@ -1,7 +1,82 @@ ------------------------------------------------------------------- Wed Aug 10 11:43:06 UTC 2016 - tbechtold@suse.com -- update to 0.9.3 +- update to 0.9.3: + * README: Document Schema.extend + * Also include README.rst in distribution. + * Add missing % formatting character + * Mention use of Any to allow None values + * Flake8 errors resolved; Tox now running successfully + * Bump to 0.9.2 + * if/else conditions modified + * 0.9.1 to fix missing Error import. + * Don't assume a user's dict type can be instantiated. + * Eliminate unnecessary SequenceItemInvalid exception. + * Squashing commits into 1 + * Fixes issue #118 by guarding against a TypeError: unhashable type: 'list' exception + * Bump version. + * Include tests in sdist. + * Removed docs from master to avoid confusion + * Added additional @wraps where appropriate + * Added Unique and Set + * Added recursive schema into README #128 + * Remove setup_requires from setup.py + * Added validator for datetime strings + * 0.8.9 release. + * Documentation made with Sphinx + * Make many of the validators have useful __repr__ + * Test cases for checking validation of domain less url's + * Added Literal wrapper for literal comparisons. + * Fixed docs for doctest + * Added Documentation Link + * Implement Schema.extend + * Release 0.8.7. + * Did validation for Fully qualified domain url's + * 0.8.11 + * 0.8.10 + * Sorting unittest + * Add SetTo(n) to force setting a value. Useful with Any(). + * Fix some bugs. + * Improve `repr` representation of some classes + * ExactSequence fix for item assignment + * Support bool literals. + * Fixed spelling of word + * Add python 3.5 to tox.ini test suite + * setup.py changed to support packages + * 0.9.0 + * Fixed Unique and Set tests in other python versions + * Email validator added + * Fixed Python 3.x version check by using sys.version_info + * Corrected typo + * Have iteritems work with any Mapping class that implements iteritems + * Updated url validation code for url's with no domain + * Use with statement to close file handle + * Updated README for extra keys setting + * Correctly report error location with inclusive/exclusive. + * Use https in setup + * Handle nested MultipleInvalid exceptions. + * error humanization wrappers for #140 + * Run static analysis on the exact source set + * Added package classifiers to indicate support for Python 3.x + * Add NotIn validation + * remove unneeded conditional check. + * Fixes #157 + * Update travis.yml with python 3.4, 3.5 support + * Schema.extend works only for dicts + * regex precompiled at import time + * Add validate_schema decorator + * Fix a TypeError when using a copy of dictionary fields. + * Implemented __lt__ on Marker objects + * Aliases: Or = Any, And = All + * Readme updated for incorporating url. + * Url scheme and host validation + * flake8 cleanup (removed unused import) + * Prevent individual errors from validating a list's items from being lost. + * Adds string transform for stripping whitespace + * Test cases added for email + * W503 resolution made clear + * Added correct handling of callable objects as default values + * More test cases added for FQDN url validation ------------------------------------------------------------------- Wed Apr 1 21:13:38 BST 2015 - aspiers@suse.com From 8403589bbe419138929c8e17fc19610e555ac6ff1d15cb04b80f9dfe66ad8512 Mon Sep 17 00:00:00 2001 From: Denisart Benjamin Date: Thu, 11 Aug 2016 16:06:02 +0000 Subject: [PATCH 3/3] Accepting request 418675 from home:tbechtold:branches:devel:languages:python - Use pypi.io as Source url OBS-URL: https://build.opensuse.org/request/show/418675 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-voluptuous?expand=0&rev=5 --- python-voluptuous.changes | 5 +++++ python-voluptuous.spec | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/python-voluptuous.changes b/python-voluptuous.changes index be2bf4e..fb9ba02 100644 --- a/python-voluptuous.changes +++ b/python-voluptuous.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Aug 11 13:32:54 UTC 2016 - tbechtold@suse.com + +- Use pypi.io as Source url + ------------------------------------------------------------------- Wed Aug 10 11:43:06 UTC 2016 - tbechtold@suse.com diff --git a/python-voluptuous.spec b/python-voluptuous.spec index 368d7c1..b4814ba 100644 --- a/python-voluptuous.spec +++ b/python-voluptuous.spec @@ -23,7 +23,7 @@ Summary: Voluptuous is a Python data validation library License: BSD-3-Clause Group: Development/Languages/Python Url: http://github.com/alecthomas/voluptuous -Source: https://pypi.python.org/packages/source/v/voluptuous/voluptuous-%{version}.tar.gz +Source: https://pypi.io/packages/source/v/voluptuous/voluptuous-%{version}.tar.gz BuildRequires: python-devel BuildRequires: python-nose BuildRequires: python-setuptools >= 0.6b1