Hello community, here is the log from the commit of package python3-pbr for openSUSE:Factory checked in at 2015-03-05 15:41:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python3-pbr (Old) and /work/SRC/openSUSE:Factory/.python3-pbr.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-pbr" Changes: -------- --- /work/SRC/openSUSE:Factory/python3-pbr/python3-pbr.changes 2015-01-12 09:49:50.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.python3-pbr.new/python3-pbr.changes 2015-03-05 18:16:35.000000000 +0100 @@ -1,0 +2,6 @@ +Tue Mar 3 16:59:57 UTC 2015 - a...@gmx.de + +- update to version 0.10.8: + * Support script text override for newer develop + +------------------------------------------------------------------- Old: ---- pbr-0.10.7.tar.gz New: ---- pbr-0.10.8.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python3-pbr.spec ++++++ --- /var/tmp/diff_new_pack.GgbvZg/_old 2015-03-05 18:16:36.000000000 +0100 +++ /var/tmp/diff_new_pack.GgbvZg/_new 2015-03-05 18:16:36.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package python3-pbr # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 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 @@ -21,7 +21,7 @@ %bcond_with tests Name: python3-pbr -Version: 0.10.7 +Version: 0.10.8 Release: 0 Summary: Python Build Reasonableness License: Apache-2.0 ++++++ pbr-0.10.7.tar.gz -> pbr-0.10.8.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-0.10.7/ChangeLog new/pbr-0.10.8/ChangeLog --- old/pbr-0.10.7/ChangeLog 2014-12-22 06:23:03.000000000 +0100 +++ new/pbr-0.10.8/ChangeLog 2015-03-02 19:38:23.000000000 +0100 @@ -1,6 +1,11 @@ CHANGES ======= +0.10.8 +------ + +* Support script text override for newer develop + 0.10.7 ------ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-0.10.7/PKG-INFO new/pbr-0.10.8/PKG-INFO --- old/pbr-0.10.7/PKG-INFO 2014-12-22 06:23:03.000000000 +0100 +++ new/pbr-0.10.8/PKG-INFO 2015-03-02 19:38:23.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: pbr -Version: 0.10.7 +Version: 0.10.8 Summary: Python Build Reasonableness Home-page: http://pypi.python.org/pypi/pbr Author: OpenStack diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-0.10.7/pbr/hooks/commands.py new/pbr-0.10.8/pbr/hooks/commands.py --- old/pbr-0.10.7/pbr/hooks/commands.py 2014-12-22 06:22:49.000000000 +0100 +++ new/pbr-0.10.8/pbr/hooks/commands.py 2015-03-02 19:37:50.000000000 +0100 @@ -43,6 +43,7 @@ self.add_command('pbr.packaging.LocalEggInfo') self.add_command('pbr.packaging.LocalSDist') self.add_command('pbr.packaging.LocalInstallScripts') + self.add_command('pbr.packaging.LocalDevelop') if os.name != 'nt': easy_install.get_script_args = packaging.override_get_script_args diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-0.10.7/pbr/packaging.py new/pbr-0.10.8/pbr/packaging.py --- old/pbr-0.10.7/pbr/packaging.py 2014-12-22 06:22:49.000000000 +0100 +++ new/pbr-0.10.8/pbr/packaging.py 2015-03-02 19:37:50.000000000 +0100 @@ -30,6 +30,7 @@ from distutils.command import install as du_install from distutils import log import pkg_resources +from setuptools.command import develop from setuptools.command import easy_install from setuptools.command import egg_info from setuptools.command import install @@ -321,6 +322,18 @@ yield (name, header + script_text) +class LocalDevelop(develop.develop): + + command_name = 'develop' + + def install_wrapper_scripts(self, dist): + if sys.platform == 'win32': + return develop.develop.install_wrapper_scripts(self, dist) + if not self.exclude_scripts: + for args in override_get_script_args(dist): + self.write_script(*args) + + class LocalInstallScripts(install_scripts.install_scripts): """Intercepts console scripts entry_points.""" command_name = 'install_scripts' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-0.10.7/pbr.egg-info/PKG-INFO new/pbr-0.10.8/pbr.egg-info/PKG-INFO --- old/pbr-0.10.7/pbr.egg-info/PKG-INFO 2014-12-22 06:23:03.000000000 +0100 +++ new/pbr-0.10.8/pbr.egg-info/PKG-INFO 2015-03-02 19:38:23.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: pbr -Version: 0.10.7 +Version: 0.10.8 Summary: Python Build Reasonableness Home-page: http://pypi.python.org/pypi/pbr Author: OpenStack diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-0.10.7/pbr.egg-info/pbr.json new/pbr-0.10.8/pbr.egg-info/pbr.json --- old/pbr-0.10.7/pbr.egg-info/pbr.json 2014-12-22 06:23:03.000000000 +0100 +++ new/pbr-0.10.8/pbr.egg-info/pbr.json 2015-03-02 19:38:23.000000000 +0100 @@ -1 +1 @@ -{"is_release": true, "git_version": "aef4f7e"} \ No newline at end of file +{"is_release": true, "git_version": "1457aaf"} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-0.10.7/pbr.egg-info/requires.txt new/pbr-0.10.8/pbr.egg-info/requires.txt --- old/pbr-0.10.7/pbr.egg-info/requires.txt 2014-12-22 06:23:03.000000000 +0100 +++ new/pbr-0.10.8/pbr.egg-info/requires.txt 2015-03-02 19:38:23.000000000 +0100 @@ -1 +1 @@ -pip \ No newline at end of file +pip diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-0.10.7/setup.cfg new/pbr-0.10.8/setup.cfg --- old/pbr-0.10.7/setup.cfg 2014-12-22 06:23:03.000000000 +0100 +++ new/pbr-0.10.8/setup.cfg 2015-03-02 19:38:23.000000000 +0100 @@ -53,6 +53,6 @@ [egg_info] tag_build = -tag_date = 0 tag_svn_revision = 0 +tag_date = 0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pbr-0.10.7/tools/integration.sh new/pbr-0.10.8/tools/integration.sh --- old/pbr-0.10.7/tools/integration.sh 2014-12-22 06:22:49.000000000 +0100 +++ new/pbr-0.10.8/tools/integration.sh 2015-03-02 19:37:50.000000000 +0100 @@ -80,6 +80,13 @@ git clone $REPODIR/pbr $eppbrdir $epvenv/bin/pip install -e $eppbrdir +# First check develop +PBR_VERSION=0.0 $epvenv/bin/python setup.py develop +cat $epvenv/bin/test_cmd +grep 'PBR Generated' $epvenv/bin/test_cmd +PBR_VERSION=0.0 $epvenv/bin/python setup.py develop --uninstall + +# Now check install PBR_VERSION=0.0 $epvenv/bin/python setup.py install cat $epvenv/bin/test_cmd grep 'PBR Generated' $epvenv/bin/test_cmd -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org