Package Details: g810-led-git 0.4.3.r1.efa3c35-1

Git Clone URL: https://aur.archlinux.org/g810-led-git.git (read-only, click to copy)
Package Base: g810-led-git
Description: Linux led controller for Logitech G213, G410, G413. G512, G513, G610, G810, G815, G910 and GPRO Keyboards
Upstream URL: https://github.com/matmoul/g810-led
Keywords: g213 g410 g413 g512 g513 g610 g810 g815 g910 gpro logitech
Licenses: GPL3
Provides: g213-led, g410-led, g413-led, g512-led, g513-led, g610-led, g810-led, g815-led, g910-led, gpro-led
Submitter: matmoul
Maintainer: None
Last Packager: matmoul
Votes: 31
Popularity: 0.055455
First Submitted: 2017-01-23 02:24 (UTC)
Last Updated: 2023-01-14 22:04 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

1 2 3 Next › Last »

ctouze commented on 2024-04-02 04:31 (UTC)

thanks, it works

laasonen commented on 2024-03-05 13:11 (UTC)

Adding this sed command to the build function would fix the PKGBUILD:

build() {
    cd "${_githubrepo}"
    sed -i '/#include <iostream>/a #include <cstdint>' src/helpers/help.h
    make bin
}

clacsonduro commented on 2024-01-04 11:55 (UTC)

Thanks to @TheLateMate. Now it's working correctly

NeWolf commented on 2023-06-18 15:45 (UTC)

can't compile

==> Starting build()...
g++ -Dhidapi -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions         -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security         -fstack-clash-protection -fcf-protection -Wp,-D_GLIBCXX_ASSERTIONS -std=gnu++11 -DVERSION=\"0.4.3\" -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now src/main.cpp src/helpers/help.cpp src/helpers/utils.cpp src/classes/Keyboard.cpp -o bin/g810-led -lhidapi-hidraw
In file included from src/main.cpp:23:
src/helpers/help.h:24:14: warning: elaborated-type-specifier for a scoped enum must not use the ‘class’ keyword
   24 |         enum class KeyboardFeatures : uint16_t {
      |         ~~~~ ^~~~~
      |              -----
src/helpers/help.h:24:37: error: found ‘:’ in nested-name-specifier, expected ‘::’
   24 |         enum class KeyboardFeatures : uint16_t {
      |                                     ^
      |                                     ::
src/helpers/help.h:24:20: error: ‘KeyboardFeatures’ has not been declared
   24 |         enum class KeyboardFeatures : uint16_t {
      |                    ^~~~~~~~~~~~~~~~
src/helpers/help.h:24:48: error: expected unqualified-id before ‘{’ token
   24 |         enum class KeyboardFeatures : uint16_t {
      |                                                ^
src/helpers/help.h:59:16: error: ‘KeyboardFeatures’ does not name a type
   59 |         inline KeyboardFeatures operator|(KeyboardFeatures a, KeyboardFeatures b);
      |                ^~~~~~~~~~~~~~~~
src/helpers/help.h:61:9: error: ‘KeyboardFeatures’ does not name a type
   61 |         KeyboardFeatures getKeyboardFeatures(std::string cmdName);
      |         ^~~~~~~~~~~~~~~~
In file included from src/helpers/help.cpp:17:
src/helpers/help.h:24:14: warning: elaborated-type-specifier for a scoped enum must not use the ‘class’ keyword
   24 |         enum class KeyboardFeatures : uint16_t {
      |         ~~~~ ^~~~~
      |              -----
src/helpers/help.h:24:37: error: found ‘:’ in nested-name-specifier, expected ‘::’
   24 |         enum class KeyboardFeatures : uint16_t {
      |                                     ^
      |                                     ::
src/helpers/help.h:24:20: error: ‘KeyboardFeatures’ has not been declared
   24 |         enum class KeyboardFeatures : uint16_t {
      |                    ^~~~~~~~~~~~~~~~
src/helpers/help.h:24:48: error: expected unqualified-id before ‘{’ token
   24 |         enum class KeyboardFeatures : uint16_t {
      |                                                ^
src/helpers/help.h:59:16: error: ‘KeyboardFeatures’ does not name a type
   59 |         inline KeyboardFeatures operator|(KeyboardFeatures a, KeyboardFeatures b);
      |                ^~~~~~~~~~~~~~~~
src/helpers/help.h:61:9: error: ‘KeyboardFeatures’ does not name a type
   61 |         KeyboardFeatures getKeyboardFeatures(std::string cmdName);
      |         ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:27:16: error: ‘KeyboardFeatures’ does not name a type
   27 |         inline KeyboardFeatures operator|(KeyboardFeatures a, KeyboardFeatures b) {
      |                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:31:9: error: ‘KeyboardFeatures’ does not name a type
   31 |         KeyboardFeatures getKeyboardFeatures(string cmdName) {
      |         ^~~~~~~~~~~~~~~~
src/helpers/help.cpp: In function ‘void help::usage(char*)’:
src/helpers/help.cpp:48:17: error: ‘KeyboardFeatures’ was not declared in this scope
   48 |                 KeyboardFeatures features = getKeyboardFeatures(cmdName);
      |                 ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:55:21: error: ‘features’ was not declared in this scope
   55 |                 if((features | KeyboardFeatures::setall) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:55:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   55 |                 if((features | KeyboardFeatures::setall) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:57:21: error: ‘features’ was not declared in this scope
   57 |                 if((features | KeyboardFeatures::setgroup) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:57:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   57 |                 if((features | KeyboardFeatures::setgroup) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:59:21: error: ‘features’ was not declared in this scope
   59 |                 if((features | KeyboardFeatures::setkey) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:59:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   59 |                 if((features | KeyboardFeatures::setkey) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:61:21: error: ‘features’ was not declared in this scope
   61 |                 if((features | KeyboardFeatures::setregion) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:61:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   61 |                 if((features | KeyboardFeatures::setregion) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:63:21: error: ‘features’ was not declared in this scope
   63 |                 if((features | KeyboardFeatures::gkeys) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:63:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   63 |                 if((features | KeyboardFeatures::gkeys) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:70:21: error: ‘features’ was not declared in this scope
   70 |                 if((features | KeyboardFeatures::commit) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:70:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   70 |                 if((features | KeyboardFeatures::commit) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:71:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   71 |                         if((features | KeyboardFeatures::setall) == features)
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:73:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   73 |                         if((features | KeyboardFeatures::setgroup) == features)
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:75:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   75 |                         if((features | KeyboardFeatures::setkey) == features)
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:81:21: error: ‘features’ was not declared in this scope
   81 |                 if((features | KeyboardFeatures::userstoredlighting) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:81:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   81 |                 if((features | KeyboardFeatures::userstoredlighting) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:90:21: error: ‘features’ was not declared in this scope
   90 |                 if((features | KeyboardFeatures::poweronfx) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:90:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   90 |                 if((features | KeyboardFeatures::poweronfx) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:94:21: error: ‘features’ was not declared in this scope
   94 |                 if((features | KeyboardFeatures::onboardmode) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:94:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
   94 |                 if((features | KeyboardFeatures::onboardmode) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:113:21: error: ‘features’ was not declared in this scope
  113 |                 if((features | KeyboardFeatures::rgb) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:113:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  113 |                 if((features | KeyboardFeatures::rgb) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:115:21: error: ‘features’ was not declared in this scope
  115 |                 if((features | KeyboardFeatures::intensity) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:115:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  115 |                 if((features | KeyboardFeatures::intensity) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:117:21: error: ‘features’ was not declared in this scope
  117 |                 if((features | KeyboardFeatures::setregion) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:117:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  117 |                 if((features | KeyboardFeatures::setregion) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:123:21: error: ‘features’ was not declared in this scope
  123 |                 if((features | KeyboardFeatures::setkey) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:123:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  123 |                 if((features | KeyboardFeatures::setkey) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:125:21: error: ‘features’ was not declared in this scope
  125 |                 if((features | KeyboardFeatures::setgroup) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:125:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  125 |                 if((features | KeyboardFeatures::setgroup) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp: In function ‘void help::keys(char*)’:
src/helpers/help.cpp:135:17: error: ‘KeyboardFeatures’ was not declared in this scope
  135 |                 KeyboardFeatures features = getKeyboardFeatures(cmdName);
      |                 ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:142:21: error: ‘features’ was not declared in this scope
  142 |                 if((features | KeyboardFeatures::logo1) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:142:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  142 |                 if((features | KeyboardFeatures::logo1) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:144:21: error: ‘features’ was not declared in this scope
  144 |                 if((features | KeyboardFeatures::setindicators) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:144:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  144 |                 if((features | KeyboardFeatures::setindicators) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:146:21: error: ‘features’ was not declared in this scope
  146 |                 if((features | KeyboardFeatures::gkeys) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:146:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  146 |                 if((features | KeyboardFeatures::gkeys) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:150:21: error: ‘features’ was not declared in this scope
  150 |                 if((features | KeyboardFeatures::multimedia) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:150:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  150 |                 if((features | KeyboardFeatures::multimedia) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:153:21: error: ‘features’ was not declared in this scope
  153 |                 if((features | KeyboardFeatures::numpad) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:153:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  153 |                 if((features | KeyboardFeatures::numpad) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:160:21: error: ‘features’ was not declared in this scope
  160 |                 if((features | KeyboardFeatures::logo1) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:160:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  160 |                 if((features | KeyboardFeatures::logo1) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:163:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  163 |                         if((features | KeyboardFeatures::logo2) == features)
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:168:21: error: ‘features’ was not declared in this scope
  168 |                 if((features | KeyboardFeatures::setindicators) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:168:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  168 |                 if((features | KeyboardFeatures::setindicators) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:178:21: error: ‘features’ was not declared in this scope
  178 |                 if((features | KeyboardFeatures::gkeys) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:178:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  178 |                 if((features | KeyboardFeatures::gkeys) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:200:21: error: ‘features’ was not declared in this scope
  200 |                 if((features | KeyboardFeatures::multimedia) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:200:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  200 |                 if((features | KeyboardFeatures::multimedia) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:217:21: error: ‘features’ was not declared in this scope
  217 |                 if((features | KeyboardFeatures::numpad) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:217:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  217 |                 if((features | KeyboardFeatures::numpad) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:243:21: error: ‘features’ was not declared in this scope
  243 |                 if((features | KeyboardFeatures::setkey) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:243:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  243 |                 if((features | KeyboardFeatures::setkey) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp: In function ‘void help::effects(char*)’:
src/helpers/help.cpp:271:17: error: ‘KeyboardFeatures’ was not declared in this scope
  271 |                 KeyboardFeatures features = getKeyboardFeatures(cmdName);
      |                 ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:279:21: error: ‘features’ was not declared in this scope
  279 |                 if((features | KeyboardFeatures::userstoredlighting) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:279:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  279 |                 if((features | KeyboardFeatures::userstoredlighting) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:294:21: error: ‘features’ was not declared in this scope
  294 |                 if((features | KeyboardFeatures::logo1) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:294:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  294 |                 if((features | KeyboardFeatures::logo1) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:298:21: error: ‘features’ was not declared in this scope
  298 |                 if((features | KeyboardFeatures::rgb) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:298:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  298 |                 if((features | KeyboardFeatures::rgb) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:300:37: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  300 |                 else if((features | KeyboardFeatures::rgb) == features)
      |                                     ^~~~~~~~~~~~~~~~
src/helpers/help.cpp: In function ‘void help::samples(char*)’:
src/helpers/help.cpp:311:17: error: ‘KeyboardFeatures’ was not declared in this scope
  311 |                 KeyboardFeatures features = getKeyboardFeatures(cmdName);
      |                 ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:317:21: error: ‘features’ was not declared in this scope
  317 |                 if((features | KeyboardFeatures::setkey) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:317:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  317 |                 if((features | KeyboardFeatures::setkey) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:319:21: error: ‘features’ was not declared in this scope
  319 |                 if((features | KeyboardFeatures::setall) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:319:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  319 |                 if((features | KeyboardFeatures::setall) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:321:21: error: ‘features’ was not declared in this scope
  321 |                 if((features | KeyboardFeatures::setgroup) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:321:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  321 |                 if((features | KeyboardFeatures::setgroup) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:323:21: error: ‘features’ was not declared in this scope
  323 |                 if((features | KeyboardFeatures::setregion) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:323:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  323 |                 if((features | KeyboardFeatures::setregion) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:331:21: error: ‘features’ was not declared in this scope
  331 |                 if((features | KeyboardFeatures::poweronfx) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:331:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  331 |                 if((features | KeyboardFeatures::poweronfx) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:334:21: error: ‘features’ was not declared in this scope
  334 |                 if((features | KeyboardFeatures::onboardmode) == features)
      |                     ^~~~~~~~
src/helpers/help.cpp:334:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  334 |                 if((features | KeyboardFeatures::onboardmode) == features)
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:337:21: error: ‘features’ was not declared in this scope
  337 |                 if((features | KeyboardFeatures::commit) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:337:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  337 |                 if((features | KeyboardFeatures::commit) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:339:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  339 |                         if((features | KeyboardFeatures::setall) == features)
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:341:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  341 |                         if((features | KeyboardFeatures::setgroup) == features)
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:343:40: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  343 |                         if((features | KeyboardFeatures::setkey) == features) {
      |                                        ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:353:21: error: ‘features’ was not declared in this scope
  353 |                 if((features | KeyboardFeatures::intensity) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:353:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  353 |                 if((features | KeyboardFeatures::intensity) == features) {
      |                                ^~~~~~~~~~~~~~~~
src/helpers/help.cpp:360:21: error: ‘features’ was not declared in this scope
  360 |                 if((features | KeyboardFeatures::setkey) == features) {
      |                     ^~~~~~~~
src/helpers/help.cpp:360:32: error: ‘KeyboardFeatures’ is not a class, namespace, or enumeration
  360 |                 if((features | KeyboardFeatures::setkey) == features) {
      |                                ^~~~~~~~~~~~~~~~
make: *** [makefile:35: bin/g810-led] Error 1
==> ERROR: A failure occurred in build().
    Aborting...

TheLateMate commented on 2023-06-13 07:20 (UTC)

does not compile by default. Had to clone it add "#include <cstdint>" to src/helpers/help.h

yaakoss commented on 2023-05-06 19:26 (UTC)

does not compile with gcc13.1 but compiles and works well with gcc12.2

matmoul commented on 2022-11-30 19:36 (UTC)

@fsyy CVE fixed in new version.

fsyy commented on 2022-11-30 12:19 (UTC)

seems the udev rules should be updated.

https://www.cve.org/CVERecord?id=CVE-2022-46338

uint2048_t commented on 2022-07-10 19:04 (UTC)

Upstream makefile is broken. Never copies over needed systemd unit: g810-led/systemd/g810-led.service

lifestronaut commented on 2021-05-16 12:36 (UTC) (edited on 2021-05-16 12:48 (UTC) by lifestronaut)

@proton It appears that link or site is dead. Could you please either paste the no-systemd pkgbuild here, or on another pastebin service?