Hello community,

here is the log from the commit of package python-metaextract for 
openSUSE:Factory checked in at 2018-11-12 09:42:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-metaextract (Old)
 and      /work/SRC/openSUSE:Factory/.python-metaextract.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-metaextract"

Mon Nov 12 09:42:14 2018 rev:9 rq:647637 version:1.0.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-metaextract/python-metaextract.changes    
2018-06-29 22:24:10.522584120 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-metaextract.new/python-metaextract.changes   
    2018-11-12 09:42:18.369113417 +0100
@@ -1,0 +2,8 @@
+Fri Nov  9 16:51:37 UTC 2018 - Thomas Bechtold <[email protected]>
+
+- update to 1.0.5:
+  * Add more key from setup.py to output
+  * tests: Only check expected key/value pairs
+  * Post release version bump to 1.0.5
+
+-------------------------------------------------------------------

Old:
----
  metaextract-1.0.4.tar.gz

New:
----
  metaextract-1.0.5.tar.gz

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

Other differences:
------------------
++++++ python-metaextract.spec ++++++
--- /var/tmp/diff_new_pack.5kKzFP/_old  2018-11-12 09:42:19.821111190 +0100
+++ /var/tmp/diff_new_pack.5kKzFP/_new  2018-11-12 09:42:19.825111184 +0100
@@ -12,13 +12,13 @@
 # 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/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-metaextract
-Version:        1.0.4
+Version:        1.0.5
 Release:        0
 Summary:        get metadata for python modules
 License:        Apache-2.0

++++++ metaextract-1.0.4.tar.gz -> metaextract-1.0.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metaextract-1.0.4/PKG-INFO 
new/metaextract-1.0.5/PKG-INFO
--- old/metaextract-1.0.4/PKG-INFO      2018-06-09 15:30:14.000000000 +0200
+++ new/metaextract-1.0.5/PKG-INFO      2018-11-09 17:47:53.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: metaextract
-Version: 1.0.4
+Version: 1.0.5
 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.4/metaextract/__init__.py 
new/metaextract-1.0.5/metaextract/__init__.py
--- old/metaextract-1.0.4/metaextract/__init__.py       2018-06-09 
15:29:34.000000000 +0200
+++ new/metaextract-1.0.5/metaextract/__init__.py       2018-11-09 
17:47:11.000000000 +0100
@@ -15,4 +15,4 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-__version__ = "1.0.4"
+__version__ = "1.0.5"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metaextract-1.0.4/metaextract/metaextract.py 
new/metaextract-1.0.5/metaextract/metaextract.py
--- old/metaextract-1.0.4/metaextract/metaextract.py    2018-06-09 
15:29:34.000000000 +0200
+++ new/metaextract-1.0.5/metaextract/metaextract.py    2018-11-09 
17:47:11.000000000 +0100
@@ -43,7 +43,6 @@
 
     def run(self):
         data = dict()
-
         # keep list ordered!
         for key in ['data_files', 'entry_points', 'extras_require',
                     'install_requires', 'python_requires', 'setup_requires',
@@ -59,9 +58,17 @@
                             data[key][k] = list(v)
 
         # keep list ordered!
-        for func in ['has_ext_modules']:
+        for func in ['get_author', 'get_author_email', 'get_classifiers',
+                     'get_contact', 'get_contact_email', 'get_description',
+                     'get_download_url', 'get_fullname', 'get_keywords',
+                     'get_license', 'get_long_description', 'get_mainainer',
+                     'get_maintainer_email', 'get_name', 'get_url',
+                     'get_version', 'get_download_url',
+                     'get_fullname', 'get_author', 'get_author_email',
+                     'has_ext_modules']:
             if hasattr(self.distribution, func):
-                data[func] = getattr(self.distribution, func)()
+                data['{}'.format(func.replace('get_', ''))] = getattr(
+                    self.distribution, func)()
 
         data_with_version = {
             'version': DATA_VERSION,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metaextract-1.0.4/metaextract.egg-info/PKG-INFO 
new/metaextract-1.0.5/metaextract.egg-info/PKG-INFO
--- old/metaextract-1.0.4/metaextract.egg-info/PKG-INFO 2018-06-09 
15:30:14.000000000 +0200
+++ new/metaextract-1.0.5/metaextract.egg-info/PKG-INFO 2018-11-09 
17:47:53.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: metaextract
-Version: 1.0.4
+Version: 1.0.5
 Summary: get metadata for python modules
 Home-page: http://github.com/toabctl/metaextract
 Author: Thomas Bechtold


Reply via email to