Date: Tuesday, February 12, 2019 @ 03:42:11 Author: sangy Revision: 431842
move python-aiorpcx from AUR Added: python-aiorpcx/ python-aiorpcx/repos/ python-aiorpcx/trunk/ python-aiorpcx/trunk/PKGBUILD ----------+ PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) Added: python-aiorpcx/trunk/PKGBUILD =================================================================== --- python-aiorpcx/trunk/PKGBUILD (rev 0) +++ python-aiorpcx/trunk/PKGBUILD 2019-02-12 03:42:11 UTC (rev 431842) @@ -0,0 +1,26 @@ +# Maintainer : Santiago Torres-Arias <[email protected]> +# Contributor: smmalis37 + +pkgname='python-aiorpcx' +pkgver=0.10.4 +pkgrel=2 +pkgdesc="A generic asyncio library implementation of RPC suitable for an application that is a client, server or both." +url="https://github.com/kyuupichan/aiorpcX/" +arch=('any') +license=('MIT') +depends=('python>=3.6' 'python-attrs') +makedepends=('python-setuptools') +source=("https://github.com/kyuupichan/aiorpcX/archive/${pkgver}.tar.gz") + +build() { + cd "${srcdir}/aiorpcX-${pkgver}" + python setup.py build +} + +package() { + cd "${srcdir}/aiorpcX-${pkgver}" + python setup.py install --root="$pkgdir/" --optimize=1 --skip-build + install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" +} + +sha256sums=('df79b7a321043ce5e12f91ad197d6187cf5b0c6f85506d323ad8b44e330104a1')
