GNU bug report logs - #35293
[PATCH 1/2] gnu: mate: Add mate-power-manager.

Previous Next

Package: guix-patches;

Reported by: guy fleury iteriteka <hoonandon <at> gmail.com>

Date: Mon, 15 Apr 2019 20:31:02 UTC

Severity: normal

Tags: patch

Done: Brett Gilio <brettg <at> posteo.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 35293 in the body.
You can then email your comments to 35293 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#35293; Package guix-patches. (Mon, 15 Apr 2019 20:31:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to guy fleury iteriteka <hoonandon <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 15 Apr 2019 20:31:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: guy fleury iteriteka <hoonandon <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: guy fleury iteriteka <hoonandon <at> gmail.com>
Subject: [PATCH 1/2] gnu: mate: Add mate-power-manager.
Date: Mon, 15 Apr 2019 22:30:06 +0200
* gnu/packages/mate.scm (mate-power-manager): New variable.
---
 gnu/packages/mate.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 6d157e6..4a584c3 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -92,6 +92,46 @@
 MATE applications.")
     (license license:gpl3+)))
 
+(define-public mate-power-manager
+  (package
+    (name "mate-power-manager")
+    (version "1.22.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://pub.mate-desktop.org/releases/"
+                           (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "03c09h41qfz83wmjfvwzkq4xqc54aswmki4h034qcxbgfnyfmk1i"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("intltool" ,intltool)
+       ("yelp-tools" ,yelp-tools)
+       ("glib" ,glib "bin") ; glib-gettextize
+       ("libtool" ,libtool)))
+    (inputs
+     `(("gtk+" ,gtk+)
+       ("glib" ,glib)
+       ("dbus-glib" ,dbus-glib)
+       ("libgnome-keyring" ,libgnome-keyring)
+       ("cairo" ,cairo)
+       ("dbus" ,dbus)
+       ("libnotify" ,libnotify)
+       ("mate-panel" ,mate-panel)
+       ("libxrandr" ,libxrandr)
+       ("libcanberra" ,libcanberra)
+       ("upower" ,upower)))
+    (home-page "https://mate-desktop.org/")
+    (synopsis "A Power Manager for MATE")
+    (description
+     "MATE Power Manager is a MATE session daemon that acts as a policy agent on
+top of UPower. It listens to system events and responds with user-configurable
+actions.")
+    (license license:gpl3+)))
+
 (define-public mate-icon-theme
   (package
     (name "mate-icon-theme")
-- 
2.21.0





Reply sent to Brett Gilio <brettg <at> posteo.net>:
You have taken responsibility. (Tue, 10 Dec 2019 07:03:02 GMT) Full text and rfc822 format available.

Notification sent to guy fleury iteriteka <hoonandon <at> gmail.com>:
bug acknowledged by developer. (Tue, 10 Dec 2019 07:03:02 GMT) Full text and rfc822 format available.

Message #10 received at 35293-done <at> debbugs.gnu.org (full text, mbox):

From: Brett Gilio <brettg <at> posteo.net>
To: guy fleury iteriteka <hoonandon <at> gmail.com>
Cc: 35293-done <at> debbugs.gnu.org
Subject: Re: [bug#35293] [PATCH 1/2] gnu: mate: Add mate-power-manager.
Date: Tue, 10 Dec 2019 01:02:01 -0600
guy fleury iteriteka <hoonandon <at> gmail.com> writes:

> * gnu/packages/mate.scm (mate-power-manager): New variable.
> ---
>  gnu/packages/mate.scm | 40 ++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 40 insertions(+)
>
> diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
> index 6d157e6..4a584c3 100644
> --- a/gnu/packages/mate.scm
> +++ b/gnu/packages/mate.scm
> @@ -92,6 +92,46 @@
>  MATE applications.")
>      (license license:gpl3+)))
>  
> +(define-public mate-power-manager
> +  (package
> +    (name "mate-power-manager")
> +    (version "1.22.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://pub.mate-desktop.org/releases/"
> +                           (version-major+minor version) "/"
> +                           name "-" version ".tar.xz"))
> +       (sha256
> +        (base32
> +         "03c09h41qfz83wmjfvwzkq4xqc54aswmki4h034qcxbgfnyfmk1i"))))
> +    (build-system gnu-build-system)
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)
> +       ("intltool" ,intltool)
> +       ("yelp-tools" ,yelp-tools)
> +       ("glib" ,glib "bin") ; glib-gettextize
> +       ("libtool" ,libtool)))
> +    (inputs
> +     `(("gtk+" ,gtk+)
> +       ("glib" ,glib)
> +       ("dbus-glib" ,dbus-glib)
> +       ("libgnome-keyring" ,libgnome-keyring)
> +       ("cairo" ,cairo)
> +       ("dbus" ,dbus)
> +       ("libnotify" ,libnotify)
> +       ("mate-panel" ,mate-panel)
> +       ("libxrandr" ,libxrandr)
> +       ("libcanberra" ,libcanberra)
> +       ("upower" ,upower)))
> +    (home-page "https://mate-desktop.org/")
> +    (synopsis "A Power Manager for MATE")
> +    (description
> +     "MATE Power Manager is a MATE session daemon that acts as a policy agent on
> +top of UPower. It listens to system events and responds with user-configurable
> +actions.")
> +    (license license:gpl3+)))
> +
>  (define-public mate-icon-theme
>    (package
>      (name "mate-icon-theme")

Closing.

This was added on 2019-04-15 with commit
f254e308c21a10798e11940580f7b3fbdb4a7714.

Thanks!

-- 
Brett M. Gilio
Homepage -- https://scm.pw/
GNU Guix -- https://guix.gnu.org/




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 07 Jan 2020 12:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 109 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.