Hello community, here is the log from the commit of package python-parallax for openSUSE:Factory checked in at 2015-02-18 11:39:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-parallax (Old) and /work/SRC/openSUSE:Factory/.python-parallax.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-parallax" Changes: -------- --- /work/SRC/openSUSE:Factory/python-parallax/python-parallax.changes 2015-01-08 23:01:35.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.python-parallax.new/python-parallax.changes 2015-02-18 12:08:52.000000000 +0100 @@ -1,0 +2,7 @@ +Thu Feb 12 16:47:44 UTC 2015 - [email protected] + +- Release 1.0.0a3 + - Be more accepting with format of limit argument + - Fix incorrect name of options attribute + +------------------------------------------------------------------- Old: ---- parallax-1.0.0a2.tar.gz New: ---- parallax-1.0.0a3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-parallax.spec ++++++ --- /var/tmp/diff_new_pack.OXwkPQ/_old 2015-02-18 12:08:52.000000000 +0100 +++ /var/tmp/diff_new_pack.OXwkPQ/_new 2015-02-18 12:08:52.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-parallax # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 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,12 +17,12 @@ Name: python-parallax -Version: 1.0.0a2 +Version: 1.0.0a3 Release: 0 -License: BSD-3-Clause Summary: Execute commands and copy files over SSH to multiple machines at once -Url: https://github.com/krig/parallax/ +License: BSD-3-Clause Group: Development/Languages/Python +Url: https://github.com/krig/parallax/ Source: https://pypi.python.org/packages/source/p/parallax/parallax-%{version}.tar.gz BuildRequires: python-devel BuildRequires: python-setuptools ++++++ parallax-1.0.0a2.tar.gz -> parallax-1.0.0a3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parallax-1.0.0a2/AUTHORS new/parallax-1.0.0a3/AUTHORS --- old/parallax-1.0.0a2/AUTHORS 2014-10-15 15:40:04.000000000 +0200 +++ new/parallax-1.0.0a3/AUTHORS 2015-02-12 17:42:26.000000000 +0100 @@ -1,3 +1,4 @@ Andrew McNabb <amcnabb at mcnabbs.org> Brent Chun <bnc at theether.org> -Kristoffer Gronlund <krig at koru.se> \ No newline at end of file +Kristoffer Gronlund <krig at koru.se> +Vladislav Bogdanov <[email protected]> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parallax-1.0.0a2/PKG-INFO new/parallax-1.0.0a3/PKG-INFO --- old/parallax-1.0.0a2/PKG-INFO 2014-12-25 18:25:00.000000000 +0100 +++ new/parallax-1.0.0a3/PKG-INFO 2015-02-12 17:45:29.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: parallax -Version: 1.0.0a2 +Version: 1.0.0a3 Summary: Execute commands and copy files over SSH to multiple machines at once Home-page: https://github.com/krig/parallax/ Author: Kristoffer Gronlund diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parallax-1.0.0a2/README.md new/parallax-1.0.0a3/README.md --- old/parallax-1.0.0a2/README.md 2014-10-15 17:30:41.000000000 +0200 +++ new/parallax-1.0.0a3/README.md 2014-12-25 18:53:06.000000000 +0100 @@ -73,4 +73,4 @@ [pssh]: https://code.google.com/p/parallel-ssh/ "parallel-ssh" [ez]: http://peak.telecommunity.com/dist/ez_setup.py "ez_setup.py" - [obs]: https://build.opensuse.org/package/show/home:KGronlund/python-parallax "OBS:python-parallax" + [obs]: https://build.opensuse.org/package/show/devel:languages:python/python-parallax "OBS:python-parallax" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parallax-1.0.0a2/parallax/manager.py new/parallax-1.0.0a3/parallax/manager.py --- old/parallax-1.0.0a2/parallax/manager.py 2014-12-16 20:37:45.000000000 +0100 +++ new/parallax-1.0.0a3/parallax/manager.py 2015-02-12 17:40:11.000000000 +0100 @@ -47,11 +47,28 @@ # Backwards compatibility with old __init__ # format: Only argument is an options dict if not isinstance(limit, int): - self.limit = limit.par - self.timeout = limit.timeout - self.askpass = limit.askpass - self.outdir = limit.outdir - self.errdir = limit.errdir + if hasattr(limit, 'limit'): + self.limit = limit.limit + elif hasattr(limit, 'par'): + self.limit = limit.par + else: + self.limit = DEFAULT_PARALLELISM + if hasattr(limit, 'timeout'): + self.timeout = limit.timeout + else: + self.timeout = DEFAULT_TIMEOUT + if hasattr(limit, 'askpass'): + self.askpass = limit.askpass + else: + self.askpass = False + if hasattr(limit, 'outdir'): + self.outdir = limit.outdir + else: + self.outdir = None + if hasattr(limit, 'errdir'): + self.errdir = limit.errdir + else: + self.errdir = None else: self.limit = limit self.timeout = timeout diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parallax-1.0.0a2/parallax/version.py new/parallax-1.0.0a3/parallax/version.py --- old/parallax-1.0.0a2/parallax/version.py 2014-12-25 18:21:48.000000000 +0100 +++ new/parallax-1.0.0a3/parallax/version.py 2015-02-12 17:42:57.000000000 +0100 @@ -1 +1 @@ -VERSION = '1.0.0a2' +VERSION = '1.0.0a3' -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
