From 2fa8ab8a1e4f940bf713a8bb5932c6faf71747186a641dcbdbf83807065941f6 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Thu, 14 Feb 2019 09:49:53 +0000 Subject: [PATCH] Accepting request 674909 from home:mcepl:branches:devel:languages:python MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update to 1.11.1: * Implement __contains__ for Result instances. * Introduce a "letters" matcher, since "w" matches numbers also. * Fix deprecation warnings around backslashes in regex strings (thanks Mickaël Schoentgen). Also fix some documentation formatting issues. * We now honor precision and width specifiers when parsing numbers and strings, allowing parsing of concatenated elements of fixed width (thanks Julia Signell) * Add LICENSE file at request of packagers. Correct handling of AM/PM to follow most common interpretation. Correct parsing of hexadecimal that looks like a binary prefix. Add ability to parse case sensitively. Add parsing of numbers to Decimal with "F" (thanks John Vandenberg) * Add regex_group_count to with_pattern() decorator to support user-defined types that contain brackets/parenthesis (thanks Jens Engel) OBS-URL: https://build.opensuse.org/request/show/674909 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-parse?expand=0&rev=9 --- parse-1.11.1.tar.gz | 3 +++ parse-1.8.2.tar.gz | 3 --- python-parse.changes | 21 +++++++++++++++++++++ python-parse.spec | 9 ++++----- 4 files changed, 28 insertions(+), 8 deletions(-) create mode 100644 parse-1.11.1.tar.gz delete mode 100644 parse-1.8.2.tar.gz diff --git a/parse-1.11.1.tar.gz b/parse-1.11.1.tar.gz new file mode 100644 index 0000000..8c15eac --- /dev/null +++ b/parse-1.11.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:870dd675c1ee8951db3e29b81ebe44fd131e3eb8c03a79483a58ea574f3145c2 +size 37027 diff --git a/parse-1.8.2.tar.gz b/parse-1.8.2.tar.gz deleted file mode 100644 index 20d602f..0000000 --- a/parse-1.8.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8048dde3f5ca07ad7ac7350460952d83b63eaacecdac1b37f45fd74870d849d2 -size 27980 diff --git a/python-parse.changes b/python-parse.changes index 51c1f8a..d838560 100644 --- a/python-parse.changes +++ b/python-parse.changes @@ -1,3 +1,24 @@ +------------------------------------------------------------------- +Thu Feb 14 10:29:49 CET 2019 - Matej Cepl + +- Update to 1.11.1: + * Implement __contains__ for Result instances. + * Introduce a "letters" matcher, since "w" matches numbers also. + * Fix deprecation warnings around backslashes in regex strings + (thanks Mickaël Schoentgen). Also fix some documentation + formatting issues. + * We now honor precision and width specifiers when parsing + numbers and strings, allowing parsing of concatenated + elements of fixed width (thanks Julia Signell) + * Add LICENSE file at request of packagers. Correct handling of + AM/PM to follow most common interpretation. Correct parsing + of hexadecimal that looks like a binary prefix. Add ability + to parse case sensitively. Add parsing of numbers to Decimal + with "F" (thanks John Vandenberg) + * Add regex_group_count to with_pattern() decorator to support + user-defined types that contain brackets/parenthesis (thanks + Jens Engel) + ------------------------------------------------------------------- Tue Dec 4 12:51:11 UTC 2018 - Matej Cepl diff --git a/python-parse.spec b/python-parse.spec index 5467955..fc4390d 100644 --- a/python-parse.spec +++ b/python-parse.spec @@ -1,7 +1,7 @@ # # spec file for package python-parse # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 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,18 +18,17 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-parse -Version: 1.8.2 +Version: 1.11.1 Release: 0 Summary: Python module for parsing strings using a "format" syntax License: MIT Group: Development/Languages/Python -Url: https://github.com/r1chardj0n3s/parse +URL: https://github.com/r1chardj0n3s/parse Source: https://files.pythonhosted.org/packages/source/p/parse/parse-%{version}.tar.gz BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros BuildArch: noarch - %python_subpackages %description @@ -47,7 +46,7 @@ chmod a-x README.rst %python_expand %fdupes %{buildroot}%{$python_sitelib} %check -%python_exec setup.py test +%python_exec setup.py test -v %files %{python_files} %doc README.rst