unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#35292] [PATCH 0/2] Add mate-power-manager to MATE
@ 2019-04-15 20:30 guy fleury iteriteka
  2019-04-15 20:30 ` [bug#35293] [PATCH 1/2] gnu: mate: Add mate-power-manager guy fleury iteriteka
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: guy fleury iteriteka @ 2019-04-15 20:30 UTC (permalink / raw)
  To: 35292

Hi guix,

This two patchs add mate-power-manager and build it with 
with the rest of MATE Desktop.

guy fleury iteriteka (2):
  gnu: mate: Add mate-power-manager.
  gnu: mate: Build MATE with mate-power-mager support.

 gnu/packages/mate.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

-- 
2.21.0

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#35293] [PATCH 1/2] gnu: mate: Add mate-power-manager.
  2019-04-15 20:30 [bug#35292] [PATCH 0/2] Add mate-power-manager to MATE guy fleury iteriteka
@ 2019-04-15 20:30 ` guy fleury iteriteka
  2019-12-10  7:02   ` bug#35293: " Brett Gilio
  2019-04-15 20:30 ` [bug#35294] [PATCH 2/2] gnu: mate: Build MATE with mate-power-mager support guy fleury iteriteka
  2019-04-15 21:05 ` bug#35292: [PATCH 0/2] Add mate-power-manager to MATE Danny Milosavljevic
  2 siblings, 1 reply; 6+ messages in thread
From: guy fleury iteriteka @ 2019-04-15 20:30 UTC (permalink / raw)
  To: 35293

* 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

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#35294] [PATCH 2/2] gnu: mate: Build MATE with mate-power-mager support.
  2019-04-15 20:30 [bug#35292] [PATCH 0/2] Add mate-power-manager to MATE guy fleury iteriteka
  2019-04-15 20:30 ` [bug#35293] [PATCH 1/2] gnu: mate: Add mate-power-manager guy fleury iteriteka
@ 2019-04-15 20:30 ` guy fleury iteriteka
  2019-12-10  7:03   ` bug#35294: " Brett Gilio
  2019-04-15 21:05 ` bug#35292: [PATCH 0/2] Add mate-power-manager to MATE Danny Milosavljevic
  2 siblings, 1 reply; 6+ messages in thread
From: guy fleury iteriteka @ 2019-04-15 20:30 UTC (permalink / raw)
  To: 35294

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 1013 bytes --]

* gnu/packages/mate.scm (mate) : New inputs (mate-power-manager).
---
 gnu/packages/mate.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 4a584c3..0b668b4 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2017 ng0 <ng0@n0.is>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2019 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2019 Guy Fleury Iteriteka <hoonandon@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1605,6 +1606,7 @@ used to bring up authentication dialogs.")
        ("mate-terminal"             ,mate-terminal)
        ("mate-themes"               ,mate-themes)
        ("mate-icon-theme"           ,mate-icon-theme)
+       ("mate-power-manager"        ,mate-power-manager)
        ("mate-menu"                 ,mate-menus)
        ("mate-panel"                ,mate-panel)
        ("mate-control-center"       ,mate-control-center)
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* bug#35292: [PATCH 0/2] Add mate-power-manager to MATE
  2019-04-15 20:30 [bug#35292] [PATCH 0/2] Add mate-power-manager to MATE guy fleury iteriteka
  2019-04-15 20:30 ` [bug#35293] [PATCH 1/2] gnu: mate: Add mate-power-manager guy fleury iteriteka
  2019-04-15 20:30 ` [bug#35294] [PATCH 2/2] gnu: mate: Build MATE with mate-power-mager support guy fleury iteriteka
@ 2019-04-15 21:05 ` Danny Milosavljevic
  2 siblings, 0 replies; 6+ messages in thread
From: Danny Milosavljevic @ 2019-04-15 21:05 UTC (permalink / raw)
  To: guy fleury iteriteka; +Cc: 35292-done

[-- Attachment #1: Type: text/plain, Size: 42 bytes --]

Hi,

pushed to guix master.

Thanks!

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#35293: [PATCH 1/2] gnu: mate: Add mate-power-manager.
  2019-04-15 20:30 ` [bug#35293] [PATCH 1/2] gnu: mate: Add mate-power-manager guy fleury iteriteka
@ 2019-12-10  7:02   ` Brett Gilio
  0 siblings, 0 replies; 6+ messages in thread
From: Brett Gilio @ 2019-12-10  7:02 UTC (permalink / raw)
  To: guy fleury iteriteka; +Cc: 35293-done

guy fleury iteriteka <hoonandon@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/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#35294: [PATCH 2/2] gnu: mate: Build MATE with mate-power-mager support.
  2019-04-15 20:30 ` [bug#35294] [PATCH 2/2] gnu: mate: Build MATE with mate-power-mager support guy fleury iteriteka
@ 2019-12-10  7:03   ` Brett Gilio
  0 siblings, 0 replies; 6+ messages in thread
From: Brett Gilio @ 2019-12-10  7:03 UTC (permalink / raw)
  To: guy fleury iteriteka; +Cc: 35294-done

Closing.


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

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-12-10  7:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-15 20:30 [bug#35292] [PATCH 0/2] Add mate-power-manager to MATE guy fleury iteriteka
2019-04-15 20:30 ` [bug#35293] [PATCH 1/2] gnu: mate: Add mate-power-manager guy fleury iteriteka
2019-12-10  7:02   ` bug#35293: " Brett Gilio
2019-04-15 20:30 ` [bug#35294] [PATCH 2/2] gnu: mate: Build MATE with mate-power-mager support guy fleury iteriteka
2019-12-10  7:03   ` bug#35294: " Brett Gilio
2019-04-15 21:05 ` bug#35292: [PATCH 0/2] Add mate-power-manager to MATE Danny Milosavljevic

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).