Hello community,

here is the log from the commit of package python-zope.testing for 
openSUSE:Leap:15.2 checked in at 2020-03-01 08:51:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/python-zope.testing (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.python-zope.testing.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-zope.testing"

Sun Mar  1 08:51:01 2020 rev:12 rq:780506 version:4.7

Changes:
--------
--- 
/work/SRC/openSUSE:Leap:15.2/python-zope.testing/python-zope.testing.changes    
    2020-01-15 15:54:47.479644261 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.python-zope.testing.new.26092/python-zope.testing.changes
     2020-03-01 08:51:05.169238908 +0100
@@ -1,0 +2,19 @@
+Mon Oct 14 14:51:47 UTC 2019 - Matej Cepl <mc...@suse.com>
+
+- Replace %fdupes -s with plain %fdupes; hardlinks are better.
+
+-------------------------------------------------------------------
+Fri Apr  5 14:44:29 UTC 2019 - Marketa Calabkova <mcalabk...@suse.com>
+
+- update to version 4.7
+  * Added support for Python 3.7.
+  * Remove dependencies on zope.interface and zope.exceptions.
+  * Remove use of 2to3 for outdated versions of PyPy3, letting us 
+    build universal wheels.
+
+-------------------------------------------------------------------
+Tue Dec  4 12:56:32 UTC 2018 - Matej Cepl <mc...@suse.com>
+
+- Remove superfluous devel dependency for noarch package
+
+-------------------------------------------------------------------

Old:
----
  zope.testing-4.6.1.tar.gz

New:
----
  zope.testing-4.7.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-zope.testing.spec ++++++
--- /var/tmp/diff_new_pack.2fU7LK/_old  2020-03-01 08:51:05.521239609 +0100
+++ /var/tmp/diff_new_pack.2fU7LK/_new  2020-03-01 08:51:05.521239609 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zope.testing
 #
-# 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,29 +12,22 @@
 # 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-zope.testing
-Version:        4.6.1
+Version:        4.7
 Release:        0
 Summary:        Zope testing helpers
 License:        ZPL-2.1
-Group:          Development/Languages/Python
-Url:            https://pypi.python.org/pypi/zope.testing
+URL:            https://pypi.python.org/pypi/zope.testing
 Source:         
https://files.pythonhosted.org/packages/source/z/zope.testing/zope.testing-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 # Test requirements:
-BuildRequires:  %{python_module zope.exceptions}
-BuildRequires:  %{python_module zope.interface}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Requires:       python-zope.exceptions
-Requires:       python-zope.interface
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildArch:      noarch
 %python_subpackages
 
@@ -96,14 +89,14 @@
 
 %install
 %python_install
-%python_expand %fdupes -s %{buildroot}%{$python_sitelib}
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
 %python_exec setup.py test
 
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc COPYRIGHT.txt LICENSE.txt README.rst
+%license LICENSE.txt
+%doc COPYRIGHT.txt README.rst
 %{python_sitelib}/*
 
 %changelog

++++++ zope.testing-4.6.1.tar.gz -> zope.testing-4.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.testing-4.6.1/.gitignore 
new/zope.testing-4.7/.gitignore
--- old/zope.testing-4.6.1/.gitignore   1970-01-01 01:00:00.000000000 +0100
+++ new/zope.testing-4.7/.gitignore     2018-10-04 15:59:02.000000000 +0200
@@ -0,0 +1,14 @@
+*.pyc
+__pycache__
+.installed.cfg
+bin
+eggs
+develop-eggs
+build
+docs/_build
+parts
+*.egg-info
+.tox
+.coverage
+nosetests.xml
+coverage.xml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.testing-4.6.1/.travis.yml 
new/zope.testing-4.7/.travis.yml
--- old/zope.testing-4.6.1/.travis.yml  1970-01-01 01:00:00.000000000 +0100
+++ new/zope.testing-4.7/.travis.yml    2018-10-04 15:59:02.000000000 +0200
@@ -0,0 +1,21 @@
+language: python
+sudo: false
+python:
+    - 2.7
+    - 3.3
+    - 3.4
+    - 3.5
+    - 3.6
+    - pypy
+    - pypy3
+matrix:
+    include:
+        - python: "3.7"
+          dist: xenial
+          sudo: true
+install:
+    - pip install -e .[test]
+script:
+    - python setup.py -q test -q
+notifications:
+    email: false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.testing-4.6.1/CHANGES.rst 
new/zope.testing-4.7/CHANGES.rst
--- old/zope.testing-4.6.1/CHANGES.rst  2017-01-04 15:09:15.000000000 +0100
+++ new/zope.testing-4.7/CHANGES.rst    2018-10-04 15:59:02.000000000 +0200
@@ -1,6 +1,22 @@
 Changes
 =======
 
+4.7 (2018-10-04)
+----------------
+
+- Added support for Python 3.7.
+
+
+4.6.2 (2017-06-12)
+------------------
+
+- Remove dependencies on ``zope.interface`` and ``zope.exceptions``;
+  they're not used here.
+
+- Remove use of 2to3 for outdated versions of PyPy3, letting us build
+  universal wheels.
+
+
 4.6.1 (2017-01-04)
 ------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.testing-4.6.1/PKG-INFO 
new/zope.testing-4.7/PKG-INFO
--- old/zope.testing-4.6.1/PKG-INFO     2017-01-04 15:09:15.000000000 +0100
+++ new/zope.testing-4.7/PKG-INFO       2018-10-04 15:59:02.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: zope.testing
-Version: 4.6.1
+Version: 4.7
 Summary: Zope testing helpers
 Home-page: https://github.com/zopefoundation/zope.testing
 Author: Zope Foundation and Contributors
@@ -14,7 +14,7 @@
             :target: https://pypi.python.org/pypi/zope.testing/
             :alt: Latest Version
         
-        .. image:: 
https://travis-ci.org/zopefoundation/zope.testing.png?branch=master
+        .. image:: 
https://travis-ci.org/zopefoundation/zope.testing.svg?branch=master
                 :target: https://travis-ci.org/zopefoundation/zope.testing
         
         .. image:: 
https://readthedocs.org/projects/zopetesting/badge/?version=latest
@@ -1374,6 +1374,22 @@
         Changes
         =======
         
+        4.7 (2018-10-04)
+        ----------------
+        
+        - Added support for Python 3.7.
+        
+        
+        4.6.2 (2017-06-12)
+        ------------------
+        
+        - Remove dependencies on ``zope.interface`` and ``zope.exceptions``;
+          they're not used here.
+        
+        - Remove use of 2to3 for outdated versions of PyPy3, letting us build
+          universal wheels.
+        
+        
         4.6.1 (2017-01-04)
         ------------------
         
@@ -1886,8 +1902,10 @@
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Framework :: Zope3
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Classifier: Topic :: Software Development :: Testing
+Provides-Extra: test
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.testing-4.6.1/README.rst 
new/zope.testing-4.7/README.rst
--- old/zope.testing-4.6.1/README.rst   2017-01-04 15:09:15.000000000 +0100
+++ new/zope.testing-4.7/README.rst     2018-10-04 15:59:02.000000000 +0200
@@ -6,7 +6,7 @@
     :target: https://pypi.python.org/pypi/zope.testing/
     :alt: Latest Version
 
-.. image:: https://travis-ci.org/zopefoundation/zope.testing.png?branch=master
+.. image:: https://travis-ci.org/zopefoundation/zope.testing.svg?branch=master
         :target: https://travis-ci.org/zopefoundation/zope.testing
 
 .. image:: https://readthedocs.org/projects/zopetesting/badge/?version=latest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.testing-4.6.1/setup.cfg 
new/zope.testing-4.7/setup.cfg
--- old/zope.testing-4.6.1/setup.cfg    2017-01-04 15:09:15.000000000 +0100
+++ new/zope.testing-4.7/setup.cfg      2018-10-04 15:59:02.000000000 +0200
@@ -1,5 +1,7 @@
+[bdist_wheel]
+universal = 1
+
 [egg_info]
 tag_build = 
 tag_date = 0
-tag_svn_revision = 0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.testing-4.6.1/setup.py 
new/zope.testing-4.7/setup.py
--- old/zope.testing-4.6.1/setup.py     2017-01-04 15:09:15.000000000 +0100
+++ new/zope.testing-4.7/setup.py       2018-10-04 15:59:02.000000000 +0200
@@ -19,24 +19,9 @@
 """Setup for zope.testing package
 """
 import os
-import platform
 from setuptools import setup
 
 
-if platform.python_implementation() == 'PyPy' \
-        and platform.python_version() > '3':
-    extras = dict(
-        use_2to3=True,
-        convert_2to3_doctests=[
-            'src/zope/testing/doctest.txt',
-            'src/zope/testing/formparser.txt',
-            'src/zope/testing/module.txt',
-            'src/zope/testing/setupstack.txt'],
-    )
-else:
-    extras = {}
-
-
 def read(*rnames):
     with open(os.path.join(os.path.dirname(__file__), *rnames)) as f:
         return f.read()
@@ -51,7 +36,8 @@
         'setupstack.txt',
         'wait.txt',
         'doctestcase.txt',
-    ]]
+    ]
+]
 
 
 long_description = '\n\n'.join(
@@ -63,7 +49,7 @@
 
 setup(
     name='zope.testing',
-    version='4.6.1',
+    version='4.7',
     url='https://github.com/zopefoundation/zope.testing',
     license='ZPL 2.1',
     description='Zope testing helpers',
@@ -83,6 +69,7 @@
         "Programming Language :: Python :: 3.4",
         "Programming Language :: Python :: 3.5",
         "Programming Language :: Python :: 3.6",
+        "Programming Language :: Python :: 3.7",
         'Programming Language :: Python :: Implementation :: CPython',
         'Programming Language :: Python :: Implementation :: PyPy',
         "Framework :: Zope3",
@@ -92,15 +79,18 @@
     keywords=keywords,
     packages=[
         "zope",
-        "zope.testing"],
+        "zope.testing",
+    ],
     package_dir={'': 'src'},
     namespace_packages=['zope'],
     install_requires=[
         'setuptools',
-        'zope.exceptions',
-        'zope.interface'],
+    ],
+    extras_require={
+        'test': [
+        ],
+    },
     include_package_data=True,
     zip_safe=False,
     test_suite='zope.testing.tests.test_suite',
-    **extras
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/zope.testing-4.6.1/src/zope.testing.egg-info/PKG-INFO 
new/zope.testing-4.7/src/zope.testing.egg-info/PKG-INFO
--- old/zope.testing-4.6.1/src/zope.testing.egg-info/PKG-INFO   2017-01-04 
15:09:15.000000000 +0100
+++ new/zope.testing-4.7/src/zope.testing.egg-info/PKG-INFO     2018-10-04 
15:59:02.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: zope.testing
-Version: 4.6.1
+Version: 4.7
 Summary: Zope testing helpers
 Home-page: https://github.com/zopefoundation/zope.testing
 Author: Zope Foundation and Contributors
@@ -14,7 +14,7 @@
             :target: https://pypi.python.org/pypi/zope.testing/
             :alt: Latest Version
         
-        .. image:: 
https://travis-ci.org/zopefoundation/zope.testing.png?branch=master
+        .. image:: 
https://travis-ci.org/zopefoundation/zope.testing.svg?branch=master
                 :target: https://travis-ci.org/zopefoundation/zope.testing
         
         .. image:: 
https://readthedocs.org/projects/zopetesting/badge/?version=latest
@@ -1374,6 +1374,22 @@
         Changes
         =======
         
+        4.7 (2018-10-04)
+        ----------------
+        
+        - Added support for Python 3.7.
+        
+        
+        4.6.2 (2017-06-12)
+        ------------------
+        
+        - Remove dependencies on ``zope.interface`` and ``zope.exceptions``;
+          they're not used here.
+        
+        - Remove use of 2to3 for outdated versions of PyPy3, letting us build
+          universal wheels.
+        
+        
         4.6.1 (2017-01-04)
         ------------------
         
@@ -1886,8 +1902,10 @@
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Framework :: Zope3
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Classifier: Topic :: Software Development :: Testing
+Provides-Extra: test
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/zope.testing-4.6.1/src/zope.testing.egg-info/SOURCES.txt 
new/zope.testing-4.7/src/zope.testing.egg-info/SOURCES.txt
--- old/zope.testing-4.6.1/src/zope.testing.egg-info/SOURCES.txt        
2017-01-04 15:09:15.000000000 +0100
+++ new/zope.testing-4.7/src/zope.testing.egg-info/SOURCES.txt  2018-10-04 
15:59:02.000000000 +0200
@@ -1,3 +1,5 @@
+.gitignore
+.travis.yml
 CHANGES.rst
 COPYRIGHT.txt
 LICENSE.txt
@@ -6,6 +8,7 @@
 bootstrap.py
 buildout.cfg
 rtd.txt
+setup.cfg
 setup.py
 tox.ini
 src/zope/__init__.py
@@ -14,7 +17,6 @@
 src/zope.testing.egg-info/dependency_links.txt
 src/zope.testing.egg-info/namespace_packages.txt
 src/zope.testing.egg-info/not-zip-safe
-src/zope.testing.egg-info/pbr.json
 src/zope.testing.egg-info/requires.txt
 src/zope.testing.egg-info/top_level.txt
 src/zope/testing/__init__.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/zope.testing-4.6.1/src/zope.testing.egg-info/pbr.json 
new/zope.testing-4.7/src/zope.testing.egg-info/pbr.json
--- old/zope.testing-4.6.1/src/zope.testing.egg-info/pbr.json   2017-01-04 
15:09:15.000000000 +0100
+++ new/zope.testing-4.7/src/zope.testing.egg-info/pbr.json     1970-01-01 
01:00:00.000000000 +0100
@@ -1 +0,0 @@
-{"is_release": true, "git_version": "10914ec"}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/zope.testing-4.6.1/src/zope.testing.egg-info/requires.txt 
new/zope.testing-4.7/src/zope.testing.egg-info/requires.txt
--- old/zope.testing-4.6.1/src/zope.testing.egg-info/requires.txt       
2017-01-04 15:09:15.000000000 +0100
+++ new/zope.testing-4.7/src/zope.testing.egg-info/requires.txt 2018-10-04 
15:59:02.000000000 +0200
@@ -1,3 +1,3 @@
 setuptools
-zope.exceptions
-zope.interface
+
+[test]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.testing-4.6.1/tox.ini 
new/zope.testing-4.7/tox.ini
--- old/zope.testing-4.6.1/tox.ini      2017-01-04 15:09:15.000000000 +0100
+++ new/zope.testing-4.7/tox.ini        2018-10-04 15:59:02.000000000 +0200
@@ -1,10 +1,9 @@
 [tox]
 envlist =
-    py27,py33,py34,py35,py36,pypy,pypy3
+    py27,py33,py34,py35,py36,py37,pypy,pypy3
 
 [testenv]
 commands =
     python setup.py -q test -q
 deps =
-    zope.exceptions
-    zope.interface
+    .[test]


Reply via email to