commit python-rope for openSUSE:Factory
Hello community, here is the log from the commit of package python-rope for openSUSE:Factory checked in at 2017-08-29 11:46:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-rope (Old) and /work/SRC/openSUSE:Factory/.python-rope.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "python-rope" Tue Aug 29 11:46:17 2017 rev:10 rq:519182 version:0.10.7 Changes: -------- --- /work/SRC/openSUSE:Factory/python-rope/python-rope.changes 2017-08-16 16:11:36.115169028 +0200 +++ /work/SRC/openSUSE:Factory/.python-rope.new/python-rope.changes 2017-08-29 11:47:33.618893811 +0200 @@ -1,0 +2,7 @@ +Mon Aug 28 16:14:30 UTC 2017 - toddrme2178@gmail.com + +- update to 0.10.7 + + Upstream provides no changelog +- Add tag for CVE-2014-3539-disable-doa.patch + +------------------------------------------------------------------- Old: ---- rope-0.10.5.tar.gz New: ---- rope-0.10.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-rope.spec ++++++ --- /var/tmp/diff_new_pack.5zAycI/_old 2017-08-29 11:47:35.346650282 +0200 +++ /var/tmp/diff_new_pack.5zAycI/_new 2017-08-29 11:47:35.350649717 +0200 @@ -19,13 +19,14 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %bcond_without test Name: python-rope -Version: 0.10.5 +Version: 0.10.7 Release: 0 Summary: A python refactoring library License: GPL-2.0+ Group: Development/Languages/Python Url: https://github.com/python-rope/rope Source: https://files.pythonhosted.org/packages/source/r/rope/rope-%{version}.tar.gz +# PATCH-FIX-UPSTREAM - CVE-2014-3539-disable-doa.patch - https://github.com/python-rope/rope/issues/105 Patch0: CVE-2014-3539-disable-doa.patch BuildRequires: %{python_module devel} BuildRequires: fdupes @@ -48,17 +49,19 @@ %install export LANG=en_US.UTF-8 %{python_install} -rm -rf %{buildroot}/%{python_sitelib}/python-rope/ropetest/ -%{python_expand %fdupes %{buildroot}/%{$python_sitelib}} +%{python_expand rm -rf %{buildroot}/%{%python_sitelib}/python-rope/ropetest/ +%fdupes %{buildroot}/%{$python_sitelib} +} %if %{with test} %check export LANG=en_US.UTF-8 -%{python_exec setup.py test} +%python_exec setup.py test %endif %files %{python_files} -%doc COPYING README.rst docs/ +%doc COPYING README.rst +%doc docs/ %{python_sitelib}/ %changelog ++++++ rope-0.10.5.tar.gz -> rope-0.10.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rope-0.10.5/PKG-INFO new/rope-0.10.7/PKG-INFO --- old/rope-0.10.5/PKG-INFO 2017-02-23 18:57:18.000000000 +0100 +++ new/rope-0.10.7/PKG-INFO 2017-08-23 06:44:12.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: rope -Version: 0.10.5 +Version: 0.10.7 Summary: a python refactoring library... Home-page: https://github.com/python-rope/rope Author: Ali Gholami Rudi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rope-0.10.5/rope/__init__.py new/rope-0.10.7/rope/__init__.py --- old/rope-0.10.5/rope/__init__.py 2017-02-23 18:56:42.000000000 +0100 +++ new/rope-0.10.7/rope/__init__.py 2017-08-23 06:41:28.000000000 +0200 @@ -1,7 +1,7 @@ """rope, a python refactoring library""" INFO = __doc__ -VERSION = '0.10.5' +VERSION = '0.10.7' COPYRIGHT = """\ Copyright (C) 2015-2016 Nicholas Smith Copyright (C) 2014-2015 Matej Cepl diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rope-0.10.5/rope.egg-info/PKG-INFO new/rope-0.10.7/rope.egg-info/PKG-INFO --- old/rope-0.10.5/rope.egg-info/PKG-INFO 2017-02-23 18:57:18.000000000 +0100 +++ new/rope-0.10.7/rope.egg-info/PKG-INFO 2017-08-23 06:44:12.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: rope -Version: 0.10.5 +Version: 0.10.7 Summary: a python refactoring library... Home-page: https://github.com/python-rope/rope Author: Ali Gholami Rudi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rope-0.10.5/setup.py new/rope-0.10.7/setup.py --- old/rope-0.10.5/setup.py 2017-02-23 18:56:42.000000000 +0100 +++ new/rope-0.10.7/setup.py 2017-08-23 06:39:32.000000000 +0200 @@ -57,9 +57,9 @@ def get_long_description(): - lines = open('README.rst').read().splitlines(False) - end = lines.index('Getting Started') - return '\n' + '\n'.join(lines[:end]) + '\n' + lines = open('README.rst', 'rb').read().splitlines(False) + end = lines.index(b'Getting Started') + return '\n' + str(b'\n'.join(lines[:end])) + '\n' setup(name='rope', version=rope.VERSION,
participants (1)
-
root@hilbert.suse.de