commit python-metaextract for openSUSE:Leap:15.2

2020-04-02 Thread root
Hello community,

here is the log from the commit of package python-metaextract for 
openSUSE:Leap:15.2 checked in at 2020-04-02 16:48:31

Comparing /work/SRC/openSUSE:Leap:15.2/python-metaextract (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.python-metaextract.new.3248 (New)


Package is "python-metaextract"

Thu Apr  2 16:48:31 2020 rev:12 rq:790206 version:1.0.7

Changes:

--- /work/SRC/openSUSE:Leap:15.2/python-metaextract/python-metaextract.changes  
2020-03-09 18:08:49.176977626 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.python-metaextract.new.3248/python-metaextract.changes
2020-04-02 16:48:31.393968235 +0200
@@ -1,0 +2,6 @@
+Sun Mar 29 05:33:31 UTC 2020 - Thomas Bechtold 
+
+- update to 1.0.7:
+  * Use default json encoder 'str'
+
+---

Old:

  1.0.6.tar.gz

New:

  1.0.7.tar.gz



Other differences:
--
++ python-metaextract.spec ++
--- /var/tmp/diff_new_pack.AfGRSu/_old  2020-04-02 16:48:31.785969258 +0200
+++ /var/tmp/diff_new_pack.AfGRSu/_new  2020-04-02 16:48:31.785969258 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-metaextract
 #
-# 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,12 +18,12 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-metaextract
-Version:1.0.6
+Version:1.0.7
 Release:0
 Summary:Module to collect metadata for Python modules
 License:Apache-2.0
 Group:  Development/Languages/Python
-Url:http://github.com/toabctl/metaextract
+URL:http://github.com/toabctl/metaextract
 Source: 
https://github.com/toabctl/metaextract/archive/%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes

++ 1.0.6.tar.gz -> 1.0.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metaextract-1.0.6/metaextract/__init__.py 
new/metaextract-1.0.7/metaextract/__init__.py
--- old/metaextract-1.0.6/metaextract/__init__.py   2019-08-08 
10:30:46.0 +0200
+++ new/metaextract-1.0.7/metaextract/__init__.py   2020-03-29 
07:21:37.0 +0200
@@ -15,4 +15,4 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-__version__ = "1.0.6"
+__version__ = "1.0.7"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metaextract-1.0.6/metaextract/metaextract.py 
new/metaextract-1.0.7/metaextract/metaextract.py
--- old/metaextract-1.0.6/metaextract/metaextract.py2019-08-08 
10:30:46.0 +0200
+++ new/metaextract-1.0.7/metaextract/metaextract.py2020-03-29 
07:21:37.0 +0200
@@ -78,6 +78,7 @@
 if self.output:
 with open(self.output, "w+") as f:
 f.write(json.dumps(data_with_version, indent=2,
-   sort_keys=True))
+   sort_keys=True, default=str))
 else:
-print(json.dumps(data_with_version, indent=2, sort_keys=True))
+print(json.dumps(data_with_version, indent=2,
+ sort_keys=True, default=str))




commit python-metaextract for openSUSE:Leap:15.2

2020-03-09 Thread root
Hello community,

here is the log from the commit of package python-metaextract for 
openSUSE:Leap:15.2 checked in at 2020-03-09 18:08:48

Comparing /work/SRC/openSUSE:Leap:15.2/python-metaextract (Old)
 and  /work/SRC/openSUSE:Leap:15.2/.python-metaextract.new.26092 (New)


Package is "python-metaextract"

Mon Mar  9 18:08:48 2020 rev:11 rq:776795 version:1.0.6

Changes:

--- /work/SRC/openSUSE:Leap:15.2/python-metaextract/python-metaextract.changes  
2020-01-15 15:50:34.959499522 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.python-metaextract.new.26092/python-metaextract.changes
   2020-03-09 18:08:49.176977626 +0100
@@ -1,0 +2,51 @@
+Tue Aug 27 07:31:50 UTC 2019 - Jan Engelhardt 
+
+- Use noun phrase in summary. Trim history from description.
+  Fix wrong "it's".
+
+---
+Thu Aug  8 08:37:50 UTC 2019 - Thomas Bechtold 
+
+- Capitalize summary to make rpmlint happy
+
+---
+Thu Aug  8 08:35:17 UTC 2019 - Thomas Bechtold 
+
+- update to 1.0.6:
+  * Switch to python 3.7
+  * travis: Use py36 for pep8 tox env
+  * Fix tests when using pytest >= 5
+
+---
+Fri Jun 21 12:54:53 UTC 2019 - pgaj...@suse.com
+
+- run the testsuite in %check
+
+---
+Thu Mar  7 11:11:14 UTC 2019 - Tomáš Chvátal 
+
+- Fix fdupes call
+
+---
+Tue Dec  4 12:50:22 UTC 2018 - Matej Cepl 
+
+- Remove superfluous devel dependency for noarch package
+
+---
+Fri Nov  9 16:51:37 UTC 2018 - Thomas Bechtold 
+
+- 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
+
+---
+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
+
+---
@@ -54 +104,0 @@
-

Old:

  metaextract-1.0.3.tar.gz

New:

  1.0.6.tar.gz



Other differences:
--
++ python-metaextract.spec ++
--- /var/tmp/diff_new_pack.6V84fA/_old  2020-03-09 18:08:49.496978084 +0100
+++ /var/tmp/diff_new_pack.6V84fA/_new  2020-03-09 18:08:49.496978084 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-metaextract
 #
-# Copyright (c) 2017 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
@@ -12,25 +12,26 @@
 # 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.3
+Version:1.0.6
 Release:0
-Summary:get metadata for python modules
+Summary:Module to collect metadata for Python modules
 License:Apache-2.0
 Group:  Development/Languages/Python
 Url:http://github.com/toabctl/metaextract
-Source: 
https://files.pythonhosted.org/packages/source/m/metaextract/metaextract-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
+Source: 
https://github.com/toabctl/metaextract/archive/%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 # Needed even though no tests are present
+BuildRequires:  %{python_module pbr}
 BuildRequires:  %{python_module pytest-runner}
+BuildRequires:  %{python_module pytest}
 Requires:   python-setuptools
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
@@ -39,11 +40,11 @@
 %python_subpackages
 
 %description
-metaextract is a tool to collect metadata about a python module. For example
-you may have a sdist tarball from the `Python Package Index`_ and you want to
-know it's dependencies. metaextract can collect theses dependencies.
-The tool was first developed in `py2pack`_ but is now it's own module to be
-useful for others, too.
+metaextract is a tool to collect metadata about a python module. For
+example, it can determine and collect the dependencies of a sdist
+tarball that w