added python-natsort python-isort and python-pies

This commit is contained in:
Yaron de Leeuw 2013-10-15 15:54:14 +03:00
commit a9ea5f07aa
3 changed files with 35 additions and 0 deletions

15
.SRCINFO Normal file
View file

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

0
.gitignore vendored Normal file
View file

20
PKGBUILD Normal file
View file

@ -0,0 +1,20 @@
# Maintainer: Yaron de Leeuw <jdlmail at gmail >
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
}