[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
16/86: gnu: clutter: Update to 1.26.4.
From: |
guix-commits |
Subject: |
16/86: gnu: clutter: Update to 1.26.4. |
Date: |
Sun, 5 Jul 2020 16:16:53 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 573d45891052d20abb6204f60f297612a554a6ca
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri May 29 05:33:21 2020 -0400
gnu: clutter: Update to 1.26.4.
* gnu/packages/gnome.scm (clutter): Update to 1.26.4.
[build-system]: Change from gnu-build-system to meson-build-system.
[arguments]<#:glib-or-gtk?>: New argument.
<#:tests?>: Remove argument.
<#:configure-flags>[-Dwayland_compositor]: New flag.
[--with-html-dir]: Remove flag.
<#:phases>['patch-docbook-xml]: New phase.
['patch-docbook-examples]: New phase.
['move-doc]: New phase.
['pre-check]: New phase.
[native-inputs]: Add docbook-xml, docbook-xsl, gtk-doc, perl, ruby and
xorg-server.
[inputs]: Remove eudev and libxkbcommon.
[propagated-inputs]: Add gdk-pixbuf+svg, eudev, libgudev, libinput,
libx11, libxi, libxkbcommon, pango and wayland. Remove xinput.
[home-page]: Change from http to https.
[license]: Update to lgpl2.1+.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gnome.scm | 108 +++++++++++++++++++++++++++++++++----------------
1 file changed, 74 insertions(+), 34 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index c16ecd2..efa6be0 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4898,57 +4898,97 @@ without stepping on each others toes.")
(define-public clutter
(package
(name "clutter")
- (version "1.26.2")
+ (version "1.26.4")
(source
(origin
(method url-fetch)
- (uri (string-append "mirror://gnome/sources/" name "/"
- (version-major+minor version) "/"
- name "-" version ".tar.xz"))
+ (uri
+ (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
(sha256
- (base32
- "0mif1qnrpkgxi43h7pimim6w6zwywa16ixcliw0yjm9hk0a368z7"))))
+ (base32 "1rn4cd1an6a9dfda884aqpcwcgq8dgydpqvb19nmagw4b70zlj4b"))))
;; NOTE: mutter exports a bundled fork of clutter, so when making changes
;; to clutter, corresponding changes may be appropriate in mutter as well.
- (build-system gnu-build-system)
- (outputs '("out"
- "doc")) ;9 MiB of gtk-doc HTML pages
+ (build-system meson-build-system)
+ (outputs '("out" "doc"))
+ (arguments
+ `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas.
+ #:configure-flags
+ (list
+ "-Dwayland_compositor=true")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-docbook-xml
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let* ((xmldoc (string-append (assoc-ref inputs "docbook-xml")
+ "/xml/dtd/docbook")))
+ (substitute* "doc/reference/clutter-docs.xml"
+ (("http://.*/docbookx\\.dtd")
+ (string-append xmldoc "/docbookx.dtd")))
+ #t)))
+ (add-after 'unpack 'patch-cookbook-examples
+ (lambda _
+ (substitute* "doc/cookbook/meson.build"
+ (("subdir\\('examples'\\)")
+ ""))
+ #t))
+ (add-after 'install 'move-doc
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (assoc-ref outputs "doc")))
+ (mkdir-p (string-append doc "/share"))
+ (rename-file
+ (string-append out "/share/gtk-doc")
+ (string-append doc "/share/gtk-doc"))
+ #t)))
+ (add-before 'check 'pre-check
+ (lambda* (#:key tests? inputs #:allow-other-keys)
+ (if tests?
+ (begin
+ ;; The test suite requires a running X server.
+ (system (format #f "~a/bin/Xvfb :1 +extension GLX &"
+ (assoc-ref inputs "xorg-server")))
+ (setenv "DISPLAY" ":1")
+ #t)
+ (format #t "test suite not run~%"))
+ #t)))))
(native-inputs
- `(("glib:bin" ,glib "bin") ; for glib-genmarshal
+ `(("docbook-xml" ,docbook-xml-4.3)
+ ("docbook-xsl" ,docbook-xsl)
+ ("glib:bin" ,glib "bin")
("gobject-introspection" ,gobject-introspection)
+ ("gtk-doc" ,gtk-doc)
+ ("libxslt" ,libxslt)
+ ("perl" ,perl)
("pkg-config" ,pkg-config)
- ("xsltproc" ,libxslt)))
+ ("ruby" ,ruby)
+ ("xorg-server" ,xorg-server-for-tests)))
(propagated-inputs
- `(("cogl" ,cogl)
+ `(("atk" ,atk)
+ ("cogl" ,cogl)
("cairo" ,cairo)
- ("atk" ,atk)
+ ("eudev" ,eudev)
+ ("gdk-pixbuf+svg" ,gdk-pixbuf+svg)
+ ("glib" ,glib)
("gtk+" ,gtk+)
("json-glib" ,json-glib)
- ("glib" ,glib)
+ ("libgudev" ,libgudev)
+ ("libinput" ,libinput)
+ ("libx11" ,libx11)
("libxcomposite" ,libxcomposite)
("libxdamage" ,libxdamage)
("libxext" ,libxext)
- ("xinput" ,xinput)))
- (inputs
- `(("libxkbcommon" ,libxkbcommon)
- ("udev" ,eudev)))
- (arguments
- `(#:configure-flags (list "--enable-x11-backend=yes"
-
- ;; This produces share/doc/{clutter,cally}.
- (string-append "--with-html-dir="
- (assoc-ref %outputs "doc")
- "/share/doc"))
- ;; XXX FIXME: Get test suite working. It would probably fail in the
- ;; same way the cogl tests fail, since clutter is based on cogl.
- #:tests? #f))
- (home-page "http://www.clutter-project.org")
+ ("libxi" ,libxi)
+ ("libxkbcommon" ,libxkbcommon)
+ ("pango" ,pango)
+ ("wayland" ,wayland)))
(synopsis "OpenGL-based interactive canvas library")
- (description
- "Clutter is an OpenGL-based interactive canvas library, designed for
-creating fast, mainly 2D single window applications such as media box UIs,
-presentations, kiosk style applications and so on.")
- (license license:lgpl2.0+)))
+ (description "Clutter is an OpenGL-based interactive canvas library,
+designed for creating fast, mainly 2D single window applications such as media
+box UIs, presentations, kiosk style applications and so on.")
+ (home-page "https://www.clutter-project.org")
+ (license license:lgpl2.1+)))
(define-public clutter-gtk
(package
- 06/86: gnu: Add libxmlb., (continued)
- 06/86: gnu: Add libxmlb., guix-commits, 2020/07/05
- 08/86: gnu: Add gnome-photos., guix-commits, 2020/07/05
- 10/86: gnu: appstream-glib: Update package definition., guix-commits, 2020/07/05
- 11/86: gnu: at-spi2-core: Update package definition., guix-commits, 2020/07/05
- 12/86: gnu: at-spi2-atk: Update to 2.34.2., guix-commits, 2020/07/05
- 15/86: gnu: font-cantarell: Update package definition., guix-commits, 2020/07/05
- 13/86: gnu: atk: Update to 2.36.0., guix-commits, 2020/07/05
- 18/86: gnu: clutter-gst: Update package definition., guix-commits, 2020/07/05
- 09/86: gnu: adwaita-icon-theme: Update to 3.36.1., guix-commits, 2020/07/05
- 21/86: gnu: catch-framework2: Update to 2.3.0., guix-commits, 2020/07/05
- 16/86: gnu: clutter: Update to 1.26.4.,
guix-commits <=
- 19/86: gnu: cogl: Update package definition., guix-commits, 2020/07/05
- 26/86: gnu: Add presage., guix-commits, 2020/07/05
- 28/86: gnu: gcab: Update to 1.4., guix-commits, 2020/07/05
- 29/86: gnu: gcr: Update to 3.36.0., guix-commits, 2020/07/05
- 25/86: gnu: enchant: Update package definition., guix-commits, 2020/07/05
- 31/86: gnu: gdk-pixbuf+svg: Update package definition., guix-commits, 2020/07/05
- 22/86: gnu: Add ronn., guix-commits, 2020/07/05
- 23/86: gnu: Add nuspell., guix-commits, 2020/07/05
- 30/86: gnu: gdk-pixbuf: Update package definition., guix-commits, 2020/07/05
- 33/86: gnu: Add sysprof., guix-commits, 2020/07/05