pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/sysutils/upower



Module Name:    pkgsrc
Committed By:   bsiegert
Date:           Thu Apr  2 11:38:50 UTC 2020

Modified Files:
        pkgsrc/sysutils/upower: Makefile buildlink3.mk distinfo
Removed Files:
        pkgsrc/sysutils/upower/patches: patch-libupower-glib_up-client.c
            patch-libupower-glib_up-client.h patch-tools_up-tool.c

Log Message:
Update upower to 0.99.11.

Version 0.99.11
~~~~~~~~~~~~~~~
Released: 2019-09-03

New Features:
 - Add code of conduct document
 - build: Migrate from intltool to gettext
 - rules: Split off HID++ udev rules
 - Harden systemd service
 - Let systemd create /var/lib/upower
 - Move D-Bus policy file to /usr/share/dbus-1/system.d/

Bug fixes:
 - Fix endless loop burning 100% CPU on keyboard plugout with external
   backlight
 - linux: Start polling for unknown device batteries too
 - linux: Retry to get a battery type if it's unknown
 - linux: Don't treat device batteries like laptop batteries
 - Replace use of G_TYPE_INSTANCE_GET_PRIVATE and g_type_class_add_private()

Version 0.99.10
~~~~~~~~~~~~~~~
Released: 2019-02-20

Bugfixes:
 - Set 'pending-charge' for DisplayDevice if at least one
   battery is in the 'pending-charge' state
 - Map pending-charge to fully-charged when charge is 100%

Version 0.99.9
~~~~~~~~~~~~~~
Released: 2018-10-25

Bugfixes:
 - Fix lack of update after AC status changes, and broken keyboard
   backlight, following the daemon lockdown added in 0.99.8
 - Multiple API documentation fixes
 - Out-of-tree build fixes

Version 0.99.8
~~~~~~~~~~~~~~
Released: 2018-06-18

New Features:
 - Lock down systemd service file
 - Add support for "Unknown" capacity level, and clarify handling
   of devices with coarse battery levels
 - Add a new version of up_client_get_devices() which unrefs contents

Bugfixes:
 - Fix warnings when D-Bus related properties change
 - Prevent crash after attaching an Apple TV, and support newer
   versions of iOS
 - Lower severity of "unhandled action" messages
 - Fix battery status on MacBooks after a plug or unplug event
 - Fix double-close on exit

Version 0.99.7
~~~~~~~~~~~~~~
Released: 2017-11-28

New Features:
 - Add support for Bluetooth LE device batteries (Bastien Nocera)
 - Allow to be replaced via --replace,-r (Christian Kellner)

Bugfixes:
 - Fix critical action after resume from hibernate (Miroslav Sustek)
 - Fix compilation with libimobiledevice git (Bastien Nocera)

Version 0.99.6
~~~~~~~~~~~~~~
Released: 2017-09-11

New Features:
 - Add UP_DEVICE_KIND_GAMING_INPUT for gaming devices (Bastien Nocera)
 - Detect joysticks as gaming input devices (Bastien Nocera)

Bugfixes:
 - Correctly close inhibitor FD (Benjamin Berg)
 - Fix crash when '@' is present in the device name (oleid, Bastien Nocera)
 - Fix lid detection on FreeBSD (Alberto Villa)
 - Grab the model name from device if unavailable from battery (Bastien Nocera)

Version 0.99.5
~~~~~~~~~~~~~~
Released: 2017-07-24

New Features:
 - Add a more complete self test for HID++ devices (Bastien Nocera)
 - Add BatteryLevel property for devices with a finite number of power levels (Bastien Nocera)
 - Add support for pausing and resuming of the daemon poll (Christian Kellner, Bastien Nocera)
 - Get a serial number for device batteries (Bastien Nocera)
 - Refresh devices after waking up from sleep (Christian Kellner)

Bugfixes:
 - Add proper error and cancellable handling to UpClient constructor (Martin Pitt)
 - Do not spin in a loop when /proc/timer_stats cannot be written (Richard Hughes)
 - Exit early from up-tool when connecting to upower fails (Martin Pitt)
 - Expand the integration-tests to run in more environments (Bastien Nocera, Christian Kellner)
 - Fix reading and writing the keyboard brightness level (Hans de Goede, Marco Trevisan)
 - Fix -Wformat-y2k compilation errors (Bastien Nocera)
 - Lower initial power usage when iDevice isn't accessible (Bastien Nocera)
 - Simplify string checks in upower-glib (Bastien Nocera)


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/sysutils/upower/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/upower/buildlink3.mk
cvs rdiff -u -r1.5 -r1.6 pkgsrc/sysutils/upower/distinfo
cvs rdiff -u -r1.1 -r0 \
    pkgsrc/sysutils/upower/patches/patch-libupower-glib_up-client.c \
    pkgsrc/sysutils/upower/patches/patch-libupower-glib_up-client.h \
    pkgsrc/sysutils/upower/patches/patch-tools_up-tool.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/sysutils/upower/Makefile
diff -u pkgsrc/sysutils/upower/Makefile:1.15 pkgsrc/sysutils/upower/Makefile:1.16
--- pkgsrc/sysutils/upower/Makefile:1.15        Sun Mar  8 16:48:13 2020
+++ pkgsrc/sysutils/upower/Makefile     Thu Apr  2 11:38:49 2020
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2020/03/08 16:48:13 wiz Exp $
+# $NetBSD: Makefile,v 1.16 2020/04/02 11:38:49 bsiegert Exp $
 
-DISTNAME=      upower-0.99.4
-PKGREVISION=   5
+DISTNAME=      upower-0.99.11
 CATEGORIES=    sysutils
 MASTER_SITES=  https://upower.freedesktop.org/releases/
 EXTRACT_SUFX=  .tar.xz

Index: pkgsrc/sysutils/upower/buildlink3.mk
diff -u pkgsrc/sysutils/upower/buildlink3.mk:1.2 pkgsrc/sysutils/upower/buildlink3.mk:1.3
--- pkgsrc/sysutils/upower/buildlink3.mk:1.2    Sun Mar  8 16:48:13 2020
+++ pkgsrc/sysutils/upower/buildlink3.mk        Thu Apr  2 11:38:49 2020
@@ -1,12 +1,12 @@
-# $NetBSD: buildlink3.mk,v 1.2 2020/03/08 16:48:13 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.3 2020/04/02 11:38:49 bsiegert Exp $
 
 BUILDLINK_TREE+=       upower
 
 .if !defined(UPOWER_BUILDLINK3_MK)
 UPOWER_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.upower+= upower>=0.99.2
-BUILDLINK_ABI_DEPENDS.upower?= upower>=0.99.4nb5
+BUILDLINK_API_DEPENDS.upower+= upower>=0.99.8
+BUILDLINK_ABI_DEPENDS.upower?= upower>=0.99.11
 BUILDLINK_PKGSRCDIR.upower?=   ../../sysutils/upower
 
 .include "../../devel/glib2/buildlink3.mk"

Index: pkgsrc/sysutils/upower/distinfo
diff -u pkgsrc/sysutils/upower/distinfo:1.5 pkgsrc/sysutils/upower/distinfo:1.6
--- pkgsrc/sysutils/upower/distinfo:1.5 Wed Jul 18 19:18:07 2018
+++ pkgsrc/sysutils/upower/distinfo     Thu Apr  2 11:38:49 2020
@@ -1,9 +1,6 @@
-$NetBSD: distinfo,v 1.5 2018/07/18 19:18:07 bsiegert Exp $
+$NetBSD: distinfo,v 1.6 2020/04/02 11:38:49 bsiegert Exp $
 
-SHA1 (upower-0.99.4.tar.xz) = 70beb18c218e758586fb5d98d79b5121cc4a47b1
-RMD160 (upower-0.99.4.tar.xz) = 6cc312d44a19ffc604c3a3282d03b9cdb6aa3638
-SHA512 (upower-0.99.4.tar.xz) = b3fdee5ccf5f4d0c69e227f543272f6952119132814e27bc8f112716b8d36b5e07741a87bcf02203e80ef910cad9ddffa1adecb338c9a9aaa5e1038b62be07f3
-Size (upower-0.99.4.tar.xz) = 426292 bytes
-SHA1 (patch-libupower-glib_up-client.c) = 9eab8b87649546ab7f4d16f009f464a97142836c
-SHA1 (patch-libupower-glib_up-client.h) = d4c458a6f9ce07166a7e1f6c3ad757ca731b32b7
-SHA1 (patch-tools_up-tool.c) = e7594be12597f47b3c4f2eb65c486004804539ee
+SHA1 (upower-0.99.11.tar.xz) = 5a023b29d64a6ce41cc6901bc46a279041784a9b
+RMD160 (upower-0.99.11.tar.xz) = cb4620efd91cd8d1ac770ca014fa91939f39ed00
+SHA512 (upower-0.99.11.tar.xz) = 67219a0beb98c97ac4512e4fe8ba83fc80a1035d1edb5367dda6911da50c672b047051f2f528e8703be29ab47547d92b6c71a7ef695226a1bdb5bc33e6d18803
+Size (upower-0.99.11.tar.xz) = 430128 bytes



Home | Main Index | Thread Index | Old Index