From 79c9e033cb2445db8a6af7c61671d891ecbc56f4e11c7e3cbb4eccf12e7925ee Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Fri, 13 Jan 2012 16:38:10 +0000 Subject: [PATCH] =?UTF-8?q?-=20Update=20to=201.3.4:=20=20=20-=20[Bug]=20#4?= =?UTF-8?q?92:=20@parallel=20did=20not=20automatically=20trigger=20linewis?= =?UTF-8?q?e=20=20=20=20=20output,=20as=20was=20intended.=20This=20has=20b?= =?UTF-8?q?een=20fixed.=20Thanks=20to=20Brandon=20=20=20=20=20Huey=20for?= =?UTF-8?q?=20the=20catch.=20=20=20-=20[Bug]=20#510:=20Parallel=20mode=20i?= =?UTF-8?q?s=20incompatible=20with=20user=20input,=20such=20=20=20=20=20as?= =?UTF-8?q?=20password/hostname=20prompts,=20and=20was=20causing=20cryptic?= =?UTF-8?q?=20Operation=20=20=20=20=20not=20supported=20by=20device=20erro?= =?UTF-8?q?rs=20when=20such=20prompts=20needed=20to=20be=20=20=20=20=20dis?= =?UTF-8?q?played.=20This=20behavior=20has=20been=20updated=20to=20cleanly?= =?UTF-8?q?=20and=20obviously=20=20=20=20=20abort=20instead.=20=20=20-=20[?= =?UTF-8?q?Bug]=20#494:=20Fixed=20regression=20bug=20affecting=20some=20en?= =?UTF-8?q?v=20values=20such=20=20=20=20=20as=20env.port=20under=20paralle?= =?UTF-8?q?l=20mode.=20Symptoms=20included=20rsync=5Fproject=20=20=20=20?= =?UTF-8?q?=20bailing=20out=20due=20to=20a=20None=20port=20value=20when=20?= =?UTF-8?q?run=20under=20@parallel.=20=20=20=20=20Thanks=20to=20Rob=20Terh?= =?UTF-8?q?aar=20for=20the=20report.=20=20=20-=20[Bug]=20#339:=20Don?= =?UTF-8?q?=E2=80=99t=20show=20imported=20colors=20members=20in=20--list?= =?UTF-8?q?=20output.=20=20=20=20=20Thanks=20to=20Nick=20Trew=20for=20the?= =?UTF-8?q?=20report.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update to 1.3.3: - [Bug] #441: Specifying a task module as a task on the command line no longer blows up but presents the usual “no task by that name” error message instead. Thanks to Mitchell Hashimoto for the catch. - [Bug] #475: Allow escaping of equals signs in per-task args/kwargs. - [Bug] #450: Improve traceback display when handling ``ImportError``s for dependencies. Thanks to David Wolever for the patches. - [Bug] #446: Add QNX to list of secondary-case sed targets. Thanks to Rodrigo Madruga for the tip. - [Bug] #443: exists didn’t expand tildes; now it does. Thanks to Riccardo Magliocchetti for the patch. - [Bug] #437: with_settings now correctly preserves the wrapped function’s docstring and other attributes. Thanks to Eric Buckley for the catch and Luke Plant for the patch. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Fabric?expand=0&rev=13 --- Fabric-1.3.2.tar.gz | 3 --- Fabric-1.3.4.tar.bz2 | 3 +++ python-Fabric.changes | 49 +++++++++++++++++++++++++++++++++++++++++++ python-Fabric.spec | 8 +++---- 4 files changed, 55 insertions(+), 8 deletions(-) delete mode 100644 Fabric-1.3.2.tar.gz create mode 100644 Fabric-1.3.4.tar.bz2 diff --git a/Fabric-1.3.2.tar.gz b/Fabric-1.3.2.tar.gz deleted file mode 100644 index 6d3e9e0..0000000 --- a/Fabric-1.3.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:45c4274fa654ac85a931dcb88d68b4b2c4414ebe72021943e8755929f704a1c0 -size 166970 diff --git a/Fabric-1.3.4.tar.bz2 b/Fabric-1.3.4.tar.bz2 new file mode 100644 index 0000000..96a0452 --- /dev/null +++ b/Fabric-1.3.4.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7045df79835ba5e54d42e896f0d906fa68c2c183aab03c146e2f250277dda81 +size 131708 diff --git a/python-Fabric.changes b/python-Fabric.changes index 1e84923..954d98a 100644 --- a/python-Fabric.changes +++ b/python-Fabric.changes @@ -1,3 +1,52 @@ +------------------------------------------------------------------- +Fri Jan 13 04:01:33 UTC 2012 - alexandre@exatati.com.br + +- Update to 1.3.4: + - [Bug] #492: @parallel did not automatically trigger linewise + output, as was intended. This has been fixed. Thanks to Brandon + Huey for the catch. + - [Bug] #510: Parallel mode is incompatible with user input, such + as password/hostname prompts, and was causing cryptic Operation + not supported by device errors when such prompts needed to be + displayed. This behavior has been updated to cleanly and obviously + abort instead. + - [Bug] #494: Fixed regression bug affecting some env values such + as env.port under parallel mode. Symptoms included rsync_project + bailing out due to a None port value when run under @parallel. + Thanks to Rob Terhaar for the report. + - [Bug] #339: Don’t show imported colors members in --list output. + Thanks to Nick Trew for the report. + +------------------------------------------------------------------- +Thu Nov 24 00:51:06 UTC 2011 - alexandre@exatati.com.br + +- Update to 1.3.3: + - [Bug] #441: Specifying a task module as a task on the command + line no longer blows up but presents the usual “no task by that + name” error message instead. Thanks to Mitchell Hashimoto for + the catch. + - [Bug] #475: Allow escaping of equals signs in per-task args/kwargs. + - [Bug] #450: Improve traceback display when handling + ``ImportError``s for dependencies. Thanks to David Wolever for the patches. + - [Bug] #446: Add QNX to list of secondary-case sed targets. + Thanks to Rodrigo Madruga for the tip. + - [Bug] #443: exists didn’t expand tildes; now it does. Thanks to + Riccardo Magliocchetti for the patch. + - [Bug] #437: with_settings now correctly preserves the wrapped + function’s docstring and other attributes. Thanks to Eric Buckley for the catch and Luke Plant for the patch. + - [Bug] #400: Handle corner case of systems where pwd.getpwuid + raises KeyError for the user’s UID instead of returning a valid string. Thanks to Dougal Matthews for the catch. + - [Bug] #397: Some poorly behaved objects in third party modules + triggered exceptions during Fabric’s “classic or new-style task?” test. A fix has been added which tries to work around these. + - [Bug] #341: append incorrectly failed to detect that the line(s) given already existed in files hidden to the remote user, and continued appending every time it ran. This has been fixed. Thanks to Dominique Peretti for the catch and Martin Vilcans for the patch. + - [Bug] #342: Combining cd with put and its use_sudo keyword + caused an unrecoverable error. This has been fixed. Thanks to + Egor M for the report. + - [Bug] #482: Parallel mode should imply linewise output; + omission of this behavior was an oversight. + - [Bug] #230: Fix regression re: combo of no fabfile & arbitrary + command use. Thanks to Ali Saifee for the catch. + ------------------------------------------------------------------- Thu Nov 10 10:49:23 UTC 2011 - saschpe@suse.de diff --git a/python-Fabric.spec b/python-Fabric.spec index 0702749..de22e55 100644 --- a/python-Fabric.spec +++ b/python-Fabric.spec @@ -1,7 +1,7 @@ # # spec file for package python-Fabric # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 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 @@ -15,16 +15,14 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # - - Name: python-Fabric -Version: 1.3.2 +Version: 1.3.4 Release: 0 Url: http://fabfile.org Summary: Fabric is a simple, Pythonic tool for remote execution and deployment License: BSD-2-Clause Group: Development/Languages/Python -Source: Fabric-%{version}.tar.gz +Source: Fabric-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python-devel BuildRequires: python-distribute