~alpine/aports

testing/vit: new aport v4 APPLIED

Edd Salkield: 1
 testing/vit: new aport

 1 files changed, 32 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/3910/mbox | git am -3
Learn more about email & git

[PATCH v4] testing/vit: new aport Export this patch

https://github.com/vit-project/vit
Lightweight, fast, curses-based front end to Taskwarrior
---
Changes v3 -> v4:
 - Export TERM environment variable during check phase

 testing/vit/APKBUILD | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 testing/vit/APKBUILD

diff --git a/testing/vit/APKBUILD b/testing/vit/APKBUILD
new file mode 100644
index 0000000000..e3a81aab8b
--- /dev/null
+++ b/testing/vit/APKBUILD
@@ -0,0 +1,32 @@
# Contributor: Edd Salkield <edd@salkield.uk>
# Maintainer: Edd Salkield <edd@salkield.uk>
pkgname=vit
pkgver=2.2.0b1
pkgrel=0
pkgdesc="Lightweight, fast, curses-based front end to Taskwarrior"
url="https://github.com/vit-project/vit"
arch="noarch"
license="MIT"
depends="python3 py3-tasklib py3-urwid py3-tz py3-tzlocal"
makedepends="py3-setuptools"
source="$pkgname-$pkgver.tar.gz::https://github.com/vit-project/vit/archive/refs/tags/v$pkgver.tar.gz"

build() {
	python3 setup.py build
}

check() {
	export TERM=xterm-256color
	python3 -m unittest -v
}

package() {
	python3 setup.py install \
		--prefix=/usr \
		--root="$pkgdir" \
		--single-version-externally-managed
}

sha512sums="
eaad324e7a5eb85fbdee003b8b51a4799d3a3fba645c984ed276478bdc3b0bc6327f4476ab70373afbdf306f9248a3db63e465375e998ec117be62082d7a0d6a  vit-2.2.0b1.tar.gz
"
-- 
2.34.1
Thanks for such a quick turnaround on this package!

-- 
via https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/30020#note_209543
Any ideas why installing `py3-tzlocal` might be failing with `py3-tzlocal-2.1-r2: BAD signature` on armhf and x86?

-- 
via https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/30020#note_230746