Received: from out0.migadu.com (out0.migadu.com [94.23.1.103]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 437BA78110D for ; Fri, 21 Jan 2022 19:49: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=1642794108; 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=PC/ITiNmkevH1J6G/d/o7WdOx7dOdr5sjNlWYd7ForI=; b=nya5N1Gp/hlTMPA3iPWrVfuwCmnJ+ubz2nquNCHpAqSjJqNNH03a5uHOOmP2QfCtKTJdvf r2qCa4EBK8ZyHtpG16Na81FOA2Zl61VxhXCBf6I7Zl1VP7h41ifPvwlSBjHyxbkoKJ4sok Nf1u3rItOcc9dn5Ff2ABRHss0flm2x4= From: Edd Salkield To: alpine-aports@lists.alpinelinux.org Cc: Edd Salkield Subject: [PATCH] testing/py3-tasklib: new aport Date: Fri, 21 Jan 2022 19:41:07 +0000 Message-Id: <20220121194107.25494-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/GothenburgBitFactory/tasklib A Python library for interacting with taskwarrior databases --- testing/py3-tasklib/APKBUILD | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 testing/py3-tasklib/APKBUILD diff --git a/testing/py3-tasklib/APKBUILD b/testing/py3-tasklib/APKBUILD new file mode 100644 index 0000000000..5ec639bfe4 --- /dev/null +++ b/testing/py3-tasklib/APKBUILD @@ -0,0 +1,24 @@ +# Contributor: Edd Salkield +# Maintainer: Edd Salkield +pkgname=py3-tasklib +pkgver=2.4.3 +pkgrel=0 +pkgdesc="A Python library for interacting with taskwarrior databases" +url="https://github.com/GothenburgBitFactory/tasklib" +arch="noarch" +license="BSD-3-Clause" +depends="python3 task" +makedepends="py3-setuptools" +source="$pkgname-$pkgver.tar.gz::https://github.com/GothenburgBitFactory/tasklib/archive/refs/tags/$pkgver.tar.gz" +builddir="$srcdir/tasklib-$pkgver" +options="!check" # no upstream tests + +package() { + python3 setup.py install \ + --prefix=/usr \ + --root="$pkgdir" \ + --single-version-externally-managed +} +sha512sums=" +438211da96dcb5a80115b0375f6a425f4629de3e49379bb9d98f9e10342c66d2bb35b92cbd794d1fe78741fc58d89a5edc16b10ab7eb22275c9f9f0a4a87e295 py3-tasklib-2.4.3.tar.gz +" -- 2.34.1