diff options
Diffstat (limited to 'testing')
-rw-r--r-- | testing/gkraken/60-gkraken.rules | 1 | ||||
-rw-r--r-- | testing/gkraken/APKBUILD | 38 | ||||
-rw-r--r-- | testing/gkraken/no-gettext-python-support.patch | 15 |
3 files changed, 0 insertions, 54 deletions
diff --git a/testing/gkraken/60-gkraken.rules b/testing/gkraken/60-gkraken.rules deleted file mode 100644 index 93cc1c649d..0000000000 --- a/testing/gkraken/60-gkraken.rules +++ /dev/null @@ -1 +0,0 @@ -SUBSYSTEMS=="usb", ATTRS{idVendor}=="1e71", ATTRS{idProduct}=="170e", MODE="0666" diff --git a/testing/gkraken/APKBUILD b/testing/gkraken/APKBUILD deleted file mode 100644 index 738402b92a..0000000000 --- a/testing/gkraken/APKBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# Contributor: Rasmus Thomsen <oss@cogitri.dev> -# Maintainer: Rasmus Thomsen <oss@cogitri.dev> -pkgname=gkraken -pkgver=0.14.0 -pkgrel=0 -pkgdesc="GUI that allows to control cooling of NZXT Kraken X pumps from Linux" -url="https://gitlab.com/leinardi/gkraken" -arch="noarch" -license="GPL-3.0-or-later" -depends="python3 libdazzle libnotify py3-gobject3 py3-rx liquidctl py3-injector - py3-matplotlib py3-peewee py3-xdg" -makedepends="meson gobject-introspection-dev gtk+3.0-dev" -options="!check" # no tests -source="https://gitlab.com/leinardi/gkraken/-/archive/$pkgver/gkraken-$pkgver.tar.gz - 60-gkraken.rules - no-gettext-python-support.patch" - -build() { - meson \ - --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --localstatedir=/var \ - --buildtype=plain \ - . output - ninja -C output -} - -package() { - DESTDIR="$pkgdir" ninja -C output install - - mkdir -p "$pkgdir"/usr/lib/udev/rules.d - install -m644 "$srcdir"/60-gkraken.rules "$pkgdir"/usr/lib/udev/rules.d/60-gkraken.rules -} - -sha512sums="adece1bf979dab9a2c9beb076666c7572cfb0d01c8bdd476f75d5b24291f0b3fca7196460a0396344af24fe8439ef6ae0f1c8951ca651d3978fc53a8465a6235 gkraken-0.14.0.tar.gz -25f658d75366300cf72d954024937b251c058fba8de531c3cfcbf0597f8ab1c7822f8e422146284d9f79c5f7e94cd5f476a5161389f828b112f8847cd73295a6 60-gkraken.rules -2b255e29e50fae08880f99940c2f4eeba59da7371f6874adf2607895909c1bd274cd149d56d0530041c67ceeafa4b028cf47c6b0605fc1dede00104bb0e6b4e5 no-gettext-python-support.patch" diff --git a/testing/gkraken/no-gettext-python-support.patch b/testing/gkraken/no-gettext-python-support.patch deleted file mode 100644 index 6976eef0f6..0000000000 --- a/testing/gkraken/no-gettext-python-support.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/gkraken/__main__.py b/gkraken/__main__.py -index 791d425..812628f 100755 ---- a/gkraken/__main__.py -+++ b/gkraken/__main__.py -@@ -44,10 +44,6 @@ set_log_level(logging.INFO) - - LOG = logging.getLogger(__name__) - --# POSIX locale settings --locale.setlocale(locale.LC_ALL, locale.getlocale()) --locale.bindtextdomain(APP_PACKAGE_NAME, LOCALE_DIR) -- - gettext.bindtextdomain(APP_PACKAGE_NAME, LOCALE_DIR) - gettext.textdomain(APP_PACKAGE_NAME) - |