mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
35 lines
905 B
Text
35 lines
905 B
Text
# Contributor: Galen Abell <galen@galenabell.com>
|
|
# Maintainer: Galen Abell <galen@galenabell.com>
|
|
pkgname=py3-remind
|
|
pkgver=0.17.0
|
|
pkgrel=0
|
|
pkgdesc="Python library to convert between Remind and iCalendar"
|
|
url="https://github.com/jspricke/python-remind"
|
|
arch="noarch"
|
|
license="GPL-3.0-only"
|
|
depends="python3 remind py3-dateutil py3-tz py3-tzlocal py3-vobject"
|
|
makedepends="
|
|
py3-coverage
|
|
py3-nose
|
|
py3-setuptools
|
|
py3-wheel
|
|
"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/jspricke/python-remind/archive/v$pkgver.tar.gz"
|
|
options="!check"
|
|
builddir="$srcdir/python-remind-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
PYTHONPATH="." nosetests
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
c5282fc7d70f11a29d2f989959c2fa123712de7c6bc1189dd18d9de925870b5e93c72b31232f36effd9c2bca0cdcfeff27811a572b7df0379149a31167be5532 py3-remind-0.17.0.tar.gz
|
|
"
|