PKGBUILDs/community/python-xcffib/PKGBUILD

39 lines
1.1 KiB
Bash
Raw Normal View History

# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Roger Duran <rogerduran@gmail.com>
# ALARM: dequis <dx@dxzone.com.ar>
# - remove haskell-xcffib dependency by using the pypi release instead
2020-05-13 12:51:09 +00:00
pkgname=python-xcffib
2020-12-24 16:41:46 +00:00
pkgver=0.11.1
2020-12-15 18:35:59 +00:00
pkgrel=1
pkgdesc="Python3 drop in replacement for xpyb, an XCB python binding"
arch=('any')
url="https://pypi.python.org/pypi/xcffib"
license=('Apache')
2020-05-13 12:51:09 +00:00
depends=('python-six' 'python-cffi' 'libxcb')
makedepends=('python-setuptools' 'python-cffi' 'python-six' 'libxcb')
checkdepends=('python-nose' 'xorg-server-xvfb' 'xorg-xeyes')
_name=${pkgname#python-}
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz")
2020-12-24 16:41:46 +00:00
sha512sums=('09f4e19b88258446af26628c3a8e694c1f938fe3b5456e797b06174602fa0e9ef6e4eab76daccfd169d98fb7e869c910e6216d1f71fa2853e62b82c62c667669')
prepare() {
touch xcffib-$pkgver/test/__init__.py
}
build() {
2020-12-15 18:35:59 +00:00
cd xcffib-$pkgver
python setup.py build
}
check() {
2020-12-15 18:35:59 +00:00
cd xcffib-$pkgver
xvfb-run nosetests3
}
2020-05-13 12:51:09 +00:00
package() {
cd xcffib-$pkgver
python setup.py install --root="$pkgdir/" --optimize=1
}