Package Details: wl-gammarelay-rs 0.4.1-1

Git Clone URL: https://aur.archlinux.org/wl-gammarelay-rs.git (read-only, click to copy)
Package Base: wl-gammarelay-rs
Description: A simple program that provides DBus interface to control display temperature and brightness under wayland without flickering
Upstream URL: https://github.com/MaxVerevkin/wl-gammarelay-rs
Licenses: GPL-3.0-only
Submitter: bim9262
Maintainer: bim9262
Last Packager: bim9262
Votes: 7
Popularity: 0.65
First Submitted: 2022-07-04 20:17 (UTC)
Last Updated: 2024-04-28 18:56 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

flu commented on 2024-04-27 06:20 (UTC) (edited on 2024-04-27 06:22 (UTC) by flu)

4,6c4,6
< pkgver=0.3.2
< pkgrel=2
< pkgdesc="Like wl-gammarelay, but written in rust, runs on a single thread, has three times less SLOC and uses DBus (for simplicity)"
---
> pkgver=0.4.1
> pkgrel=1
> pkgdesc="Rust server/client for changing color gamma, temperature and brightness under Wayland via DBus"
12,14c12,14
< sha256sums=('6931eccf49e466fb03d48a0df87ca53a0cfc46a900a44ac4d6e85de029aba8d0')
< sha512sums=('029adde9d14a2577bd074ef3dcfecbd01f6443d3e05d9be8dab666f3425abbb9a830f5f216f5339d60d16d96424d911b6ea641064596f76cce7e1171adb80d3b')
< b2sums=('31683320016850b0063aa612755bedbef2159af8c5ab124bc47d7235e9fd854d301256269a2b84baa6b9655657b46a6a9995ebf14f4c61fba9119ffb55aa3a40')
---
> sha256sums=('42eec83de003c5f8c9c6c5abce3f0eadb80f5abb027d266bcc77183ecce14edc')
> sha512sums=('de652cc3908f7386f0c96c6a8c1dd4d4ab6a7f7ef5c99af9456729c5e1cad3e70ff7344804046b9f1bf6a37adb56dad3a50851183934de97dd10b1cdf08cb4c5')
> b2sums=('2dee927537a6117d0b6693e08bd39070f2b8a092acc2e1425497dd19db12e6fbdfd8cfea8ea0f3d80ccd794574faa0eabc3860cf290c140bbc9e8ee686b4ee08')
17c17
<   cd "$pkgname-$pkgver"
---
>   cd "$pkgname-$pkgver" || exit

TrialnError commented on 2023-12-12 22:32 (UTC)

This may be able to compile for any architecture, but it isn't an any package. any is only for packages where the package built on platform x can be used on platform y without any modifications. Like ruby and python packages.
So please change arch from any to (at least) x86_64.

imyavetra commented on 2023-09-11 02:19 (UTC)

Thanks for the AUR package. I made the following changes to my local copy to build the latest (0.3.1):

-pkgver=0.3.0
+pkgver=0.3.1
...
-sha256sums=('f4f48afd26fc0b0e8ec4aa69e7f39f7a8d596eff6c22aaeca84e1cb202f18f80')
-sha512sums=('09344b2ef69f8514477a87f26d776280d48675845557936ab8d237b73b7b8425fc2e5a017622a198462279b8dc9efe4016a5767c39dbd8804d9a8e6f19cbc4a4')
-b2sums=('4333c037574ad3f678a1d381a2926d9e0cfc00906eee0defe615551dfc4df93b650af7c43a8faaca0a24781ec2a452d7ef4ef6a11274758c4bd70eae56144b28')
+sha256sums=('2429c7841c8c5d85dcbd53441cc077acc63b1ae551440a61267f9197ed46e32e')

 build() {
   cd "$pkgname-$pkgver"

-  cargo build --release --locked
+  cargo build --release
 }
...

Also made a quick DBUS service in ~/.local/share/systemd/user/wl-gammarelay.service:

[Unit]
Description=DBus interface to control display temperature and brightness under wayland
PartOf=graphical-session.target
After=graphical-session.target
ConditionEnvironment=WAYLAND_DISPLAY

[Service]
Type=dbus
BusName=rs.wl-gammarelay
ExecStart=/usr/bin/wl-gammarelay-rs

[Install]
WantedBy=graphical-session.target