diff options
author | Britney Fransen <brfransen@gmail.com> | 2014-10-27 20:28:27 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2014-10-27 20:28:27 (GMT) |
commit | f7b823f55a80b1498c30e9f3a47692a2329c4f09 (patch) | |
tree | 6de557714e6336282fbc0ab16c6578386dfc6654 /abs/core/python_modules/python-ply | |
parent | 4c2a2e3504f472628285a989c7c9a76be6855f54 (diff) | |
parent | 01c1a60f3b7f93b3ed7404196c2cf798c4d8c674 (diff) | |
download | linhes_pkgbuild-f7b823f55a80b1498c30e9f3a47692a2329c4f09.zip linhes_pkgbuild-f7b823f55a80b1498c30e9f3a47692a2329c4f09.tar.gz linhes_pkgbuild-f7b823f55a80b1498c30e9f3a47692a2329c4f09.tar.bz2 |
Merge branch 'testing'
Diffstat (limited to 'abs/core/python_modules/python-ply')
-rw-r--r-- | abs/core/python_modules/python-ply/PKGBUILD | 45 | ||||
-rw-r--r-- | abs/core/python_modules/python-ply/__changelog | 1 |
2 files changed, 46 insertions, 0 deletions
diff --git a/abs/core/python_modules/python-ply/PKGBUILD b/abs/core/python_modules/python-ply/PKGBUILD new file mode 100644 index 0000000..3c8cace --- /dev/null +++ b/abs/core/python_modules/python-ply/PKGBUILD @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: Felix Yan <felixonmars@gmail.com> +# Contributor: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Marcin "avalan" Falkiewicz <avalatron@gmail.com> +# Contributor: C Anthony Risinger <anthony@xtfx.me> + +pkgbase=python-ply +pkgname=(python2-ply) +pkgver=3.4 +pkgrel=4 +pkgdesc='Implementation of lex and yacc parsing tools' +arch=('any') +url='http://www.dabeaz.com/ply/' +license=('BSD') +makedepends=('python2-setuptools') +source=("${url}ply-$pkgver.tar.gz") +sha256sums=('af435f11b7bdd69da5ffbc3fecb8d70a7073ec952e101764c88720cdefb2546b') + +prepare() { + cp -r ${pkgbase#python-}-$pkgver{,-py2} +} + +#package_python-ply() { +# depends=('python') + +# cd "${pkgbase#python-}-$pkgver" + +# python setup.py install --root="$pkgdir" + +# install -d "$pkgdir/usr/share/licenses/$pkgname" +# head -n30 README > "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +#} + +package_python2-ply() { + depends=('python2') + + cd "${pkgbase#python-}-$pkgver-py2" + + python2 setup.py install --root="$pkgdir" + + install -d "$pkgdir/usr/share/licenses/$pkgname" + head -n30 README > "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# vim:set ts=2 sw=2 et: diff --git a/abs/core/python_modules/python-ply/__changelog b/abs/core/python_modules/python-ply/__changelog new file mode 100644 index 0000000..488d3cf --- /dev/null +++ b/abs/core/python_modules/python-ply/__changelog @@ -0,0 +1 @@ +PKGBUILD: rm py 3 stuff |