blob: 2ba4c874dd1a6b9462da53db01954c29874406af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Maintainer: Jiachen YANG <farseerfc@archlinux.org>
# Contributor: Christopher A. Williamson <home@chrisaw.com>
pkgname='python-into-dbus'
_srcname='into-dbus-python'
pkgver=0.8.2
pkgrel=5
pkgdesc='Facilities for converting an object that inhabits core Python types, e.g., lists, ints, dicts, to an object that inhabits dbus-python types, e.g., dbus.Array, dbus.UInt32, dbus.Dictionary based on a specified dbus signature.'
arch=('any')
license=('Apache')
url="https://github.com/stratis-storage/$_srcname"
depends=('dbus-python' 'python-dbus-signature-pyparsing')
makedepends=('git' 'python-setuptools')
checkdepends=('python-hypothesis' 'python-hs-dbus-signature')
source=(
"${_srcname}-${pkgver}.tar.gz::https://github.com/stratis-storage/${_srcname}/archive/v${pkgver}.tar.gz"
)
sha256sums=('df54a6f37ccd3b3f0df7f557ad8d7bdd412152b568beccd8d71cd73d4a9343e6')
check() {
cd "${_srcname}-${pkgver}"
PYTHONPATH=src python -m unittest discover -vs .
}
package() {
cd "${_srcname}-${pkgver}"
install -d -m 755 "${pkgdir}/usr/share/licenses/${pkgname}"
install -m 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}"
python setup.py install --root="${pkgdir}" --optimize=1
}
# vim: ts=2 sw=2 et:
|