diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2019-02-23 01:16:47 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2019-02-23 01:16:47 -0500 |
commit | 23e6980e96683ae4317a3467c2a177abafdb6a6a (patch) | |
tree | 1884a77727fcc5bae8e5ad2abcbe295e71775fbc /pcr/python-xbee | |
parent | b28e855ff278dd9168ab638d09e040b24c2000cf (diff) | |
download | abslibre-23e6980e96683ae4317a3467c2a177abafdb6a6a.tar.gz abslibre-23e6980e96683ae4317a3467c2a177abafdb6a6a.tar.bz2 abslibre-23e6980e96683ae4317a3467c2a177abafdb6a6a.zip |
pcr/python-xbee: Update 2.{1.0→3.2}
Diffstat (limited to 'pcr/python-xbee')
-rw-r--r-- | pcr/python-xbee/PKGBUILD | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/pcr/python-xbee/PKGBUILD b/pcr/python-xbee/PKGBUILD index 3504abc6e..6cc73f517 100644 --- a/pcr/python-xbee/PKGBUILD +++ b/pcr/python-xbee/PKGBUILD @@ -1,18 +1,20 @@ -# Contributor (Arch) : ? -# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp> +# Maintainer (AUR): razer <razer[at]neuf[dot]fr> +# Maintainer: Aurélien DESBRIÈRES <aurelien@hackers.camp> +# Contributor: Luke Shumaker <lukeshu@lukeshu.com> pkgname=python-xbee -pkgver=2.1.0 -pkgrel=1.1 +pkgver=2.3.2 +pkgrel=1 pkgdesc='Python tools for working with XBee radios' url='https://pypi.python.org/pypi/XBee' arch=('any') license=('MIT') +makedepends=('python-setuptools') depends=('python' 'python-pyserial') -source=("https://pypi.python.org/packages/source/X/XBee/XBee-${pkgver}.tar.gz") -md5sums=('ed3c8c24fd375d980fcef9ce520c53e8') +source=("https://pypi.io/packages/source/X/XBee/XBee-${pkgver}.tar.gz") +sha256sums=('77c06de63403409a7e6ca2305b05f499fbff52a0d6031366ffb7acebe14db657') package() { cd XBee-$pkgver - python setup.py install --root="$pkgdir" + python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 } |