mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-06 23:23:51 +02:00
xfce4-power-manager: update to 1.7.0.
This commit is contained in:
parent
7234749577
commit
d6adc35579
2 changed files with 4 additions and 76 deletions
|
@ -1,72 +0,0 @@
|
||||||
--- src/xfpm-pm-helper.c.orig 2019-08-13 12:17:22.787621859 +0200
|
|
||||||
+++ src/xfpm-pm-helper.c 2019-08-13 12:18:31.946471555 +0200
|
|
||||||
@@ -69,11 +69,8 @@
|
|
||||||
#define UP_BACKEND_SUSPEND_COMMAND "/usr/sbin/acpiconf -s 3"
|
|
||||||
#define UP_BACKEND_HIBERNATE_COMMAND "/usr/sbin/acpiconf -s 4"
|
|
||||||
#endif
|
|
||||||
-#ifdef BACKEND_TYPE_LINUX
|
|
||||||
-#define UP_BACKEND_SUSPEND_COMMAND "/usr/sbin/pm-suspend"
|
|
||||||
-#define UP_BACKEND_HIBERNATE_COMMAND "/usr/sbin/pm-hibernate"
|
|
||||||
-#endif
|
|
||||||
-#ifdef BACKEND_TYPE_OPENBSD
|
|
||||||
+/* voidlinux and openbsd use zzz(8) */
|
|
||||||
+#if defined(BACKEND_TYPE_LINUX) || defined(BACKEND_TYPE_OPENBSD)
|
|
||||||
#define UP_BACKEND_SUSPEND_COMMAND "/usr/sbin/zzz"
|
|
||||||
#define UP_BACKEND_HIBERNATE_COMMAND "/usr/sbin/ZZZ"
|
|
||||||
#endif
|
|
||||||
--- src/xfpm-suspend.c.orig 2019-08-13 12:19:21.476080088 +0200
|
|
||||||
+++ src/xfpm-suspend.c 2019-08-13 12:20:59.699286887 +0200
|
|
||||||
@@ -101,35 +101,6 @@ freebsd_supports_sleep_state (const gcha
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
-#ifdef BACKEND_TYPE_LINUX
|
|
||||||
-static gboolean
|
|
||||||
-linux_supports_sleep_state (const gchar *state)
|
|
||||||
-{
|
|
||||||
- gboolean ret = FALSE;
|
|
||||||
- gchar *command;
|
|
||||||
- GError *error = NULL;
|
|
||||||
- gint exit_status;
|
|
||||||
-
|
|
||||||
- XFPM_DEBUG("entering");
|
|
||||||
-
|
|
||||||
- /* run script from pm-utils */
|
|
||||||
- command = g_strdup_printf ("/usr/bin/pm-is-supported --%s", state);
|
|
||||||
- g_debug ("executing command: %s", command);
|
|
||||||
- ret = g_spawn_command_line_sync (command, NULL, NULL, &exit_status, &error);
|
|
||||||
- if (!ret) {
|
|
||||||
- g_warning ("failed to run script: %s", error->message);
|
|
||||||
- g_error_free (error);
|
|
||||||
- goto out;
|
|
||||||
- }
|
|
||||||
- ret = (WIFEXITED(exit_status) && (WEXITSTATUS(exit_status) == EXIT_SUCCESS));
|
|
||||||
-
|
|
||||||
-out:
|
|
||||||
- g_free (command);
|
|
||||||
-
|
|
||||||
- return ret;
|
|
||||||
-}
|
|
||||||
-#endif
|
|
||||||
-
|
|
||||||
|
|
||||||
gboolean
|
|
||||||
xfpm_suspend_can_suspend (void)
|
|
||||||
@@ -139,7 +110,7 @@ xfpm_suspend_can_suspend (void)
|
|
||||||
return freebsd_supports_sleep_state ("S3");
|
|
||||||
#endif
|
|
||||||
#ifdef BACKEND_TYPE_LINUX
|
|
||||||
- return linux_supports_sleep_state ("suspend");
|
|
||||||
+ return TRUE;
|
|
||||||
#endif
|
|
||||||
#ifdef BACKEND_TYPE_OPENBSD
|
|
||||||
return TRUE;
|
|
||||||
@@ -156,7 +127,7 @@ xfpm_suspend_can_hibernate (void)
|
|
||||||
return freebsd_supports_sleep_state ("S4");
|
|
||||||
#endif
|
|
||||||
#ifdef BACKEND_TYPE_LINUX
|
|
||||||
- return linux_supports_sleep_state ("hibernate");
|
|
||||||
+ return TRUE;
|
|
||||||
#endif
|
|
||||||
#ifdef BACKEND_TYPE_OPENBSD
|
|
||||||
return TRUE;
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'xfce4-power-manager'
|
# Template file for 'xfce4-power-manager'
|
||||||
pkgname=xfce4-power-manager
|
pkgname=xfce4-power-manager
|
||||||
version=1.6.5
|
version=1.7.0
|
||||||
revision=3
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--disable-static"
|
configure_args="--disable-static"
|
||||||
hostmakedepends="pkg-config intltool"
|
hostmakedepends="pkg-config intltool"
|
||||||
|
@ -9,7 +9,7 @@ makedepends="libxfce4ui-devel libnotify-devel upower-devel xfce4-panel-devel"
|
||||||
depends="hicolor-icon-theme desktop-file-utils"
|
depends="hicolor-icon-theme desktop-file-utils"
|
||||||
short_desc="Xfce power manager"
|
short_desc="Xfce power manager"
|
||||||
maintainer="Orphaned <orphan@voidlinux.org>"
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
||||||
license="GPL-2"
|
license="GPL-2.0-or-later"
|
||||||
homepage="https://xfce.org/"
|
homepage="https://xfce.org/"
|
||||||
distfiles="https://archive.xfce.org/src/xfce/$pkgname/${version%.*}/$pkgname-$version.tar.bz2"
|
distfiles="https://archive.xfce.org/src/xfce/$pkgname/${version%.*}/$pkgname-$version.tar.bz2"
|
||||||
checksum=10adb67899b181ca5fc577fc9bb7a698fb94e42073585f7e2be642c7db127a74
|
checksum=45368ccf70f5a87ba9c8b732e2462ecbc0184550e7cc54a58cbeb74086e7124b
|
||||||
|
|
Loading…
Add table
Reference in a new issue