Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 59FC3780FD0 for ; Thu, 20 Jan 2022 20:58:31 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=salkield.uk; s=key1; t=1642711768; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=RABUab9GC9vcAlxXOxIH3IRazKJ9Lbt0TSGgW9wwWM0=; b=LsD6cSj3d/huM9Hpb4rWzYzRtbxSWU78ItA/zdt5tzqySDcUCsJn4MESCxf//vU/NF6Ohv QYliVf0ye9NYFzLyLgtlsCB+to3fIgc2XaJKLzx5rEKPqjN1bSPdZdhH9J2QJmESwQ2uzt hIpAxyfb21VJEPjdXXIv/S+HRuVjbak= From: Edd Salkield To: alpine-aports@lists.alpinelinux.org Cc: Edd Salkield Subject: [PATCH] testing/vit: new aport Date: Thu, 20 Jan 2022 20:48:19 +0000 Message-Id: <20220120204819.12754-1-edd@salkield.uk> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: salkield.uk https://github.com/vit-project/vit Lightweight, fast, curses-based front end to Taskwarrior --- testing/vit/APKBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 testing/vit/APKBUILD diff --git a/testing/vit/APKBUILD b/testing/vit/APKBUILD new file mode 100644 index 0000000000..d95147eb9e --- /dev/null +++ b/testing/vit/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: Edd Salkield +# Maintainer: Edd Salkield +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 task" +makedepends="py3-setuptools" +checkdepends="python3-dev" +source="$pkgname-$pkgver.tar.gz::https://github.com/vit-project/$pkgname/archive/refs/tags/v$pkgver.tar.gz" + +build() { + python3 setup.py build +} + +check() { + python3 setup.py test +} + +package() { + python3 setup.py install \ + --prefix=/usr \ + --root="$pkgdir" \ + --single-version-externally-managed +} +sha512sums=" +eaad324e7a5eb85fbdee003b8b51a4799d3a3fba645c984ed276478bdc3b0bc6327f4476ab70373afbdf306f9248a3db63e465375e998ec117be62082d7a0d6a vit-2.2.0b1.tar.gz +" -- 2.34.1