mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
# Contributor: Henrik Riomar <henrik.riomar@gmail.com>
|
|
# Maintainer: Henrik Riomar <henrik.riomar@gmail.com>
|
|
pkgname=getmail6
|
|
pkgver=6.19.04
|
|
pkgrel=0
|
|
pkgdesc="mail retriever with support for POP3, IMAP4 and SDPS"
|
|
url="https://getmail6.org/"
|
|
arch="noarch"
|
|
license="GPL-2.0-only"
|
|
checkdepends="py3-pytest"
|
|
makedepends="py3-gpep517 py3-setuptools py3-wheel"
|
|
depends="python3"
|
|
subpackages="$pkgname-doc $pkgname-pyc"
|
|
source="https://github.com/getmail6/getmail6/archive/v$pkgver/getmail-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
python3 -m venv --clear --without-pip --system-site-packages .testenv
|
|
.testenv/bin/python3 -m installer .dist/*.whl
|
|
.testenv/bin/python3 -m pytest -v test/test.py
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" .dist/*.whl
|
|
mv "$pkgdir/usr/share/doc/getmail-$pkgver" "$pkgdir/usr/share/doc/$pkgname"
|
|
}
|
|
|
|
sha512sums="
|
|
b8cb8849867037ae207f3d37776c7aec2d0282308034e4cb55171596f40460cb2d08f8d915c48dfada49ad47a690b881de2142d994e9d139c3c1c0841b9d0471 getmail-6.19.04.tar.gz
|
|
"
|