14
0
forked from pool/python-Fabric

- 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.

- 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
This commit is contained in:
Alexandre Rogoski
2012-01-13 16:38:10 +00:00
committed by Git OBS Bridge
parent 6ca8c719f9
commit 79c9e033cb
4 changed files with 55 additions and 8 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:45c4274fa654ac85a931dcb88d68b4b2c4414ebe72021943e8755929f704a1c0
size 166970

3
Fabric-1.3.4.tar.bz2 Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b7045df79835ba5e54d42e896f0d906fa68c2c183aab03c146e2f250277dda81
size 131708

View File

@@ -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: Dont 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 didnt expand tildes; now it does. Thanks to
Riccardo Magliocchetti for the patch.
- [Bug] #437: with_settings now correctly preserves the wrapped
functions 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 users 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 Fabrics “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 Thu Nov 10 10:49:23 UTC 2011 - saschpe@suse.de

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-Fabric # 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 # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -15,16 +15,14 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via http://bugs.opensuse.org/
# #
Name: python-Fabric Name: python-Fabric
Version: 1.3.2 Version: 1.3.4
Release: 0 Release: 0
Url: http://fabfile.org Url: http://fabfile.org
Summary: Fabric is a simple, Pythonic tool for remote execution and deployment Summary: Fabric is a simple, Pythonic tool for remote execution and deployment
License: BSD-2-Clause License: BSD-2-Clause
Group: Development/Languages/Python Group: Development/Languages/Python
Source: Fabric-%{version}.tar.gz Source: Fabric-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python-devel BuildRequires: python-devel
BuildRequires: python-distribute BuildRequires: python-distribute