Accepting request 674910 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/674910
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-parse?expand=0&rev=4
This commit is contained in:
Dominique Leuenberger 2019-02-27 16:28:09 +00:00 committed by Git OBS Bridge
commit 89ee823d24
4 changed files with 28 additions and 8 deletions

3
parse-1.11.1.tar.gz Normal file
View File

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

View File

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

View File

@ -1,3 +1,24 @@
-------------------------------------------------------------------
Thu Feb 14 10:29:49 CET 2019 - Matej Cepl <mcepl@suse.com>
- 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 <mcepl@suse.com>

View File

@ -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