commit python3-flake8 for openSUSE:Factory

2017-02-17 Thread root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2017-02-18 03:18:52

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


Package is "python3-flake8"

Changes:

--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes
2016-09-25 14:42:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes   
2017-02-18 03:18:53.942046903 +0100
@@ -1,0 +2,78 @@
+Wed Feb 15 14:39:03 UTC 2017 - aloi...@gmx.com
+
+- Update to version 3.3.0
+  * Add support for Python 3.6 (via dependencies). Note Flake8 
+does not guarantee that all plugins will support Python 3.6.
+  * Added unique error codes for all missing PyFlakes 
+messages. (14 new codes, see "Error / Violation Codes")
+  * Dramatically improve the performance of Flake8. (See also 
+GitLab!156)
+  * Display the local file path instead of the temporary file 
+path when using the git hook. (See also GitLab#244)
+  * Add methods to Report class that will be called when 
+Flake8 starts and finishes processing a file. (See also
+GitLab#251)
+  * Fix problem where hooks should only check *.py files. (See 
+also GitLab#268)
+  * Fix handling of SyntaxErrors that do not include physical
+line information. (See also GitLab#279)
+  * Update upper bound on PyFlakes to allow for PyFlakes 
+1.5.0.  (See also GitLab#290)
+  * Update setuptools integration to less eagerly deduplicate 
+packages. (See also GitLab#295)
+  * Force flake8 --version to be repeatable between 
+invocations. (See also GitLab#297)
+
+---
+Tue Nov 15 03:17:37 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * removed both patches (allow_pyflakes_1_3_0.patch, 
move_pytest_options_to_pytest_ini.patch)
+both included upstream
+
+- update to version 3.2.0:
+  * Allow for pycodestyle 2.2.0 which fixes a bug in E305 (See also
+GitLab#256)
+
+- changes from version 3.1.1:
+  * Do not attempt to install/distribute a man file with the Python
+package; leave this for others to do. (See also GitLab#254)
+  * Fix packaging bug where wheel version constraints specified in
+setup.cfg did not match the constraints in setup.py. (See also
+GitLab#255)
+
+- changes from version 3.1.0:
+  * Add --bug-report flag to make issue reporters' lives easier.
+  * Collect configuration files from the current directory when using
+our Git hook. (See also GitLab#210, GitLab#218, GitLab#223)
+  * Avoid unhandled exceptions when dealing with SyntaxErrors. (See
+also GitLab#214, GitLab#238)
+  * Exit early if the value for --diff is empty. (See also GitLab#226)
+  * Handle empty --stdin-display-name values. (See also GitLab#235)
+  * Properly report the column number of Syntax Errors. We were
+assuming that all reports of column numbers were 0-indexed,
+however, SyntaxErrors report the column number as 1-indexed. This
+caused us to report a column number that was 1 past the actual
+position. Further, when combined with SyntaxErrors that occur at a
+newline, this caused the position to be visually off by two. (See
+also GitLab#237)
+  * Fix the behaviour of --enable-extenstions. Previously, items
+specified here were still ignored due to the fact that the
+off-by-default extension codes were being left in the ignore
+list. (See also GitLab#239)
+  * Fix problems around --select and --ignore behaviour that prevented
+codes that were neither explicitly selected nor explicitly ignored
+from being reported. (See also GitLab#242)
+  * Truly be quiet when the user specifies -q one or more
+times. Previously, we were showing the if the user specified -q
+and --show-source. We have fixed this bug. (See also GitLab#245)
+  * Add new File Processor attribute, previous_unindented_logical_line
+to accomodate pycodestyle 2.1.0. (See also GitLab#246)
+  * When something goes wrong, exit non-zero. (See also GitLab#248,
+GitLab#209)
+  * Add --tee as an option to allow use of --output-file and printing
+to standard out.
+  * Allow the git plugin to actually be lazy when collecting files.
+  * Allow for pycodestyle 2.1 series and pyflakes 1.3 series.
+
+---

Old:

  allow_pyflakes_1_3_0.patch
  flake8-3.0.4.tar.gz
  move_pytest_options_to_pytest_ini.patch

New:

  flake8-3.3.0.tar.gz



Other differences:
--
++ python3-flake8.spec ++
--- /var/tmp/diff_new_pack.xgHic5/_old  2017-02-18 03:18:54.481970644 +0100
+++ /var/tmp/diff_new_pack.xgHic5/_new  2017-02-18 

commit python3-flake8 for openSUSE:Factory

2016-09-25 Thread h_root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2016-09-25 14:42:15

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


Package is "python3-flake8"

Changes:

--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes
2016-08-18 09:17:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes   
2016-09-25 14:42:17.0 +0200
@@ -1,0 +2,79 @@
+Thu Sep 22 15:17:52 UTC 2016 - toddrme2...@gmail.com
+
+- Update to 3.0.4
+  * Side-step a Pickling Error when using Flake8 with multiprocessing on Unix
+systems. (See also `GitLab#164`_)
+  * Fix an Attribute Error raised when dealing with Invalid Syntax. (See also
+`GitLab#203`_)
+  * Fix an unhandled Syntax Error when tokenizing files. (See also
+`GitLab#205`_)
+- Update to 3.0.3
+  * Disable ``--jobs`` for any version of Python on Windows.
+(See also `this Python bug report`_)
+  * Raise exception when entry_point in plugin not callable.
+This raises an informative error when a plugin fails to load because its
+entry_point is not callable, which can happen with a plugin which is buggy 
or
+not updated for the current version of flake8. This is nicer than raising a
+`PicklingError` about failing to pickle a module (See also `GitLab#164`_)
+  * Fix ``# noqa`` comments followed by a ``:`` and explanation broken by
+3.0.0 (See also `GitLab#178`_)
+  * Always open our output file in append mode so we do not overwrite log
+messages. (See also `GitLab#193`_)
+  * When normalizing path values read from configuration, keep in context the
+directory where the configuration was found so that relative paths work.
+(See also `GitLab#194`_)
+  * Fix issue where users were unable to ignore plugin errors that were on
+by default. (See also `GitLab#195`_)
+  * Fix our legacy API StyleGuide's ``init_report`` method to actually override
+the previous formatter. (See also `GitLab#200`_)
+- Update to 3.0.2
+  * Fix local config file discovery.  (See also `GitLab#181`_)
+  * Fix indexing of column numbers. We accidentally were starting column 
indices
+at 0 instead of 1.
+  * Fix regression in handling of errors like E402 that rely on a combination 
of
+attributes. (See also `GitLab#186`_)
+- Update to 3.0.1
+  * Fix regression in handling of ``# noqa`` for multiline strings.
+(See also `GitLab#177`_)
+  * Fix regression in handling of ``--output-file`` when not also using
+``--verbose``. (See also `GitLab#180`_)
+  * Fix regression in handling of ``--quiet``. (See also `GitLab#180`_)
+  * Fix regression in handling of ``--statistics``. (See also `GitLab#180`_)
+- Update to 3.0.0
+  * Rewrite our documentation from scratch! (http://flake8.pycqa.org)
+  * Drop explicit support for Pythons 2.6, 3.2, and 3.3.
+  * Remove dependence on pep8/pycodestyle for file processing, plugin
+dispatching, and more. We now control all of this while keeping backwards
+compatibility.
+  * ``--select`` and ``--ignore`` can now both be specified and try to find the
+most specific rule from each. For example, if you do ``--select E --ignore
+E123`` then we will report everything that starts with ``E`` except for
+``E123``. Previously, you would have had to do ``--ignore E123,F,W`` which
+will also still work, but the former should be far more intuitive.
+  * Add support for in-line ``# noqa`` comments to specify **only** the error
+codes to be ignored, e.g., ``# noqa: E123,W503``
+  * Add entry-point for formatters as well as a base class that new formatters
+can inherit from. See the documentation for more details.
+  * Add detailed verbose output using the standard library logging module.
+  * Enhance our usage of optparse for plugin developers by adding new 
parameters
+to the ``add_option`` that plugins use to register new options.
+  * Update ``--install-hook`` to require the name of version control system 
hook
+you wish to install a Flake8.
+  * Stop checking sub-directories more than once via the setuptools command
+  * When passing a file on standard-in, allow the caller to specify
+``--stdin-display-name`` so the output is properly formatted
+  * The Git hook now uses ``sys.executable`` to format the shebang line.
+This allows Flake8 to install a hook script from a virtualenv that points 
to
+that virtualenv's Flake8 as opposed to a global one (without the virtualenv
+being sourced).
+  * Print results in a deterministic and consistent ordering when used with
+multiprocessing
+  * When using ``--count``, the output is no longer written to stderr.
+  * AST plugins can either be functions or classes and all plugins can now
+

commit python3-flake8 for openSUSE:Factory

2016-08-18 Thread h_root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2016-08-18 09:17:45

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


Package is "python3-flake8"

Changes:

--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes
2016-07-14 09:45:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes   
2016-08-18 09:17:46.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug 15 14:51:56 UTC 2016 - toddrme2...@gmail.com
+
+- Fix update-alternatives implementation.
+
+---



Other differences:
--
++ python3-flake8.spec ++
--- /var/tmp/diff_new_pack.VjeQSX/_old  2016-08-18 09:17:47.0 +0200
+++ /var/tmp/diff_new_pack.VjeQSX/_new  2016-08-18 09:17:47.0 +0200
@@ -36,7 +36,7 @@
 Requires:   python3-pycodestyle >= 1.4.3
 Requires:   python3-pyflakes >= 0.6.1
 Requires(post): update-alternatives
-Requires(postun): update-alternatives
+Requires(preun): update-alternatives
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -62,16 +62,14 @@
 mkdir -p %{buildroot}%{_sysconfdir}/alternatives
 mv %{buildroot}%{_bindir}/flake8 %{buildroot}%{_bindir}/flake8-%{py3_ver}
 ln -s -f %{_sysconfdir}/alternatives/flake8 %{buildroot}%{_bindir}/flake8
-# create a dummy target for /etc/alternatives/flake8
-touch %{buildroot}%{_sysconfdir}/alternatives/flake8
 
 %post
-"%_sbindir/update-alternatives" \
+%_sbindir/update-alternatives \
--install %{_bindir}/flake8 flake8 %{_bindir}/flake8-%{py3_ver} 30
 
-%postun
+%preun
 if [ $1 -eq 0 ] ; then
-"%_sbindir/update-alternatives" --remove flake8 
%{_bindir}/flake8-%{py3_ver}
+%_sbindir/update-alternatives --remove flake8 %{_bindir}/flake8-%{py3_ver}
 fi
 
 %check




commit python3-flake8 for openSUSE:Factory

2016-07-14 Thread h_root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2016-07-14 09:45:27

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


Package is "python3-flake8"

Changes:

--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes
2016-05-25 21:28:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes   
2016-07-14 09:45:31.0 +0200
@@ -1,0 +2,24 @@
+Thu Jul  7 15:23:09 UTC 2016 - toddrme2...@gmail.com
+
+- Update to 2.6.2
+  * Bug: Fix packaging error during release process.
+- Update to 2.6.1
+  * Bug: Update the config files to search for to include setup.cfg and
+tox.ini. This was broken in 2.5.5 when we stopped passing
+config_file to our Style Guide
+- Update to 2.6.0
+  * Requirements Change: Switch to pycodestyle as all future pep8 releases
+will use that package name
+  * Improvement: Allow for Windows users on select versions of Python to
+use --jobs and multiprocessing
+  * Improvement: Update bounds on McCabe
+  * Improvement: Update bounds on PyFlakes and blacklist known broken
+versions
+  * Improvement: Handle new PyFlakes warning with a new error code: F405
+- Update to version 2.5.5
+  * Bug: Fix setuptools integration when parsing config files
+  * Bug: Don't pass the user's config path as the config_file when creating a
+StyleGuide
+- Remove obsolete allow_pyflakes_1.1.patch
+
+---

Old:

  allow_pyflakes_1.1.patch
  flake8-2.5.4.tar.gz

New:

  flake8-2.6.2.tar.gz



Other differences:
--
++ python3-flake8.spec ++
--- /var/tmp/diff_new_pack.m5tGea/_old  2016-07-14 09:45:32.0 +0200
+++ /var/tmp/diff_new_pack.m5tGea/_new  2016-07-14 09:45:32.0 +0200
@@ -17,25 +17,23 @@
 
 
 Name:   python3-flake8
-Version:2.5.4
+Version:2.6.2
 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 allow_pyflakes_1.1.patch - support for python3-pyflakes 
1.1 - https://gitlab.com/pycqa/flake8/merge_requests/55
-Patch0: allow_pyflakes_1.1.patch
 BuildRequires:  python3-devel
 BuildRequires:  python3-distribute
 BuildRequires:  python3-mccabe >= 0.2
-BuildRequires:  python3-pep8 >= 1.4.3
+BuildRequires:  python3-pycodestyle >= 1.4.3
 BuildRequires:  python3-pyflakes >= 0.6.1
 # Test requirements:
 BuildRequires:  python3-mock
 BuildRequires:  python3-nose
 Requires:   python3-mccabe >= 0.2
-Requires:   python3-pep8 >= 1.4.3
+Requires:   python3-pycodestyle >= 1.4.3
 Requires:   python3-pyflakes >= 0.6.1
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
@@ -53,7 +51,6 @@
 
 %prep
 %setup -q -n flake8-%{version}
-%patch0 -p1
 
 %build
 python3 setup.py build

++ flake8-2.5.4.tar.gz -> flake8-2.6.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.5.4/CHANGES.rst new/flake8-2.6.2/CHANGES.rst
--- old/flake8-2.5.4/CHANGES.rst2016-02-11 18:53:24.0 +0100
+++ new/flake8-2.6.2/CHANGES.rst2016-06-25 19:10:57.0 +0200
@@ -1,6 +1,42 @@
 CHANGES
 ===
 
+2.6.2 - 2016-06-25
+--
+
+- **Bug** Fix packaging error during release process.
+
+2.6.1 - 2016-06-25
+--
+
+- **Bug** Update the config files to search for to include ``setup.cfg`` and
+  ``tox.ini``. This was broken in 2.5.5 when we stopped passing
+  ``config_file`` to our Style Guide
+
+2.6.0 - 2016-06-15
+--
+
+- **Requirements Change** Switch to pycodestyle as all future pep8 releases
+  will use that package name
+
+- **Improvement** Allow for Windows users on *select* versions of Python to
+  use ``--jobs`` and multiprocessing
+
+- **Improvement** Update bounds on McCabe
+
+- **Improvement** Update bounds on PyFlakes and blacklist known broken
+  versions
+
+- **Improvement** Handle new PyFlakes warning with a new error code: F405
+
+2.5.5 - 2016-06-14
+--
+
+- **Bug** Fix setuptools integration when parsing config files
+
+- **Bug** Don't pass the user's config path as the config_file when creating a
+  StyleGuide
+
 2.5.4 - 2016-02-11
 --
 
@@ -105,7 +141,7 @@
 .. _GitLab#35: https://gitlab.com/pycqa/flake8/issues/35
 .. _GitLab!18: https://gitlab.com/pycqa/flake8/merge_requests/18
 .. _GitLab!20: 

commit python3-flake8 for openSUSE:Factory

2016-05-25 Thread h_root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2016-05-25 21:28:08

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


Package is "python3-flake8"

Changes:

--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes
2016-03-09 16:48:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes   
2016-05-25 21:28:11.0 +0200
@@ -1,0 +2,13 @@
+Fri May 20 19:32:44 UTC 2016 - toddrme2...@gmail.com
+
+- Remove maximum version test on allow_pyflakes_1.1.patch 
+
+---
+Sun May  8 07:15:47 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * changed to https for source url
+  * updated source url to files.pythonhosted.org
+
+
+---



Other differences:
--
++ python3-flake8.spec ++
--- /var/tmp/diff_new_pack.HEfGqF/_old  2016-05-25 21:28:12.0 +0200
+++ /var/tmp/diff_new_pack.HEfGqF/_new  2016-05-25 21:28:12.0 +0200
@@ -23,7 +23,7 @@
 License:MIT
 Group:  Development/Languages/Python
 Url:https://gitlab.com/pycqa/flake8
-Source: 
http://pypi.python.org/packages/source/f/flake8/flake8-%{version}.tar.gz
+Source: 
https://files.pythonhosted.org/packages/source/f/flake8/flake8-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM allow_pyflakes_1.1.patch - support for python3-pyflakes 
1.1 - https://gitlab.com/pycqa/flake8/merge_requests/55
 Patch0: allow_pyflakes_1.1.patch
 BuildRequires:  python3-devel

++ allow_pyflakes_1.1.patch ++
--- /var/tmp/diff_new_pack.HEfGqF/_old  2016-05-25 21:28:12.0 +0200
+++ /var/tmp/diff_new_pack.HEfGqF/_new  2016-05-25 21:28:12.0 +0200
@@ -16,7 +16,7 @@
  packages=["flake8", "flake8.tests"],
  install_requires=[
 -"pyflakes >= 0.8.1, < 1.1",
-+"pyflakes >= 0.8.1, < 1.2",
++"pyflakes >= 0.8.1",
  "pep8 >= 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2",
  "mccabe >= 0.2.1, < 0.5",
  ],




commit python3-flake8 for openSUSE:Factory

2016-03-09 Thread h_root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2016-03-09 15:17:25

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


Package is "python3-flake8"

Changes:

--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes
2016-02-16 09:19:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes   
2016-03-09 16:48:48.0 +0100
@@ -1,0 +2,7 @@
+Mon Mar  7 16:45:54 UTC 2016 - toddrme2...@gmail.com
+
+- Add allow_pyflakes_1.1.patch
+  Fixes building with python3-pyflakes 1.1
+  From: https://gitlab.com/pycqa/flake8/merge_requests/55
+
+---

New:

  allow_pyflakes_1.1.patch



Other differences:
--
++ python3-flake8.spec ++
--- /var/tmp/diff_new_pack.V1bZSy/_old  2016-03-09 16:48:49.0 +0100
+++ /var/tmp/diff_new_pack.V1bZSy/_new  2016-03-09 16:48:49.0 +0100
@@ -24,6 +24,8 @@
 Group:  Development/Languages/Python
 Url:https://gitlab.com/pycqa/flake8
 Source: 
http://pypi.python.org/packages/source/f/flake8/flake8-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM allow_pyflakes_1.1.patch - support for python3-pyflakes 
1.1 - https://gitlab.com/pycqa/flake8/merge_requests/55
+Patch0: allow_pyflakes_1.1.patch
 BuildRequires:  python3-devel
 BuildRequires:  python3-distribute
 BuildRequires:  python3-mccabe >= 0.2
@@ -51,6 +53,7 @@
 
 %prep
 %setup -q -n flake8-%{version}
+%patch0 -p1
 
 %build
 python3 setup.py build

++ allow_pyflakes_1.1.patch ++
>From d9358bb08276a71fdc6c6d80f958b7595029b5d8 Mon Sep 17 00:00:00 2001
From: Felix Yan 
Date: Wed, 2 Mar 2016 03:56:34 +
Subject: [PATCH] Allow pyflakes 1.1

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index fab5e86..40372e3 100644
--- a/setup.py
+++ b/setup.py
@@ -49,7 +49,7 @@ setup(
 url="https://gitlab.com/pycqa/flake8;,
 packages=["flake8", "flake8.tests"],
 install_requires=[
-"pyflakes >= 0.8.1, < 1.1",
+"pyflakes >= 0.8.1, < 1.2",
 "pep8 >= 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2",
 "mccabe >= 0.2.1, < 0.5",
 ],
--
libgit2 0.23.0




commit python3-flake8 for openSUSE:Factory

2016-02-16 Thread h_root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2016-02-16 09:19:07

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


Package is "python3-flake8"

Changes:

--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes
2016-02-01 19:57:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes   
2016-02-16 09:19:09.0 +0100
@@ -1,0 +2,11 @@
+Fri Feb 12 05:04:25 UTC 2016 - a...@gmx.de
+
+
+- update to version 2.5.4:
+  * Bug Missed an attribute rename during the v2.5.3 release.
+
+- changes from version 2.5.3:
+  * Bug Actually parse output_file and enable_extensions from config
+files
+
+---

Old:

  flake8-2.5.2.tar.gz

New:

  flake8-2.5.4.tar.gz



Other differences:
--
++ python3-flake8.spec ++
--- /var/tmp/diff_new_pack.8HddW3/_old  2016-02-16 09:19:10.0 +0100
+++ /var/tmp/diff_new_pack.8HddW3/_new  2016-02-16 09:19:10.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-flake8
-Version:2.5.2
+Version:2.5.4
 Release:0
 Summary:Modular source code checker: pep8, pyflakes and co
 License:MIT

++ flake8-2.5.2.tar.gz -> flake8-2.5.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.5.2/CHANGES.rst new/flake8-2.5.4/CHANGES.rst
--- old/flake8-2.5.2/CHANGES.rst2016-01-30 15:49:10.0 +0100
+++ new/flake8-2.5.4/CHANGES.rst2016-02-11 18:53:24.0 +0100
@@ -1,6 +1,17 @@
 CHANGES
 ===
 
+2.5.4 - 2016-02-11
+--
+
+- **Bug** Missed an attribute rename during the v2.5.3 release.
+
+2.5.3 - 2016-02-11
+--
+
+- **Bug** Actually parse ``output_file`` and ``enable_extensions`` from config
+  files
+
 2.5.2 - 2016-01-30
 --
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.5.2/PKG-INFO new/flake8-2.5.4/PKG-INFO
--- old/flake8-2.5.2/PKG-INFO   2016-01-30 15:50:12.0 +0100
+++ new/flake8-2.5.4/PKG-INFO   2016-02-11 18:54:20.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: flake8
-Version: 2.5.2
+Version: 2.5.4
 Summary: the modular source code checker: pep8, pyflakes and co
 Home-page: https://gitlab.com/pycqa/flake8
 Author: Ian Cordasco
@@ -108,6 +108,17 @@
 CHANGES
 ===
 
+2.5.4 - 2016-02-11
+--
+
+- **Bug** Missed an attribute rename during the v2.5.3 release.
+
+2.5.3 - 2016-02-11
+--
+
+- **Bug** Actually parse ``output_file`` and ``enable_extensions`` 
from config
+  files
+
 2.5.2 - 2016-01-30
 --
 
Files old/flake8-2.5.2/flake8/.hooks.py.swp and 
new/flake8-2.5.4/flake8/.hooks.py.swp differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.5.2/flake8/__init__.py 
new/flake8-2.5.4/flake8/__init__.py
--- old/flake8-2.5.2/flake8/__init__.py 2016-01-30 15:47:04.0 +0100
+++ new/flake8-2.5.4/flake8/__init__.py 2016-02-11 18:53:31.0 +0100
@@ -1 +1 @@
-__version__ = '2.5.2'
+__version__ = '2.5.4'
Files old/flake8-2.5.2/flake8/__init__.pyc and 
new/flake8-2.5.4/flake8/__init__.pyc differ
Files old/flake8-2.5.2/flake8/__pycache__/__init__.cpython-34.pyc and 
new/flake8-2.5.4/flake8/__pycache__/__init__.cpython-34.pyc differ
Files old/flake8-2.5.2/flake8/__pycache__/_pyflakes.cpython-34.pyc and 
new/flake8-2.5.4/flake8/__pycache__/_pyflakes.cpython-34.pyc differ
Files old/flake8-2.5.2/flake8/__pycache__/callbacks.cpython-34.pyc and 
new/flake8-2.5.4/flake8/__pycache__/callbacks.cpython-34.pyc differ
Files old/flake8-2.5.2/flake8/__pycache__/compat.cpython-34.pyc and 
new/flake8-2.5.4/flake8/__pycache__/compat.cpython-34.pyc differ
Files old/flake8-2.5.2/flake8/__pycache__/engine.cpython-34.pyc and 
new/flake8-2.5.4/flake8/__pycache__/engine.cpython-34.pyc differ
Files old/flake8-2.5.2/flake8/__pycache__/hooks.cpython-34.pyc and 
new/flake8-2.5.4/flake8/__pycache__/hooks.cpython-34.pyc differ
Files old/flake8-2.5.2/flake8/__pycache__/main.cpython-34.pyc and 
new/flake8-2.5.4/flake8/__pycache__/main.cpython-34.pyc differ
Files old/flake8-2.5.2/flake8/__pycache__/reporter.cpython-34.pyc and 
new/flake8-2.5.4/flake8/__pycache__/reporter.cpython-34.pyc differ
Files old/flake8-2.5.2/flake8/__pycache__/util.cpython-34.pyc and 
new/flake8-2.5.4/flake8/__pycache__/util.cpython-34.pyc differ

commit python3-flake8 for openSUSE:Factory

2016-02-01 Thread h_root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2016-02-01 19:56:42

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


Package is "python3-flake8"

Changes:

--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes
2016-01-22 01:06:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes   
2016-02-01 19:57:13.0 +0100
@@ -1,0 +2,11 @@
+Sat Jan 30 17:44:20 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 2.5.2:
+  * Bug Parse output_file and enable_extensions from config files
+  * Improvement Raise upper bound on mccabe plugin to allow for
+version 0.4.0
+
+---

Old:

  flake8-2.5.1.tar.gz

New:

  flake8-2.5.2.tar.gz



Other differences:
--
++ python3-flake8.spec ++
--- /var/tmp/diff_new_pack.MoJRwV/_old  2016-02-01 19:57:13.0 +0100
+++ /var/tmp/diff_new_pack.MoJRwV/_new  2016-02-01 19:57:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-flake8
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,7 +17,7 @@
 
 
 Name:   python3-flake8
-Version:2.5.1
+Version:2.5.2
 Release:0
 Summary:Modular source code checker: pep8, pyflakes and co
 License:MIT

++ flake8-2.5.1.tar.gz -> flake8-2.5.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.5.1/CHANGES.rst new/flake8-2.5.2/CHANGES.rst
--- old/flake8-2.5.1/CHANGES.rst2015-12-08 05:55:08.0 +0100
+++ new/flake8-2.5.2/CHANGES.rst2016-01-30 15:49:10.0 +0100
@@ -1,7 +1,15 @@
 CHANGES
 ===
 
-2.5.1 - 2015-12-15
+2.5.2 - 2016-01-30
+--
+
+- **Bug** Parse ``output_file`` and ``enable_extensions`` from config files
+
+- **Improvement** Raise upper bound on mccabe plugin to allow for version
+  0.4.0
+
+2.5.1 - 2015-12-08
 --
 
 - **Bug** Properly look for ``.flake8`` in current working directory
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.5.1/PKG-INFO new/flake8-2.5.2/PKG-INFO
--- old/flake8-2.5.1/PKG-INFO   2015-12-08 05:56:57.0 +0100
+++ new/flake8-2.5.2/PKG-INFO   2016-01-30 15:50:12.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: flake8
-Version: 2.5.1
+Version: 2.5.2
 Summary: the modular source code checker: pep8, pyflakes and co
 Home-page: https://gitlab.com/pycqa/flake8
 Author: Ian Cordasco
@@ -65,6 +65,28 @@
 anything that goes beyond 10 is too complex.
 See https://en.wikipedia.org/wiki/Cyclomatic_complexity.
 
+
+Frequently Asked Questions
+==
+
+Why does flake8 pin the version of pep8?
+
+
+Version 1.6 of pep8 doesn't work properly with flake8.  Until pep8 
releases a
+version that works, flake8 pins the version of pep8 so that flake8 
will work as
+a whole.
+
+Is flake8 broken?
+-
+
+Flake8 combines two other projects that are significant on their own: 
pep8 and
+PyFlakes. If flake8 is doing something you don't like, it is quite 
likely that
+the problem lies in one of those other projects.  You can run them 
separately
+to see if they are the cause of your difficulties.  We greatly 
appreciate your
+efforts to diagnose the source of the problem before reporting bugs 
against
+flake8.
+
+
 Questions or Feedback
 =
 
@@ -86,7 +108,15 @@
 CHANGES
 ===
 
-2.5.1 - 2015-12-15
+2.5.2 - 2016-01-30
+--
+
+- **Bug** Parse ``output_file`` and ``enable_extensions`` from config 
files
+
+- **Improvement** Raise upper bound on mccabe plugin to allow for 
version
+  0.4.0
+
+2.5.1 - 2015-12-08
 --
 
 - **Bug** Properly look for ``.flake8`` in current working directory
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.5.1/README.rst new/flake8-2.5.2/README.rst

commit python3-flake8 for openSUSE:Factory

2016-01-21 Thread h_root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2016-01-21 23:42:17

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


Package is "python3-flake8"

Changes:

--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes
2015-01-10 23:05:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes   
2016-01-22 01:06:56.0 +0100
@@ -1,0 +2,38 @@
+Wed Jan 13 09:23:20 UTC 2016 - toddrme2...@gmail.com
+
+- Update to 2.5.1
+  * Bug Properly look for .flake8 in current working directory
+  * Bug Monkey-patch pep8.stdin_get_value to cache the actual value
+in stdin. This helps plugins relying on the function when run
+with multiprocessing.
+- Update to 2.5.0
+  * Improvement Raise cap on PyFlakes for Python 3.5 support
+  * Improvement Avoid deprecation warnings when loading extensions
+  * Improvement Separate logic to enable “off-by-default” extensions
+  * Bug Properly parse options to setuptools Flake8 command
+  * Bug Fix exceptions when output on stdout is truncated before 
+Flake8 finishes writing the output
+  * Bug Fix error on OS X where Flake8 can no longer acquire or
+create new semaphores
+- Update to 2.4.1
+  * Bug Do not raise a SystemError unless there were errors in the
+setuptools command.
+  * Bug Do not verify dependencies of extensions loaded via 
+entry-points.
+  * Improvement Blacklist versions of pep8 we know are broken
+- Update to 2.4.0
+  * Bug Print filenames when using multiprocessing and -q option.
+  * Bug Put upper cap on dependencies. The caps for 2.4.0 are:
+> pep8 < 1.6 (Related to GitLab#35)
+> mccabe < 0.4
+> pyflakes < 0.9
+  * See also GitLab#32
+  * Bug Files excluded in a config file were not being excluded 
+when flake8 was run from a git hook.
+  * Improvement Print warnings for users who are providing
+mutually exclusive options to flake8.
+  * Feature Allow git hook configuration to live in .git/config.
+See the updated VCS hooks docs for more details.
+- Implement update-alternatives
+
+---

Old:

  flake8-2.3.0.tar.gz

New:

  flake8-2.5.1.tar.gz



Other differences:
--
++ python3-flake8.spec ++
--- /var/tmp/diff_new_pack.APNnbi/_old  2016-01-22 01:06:57.0 +0100
+++ /var/tmp/diff_new_pack.APNnbi/_new  2016-01-22 01:06:57.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-flake8
-Version:2.3.0
+Version:2.5.1
 Release:0
 Summary:Modular source code checker: pep8, pyflakes and co
 License:MIT
@@ -26,15 +26,17 @@
 Source: 
http://pypi.python.org/packages/source/f/flake8/flake8-%{version}.tar.gz
 BuildRequires:  python3-devel
 BuildRequires:  python3-distribute
-# Test requirements:
 BuildRequires:  python3-mccabe >= 0.2
-BuildRequires:  python3-mock
-BuildRequires:  python3-nose
 BuildRequires:  python3-pep8 >= 1.4.3
 BuildRequires:  python3-pyflakes >= 0.6.1
+# Test requirements:
+BuildRequires:  python3-mock
+BuildRequires:  python3-nose
 Requires:   python3-mccabe >= 0.2
 Requires:   python3-pep8 >= 1.4.3
 Requires:   python3-pyflakes >= 0.6.1
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -55,8 +57,22 @@
 
 %install
 python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
-# Avoid file conflict with Python-2.x version:
-mv %{buildroot}%{_bindir}/flake8{,-%{py3_ver}}
+
+# Prepare for update-alternatives usage
+mkdir -p %{buildroot}%{_sysconfdir}/alternatives
+mv %{buildroot}%{_bindir}/flake8 %{buildroot}%{_bindir}/flake8-%{py3_ver}
+ln -s -f %{_sysconfdir}/alternatives/flake8 %{buildroot}%{_bindir}/flake8
+# create a dummy target for /etc/alternatives/flake8
+touch %{buildroot}%{_sysconfdir}/alternatives/flake8
+
+%post
+"%_sbindir/update-alternatives" \
+   --install %{_bindir}/flake8 flake8 %{_bindir}/flake8-%{py3_ver} 30
+
+%postun
+if [ $1 -eq 0 ] ; then
+"%_sbindir/update-alternatives" --remove flake8 
%{_bindir}/flake8-%{py3_ver}
+fi
 
 %check
 python3 setup.py test
@@ -64,7 +80,9 @@
 %files
 %defattr(-,root,root,-)
 %doc LICENSE README.rst
+%{_bindir}/flake8
 %{_bindir}/flake8-%{py3_ver}
+%ghost %{_sysconfdir}/alternatives/flake8
 %{python3_sitelib}/*
 
 %changelog

++ flake8-2.3.0.tar.gz -> flake8-2.5.1.tar.gz ++
 1811 lines of diff (skipped)




commit python3-flake8 for openSUSE:Factory

2015-01-10 Thread h_root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2015-01-10 23:05:32

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


Package is python3-flake8

Changes:

--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes
2014-07-11 06:46:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes   
2015-01-10 23:05:33.0 +0100
@@ -1,0 +2,33 @@
+Sat Jan 10 02:12:17 UTC 2015 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+  * update url
+
+- upgrade to version 2.3.0:
+  * Feature: Add --output-file option to specify a file to write to
+instead of stdout.
+  * Bug Fix interleaving of output while using multiprocessing
+(GitLab#17)
+
+- changes from version 2.2.5:
+  * Flush standard out when using multiprocessing
+  * Make the check for # flake8: noqa more strict
+
+- changes from version 2.2.4:
+  * Fix bugs triggered by turning multiprocessing on by default
+(again)
+  * Multiprocessing is forcibly disabled in the following cases:
++ Passing something in via stdin
++ Analyzing a diff
++ Using windows
+  * Fix --install-hook when there are no config files present for pep8
+or flake8.
+  * Fix how the setuptools command parses excludes in config files
+  * Fix how the git hook determines which files to analyze (Thanks
+Chris Buccella!)
+
+- changes from version 2.2.3:
+  * Actually turn multiprocessing on by default
+
+---

Old:

  flake8-2.2.2.tar.gz

New:

  flake8-2.3.0.tar.gz



Other differences:
--
++ python3-flake8.spec ++
--- /var/tmp/diff_new_pack.9VOjyj/_old  2015-01-10 23:05:34.0 +0100
+++ /var/tmp/diff_new_pack.9VOjyj/_new  2015-01-10 23:05:34.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package python-flake8
+# spec file for package python3-flake8
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -13,15 +13,16 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
 
 
 Name:   python3-flake8
-Version:2.2.2
+Version:2.3.0
 Release:0
-License:MIT
 Summary:Modular source code checker: pep8, pyflakes and co
-Url:http://bitbucket.org/tarek/flake8
+License:MIT
 Group:  Development/Languages/Python
+Url:https://gitlab.com/pycqa/flake8
 Source: 
http://pypi.python.org/packages/source/f/flake8/flake8-%{version}.tar.gz
 BuildRequires:  python3-devel
 BuildRequires:  python3-distribute

++ flake8-2.2.2.tar.gz - flake8-2.3.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.2.2/CHANGES.rst new/flake8-2.3.0/CHANGES.rst
--- old/flake8-2.2.2/CHANGES.rst2014-07-05 04:50:28.0 +0200
+++ new/flake8-2.3.0/CHANGES.rst2015-01-04 21:48:43.0 +0100
@@ -1,6 +1,50 @@
 CHANGES
 ===
 
+2.3.0 - 2015-01-04
+--
+
+- **Feature**: Add ``--output-file`` option to specify a file to write to
+  instead of ``stdout``.
+
+- **Bug** Fix interleaving of output while using multiprocessing
+  (`GitLab#17`_)
+
+.. _GitLab#17: https://gitlab.com/pycqa/flake8/issues/17
+
+2.2.5 - 2014-10-19
+--
+
+- Flush standard out when using multiprocessing
+
+- Make the check for # flake8: noqa more strict
+
+2.2.4 - 2014-10-09
+--
+
+- Fix bugs triggered by turning multiprocessing on by default (again)
+
+  Multiprocessing is forcibly disabled in the following cases:
+
+  - Passing something in via stdin
+
+  - Analyzing a diff
+
+  - Using windows
+
+- Fix --install-hook when there are no config files present for pep8 or
+  flake8.
+
+- Fix how the setuptools command parses excludes in config files
+
+- Fix how the git hook determines which files to analyze (Thanks Chris
+  Buccella!)
+
+2.2.3 - 2014-08-25
+--
+
+- Actually turn multiprocessing on by default
+
 2.2.2 - 2014-07-04
 --
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.2.2/PKG-INFO new/flake8-2.3.0/PKG-INFO
--- old/flake8-2.2.2/PKG-INFO   2014-07-05 04:53:51.0 +0200
+++ new/flake8-2.3.0/PKG-INFO   2015-01-04 21:50:23.0 +0100
@@ -1,8 +1,8 @@
 Metadata-Version: 1.1
 Name: flake8

commit python3-flake8 for openSUSE:Factory

2014-07-10 Thread h_root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2014-07-11 06:46:09

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


Package is python3-flake8

Changes:

--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes
2014-04-25 11:35:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes   
2014-07-11 06:46:55.0 +0200
@@ -1,0 +2,20 @@
+Thu Jul 10 12:26:59 UTC 2014 - toddrme2...@gmail.com
+
+- Update to 2.2.2
+  - Re-enable multiprocessing by default while fixing the issue 
+Windows users were seeing.
+- Update to 2.2.1
+  - Turn off multiple jobs by default. To enable automatic use 
+of all CPUs, use --jobs=auto. Fixes #155 and #154.
+- update to 2.2.0:
+  - New option ``doctests`` to run Pyflakes checks on doctests too
+  - New option ``jobs`` to launch multiple jobs in parallel
+  - Turn on using multiple jobs by default using the CPU count
+  - Add support for ``python -m flake8`` on Python 2.7 and Python 3
+  - Fix Git and Mercurial hooks: issues #88, #133, #148 and #149
+  - Fix crashes with Python 3.4 by upgrading dependencies
+  - Fix traceback when running tests with Python 2.6
+  - Fix the setuptools command ``python setup.py flake8`` to read
+the project configuration
+
+---

Old:

  flake8-2.1.0.tar.gz

New:

  flake8-2.2.2.tar.gz



Other differences:
--
++ python3-flake8.spec ++
--- /var/tmp/diff_new_pack.hxxVuj/_old  2014-07-11 06:46:56.0 +0200
+++ /var/tmp/diff_new_pack.hxxVuj/_new  2014-07-11 06:46:56.0 +0200
@@ -16,7 +16,7 @@
 
 
 Name:   python3-flake8
-Version:2.1.0
+Version:2.2.2
 Release:0
 License:MIT
 Summary:Modular source code checker: pep8, pyflakes and co

++ flake8-2.1.0.tar.gz - flake8-2.2.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.1.0/CHANGES.rst new/flake8-2.2.2/CHANGES.rst
--- old/flake8-2.1.0/CHANGES.rst2013-10-26 22:23:15.0 +0200
+++ new/flake8-2.2.2/CHANGES.rst2014-07-05 04:50:28.0 +0200
@@ -1,6 +1,32 @@
 CHANGES
 ===
 
+2.2.2 - 2014-07-04
+--
+
+- Re-enable multiprocessing by default while fixing the issue Windows users
+  were seeing.
+
+2.2.1 - 2014-06-30
+--
+
+- Turn off multiple jobs by default. To enable automatic use of all CPUs, use
+  ``--jobs=auto``. Fixes #155 and #154.
+
+2.2.0 - 2014-06-22
+--
+
+- New option ``doctests`` to run Pyflakes checks on doctests too
+- New option ``jobs`` to launch multiple jobs in parallel
+- Turn on using multiple jobs by default using the CPU count
+- Add support for ``python -m flake8`` on Python 2.7 and Python 3
+- Fix Git and Mercurial hooks: issues #88, #133, #148 and #149
+- Fix crashes with Python 3.4 by upgrading dependencies
+- Fix traceback when running tests with Python 2.6
+- Fix the setuptools command ``python setup.py flake8`` to read
+  the project configuration
+
+
 2.1.0 - 2013-10-26
 --
 
@@ -14,6 +40,7 @@
 - Ignore .tox directories by default
 - Flake8 now reports the column number for PyFlakes messages
 
+
 2.0.0 - 2013-02-23
 --
 
@@ -78,7 +105,7 @@
 - make sure mccabe catches the syntax errors as warnings
 - pep8 upgrade
 - added max_line_length default value
-- added Flake8Command and entry points is setuptools is around
+- added Flake8Command and entry points if setuptools is around
 - using the setuptools console wrapper when available
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.1.0/PKG-INFO new/flake8-2.2.2/PKG-INFO
--- old/flake8-2.1.0/PKG-INFO   2013-10-26 22:24:46.0 +0200
+++ new/flake8-2.2.2/PKG-INFO   2014-07-05 04:53:51.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: flake8
-Version: 2.1.0
+Version: 2.2.2
 Summary: the modular source code checker: pep8, pyflakes and co
 Home-page: http://bitbucket.org/tarek/flake8
 Author: Ian Cordasco
@@ -86,6 +86,32 @@
 CHANGES
 ===
 
+2.2.2 - 2014-07-04
+--
+
+- Re-enable multiprocessing by default while fixing the issue Windows 
users
+  were seeing.
+
+2.2.1 - 2014-06-30
+--
+
+- Turn off multiple jobs by default. To enable automatic use of all 
CPUs, use
+  ``--jobs=auto``. Fixes #155 and #154.
+
+2.2.0 - 2014-06-22
+

commit python3-flake8 for openSUSE:Factory

2014-04-25 Thread h_root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2014-04-25 11:35:17

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


Package is python3-flake8

Changes:

--- /work/SRC/openSUSE:Factory/python3-flake8/python3-flake8.changes
2013-06-25 18:00:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-flake8.new/python3-flake8.changes   
2014-04-25 11:35:19.0 +0200
@@ -1,0 +2,14 @@
+Thu Apr 17 11:21:33 UTC 2014 - toddrme2...@gmail.com
+
+- update to 2.1.0:
+  - Add FLAKE8_LAZY and FLAKE8_IGNORE environment variable support to git and
+mercurial hooks
+  - Force git and mercurial hooks to repsect configuration in setup.cfg
+  - Only check staged files if that is specified
+  - Fix hook file permissions
+  - Fix the git hook on python 3
+  - Ignore non-python files when running the git hook
+  - Ignore .tox directories by default
+  - Flake8 now reports the column number for PyFlakes messages
+
+---

Old:

  flake8-2.0.tar.gz

New:

  flake8-2.1.0.tar.gz



Other differences:
--
++ python3-flake8.spec ++
--- /var/tmp/diff_new_pack.W91vJH/_old  2014-04-25 11:35:20.0 +0200
+++ /var/tmp/diff_new_pack.W91vJH/_new  2014-04-25 11:35:20.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-flake8
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products 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,7 +16,7 @@
 
 
 Name:   python3-flake8
-Version:2.0
+Version:2.1.0
 Release:0
 License:MIT
 Summary:Modular source code checker: pep8, pyflakes and co
@@ -27,6 +27,7 @@
 BuildRequires:  python3-distribute
 # Test requirements:
 BuildRequires:  python3-mccabe = 0.2
+BuildRequires:  python3-mock
 BuildRequires:  python3-nose
 BuildRequires:  python3-pep8 = 1.4.3
 BuildRequires:  python3-pyflakes = 0.6.1

++ flake8-2.0.tar.gz - flake8-2.1.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.0/CHANGES.rst new/flake8-2.1.0/CHANGES.rst
--- old/flake8-2.0/CHANGES.rst  2013-02-23 23:32:05.0 +0100
+++ new/flake8-2.1.0/CHANGES.rst2013-10-26 22:23:15.0 +0200
@@ -1,7 +1,20 @@
 CHANGES
 ===
 
-2.0.0 - 2013-02-xx
+2.1.0 - 2013-10-26
+--
+
+- Add FLAKE8_LAZY and FLAKE8_IGNORE environment variable support to git and
+  mercurial hooks
+- Force git and mercurial hooks to repsect configuration in setup.cfg
+- Only check staged files if that is specified
+- Fix hook file permissions
+- Fix the git hook on python 3
+- Ignore non-python files when running the git hook
+- Ignore .tox directories by default
+- Flake8 now reports the column number for PyFlakes messages
+
+2.0.0 - 2013-02-23
 --
 
 - Pyflakes errors are prefixed by an ``F`` instead of an ``E``
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.0/CONTRIBUTORS.txt 
new/flake8-2.1.0/CONTRIBUTORS.txt
--- old/flake8-2.0/CONTRIBUTORS.txt 2013-02-23 15:32:11.0 +0100
+++ new/flake8-2.1.0/CONTRIBUTORS.txt   2013-06-23 05:46:34.0 +0200
@@ -19,3 +19,4 @@
 - Marc Labbé
 - Bruno Miguel Custódio
 - Florent Xicluna
+- Austin Morton
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.0/LICENSE new/flake8-2.1.0/LICENSE
--- old/flake8-2.0/LICENSE  2013-02-23 15:32:11.0 +0100
+++ new/flake8-2.1.0/LICENSE2013-07-05 16:23:02.0 +0200
@@ -1,6 +1,7 @@
 == Flake8 License (MIT) ==
 
-Copyright (C) 2011 Tarek Ziade ta...@ziade.org
+Copyright (C) 2011-2013 Tarek Ziade ta...@ziade.org
+Copyright (C) 2012-2013 Ian Cordasco graffatcolmin...@gmail.com
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of
 this software and associated documentation files (the Software), to deal in
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-2.0/MANIFEST.in new/flake8-2.1.0/MANIFEST.in
--- old/flake8-2.0/MANIFEST.in  2013-02-23 15:32:11.0 +0100
+++ new/flake8-2.1.0/MANIFEST.in2013-06-23 05:46:34.0 +0200
@@ -1,4 +1,4 @@
 include *.rst
 include CONTRIBUTORS.txt
 include LICENSE
-recursive-include scripts flake8.*
+recursive-include flake8 *
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit python3-flake8 for openSUSE:Factory

2013-05-02 Thread h_root
Hello community,

here is the log from the commit of package python3-flake8 for openSUSE:Factory 
checked in at 2013-05-02 09:42:01

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


Package is python3-flake8

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



Other differences:
--
++ _link ++
link package=python-flake8 cicount=copy /
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org