upower: 0.99.4 -> 0.99.7

This commit is contained in:
Danny Rawlins 2019-06-16 12:28:06 +10:00
parent a1b79462e4
commit a0c2a55295
4 changed files with 14 additions and 47 deletions

View File

@ -1,3 +1,9 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/UPower/
-rw-r--r-- root/root etc/UPower/UPower.conf
drwxr-xr-x root/root etc/dbus-1/
drwxr-xr-x root/root etc/dbus-1/system.d/
-rw-r--r-- root/root etc/dbus-1/system.d/org.freedesktop.UPower.conf
drwxr-xr-x root/root lib/
drwxr-xr-x root/root lib/udev/
drwxr-xr-x root/root lib/udev/rules.d/
@ -7,12 +13,6 @@ drwxr-xr-x root/root lib/udev/rules.d/
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/upower
drwxr-xr-x root/root usr/etc/
drwxr-xr-x root/root usr/etc/UPower/
-rw-r--r-- root/root usr/etc/UPower/UPower.conf
drwxr-xr-x root/root usr/etc/dbus-1/
drwxr-xr-x root/root usr/etc/dbus-1/system.d/
-rw-r--r-- root/root usr/etc/dbus-1/system.d/org.freedesktop.UPower.conf
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/libupower-glib/
-rw-r--r-- root/root usr/include/libupower-glib/up-autocleanups.h

View File

@ -1,6 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/ZiS+ELzFFEgWaPufSvmiGdlF5HwGca3rYBiNjFT407kdhe+23u1jBRu0qjnFd/uqy6zJudouGZaSQDA2a6Q/Q0=
SHA256 (Pkgfile) = ea26b3ed65626bbf476cabbfe7a8e6e040b4215a8f0fde13e1c82e9d489a42c8
SHA256 (.footprint) = f20d312c2e01aa59d0509a17a147c197189494afd54ef79663fd237b51833bdc
SHA256 (upower-0.99.4.tar.xz) = 9ca325a6ccef505529b268ebbbd9becd0ce65a65f6ac7ee31e2e5b17648037b0
SHA256 (fix-critical-action.patch) = 30c9e7587bd63f75d50f50f93bf97d9a80fc76f5ce875080487de04b2538beb4
RWSE3ohX2g5d/Q9eBjpaNKv1swsJ1Wr5/cRwTVqFVTj0/AXdzReKAF1BVBRQa2OhgREJ6SSAcxFdkfFWxiNeDSyiquCEEeBSnQo=
SHA256 (Pkgfile) = 85dae02b014fc3f5de6e629a42e6e122f52bde73ca2feca9b736f7ee3cc33cea
SHA256 (.footprint) = c4c9d681801ba72df7fdf0d7391324c6f96d03d2020e5c80130914c7b94d0d97
SHA256 (upower-0.99.7.tar.xz) = 24bcc2f6ab25a2533bac70b587bcb019e591293076920f5b5e04bdedc140a401

View File

@ -1,23 +1,19 @@
# Description: Abstraction for enumerating power devices, listening to device events and querying history and statistics.
# URL: http://upower.freedesktop.org/
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on: dbus-glib gobject-introspection intltool libgudev libusb
# Depends on: dbus-glib intltool libgudev libusb
name=upower
version=0.99.4
version=0.99.7
release=1
source=(http://$name.freedesktop.org/releases/$name-$version.tar.xz
fix-critical-action.patch)
source=(https://$name.freedesktop.org/releases/$name-$version.tar.xz)
build() {
cd $name-$version
patch -p 1 -i $SRC/fix-critical-action.patch
./configure \
--prefix=/usr \
--sysconfdir=/usr/etc \
--sysconfdir=/etc \
--localstatedir=/var \
--libexecdir=/usr/lib/$name \
--disable-nls \

View File

@ -1,28 +0,0 @@
From 28cee8e2845b094488c337c4ecfa84ada0b6be60 Mon Sep 17 00:00:00 2001
From: Martin Pitt <martin.pitt@ubuntu.com>
Date: Tue, 23 Feb 2016 09:51:07 +0100
Subject: daemon: fix get_critical_action()
Fix copy&paste error from e7e9156f that called the wrong _complete_ function
for up_daemon_get_critical_action().
https://bugs.freedesktop.org/show_bug.cgi?id=94262
diff --git a/src/up-daemon.c b/src/up-daemon.c
index be14cbe..e95f904 100644
--- a/src/up-daemon.c
+++ b/src/up-daemon.c
@@ -435,8 +435,8 @@ up_daemon_get_critical_action (UpExportedDaemon *skeleton,
GDBusMethodInvocation *invocation,
UpDaemon *daemon)
{
- up_exported_daemon_complete_get_display_device (skeleton, invocation,
- up_backend_get_critical_action (daemon->priv->backend));
+ up_exported_daemon_complete_get_critical_action (skeleton, invocation,
+ up_backend_get_critical_action (daemon->priv->backend));
return TRUE;
}
--
cgit v0.10.2