From def7dd32e1570f15787cd1f297459d930849a947 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Oct 2011 16:13:04 +0000 Subject: Initial APKBUILD for py-xattr Package description: This module gives access to the extended attributes present in some operating systems/filesystems. You can list attributes, get, set and remove them. The module exposes two sets of functions: - the 'old' listxattr, getxattr, setxattr, removexattr functions which are deprecated since version 0.4 - the new list, get, get_all, set, remove functions which expose a namespace-aware API and simplify a bit the calling model by using keyword arguments --- testing/py-xattr/APKBUILD | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 testing/py-xattr/APKBUILD (limited to 'testing/py-xattr') diff --git a/testing/py-xattr/APKBUILD b/testing/py-xattr/APKBUILD new file mode 100644 index 000000000..9d0ec5d9d --- /dev/null +++ b/testing/py-xattr/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Fabian Affolter +# Maintainer: Fabian Affolter +pkgname=py-xattr +_pkgname=pyxattr +pkgver=0.5.0 +pkgrel=0 +pkgdesc="A python module for accessing filesystem Extended Attributes" +url="http://pyxattr.sourceforge.net/" +arch="all" +license="LGPL2+" +depends="" +depends_dev="" +makedepends="python-dev attr-dev" +install="" +subpackages="" +source="http://downloads.sourceforge.net/$_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 --root="$pkgdir" || return 1 +} + +md5sums="0f7ab1e185087329e40f7de218517c84 pyxattr-0.5.0.tar.gz" -- cgit v1.2.3