commit python-parse for openSUSE:Factory

2020-03-16 Thread root
Hello community,

here is the log from the commit of package python-parse for openSUSE:Factory 
checked in at 2020-03-16 10:19:44

Comparing /work/SRC/openSUSE:Factory/python-parse (Old)
 and  /work/SRC/openSUSE:Factory/.python-parse.new.3160 (New)


Package is "python-parse"

Mon Mar 16 10:19:44 2020 rev:8 rq:785242 version:1.15.0

Changes:

--- /work/SRC/openSUSE:Factory/python-parse/python-parse.changes
2020-03-11 18:56:49.407714508 +0100
+++ /work/SRC/openSUSE:Factory/.python-parse.new.3160/python-parse.changes  
2020-03-16 10:21:12.611657422 +0100
@@ -1,0 +2,5 @@
+Sun Mar 15 09:40:27 UTC 2020 - Tomáš Chvátal 
+
+- No need to fetch license anymore, it is in the tarball
+
+---

Old:

  LICENSE



Other differences:
--
++ python-parse.spec ++
--- /var/tmp/diff_new_pack.CTjGI0/_old  2020-03-16 10:21:13.579657816 +0100
+++ /var/tmp/diff_new_pack.CTjGI0/_new  2020-03-16 10:21:13.583657817 +0100
@@ -25,8 +25,6 @@
 Group:  Development/Languages/Python
 URL:https://github.com/r1chardj0n3s/parse
 Source0:
https://files.pythonhosted.org/packages/source/p/parse/parse-%{version}.tar.gz
-# https://github.com/r1chardj0n3s/parse/issues/82
-Source1:
https://raw.githubusercontent.com/r1chardj0n3s/parse/master/LICENSE
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
@@ -39,7 +37,6 @@
 %prep
 %setup -q -n parse-%{version}
 chmod a-x README.rst
-cp %{SOURCE1} .
 
 %build
 %python_build
@@ -49,7 +46,7 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_exec setup.py test -v
+%python_exec -m unittest discover -v
 
 %files %{python_files}
 %license LICENSE




commit python-parse for openSUSE:Factory

2020-03-11 Thread root
Hello community,

here is the log from the commit of package python-parse for openSUSE:Factory 
checked in at 2020-03-11 18:55:45

Comparing /work/SRC/openSUSE:Factory/python-parse (Old)
 and  /work/SRC/openSUSE:Factory/.python-parse.new.3160 (New)


Package is "python-parse"

Wed Mar 11 18:55:45 2020 rev:7 rq:783951 version:1.15.0

Changes:

--- /work/SRC/openSUSE:Factory/python-parse/python-parse.changes
2019-09-13 14:57:55.313276228 +0200
+++ /work/SRC/openSUSE:Factory/.python-parse.new.3160/python-parse.changes  
2020-03-11 18:56:49.407714508 +0100
@@ -1,0 +2,8 @@
+Wed Mar 11 15:18:17 UTC 2020 - Marketa Calabkova 
+
+- update to 1.15.0
+  * Several bugs with parsing hex, bin and oct numbers.
+  * Handle fortran formatted float number, Bug fix & test case.
+  * Handle comparison of FixedTzOffset with other types of object 
+
+---

Old:

  parse-1.12.1.tar.gz

New:

  parse-1.15.0.tar.gz



Other differences:
--
++ python-parse.spec ++
--- /var/tmp/diff_new_pack.dsDX96/_old  2020-03-11 18:56:49.755714664 +0100
+++ /var/tmp/diff_new_pack.dsDX96/_new  2020-03-11 18:56:49.755714664 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-parse
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-parse
-Version:1.12.1
+Version:1.15.0
 Release:0
 Summary:Python module for parsing strings using a "format" syntax
 License:MIT

++ parse-1.12.1.tar.gz -> parse-1.15.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parse-1.12.1/LICENSE new/parse-1.15.0/LICENSE
--- old/parse-1.12.1/LICENSE1970-01-01 01:00:00.0 +0100
+++ new/parse-1.15.0/LICENSE2019-01-23 03:01:28.0 +0100
@@ -0,0 +1,19 @@
+Copyright (c) 2012-2019 Richard Jones 
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parse-1.12.1/MANIFEST.in new/parse-1.15.0/MANIFEST.in
--- old/parse-1.12.1/MANIFEST.in2018-05-27 01:11:29.0 +0200
+++ new/parse-1.15.0/MANIFEST.in2019-10-31 07:49:45.0 +0100
@@ -1,2 +1,2 @@
-include README.rst
+include README.rst LICENSE
 include *.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parse-1.12.1/PKG-INFO new/parse-1.15.0/PKG-INFO
--- old/parse-1.12.1/PKG-INFO   2019-08-18 09:34:16.0 +0200
+++ new/parse-1.15.0/PKG-INFO   2020-02-29 22:54:43.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: parse
-Version: 1.12.1
+Version: 1.15.0
 Summary: parse() is the opposite of format()
 Home-page: https://github.com/r1chardj0n3s/parse
 Author: Richard Jones
@@ -29,7 +29,7 @@
 
 Or find all the occurrences of some pattern in a string:
 
->>> ''.join(r.fixed[0] for r in findall(">{}<", "the bold 
text"))
+>>> ''.join(r[0] for r in findall(">{}<", "the bold 
text"))
 'the bold text'
 
 If you're going to use the same pattern to match lots of strings you 
can
@@ -137,7 +137,8 @@
   In addition some regular expression character group types "D", "w", 
"W", "s"
   and "S" are also available.
 - The "e" and "g" types are case-insensitive so there is not need for
-  the "E" or "G" types.
+  the "E" or "G" types. The "e" type 

commit python-parse for openSUSE:Factory

2019-09-13 Thread root
Hello community,

here is the log from the commit of package python-parse for openSUSE:Factory 
checked in at 2019-09-13 14:57:48

Comparing /work/SRC/openSUSE:Factory/python-parse (Old)
 and  /work/SRC/openSUSE:Factory/.python-parse.new.7948 (New)


Package is "python-parse"

Fri Sep 13 14:57:48 2019 rev:6 rq:730060 version:1.12.1

Changes:

--- /work/SRC/openSUSE:Factory/python-parse/python-parse.changes
2019-04-28 20:11:51.78648 +0200
+++ /work/SRC/openSUSE:Factory/.python-parse.new.7948/python-parse.changes  
2019-09-13 14:57:55.313276228 +0200
@@ -1,0 +2,6 @@
+Wed Sep 11 08:31:39 UTC 2019 - Tomáš Chvátal 
+
+- Update to 1.12.1:
+  * no upstream changelog
+
+---

Old:

  parse-1.12.0.tar.gz

New:

  parse-1.12.1.tar.gz



Other differences:
--
++ python-parse.spec ++
--- /var/tmp/diff_new_pack.JOKj4i/_old  2019-09-13 14:57:55.785276248 +0200
+++ /var/tmp/diff_new_pack.JOKj4i/_new  2019-09-13 14:57:55.785276248 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-parse
-Version:1.12.0
+Version:1.12.1
 Release:0
 Summary:Python module for parsing strings using a "format" syntax
 License:MIT

++ parse-1.12.0.tar.gz -> parse-1.12.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parse-1.12.0/PKG-INFO new/parse-1.12.1/PKG-INFO
--- old/parse-1.12.0/PKG-INFO   2019-04-07 03:13:15.0 +0200
+++ new/parse-1.12.1/PKG-INFO   2019-08-18 09:34:16.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: parse
-Version: 1.12.0
+Version: 1.12.1
 Summary: parse() is the opposite of format()
 Home-page: https://github.com/r1chardj0n3s/parse
 Author: Richard Jones
@@ -353,6 +353,7 @@
 
 **Version history (in brief)**:
 
+- 1.12.1 Actually use the `case_sensitive` arg in compile (thanks 
@jacquev6)
 - 1.12.0 Do not assume closing brace when an opening one is found 
(thanks @mattsep)
 - 1.11.1 Revert having unicode char in docstring, it breaks Bamboo 
builds(?!)
 - 1.11.0 Implement `__contains__` for Result instances.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parse-1.12.0/README.rst new/parse-1.12.1/README.rst
--- old/parse-1.12.0/README.rst 2019-04-07 03:13:14.0 +0200
+++ new/parse-1.12.1/README.rst 2019-08-18 09:34:16.0 +0200
@@ -345,6 +345,7 @@
 
 **Version history (in brief)**:
 
+- 1.12.1 Actually use the `case_sensitive` arg in compile (thanks @jacquev6)
 - 1.12.0 Do not assume closing brace when an opening one is found (thanks 
@mattsep)
 - 1.11.1 Revert having unicode char in docstring, it breaks Bamboo builds(?!)
 - 1.11.0 Implement `__contains__` for Result instances.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parse-1.12.0/parse.egg-info/PKG-INFO 
new/parse-1.12.1/parse.egg-info/PKG-INFO
--- old/parse-1.12.0/parse.egg-info/PKG-INFO2019-04-07 03:13:14.0 
+0200
+++ new/parse-1.12.1/parse.egg-info/PKG-INFO2019-08-18 09:34:16.0 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: parse
-Version: 1.12.0
+Version: 1.12.1
 Summary: parse() is the opposite of format()
 Home-page: https://github.com/r1chardj0n3s/parse
 Author: Richard Jones
@@ -353,6 +353,7 @@
 
 **Version history (in brief)**:
 
+- 1.12.1 Actually use the `case_sensitive` arg in compile (thanks 
@jacquev6)
 - 1.12.0 Do not assume closing brace when an opening one is found 
(thanks @mattsep)
 - 1.11.1 Revert having unicode char in docstring, it breaks Bamboo 
builds(?!)
 - 1.11.0 Implement `__contains__` for Result instances.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parse-1.12.0/parse.py new/parse-1.12.1/parse.py
--- old/parse-1.12.0/parse.py   2019-04-07 03:12:25.0 +0200
+++ new/parse-1.12.1/parse.py   2019-08-18 09:32:59.0 +0200
@@ -345,6 +345,7 @@
 
 **Version history (in brief)**:
 
+- 1.12.1 Actually use the `case_sensitive` arg in compile (thanks @jacquev6)
 - 1.12.0 Do not assume closing brace when an opening one is found (thanks 
@mattsep)
 - 1.11.1 Revert having unicode char in docstring, it breaks Bamboo builds(?!)
 - 1.11.0 Implement `__contains__` for Result instances.
@@ -416,7 +417,7 @@
 '''
 
 from __future__ import absolute_import
-__version__ = '1.12.0'
+__version__ = '1.12.1'
 
 # yes, I now have two problems
 import re
@@ -1310,7 +1311,7 @@
 
 Returns a Parser instance.
 '''
-return 

commit python-parse for openSUSE:Factory

2019-04-28 Thread root
Hello community,

here is the log from the commit of package python-parse for openSUSE:Factory 
checked in at 2019-04-28 20:11:20

Comparing /work/SRC/openSUSE:Factory/python-parse (Old)
 and  /work/SRC/openSUSE:Factory/.python-parse.new.5536 (New)


Package is "python-parse"

Sun Apr 28 20:11:20 2019 rev:5 rq:697869 version:1.12.0

Changes:

--- /work/SRC/openSUSE:Factory/python-parse/python-parse.changes
2019-02-27 17:28:09.875341959 +0100
+++ /work/SRC/openSUSE:Factory/.python-parse.new.5536/python-parse.changes  
2019-04-28 20:11:51.78648 +0200
@@ -1,0 +2,9 @@
+Thu Apr 25 11:47:55 UTC 2019 - pgaj...@suse.com
+
+- version update to 1.12.0
+  * Do not assume closing brace when an opening one is found
+- added sources
+  https://github.com/r1chardj0n3s/parse/issues/82
+  + LICENSE
+
+---

Old:

  parse-1.11.1.tar.gz

New:

  LICENSE
  parse-1.12.0.tar.gz



Other differences:
--
++ python-parse.spec ++
--- /var/tmp/diff_new_pack.cRT0tt/_old  2019-04-28 20:11:52.726477194 +0200
+++ /var/tmp/diff_new_pack.cRT0tt/_new  2019-04-28 20:11:52.730477190 +0200
@@ -18,13 +18,15 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-parse
-Version:1.11.1
+Version:1.12.0
 Release:0
 Summary:Python module for parsing strings using a "format" syntax
 License:MIT
 Group:  Development/Languages/Python
 URL:https://github.com/r1chardj0n3s/parse
-Source: 
https://files.pythonhosted.org/packages/source/p/parse/parse-%{version}.tar.gz
+Source0:
https://files.pythonhosted.org/packages/source/p/parse/parse-%{version}.tar.gz
+# https://github.com/r1chardj0n3s/parse/issues/82
+Source1:
https://raw.githubusercontent.com/r1chardj0n3s/parse/master/LICENSE
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
@@ -37,6 +39,7 @@
 %prep
 %setup -q -n parse-%{version}
 chmod a-x README.rst
+cp %{SOURCE1} .
 
 %build
 %python_build
@@ -49,6 +52,7 @@
 %python_exec setup.py test -v
 
 %files %{python_files}
+%license LICENSE
 %doc README.rst
 %{python_sitelib}/*
 

++ LICENSE ++
Copyright (c) 2012-2019 Richard Jones 

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
++ parse-1.11.1.tar.gz -> parse-1.12.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parse-1.11.1/PKG-INFO new/parse-1.12.0/PKG-INFO
--- old/parse-1.11.1/PKG-INFO   2019-01-23 03:02:57.0 +0100
+++ new/parse-1.12.0/PKG-INFO   2019-04-07 03:13:15.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: parse
-Version: 1.11.1
+Version: 1.12.0
 Summary: parse() is the opposite of format()
 Home-page: https://github.com/r1chardj0n3s/parse
 Author: Richard Jones
@@ -353,6 +353,7 @@
 
 **Version history (in brief)**:
 
+- 1.12.0 Do not assume closing brace when an opening one is found 
(thanks @mattsep)
 - 1.11.1 Revert having unicode char in docstring, it breaks Bamboo 
builds(?!)
 - 1.11.0 Implement `__contains__` for Result instances.
 - 1.10.0 Introduce a "letters" matcher, since "w" matches numbers
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parse-1.11.1/README.rst new/parse-1.12.0/README.rst
--- old/parse-1.11.1/README.rst 2019-01-23 03:02:57.0 +0100
+++ new/parse-1.12.0/README.rst 2019-04-07 03:13:14.0 +0200
@@ -345,6 +345,7 @@
 
 **Version history (in brief)**:
 
+- 1.12.0 Do not assume closing brace when an opening one is found (thanks 
@mattsep)
 - 1.11.1 Revert having unicode char in docstring, it 

commit python-parse for openSUSE:Factory

2019-02-27 Thread root
Hello community,

here is the log from the commit of package python-parse for openSUSE:Factory 
checked in at 2019-02-27 17:28:09

Comparing /work/SRC/openSUSE:Factory/python-parse (Old)
 and  /work/SRC/openSUSE:Factory/.python-parse.new.28833 (New)


Package is "python-parse"

Wed Feb 27 17:28:09 2019 rev:4 rq:674910 version:1.11.1

Changes:

--- /work/SRC/openSUSE:Factory/python-parse/python-parse.changes
2018-12-24 11:40:47.789483821 +0100
+++ /work/SRC/openSUSE:Factory/.python-parse.new.28833/python-parse.changes 
2019-02-27 17:28:09.875341959 +0100
@@ -1,0 +2,21 @@
+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)
+
+---

Old:

  parse-1.8.2.tar.gz

New:

  parse-1.11.1.tar.gz



Other differences:
--
++ python-parse.spec ++
--- /var/tmp/diff_new_pack.prMY5m/_old  2019-02-27 17:28:10.323341798 +0100
+++ /var/tmp/diff_new_pack.prMY5m/_new  2019-02-27 17:28:10.327341797 +0100
@@ -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 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_exec setup.py test
+%python_exec setup.py test -v
 
 %files %{python_files}
 %doc README.rst

++ parse-1.8.2.tar.gz -> parse-1.11.1.tar.gz ++
 1651 lines of diff (skipped)




commit python-parse for openSUSE:Factory

2018-12-24 Thread root
Hello community,

here is the log from the commit of package python-parse for openSUSE:Factory 
checked in at 2018-12-24 11:40:46

Comparing /work/SRC/openSUSE:Factory/python-parse (Old)
 and  /work/SRC/openSUSE:Factory/.python-parse.new.28833 (New)


Package is "python-parse"

Mon Dec 24 11:40:46 2018 rev:3 rq:659534 version:1.8.2

Changes:

--- /work/SRC/openSUSE:Factory/python-parse/python-parse.changes
2018-07-31 16:01:33.499766422 +0200
+++ /work/SRC/openSUSE:Factory/.python-parse.new.28833/python-parse.changes 
2018-12-24 11:40:47.789483821 +0100
@@ -1,0 +2,5 @@
+Tue Dec  4 12:51:11 UTC 2018 - Matej Cepl 
+
+- Remove superfluous devel dependency for noarch package
+
+---



Other differences:
--
++ python-parse.spec ++
--- /var/tmp/diff_new_pack.txeHmR/_old  2018-12-24 11:40:48.221483438 +0100
+++ /var/tmp/diff_new_pack.txeHmR/_new  2018-12-24 11:40:48.225483434 +0100
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -25,7 +25,6 @@
 Group:  Development/Languages/Python
 Url:https://github.com/r1chardj0n3s/parse
 Source: 
https://files.pythonhosted.org/packages/source/p/parse/parse-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros




commit python-parse for openSUSE:Factory

2018-07-31 Thread root
Hello community,

here is the log from the commit of package python-parse for openSUSE:Factory 
checked in at 2018-07-31 16:01:32

Comparing /work/SRC/openSUSE:Factory/python-parse (Old)
 and  /work/SRC/openSUSE:Factory/.python-parse.new (New)


Package is "python-parse"

Tue Jul 31 16:01:32 2018 rev:2 rq:626398 version:1.8.2

Changes:

--- /work/SRC/openSUSE:Factory/python-parse/python-parse.changes
2018-06-02 12:03:23.363264395 +0200
+++ /work/SRC/openSUSE:Factory/.python-parse.new/python-parse.changes   
2018-07-31 16:01:33.499766422 +0200
@@ -1,0 +2,5 @@
+Sun Jul 29 13:36:35 UTC 2018 - jeng...@inai.de
+
+- Use noun phrase in summary.
+
+---



Other differences:
--
++ python-parse.spec ++
--- /var/tmp/diff_new_pack.QIzWT9/_old  2018-07-31 16:01:34.159767544 +0200
+++ /var/tmp/diff_new_pack.QIzWT9/_new  2018-07-31 16:01:34.159767544 +0200
@@ -20,7 +20,7 @@
 Name:   python-parse
 Version:1.8.2
 Release:0
-Summary:Parse is the opposite of format
+Summary:Python module for parsing strings using a "format" syntax
 License:MIT
 Group:  Development/Languages/Python
 Url:https://github.com/r1chardj0n3s/parse