Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: cpupower-gui-1.0.0
@ 2023-07-31 15:28 voidbert
  2023-07-31 15:34 ` [PR PATCH] [Updated] " voidbert
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: voidbert @ 2023-07-31 15:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1946 bytes --]

There is a new pull request by voidbert against master on the void-packages repository

https://github.com/voidbert/void-packages cpupower-gui
https://github.com/void-linux/void-packages/pull/45355

New package: cpupower-gui-1.0.0
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

Addresses issue #45182.

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64
  - i686
  - armv6l
  - armv6l-musl

#### Help wanted

##### Polkit testing

I'm having lots of trouble getting an authentication agent working in my sway WM system. I would thank anyone that uses a DE (or got polkit working in a WM) to test if they can set CPU frequencies from a regular user, without having to launch the whole app as root.

##### Runit services

I already wrote a runit service but I keep getting the following error:
```
# sv once cpupower-gui
warning: cpupower-gui: unable to open supervise/ok: file does not exist
```
I can confirm that `/var/service/cpupower-gui/supervise` is a broken symlink, even after rebooting the system. After a reboot, the service doesn't produce any effects on the CPU frequencies, so I think it's not being started.

However, `runsv` seems to work, after which I start getting a different error:
```
# sv once cpupower-gui
fail: cpupower-gui: runsv not running
```

Does anyone more knowledgeable in runit know how I can fix this? Also, I think there's no great way to port user services from systemd, but again, I'd be happy anyone more informed would be willing to help.


A patch file from https://github.com/void-linux/void-packages/pull/45355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-cpupower-gui-45355.patch --]
[-- Type: text/x-diff, Size: 2373 bytes --]

From 0e79a4a43b283acbff596b64b6b6733107c890ad Mon Sep 17 00:00:00 2001
From: voidbert <humbertogilgomes@protonmail.com>
Date: Mon, 31 Jul 2023 15:41:26 +0100
Subject: [PATCH] New package: cpupower-gui-1.0.0

---
 srcpkgs/cpupower-gui/files/cpupower-gui/run |  3 +++
 srcpkgs/cpupower-gui/patches/meson.patch    | 12 ++++++++++++
 srcpkgs/cpupower-gui/template               | 17 +++++++++++++++++
 3 files changed, 32 insertions(+)
 create mode 100644 srcpkgs/cpupower-gui/files/cpupower-gui/run
 create mode 100644 srcpkgs/cpupower-gui/patches/meson.patch
 create mode 100644 srcpkgs/cpupower-gui/template

diff --git a/srcpkgs/cpupower-gui/files/cpupower-gui/run b/srcpkgs/cpupower-gui/files/cpupower-gui/run
new file mode 100644
index 0000000000000..7beda83b6dc84
--- /dev/null
+++ b/srcpkgs/cpupower-gui/files/cpupower-gui/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+exec 2>&1
+exec /usr/bin/cpupower-gui config
diff --git a/srcpkgs/cpupower-gui/patches/meson.patch b/srcpkgs/cpupower-gui/patches/meson.patch
new file mode 100644
index 0000000000000..2fb01efa63ee3
--- /dev/null
+++ b/srcpkgs/cpupower-gui/patches/meson.patch
@@ -0,0 +1,12 @@
+diff --git a/data/meson.build b/data/meson.build
+index 4dbfe5c..3be1e44 100644
+--- a/data/meson.build
++++ b/data/meson.build
+@@ -12,7 +12,6 @@ desktop_conf = configuration_data()
+ desktop_conf.set('icon', application_id)
+ 
+ desktop_file = i18n.merge_file(
+-  'desktop',
+    input: configure_file(
+     input: files('org.rnd2.cpupower_gui.desktop.in.in'),
+     output: 'org.rnd2.cpupower_gui.desktop.in',
diff --git a/srcpkgs/cpupower-gui/template b/srcpkgs/cpupower-gui/template
new file mode 100644
index 0000000000000..f1daf63a176ad
--- /dev/null
+++ b/srcpkgs/cpupower-gui/template
@@ -0,0 +1,17 @@
+# Template file for 'cpupower-gui'
+pkgname=cpupower-gui
+version=1.0.0
+revision=1
+build_style=meson
+makedepends="pkg-config glib-devel gettext"
+depends="glib python gtk+3 polkit python3-dbus python3-gobject python3-xdg libhandy1"
+short_desc="GUI for changing CPU frequency limits"
+maintainer="voidbert <humbertogilgomes@protonmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/vagnum08/cpupower-gui"
+distfiles="https://github.com/vagnum08/cpupower-gui/archive/v${version}.tar.gz"
+checksum=09f8b9619e974abe00fc06c0d5528b6a36518f6b283b3db338349bada1d51492
+
+post_install() {
+	vsv cpupower-gui
+}

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PR PATCH] [Updated] New package: cpupower-gui-1.0.0
  2023-07-31 15:28 [PR PATCH] New package: cpupower-gui-1.0.0 voidbert
@ 2023-07-31 15:34 ` voidbert
  2023-08-06 22:31 ` voidbert
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: voidbert @ 2023-07-31 15:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1951 bytes --]

There is an updated pull request by voidbert against master on the void-packages repository

https://github.com/voidbert/void-packages cpupower-gui
https://github.com/void-linux/void-packages/pull/45355

New package: cpupower-gui-1.0.0
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

Addresses issue #45182.

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64
  - i686
  - armv6l
  - armv6l-musl

#### Help wanted

##### Polkit testing

I'm having lots of trouble getting an authentication agent working in my sway WM system. I would thank anyone that uses a DE (or got polkit working in a WM) to test if they can set CPU frequencies from a regular user, without having to launch the whole app as root.

##### Runit services

I already wrote a runit service but I keep getting the following error:
```
# sv once cpupower-gui
warning: cpupower-gui: unable to open supervise/ok: file does not exist
```
I can confirm that `/var/service/cpupower-gui/supervise` is a broken symlink, even after rebooting the system. After a reboot, the service doesn't produce any effects on the CPU frequencies, so I think it's not being started.

However, `runsv` seems to work, after which I start getting a different error:
```
# sv once cpupower-gui
fail: cpupower-gui: runsv not running
```

Does anyone more knowledgeable in runit know how I can fix this? Also, I think there's no great way to port user services from systemd, but again, I'd be happy anyone more informed would be willing to help.


A patch file from https://github.com/void-linux/void-packages/pull/45355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-cpupower-gui-45355.patch --]
[-- Type: text/x-diff, Size: 2377 bytes --]

From dc06132b3feec3efbc63097b5531d62c3ee4f3d4 Mon Sep 17 00:00:00 2001
From: voidbert <humbertogilgomes@protonmail.com>
Date: Mon, 31 Jul 2023 15:41:26 +0100
Subject: [PATCH] New package: cpupower-gui-1.0.0

---
 srcpkgs/cpupower-gui/files/cpupower-gui/run |  3 +++
 srcpkgs/cpupower-gui/patches/meson.patch    | 12 ++++++++++++
 srcpkgs/cpupower-gui/template               | 17 +++++++++++++++++
 3 files changed, 32 insertions(+)
 create mode 100644 srcpkgs/cpupower-gui/files/cpupower-gui/run
 create mode 100644 srcpkgs/cpupower-gui/patches/meson.patch
 create mode 100644 srcpkgs/cpupower-gui/template

diff --git a/srcpkgs/cpupower-gui/files/cpupower-gui/run b/srcpkgs/cpupower-gui/files/cpupower-gui/run
new file mode 100644
index 0000000000000..7beda83b6dc84
--- /dev/null
+++ b/srcpkgs/cpupower-gui/files/cpupower-gui/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+exec 2>&1
+exec /usr/bin/cpupower-gui config
diff --git a/srcpkgs/cpupower-gui/patches/meson.patch b/srcpkgs/cpupower-gui/patches/meson.patch
new file mode 100644
index 0000000000000..2fb01efa63ee3
--- /dev/null
+++ b/srcpkgs/cpupower-gui/patches/meson.patch
@@ -0,0 +1,12 @@
+diff --git a/data/meson.build b/data/meson.build
+index 4dbfe5c..3be1e44 100644
+--- a/data/meson.build
++++ b/data/meson.build
+@@ -12,7 +12,6 @@ desktop_conf = configuration_data()
+ desktop_conf.set('icon', application_id)
+ 
+ desktop_file = i18n.merge_file(
+-  'desktop',
+    input: configure_file(
+     input: files('org.rnd2.cpupower_gui.desktop.in.in'),
+     output: 'org.rnd2.cpupower_gui.desktop.in',
diff --git a/srcpkgs/cpupower-gui/template b/srcpkgs/cpupower-gui/template
new file mode 100644
index 0000000000000..b7079d427433d
--- /dev/null
+++ b/srcpkgs/cpupower-gui/template
@@ -0,0 +1,17 @@
+# Template file for 'cpupower-gui'
+pkgname=cpupower-gui
+version=1.0.0
+revision=1
+build_style=meson
+hostmakedepends="pkg-config glib-devel gettext"
+depends="glib python gtk+3 polkit python3-dbus python3-gobject python3-xdg libhandy1"
+short_desc="GUI for changing CPU frequency limits"
+maintainer="voidbert <humbertogilgomes@protonmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/vagnum08/cpupower-gui"
+distfiles="https://github.com/vagnum08/cpupower-gui/archive/v${version}.tar.gz"
+checksum=09f8b9619e974abe00fc06c0d5528b6a36518f6b283b3db338349bada1d51492
+
+post_install() {
+	vsv cpupower-gui
+}

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PR PATCH] [Updated] New package: cpupower-gui-1.0.0
  2023-07-31 15:28 [PR PATCH] New package: cpupower-gui-1.0.0 voidbert
  2023-07-31 15:34 ` [PR PATCH] [Updated] " voidbert
@ 2023-08-06 22:31 ` voidbert
  2023-08-07 11:17 ` voidbert
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: voidbert @ 2023-08-06 22:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1951 bytes --]

There is an updated pull request by voidbert against master on the void-packages repository

https://github.com/voidbert/void-packages cpupower-gui
https://github.com/void-linux/void-packages/pull/45355

New package: cpupower-gui-1.0.0
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

Addresses issue #45182.

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64
  - i686
  - armv6l
  - armv6l-musl

#### Help wanted

##### Polkit testing

I'm having lots of trouble getting an authentication agent working in my sway WM system. I would thank anyone that uses a DE (or got polkit working in a WM) to test if they can set CPU frequencies from a regular user, without having to launch the whole app as root.

##### Runit services

I already wrote a runit service but I keep getting the following error:
```
# sv once cpupower-gui
warning: cpupower-gui: unable to open supervise/ok: file does not exist
```
I can confirm that `/var/service/cpupower-gui/supervise` is a broken symlink, even after rebooting the system. After a reboot, the service doesn't produce any effects on the CPU frequencies, so I think it's not being started.

However, `runsv` seems to work, after which I start getting a different error:
```
# sv once cpupower-gui
fail: cpupower-gui: runsv not running
```

Does anyone more knowledgeable in runit know how I can fix this? Also, I think there's no great way to port user services from systemd, but again, I'd be happy anyone more informed would be willing to help.


A patch file from https://github.com/void-linux/void-packages/pull/45355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-cpupower-gui-45355.patch --]
[-- Type: text/x-diff, Size: 2383 bytes --]

From da025ae9b16f22a7a69f2583d69c256d2aa260fa Mon Sep 17 00:00:00 2001
From: voidbert <humbertogilgomes@protonmail.com>
Date: Mon, 31 Jul 2023 15:41:26 +0100
Subject: [PATCH] New package: cpupower-gui-1.0.0

---
 srcpkgs/cpupower-gui/files/cpupower-gui/run |  3 +++
 srcpkgs/cpupower-gui/patches/meson.patch    | 12 ++++++++++++
 srcpkgs/cpupower-gui/template               | 17 +++++++++++++++++
 3 files changed, 32 insertions(+)
 create mode 100644 srcpkgs/cpupower-gui/files/cpupower-gui/run
 create mode 100644 srcpkgs/cpupower-gui/patches/meson.patch
 create mode 100644 srcpkgs/cpupower-gui/template

diff --git a/srcpkgs/cpupower-gui/files/cpupower-gui/run b/srcpkgs/cpupower-gui/files/cpupower-gui/run
new file mode 100644
index 0000000000000..50801bb9389a7
--- /dev/null
+++ b/srcpkgs/cpupower-gui/files/cpupower-gui/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+/usr/bin/cpupower-gui config
+sv down cpupower-gui
diff --git a/srcpkgs/cpupower-gui/patches/meson.patch b/srcpkgs/cpupower-gui/patches/meson.patch
new file mode 100644
index 0000000000000..2fb01efa63ee3
--- /dev/null
+++ b/srcpkgs/cpupower-gui/patches/meson.patch
@@ -0,0 +1,12 @@
+diff --git a/data/meson.build b/data/meson.build
+index 4dbfe5c..3be1e44 100644
+--- a/data/meson.build
++++ b/data/meson.build
+@@ -12,7 +12,6 @@ desktop_conf = configuration_data()
+ desktop_conf.set('icon', application_id)
+ 
+ desktop_file = i18n.merge_file(
+-  'desktop',
+    input: configure_file(
+     input: files('org.rnd2.cpupower_gui.desktop.in.in'),
+     output: 'org.rnd2.cpupower_gui.desktop.in',
diff --git a/srcpkgs/cpupower-gui/template b/srcpkgs/cpupower-gui/template
new file mode 100644
index 0000000000000..b7079d427433d
--- /dev/null
+++ b/srcpkgs/cpupower-gui/template
@@ -0,0 +1,17 @@
+# Template file for 'cpupower-gui'
+pkgname=cpupower-gui
+version=1.0.0
+revision=1
+build_style=meson
+hostmakedepends="pkg-config glib-devel gettext"
+depends="glib python gtk+3 polkit python3-dbus python3-gobject python3-xdg libhandy1"
+short_desc="GUI for changing CPU frequency limits"
+maintainer="voidbert <humbertogilgomes@protonmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/vagnum08/cpupower-gui"
+distfiles="https://github.com/vagnum08/cpupower-gui/archive/v${version}.tar.gz"
+checksum=09f8b9619e974abe00fc06c0d5528b6a36518f6b283b3db338349bada1d51492
+
+post_install() {
+	vsv cpupower-gui
+}

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PR PATCH] [Updated] New package: cpupower-gui-1.0.0
  2023-07-31 15:28 [PR PATCH] New package: cpupower-gui-1.0.0 voidbert
  2023-07-31 15:34 ` [PR PATCH] [Updated] " voidbert
  2023-08-06 22:31 ` voidbert
@ 2023-08-07 11:17 ` voidbert
  2023-11-06  1:46 ` github-actions
  2023-11-20  1:46 ` [PR PATCH] [Closed]: " github-actions
  4 siblings, 0 replies; 6+ messages in thread
From: voidbert @ 2023-08-07 11:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 2244 bytes --]

There is an updated pull request by voidbert against master on the void-packages repository

https://github.com/voidbert/void-packages cpupower-gui
https://github.com/void-linux/void-packages/pull/45355

New package: cpupower-gui-1.0.0
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

Addresses issue #45182.

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64
  - i686
  - armv6l
  - armv6l-musl

#### Help wanted

##### Polkit testing

I'm having lots of trouble getting an authentication agent working in my sway WM system. I would thank anyone that uses a DE (or got polkit working in a WM) to test if they can set CPU frequencies from a regular user, without having to launch the whole app as root.

##### Runit services

<details><summary>Previous problem - now fixed</summary>
<p>

I already wrote a runit service but I keep getting the following error:
```
# sv once cpupower-gui
warning: cpupower-gui: unable to open supervise/ok: file does not exist
```
I can confirm that `/var/service/cpupower-gui/supervise` is a broken symlink, even after rebooting the system. After a reboot, the service doesn't produce any effects on the CPU frequencies, so I think it's not being started.

However, `runsv` seems to work, after which I start getting a different error:
```
# sv once cpupower-gui
fail: cpupower-gui: runsv not running
```

Does anyone more knowledgeable in runit know how I can fix this? Also, I think there's no great way to port user services from systemd, but again, I'd be happy anyone more informed would be willing to help.

</p></details>

The previous problem, now fixed, happened because I accidentally messed up `/var/service`'s permissions and runit got confused. I still don't know if it is possible to **port over systemd's user services**.


A patch file from https://github.com/void-linux/void-packages/pull/45355.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-cpupower-gui-45355.patch --]
[-- Type: text/x-diff, Size: 2384 bytes --]

From 64270f1b8c817ea6b91e3919f5653c1e20efd768 Mon Sep 17 00:00:00 2001
From: voidbert <humbertogilgomes@protonmail.com>
Date: Mon, 31 Jul 2023 15:41:26 +0100
Subject: [PATCH] New package: cpupower-gui-1.0.0

---
 srcpkgs/cpupower-gui/files/cpupower-gui/run |  3 +++
 srcpkgs/cpupower-gui/patches/meson.patch    | 12 ++++++++++++
 srcpkgs/cpupower-gui/template               | 17 +++++++++++++++++
 3 files changed, 32 insertions(+)
 create mode 100644 srcpkgs/cpupower-gui/files/cpupower-gui/run
 create mode 100644 srcpkgs/cpupower-gui/patches/meson.patch
 create mode 100644 srcpkgs/cpupower-gui/template

diff --git a/srcpkgs/cpupower-gui/files/cpupower-gui/run b/srcpkgs/cpupower-gui/files/cpupower-gui/run
new file mode 100644
index 0000000000000..50801bb9389a7
--- /dev/null
+++ b/srcpkgs/cpupower-gui/files/cpupower-gui/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+/usr/bin/cpupower-gui config
+sv down cpupower-gui
diff --git a/srcpkgs/cpupower-gui/patches/meson.patch b/srcpkgs/cpupower-gui/patches/meson.patch
new file mode 100644
index 0000000000000..2fb01efa63ee3
--- /dev/null
+++ b/srcpkgs/cpupower-gui/patches/meson.patch
@@ -0,0 +1,12 @@
+diff --git a/data/meson.build b/data/meson.build
+index 4dbfe5c..3be1e44 100644
+--- a/data/meson.build
++++ b/data/meson.build
+@@ -12,7 +12,6 @@ desktop_conf = configuration_data()
+ desktop_conf.set('icon', application_id)
+ 
+ desktop_file = i18n.merge_file(
+-  'desktop',
+    input: configure_file(
+     input: files('org.rnd2.cpupower_gui.desktop.in.in'),
+     output: 'org.rnd2.cpupower_gui.desktop.in',
diff --git a/srcpkgs/cpupower-gui/template b/srcpkgs/cpupower-gui/template
new file mode 100644
index 0000000000000..f5c3ed144e6a0
--- /dev/null
+++ b/srcpkgs/cpupower-gui/template
@@ -0,0 +1,17 @@
+# Template file for 'cpupower-gui'
+pkgname=cpupower-gui
+version=1.0.0
+revision=1
+build_style=meson
+hostmakedepends="pkg-config glib-devel gettext"
+depends="glib python3 gtk+3 polkit python3-dbus python3-gobject python3-xdg libhandy1"
+short_desc="GUI for changing CPU frequency limits"
+maintainer="voidbert <humbertogilgomes@protonmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/vagnum08/cpupower-gui"
+distfiles="https://github.com/vagnum08/cpupower-gui/archive/v${version}.tar.gz"
+checksum=09f8b9619e974abe00fc06c0d5528b6a36518f6b283b3db338349bada1d51492
+
+post_install() {
+	vsv cpupower-gui
+}

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: New package: cpupower-gui-1.0.0
  2023-07-31 15:28 [PR PATCH] New package: cpupower-gui-1.0.0 voidbert
                   ` (2 preceding siblings ...)
  2023-08-07 11:17 ` voidbert
@ 2023-11-06  1:46 ` github-actions
  2023-11-20  1:46 ` [PR PATCH] [Closed]: " github-actions
  4 siblings, 0 replies; 6+ messages in thread
From: github-actions @ 2023-11-06  1:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 305 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/45355#issuecomment-1793953818

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PR PATCH] [Closed]: New package: cpupower-gui-1.0.0
  2023-07-31 15:28 [PR PATCH] New package: cpupower-gui-1.0.0 voidbert
                   ` (3 preceding siblings ...)
  2023-11-06  1:46 ` github-actions
@ 2023-11-20  1:46 ` github-actions
  4 siblings, 0 replies; 6+ messages in thread
From: github-actions @ 2023-11-20  1:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 2239 bytes --]

There's a closed pull request on the void-packages repository

New package: cpupower-gui-1.0.0
https://github.com/void-linux/void-packages/pull/45355

Description:
#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

Addresses issue #45182.

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-musl)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64
  - i686
  - armv6l
  - armv6l-musl

#### Help wanted

##### Polkit testing

<details><summary>Previous problem - now fixed</summary>
<p>

I'm having lots of trouble getting an authentication agent working in my sway WM system. I would thank anyone that uses a DE (or got polkit working in a WM) to test if they can set CPU frequencies from a regular user, without having to launch the whole app as root.

</p></details>

I managed to test polkit authentication on a live VoidLinux xfce image.

##### Runit services

<details><summary>Previous problem - now fixed</summary>
<p>

I already wrote a runit service but I keep getting the following error:
```
# sv once cpupower-gui
warning: cpupower-gui: unable to open supervise/ok: file does not exist
```
I can confirm that `/var/service/cpupower-gui/supervise` is a broken symlink, even after rebooting the system. After a reboot, the service doesn't produce any effects on the CPU frequencies, so I think it's not being started.

However, `runsv` seems to work, after which I start getting a different error:
```
# sv once cpupower-gui
fail: cpupower-gui: runsv not running
```

Does anyone more knowledgeable in runit know how I can fix this? Also, I think there's no great way to port user services from systemd, but again, I'd be happy anyone more informed would be willing to help.

</p></details>

The previous problem, now fixed, happened because I accidentally messed up `/var/service`'s permissions and runit got confused. I still don't know if it is possible to **port over systemd's user services**.


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-11-20  1:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-31 15:28 [PR PATCH] New package: cpupower-gui-1.0.0 voidbert
2023-07-31 15:34 ` [PR PATCH] [Updated] " voidbert
2023-08-06 22:31 ` voidbert
2023-08-07 11:17 ` voidbert
2023-11-06  1:46 ` github-actions
2023-11-20  1:46 ` [PR PATCH] [Closed]: " github-actions

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).