Hello community, here is the log from the commit of package python-appdirs for openSUSE:Factory checked in at 2020-06-05 19:59:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-appdirs (Old) and /work/SRC/openSUSE:Factory/.python-appdirs.new.3606 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-appdirs" Fri Jun 5 19:59:54 2020 rev:8 rq:810912 version:1.4.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-appdirs/python-appdirs.changes 2019-11-22 10:19:14.605363758 +0100 +++ /work/SRC/openSUSE:Factory/.python-appdirs.new.3606/python-appdirs.changes 2020-06-05 20:00:05.699913939 +0200 @@ -1,0 +2,11 @@ +Tue Jun 2 16:46:55 UTC 2020 - Dirk Mueller <[email protected]> + +- update to 1.4.4: + - [PR #92] Don't import appdirs from setup.py + + Project officially classified as Stable which is important + for inclusion in other distros such as ActivePython. + + First of several incremental releases to catch up on maintenance. + +------------------------------------------------------------------- Old: ---- appdirs-1.4.3.tar.gz New: ---- appdirs-1.4.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-appdirs.spec ++++++ --- /var/tmp/diff_new_pack.vmEl65/_old 2020-06-05 20:00:07.231919238 +0200 +++ /var/tmp/diff_new_pack.vmEl65/_new 2020-06-05 20:00:07.235919252 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-appdirs # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-appdirs -Version: 1.4.3 +Version: 1.4.4 Release: 0 Summary: A small Python module for determining platform-specific dirs License: MIT ++++++ appdirs-1.4.3.tar.gz -> appdirs-1.4.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appdirs-1.4.3/.gitignore new/appdirs-1.4.4/.gitignore --- old/appdirs-1.4.3/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/appdirs-1.4.4/.gitignore 2020-05-10 09:40:27.000000000 +0200 @@ -0,0 +1,8 @@ +*.pyc +*.egg-info +tmp/ +build/ +dist/ +.tox/ +MANIFEST +*.komodoproject diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appdirs-1.4.3/.travis.yml new/appdirs-1.4.4/.travis.yml --- old/appdirs-1.4.3/.travis.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/appdirs-1.4.4/.travis.yml 2020-05-11 09:35:34.000000000 +0200 @@ -0,0 +1,10 @@ +language: python +python: + - "2.7" + - "pypy" + - "3.4" + - "3.5" + - "3.6" + - "3.7" + - "3.8" +script: python setup.py test diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appdirs-1.4.3/CHANGES.rst new/appdirs-1.4.4/CHANGES.rst --- old/appdirs-1.4.3/CHANGES.rst 2017-03-07 08:11:03.000000000 +0100 +++ new/appdirs-1.4.4/CHANGES.rst 2020-05-11 09:10:17.000000000 +0200 @@ -1,6 +1,15 @@ appdirs Changelog ================= +appdirs 1.4.4 +------------- +- [PR #92] Don't import appdirs from setup.py + +Project officially classified as Stable which is important +for inclusion in other distros such as ActivePython. + +First of several incremental releases to catch up on maintenance. + appdirs 1.4.3 ------------- - [PR #76] Python 3.6 invalid escape sequence deprecation fixes diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appdirs-1.4.3/Dockerfile new/appdirs-1.4.4/Dockerfile --- old/appdirs-1.4.3/Dockerfile 1970-01-01 01:00:00.000000000 +0100 +++ new/appdirs-1.4.4/Dockerfile 2020-05-10 09:40:27.000000000 +0200 @@ -0,0 +1,13 @@ +FROM activestate/activepython:2.7 + +# For Python3 compact +RUN apt-get -y update && apt-get -y install python3-setuptools && \ + apt-get -y clean + +WORKDIR /app +ADD . /app +RUN python setup.py install && python setup.py test +RUN python3 setup.py install && python3 setup.py test + +RUN python -m appdirs +RUN python3 -m appdirs diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appdirs-1.4.3/HACKING.md new/appdirs-1.4.4/HACKING.md --- old/appdirs-1.4.3/HACKING.md 1970-01-01 01:00:00.000000000 +0100 +++ new/appdirs-1.4.4/HACKING.md 2020-05-10 09:40:27.000000000 +0200 @@ -0,0 +1,16 @@ +# HACKING + +## release + +ensure correct version in CHANGES.md and appdirs.py, and: + +``` +python setup.py register sdist bdist_wheel upload +``` + +## docker image + +``` +docker build -t appdirs . +``` + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appdirs-1.4.3/PKG-INFO new/appdirs-1.4.4/PKG-INFO --- old/appdirs-1.4.3/PKG-INFO 2017-03-07 08:32:10.000000000 +0100 +++ new/appdirs-1.4.4/PKG-INFO 2020-05-11 09:49:19.000000000 +0200 @@ -1,10 +1,12 @@ -Metadata-Version: 1.1 +Metadata-Version: 1.2 Name: appdirs -Version: 1.4.3 +Version: 1.4.4 Summary: A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir". Home-page: http://github.com/ActiveState/appdirs -Author: Trent Mick; Sridhar Ratnakumar; Jeff Rouse -Author-email: [email protected]; [email protected]; [email protected] +Author: Trent Mick +Author-email: [email protected] +Maintainer: Jeff Rouse +Maintainer-email: [email protected] License: MIT Description: .. image:: https://secure.travis-ci.org/ActiveState/appdirs.png @@ -150,6 +152,15 @@ appdirs Changelog ================= + appdirs 1.4.4 + ------------- + - [PR #92] Don't import appdirs from setup.py + + Project officially classified as Stable which is important + for inclusion in other distros such as ActivePython. + + First of several incremental releases to catch up on maintenance. + appdirs 1.4.3 ------------- - [PR #76] Python 3.6 invalid escape sequence deprecation fixes @@ -234,19 +245,18 @@ Keywords: application directory log cache user Platform: UNKNOWN -Classifier: Development Status :: 4 - Beta +Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: MIT License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 2 -Classifier: Programming Language :: Python :: 2.6 Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.2 -Classifier: Programming Language :: Python :: 3.3 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 :: 3.8 Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Topic :: Software Development :: Libraries :: Python Modules diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appdirs-1.4.3/TODO.md new/appdirs-1.4.4/TODO.md --- old/appdirs-1.4.3/TODO.md 1970-01-01 01:00:00.000000000 +0100 +++ new/appdirs-1.4.4/TODO.md 2020-05-10 09:40:27.000000000 +0200 @@ -0,0 +1 @@ +- add some Windows 7 examples diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appdirs-1.4.3/appdirs.egg-info/PKG-INFO new/appdirs-1.4.4/appdirs.egg-info/PKG-INFO --- old/appdirs-1.4.3/appdirs.egg-info/PKG-INFO 2017-03-07 08:32:10.000000000 +0100 +++ new/appdirs-1.4.4/appdirs.egg-info/PKG-INFO 2020-05-11 09:49:19.000000000 +0200 @@ -1,10 +1,12 @@ -Metadata-Version: 1.1 +Metadata-Version: 1.2 Name: appdirs -Version: 1.4.3 +Version: 1.4.4 Summary: A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir". Home-page: http://github.com/ActiveState/appdirs -Author: Trent Mick; Sridhar Ratnakumar; Jeff Rouse -Author-email: [email protected]; [email protected]; [email protected] +Author: Trent Mick +Author-email: [email protected] +Maintainer: Jeff Rouse +Maintainer-email: [email protected] License: MIT Description: .. image:: https://secure.travis-ci.org/ActiveState/appdirs.png @@ -150,6 +152,15 @@ appdirs Changelog ================= + appdirs 1.4.4 + ------------- + - [PR #92] Don't import appdirs from setup.py + + Project officially classified as Stable which is important + for inclusion in other distros such as ActivePython. + + First of several incremental releases to catch up on maintenance. + appdirs 1.4.3 ------------- - [PR #76] Python 3.6 invalid escape sequence deprecation fixes @@ -234,19 +245,18 @@ Keywords: application directory log cache user Platform: UNKNOWN -Classifier: Development Status :: 4 - Beta +Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: MIT License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 2 -Classifier: Programming Language :: Python :: 2.6 Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.2 -Classifier: Programming Language :: Python :: 3.3 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 :: 3.8 Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Topic :: Software Development :: Libraries :: Python Modules diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appdirs-1.4.3/appdirs.egg-info/SOURCES.txt new/appdirs-1.4.4/appdirs.egg-info/SOURCES.txt --- old/appdirs-1.4.3/appdirs.egg-info/SOURCES.txt 2017-03-07 08:32:10.000000000 +0100 +++ new/appdirs-1.4.4/appdirs.egg-info/SOURCES.txt 2020-05-11 09:49:19.000000000 +0200 @@ -1,10 +1,16 @@ +.gitignore +.travis.yml CHANGES.rst +Dockerfile +HACKING.md LICENSE.txt MANIFEST.in README.rst +TODO.md appdirs.py setup.cfg setup.py +tox.ini appdirs.egg-info/PKG-INFO appdirs.egg-info/SOURCES.txt appdirs.egg-info/dependency_links.txt diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appdirs-1.4.3/appdirs.py new/appdirs-1.4.4/appdirs.py --- old/appdirs-1.4.3/appdirs.py 2017-03-07 08:11:03.000000000 +0100 +++ new/appdirs-1.4.4/appdirs.py 2020-05-11 01:54:42.000000000 +0200 @@ -13,8 +13,8 @@ # - Mac OS X: http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/index.html # - XDG spec for Un*x: http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html -__version_info__ = (1, 4, 3) -__version__ = '.'.join(map(str, __version_info__)) +__version__ = "1.4.4" +__version_info__ = tuple(int(segment) for segment in __version__.split(".")) import sys diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appdirs-1.4.3/setup.py new/appdirs-1.4.4/setup.py --- old/appdirs-1.4.3/setup.py 2017-02-24 09:11:05.000000000 +0100 +++ new/appdirs-1.4.4/setup.py 2020-05-11 09:03:01.000000000 +0200 @@ -7,7 +7,7 @@ from setuptools import setup except ImportError: from distutils.core import setup -import appdirs +import ast tests_require = [] if sys.version_info < (2, 7): @@ -21,26 +21,32 @@ return out +# Do not import `appdirs` yet, lest we import some random version on sys.path. +for line in read("appdirs.py").splitlines(): + if line.startswith("__version__"): + version = ast.literal_eval(line.split("=", 1)[1].strip()) + break + + setup( name='appdirs', - version=appdirs.__version__, + version=version, description='A small Python module for determining appropriate ' + \ 'platform-specific dirs, e.g. a "user data dir".', long_description=read('README.rst') + '\n' + read('CHANGES.rst'), classifiers=[c.strip() for c in """ - Development Status :: 4 - Beta + Development Status :: 5 - Production/Stable Intended Audience :: Developers License :: OSI Approved :: MIT License Operating System :: OS Independent Programming Language :: Python :: 2 - Programming Language :: Python :: 2.6 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 - Programming Language :: Python :: 3.2 - Programming Language :: Python :: 3.3 Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 Programming Language :: Python :: Implementation :: PyPy Programming Language :: Python :: Implementation :: CPython Topic :: Software Development :: Libraries :: Python Modules @@ -50,8 +56,8 @@ keywords='application directory log cache user', author='Trent Mick', author_email='[email protected]', - maintainer='Trent Mick; Sridhar Ratnakumar; Jeff Rouse', - maintainer_email='[email protected]; [email protected]; [email protected]', + maintainer='Jeff Rouse', + maintainer_email='[email protected]', url='http://github.com/ActiveState/appdirs', license='MIT', py_modules=["appdirs"], diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/appdirs-1.4.3/tox.ini new/appdirs-1.4.4/tox.ini --- old/appdirs-1.4.3/tox.ini 1970-01-01 01:00:00.000000000 +0100 +++ new/appdirs-1.4.4/tox.ini 2020-05-11 01:54:42.000000000 +0200 @@ -0,0 +1,5 @@ +[tox] +envlist = py26, py27, py32, py33, py34, py35, py36 + +[testenv] +commands = python setup.py test
