mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
27 lines
849 B
Plaintext
27 lines
849 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-async-timeout
|
|
_pkgname=async-timeout
|
|
pkgver=1.2.0
|
|
pkgrel=0
|
|
pkgdesc="Timeout context manager for asyncio programs"
|
|
url="https://pypi.python.org/pypi/async_timeout"
|
|
arch="noarch"
|
|
license="ASL 2.0"
|
|
depends="python3"
|
|
makedepends="python3-dev"
|
|
source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python3 setup.py install --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="81a8d3fd8a6756335ce7ea292afd0ba508ea120482dfc4526017dbf6ee809e6828818653be25dee123e8626fc89cc49cfbcff41748ec950b8797b2bb21f262db py3-async-timeout-1.2.0.tar.gz"
|