Date: Friday, January 17, 2020 @ 10:39:38 Author: arodseth Revision: 552833
Add python-compiler, needed for transitioning shedskin to Python 3 Added: python-compiler/ python-compiler/repos/ python-compiler/repos/community-any/ python-compiler/trunk/ python-compiler/trunk/PKGBUILD ----------+ PKGBUILD | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) Added: python-compiler/trunk/PKGBUILD =================================================================== --- python-compiler/trunk/PKGBUILD (rev 0) +++ python-compiler/trunk/PKGBUILD 2020-01-17 10:39:38 UTC (rev 552833) @@ -0,0 +1,24 @@ +# Maintainer: Alexander F. Rødseth <[email protected]> + +pkgname=python-compiler +pkgver=1.1 +pkgrel=1 +pkgdesc='The compiler package from Python 2, ported to Python 3' +arch=(any) +url='https://github.com/pfalcon/python-compiler' +license=(custom) +makedepends=(git python python-setuptools) +source=("git+https://github.com/pfalcon/python-compiler#commit=e71a47b4bf6570afe12ebb4a16fb70561c134e98") # version 1.1 +sha256sums=('SKIP') + +build(){ + cd $pkgname + python setup.py build +} + +package() { + cd $pkgname + python setup.py install --root="$pkgdir" --optimize=1 --skip-build +} + +# vim: ts=2 sw=2 et:
