From 508f6804a42f7290e620876da90ba6c9e253105f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 21 Oct 2011 22:46:04 +0000 Subject: Initial APKBUILD for fabric Package description: Fabric is a Python (2.5 or higher) library and command-line tool for streamlining the use of SSH for application deployment or systems administration tasks. It provides a basic suite of operations for executing local or remote shell commands (normally or via sudo) and uploading/ downloading files, as well as auxiliary functionality such as prompting the running user for input, or aborting execution. http://www.fabfile.org --- testing/fabric/APKBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 testing/fabric/APKBUILD (limited to 'testing/fabric/APKBUILD') diff --git a/testing/fabric/APKBUILD b/testing/fabric/APKBUILD new file mode 100644 index 0000000000..61f227001a --- /dev/null +++ b/testing/fabric/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Fabian Affolter +# Maintainer: Fabian Affolter +pkgname=fabric +_pkgname=Fabric +pkgver=1.2.2 +pkgrel=0 +pkgdesc="A simple pythonic remote deployment tool" +url="http://www.fabfile.org" +arch="noarch" +license="BSD" +depends="py-paramiko" +depends_dev="" +makedepends="python-dev py-setuptools" +install="" +subpackages="" +source="http://pypi.python.org/packages/source/F/$_pkgname/$_pkgname-$pkgver.tar.gz" +_builddir="$srcdir"/$_pkgname-$pkgver + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="f234678d3886a0b224945281395fdbda Fabric-1.2.2.tar.gz" -- cgit v1.2.3