Date: Thursday, April 6, 2023 @ 15:47:55
Author: dvzrv
Revision: 1439487
archrelease: copy trunk to community-x86_64
Added:
python-pyliblo/repos/community-x86_64/PKGBUILD
(from rev 1439485, python-pyliblo/trunk/PKGBUILD)
Deleted:
python-pyliblo/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 86 ++++++++++++++++++++++++++++++++++---------------------------
1 file changed, 48 insertions(+), 38 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-04-06 15:47:52 UTC (rev 1439486)
+++ PKGBUILD 2023-04-06 15:47:55 UTC (rev 1439487)
@@ -1,38 +0,0 @@
-# Maintainer: David Runge <[email protected]>
-# Contributor: Llewelyn Trahaearn <WoefulDerelict at GMail dot com>
-# Contributor: SpepS <dreamspepser at yahoo dot it>
-
-_name=pyliblo
-pkgname=python-pyliblo
-pkgver=0.10.0
-pkgrel=9
-pkgdesc='Python wrapper for the liblo OSC library'
-arch=('x86_64')
-url="http://das.nasophon.de/pyliblo/"
-license=('LGPL2.1')
-depends=('python' 'liblo')
-makedepends=('cython' 'python-setuptools')
-checkdepends=('python-pytest')
-source=("${_name}-${pkgver}.tar.gz::https://github.com/dsacre/pyliblo/archive/refs/tags/${pkgver}.tar.gz")
-sha512sums=('c475ddfea9abf9e155deed12ab01ff2e585a6ed2946fac8d5017f36e3aee84b294f21cf5d0dd79098a4bd2f7911beed791bed67124cec3fc4bbd5087d42b4eed')
-b2sums=('dc14ab1dd64cdff5946d0e05a871c7cc75be89e8a57b12302cbee3bbeab1e9e1cfedce493fd4dbb6a4ba5a095a8539a4d4b7c9fe04431cf8376812b01bf78001')
-
-build() {
- cd "${_name}-${pkgver}"
- python setup.py build
-}
-
-check() {
- local _pyver=$(python -c 'import sys; print(".".join(map(str,
sys.version_info[:2])))')
- cd "${_name}-${pkgver}"
- export PYTHONPATH="build/lib.linux-${CARCH}-${_pyver}/:${PYTHONPATH}"
- pytest -v
-}
-
-package_python-pyliblo() {
- cd "${_name}-${pkgver}"
- python setup.py install --optimize=1 --root="${pkgdir}/"
- # docs
- install -vDm 644 {NEWS,README} \
- -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
Copied: python-pyliblo/repos/community-x86_64/PKGBUILD (from rev 1439485,
python-pyliblo/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-04-06 15:47:55 UTC (rev 1439487)
@@ -0,0 +1,48 @@
+# Maintainer: David Runge <[email protected]>
+# Contributor: Llewelyn Trahaearn <WoefulDerelict at GMail dot com>
+# Contributor: SpepS <dreamspepser at yahoo dot it>
+
+_name=pyliblo
+pkgname=python-pyliblo
+pkgver=0.10.0
+pkgrel=11
+pkgdesc='Python wrapper for the liblo OSC library'
+arch=(x86_64)
+url="http://das.nasophon.de/pyliblo/"
+license=(LGPL2.1)
+depends=(
+ glibc
+ liblo
+ python
+)
+makedepends=(
+ cython
+ python-build
+ python-installer
+ python-setuptools
+ python-wheel
+)
+checkdepends=(python-pytest)
+source=($_name-$pkgver.tar.gz::https://github.com/dsacre/pyliblo/archive/refs/tags/$pkgver.tar.gz)
+sha512sums=('c475ddfea9abf9e155deed12ab01ff2e585a6ed2946fac8d5017f36e3aee84b294f21cf5d0dd79098a4bd2f7911beed791bed67124cec3fc4bbd5087d42b4eed')
+b2sums=('dc14ab1dd64cdff5946d0e05a871c7cc75be89e8a57b12302cbee3bbeab1e9e1cfedce493fd4dbb6a4ba5a095a8539a4d4b7c9fe04431cf8376812b01bf78001')
+
+build() {
+ cd $_name-$pkgver
+ python -m build --wheel --no-isolation
+}
+
+check() {
+ local site_packages=$(python -c "import site;
print(site.getsitepackages()[0])")
+
+ cd $_name-$pkgver
+ python -m installer --destdir=test_dir dist/*.whl
+ export PYTHONPATH="test_dir/$site_packages:$PYTHONPATH"
+ pytest -vv
+}
+
+package_python-pyliblo() {
+ cd $_name-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+ install -vDm 644 {NEWS,README} -t "$pkgdir/usr/share/doc/$pkgname/"
+}