Date: Thursday, April 6, 2023 @ 13:19:29
Author: felixonmars
Revision: 1438836
archrelease: copy trunk to community-staging-any
Added:
python-database-knotinfo/repos/community-staging-any/
python-database-knotinfo/repos/community-staging-any/PKGBUILD
(from rev 1438835, python-database-knotinfo/trunk/PKGBUILD)
----------+
PKGBUILD | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
Copied: python-database-knotinfo/repos/community-staging-any/PKGBUILD (from rev
1438835, python-database-knotinfo/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-06 13:19:29 UTC (rev 1438836)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=python-database-knotinfo
+_pyname=database_knotinfo
+pkgver=2022.12.1
+pkgrel=2
+arch=(any)
+pkgdesc='Snapshot of the complete content of the KnotInfo and LinkInfo
databases for Python'
+url='https://github.com/soehms/database_knotinfo'
+depends=(python)
+makedepends=(python-build python-installer python-wheel python-setuptools-scm)
+license=(GPL)
+source=(https://pypi.io/packages/source/d/$_pyname/$_pyname-$pkgver.tar.gz)
+sha256sums=('830a3bff9ed32f9cc63df8087c51ca6f8087317631cdcda8a6617ee8db77ca24')
+
+build() {
+ cd $_pyname-$pkgver
+ python -m build --wheel --no-isolation
+}
+
+package() {
+ cd $_pyname-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+}