Hello community, here is the log from the commit of package python-py2pack for openSUSE:Factory checked in at 2018-04-24 15:33:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-py2pack (Old) and /work/SRC/openSUSE:Factory/.python-py2pack.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-py2pack" Tue Apr 24 15:33:12 2018 rev:46 rq:599997 version:0.8.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-py2pack/python-py2pack.changes 2018-04-19 15:30:07.897474493 +0200 +++ /work/SRC/openSUSE:Factory/.python-py2pack.new/python-py2pack.changes 2018-04-24 15:33:25.989562794 +0200 @@ -1,0 +2,10 @@ +Mon Apr 23 10:20:20 UTC 2018 - [email protected] + +- update to 0.8.3: + * Remove Sphinx cap + * Fix copyright year in tests + * Use release\_urls() XMLRPC method for the time being + * Test python 3.6 and remove 3.5 +- drop fix-api-package-urls.patch (merged upstream) + +------------------------------------------------------------------- Old: ---- fix-api-package-urls.patch py2pack-0.8.2.tar.gz New: ---- py2pack-0.8.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-py2pack.spec ++++++ --- /var/tmp/diff_new_pack.eD7oHW/_old 2018-04-24 15:33:26.717536456 +0200 +++ /var/tmp/diff_new_pack.eD7oHW/_new 2018-04-24 15:33:26.725536166 +0200 @@ -18,14 +18,13 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-py2pack -Version: 0.8.2 +Version: 0.8.3 Release: 0 Url: https://github.com/openSUSE/py2pack Summary: Generate distribution packages from Python packages on PyPI License: Apache-2.0 Group: Development/Languages/Python Source: https://files.pythonhosted.org/packages/source/p/py2pack/py2pack-%{version}.tar.gz -Patch0: fix-api-package-urls.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: %{python_module Jinja2} BuildRequires: %{python_module Sphinx} @@ -63,7 +62,6 @@ %prep %setup -q -n py2pack-%{version} -%patch0 -p1 %build %python_build ++++++ py2pack-0.8.2.tar.gz -> py2pack-0.8.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/py2pack-0.8.2/.travis.yml new/py2pack-0.8.3/.travis.yml --- old/py2pack-0.8.2/.travis.yml 2017-12-22 10:45:48.000000000 +0100 +++ new/py2pack-0.8.3/.travis.yml 2018-04-21 07:07:49.000000000 +0200 @@ -8,8 +8,8 @@ env: TOX_ENV=docs - python: 2.7 env: TOX_ENV=py27 - - python: 3.5 - env: TOX_ENV=py35 + - python: 3.6 + env: TOX_ENV=py36 install: - pip install tox script: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/py2pack-0.8.2/AUTHORS new/py2pack-0.8.3/AUTHORS --- old/py2pack-0.8.2/AUTHORS 2017-12-22 10:46:28.000000000 +0100 +++ new/py2pack-0.8.3/AUTHORS 2018-04-21 07:08:34.000000000 +0200 @@ -1,14 +1,12 @@ Adam Spiers <[email protected]> Antonio Larrosa <[email protected]> -Jürgen Weigert <[email protected]> +Dirk Mueller <[email protected]> +Karol Babioch <[email protected]> Lukas Wunner <[email protected]> Manuel Schnitzer <[email protected]> Oliver Kurz <[email protected]> Sascha Peilicke <[email protected]> -Sascha Peilicke <[email protected]> Sascha Peilicke <[email protected]> Sebastian Wagner <[email protected]> Thomas Bechtold <[email protected]> -Thomas Bechtold <[email protected]> -Valentin Haenel <[email protected]> frispete <[email protected]> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/py2pack-0.8.2/ChangeLog new/py2pack-0.8.3/ChangeLog --- old/py2pack-0.8.2/ChangeLog 2017-12-22 10:46:28.000000000 +0100 +++ new/py2pack-0.8.3/ChangeLog 2018-04-21 07:08:34.000000000 +0200 @@ -1,6 +1,14 @@ CHANGES ======= +0.8.3 +----- + +* Remove Sphinx cap +* Fix copyright year in tests +* Use release\_urls() XMLRPC method for the time being +* Test python 3.6 and remove 3.5 + 0.8.2 ----- @@ -139,8 +147,6 @@ * Ignore .eggs/ dir in git * Update the SPDX mapping file * travis: Use matrix to execute tox envs -* tox: Ignore E402 -* Don't require argparse * Remove python 2.6 support * travis: remove --use-mirrors pip flag usage * tests: ignore console\_scripts order during tests @@ -158,27 +164,6 @@ * Quote %doc filenames if they contain shell metacharacters * Add support for "entry\_points" and "console\_scripts" parameters * Support syntactic variations as per the setuptools spec -* Make "parse" and "run" two separate modes -* Support same set of setup() parameters in parse and run modes -* Use setuptools instead of distutils in \_run\_setup\_py() -* Run setup.py (instead of just parsing it) to gather more data * Adjust Travis CI build * Remove commented code and make pep8 happy -* Remove package create function -* Fix license detection when license is None -* Added BuildRequires: python-setuptools opensuse -- maybe also needed for others? * Don't include comma in \_parse\_setup\_py regexp -* fix indentation in README -* Fix KeyError for license and summary - -0.4.10 ------- - -* Release version 0.4.10 -* list doesn't need arguments -* Fix PyPI URL to avoid 301 moved permanently - -0.4.9 ------ - -* Release version 0.4.9 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/py2pack-0.8.2/PKG-INFO new/py2pack-0.8.3/PKG-INFO --- old/py2pack-0.8.2/PKG-INFO 2017-12-22 10:46:28.000000000 +0100 +++ new/py2pack-0.8.3/PKG-INFO 2018-04-21 07:08:34.000000000 +0200 @@ -1,12 +1,11 @@ Metadata-Version: 1.1 Name: py2pack -Version: 0.8.2 +Version: 0.8.3 Summary: Generate distribution packages from PyPI Home-page: http://github.com/openSUSE/py2pack Author: Sascha Peilicke, Thomas Bechtold Author-email: [email protected], [email protected] License: UNKNOWN -Description-Content-Type: UNKNOWN Description: Py2pack: Generate distribution packages from PyPI ================================================= diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/py2pack-0.8.2/py2pack/__init__.py new/py2pack-0.8.3/py2pack/__init__.py --- old/py2pack-0.8.2/py2pack/__init__.py 2017-12-22 10:45:48.000000000 +0100 +++ new/py2pack-0.8.3/py2pack/__init__.py 2018-04-21 07:07:49.000000000 +0200 @@ -268,7 +268,7 @@ if args.source_url: return {'url': args.source_url, 'filename': args.source_url[args.source_url.rfind("/") + 1:]} - for url in pypi.package_urls(args.name, args.version): # Fetch all download URLs + for url in pypi.release_urls(args.name, args.version): # Fetch all download URLs if url['packagetype'] == 'sdist': # Found the source URL we care for return url # No PyPI tarball release, let's see if an upstream download URL is provided: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/py2pack-0.8.2/py2pack.egg-info/PKG-INFO new/py2pack-0.8.3/py2pack.egg-info/PKG-INFO --- old/py2pack-0.8.2/py2pack.egg-info/PKG-INFO 2017-12-22 10:46:28.000000000 +0100 +++ new/py2pack-0.8.3/py2pack.egg-info/PKG-INFO 2018-04-21 07:08:34.000000000 +0200 @@ -1,12 +1,11 @@ Metadata-Version: 1.1 Name: py2pack -Version: 0.8.2 +Version: 0.8.3 Summary: Generate distribution packages from PyPI Home-page: http://github.com/openSUSE/py2pack Author: Sascha Peilicke, Thomas Bechtold Author-email: [email protected], [email protected] License: UNKNOWN -Description-Content-Type: UNKNOWN Description: Py2pack: Generate distribution packages from PyPI ================================================= diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/py2pack-0.8.2/py2pack.egg-info/pbr.json new/py2pack-0.8.3/py2pack.egg-info/pbr.json --- old/py2pack-0.8.2/py2pack.egg-info/pbr.json 2017-12-22 10:46:28.000000000 +0100 +++ new/py2pack-0.8.3/py2pack.egg-info/pbr.json 2018-04-21 07:08:34.000000000 +0200 @@ -1 +1 @@ -{"git_version": "8ae6f47", "is_release": true} \ No newline at end of file +{"git_version": "07ae3ac", "is_release": true} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/py2pack-0.8.2/test/examples/py2pack-fedora.spec new/py2pack-0.8.3/test/examples/py2pack-fedora.spec --- old/py2pack-0.8.2/test/examples/py2pack-fedora.spec 2017-12-22 10:45:48.000000000 +0100 +++ new/py2pack-0.8.3/test/examples/py2pack-fedora.spec 2018-04-21 07:07:49.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-py2pack # -# Copyright (c) 2017 __USER__. +# Copyright (c) 2018 __USER__. # Name: python-py2pack diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/py2pack-0.8.2/test/examples/py2pack-opensuse-legacy.spec new/py2pack-0.8.3/test/examples/py2pack-opensuse-legacy.spec --- old/py2pack-0.8.2/test/examples/py2pack-opensuse-legacy.spec 2017-12-22 10:45:48.000000000 +0100 +++ new/py2pack-0.8.3/test/examples/py2pack-opensuse-legacy.spec 2018-04-21 07:07:49.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-py2pack # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 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 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/py2pack-0.8.2/test/examples/py2pack-opensuse.spec new/py2pack-0.8.3/test/examples/py2pack-opensuse.spec --- old/py2pack-0.8.2/test/examples/py2pack-opensuse.spec 2017-12-22 10:45:48.000000000 +0100 +++ new/py2pack-0.8.3/test/examples/py2pack-opensuse.spec 2018-04-21 07:07:49.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-py2pack # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 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 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/py2pack-0.8.2/test-requirements.txt new/py2pack-0.8.3/test-requirements.txt --- old/py2pack-0.8.2/test-requirements.txt 2017-12-22 10:45:48.000000000 +0100 +++ new/py2pack-0.8.3/test-requirements.txt 2018-04-21 07:07:49.000000000 +0200 @@ -2,5 +2,5 @@ flake8 nose ddt -Sphinx<1.4,>=1.2.1 +Sphinx>=1.2.1 sphinxcontrib.programoutput diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/py2pack-0.8.2/tox.ini new/py2pack-0.8.3/tox.ini --- old/py2pack-0.8.2/tox.ini 2017-12-22 10:45:48.000000000 +0100 +++ new/py2pack-0.8.3/tox.ini 2018-04-21 07:07:49.000000000 +0200 @@ -1,5 +1,5 @@ [tox] -envlist = py27,py35,py36,pep8,cover +envlist = py27,py36,pep8,cover [testenv] usedevelop = True
