Hello community, here is the log from the commit of package python-flake8 for openSUSE:Factory checked in at 2015-01-15 15:58:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-flake8 (Old) and /work/SRC/openSUSE:Factory/.python-flake8.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-flake8" Changes: -------- --- /work/SRC/openSUSE:Factory/python-flake8/python-flake8.changes 2014-07-11 06:46:52.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.python-flake8.new/python-flake8.changes 2015-01-15 15:58:11.000000000 +0100 @@ -1,0 +2,7 @@ +Mon Sep 15 08:14:52 UTC 2014 - [email protected] + +- update to 2.2.3: + * Actually turn multiprocessing on by default +- Update Requires for pyflakes, pep8 and mccabe + +------------------------------------------------------------------- Old: ---- flake8-2.2.2.tar.gz New: ---- flake8-2.2.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-flake8.spec ++++++ --- /var/tmp/diff_new_pack.Uq4HC5/_old 2015-01-15 15:58:11.000000000 +0100 +++ /var/tmp/diff_new_pack.Uq4HC5/_new 2015-01-15 15:58:11.000000000 +0100 @@ -17,7 +17,7 @@ Name: python-flake8 -Version: 2.2.2 +Version: 2.2.3 Release: 0 Summary: Modular source code checker: pep8, pyflakes and co License: MIT @@ -27,14 +27,14 @@ BuildRequires: python-devel BuildRequires: python-setuptools # Test requirements: -BuildRequires: python-mccabe >= 0.2 +BuildRequires: python-mccabe >= 0.2.1 BuildRequires: python-mock BuildRequires: python-nose -BuildRequires: python-pep8 >= 1.4.3 -BuildRequires: python-pyflakes >= 0.6.1 -Requires: python-mccabe >= 0.2 -Requires: python-pep8 >= 1.4.3 -Requires: python-pyflakes >= 0.6.1 +BuildRequires: python-pep8 >= 1.5.7 +BuildRequires: python-pyflakes >= 0.8.1 +Requires: python-mccabe >= 0.2.1 +Requires: python-pep8 >= 1.5.7 +Requires: python-pyflakes >= 0.8.1 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()")} ++++++ flake8-2.2.2.tar.gz -> flake8-2.2.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/flake8-2.2.2/CHANGES.rst new/flake8-2.2.3/CHANGES.rst --- old/flake8-2.2.2/CHANGES.rst 2014-07-05 04:50:28.000000000 +0200 +++ new/flake8-2.2.3/CHANGES.rst 2014-08-26 02:02:22.000000000 +0200 @@ -1,6 +1,11 @@ CHANGES ======= +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.2.3/PKG-INFO --- old/flake8-2.2.2/PKG-INFO 2014-07-05 04:53:51.000000000 +0200 +++ new/flake8-2.2.3/PKG-INFO 2014-08-26 02:05:21.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: flake8 -Version: 2.2.2 +Version: 2.2.3 Summary: the modular source code checker: pep8, pyflakes and co Home-page: http://bitbucket.org/tarek/flake8 Author: Ian Cordasco @@ -86,6 +86,11 @@ CHANGES ======= + 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/flake8/__init__.py new/flake8-2.2.3/flake8/__init__.py --- old/flake8-2.2.2/flake8/__init__.py 2014-07-05 04:51:20.000000000 +0200 +++ new/flake8-2.2.3/flake8/__init__.py 2014-08-26 02:02:39.000000000 +0200 @@ -1 +1 @@ -__version__ = '2.2.2' +__version__ = '2.2.3' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/flake8-2.2.2/flake8/engine.py new/flake8-2.2.3/flake8/engine.py --- old/flake8-2.2.2/flake8/engine.py 2014-06-27 14:53:50.000000000 +0200 +++ new/flake8-2.2.3/flake8/engine.py 2014-08-26 02:00:56.000000000 +0200 @@ -55,7 +55,7 @@ except NotImplementedError: auto = 1 parser.config_options.append('jobs') - parser.add_option('-j', '--jobs', type='string', default='', + parser.add_option('-j', '--jobs', type='string', default='auto', help="number of jobs to run simultaneously, " "or 'auto'") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/flake8-2.2.2/flake8.egg-info/PKG-INFO new/flake8-2.2.3/flake8.egg-info/PKG-INFO --- old/flake8-2.2.2/flake8.egg-info/PKG-INFO 2014-07-05 04:53:51.000000000 +0200 +++ new/flake8-2.2.3/flake8.egg-info/PKG-INFO 2014-08-26 02:05:21.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: flake8 -Version: 2.2.2 +Version: 2.2.3 Summary: the modular source code checker: pep8, pyflakes and co Home-page: http://bitbucket.org/tarek/flake8 Author: Ian Cordasco @@ -86,6 +86,11 @@ CHANGES ======= + 2.2.3 - 2014-08-25 + ------------------ + + - Actually turn multiprocessing on by default + 2.2.2 - 2014-07-04 ------------------ -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
