Hello community, here is the log from the commit of package python-zetup for openSUSE:Factory checked in at 2019-09-26 20:38:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-zetup (Old) and /work/SRC/openSUSE:Factory/.python-zetup.new.2352 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-zetup" Thu Sep 26 20:38:43 2019 rev:7 rq:732156 version:0.2.64 Changes: -------- --- /work/SRC/openSUSE:Factory/python-zetup/python-zetup.changes 2019-09-05 12:34:04.123576250 +0200 +++ /work/SRC/openSUSE:Factory/.python-zetup.new.2352/python-zetup.changes 2019-09-26 20:38:49.502928690 +0200 @@ -1,0 +2,7 @@ +Fri Sep 20 12:11:03 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Update to 0.2.64: + * entry_point: Add missing import + * process: Convert sys.path items explicitly to str + +------------------------------------------------------------------- Old: ---- zetup-0.2.63.tar.gz New: ---- zetup-0.2.64.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-zetup.spec ++++++ --- /var/tmp/diff_new_pack.CvxQuQ/_old 2019-09-26 20:38:53.834917115 +0200 +++ /var/tmp/diff_new_pack.CvxQuQ/_new 2019-09-26 20:38:53.838917105 +0200 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-zetup -Version: 0.2.63 +Version: 0.2.64 Release: 0 Summary: Project setups tools License: LGPL-3.0-only ++++++ zetup-0.2.63.tar.gz -> zetup-0.2.64.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zetup-0.2.63/PKG-INFO new/zetup-0.2.64/PKG-INFO --- old/zetup-0.2.63/PKG-INFO 2019-08-16 15:43:15.000000000 +0200 +++ new/zetup-0.2.64/PKG-INFO 2019-08-26 20:07:06.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: zetup -Version: 0.2.63 +Version: 0.2.64 Summary: Zimmermann's Extensible Tools for Unified Project_setups Home-page: https://github.com/zimmermanncode/zetup Author: Stefan Zimmermann diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zetup-0.2.63/VERSION new/zetup-0.2.64/VERSION --- old/zetup-0.2.63/VERSION 2019-08-16 15:43:15.000000000 +0200 +++ new/zetup-0.2.64/VERSION 2019-08-26 20:07:06.000000000 +0200 @@ -1 +1 @@ -0.2.63 \ No newline at end of file +0.2.64 \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zetup-0.2.63/zetup/entry_point.py new/zetup-0.2.64/zetup/entry_point.py --- old/zetup-0.2.63/zetup/entry_point.py 2019-08-16 15:42:05.000000000 +0200 +++ new/zetup-0.2.64/zetup/entry_point.py 2019-08-26 20:05:56.000000000 +0200 @@ -1,5 +1,7 @@ from __future__ import absolute_import, print_function +import sys + from .zetup import Zetup from .resolve import resolve diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zetup-0.2.63/zetup/process/__init__.py new/zetup-0.2.64/zetup/process/__init__.py --- old/zetup-0.2.63/zetup/process/__init__.py 2019-08-16 15:42:05.000000000 +0200 +++ new/zetup-0.2.64/zetup/process/__init__.py 2019-08-26 20:05:56.000000000 +0200 @@ -112,20 +112,21 @@ path = _find(command) return chain([path], args) -else: # no Windows ==> just pass through +else: # no Windows ==> just pass through def _command(command, kwargs): return command def _prepare_kwargs(kwargs): - """Prepare (manipulate) the given `kwargs` dict for passing to - :func:`subprocess.call` or :class:`subprocess.Popen` - by resolving any zetup-specific stuff. + """ + Prepare (manipulate) the given `kwargs` dict for ``subprocess``. + + By resolving any zetup-specific stuff """ env = kwargs.get('env') if env is None: - env = kwargs['env'] = dict(os.environ, - PYTHONPATH=os.pathsep.join(sys.path)) + env = kwargs['env'] = dict( + os.environ, PYTHONPATH=os.pathsep.join(map(str, sys.path))) env.update(kwargs.pop('env_update', {})) for key, value in kwargs.pop('env_defaults', {}).items(): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zetup-0.2.63/zetup/zetup_config.py new/zetup-0.2.64/zetup/zetup_config.py --- old/zetup-0.2.63/zetup/zetup_config.py 2019-08-16 15:43:15.000000000 +0200 +++ new/zetup-0.2.64/zetup/zetup_config.py 2019-08-26 20:07:06.000000000 +0200 @@ -217,7 +217,7 @@ SETUP_HOOKS = [] -VERSION = Version('0.2.63') +VERSION = Version('0.2.64') KEEP_MADE = [] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zetup-0.2.63/zetup.egg-info/PKG-INFO new/zetup-0.2.64/zetup.egg-info/PKG-INFO --- old/zetup-0.2.63/zetup.egg-info/PKG-INFO 2019-08-16 15:43:15.000000000 +0200 +++ new/zetup-0.2.64/zetup.egg-info/PKG-INFO 2019-08-26 20:07:06.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: zetup -Version: 0.2.63 +Version: 0.2.64 Summary: Zimmermann's Extensible Tools for Unified Project_setups Home-page: https://github.com/zimmermanncode/zetup Author: Stefan Zimmermann
