Hello community, here is the log from the commit of package python-flake8 for openSUSE:Factory checked in at 2018-11-09 07:50:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-flake8 (Old) and /work/SRC/openSUSE:Factory/.python-flake8.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-flake8" Fri Nov 9 07:50:28 2018 rev:20 rq:646015 version:3.6.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-flake8/python-flake8.changes 2018-09-10 12:31:13.338708814 +0200 +++ /work/SRC/openSUSE:Factory/.python-flake8.new/python-flake8.changes 2018-11-09 07:50:33.647977443 +0100 @@ -1,0 +2,44 @@ +Thu Nov 1 22:46:04 UTC 2018 - Arun Persaud <[email protected]> + +- specfile: + * be more specific in %files section + * remove two patches that got included upstream: + + fix_pycodestyle_240.patch + + python-flake8-3.5.0-pyflakes-2.0.0.patch + +- update to version 3.6.0: + * New Dependency Information + + pycodestyle has been updated to >= 2.4.0, < 2.5.0 (See also + GitLab#381, GitLab#415, GitLab!212, GitLab!230, GitLab!231) + + Pyflakes has been updated to >= 2.0.0, < 2.1.0 (See also + GitLab#422, GitLab!239) + + flake8 requires python 2.x >= 2.7 or python 3.x >= 3.4 (See also + GitLab!225) + * Features + + Add paths to allow local plugins to exist outside of sys.path + (See also GitLab#379, GitLab!211) + + Copy setup.cfg files to the temporary git hook execution + directory (See also GitLab!215) + + Only skip a file if # flake8: noqa is on a line by itself (See + also GitLab#453, GitLab!219) + + Provide a better user experience for broken plugins (See also + GitLab!221) + + Report E902 when a file passed on the command line does not + exist (See also GitLab#405, GitLab!227) + + Add --extend-ignore for extending the default ignore instead of + overriding it (See also GitLab#365, GitLab!233) + * Bugs Fixed + + Respect a formatter's newline setting when printing (See also + GitLab!222) + + Fix leaking of processes in the legacy api (See also GitLab#410, + GitLab!228) + + Fix a SyntaxWarning for an invalid escape sequence (See also + GitLab!244) + + Fix DeprecationWarning due to import of abc classes from the + collections module (See also GitLab!249) + + Defer setuptools import to improve flake8 startup time (See also + GitLab!250) + + Fix inconsistent line endings in FileProcessor.lines when + running under python 3.x (See also GitLab#457, GitLab!255) + +------------------------------------------------------------------- Old: ---- fix_pycodestyle_240.patch flake8-3.5.0.tar.gz python-flake8-3.5.0-pyflakes-2.0.0.patch New: ---- flake8-3.6.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-flake8.spec ++++++ --- /var/tmp/diff_new_pack.BQ0rBU/_old 2018-11-09 07:50:36.107974602 +0100 +++ /var/tmp/diff_new_pack.BQ0rBU/_new 2018-11-09 07:50:36.107974602 +0100 @@ -12,24 +12,21 @@ # 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/ # %{?!python_module:%define python_module() python-%{**} python3-%{**}} %bcond_without python2 Name: python-flake8 -Version: 3.5.0 +Version: 3.6.0 Release: 0 Summary: Modular source code checker: pep8, pyflakes and co License: MIT Group: Development/Languages/Python URL: https://gitlab.com/pycqa/flake8 Source: https://files.pythonhosted.org/packages/source/f/flake8/flake8-%{version}.tar.gz -#PATCH-FIX-UPSTREAM fix_pycodestyle_240.patch -Patch0: fix_pycodestyle_240.patch -Patch1: python-flake8-3.5.0-pyflakes-2.0.0.patch -Patch2: remove_mock_dependency.patch +Patch0: remove_mock_dependency.patch BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros @@ -91,6 +88,8 @@ %doc README.rst %license LICENSE %python_alternative %{_bindir}/flake8 -%{python_sitelib}/* +%dir %{python_sitelib}/flake8 +%{python_sitelib}/flake8/* +%{python_sitelib}/flake8-%{version}-py*.egg-info %changelog ++++++ flake8-3.5.0.tar.gz -> flake8-3.6.0.tar.gz ++++++ ++++ 5320 lines of diff (skipped) ++++++ remove_mock_dependency.patch ++++++ --- /var/tmp/diff_new_pack.BQ0rBU/_old 2018-11-09 07:50:36.227974464 +0100 +++ /var/tmp/diff_new_pack.BQ0rBU/_new 2018-11-09 07:50:36.227974464 +0100 @@ -210,7 +210,7 @@ +++ b/tests/unit/test_plugin_type_manager.py @@ -1,7 +1,10 @@ """Tests for flake8.plugins.manager.PluginTypeManager.""" - import collections + import sys -import mock +try:
