mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-11 16:46:46 +02:00
30 lines
794 B
Text
30 lines
794 B
Text
# Maintainer: Pedro Lucas Porcellis <porcellis@eletrotupi.com>
|
|
pkgname=py3-asif
|
|
_pkgname=asif
|
|
pkgver=0.3.2
|
|
pkgrel=3
|
|
pkgdesc="asyncio-powered IRC bot framework"
|
|
url="https://github.com/minus7/asif"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-setuptools py3-gpep517"
|
|
subpackages="$pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/minus7/asif/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
options="!check" # no testsuite
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
gpep517 install-wheel --destdir "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
7bc8a1a3ed2992a0e30e6f2595564706335139513ef25ec4e632afe246f446029dbb0ff3abfa942b65b0adb91e6c1d7089f36157003fd41a84cf52ae8cc72928 py3-asif-0.3.2.tar.gz
|
|
"
|