Date: Friday, April 7, 2023 @ 05:50:50
Author: felixonmars
Revision: 1440658
archrelease: copy trunk to community-staging-any
Added:
liquidctl/repos/community-staging-any/
liquidctl/repos/community-staging-any/PKGBUILD
(from rev 1440657, liquidctl/trunk/PKGBUILD)
liquidctl/repos/community-staging-any/keys/
----------+
PKGBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
Copied: liquidctl/repos/community-staging-any/PKGBUILD (from rev 1440657,
liquidctl/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-07 05:50:50 UTC (rev 1440658)
@@ -0,0 +1,45 @@
+# Maintainer: Filipe LaĆns (FFY00) <[email protected]>
+
+pkgname=liquidctl
+pkgver=1.12.1
+pkgrel=2
+arch=('any')
+url='https://github.com/liquidctl/liquidctl'
+license=('GPL3')
+pkgdesc='Cross-platform CLI and Python drivers for AIO liquid coolers and
other devices'
+depends=('python' 'python-docopt' 'python-pyusb' 'python-hidapi'
'python-colorlog' 'i2c-tools' 'python-pillow' 'python-crcmod')
+makedepends=('git' 'python-setuptools-scm' 'python-build' 'python-installer'
'python-wheel')
+checkdepends=('python-pytest')
+source=("git+$url.git?signed#tag=v$pkgver")
+validpgpkeys=('23F335ED4E829797734B22F65841AF7406AF7AD0') # Jonas Tadeu Silva
Malaco Filho <[email protected]>
+sha512sums=('SKIP')
+
+build() {
+ cd "${pkgname}"
+
+ export DIST_NAME='Arch Linux'
+ export DIST_PACKAGE="$pkgver-$pkgrel"
+ export SETUPTOOLS_SCM_PRETEND_VERSION="$pkgver"
+
+ python -m build --wheel --no-isolation
+}
+
+check() {
+ cd "${pkgname}"
+
+ mkdir runtime
+ XDG_RUNTIME_DIR=runtime python -m pytest
+}
+
+package() {
+ cd "${pkgname}"
+
+ python -m installer --destdir="${pkgdir}" dist/*.whl
+
+ install -Dm 644 extra/linux/71-liquidctl.rules
"${pkgdir}"/usr/lib/udev/rules.d/71-liquidctl.rules
+
+ # Install documentation
+ install -dm 755 "${pkgdir}"/usr/share/doc/"${pkgname}"
+ cp -r -a --no-preserve=ownership docs/*
"${pkgdir}"/usr/share/doc/"${pkgname}"
+ install -Dm 644 liquidctl.8 "${pkgdir}"/usr/share/man/man8/liquidctl.8
+}