commit python-flake8-import-order for openSUSE:Factory

2020-04-21 Thread root
Hello community,

here is the log from the commit of package python-flake8-import-order for 
openSUSE:Factory checked in at 2020-04-21 13:11:03

Comparing /work/SRC/openSUSE:Factory/python-flake8-import-order (Old)
 and  /work/SRC/openSUSE:Factory/.python-flake8-import-order.new.2738 (New)


Package is "python-flake8-import-order"

Tue Apr 21 13:11:03 2020 rev:6 rq:795825 version:0.18.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-flake8-import-order/python-flake8-import-order.changes
2019-03-13 09:14:26.351391632 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-import-order.new.2738/python-flake8-import-order.changes
  2020-04-21 13:11:04.568861212 +0200
@@ -1,0 +2,5 @@
+Mon Apr 20 12:06:21 UTC 2020 - Tomáš Chvátal 
+
+- Fix build without python2
+
+---



Other differences:
--
++ python-flake8-import-order.spec ++
--- /var/tmp/diff_new_pack.wTQi6D/_old  2020-04-21 13:11:05.260862592 +0200
+++ /var/tmp/diff_new_pack.wTQi6D/_new  2020-04-21 13:11:05.264862600 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-flake8-import-order
 #
-# 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
@@ -17,6 +17,7 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%bcond_without python2
 Name:   python-flake8-import-order
 Version:0.18.1
 Release:0
@@ -32,10 +33,12 @@
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-BuildRequires:  python2-enum34
 Requires:   python-flake8
 Requires:   python-pycodestyle
 BuildArch:  noarch
+%if %{with python2}
+BuildRequires:  python2-enum34
+%endif
 %ifpython2
 Requires:   python2-enum34
 %endif




commit python-flake8-import-order for openSUSE:Factory

2019-03-13 Thread root
Hello community,

here is the log from the commit of package python-flake8-import-order for 
openSUSE:Factory checked in at 2019-03-13 09:14:22

Comparing /work/SRC/openSUSE:Factory/python-flake8-import-order (Old)
 and  /work/SRC/openSUSE:Factory/.python-flake8-import-order.new.28833 (New)


Package is "python-flake8-import-order"

Wed Mar 13 09:14:22 2019 rev:5 rq:684356 version:0.18.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-flake8-import-order/python-flake8-import-order.changes
2018-12-13 19:44:36.017000423 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-import-order.new.28833/python-flake8-import-order.changes
 2019-03-13 09:14:26.351391632 +0100
@@ -1,0 +2,9 @@
+Tue Mar 12 15:18:04 UTC 2019 - Tomáš Chvátal 
+
+- Update to 0.18.1:
+  * Fix case-sensitive related I100 errors for the pycharm style
+  * Fix noqa regexp
+- Run fdupes
+- Enable tests
+
+---

Old:

  flake8-import-order-0.18.tar.gz

New:

  flake8-import-order-0.18.1.tar.gz



Other differences:
--
++ python-flake8-import-order.spec ++
--- /var/tmp/diff_new_pack.Cavxi5/_old  2019-03-13 09:14:27.035391562 +0100
+++ /var/tmp/diff_new_pack.Cavxi5/_new  2019-03-13 09:14:27.035391562 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-flake8-import-order
 #
-# 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
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-flake8-import-order
-Version:0.18
+Version:0.18.1
 Release:0
 Summary:Flake8 plugin that checks the ordering of import statements
 License:LGPL-3.0-only
@@ -27,7 +27,10 @@
 Source: 
https://files.pythonhosted.org/packages/source/f/flake8-import-order/flake8-import-order-%{version}.tar.gz
 BuildRequires:  %{python_module flake8}
 BuildRequires:  %{python_module pycodestyle}
+BuildRequires:  %{python_module pylama}
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 BuildRequires:  python2-enum34
 Requires:   python-flake8
@@ -49,6 +52,10 @@
 
 %install
 %python_install
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
+
+%check
+%pytest
 
 %files %{python_files}
 %license COPYING

++ flake8-import-order-0.18.tar.gz -> flake8-import-order-0.18.1.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-import-order-0.18/CHANGELOG.rst 
new/flake8-import-order-0.18.1/CHANGELOG.rst
--- old/flake8-import-order-0.18/CHANGELOG.rst  2018-07-08 19:17:54.0 
+0200
+++ new/flake8-import-order-0.18.1/CHANGELOG.rst2019-03-04 
09:37:58.0 +0100
@@ -1,3 +1,9 @@
+0.18.1 2019-03-04
+-
+
+* Fix case-sensitive related I100 errors for the pycharm style
+* Fix noqa regexp
+
 0.18 2018-07-08
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-import-order-0.18/PKG-INFO 
new/flake8-import-order-0.18.1/PKG-INFO
--- old/flake8-import-order-0.18/PKG-INFO   2018-07-08 19:20:32.0 
+0200
+++ new/flake8-import-order-0.18.1/PKG-INFO 2019-03-04 09:38:23.0 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: flake8-import-order
-Version: 0.18
+Version: 0.18.1
 Summary: Flake8 and pylama plugin that checks the ordering of import 
statements.
 Home-page: https://github.com/PyCQA/flake8-import-order
 Author: Alex Stapleton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/flake8-import-order-0.18/flake8_import_order/__about__.py 
new/flake8-import-order-0.18.1/flake8_import_order/__about__.py
--- old/flake8-import-order-0.18/flake8_import_order/__about__.py   
2018-07-08 19:17:54.0 +0200
+++ new/flake8-import-order-0.18.1/flake8_import_order/__about__.py 
2019-03-04 09:37:58.0 +0100
@@ -12,7 +12,7 @@
 )
 __uri__ = "https://github.com/PyCQA/flake8-import-order;
 
-__version__ = "0.18"
+__version__ = "0.18.1"
 
 __author__ = "Alex Stapleton"
 __email__ = "al...@prol.etari.at"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/flake8-import-order-0.18/flake8_import_order/checker.py 
new/flake8-import-order-0.18.1/flake8_import_order/checker.py
--- old/flake8-import-order-0.18/flake8_import_order/checker.py 2018-02-11 
18:24:16.0 +0100
+++ 

commit python-flake8-import-order for openSUSE:Factory

2018-12-13 Thread root
Hello community,

here is the log from the commit of package python-flake8-import-order for 
openSUSE:Factory checked in at 2018-12-13 19:44:34

Comparing /work/SRC/openSUSE:Factory/python-flake8-import-order (Old)
 and  /work/SRC/openSUSE:Factory/.python-flake8-import-order.new.28833 (New)


Package is "python-flake8-import-order"

Thu Dec 13 19:44:34 2018 rev:4 rq:654056 version:0.18

Changes:

--- 
/work/SRC/openSUSE:Factory/python-flake8-import-order/python-flake8-import-order.changes
2018-07-13 10:22:34.662543605 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-import-order.new.28833/python-flake8-import-order.changes
 2018-12-13 19:44:36.017000423 +0100
@@ -1,0 +2,5 @@
+Tue Dec  4 12:48:05 UTC 2018 - Matej Cepl 
+
+- Remove superfluous devel dependency for noarch package
+
+---



Other differences:
--
++ python-flake8-import-order.spec ++
--- /var/tmp/diff_new_pack.5rnhUI/_old  2018-12-13 19:44:36.760999454 +0100
+++ /var/tmp/diff_new_pack.5rnhUI/_new  2018-12-13 19:44:36.760999454 +0100
@@ -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/
 #
 
 
@@ -25,7 +25,6 @@
 Group:  Development/Languages/Python
 URL:https://github.com/public/flake8-import-order
 Source: 
https://files.pythonhosted.org/packages/source/f/flake8-import-order/flake8-import-order-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module flake8}
 BuildRequires:  %{python_module pycodestyle}
 BuildRequires:  %{python_module setuptools}




commit python-flake8-import-order for openSUSE:Factory

2018-07-13 Thread root
Hello community,

here is the log from the commit of package python-flake8-import-order for 
openSUSE:Factory checked in at 2018-07-13 10:22:07

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


Package is "python-flake8-import-order"

Fri Jul 13 10:22:07 2018 rev:3 rq:622328 version:0.18

Changes:

--- 
/work/SRC/openSUSE:Factory/python-flake8-import-order/python-flake8-import-order.changes
2018-05-08 13:38:53.594189346 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-import-order.new/python-flake8-import-order.changes
   2018-07-13 10:22:34.662543605 +0200
@@ -1,0 +2,6 @@
+Thu Jul 12 16:00:21 UTC 2018 - a...@gmx.de
+
+- update to version 0.18:
+  * Add new Python 3.7 modules to the stdlib list, and support 3.7.
+
+---

Old:

  flake8-import-order-0.17.1.tar.gz

New:

  flake8-import-order-0.18.tar.gz



Other differences:
--
++ python-flake8-import-order.spec ++
--- /var/tmp/diff_new_pack.iswbWh/_old  2018-07-13 10:22:35.086544113 +0200
+++ /var/tmp/diff_new_pack.iswbWh/_new  2018-07-13 10:22:35.090544117 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-flake8-import-order
-Version:0.17.1
+Version:0.18
 Release:0
 Summary:Flake8 plugin that checks the ordering of import statements
 License:LGPL-3.0-only

++ flake8-import-order-0.17.1.tar.gz -> flake8-import-order-0.18.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-import-order-0.17.1/CHANGELOG.rst 
new/flake8-import-order-0.18/CHANGELOG.rst
--- old/flake8-import-order-0.17.1/CHANGELOG.rst2018-03-05 
21:42:59.0 +0100
+++ new/flake8-import-order-0.18/CHANGELOG.rst  2018-07-08 19:17:54.0 
+0200
@@ -1,3 +1,8 @@
+0.18 2018-07-08
+---
+
+* Add new Python 3.7 modules to the stdlib list, and support 3.7.
+
 0.17.1 2018-03-05
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-import-order-0.17.1/PKG-INFO 
new/flake8-import-order-0.18/PKG-INFO
--- old/flake8-import-order-0.17.1/PKG-INFO 2018-03-05 21:43:53.0 
+0100
+++ new/flake8-import-order-0.18/PKG-INFO   2018-07-08 19:20:32.0 
+0200
@@ -1,12 +1,13 @@
-Metadata-Version: 1.1
+Metadata-Version: 1.2
 Name: flake8-import-order
-Version: 0.17.1
+Version: 0.18
 Summary: Flake8 and pylama plugin that checks the ordering of import 
statements.
 Home-page: https://github.com/PyCQA/flake8-import-order
-Author: Phil Jones
-Author-email: philip.graham.jones+flake8-imp...@gmail.com
+Author: Alex Stapleton
+Author-email: al...@prol.etari.at
+Maintainer: Phil Jones
+Maintainer-email: philip.graham.jones+flake8-imp...@gmail.com
 License: LGPLv3
-Description-Content-Type: UNKNOWN
 Description: flake8-import-order
 ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/flake8-import-order-0.17.1/flake8_import_order/__about__.py 
new/flake8-import-order-0.18/flake8_import_order/__about__.py
--- old/flake8-import-order-0.17.1/flake8_import_order/__about__.py 
2018-03-05 21:42:59.0 +0100
+++ new/flake8-import-order-0.18/flake8_import_order/__about__.py   
2018-07-08 19:17:54.0 +0200
@@ -12,7 +12,7 @@
 )
 __uri__ = "https://github.com/PyCQA/flake8-import-order;
 
-__version__ = "0.17.1"
+__version__ = "0.18"
 
 __author__ = "Alex Stapleton"
 __email__ = "al...@prol.etari.at"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/flake8-import-order-0.17.1/flake8_import_order/stdlib_list.py 
new/flake8-import-order-0.18/flake8_import_order/stdlib_list.py
--- old/flake8-import-order-0.17.1/flake8_import_order/stdlib_list.py   
2018-03-05 21:42:59.0 +0100
+++ new/flake8-import-order-0.18/flake8_import_order/stdlib_list.py 
2018-07-08 19:17:54.0 +0200
@@ -85,6 +85,7 @@
 "concurrent",
 "configparser",
 "contextlib",
+"contextvars",
 "cookielib",
 "copy",
 "copy_reg",
@@ -93,6 +94,7 @@
 "csv",
 "ctypes",
 "curses",
+"dataclasses",
 "datetime",
 "dbhash",
 "dbm",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/flake8-import-order-0.17.1/flake8_import_order.egg-info/PKG-INFO 
new/flake8-import-order-0.18/flake8_import_order.egg-info/PKG-INFO
--- old/flake8-import-order-0.17.1/flake8_import_order.egg-info/PKG-INFO
2018-03-05 

commit python-flake8-import-order for openSUSE:Factory

2018-05-08 Thread root
Hello community,

here is the log from the commit of package python-flake8-import-order for 
openSUSE:Factory checked in at 2018-05-08 13:38:52

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


Package is "python-flake8-import-order"

Tue May  8 13:38:52 2018 rev:2 rq:605127 version:0.17.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-flake8-import-order/python-flake8-import-order.changes
2018-04-24 15:31:36.945508010 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-import-order.new/python-flake8-import-order.changes
   2018-05-08 13:38:53.594189346 +0200
@@ -1,0 +2,7 @@
+Sun May  6 19:39:31 UTC 2018 - a...@gmx.de
+
+- update to version 0.17.1:
+  * Rebuild of 0.17 with the latest setuptools to fix an enum34
+dependency bug.
+
+---

Old:

  flake8-import-order-0.17.tar.gz

New:

  flake8-import-order-0.17.1.tar.gz



Other differences:
--
++ python-flake8-import-order.spec ++
--- /var/tmp/diff_new_pack.htr37M/_old  2018-05-08 13:38:55.098135061 +0200
+++ /var/tmp/diff_new_pack.htr37M/_new  2018-05-08 13:38:55.102134916 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-flake8-import-order
-Version:0.17
+Version:0.17.1
 Release:0
 Summary:Flake8 plugin that checks the ordering of import statements
 License:LGPL-3.0-only
@@ -33,11 +33,10 @@
 BuildRequires:  python2-enum34
 Requires:   python-flake8
 Requires:   python-pycodestyle
+BuildArch:  noarch
 %ifpython2
 Requires:   python2-enum34
 %endif
-BuildArch:  noarch
-
 %python_subpackages
 
 %description

++ flake8-import-order-0.17.tar.gz -> flake8-import-order-0.17.1.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-import-order-0.17/CHANGELOG.rst 
new/flake8-import-order-0.17.1/CHANGELOG.rst
--- old/flake8-import-order-0.17/CHANGELOG.rst  2018-02-11 18:24:16.0 
+0100
+++ new/flake8-import-order-0.17.1/CHANGELOG.rst2018-03-05 
21:42:59.0 +0100
@@ -1,3 +1,9 @@
+0.17.1 2018-03-05
+-
+
+* Rebuild of 0.17 with the latest setuptools to fix an enum34
+  dependency bug.
+
 0.17 2018-02-11
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-import-order-0.17/PKG-INFO 
new/flake8-import-order-0.17.1/PKG-INFO
--- old/flake8-import-order-0.17/PKG-INFO   2018-02-11 18:24:25.0 
+0100
+++ new/flake8-import-order-0.17.1/PKG-INFO 2018-03-05 21:43:53.0 
+0100
@@ -1,11 +1,12 @@
 Metadata-Version: 1.1
 Name: flake8-import-order
-Version: 0.17
+Version: 0.17.1
 Summary: Flake8 and pylama plugin that checks the ordering of import 
statements.
 Home-page: https://github.com/PyCQA/flake8-import-order
 Author: Phil Jones
 Author-email: philip.graham.jones+flake8-imp...@gmail.com
 License: LGPLv3
+Description-Content-Type: UNKNOWN
 Description: flake8-import-order
 ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/flake8-import-order-0.17/flake8_import_order/__about__.py 
new/flake8-import-order-0.17.1/flake8_import_order/__about__.py
--- old/flake8-import-order-0.17/flake8_import_order/__about__.py   
2018-02-11 18:24:16.0 +0100
+++ new/flake8-import-order-0.17.1/flake8_import_order/__about__.py 
2018-03-05 21:42:59.0 +0100
@@ -12,7 +12,7 @@
 )
 __uri__ = "https://github.com/PyCQA/flake8-import-order;
 
-__version__ = "0.17"
+__version__ = "0.17.1"
 
 __author__ = "Alex Stapleton"
 __email__ = "al...@prol.etari.at"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/flake8-import-order-0.17/flake8_import_order/__init__.py 
new/flake8-import-order-0.17.1/flake8_import_order/__init__.py
--- old/flake8-import-order-0.17/flake8_import_order/__init__.py
2018-02-11 18:24:16.0 +0100
+++ new/flake8-import-order-0.17.1/flake8_import_order/__init__.py  
2018-03-05 21:42:59.0 +0100
@@ -70,7 +70,7 @@
 self.application_import_names = frozenset(application_import_names)
 self.application_package_names = frozenset(application_package_names)
 
-def visit_Import(self, node):  # noqa
+def visit_Import(self, node):  # noqa: N802
 if node.col_offset == 0:
 modules = [alias.name for alias in node.names]
 types_ = {self._classify_type(module) for module in modules}
@@ -84,7 +84,7 @@
 )