* Add some package definitions for MATE
@ 2016-02-09 23:00 Fabian Harfert
2016-02-09 23:00 ` [PATCH 1/5] gnu: Add mate-icon-theme Fabian Harfert
` (4 more replies)
0 siblings, 5 replies; 16+ messages in thread
From: Fabian Harfert @ 2016-02-09 23:00 UTC (permalink / raw)
To: guix-devel
Hi!
These are some basic package definitions for the MATE desktop environment. I already finished mate-panel (these are its dependencies), but I still want to do some testing on it.
Fabian
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 1/5] gnu: Add mate-icon-theme.
2016-02-09 23:00 Add some package definitions for MATE Fabian Harfert
@ 2016-02-09 23:00 ` Fabian Harfert
2016-02-11 20:43 ` Efraim Flashner
2016-02-09 23:00 ` [PATCH 2/5] gnu: Add mate-themes Fabian Harfert
` (3 subsequent siblings)
4 siblings, 1 reply; 16+ messages in thread
From: Fabian Harfert @ 2016-02-09 23:00 UTC (permalink / raw)
To: guix-devel
* gnu/packages/mate.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/mate.scm (mate-icon-theme): New variable.
---
gnu-system.am | 1 +
gnu/packages/mate.scm | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
create mode 100644 gnu/packages/mate.scm
diff --git a/gnu-system.am b/gnu-system.am
index 4d32e59..5083206 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -215,6 +215,7 @@ GNU_SYSTEM_MODULES = \
gnu/packages/mail.scm \
gnu/packages/make-bootstrap.scm \
gnu/packages/markdown.scm \
+ gnu/packages/mate.scm \
gnu/packages/maths.scm \
gnu/packages/mc.scm \
gnu/packages/mcrypt.scm \
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
new file mode 100644
index 0000000..d8242d6
--- /dev/null
+++ b/gnu/packages/mate.scm
@@ -0,0 +1,53 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2016 Fabian Harfert <fhmgufs@web.de>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages mate)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix utils)
+ #:use-module (guix build-system gnu)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages glib)
+ #:use-module (gnu packages gtk)
+ #:use-module (gnu packages gnome))
+
+(define-public mate-icon-theme
+ (package
+ (name "mate-icon-theme")
+ (version "1.12.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://pub.mate-desktop.org/releases/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "0d91rvl9rw3xl8hmdcbb6xvi880kfmh2ra5chhrjimrjqgl57qkp"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("intltool" ,intltool)
+ ("gtk+" ,gtk+)
+ ("icon-naming-utils" ,icon-naming-utils)))
+ (home-page "http://mate-desktop.org/")
+ (synopsis "The MATE desktop environment icon theme")
+ (description
+ "This package contains the default icon theme used by the MATE desktop.")
+ (license license:lgpl3+)))
--
2.7.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 2/5] gnu: Add mate-themes.
2016-02-09 23:00 Add some package definitions for MATE Fabian Harfert
2016-02-09 23:00 ` [PATCH 1/5] gnu: Add mate-icon-theme Fabian Harfert
@ 2016-02-09 23:00 ` Fabian Harfert
2016-02-11 20:51 ` Efraim Flashner
2016-02-09 23:00 ` [PATCH 3/5] gnu: Add mate-desktop Fabian Harfert
` (2 subsequent siblings)
4 siblings, 1 reply; 16+ messages in thread
From: Fabian Harfert @ 2016-02-09 23:00 UTC (permalink / raw)
To: guix-devel
* gnu/packages/mate.scm (mate-themes): New variable.
---
gnu/packages/mate.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index d8242d6..6e5ce7c 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -51,3 +51,35 @@
(description
"This package contains the default icon theme used by the MATE desktop.")
(license license:lgpl3+)))
+
+(define-public mate-themes
+ (package
+ (name "mate-themes")
+ (version "1.12.2")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://pub.mate-desktop.org/releases/"
+ (version-major+minor version) "/"
+ name "-gtk"
+ (version-major+minor (package-version gtk+))
+ "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "0kyrlgs5azzj60gnxx2n9qszcligxn959wr42wr0iqnrpiygk5nf"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("intltool" ,intltool)))
+ (inputs
+ `(("gtk+" ,gtk+-2)
+ ("gdk-pixbuf" ,gdk-pixbuf)
+ ("gtk-engines" ,gtk-engines)
+ ("murrine" ,murrine)))
+ (home-page "http://mate-desktop.org/")
+ (synopsis
+ "Official themes for the MATE desktop")
+ (description
+ "This package includes the standard themes for the MATE desktop, for
+example Menta, TraditionalOk, GreenLaguna or BlackMate.")
+ (license (list license:lgpl2.1+ license:cc-by-sa3.0 license:gpl3+
+ license:gpl2+))))
--
2.7.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 3/5] gnu: Add mate-desktop.
2016-02-09 23:00 Add some package definitions for MATE Fabian Harfert
2016-02-09 23:00 ` [PATCH 1/5] gnu: Add mate-icon-theme Fabian Harfert
2016-02-09 23:00 ` [PATCH 2/5] gnu: Add mate-themes Fabian Harfert
@ 2016-02-09 23:00 ` Fabian Harfert
2016-02-17 11:26 ` Efraim Flashner
2016-02-09 23:00 ` [PATCH 4/5] gnu: Add libmateweather Fabian Harfert
2016-02-09 23:00 ` [PATCH 5/5] gnu: Add mate-menus Fabian Harfert
4 siblings, 1 reply; 16+ messages in thread
From: Fabian Harfert @ 2016-02-09 23:00 UTC (permalink / raw)
To: guix-devel
* gnu/packages/mate.scm (mate-desktop): New variable.
---
gnu/packages/mate.scm | 37 ++++++++++++++++++++++++++++++++++++-
1 file changed, 36 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 6e5ce7c..c377418 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -26,7 +26,9 @@
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages glib)
#:use-module (gnu packages gtk)
- #:use-module (gnu packages gnome))
+ #:use-module (gnu packages gnome)
+ #:use-module (gnu packages xorg)
+ #:use-module (gnu packages xdisorg))
(define-public mate-icon-theme
(package
@@ -83,3 +85,36 @@
example Menta, TraditionalOk, GreenLaguna or BlackMate.")
(license (list license:lgpl2.1+ license:cc-by-sa3.0 license:gpl3+
license:gpl2+))))
+
+(define-public mate-desktop
+ (package
+ (name "mate-desktop")
+ (version "1.12.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://pub.mate-desktop.org/releases/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "00ssrzm07xyrjra075jhir1f8iy382lla7923fhic29lap26mffr"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("intltool" ,intltool)
+ ("glib:bin" ,glib "bin")
+ ("gobject-introspection" ,gobject-introspection)
+ ("yelp-tools" ,yelp-tools)
+ ("gtk-doc" ,gtk-doc)))
+ (inputs
+ `(("libxrandr" ,libxrandr)))
+ (propagated-inputs
+ `(("dconf" ,dconf)
+ ("gtk+" ,gtk+-2)
+ ("startup-notification" ,startup-notification)))
+ (home-page "https://mate-desktop.org/")
+ (synopsis "Library with common API for various MATE modules")
+ (description
+ "This package contains a public API shared by several applications on the
+desktop and the mate-about program.")
+ (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.1+))))
--
2.7.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 4/5] gnu: Add libmateweather.
2016-02-09 23:00 Add some package definitions for MATE Fabian Harfert
` (2 preceding siblings ...)
2016-02-09 23:00 ` [PATCH 3/5] gnu: Add mate-desktop Fabian Harfert
@ 2016-02-09 23:00 ` Fabian Harfert
2016-02-17 11:26 ` Efraim Flashner
2016-02-09 23:00 ` [PATCH 5/5] gnu: Add mate-menus Fabian Harfert
4 siblings, 1 reply; 16+ messages in thread
From: Fabian Harfert @ 2016-02-09 23:00 UTC (permalink / raw)
To: guix-devel
* gnu/packages/mate.scm (libmateweather): New variable.
---
gnu/packages/mate.scm | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 50 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index c377418..d94d7b7 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -28,7 +28,9 @@
#:use-module (gnu packages gtk)
#:use-module (gnu packages gnome)
#:use-module (gnu packages xorg)
- #:use-module (gnu packages xdisorg))
+ #:use-module (gnu packages xdisorg)
+ #:use-module (gnu packages base)
+ #:use-module (gnu packages xml))
(define-public mate-icon-theme
(package
@@ -118,3 +120,50 @@ example Menta, TraditionalOk, GreenLaguna or BlackMate.")
"This package contains a public API shared by several applications on the
desktop and the mate-about program.")
(license (list license:gpl2+ license:lgpl2.0+ license:fdl1.1+))))
+
+(define-public libmateweather
+ (package
+ (name "libmateweather")
+ (version "1.12.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://pub.mate-desktop.org/releases/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "0qrq6z6knybixnxmsvkw58hm033m91inf523mbvzgv2r822fpakl"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:configure-flags
+ `(,(string-append "--with-zoneinfo-dir="
+ (assoc-ref %build-inputs "tzdata")
+ "/share/zoneinfo"))
+ #:phases
+ (modify-phases %standard-phases
+ (add-before
+ 'check 'pre-check
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "data/check-timezones.sh"
+ (("/usr/share/zoneinfo/zone.tab")
+ (string-append (assoc-ref inputs "tzdata")
+ "/share/zoneinfo/zone.tab")))
+ #t)))))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("intltool" ,intltool)
+ ("glib:bin" ,glib "bin")))
+ (inputs
+ `(("dconf" ,dconf)
+ ("tzdata" ,tzdata)))
+ (propagated-inputs
+ `(("gtk+" ,gtk+-2)
+ ("gdk-pixbuf" ,gdk-pixbuf)
+ ("libxml2" ,libxml2)
+ ("libsoup" ,libsoup)))
+ (home-page "https://mate-desktop.org/")
+ (synopsis "MATE library for weather information from the Internet")
+ (description
+ "This library provides acess to weather information from the internet for
+the MATE desktop environment.")
+ (license license:lgpl2.1+)))
--
2.7.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 5/5] gnu: Add mate-menus.
2016-02-09 23:00 Add some package definitions for MATE Fabian Harfert
` (3 preceding siblings ...)
2016-02-09 23:00 ` [PATCH 4/5] gnu: Add libmateweather Fabian Harfert
@ 2016-02-09 23:00 ` Fabian Harfert
2016-02-17 11:36 ` Efraim Flashner
4 siblings, 1 reply; 16+ messages in thread
From: Fabian Harfert @ 2016-02-09 23:00 UTC (permalink / raw)
To: guix-devel
* gnu/packages/mate.scm (mate-menus): New variable.
---
gnu/packages/mate.scm | 43 ++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 42 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index d94d7b7..7f482e9 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -30,7 +30,8 @@
#:use-module (gnu packages xorg)
#:use-module (gnu packages xdisorg)
#:use-module (gnu packages base)
- #:use-module (gnu packages xml))
+ #:use-module (gnu packages xml)
+ #:use-module (gnu packages python))
(define-public mate-icon-theme
(package
@@ -167,3 +168,43 @@ desktop and the mate-about program.")
"This library provides acess to weather information from the internet for
the MATE desktop environment.")
(license license:lgpl2.1+)))
+
+(define-public mate-menus
+ (package
+ (name "mate-menus")
+ (version "1.12.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://pub.mate-desktop.org/releases/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1i4m3fj0vd85zyhqhm8x9yr0h5i08aa4l99zqvbk59ncj6z3bdxh"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'fix-introspection-install-dir
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (substitute* '("configure")
+ (("`\\$PKG_CONFIG --variable=girdir gobject-introspection-1.0`")
+ (string-append "\"" out "/share/gir-1.0/\""))
+ (("\\$\\(\\$PKG_CONFIG --variable=typelibdir gobject-introspection-1.0\\)")
+ (string-append out "/lib/girepository-1.0/")))))))))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("intltool" ,intltool)
+ ("gobject-introspection" ,gobject-introspection)))
+ (inputs
+ `(("python" ,python-2)))
+ (propagated-inputs
+ `(("glib" ,glib)))
+ (home-page "https://mate-desktop.org/")
+ (synopsis "Freedesktop menu specification implementation for MATE")
+ (description
+ "The package contains an implementation of the freedesktop menu
+specification, the MATE menu layout configuration files, .directory files and
+assorted menu related utility programs.")
+ (license (list license:gpl2+ license:lgpl2.0+))))
--
2.7.0
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH 1/5] gnu: Add mate-icon-theme.
2016-02-09 23:00 ` [PATCH 1/5] gnu: Add mate-icon-theme Fabian Harfert
@ 2016-02-11 20:43 ` Efraim Flashner
2016-02-11 21:01 ` Fabian Harfert
0 siblings, 1 reply; 16+ messages in thread
From: Efraim Flashner @ 2016-02-11 20:43 UTC (permalink / raw)
To: Fabian Harfert; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 3661 bytes --]
On Wed, 10 Feb 2016 00:00:20 +0100
Fabian Harfert <fhmgufs@web.de> wrote:
> * gnu/packages/mate.scm: New file.
> * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
> * gnu/packages/mate.scm (mate-icon-theme): New variable.
> ---
> gnu-system.am | 1 +
> gnu/packages/mate.scm | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 54 insertions(+)
> create mode 100644 gnu/packages/mate.scm
>
> diff --git a/gnu-system.am b/gnu-system.am
> index 4d32e59..5083206 100644
> --- a/gnu-system.am
> +++ b/gnu-system.am
> @@ -215,6 +215,7 @@ GNU_SYSTEM_MODULES = \
> gnu/packages/mail.scm \
> gnu/packages/make-bootstrap.scm \
> gnu/packages/markdown.scm \
> + gnu/packages/mate.scm \
> gnu/packages/maths.scm \
> gnu/packages/mc.scm \
> gnu/packages/mcrypt.scm \
> diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
> new file mode 100644
> index 0000000..d8242d6
> --- /dev/null
> +++ b/gnu/packages/mate.scm
> @@ -0,0 +1,53 @@
> +;;; GNU Guix --- Functional package management for GNU
> +;;; Copyright © 2016 Fabian Harfert <fhmgufs@web.de>
> +;;;
> +;;; This file is part of GNU Guix.
> +;;;
> +;;; GNU Guix is free software; you can redistribute it and/or modify it
> +;;; under the terms of the GNU General Public License as published by
> +;;; the Free Software Foundation; either version 3 of the License, or (at
> +;;; your option) any later version.
> +;;;
> +;;; GNU Guix is distributed in the hope that it will be useful, but
> +;;; WITHOUT ANY WARRANTY; without even the implied warranty of
> +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> +;;; GNU General Public License for more details.
> +;;;
> +;;; You should have received a copy of the GNU General Public License
> +;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
> +
> +(define-module (gnu packages mate)
> + #:use-module ((guix licenses) #:prefix license:)
> + #:use-module (guix packages)
> + #:use-module (guix download)
> + #:use-module (guix utils)
> + #:use-module (guix build-system gnu)
> + #:use-module (gnu packages)
> + #:use-module (gnu packages pkg-config)
> + #:use-module (gnu packages glib)
> + #:use-module (gnu packages gtk)
> + #:use-module (gnu packages gnome))
> +
> +(define-public mate-icon-theme
> + (package
> + (name "mate-icon-theme")
> + (version "1.12.0")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append "http://pub.mate-desktop.org/releases/"
> + (version-major+minor version) "/"
> + name "-" version ".tar.xz"))
> + (sha256
> + (base32
> + "0d91rvl9rw3xl8hmdcbb6xvi880kfmh2ra5chhrjimrjqgl57qkp"))))
> + (build-system gnu-build-system)
> + (native-inputs
> + `(("pkg-config" ,pkg-config)
> + ("intltool" ,intltool)
> + ("gtk+" ,gtk+)
> + ("icon-naming-utils" ,icon-naming-utils)))
Do the last 3 native-inputs need to be native-inputs or are regular inputs
sufficient?
> + (home-page "http://mate-desktop.org/")
> + (synopsis "The MATE desktop environment icon theme")
> + (description
> + "This package contains the default icon theme used by the MATE desktop.")
> + (license license:lgpl3+)))
Otherwise it looks good.
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 2/5] gnu: Add mate-themes.
2016-02-09 23:00 ` [PATCH 2/5] gnu: Add mate-themes Fabian Harfert
@ 2016-02-11 20:51 ` Efraim Flashner
2016-02-11 21:03 ` Fabian Harfert
0 siblings, 1 reply; 16+ messages in thread
From: Efraim Flashner @ 2016-02-11 20:51 UTC (permalink / raw)
To: Fabian Harfert; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 2609 bytes --]
On Wed, 10 Feb 2016 00:00:21 +0100
Fabian Harfert <fhmgufs@web.de> wrote:
> From: Fabian Harfert <fhmgufs@web.de>
> To: guix-devel@gnu.org
> Subject: [PATCH 2/5] gnu: Add mate-themes.
> Date: Wed, 10 Feb 2016 00:00:21 +0100
> Sender: guix-devel-bounces+efraim=flashner.co.il@gnu.org
> X-Mailer: git-send-email 2.7.0
>
> * gnu/packages/mate.scm (mate-themes): New variable.
> ---
> gnu/packages/mate.scm | 32 ++++++++++++++++++++++++++++++++
> 1 file changed, 32 insertions(+)
>
> diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
> index d8242d6..6e5ce7c 100644
> --- a/gnu/packages/mate.scm
> +++ b/gnu/packages/mate.scm
> @@ -51,3 +51,35 @@
> (description
> "This package contains the default icon theme used by the MATE desktop.")
> (license license:lgpl3+)))
> +
> +(define-public mate-themes
> + (package
> + (name "mate-themes")
> + (version "1.12.2")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append "http://pub.mate-desktop.org/releases/"
> + (version-major+minor version) "/"
> + name "-gtk"
> + (version-major+minor (package-version gtk+))
> + "-" version ".tar.xz"))
I applied the first two patches to my checkout and although I was sure it
would try to use the gtk+-2 from the inputs, it downloaded
mate-themes-gtk3.18-1.12.2.tar.xz
> + (sha256
> + (base32
> + "0kyrlgs5azzj60gnxx2n9qszcligxn959wr42wr0iqnrpiygk5nf"))))
> + (build-system gnu-build-system)
> + (native-inputs
> + `(("pkg-config" ,pkg-config)
> + ("intltool" ,intltool)))
> + (inputs
> + `(("gtk+" ,gtk+-2)
> + ("gdk-pixbuf" ,gdk-pixbuf)
> + ("gtk-engines" ,gtk-engines)
> + ("murrine" ,murrine)))
> + (home-page "http://mate-desktop.org/")
> + (synopsis
> + "Official themes for the MATE desktop")
> + (description
> + "This package includes the standard themes for the MATE desktop, for
> +example Menta, TraditionalOk, GreenLaguna or BlackMate.")
> + (license (list license:lgpl2.1+ license:cc-by-sa3.0 license:gpl3+
> + license:gpl2+))))
Any chance the 4 themes match up with the 4 licenses?
It looks good to me
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 1/5] gnu: Add mate-icon-theme.
2016-02-11 20:43 ` Efraim Flashner
@ 2016-02-11 21:01 ` Fabian Harfert
2016-02-17 11:25 ` Efraim Flashner
0 siblings, 1 reply; 16+ messages in thread
From: Fabian Harfert @ 2016-02-11 21:01 UTC (permalink / raw)
To: guix-devel
On Thu, 11 Feb 2016 22:43:56 +0200
Efraim Flashner <efraim@flashner.co.il>wrote :
> On Wed, 10 Feb 2016 00:00:20 +0100
> Fabian Harfert <fhmgufs@web.de> wrote:
>
> > * gnu/packages/mate.scm: New file.
> > * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
> > * gnu/packages/mate.scm (mate-icon-theme): New variable.
> > ---
> > gnu-system.am | 1 +
> > gnu/packages/mate.scm | 53
> > +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files
> > changed, 54 insertions(+) create mode 100644 gnu/packages/mate.scm
> >
> > diff --git a/gnu-system.am b/gnu-system.am
> > index 4d32e59..5083206 100644
> > --- a/gnu-system.am
> > +++ b/gnu-system.am
> > @@ -215,6 +215,7 @@ GNU_SYSTEM_MODULES
> > = \
> > gnu/packages/mail.scm \
> > gnu/packages/make-bootstrap.scm \
> > gnu/packages/markdown.scm \
> > + gnu/packages/mate.scm \
> > gnu/packages/maths.scm \
> > gnu/packages/mc.scm \
> > gnu/packages/mcrypt.scm \
> > diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
> > new file mode 100644
> > index 0000000..d8242d6
> > --- /dev/null
> > +++ b/gnu/packages/mate.scm
> > @@ -0,0 +1,53 @@
> > +;;; GNU Guix --- Functional package management for GNU
> > +;;; Copyright © 2016 Fabian Harfert <fhmgufs@web.de>
> > +;;;
> > +;;; This file is part of GNU Guix.
> > +;;;
> > +;;; GNU Guix is free software; you can redistribute it and/or
> > modify it +;;; under the terms of the GNU General Public License as
> > published by +;;; the Free Software Foundation; either version 3 of
> > the License, or (at +;;; your option) any later version.
> > +;;;
> > +;;; GNU Guix is distributed in the hope that it will be useful, but
> > +;;; WITHOUT ANY WARRANTY; without even the implied warranty of
> > +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> > +;;; GNU General Public License for more details.
> > +;;;
> > +;;; You should have received a copy of the GNU General Public
> > License +;;; along with GNU Guix. If not, see
> > <http://www.gnu.org/licenses/>. +
> > +(define-module (gnu packages mate)
> > + #:use-module ((guix licenses) #:prefix license:)
> > + #:use-module (guix packages)
> > + #:use-module (guix download)
> > + #:use-module (guix utils)
> > + #:use-module (guix build-system gnu)
> > + #:use-module (gnu packages)
> > + #:use-module (gnu packages pkg-config)
> > + #:use-module (gnu packages glib)
> > + #:use-module (gnu packages gtk)
> > + #:use-module (gnu packages gnome))
> > +
> > +(define-public mate-icon-theme
> > + (package
> > + (name "mate-icon-theme")
> > + (version "1.12.0")
> > + (source (origin
> > + (method url-fetch)
> > + (uri (string-append
> > "http://pub.mate-desktop.org/releases/"
> > + (version-major+minor version) "/"
> > + name "-" version ".tar.xz"))
> > + (sha256
> > + (base32
> > +
> > "0d91rvl9rw3xl8hmdcbb6xvi880kfmh2ra5chhrjimrjqgl57qkp"))))
> > + (build-system gnu-build-system)
> > + (native-inputs
> > + `(("pkg-config" ,pkg-config)
> > + ("intltool" ,intltool)
> > + ("gtk+" ,gtk+)
> > + ("icon-naming-utils" ,icon-naming-utils)))
>
> Do the last 3 native-inputs need to be native-inputs or are regular
> inputs sufficient?
Yes, they are needed at build time.
>
> > + (home-page "http://mate-desktop.org/")
> > + (synopsis "The MATE desktop environment icon theme")
> > + (description
> > + "This package contains the default icon theme used by the
> > MATE desktop.")
> > + (license license:lgpl3+)))
>
> Otherwise it looks good.
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 2/5] gnu: Add mate-themes.
2016-02-11 20:51 ` Efraim Flashner
@ 2016-02-11 21:03 ` Fabian Harfert
2016-02-17 11:26 ` Efraim Flashner
0 siblings, 1 reply; 16+ messages in thread
From: Fabian Harfert @ 2016-02-11 21:03 UTC (permalink / raw)
To: guix-devel
Am Thu, 11 Feb 2016 22:51:44 +0200
schrieb Efraim Flashner <efraim@flashner.co.il>:
> On Wed, 10 Feb 2016 00:00:21 +0100
> Fabian Harfert <fhmgufs@web.de> wrote:
>
> > From: Fabian Harfert <fhmgufs@web.de>
> > To: guix-devel@gnu.org
> > Subject: [PATCH 2/5] gnu: Add mate-themes.
> > Date: Wed, 10 Feb 2016 00:00:21 +0100
> > Sender: guix-devel-bounces+efraim=flashner.co.il@gnu.org
> > X-Mailer: git-send-email 2.7.0
> >
> > * gnu/packages/mate.scm (mate-themes): New variable.
> > ---
> > gnu/packages/mate.scm | 32 ++++++++++++++++++++++++++++++++
> > 1 file changed, 32 insertions(+)
> >
> > diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
> > index d8242d6..6e5ce7c 100644
> > --- a/gnu/packages/mate.scm
> > +++ b/gnu/packages/mate.scm
> > @@ -51,3 +51,35 @@
> > (description
> > "This package contains the default icon theme used by the
> > MATE desktop.") (license license:lgpl3+)))
> > +
> > +(define-public mate-themes
> > + (package
> > + (name "mate-themes")
> > + (version "1.12.2")
> > + (source (origin
> > + (method url-fetch)
> > + (uri (string-append
> > "http://pub.mate-desktop.org/releases/"
> > + (version-major+minor version) "/"
> > + name "-gtk"
> > + (version-major+minor
> > (package-version gtk+))
> > + "-" version ".tar.xz"))
> I applied the first two patches to my checkout and although I was
> sure it would try to use the gtk+-2 from the inputs, it downloaded
> mate-themes-gtk3.18-1.12.2.tar.xz
That's right. Of course the themes should support the newest Gtk+
versions. I'm not sure wether gtk+-2 is really needed as an input, but
the developers mention it in their Debian and Arch packages. Because
they didn't include gtk+-3 I thought that it might be needed.
>
> > + (sha256
> > + (base32
> > +
> > "0kyrlgs5azzj60gnxx2n9qszcligxn959wr42wr0iqnrpiygk5nf"))))
> > + (build-system gnu-build-system)
> > + (native-inputs
> > + `(("pkg-config" ,pkg-config)
> > + ("intltool" ,intltool)))
> > + (inputs
> > + `(("gtk+" ,gtk+-2)
> > + ("gdk-pixbuf" ,gdk-pixbuf)
> > + ("gtk-engines" ,gtk-engines)
> > + ("murrine" ,murrine)))
> > + (home-page "http://mate-desktop.org/")
> > + (synopsis
> > + "Official themes for the MATE desktop")
> > + (description
> > + "This package includes the standard themes for the MATE
> > desktop, for +example Menta, TraditionalOk, GreenLaguna or
> > BlackMate.")
> > + (license (list license:lgpl2.1+ license:cc-by-sa3.0
> > license:gpl3+
> > + license:gpl2+))))
> Any chance the 4 themes match up with the 4 licenses?
>
> It looks good to me
>
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 1/5] gnu: Add mate-icon-theme.
2016-02-11 21:01 ` Fabian Harfert
@ 2016-02-17 11:25 ` Efraim Flashner
0 siblings, 0 replies; 16+ messages in thread
From: Efraim Flashner @ 2016-02-17 11:25 UTC (permalink / raw)
To: Fabian Harfert; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 560 bytes --]
On Thu, 11 Feb 2016 22:01:19 +0100
Fabian Harfert <fhmgufs@web.de> wrote:
> On Thu, 11 Feb 2016 22:43:56 +0200
> Efraim Flashner <efraim@flashner.co.il>wrote :
>
> [...]
> [...]
> [...]
>
> Yes, they are needed at build time.
>
> [...]
> [...]
> [...]
>
pushed in bb2fe79e6e205aa83bc5a94a77e61267b342dccf
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 2/5] gnu: Add mate-themes.
2016-02-11 21:03 ` Fabian Harfert
@ 2016-02-17 11:26 ` Efraim Flashner
0 siblings, 0 replies; 16+ messages in thread
From: Efraim Flashner @ 2016-02-17 11:26 UTC (permalink / raw)
To: Fabian Harfert; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 803 bytes --]
On Thu, 11 Feb 2016 22:03:54 +0100
Fabian Harfert <fhmgufs@web.de> wrote:
> Am Thu, 11 Feb 2016 22:51:44 +0200
> schrieb Efraim Flashner <efraim@flashner.co.il>:
>
> [...]
> [...]
> [...]
>
> That's right. Of course the themes should support the newest Gtk+
> versions. I'm not sure wether gtk+-2 is really needed as an input, but
> the developers mention it in their Debian and Arch packages. Because
> they didn't include gtk+-3 I thought that it might be needed.
>
> [...]
> [...]
> [...]
>
pushed in cbfe494dd79d31746e0df2bef5ec0c99d48a1f47
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 4/5] gnu: Add libmateweather.
2016-02-09 23:00 ` [PATCH 4/5] gnu: Add libmateweather Fabian Harfert
@ 2016-02-17 11:26 ` Efraim Flashner
0 siblings, 0 replies; 16+ messages in thread
From: Efraim Flashner @ 2016-02-17 11:26 UTC (permalink / raw)
To: Fabian Harfert; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 3235 bytes --]
On Wed, 10 Feb 2016 00:00:23 +0100
Fabian Harfert <fhmgufs@web.de> wrote:
> * gnu/packages/mate.scm (libmateweather): New variable.
> ---
> gnu/packages/mate.scm | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 50 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
> index c377418..d94d7b7 100644
> --- a/gnu/packages/mate.scm
> +++ b/gnu/packages/mate.scm
> @@ -28,7 +28,9 @@
> #:use-module (gnu packages gtk)
> #:use-module (gnu packages gnome)
> #:use-module (gnu packages xorg)
> - #:use-module (gnu packages xdisorg))
> + #:use-module (gnu packages xdisorg)
> + #:use-module (gnu packages base)
> + #:use-module (gnu packages xml))
>
> (define-public mate-icon-theme
> (package
> @@ -118,3 +120,50 @@ example Menta, TraditionalOk, GreenLaguna or BlackMate.")
> "This package contains a public API shared by several applications on the
> desktop and the mate-about program.")
> (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.1+))))
> +
> +(define-public libmateweather
> + (package
> + (name "libmateweather")
> + (version "1.12.1")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append "http://pub.mate-desktop.org/releases/"
> + (version-major+minor version) "/"
> + name "-" version ".tar.xz"))
> + (sha256
> + (base32
> + "0qrq6z6knybixnxmsvkw58hm033m91inf523mbvzgv2r822fpakl"))))
> + (build-system gnu-build-system)
> + (arguments
> + `(#:configure-flags
> + `(,(string-append "--with-zoneinfo-dir="
> + (assoc-ref %build-inputs "tzdata")
> + "/share/zoneinfo"))
> + #:phases
> + (modify-phases %standard-phases
> + (add-before
> + 'check 'pre-check
> + (lambda* (#:key inputs #:allow-other-keys)
> + (substitute* "data/check-timezones.sh"
> + (("/usr/share/zoneinfo/zone.tab")
> + (string-append (assoc-ref inputs "tzdata")
> + "/share/zoneinfo/zone.tab")))
> + #t)))))
> + (native-inputs
> + `(("pkg-config" ,pkg-config)
> + ("intltool" ,intltool)
> + ("glib:bin" ,glib "bin")))
> + (inputs
> + `(("dconf" ,dconf)
> + ("tzdata" ,tzdata)))
> + (propagated-inputs
> + `(("gtk+" ,gtk+-2)
> + ("gdk-pixbuf" ,gdk-pixbuf)
> + ("libxml2" ,libxml2)
> + ("libsoup" ,libsoup)))
> + (home-page "https://mate-desktop.org/")
> + (synopsis "MATE library for weather information from the Internet")
> + (description
> + "This library provides acess to weather information from the internet for
> +the MATE desktop environment.")
> + (license license:lgpl2.1+)))
Looks good! pushed in c346db0ba384b89812de10eafd721412fa5a907a
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 3/5] gnu: Add mate-desktop.
2016-02-09 23:00 ` [PATCH 3/5] gnu: Add mate-desktop Fabian Harfert
@ 2016-02-17 11:26 ` Efraim Flashner
0 siblings, 0 replies; 16+ messages in thread
From: Efraim Flashner @ 2016-02-17 11:26 UTC (permalink / raw)
To: Fabian Harfert; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 2673 bytes --]
On Wed, 10 Feb 2016 00:00:22 +0100
Fabian Harfert <fhmgufs@web.de> wrote:
> * gnu/packages/mate.scm (mate-desktop): New variable.
> ---
> gnu/packages/mate.scm | 37 ++++++++++++++++++++++++++++++++++++-
> 1 file changed, 36 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
> index 6e5ce7c..c377418 100644
> --- a/gnu/packages/mate.scm
> +++ b/gnu/packages/mate.scm
> @@ -26,7 +26,9 @@
> #:use-module (gnu packages pkg-config)
> #:use-module (gnu packages glib)
> #:use-module (gnu packages gtk)
> - #:use-module (gnu packages gnome))
> + #:use-module (gnu packages gnome)
> + #:use-module (gnu packages xorg)
> + #:use-module (gnu packages xdisorg))
>
> (define-public mate-icon-theme
> (package
> @@ -83,3 +85,36 @@
> example Menta, TraditionalOk, GreenLaguna or BlackMate.")
> (license (list license:lgpl2.1+ license:cc-by-sa3.0 license:gpl3+
> license:gpl2+))))
> +
> +(define-public mate-desktop
> + (package
> + (name "mate-desktop")
> + (version "1.12.1")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append "http://pub.mate-desktop.org/releases/"
> + (version-major+minor version) "/"
> + name "-" version ".tar.xz"))
> + (sha256
> + (base32
> + "00ssrzm07xyrjra075jhir1f8iy382lla7923fhic29lap26mffr"))))
> + (build-system gnu-build-system)
> + (native-inputs
> + `(("pkg-config" ,pkg-config)
> + ("intltool" ,intltool)
> + ("glib:bin" ,glib "bin")
> + ("gobject-introspection" ,gobject-introspection)
> + ("yelp-tools" ,yelp-tools)
> + ("gtk-doc" ,gtk-doc)))
> + (inputs
> + `(("libxrandr" ,libxrandr)))
> + (propagated-inputs
> + `(("dconf" ,dconf)
> + ("gtk+" ,gtk+-2)
> + ("startup-notification" ,startup-notification)))
> + (home-page "https://mate-desktop.org/")
> + (synopsis "Library with common API for various MATE modules")
> + (description
> + "This package contains a public API shared by several applications on the
> +desktop and the mate-about program.")
> + (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.1+))))
I had to comment out gtk-doc since it currently doesn't buid.
pushed in 9b0fd3d1515a9e67f43a6b6527992c7f5b47811d
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 5/5] gnu: Add mate-menus.
2016-02-09 23:00 ` [PATCH 5/5] gnu: Add mate-menus Fabian Harfert
@ 2016-02-17 11:36 ` Efraim Flashner
2016-02-17 13:26 ` Fabian Harfert
0 siblings, 1 reply; 16+ messages in thread
From: Efraim Flashner @ 2016-02-17 11:36 UTC (permalink / raw)
To: Fabian Harfert; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 3244 bytes --]
On Wed, 10 Feb 2016 00:00:24 +0100
Fabian Harfert <fhmgufs@web.de> wrote:
> * gnu/packages/mate.scm (mate-menus): New variable.
> ---
> gnu/packages/mate.scm | 43 ++++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 42 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
> index d94d7b7..7f482e9 100644
> --- a/gnu/packages/mate.scm
> +++ b/gnu/packages/mate.scm
> @@ -30,7 +30,8 @@
> #:use-module (gnu packages xorg)
> #:use-module (gnu packages xdisorg)
> #:use-module (gnu packages base)
> - #:use-module (gnu packages xml))
> + #:use-module (gnu packages xml)
> + #:use-module (gnu packages python))
>
> (define-public mate-icon-theme
> (package
> @@ -167,3 +168,43 @@ desktop and the mate-about program.")
> "This library provides acess to weather information from the internet for
> the MATE desktop environment.")
> (license license:lgpl2.1+)))
> +
> +(define-public mate-menus
> + (package
> + (name "mate-menus")
> + (version "1.12.0")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append "http://pub.mate-desktop.org/releases/"
> + (version-major+minor version) "/"
> + name "-" version ".tar.xz"))
> + (sha256
> + (base32
> + "1i4m3fj0vd85zyhqhm8x9yr0h5i08aa4l99zqvbk59ncj6z3bdxh"))))
> + (build-system gnu-build-system)
> + (arguments
> + `(#:phases
> + (modify-phases %standard-phases
> + (add-after 'unpack 'fix-introspection-install-dir
> + (lambda* (#:key outputs #:allow-other-keys)
> + (let ((out (assoc-ref outputs "out")))
> + (substitute* '("configure")
> + (("`\\$PKG_CONFIG --variable=girdir gobject-introspection-1.0`")
> + (string-append "\"" out "/share/gir-1.0/\""))
> + (("\\$\\(\\$PKG_CONFIG --variable=typelibdir gobject-introspection-1.0\\)")
> + (string-append out "/lib/girepository-1.0/")))))))))
> + (native-inputs
> + `(("pkg-config" ,pkg-config)
> + ("intltool" ,intltool)
> + ("gobject-introspection" ,gobject-introspection)))
> + (inputs
> + `(("python" ,python-2)))
> + (propagated-inputs
> + `(("glib" ,glib)))
> + (home-page "https://mate-desktop.org/")
> + (synopsis "Freedesktop menu specification implementation for MATE")
> + (description
> + "The package contains an implementation of the freedesktop menu
> +specification, the MATE menu layout configuration files, .directory files and
> +assorted menu related utility programs.")
> + (license (list license:gpl2+ license:lgpl2.0+))))
some of the lines were a bit long so I changed the indenting. can't wait for
the rest of mate!
pushed in 1249991c372c6b9c3518c8b43322573287308b3e
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH 5/5] gnu: Add mate-menus.
2016-02-17 11:36 ` Efraim Flashner
@ 2016-02-17 13:26 ` Fabian Harfert
0 siblings, 0 replies; 16+ messages in thread
From: Fabian Harfert @ 2016-02-17 13:26 UTC (permalink / raw)
To: guix-devel
Hi!
> some of the lines were a bit long so I changed the indenting. can't
> wait for the rest of mate!
The rest will follow soon, thanks for pushing :)
Fabian
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2016-02-17 13:26 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-09 23:00 Add some package definitions for MATE Fabian Harfert
2016-02-09 23:00 ` [PATCH 1/5] gnu: Add mate-icon-theme Fabian Harfert
2016-02-11 20:43 ` Efraim Flashner
2016-02-11 21:01 ` Fabian Harfert
2016-02-17 11:25 ` Efraim Flashner
2016-02-09 23:00 ` [PATCH 2/5] gnu: Add mate-themes Fabian Harfert
2016-02-11 20:51 ` Efraim Flashner
2016-02-11 21:03 ` Fabian Harfert
2016-02-17 11:26 ` Efraim Flashner
2016-02-09 23:00 ` [PATCH 3/5] gnu: Add mate-desktop Fabian Harfert
2016-02-17 11:26 ` Efraim Flashner
2016-02-09 23:00 ` [PATCH 4/5] gnu: Add libmateweather Fabian Harfert
2016-02-17 11:26 ` Efraim Flashner
2016-02-09 23:00 ` [PATCH 5/5] gnu: Add mate-menus Fabian Harfert
2016-02-17 11:36 ` Efraim Flashner
2016-02-17 13:26 ` Fabian Harfert
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.