commit python-appdirs for openSUSE:Factory

2020-09-04 Thread root
Hello community,

here is the log from the commit of package python-appdirs for openSUSE:Factory 
checked in at 2020-09-04 11:00:25

Comparing /work/SRC/openSUSE:Factory/python-appdirs (Old)
 and  /work/SRC/openSUSE:Factory/.python-appdirs.new.3399 (New)


Package is "python-appdirs"

Fri Sep  4 11:00:25 2020 rev:9 rq:830125 version:1.4.4

Changes:

--- /work/SRC/openSUSE:Factory/python-appdirs/python-appdirs.changes
2020-06-05 20:00:05.699913939 +0200
+++ /work/SRC/openSUSE:Factory/.python-appdirs.new.3399/python-appdirs.changes  
2020-09-04 11:01:21.798695725 +0200
@@ -1,0 +2,5 @@
+Tue Aug 18 23:32:44 UTC 2020 - Matej Cepl 
+
+- We can finally use %pyunittest macro
+
+---



Other differences:
--
++ python-appdirs.spec ++
--- /var/tmp/diff_new_pack.PBMDpf/_old  2020-09-04 11:01:24.266697047 +0200
+++ /var/tmp/diff_new_pack.PBMDpf/_new  2020-09-04 11:01:24.270697050 +0200
@@ -58,7 +58,7 @@
 }
 
 %check
-%python_exec -munittest discover -v
+%pyunittest
 
 %files %{python_files}
 %license LICENSE.txt




commit python-appdirs for openSUSE:Factory

2020-06-05 Thread root
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 
+
+- 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/.gitignore1970-01-01 01:00:00.0 +0100
+++ new/appdirs-1.4.4/.gitignore2020-05-10 09:40:27.0 +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.0 +0100
+++ new/appdirs-1.4.4/.travis.yml   2020-05-11 09:35:34.0 +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.0 +0100
+++ new/appdirs-1.4.4/CHANGES.rst   2020-05-11 09:10:17.0 +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/Dockerfile1970-01-01 01:00:00.0 +0100
+++ new/appdirs-1.4.4/Dockerfile2020-05-10 09:40:27.0 +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.md1970-01-01 01:00:00.0 +0100
+++ new/appdirs-1.4.4/HACKING.md2020-05-10 09:40:27.0 +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' 

commit python-appdirs for openSUSE:Factory

2019-11-22 Thread root
Hello community,

here is the log from the commit of package python-appdirs for openSUSE:Factory 
checked in at 2019-11-22 10:19:12

Comparing /work/SRC/openSUSE:Factory/python-appdirs (Old)
 and  /work/SRC/openSUSE:Factory/.python-appdirs.new.26869 (New)


Package is "python-appdirs"

Fri Nov 22 10:19:12 2019 rev:7 rq:745372 version:1.4.3

Changes:

--- /work/SRC/openSUSE:Factory/python-appdirs/python-appdirs.changes
2018-09-20 11:40:04.416905331 +0200
+++ /work/SRC/openSUSE:Factory/.python-appdirs.new.26869/python-appdirs.changes 
2019-11-22 10:19:14.605363758 +0100
@@ -1,0 +2,5 @@
+Tue Nov  5 09:15:19 UTC 2019 - Tomáš Chvátal 
+
+- Format with spec-cleaner
+
+---



Other differences:
--
++ python-appdirs.spec ++
--- /var/tmp/diff_new_pack.Nis0Rr/_old  2019-11-22 10:19:15.133363622 +0100
+++ /var/tmp/diff_new_pack.Nis0Rr/_new  2019-11-22 10:19:15.133363622 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-appdirs
 #
-# Copyright (c) 2018 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,7 +12,7 @@
 # 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/
 #
 
 
@@ -22,8 +22,7 @@
 Release:0
 Summary:A small Python module for determining platform-specific dirs
 License:MIT
-Group:  Development/Languages/Python
-URL:http://github.com/ActiveState/appdirs
+URL:https://github.com/ActiveState/appdirs
 Source: 
https://files.pythonhosted.org/packages/source/a/appdirs/appdirs-%{version}.tar.gz
 BuildRequires:  %{python_module base}
 BuildRequires:  fdupes




commit python-appdirs for openSUSE:Factory

2018-09-20 Thread root
Hello community,

here is the log from the commit of package python-appdirs for openSUSE:Factory 
checked in at 2018-09-20 11:40:01

Comparing /work/SRC/openSUSE:Factory/python-appdirs (Old)
 and  /work/SRC/openSUSE:Factory/.python-appdirs.new (New)


Package is "python-appdirs"

Thu Sep 20 11:40:01 2018 rev:6 rq:634722 version:1.4.3

Changes:

--- /work/SRC/openSUSE:Factory/python-appdirs/python-appdirs.changes
2018-09-10 12:39:01.822011191 +0200
+++ /work/SRC/openSUSE:Factory/.python-appdirs.new/python-appdirs.changes   
2018-09-20 11:40:04.416905331 +0200
@@ -1,0 +2,27 @@
+Mon Sep 10 12:07:53 CEST 2018 - Matěj Cepl 
+
+- Revert removal of the code fixing egginfo (boo#1107798)
+- Actually we don't need remove-setuptools-dependency.patch,
+  when we don't run python setup.py test anymore. So, remove it.
+
+---
+Tue Sep  4 15:23:26 UTC 2018 - Matěj Cepl 
+
+- Clean SPEC and remove circular dependency on python-setuptools
+  (Add remove-setuptools-dependency.patch patch to do this)
+
+---
+Fri Aug 17 13:47:34 UTC 2018 - tchva...@suse.com
+
+- Use setuptools normally
+- Run tests
+
+---
+Tue Aug 14 10:13:51 UTC 2018 - m...@suse.com
+
+- Submission to SUSE:SLE-12-SP3:Update:PubClouds
+
+  This commit tracks the submission for fate#326575
+  and bsc#1103542
+
+---



Other differences:
--
++ python-appdirs.spec ++
--- /var/tmp/diff_new_pack.bMP0Sh/_old  2018-09-20 11:40:04.876905060 +0200
+++ /var/tmp/diff_new_pack.bMP0Sh/_new  2018-09-20 11:40:04.880905058 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-appdirs
 #
-# 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
@@ -23,11 +23,11 @@
 Summary:A small Python module for determining platform-specific dirs
 License:MIT
 Group:  Development/Languages/Python
-Url:http://github.com/ActiveState/appdirs
+URL:http://github.com/ActiveState/appdirs
 Source: 
https://files.pythonhosted.org/packages/source/a/appdirs/appdirs-%{version}.tar.gz
 BuildRequires:  %{python_module base}
+BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 %python_subpackages
 
@@ -53,12 +53,17 @@
 %python_install
 # fix up egg-info because distutils is bad and should feel bad
 %{python_expand rm %{buildroot}%{$python_sitelib}/*.egg-info
-cp -r appdirs.egg-info 
%{buildroot}%{$python_sitelib}/appdirs-%{version}-py%{$python_version}.egg-info
+cp -r appdirs.egg-info \
+
%{buildroot}%{$python_sitelib}/appdirs-%{version}-py%{$python_version}.egg-info
+%fdupes %{buildroot}%{$python_sitelib}
 }
 
+%check
+%python_exec -munittest discover -v
+
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc CHANGES.rst LICENSE.txt README.rst
+%license LICENSE.txt
+%doc CHANGES.rst README.rst
 %pycache_only %{python_sitelib}/__pycache__/*
 %{python_sitelib}/appdirs.py*
 %{python_sitelib}/appdirs-%{version}-py%{python_version}.egg-info




commit python-appdirs for openSUSE:Factory

2018-09-10 Thread root
Hello community,

here is the log from the commit of package python-appdirs for openSUSE:Factory 
checked in at 2018-09-10 12:39:00

Comparing /work/SRC/openSUSE:Factory/python-appdirs (Old)
 and  /work/SRC/openSUSE:Factory/.python-appdirs.new (New)


Package is "python-appdirs"

Mon Sep 10 12:39:00 2018 rev:5 rq: version:1.4.3

Changes:

--- /work/SRC/openSUSE:Factory/python-appdirs/python-appdirs.changes
2018-09-07 15:34:29.378860717 +0200
+++ /work/SRC/openSUSE:Factory/.python-appdirs.new/python-appdirs.changes   
2018-09-10 12:39:01.822011191 +0200
@@ -2,20 +1,0 @@
-Tue Sep  4 15:23:26 UTC 2018 - Matěj Cepl 
-
-- Clean SPEC and remove circular dependency on python-setuptools
-  (Add remove-setuptools-dependency.patch patch to do this)
-

-Fri Aug 17 13:47:34 UTC 2018 - tchva...@suse.com
-
-- Use setuptools normally
-- Run tests
-

-Tue Aug 14 10:13:51 UTC 2018 - m...@suse.com
-
-- Submission to SUSE:SLE-12-SP3:Update:PubClouds
-
-  This commit tracks the submission for fate#326575
-  and bsc#1103542
-


Old:

  remove-setuptools-dependency.patch



Other differences:
--
++ python-appdirs.spec ++
--- /var/tmp/diff_new_pack.RwRKQs/_old  2018-09-10 12:39:02.730009864 +0200
+++ /var/tmp/diff_new_pack.RwRKQs/_new  2018-09-10 12:39:02.730009864 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-appdirs
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -23,11 +23,11 @@
 Summary:A small Python module for determining platform-specific dirs
 License:MIT
 Group:  Development/Languages/Python
-URL:http://github.com/ActiveState/appdirs
+Url:http://github.com/ActiveState/appdirs
 Source: 
https://files.pythonhosted.org/packages/source/a/appdirs/appdirs-%{version}.tar.gz
-Patch:  remove-setuptools-dependency.patch
 BuildRequires:  %{python_module base}
 BuildRequires:  python-rpm-macros
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 %python_subpackages
 
@@ -51,13 +51,14 @@
 
 %install
 %python_install
-
-%check
-%python_exec -munittest discover -v
+# fix up egg-info because distutils is bad and should feel bad
+%{python_expand rm %{buildroot}%{$python_sitelib}/*.egg-info
+cp -r appdirs.egg-info 
%{buildroot}%{$python_sitelib}/appdirs-%{version}-py%{$python_version}.egg-info
+}
 
 %files %{python_files}
-%license LICENSE.txt
-%doc CHANGES.rst README.rst
+%defattr(-,root,root,-)
+%doc CHANGES.rst LICENSE.txt README.rst
 %pycache_only %{python_sitelib}/__pycache__/*
 %{python_sitelib}/appdirs.py*
 %{python_sitelib}/appdirs-%{version}-py%{python_version}.egg-info




commit python-appdirs for openSUSE:Factory

2018-09-07 Thread root
Hello community,

here is the log from the commit of package python-appdirs for openSUSE:Factory 
checked in at 2018-09-07 15:34:25

Comparing /work/SRC/openSUSE:Factory/python-appdirs (Old)
 and  /work/SRC/openSUSE:Factory/.python-appdirs.new (New)


Package is "python-appdirs"

Fri Sep  7 15:34:25 2018 rev:4 rq:633233 version:1.4.3

Changes:

--- /work/SRC/openSUSE:Factory/python-appdirs/python-appdirs.changes
2017-08-14 12:36:42.375921275 +0200
+++ /work/SRC/openSUSE:Factory/.python-appdirs.new/python-appdirs.changes   
2018-09-07 15:34:29.378860717 +0200
@@ -1,0 +2,20 @@
+Tue Sep  4 15:23:26 UTC 2018 - Matěj Cepl 
+
+- Clean SPEC and remove circular dependency on python-setuptools
+  (Add remove-setuptools-dependency.patch patch to do this)
+
+---
+Fri Aug 17 13:47:34 UTC 2018 - tchva...@suse.com
+
+- Use setuptools normally
+- Run tests
+
+---
+Tue Aug 14 10:13:51 UTC 2018 - m...@suse.com
+
+- Submission to SUSE:SLE-12-SP3:Update:PubClouds
+
+  This commit tracks the submission for fate#326575
+  and bsc#1103542
+
+---

New:

  remove-setuptools-dependency.patch



Other differences:
--
++ python-appdirs.spec ++
--- /var/tmp/diff_new_pack.r1W76T/_old  2018-09-07 15:34:30.826859086 +0200
+++ /var/tmp/diff_new_pack.r1W76T/_new  2018-09-07 15:34:30.830859082 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-appdirs
 #
-# 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
@@ -23,11 +23,11 @@
 Summary:A small Python module for determining platform-specific dirs
 License:MIT
 Group:  Development/Languages/Python
-Url:http://github.com/ActiveState/appdirs
+URL:http://github.com/ActiveState/appdirs
 Source: 
https://files.pythonhosted.org/packages/source/a/appdirs/appdirs-%{version}.tar.gz
+Patch:  remove-setuptools-dependency.patch
 BuildRequires:  %{python_module base}
 BuildRequires:  python-rpm-macros
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 %python_subpackages
 
@@ -51,14 +51,13 @@
 
 %install
 %python_install
-# fix up egg-info because distutils is bad and should feel bad
-%{python_expand rm %{buildroot}%{$python_sitelib}/*.egg-info
-cp -r appdirs.egg-info 
%{buildroot}%{$python_sitelib}/appdirs-%{version}-py%{$python_version}.egg-info
-}
+
+%check
+%python_exec -munittest discover -v
 
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc CHANGES.rst LICENSE.txt README.rst
+%license LICENSE.txt
+%doc CHANGES.rst README.rst
 %pycache_only %{python_sitelib}/__pycache__/*
 %{python_sitelib}/appdirs.py*
 %{python_sitelib}/appdirs-%{version}-py%{python_version}.egg-info

++ remove-setuptools-dependency.patch ++
--- a/setup.py
+++ b/setup.py
@@ -9,10 +9,6 @@ except ImportError:
 from distutils.core import setup
 import appdirs
 
-tests_require = []
-if sys.version_info < (2, 7):
-tests_require.append("unittest2")
-
 
 def read(fname):
 inf = open(os.path.join(os.path.dirname(__file__), fname))
@@ -45,8 +41,6 @@ setup(
 Programming Language :: Python :: Implementation :: CPython
 Topic :: Software Development :: Libraries :: Python Modules
 """.split('\n') if c.strip()],
-test_suite='test.test_api',
-tests_require=tests_require,
 keywords='application directory log cache user',
 author='Trent Mick',
 author_email='tre...@gmail.com',



commit python-appdirs for openSUSE:Factory

2017-08-14 Thread root
Hello community,

here is the log from the commit of package python-appdirs for openSUSE:Factory 
checked in at 2017-08-14 12:36:37

Comparing /work/SRC/openSUSE:Factory/python-appdirs (Old)
 and  /work/SRC/openSUSE:Factory/.python-appdirs.new (New)


Package is "python-appdirs"

Mon Aug 14 12:36:37 2017 rev:3 rq:515117 version:1.4.3

Changes:

--- /work/SRC/openSUSE:Factory/python-appdirs/python-appdirs.changes
2017-02-27 18:30:08.515789761 +0100
+++ /work/SRC/openSUSE:Factory/.python-appdirs.new/python-appdirs.changes   
2017-08-14 12:36:42.375921275 +0200
@@ -1,0 +2,11 @@
+Tue Aug  8 06:11:57 UTC 2017 - tbecht...@suse.com
+
+- update to 1.4.3:
+  - [PR #76] Python 3.6 invalid escape sequence deprecation fixes
+  - Fix for Python 3.6 support
+  - [PR #84] Allow installing without setuptools
+  - [PR #86] Fix string delimiters in setup.py description
+  - Add Python 3.6 support
+- drop desetuptoolize.patch . no longer needed.
+
+---

Old:

  appdirs-1.4.1.tar.gz
  desetuptoolize.patch

New:

  appdirs-1.4.3.tar.gz



Other differences:
--
++ python-appdirs.spec ++
--- /var/tmp/diff_new_pack.IapCvW/_old  2017-08-14 12:36:43.463768516 +0200
+++ /var/tmp/diff_new_pack.IapCvW/_new  2017-08-14 12:36:43.463768516 +0200
@@ -18,14 +18,13 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-appdirs
-Version:1.4.1
+Version:1.4.3
 Release:0
 Summary:A small Python module for determining platform-specific dirs
 License:MIT
 Group:  Development/Languages/Python
 Url:http://github.com/ActiveState/appdirs
 Source: 
https://files.pythonhosted.org/packages/source/a/appdirs/appdirs-%{version}.tar.gz
-Patch0: desetuptoolize.patch
 BuildRequires:  %{python_module base}
 BuildRequires:  python-rpm-macros
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -43,7 +42,6 @@
 
 %prep
 %setup -q -n appdirs-%{version}
-%patch0 -p1
 
 # strip shebang
 sed -r -i '1s/^#!.*$//' appdirs.py

++ appdirs-1.4.1.tar.gz -> appdirs-1.4.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/appdirs-1.4.1/CHANGES.rst 
new/appdirs-1.4.3/CHANGES.rst
--- old/appdirs-1.4.1/CHANGES.rst   2017-02-02 09:17:41.0 +0100
+++ new/appdirs-1.4.3/CHANGES.rst   2017-03-07 08:11:03.0 +0100
@@ -1,9 +1,19 @@
 appdirs Changelog
 =
 
-appdirs 1.4.1
+appdirs 1.4.3
+-
+- [PR #76] Python 3.6 invalid escape sequence deprecation fixes
+- Fix for Python 3.6 support
+
+appdirs 1.4.2
 -
+- [PR #84] Allow installing without setuptools
+- [PR #86] Fix string delimiters in setup.py description
+- Add Python 3.6 support
 
+appdirs 1.4.1
+-
 - [issue #38] Fix _winreg import on Windows Py3
 - [issue #55] Make appname optional
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/appdirs-1.4.1/PKG-INFO new/appdirs-1.4.3/PKG-INFO
--- old/appdirs-1.4.1/PKG-INFO  2017-02-06 02:32:41.0 +0100
+++ new/appdirs-1.4.3/PKG-INFO  2017-03-07 08:32:10.0 +0100
@@ -1,7 +1,7 @@
 Metadata-Version: 1.1
 Name: appdirs
-Version: 1.4.1
-Summary: A small Python module for determining appropriate " + 
"platform-specific dirs, e.g. a "user data dir".
+Version: 1.4.3
+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: tre...@gmail.com; git...@srid.name; j...@its.to
@@ -150,9 +150,19 @@
 appdirs Changelog
 =
 
-appdirs 1.4.1
+appdirs 1.4.3
+-
+- [PR #76] Python 3.6 invalid escape sequence deprecation fixes
+- Fix for Python 3.6 support
+
+appdirs 1.4.2
 -
+- [PR #84] Allow installing without setuptools
+- [PR #86] Fix string delimiters in setup.py description
+- Add Python 3.6 support
 
+appdirs 1.4.1
+-
 - [issue #38] Fix _winreg import on Windows Py3
 - [issue #55] Make appname optional
 
@@ -236,6 +246,7 @@
 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 :: Implementation :: PyPy
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Topic :: 

commit python-appdirs for openSUSE:Factory

2017-02-27 Thread root
Hello community,

here is the log from the commit of package python-appdirs for openSUSE:Factory 
checked in at 2017-02-27 18:30:08

Comparing /work/SRC/openSUSE:Factory/python-appdirs (Old)
 and  /work/SRC/openSUSE:Factory/.python-appdirs.new (New)


Package is "python-appdirs"

Changes:

--- /work/SRC/openSUSE:Factory/python-appdirs/python-appdirs.changes
2015-08-27 08:54:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-appdirs.new/python-appdirs.changes   
2017-02-27 18:30:08.515789761 +0100
@@ -1,0 +2,10 @@
+Thu Feb 23 11:45:52 UTC 2017 - jmate...@suse.com
+
+- update for single-spec
+- desetuptoolize.patch : switch from setuptools to distutils.core
+  for installation, as this is now a setuptools dependency
+- ensure egg-info is a directory (distutils would install it as file)
+- update to 1.4.1
+  * [issue 55] make appname optional
+
+---

Old:

  appdirs-1.4.0.tar.gz

New:

  appdirs-1.4.1.tar.gz
  desetuptoolize.patch



Other differences:
--
++ python-appdirs.spec ++
--- /var/tmp/diff_new_pack.zHsZui/_old  2017-02-27 18:30:09.267683821 +0100
+++ /var/tmp/diff_new_pack.zHsZui/_new  2017-02-27 18:30:09.271683258 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-appdirs
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -16,22 +16,21 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-appdirs
-Version:1.4.0
+Version:1.4.1
 Release:0
 Summary:A small Python module for determining platform-specific dirs
 License:MIT
 Group:  Development/Languages/Python
 Url:http://github.com/ActiveState/appdirs
-Source: 
https://pypi.python.org/packages/source/a/appdirs/appdirs-%{version}.tar.gz
-BuildRequires:  python-devel
-BuildRequires:  python-setuptools
+Source: 
https://files.pythonhosted.org/packages/source/a/appdirs/appdirs-%{version}.tar.gz
+Patch0: desetuptoolize.patch
+BuildRequires:  %{python_module base}
+BuildRequires:  python-rpm-macros
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
 BuildArch:  noarch
-%endif
+%python_subpackages
 
 %description
 ``appdirs`` will
@@ -42,21 +41,28 @@
 - site data dir (``site_data_dir``)
 - user log dir (``user_log_dir``)
 
-
 %prep
 %setup -q -n appdirs-%{version}
+%patch0 -p1
+
+# strip shebang
+sed -r -i '1s/^#!.*$//' appdirs.py
 
 %build
-python setup.py build
+%python_build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
-chmod a+x %{buildroot}%{python_sitelib}/appdirs.py
+%python_install
+# fix up egg-info because distutils is bad and should feel bad
+%{python_expand rm %{buildroot}%{$python_sitelib}/*.egg-info
+cp -r appdirs.egg-info 
%{buildroot}%{$python_sitelib}/appdirs-%{version}-py%{$python_version}.egg-info
+}
 
-%files
+%files %{python_files}
 %defattr(-,root,root,-)
 %doc CHANGES.rst LICENSE.txt README.rst
+%pycache_only %{python_sitelib}/__pycache__/*
 %{python_sitelib}/appdirs.py*
-%{python_sitelib}/appdirs-%{version}-py*.egg-info/
+%{python_sitelib}/appdirs-%{version}-py%{python_version}.egg-info
 
 %changelog

++ appdirs-1.4.0.tar.gz -> appdirs-1.4.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/appdirs-1.4.0/CHANGES.rst 
new/appdirs-1.4.1/CHANGES.rst
--- old/appdirs-1.4.0/CHANGES.rst   2014-08-17 19:31:26.0 +0200
+++ new/appdirs-1.4.1/CHANGES.rst   2017-02-02 09:17:41.0 +0100
@@ -1,6 +1,12 @@
 appdirs Changelog
 =
 
+appdirs 1.4.1
+-
+
+- [issue #38] Fix _winreg import on Windows Py3
+- [issue #55] Make appname optional
+
 appdirs 1.4.0
 -
 - [PR #42] AppAuthor is now optional on Windows
@@ -14,7 +20,7 @@
   everybody
 - [Unix] Removes gratuitous case mangling of the case, since \*nix-es are
   usually case sensitive, so mangling is not wise
-- [Unix] Fixes the uterly wrong behaviour in ``site_data_dir``, return result
+- [Unix] Fixes the utterly wrong behaviour in ``site_data_dir``, return result
   based on XDG_DATA_DIRS and make room for respecting the standard which
   specifies XDG_DATA_DIRS is a multiple-value variable
 - [Issue 6] Add ``*_config_dir`` which are distinct on nix-es, according 

commit python-appdirs for openSUSE:Factory

2015-08-27 Thread h_root
Hello community,

here is the log from the commit of package python-appdirs for openSUSE:Factory 
checked in at 2015-08-27 08:54:42

Comparing /work/SRC/openSUSE:Factory/python-appdirs (Old)
 and  /work/SRC/openSUSE:Factory/.python-appdirs.new (New)


Package is python-appdirs

Changes:

New Changes file:

--- /dev/null   2015-08-24 19:43:32.284261900 +0200
+++ /work/SRC/openSUSE:Factory/.python-appdirs.new/python-appdirs.changes   
2015-08-27 08:54:43.0 +0200
@@ -0,0 +1,24 @@
+---
+Wed Jun  3 14:17:22 UTC 2015 - tbecht...@suse.com
+
+- update to 1.4.0:
+  - [PR #42] AppAuthor is now optional on Windows
+  - [issue 41] Support Jython on Windows, Mac, and Unix-like platforms. Windows
+support requires `JNA https://github.com/twall/jna`_.
+  - [PR #44] Fix incorrect behaviour of the site_config_dir method
+  - [Unix, issue 16] Conform to XDG standard, instead of breaking it for
+everybody
+  - [Unix] Removes gratuitous case mangling of the case, since \*nix-es are
+usually case sensitive, so mangling is not wise
+  - [Unix] Fixes the uterly wrong behaviour in ``site_data_dir``, return result
+based on XDG_DATA_DIRS and make room for respecting the standard which
+specifies XDG_DATA_DIRS is a multiple-value variable
+  - [Issue 6] Add ``*_config_dir`` which are distinct on nix-es, according to
+XDG specs; on Windows and Mac return the corresponding ``*_data_dir``
+- Remove unzip as BuildRequires. tar.gz file now provided and used
+
+---
+Mon Mar 24 13:08:43 UTC 2014 - toddrme2...@gmail.com
+
+- Initial version
+

New:

  appdirs-1.4.0.tar.gz
  python-appdirs.changes
  python-appdirs.spec



Other differences:
--
++ python-appdirs.spec ++
#
# spec file for package python-appdirs
#
# Copyright (c) 2015 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# 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/
#


Name:   python-appdirs
Version:1.4.0
Release:0
Summary:A small Python module for determining platform-specific dirs
License:MIT
Group:  Development/Languages/Python
Url:http://github.com/ActiveState/appdirs
Source: 
https://pypi.python.org/packages/source/a/appdirs/appdirs-%{version}.tar.gz
BuildRequires:  python-devel
BuildRequires:  python-setuptools
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version}  0%{?suse_version} = 1110
%{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
%else
BuildArch:  noarch
%endif

%description
``appdirs`` will
help you choose an appropriate:

- user data dir (``user_data_dir``)
- user cache dir (``user_cache_dir``)
- site data dir (``site_data_dir``)
- user log dir (``user_log_dir``)


%prep
%setup -q -n appdirs-%{version}

%build
python setup.py build

%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
chmod a+x %{buildroot}%{python_sitelib}/appdirs.py

%files
%defattr(-,root,root,-)
%doc CHANGES.rst LICENSE.txt README.rst
%{python_sitelib}/appdirs.py*
%{python_sitelib}/appdirs-%{version}-py*.egg-info/

%changelog