* [PATCH 1/2] gnu: shotwell: Update to 0.23.5.
@ 2016-08-18 12:35 Tobias Geerinckx-Rice
2016-08-18 12:35 ` [PATCH 2/2] gnu: rhythmbox: Update to 3.4 Tobias Geerinckx-Rice
0 siblings, 1 reply; 2+ messages in thread
From: Tobias Geerinckx-Rice @ 2016-08-18 12:35 UTC (permalink / raw)
To: guix-devel
* gnu/packages/gnome.scm (shotwell): Update to 0.23.5.
[propagated-inputs]: Add dconf.
[native-inputs]: Remove m4, desktop-file-utils, which, gnome-doc-utils,
python2 and python2-libxml2. Add itstool.
[inputs]: Remove gst-plugins-good, rest and gtk+. Add glib:bin.
---
The *inputs changed significantly due to a reported change in
build system, so I just started more or less with nothing and kept
what's needed to build. Inputs now don't include things like gtk+,
though, which might be a mistake.
Other removed inputs like rest and gst-plugins-good were obsolete or
unreferenced, respectively.
gnu/packages/gnome.scm | 30 +++++++++---------------------
1 file changed, 9 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index e133fcc..66b461c 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -21,6 +21,7 @@
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
+;;; Copyright © 2016 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -85,7 +86,6 @@
#:use-module (gnu packages libusb)
#:use-module (gnu packages lirc)
#:use-module (gnu packages lua)
- #:use-module (gnu packages m4)
#:use-module (gnu packages image)
#:use-module (gnu packages networking)
#:use-module (gnu packages password-utils)
@@ -3841,7 +3841,7 @@ metadata in photo and video files of various formats.")
(define-public shotwell
(package
(name "shotwell")
- (version "0.23.1")
+ (version "0.23.5")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
@@ -3849,39 +3849,27 @@ metadata in photo and video files of various formats.")
name "-" version ".tar.xz"))
(sha256
(base32
- "12imip32mav0zqg1fh4xm6zk4qsgg2435xsyb6ljz47i37zk6kg2"))))
+ "0fgs1rgvkmy79bmpxrsvm5w8rvqml4l1vnwma0xqx5zzm02p8a07"))))
(build-system glib-or-gtk-build-system)
- (arguments
- `(#:tests? #f ;no "check" target
- #:make-flags '("CC=gcc")
- #:configure-flags '("--disable-gsettings-convert-install")
- #:out-of-source? #f))
+ (propagated-inputs
+ `(("dconf" ,dconf)))
(native-inputs
`(("pkg-config" ,pkg-config)
("gettext" ,gnu-gettext)
- ("m4" ,m4)
- ("desktop-file-utils" ,desktop-file-utils)
- ("vala" ,vala)
- ("which" ,which)
- ("gnome-doc-utils" ,gnome-doc-utils)
- ;; FIXME: I only added python2-libxml2 because xml2po needs it at
- ;; runtime. It should be propagated.
- ("python2-libxml2" ,python2-libxml2)
- ("python2" ,python-2)))
+ ("itstool" ,itstool)
+ ("vala" ,vala)))
(inputs
- `(("gstreamer" ,gstreamer)
+ `(("glib:bin" ,glib "bin")
+ ("gstreamer" ,gstreamer)
("gst-plugins-base" ,gst-plugins-base)
- ("gst-plugins-good" ,gst-plugins-good)
("libgee" ,libgee)
("gexiv2" ,gexiv2)
("libraw" ,libraw)
("json-glib" ,json-glib)
- ("rest" ,rest)
("webkitgtk" ,webkitgtk)
("sqlite" ,sqlite)
("libsoup" ,libsoup)
("libxml2" ,libxml2)
- ("gtk+" ,gtk+)
("libgudev" ,libgudev)
("libgphoto2" ,libgphoto2)))
(home-page "https://wiki.gnome.org/Apps/Shotwell")
--
2.7.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH 2/2] gnu: rhythmbox: Update to 3.4.
2016-08-18 12:35 [PATCH 1/2] gnu: shotwell: Update to 0.23.5 Tobias Geerinckx-Rice
@ 2016-08-18 12:35 ` Tobias Geerinckx-Rice
0 siblings, 0 replies; 2+ messages in thread
From: Tobias Geerinckx-Rice @ 2016-08-18 12:35 UTC (permalink / raw)
To: guix-devel
* gnu/packages/gnome.scm (rhythmbox): Update to 3.4.
[arguments]: Add PYTHONPATH environment variable to 'wrap-program'.
---
WebKit ambitions seem to have been shelved by upstream due to OpenBSD
W^X concerns. Also remove them from our TODO list.
gnu/packages/gnome.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 66b461c..bac7f11 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3263,7 +3263,7 @@ which can read a large number of file formats.")
(define-public rhythmbox
(package
(name "rhythmbox")
- (version "3.2.1")
+ (version "3.4")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
@@ -3271,7 +3271,7 @@ which can read a large number of file formats.")
name "-" version ".tar.xz"))
(sha256
(base32
- "0f3radhlji7rxl760yl2vm49fvfslympxrpm8497acbmbd7wlhxz"))))
+ "1347747m90aiz47wny1f8rdk5195qf2ph0554c6y91711sm951gg"))))
(build-system glib-or-gtk-build-system)
(arguments
`(#:configure-flags
@@ -3289,11 +3289,13 @@ which can read a large number of file formats.")
(let ((out (assoc-ref outputs "out"))
(gi-typelib-path (getenv "GI_TYPELIB_PATH"))
(gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH"))
- (grl-plugin-path (getenv "GRL_PLUGIN_PATH")))
+ (grl-plugin-path (getenv "GRL_PLUGIN_PATH"))
+ (python-path (getenv "PYTHONPATH")))
(wrap-program (string-append out "/bin/rhythmbox")
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))
`("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))
- `("GRL_PLUGIN_PATH" ":" prefix (,grl-plugin-path))))
+ `("GRL_PLUGIN_PATH" ":" prefix (,grl-plugin-path))
+ `("PYTHONPATH" ":" prefix (,python-path))))
#t)))))
(propagated-inputs
`(("dconf" ,dconf)))
@@ -3339,7 +3341,6 @@ which can read a large number of file formats.")
;; TODO:
;; * libgpod
;; * mx
- ;; * webkit
("brasero" ,brasero)))
(home-page "https://wiki.gnome.org/Apps/Rhythmbox")
(synopsis "Music player for GNOME")
--
2.7.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-08-18 12:36 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-18 12:35 [PATCH 1/2] gnu: shotwell: Update to 0.23.5 Tobias Geerinckx-Rice
2016-08-18 12:35 ` [PATCH 2/2] gnu: rhythmbox: Update to 3.4 Tobias Geerinckx-Rice
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).