commit python-flake8-quotes for openSUSE:Factory

2020-07-27 Thread root
Hello community,

here is the log from the commit of package python-flake8-quotes for 
openSUSE:Factory checked in at 2020-07-27 17:40:26

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


Package is "python-flake8-quotes"

Mon Jul 27 17:40:26 2020 rev:6 rq:822786 version:3.2.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-flake8-quotes/python-flake8-quotes.changes
2020-04-16 23:04:59.747767844 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-quotes.new.3592/python-flake8-quotes.changes
  2020-07-27 17:41:13.103045907 +0200
@@ -1,0 +2,10 @@
+Sat Jul 25 15:27:54 UTC 2020 - Arun Persaud 
+
+- update to version 3.2.0:
+  * Fixed mistaking key access as docstring (#99)
+  * Added lint checks for main files (#79)
+
+- changes from version 3.1.0:
+  * Added quadruple quote ending support (#96)
+
+---

Old:

  flake8-quotes-3.0.0.tar.gz

New:

  flake8-quotes-3.2.0.tar.gz



Other differences:
--
++ python-flake8-quotes.spec ++
--- /var/tmp/diff_new_pack.qI51qY/_old  2020-07-27 17:41:15.739048381 +0200
+++ /var/tmp/diff_new_pack.qI51qY/_new  2020-07-27 17:41:15.743048385 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-flake8-quotes
-Version:3.0.0
+Version:3.2.0
 Release:0
 Summary:Flake8 lint for quotes
 License:MIT

++ flake8-quotes-3.0.0.tar.gz -> flake8-quotes-3.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-3.0.0/PKG-INFO 
new/flake8-quotes-3.2.0/PKG-INFO
--- old/flake8-quotes-3.0.0/PKG-INFO2020-03-25 21:43:48.0 +0100
+++ new/flake8-quotes-3.2.0/PKG-INFO2020-05-13 01:46:27.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: flake8-quotes
-Version: 3.0.0
+Version: 3.2.0
 Summary: Flake8 lint for quotes.
 Home-page: http://github.com/zheller/flake8-quotes/
 Author: Zachary Wright Heller
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-3.0.0/flake8_quotes/__about__.py 
new/flake8-quotes-3.2.0/flake8_quotes/__about__.py
--- old/flake8-quotes-3.0.0/flake8_quotes/__about__.py  2020-03-25 
21:43:39.0 +0100
+++ new/flake8-quotes-3.2.0/flake8_quotes/__about__.py  2020-05-13 
01:46:18.0 +0200
@@ -1 +1 @@
-__version__ = '3.0.0'
+__version__ = '3.2.0'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-3.0.0/flake8_quotes/__init__.py 
new/flake8-quotes-3.2.0/flake8_quotes/__init__.py
--- old/flake8-quotes-3.0.0/flake8_quotes/__init__.py   2020-03-25 
21:43:28.0 +0100
+++ new/flake8-quotes-3.2.0/flake8_quotes/__init__.py   2020-05-13 
01:33:13.0 +0200
@@ -24,51 +24,53 @@
 
 INLINE_QUOTES = {
 # When user wants only single quotes
-'\'': {
-'good_single': '\'',
+"'": {
+'good_single': "'",
 'bad_single': '"',
 },
 # When user wants only double quotes
 '"': {
 'good_single': '"',
-'bad_single': '\'',
+'bad_single': "'",
 },
 }
 # Provide aliases for Windows CLI support
 #   https://github.com/zheller/flake8-quotes/issues/49
-INLINE_QUOTES['single'] = INLINE_QUOTES['\'']
+INLINE_QUOTES['single'] = INLINE_QUOTES["'"]
 INLINE_QUOTES['double'] = INLINE_QUOTES['"']
 
 MULTILINE_QUOTES = {
-'\'': {
-'good_multiline': '\'\'\'',
+"'": {
+'good_multiline': "'''",
+'good_multiline_ending': '\'"""',
 'bad_multiline': '"""',
 },
 '"': {
 'good_multiline': '"""',
-'bad_multiline': '\'\'\'',
+'good_multiline_ending': '"\'\'\'',
+'bad_multiline': "'''",
 },
 }
 # Provide Windows CLI and multi-quote aliases
-MULTILINE_QUOTES['single'] = MULTILINE_QUOTES['\'']
+MULTILINE_QUOTES['single'] = MULTILINE_QUOTES["'"]
 MULTILINE_QUOTES['double'] = MULTILINE_QUOTES['"']
-MULTILINE_QUOTES['\'\'\''] = MULTILINE_QUOTES['\'']
+MULTILINE_QUOTES["'''"] = MULTILINE_QUOTES["'"]
 MULTILINE_QUOTES['"""'] = MULTILINE_QUOTES['"']
 
 DOCSTRING_QUOTES = {
-'\'': {
-'good_docstring': '\'\'\'',
+"'": {
+'good_docstring': "'''",
 'bad_docstring': '"""',
 },
 '"': {
 'good_docstring': '"""',
-'bad_docstring': '\'\'\'',
+'bad_docstring': "'''",
 },

commit python-flake8-quotes for openSUSE:Factory

2020-04-16 Thread root
Hello community,

here is the log from the commit of package python-flake8-quotes for 
openSUSE:Factory checked in at 2020-04-16 23:04:53

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


Package is "python-flake8-quotes"

Thu Apr 16 23:04:53 2020 rev:5 rq:794557 version:3.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-flake8-quotes/python-flake8-quotes.changes
2019-08-05 10:42:23.731291838 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-quotes.new.2738/python-flake8-quotes.changes
  2020-04-16 23:04:59.747767844 +0200
@@ -1,0 +2,6 @@
+Thu Apr 16 10:36:56 UTC 2020 - Tomáš Chvátal 
+
+- Update to 3.0.0:
+  * no upstream changelog
+
+---

Old:

  flake8-quotes-2.1.0.tar.gz

New:

  flake8-quotes-3.0.0.tar.gz



Other differences:
--
++ python-flake8-quotes.spec ++
--- /var/tmp/diff_new_pack.RFViCZ/_old  2020-04-16 23:05:01.035768991 +0200
+++ /var/tmp/diff_new_pack.RFViCZ/_new  2020-04-16 23:05:01.039768995 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-flake8-quotes
 #
-# 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,24 +17,21 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
-%bcond_without  test
 Name:   python-flake8-quotes
-Version:2.1.0
+Version:3.0.0
 Release:0
 Summary:Flake8 lint for quotes
 License:MIT
 Group:  Development/Languages/Python
 URL:https://github.com/zheller/flake8-quotes/
 Source: 
https://files.pythonhosted.org/packages/source/f/flake8-quotes/flake8-quotes-%{version}.tar.gz
+BuildRequires:  %{python_module flake8 >= 3.3.0}
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:   python-flake8 >= 3.3.0
 BuildArch:  noarch
-%if %{with test}
-BuildRequires:  %{python_module flake8 >= 3.3.0}
-BuildRequires:  %{python_module pytest}
-%endif
 %python_subpackages
 
 %description
@@ -50,11 +47,9 @@
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
-%if %{with test}
 %check
 # Tests require access to stdin
 %pytest -s -k "not test_stdin" test
-%endif
 
 %files %{python_files}
 %doc README.rst

++ flake8-quotes-2.1.0.tar.gz -> flake8-quotes-3.0.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-2.1.0/PKG-INFO 
new/flake8-quotes-3.0.0/PKG-INFO
--- old/flake8-quotes-2.1.0/PKG-INFO2019-08-01 22:37:29.0 +0200
+++ new/flake8-quotes-3.0.0/PKG-INFO2020-03-25 21:43:48.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: flake8-quotes
-Version: 2.1.0
+Version: 3.0.0
 Summary: Flake8 lint for quotes.
 Home-page: http://github.com/zheller/flake8-quotes/
 Author: Zachary Wright Heller
@@ -82,6 +82,7 @@
 
 .. code:: ini
 
+[flake8]
 inline-quotes = "
 # We also support "double" and "single"
 # inline-quotes = double
@@ -123,5 +124,7 @@
 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: Topic :: Software Development :: Libraries :: Python Modules
 Classifier: Topic :: Software Development :: Quality Assurance
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-2.1.0/README.rst 
new/flake8-quotes-3.0.0/README.rst
--- old/flake8-quotes-2.1.0/README.rst  2019-08-01 22:36:57.0 +0200
+++ new/flake8-quotes-3.0.0/README.rst  2019-11-04 05:56:06.0 +0100
@@ -74,6 +74,7 @@
 
 .. code:: ini
 
+[flake8]
 inline-quotes = "
 # We also support "double" and "single"
 # inline-quotes = double
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-2.1.0/flake8_quotes/__about__.py 
new/flake8-quotes-3.0.0/flake8_quotes/__about__.py
--- old/flake8-quotes-2.1.0/flake8_quotes/__about__.py  2019-08-01 
22:37:19.0 +0200
+++ new/flake8-quotes-3.0.0/flake8_quotes/__about__.py  2020-03-25 
21:43:39.0 +0100
@@ -1 +1 @@
-__version__ = '2.1.0'
+__version__ = '3.0.0'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 

commit python-flake8-quotes for openSUSE:Factory

2019-08-05 Thread root
Hello community,

here is the log from the commit of package python-flake8-quotes for 
openSUSE:Factory checked in at 2019-08-05 10:42:07

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


Package is "python-flake8-quotes"

Mon Aug  5 10:42:07 2019 rev:4 rq:720878 version:2.1.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-flake8-quotes/python-flake8-quotes.changes
2019-05-22 11:17:43.946461882 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-quotes.new.4126/python-flake8-quotes.changes
  2019-08-05 10:42:23.731291838 +0200
@@ -1,0 +2,9 @@
+Sat Aug  3 14:27:22 UTC 2019 - Arun Persaud 
+
+- specfile:
+  * be more specifc in %files section
+
+- update to version 2.1.0:
+  * List the defined codes in the README (#85)
+
+---

Old:

  flake8-quotes-2.0.1.tar.gz

New:

  flake8-quotes-2.1.0.tar.gz



Other differences:
--
++ python-flake8-quotes.spec ++
--- /var/tmp/diff_new_pack.DJ66tK/_old  2019-08-05 10:42:24.111291794 +0200
+++ /var/tmp/diff_new_pack.DJ66tK/_new  2019-08-05 10:42:24.111291794 +0200
@@ -19,12 +19,12 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_without  test
 Name:   python-flake8-quotes
-Version:2.0.1
+Version:2.1.0
 Release:0
 Summary:Flake8 lint for quotes
 License:MIT
 Group:  Development/Languages/Python
-URL:http://github.com/zheller/flake8-quotes/
+URL:https://github.com/zheller/flake8-quotes/
 Source: 
https://files.pythonhosted.org/packages/source/f/flake8-quotes/flake8-quotes-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
@@ -59,6 +59,9 @@
 %files %{python_files}
 %doc README.rst
 %license LICENSE
-%{python_sitelib}/*
+%dir %{python_sitelib}/flake8_quotes
+%{python_sitelib}/flake8_quotes/*
+%dir %{python_sitelib}/flake8_quotes-%{version}-py*.egg-info
+%{python_sitelib}/flake8_quotes-%{version}-py*.egg-info
 
 %changelog

++ flake8-quotes-2.0.1.tar.gz -> flake8-quotes-2.1.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-2.0.1/PKG-INFO 
new/flake8-quotes-2.1.0/PKG-INFO
--- old/flake8-quotes-2.0.1/PKG-INFO2019-04-24 09:49:37.0 +0200
+++ new/flake8-quotes-2.1.0/PKG-INFO2019-08-01 22:37:29.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: flake8-quotes
-Version: 2.0.1
+Version: 2.1.0
 Summary: Flake8 lint for quotes.
 Home-page: http://github.com/zheller/flake8-quotes/
 Author: Zachary Wright Heller
@@ -36,14 +36,25 @@
 Warnings
 
 
-This package adds one flake8 warning ```Q0```.
-You might want to enable this warning inside `flake8` configuration 
file.
-Typically that will be `.flake8` inside the root folder of your 
project.
+This package adds flake8 warnings with the prefix ``Q0``. You might 
want to
+enable this warning inside your flake8 configuration file. Typically 
that
+will be ``.flake8`` inside the root folder of your project.
 
 .. code:: ini
 
 select = Q0
 
+The current set of warnings is:
+
+ 
=
+Code Description
+ 
-
+Q000 Remove bad quotes
+Q001 Remove bad quotes from multiline string
+Q002 Remove bad quotes from docstring
+Q003 Change outer quotes to avoid escaping inner quotes
+ 
=
+
 Configuration
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-2.0.1/README.rst 
new/flake8-quotes-2.1.0/README.rst
--- old/flake8-quotes-2.0.1/README.rst  2019-04-17 01:48:28.0 +0200
+++ new/flake8-quotes-2.1.0/README.rst  2019-08-01 22:36:57.0 +0200
@@ -28,14 +28,25 @@
 Warnings
 
 
-This package adds one flake8 warning ```Q0```.
-You might want to enable this warning inside `flake8` configuration file.
-Typically that will be `.flake8` inside the root folder of your project.
+This package adds flake8 warnings with the prefix ``Q0``. You might want to
+enable this warning inside your flake8 configuration file. Typically that
+will be ``.flake8`` inside the root folder of your project.
 
 .. code:: ini
 
 select = Q0
 
+The current set of 

commit python-flake8-quotes for openSUSE:Factory

2019-05-22 Thread root
Hello community,

here is the log from the commit of package python-flake8-quotes for 
openSUSE:Factory checked in at 2019-05-22 11:17:38

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


Package is "python-flake8-quotes"

Wed May 22 11:17:38 2019 rev:3 rq:704521 version:2.0.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-flake8-quotes/python-flake8-quotes.changes
2018-12-13 19:44:45.816987656 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-quotes.new.5148/python-flake8-quotes.changes
  2019-05-22 11:17:43.946461882 +0200
@@ -1,0 +2,9 @@
+Tue May 21 11:52:58 UTC 2019 - Marketa Calabkova 
+
+- Update to version 2.0.1
+  * We automatically encourage avoiding escaping quotes as per 
+PEP 8. To disable this, use --no-avoid-escape (can be used 
+in configuration file via avoid-escape).
+  * Add note about warning.
+
+---

Old:

  flake8-quotes-1.0.0.tar.gz

New:

  flake8-quotes-2.0.1.tar.gz



Other differences:
--
++ python-flake8-quotes.spec ++
--- /var/tmp/diff_new_pack.PeZIsr/_old  2019-05-22 11:17:44.778461626 +0200
+++ /var/tmp/diff_new_pack.PeZIsr/_new  2019-05-22 11:17:44.778461626 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-flake8-quotes
 #
-# 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
@@ -17,25 +17,24 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
-# Tests require access to stdin
-%bcond_with test
+%bcond_without  test
 Name:   python-flake8-quotes
-Version:1.0.0
+Version:2.0.1
 Release:0
 Summary:Flake8 lint for quotes
 License:MIT
 Group:  Development/Languages/Python
-Url:http://github.com/zheller/flake8-quotes/
+URL:http://github.com/zheller/flake8-quotes/
 Source: 
https://files.pythonhosted.org/packages/source/f/flake8-quotes/flake8-quotes-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
+Requires:   python-flake8 >= 3.3.0
+BuildArch:  noarch
 %if %{with test}
-BuildRequires:  %{python_module flake8}
+BuildRequires:  %{python_module flake8 >= 3.3.0}
+BuildRequires:  %{python_module pytest}
 %endif
-Requires:   python-flake8
-BuildArch:  noarch
-
 %python_subpackages
 
 %description
@@ -53,11 +52,11 @@
 
 %if %{with test}
 %check
-%python_exec setup.py test
+# Tests require access to stdin
+%pytest -s -k "not test_stdin" test
 %endif
 
 %files %{python_files}
-%defattr(-,root,root,-)
 %doc README.rst
 %license LICENSE
 %{python_sitelib}/*

++ flake8-quotes-1.0.0.tar.gz -> flake8-quotes-2.0.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-1.0.0/PKG-INFO 
new/flake8-quotes-2.0.1/PKG-INFO
--- old/flake8-quotes-1.0.0/PKG-INFO2018-04-08 22:31:39.0 +0200
+++ new/flake8-quotes-2.0.1/PKG-INFO2019-04-24 09:49:37.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: flake8-quotes
-Version: 1.0.0
+Version: 2.0.1
 Summary: Flake8 lint for quotes.
 Home-page: http://github.com/zheller/flake8-quotes/
 Author: Zachary Wright Heller
@@ -13,6 +13,10 @@
:target: https://travis-ci.org/zheller/flake8-quotes
:alt: Build Status
 
+Major update in 2.0.0
+-
+We automatically encourage avoiding escaping quotes as per `PEP 8 
`_. To disable this, 
use ``--no-avoid-escape`` (can be used in configuration file via 
``avoid-escape``).
+
 Deprecation notice in 0.3.0
 ---
 To anticipate multiline support, we are renaming ``--quotes`` to 
``--inline-quotes``. Please adjust your configurations appropriately.
@@ -29,6 +33,17 @@
 Now you don't need to worry about people like @sectioneight constantly
 complaining that you are using double-quotes and not single-quotes.
 
+Warnings
+
+
+This package adds one flake8 warning ```Q0```.
+You might want to enable this warning inside `flake8` configuration 
file.
+Typically that will be `.flake8` inside the root folder of your 
project.
+
+.. code:: ini
+
+select = Q0
+
 Configuration
 

commit python-flake8-quotes for openSUSE:Factory

2018-12-13 Thread root
Hello community,

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

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


Package is "python-flake8-quotes"

Thu Dec 13 19:44:42 2018 rev:2 rq:654058 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-flake8-quotes/python-flake8-quotes.changes
2018-05-29 16:47:04.887284618 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-quotes.new.28833/python-flake8-quotes.changes
 2018-12-13 19:44:45.816987656 +0100
@@ -1,0 +2,5 @@
+Tue Dec  4 12:48:07 UTC 2018 - Matej Cepl 
+
+- Remove superfluous devel dependency for noarch package
+
+---



Other differences:
--
++ python-flake8-quotes.spec ++
--- /var/tmp/diff_new_pack.6rLVle/_old  2018-12-13 19:44:46.328986989 +0100
+++ /var/tmp/diff_new_pack.6rLVle/_new  2018-12-13 19:44:46.332986983 +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/
 #
 
 
@@ -27,7 +27,6 @@
 Group:  Development/Languages/Python
 Url:http://github.com/zheller/flake8-quotes/
 Source: 
https://files.pythonhosted.org/packages/source/f/flake8-quotes/flake8-quotes-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros