mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 02:05:16 +03:00
29 lines
858 B
Text
29 lines
858 B
Text
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
_pyname=PyDispatcher
|
|
pkgname=py3-pydispatcher
|
|
pkgver=2.0.7
|
|
pkgrel=0
|
|
pkgdesc="Loosely-coupled message passing between Python objects (signal senders and receivers)"
|
|
url="https://github.com/mcfletch/pydispatcher"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
makedepends="python3-dev py3-setuptools"
|
|
source="https://pypi.python.org/packages/source/P/PyDispatcher/PyDispatcher-$pkgver.tar.gz"
|
|
builddir="$srcdir/PyDispatcher-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test -s tests
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
cef4b07e7abcbef54b3af12b49a27e40d145f76d5aa51dfcedc38d76d51c4076c605c0b55e05881dc26ac260a583f119864fa4b4e8ab21d156231b07ef418916 PyDispatcher-2.0.7.tar.gz
|
|
"
|