From 011d8c2157231a1c29d64e5d9792d360acbbbffc Mon Sep 17 00:00:00 2001 From: Magnus Sandin Date: Sun, 18 Aug 2024 05:36:18 +0200 Subject: [PATCH] testing/py3-pltable: new aport https://github.com/platomav/PLTable Library designed to represent tabular data in appealing text tables --- testing/py3-pltable/APKBUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 testing/py3-pltable/APKBUILD diff --git a/testing/py3-pltable/APKBUILD b/testing/py3-pltable/APKBUILD new file mode 100644 index 00000000000..14c7896f407 --- /dev/null +++ b/testing/py3-pltable/APKBUILD @@ -0,0 +1,35 @@ +# Contributor: Magnus Sandin +# Maintainer: Magnus Sandin +pkgname=py3-pltable +pkgver=1.1.0 +pkgrel=0 +pkgdesc="A Python library designed to make it quick and easy to represent tabular data in visually appealing text tables" +url="https://github.com/platomav/PLTable" +arch="noarch" +options="!check" # No upstream checks available +depends="python3" +license="BSD-3-Clause" +makedepends=" + py3-gpep517 + py3-setuptools + py3-wheel + " +subpackages="$pkgname-pyc" +source="https://files.pythonhosted.org/packages/53/b9/0276a2c7699255c9a8e459b093db4414162607dcf42636c0bbe4be1bf8e4/PLTable-$pkgver.tar.gz" +builddir="$srcdir/PLTable-$pkgver" + +build() { + gpep517 build-wheel \ + --wheel-dir .dist \ + --output-fd 3 3>&1 >&2 +} + +package() { + gpep517 install-wheel \ + --destdir "$pkgdir" \ + .dist/*.whl +} + +sha512sums=" +91ccf00c2bb80a6f0d3b866242a539cdc6374dec7d8f89671c32dba05fefea893dc253cf9d91ca58f6e3fb348b04b1c7da83d1fc0d770e9f44c2f86a8a4b0420 PLTable-1.1.0.tar.gz +"