Hello community, here is the log from the commit of package python-PasteScript for openSUSE:Factory checked in at 2019-03-12 09:53:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-PasteScript (Old) and /work/SRC/openSUSE:Factory/.python-PasteScript.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-PasteScript" Tue Mar 12 09:53:23 2019 rev:15 rq:682770 version:3.1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-PasteScript/python-PasteScript.changes 2019-03-08 11:02:40.480528620 +0100 +++ /work/SRC/openSUSE:Factory/.python-PasteScript.new.28833/python-PasteScript.changes 2019-03-12 09:53:24.895538059 +0100 @@ -1,0 +2,6 @@ +Fri Mar 8 11:25:10 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Update to 3.1.0: + * merge patch remove_unittest2.patch + +------------------------------------------------------------------- Old: ---- PasteScript-3.0.0.tar.gz remove_unittest2.patch New: ---- PasteScript-3.1.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-PasteScript.spec ++++++ --- /var/tmp/diff_new_pack.uX4T5K/_old 2019-03-12 09:53:26.107537817 +0100 +++ /var/tmp/diff_new_pack.uX4T5K/_new 2019-03-12 09:53:26.111537816 +0100 @@ -19,14 +19,13 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define oldpython python Name: python-PasteScript -Version: 3.0.0 +Version: 3.1.0 Release: 0 Summary: A pluggable command-line frontend to setup package file layouts License: MIT Group: Development/Languages/Python URL: https://github.com/cdent/pastescript Source: https://files.pythonhosted.org/packages/source/P/PasteScript/PasteScript-%{version}.tar.gz -Patch0: remove_unittest2.patch BuildRequires: %{python_module Paste >= 2.0} BuildRequires: %{python_module PasteDeploy} BuildRequires: %{python_module nose >= 0.11} @@ -55,10 +54,9 @@ %prep %setup -q -n PasteScript-%{version} -%autopatch -p1 - +# remove with next release echo "[nosetests]" >> setup.cfg -echo "tests=tests/test_command.py,tests/test_egg_finder.py,tests/test_logging_config.py,tests/test_plugin_adder.py,tests/test_template_introspect.py,tests/test_util.py" >> setup.cfg +echo "tests=tests" >> setup.cfg %build %python_build ++++++ PasteScript-3.0.0.tar.gz -> PasteScript-3.1.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PasteScript-3.0.0/PKG-INFO new/PasteScript-3.1.0/PKG-INFO --- old/PasteScript-3.0.0/PKG-INFO 2018-11-26 18:50:05.000000000 +0100 +++ new/PasteScript-3.1.0/PKG-INFO 2019-03-05 23:34:01.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: PasteScript -Version: 3.0.0 +Version: 3.1.0 Summary: A pluggable command-line frontend, including commands to setup package file layouts Home-page: http://pythonpaste.org/script/ Author: Ian Bicking diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PasteScript-3.0.0/PasteScript.egg-info/PKG-INFO new/PasteScript-3.1.0/PasteScript.egg-info/PKG-INFO --- old/PasteScript-3.0.0/PasteScript.egg-info/PKG-INFO 2018-11-26 18:50:05.000000000 +0100 +++ new/PasteScript-3.1.0/PasteScript.egg-info/PKG-INFO 2019-03-05 23:34:01.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: PasteScript -Version: 3.0.0 +Version: 3.1.0 Summary: A pluggable command-line frontend, including commands to setup package file layouts Home-page: http://pythonpaste.org/script/ Author: Ian Bicking diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PasteScript-3.0.0/docs/news.txt new/PasteScript-3.1.0/docs/news.txt --- old/PasteScript-3.0.0/docs/news.txt 2018-11-26 18:44:23.000000000 +0100 +++ new/PasteScript-3.1.0/docs/news.txt 2019-03-05 23:32:29.000000000 +0100 @@ -3,6 +3,11 @@ .. contents:: +3.1.0 (2019-03-04) +----------------- + +* Remove dependency on ``unittest2``. + 3.0.0 (2018-11-26) ------------------ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PasteScript-3.0.0/setup.py new/PasteScript-3.1.0/setup.py --- old/PasteScript-3.0.0/setup.py 2018-11-26 18:46:51.000000000 +0100 +++ new/PasteScript-3.1.0/setup.py 2019-03-05 23:30:04.000000000 +0100 @@ -16,7 +16,7 @@ import os import re -version = '3.0.0' +version = '3.1.0' news = os.path.join(os.path.dirname(__file__), 'docs', 'news.txt') found_news = '' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PasteScript-3.0.0/tests/test_command.py new/PasteScript-3.1.0/tests/test_command.py --- old/PasteScript-3.0.0/tests/test_command.py 2018-11-26 13:47:23.000000000 +0100 +++ new/PasteScript-3.1.0/tests/test_command.py 2019-03-05 23:29:33.000000000 +0100 @@ -11,11 +11,7 @@ import sys import tempfile import textwrap -try: - # Use unittest2 for Python 2 to get assertRegex() and assertIn() methods - import unittest2 as unittest -except ImportError: - import unittest +import unittest @contextlib.contextmanager @@ -294,7 +290,7 @@ ''').strip() html_regex = '\n%s\n' % html_regex html_regex = re.compile(html_regex, re.DOTALL) - self.assertRegex(out, html_regex) + six.assertRegex(self, out, html_regex) if __name__ == "__main__": unittest.main() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/PasteScript-3.0.0/tox.ini new/PasteScript-3.1.0/tox.ini --- old/PasteScript-3.0.0/tox.ini 2018-11-26 13:56:09.000000000 +0100 +++ new/PasteScript-3.1.0/tox.ini 2019-03-05 23:29:33.000000000 +0100 @@ -12,6 +12,5 @@ PasteDeploy six nose - py27,pypy: unittest2 commands = nosetests {posargs:-v tests/}
