mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-13 11:56:41 +02:00
35 lines
1 KiB
Text
35 lines
1 KiB
Text
# Contributor: Henrik Riomar <henrik.riomar@gmail.com>
|
|
# Maintainer: Henrik Riomar <henrik.riomar@gmail.com>
|
|
pkgname=getmail6
|
|
pkgver=6.19.07
|
|
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="
|
|
34153ac53cbb9698108eef70957d374d7c02fc5ffd72ba940461ad40bbc582f7992bf7c8060ac33128d01447728bb820536a32f1a3bd97a3ecbb523fb9a974bf getmail-6.19.07.tar.gz
|
|
"
|