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:
commit
89ee823d24
3
parse-1.11.1.tar.gz
Normal file
3
parse-1.11.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:870dd675c1ee8951db3e29b81ebe44fd131e3eb8c03a79483a58ea574f3145c2
|
||||||
|
size 37027
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8048dde3f5ca07ad7ac7350460952d83b63eaacecdac1b37f45fd74870d849d2
|
|
||||||
size 27980
|
|
@ -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>
|
Tue Dec 4 12:51:11 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-parse
|
# 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
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -18,18 +18,17 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-parse
|
Name: python-parse
|
||||||
Version: 1.8.2
|
Version: 1.11.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python module for parsing strings using a "format" syntax
|
Summary: Python module for parsing strings using a "format" syntax
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
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
|
Source: https://files.pythonhosted.org/packages/source/p/parse/parse-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -47,7 +46,7 @@ chmod a-x README.rst
|
|||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%python_exec setup.py test
|
%python_exec setup.py test -v
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
|
Loading…
x
Reference in New Issue
Block a user