Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 6643C7819AC for <~alpine/aports@lists.alpinelinux.org>; Tue, 20 Oct 2020 02:23:50 +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=cmpwn.com; s=key1; t=1603160630; 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: in-reply-to:in-reply-to:references:references; bh=Q1I1zY0FAFq/MbqPMWTcC8h6CKaVdJuqOeyxYjno6yw=; b=UeS1hRG+xubcMqZzwPloxy6Gpk8j+VyWiWXSp8zMDY4Y8CHYy9olpHLUvkOykWsAu9YHD0 CFbpC6V23GhYivNtm+2ZtEJCtoNPzcZ0A7aGirtZwMZYuSF+WEDUz3b6+2ORtfDJcT5Fu1 rSwibqfTWUW5NY8pK0Vq03WbYetIlTL11deR067ksfGDplaEVUnDFUP+qBVDIk09a/5p45 APGBPtobE1RI0s+L8g2HJfywaZDo0Un339mDleCT+OJ6gwF+DU50u2J+pUucemY4/enOyw xv36yiTYC2sMXSy5xz62SSfmf13iAEv9oXwP04z6+8g0+ivqeiaHzg/vXl3iXA== From: Drew DeVault To: ~alpine/aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [PATCH 4/5] testing/py3-intervaltree: new aport Date: Mon, 19 Oct 2020 22:23:36 -0400 Message-Id: <20201020022337.3724-5-sir@cmpwn.com> In-Reply-To: <20201020022337.3724-1-sir@cmpwn.com> References: <20201020022337.3724-1-sir@cmpwn.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.00 --- testing/py3-intervaltree/APKBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 testing/py3-intervaltree/APKBUILD diff --git a/testing/py3-intervaltree/APKBUILD b/testing/py3-intervaltree/APKBUILD new file mode 100644 index 0000000000..a33250b8ba --- /dev/null +++ b/testing/py3-intervaltree/APKBUILD @@ -0,0 +1,28 @@ +# Maintainer: Drew DeVault +pkgname=py3-intervaltree +_pyname=intervaltree +pkgver=3.1.0 +pkgrel=0 +pkgdesc="Editable interval tree data structure for Python" +url="https://github.com/chaimleib/intervaltree" +arch="noarch" +license="Apache-2.0" +depends="python3 py3-sortedcontainers" +makedepends="py3-setuptools" +_pypiprefix="${_pyname%${_pyname#?}}" +source="https://files.pythonhosted.org/packages/source/$_pypiprefix/$_pyname/$_pyname-$pkgver.tar.gz" +builddir="$srcdir/$_pyname-$pkgver" + +build() { + python3 setup.py build +} + +check() { + python3 setup.py check +} + +package() { + python3 setup.py install --root="$pkgdir" --optimize=1 +} + +sha512sums="adb49726912ad6e9cf6c0985b4fb94df91b4ef54aa2eb327186d7f15bc992745d81654d49f1dd2ce95f7173683ba2a072787ef1e8b389cd9b7e23b9ae743906a intervaltree-3.1.0.tar.gz" -- 2.28.0