Date: Tuesday, January 16, 2018 @ 13:30:11 Author: arodseth Revision: 283246
Add missing dependency for python-pyro Added: python-serpent/ python-serpent/repos/ python-serpent/repos/community-any/ python-serpent/trunk/ python-serpent/trunk/PKGBUILD ----------+ PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) Added: python-serpent/trunk/PKGBUILD =================================================================== --- python-serpent/trunk/PKGBUILD (rev 0) +++ python-serpent/trunk/PKGBUILD 2018-01-16 13:30:11 UTC (rev 283246) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Alexander F Rødseth <[email protected]> +# Contributor: razer <[email protected]> + +pkgbase=python-serpent +pkgname=("$pkgbase" "${pkgbase/-/2-}") +pkgver=1.23 +pkgrel=1 +pkgdesc='Distributed object middleware for Python (RPC)' +url='https://github.com/irmen/Serpent' +arch=('any') +license=('MIT') +depends=('python' 'python2') +source=("git+https://github.com/irmen/Serpent.git#tag=serpent-$pkgver") +md5sums=('SKIP') + +package_python-serpent() { + depends=('python') + + cd Serpent + + python setup.py install --root="$pkgdir" --optimize=1 + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +package_python2-serpent() { + depends=('python2') + + cd Serpent + + python2 setup.py install --root="$pkgdir" --optimize=1 + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# getver: github.com/irmen/Serpent/tags +# vim: ts=2 sw=2 et: Property changes on: python-serpent/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
