power-profiles-daemon: 0.20 -> 0.21

This release creates a dependency between upower and ppd.
Power-profiles-daemon now query the upower dbus interface to figure
out whether or not the device operates on battery mode to underclock
the CPU when the balanced mode is enabled.

CLI-wise, powerprofilesctl now support bash/zsh completions. The
manpage has been updated.

Full changelog: https://gitlab.freedesktop.org/upower/power-profiles-daemon/-/releases/0.21
This commit is contained in:
Picnoir 2024-04-04 09:21:37 +02:00
parent ae8f15ae44
commit ba0f5fd908
1 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,6 @@
{ stdenv
, lib
, bash-completion
, pkg-config
, meson
, mesonEmulatorHook
@ -25,7 +26,7 @@
stdenv.mkDerivation rec {
pname = "power-profiles-daemon";
version = "0.20";
version = "0.21";
outputs = [ "out" "devdoc" ];
@ -34,7 +35,7 @@ stdenv.mkDerivation rec {
owner = "upower";
repo = "power-profiles-daemon";
rev = version;
sha256 = "sha256-8wSRPR/1ELcsZ9K3LvSNlPcJvxRhb/LRjTIxKtdQlCA=";
sha256 = "sha256-5JbMbz38SeNEkVKFjJLxeUHiOrx+QCaK/vXgRPbzwzY=";
};
nativeBuildInputs = [
@ -53,12 +54,15 @@ stdenv.mkDerivation rec {
pygobject3
dbus-python
python-dbusmock
argparse-manpage
shtab
]))
] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
mesonEmulatorHook
];
buildInputs = [
bash-completion
libgudev
systemd
upower
@ -84,6 +88,8 @@ stdenv.mkDerivation rec {
mesonFlags = [
"-Dsystemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
"-Dgtk_doc=true"
"-Dpylint=disabled"
"-Dzshcomp=${placeholder "out"}/share/zsh/site-functions"
"-Dtests=${lib.boolToString (stdenv.buildPlatform.canExecute stdenv.hostPlatform)}"
];
@ -112,6 +118,6 @@ stdenv.mkDerivation rec {
mainProgram = "powerprofilesctl";
platforms = platforms.linux;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ mvnetbiz ];
maintainers = with maintainers; [ mvnetbiz picnoir ];
};
}