commit a9ea5f07aac4b74d9975863b037b01a9270fef33 Author: Yaron de Leeuw Date: Tue Oct 15 15:54:14 2013 +0300 added python-natsort python-isort and python-pies diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..56bd9306c85c --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = python-pies + pkgdesc = The simplest (and tastiest) way to write one program that runs on both Python 2.6+ and Python 3. + pkgver = 1.0.3 + pkgrel = 1 + url = https://github.com/timothycrosley/pies + arch = any + license = GPL2 + makedepends = python-setuptools + depends = python + options = !emptydirs + source = https://pypi.python.org/packages/source/p/pies/pies-1.0.3.tar.gz + md5sums = 044f45fe0ba267a7d5978735b392599e + +pkgname = python-pies + diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..b7c122337f6b --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Yaron de Leeuw +pkgname=python-pies +_pkgname=pies +pkgver=1.0.3 +pkgrel=1 +pkgdesc="The simplest (and tastiest) way to write one program that runs on both Python 2.6+ and Python 3." +arch=('any') +url="https://github.com/timothycrosley/pies" +license=('GPL2') +depends=('python') +makedepends=(python-setuptools) +options=(!emptydirs) +source=("https://pypi.python.org/packages/source/p/pies/pies-$pkgver.tar.gz") +md5sums=('044f45fe0ba267a7d5978735b392599e') + +package() { + cd "$srcdir/$_pkgname-$pkgver" + python setup.py install --root="$pkgdir/" --optimize=1 +} +