Hello community,

here is the log from the commit of package python-metaextract for 
openSUSE:Factory checked in at 2018-06-29 22:24:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-metaextract (Old)
 and      /work/SRC/openSUSE:Factory/.python-metaextract.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-metaextract"

Fri Jun 29 22:24:08 2018 rev:8 rq:615426 version:1.0.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-metaextract/python-metaextract.changes    
2017-09-20 17:09:18.222164548 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-metaextract.new/python-metaextract.changes   
    2018-06-29 22:24:10.522584120 +0200
@@ -1,0 +2,9 @@
+Sat Jun  9 13:31:52 UTC 2018 - tbecht...@suse.com
+
+- update to 1.0.4:
+  * Convert sets used in entry_points to lists
+  * Fix unittests
+  * Post release version bump to 1.0.4
+- use %license macro
+
+-------------------------------------------------------------------

Old:
----
  metaextract-1.0.3.tar.gz

New:
----
  metaextract-1.0.4.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-metaextract.spec ++++++
--- /var/tmp/diff_new_pack.gIAJJn/_old  2018-06-29 22:24:11.110583679 +0200
+++ /var/tmp/diff_new_pack.gIAJJn/_new  2018-06-29 22:24:11.110583679 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-metaextract
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-metaextract
-Version:        1.0.3
+Version:        1.0.4
 Release:        0
 Summary:        get metadata for python modules
 License:        Apache-2.0
@@ -65,7 +65,8 @@
 
 %files %{python_files}
 %defattr(-,root,root,-)
-%doc README.rst LICENSE
+%doc README.rst
+%license LICENSE
 %python_alternative %{_bindir}/metaextract
 %{python_sitelib}/*
 

++++++ metaextract-1.0.3.tar.gz -> metaextract-1.0.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metaextract-1.0.3/PKG-INFO 
new/metaextract-1.0.4/PKG-INFO
--- old/metaextract-1.0.3/PKG-INFO      2017-09-18 14:57:29.000000000 +0200
+++ new/metaextract-1.0.4/PKG-INFO      2018-06-09 15:30:14.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: metaextract
-Version: 1.0.3
+Version: 1.0.4
 Summary: get metadata for python modules
 Home-page: http://github.com/toabctl/metaextract
 Author: Thomas Bechtold
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metaextract-1.0.3/metaextract/__init__.py 
new/metaextract-1.0.4/metaextract/__init__.py
--- old/metaextract-1.0.3/metaextract/__init__.py       2017-09-18 
14:56:28.000000000 +0200
+++ new/metaextract-1.0.4/metaextract/__init__.py       2018-06-09 
15:29:34.000000000 +0200
@@ -15,4 +15,4 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-__version__ = "1.0.3"
+__version__ = "1.0.4"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metaextract-1.0.3/metaextract/metaextract.py 
new/metaextract-1.0.4/metaextract/metaextract.py
--- old/metaextract-1.0.3/metaextract/metaextract.py    2017-09-18 
14:56:28.000000000 +0200
+++ new/metaextract-1.0.4/metaextract/metaextract.py    2018-06-09 
15:29:34.000000000 +0200
@@ -53,6 +53,10 @@
                 # dict_items objects can not be serialized with json
                 if data[key].__class__.__name__ == 'dict_items':
                     data[key] = list(data[key])
+                if key == 'entry_points' and isinstance(data[key], dict):
+                    for k, v in data[key].items():
+                        if isinstance(v, set):
+                            data[key][k] = list(v)
 
         # keep list ordered!
         for func in ['has_ext_modules']:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metaextract-1.0.3/metaextract.egg-info/PKG-INFO 
new/metaextract-1.0.4/metaextract.egg-info/PKG-INFO
--- old/metaextract-1.0.3/metaextract.egg-info/PKG-INFO 2017-09-18 
14:57:29.000000000 +0200
+++ new/metaextract-1.0.4/metaextract.egg-info/PKG-INFO 2018-06-09 
15:30:14.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: metaextract
-Version: 1.0.3
+Version: 1.0.4
 Summary: get metadata for python modules
 Home-page: http://github.com/toabctl/metaextract
 Author: Thomas Bechtold


Reply via email to