[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/05: gnu: libmateweather: Update to 1.16.1.
From: |
Efraim Flashner |
Subject: |
01/05: gnu: libmateweather: Update to 1.16.1. |
Date: |
Tue, 8 Nov 2016 20:55:07 +0000 (UTC) |
efraim pushed a commit to branch core-updates
in repository guix.
commit 065999807dbc70df04efe5d2740456e9af2f9224
Author: Efraim Flashner <address@hidden>
Date: Tue Nov 8 20:41:27 2016 +0200
gnu: libmateweather: Update to 1.16.1.
* gnu/packages/mate.scm (libmateweather): Update to 1.16.1.
[arguments]: Build with gtk+-3.
[propagated-inputs]: Remove gtk+-2, move gdk-pixbuf ...
[inputs]: ... to here. Add gtk+-3.
---
gnu/packages/mate.scm | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index c4b75f8..8bc148f 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Fabian Harfert <address@hidden>
+;;; Copyright © 2016 Efraim Flashner <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -125,7 +126,7 @@ desktop and the mate-about program.")
(define-public libmateweather
(package
(name "libmateweather")
- (version "1.12.1")
+ (version "1.16.1")
(source (origin
(method url-fetch)
(uri (string-append "http://pub.mate-desktop.org/releases/"
@@ -133,11 +134,12 @@ desktop and the mate-about program.")
name "-" version ".tar.xz"))
(sha256
(base32
- "0qrq6z6knybixnxmsvkw58hm033m91inf523mbvzgv2r822fpakl"))))
+ "0w1b8b1ckmkbvwnqi9yh2lwbskzhz99s5yxdkar5xiqylnjrwmm3"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags
- `(,(string-append "--with-zoneinfo-dir="
+ `("--with-gtk=3.0"
+ ,(string-append "--with-zoneinfo-dir="
(assoc-ref %build-inputs "tzdata")
"/share/zoneinfo"))
#:phases
@@ -156,16 +158,17 @@ desktop and the mate-about program.")
("glib:bin" ,glib "bin")))
(inputs
`(("dconf" ,dconf)
+ ("gdk-pixbuf" ,gdk-pixbuf)
+ ("gtk+" ,gtk+)
("tzdata" ,tzdata)))
(propagated-inputs
- `(("gtk+" ,gtk+-2)
- ("gdk-pixbuf" ,gdk-pixbuf)
- ("libxml2" ,libxml2)
- ("libsoup" ,libsoup)))
+ ;; both of these are requires.private in mateweather.pc
+ `(("libsoup" ,libsoup)
+ ("libxml2" ,libxml2)))
(home-page "http://mate-desktop.org/")
(synopsis "MATE library for weather information from the Internet")
(description
- "This library provides acess to weather information from the internet for
+ "This library provides access to weather information from the internet for
the MATE desktop environment.")
(license license:lgpl2.1+)))