[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/22: gnu: wayland: Update package definition.
From: |
guix-commits |
Subject: |
14/22: gnu: wayland: Update package definition. |
Date: |
Wed, 12 Aug 2020 04:01:13 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit bc920c26befe42031d2682a5a7a7c1cb0a35d1fd
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Sun Aug 9 07:16:35 2020 -0400
gnu: wayland: Update package definition.
* gnu/packages/freedesktop.scm (wayland) [version]: Update to 1.18.0.
[source]<origin>[sha256]: Modify base32.
[build-system]: Change from gnu to meson.
[outputs]: New output "doc".
[arguments]<#:parallel-tests?>: Remove argument.
<#:phases>['patch-docbook-xml]: New phase.
['move-doc]: New phase.
[native-inputs]: Move here docbook-xml and docbook-xsl from ...
[inputs]: ... here. Move libffi to ...
[propagated-inputs]: ... here.
[synopsis]: Modify.
[description]: Modify.
[license]: Change from x11 to expat.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/freedesktop.scm | 87 +++++++++++++++++++++++++++++++-------------
1 file changed, 62 insertions(+), 25 deletions(-)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 56cb26d..d986e7a 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -757,38 +757,75 @@ Python.")
(define-public wayland
(package
(name "wayland")
- (version "1.17.0")
- (source (origin
- (method url-fetch)
- (uri (string-append "https://wayland.freedesktop.org/releases/"
- name "-" version ".tar.xz"))
- (sha256
- (base32
- "194ibzwpdcn6fvk4xngr4bf5axpciwg2bj82fdvz88kfmjw13akj"))))
- (build-system gnu-build-system)
+ (version "1.18.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "https://wayland.freedesktop.org/releases/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32 "0k995rn96xkplrapz5k648j651wc43kq817xk1x8280h16gsfxa6"))))
+ (build-system meson-build-system)
+ (outputs '("out" "doc"))
(arguments
- `(#:parallel-tests? #f))
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-docbook-xml
+ (lambda* (#:key inputs #:allow-other-keys)
+ (with-directory-excursion "doc"
+ (substitute* '("man/wl_display_connect.xml"
+ "publican/sources/Architecture.xml"
+ "publican/sources/Author_Group.xml"
+ "publican/sources/Book_Info.xml"
+ "publican/sources/Client.xml"
+ "publican/sources/Compositors.xml"
+ "publican/sources/Foreword.xml"
+ "publican/sources/Introduction.xml"
+ "publican/sources/Preface.xml"
+ "publican/sources/Protocol.xml"
+ "publican/sources/Server.xml"
+ "publican/sources/Wayland.xml"
+ "publican/sources/Xwayland.xml")
+ (("http://www.oasis-open.org/docbook/xml/4.5/")
+ (string-append (assoc-ref inputs "docbook-xml")
+ "/xml/dtd/docbook/"))
+ (("http://www.oasis-open.org/docbook/xml/4.2/")
+ (string-append (assoc-ref inputs "docbook-xml-4.2")
+ "/xml/dtd/docbook/"))))
+ #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/doc")
+ (string-append doc "/share/doc"))
+ #t))))))
(native-inputs
- `(("doxygen" ,doxygen)
- ("graphviz" ,graphviz)
+ `(("docbook-xml-4.2" ,docbook-xml-4.2)
+ ("docbook-xml" ,docbook-xml)
+ ("docbook-xsl" ,docbook-xsl)
+ ("dot" ,graphviz)
+ ("doxygen" ,doxygen)
("pkg-config" ,pkg-config)
("xmlto" ,xmlto)
("xsltproc" ,libxslt)))
(inputs
- `(("docbook-xml" ,docbook-xml)
- ("docbook-xsl" ,docbook-xsl)
- ("expat" ,expat)
- ("libffi" ,libffi)
- ("libxml2" ,libxml2))) ; for XML_CATALOG_FILES
+ `(("expat" ,expat)
+ ("libxml2" ,libxml2)))
+ (propagated-inputs
+ `(("libffi" ,libffi)))
+ (synopsis "Core Wayland window system code and protocol")
+ (description "Wayland is a project to define a protocol for a compositor to
+talk to its clients as well as a library implementation of the protocol. The
+compositor can be a standalone display server running on Linux kernel
+modesetting and evdev input devices, an X application, or a wayland client
+itself. The clients can be traditional applications, X servers (rootless or
+fullscreen) or other display servers.")
(home-page "https://wayland.freedesktop.org/")
- (synopsis "Display server protocol")
- (description
- "Wayland is a protocol for a compositor to talk to its clients as well as
-a C library implementation of that protocol. The compositor can be a
standalone
-display server running on Linux kernel modesetting and evdev input devices, an
X
-application, or a wayland client itself. The clients can be traditional
-applications, X servers (rootless or fullscreen) or other display servers.")
- (license license:x11)))
+ (license license:expat)))
(define-public wayland-protocols
(package
- 01/22: gnu: nautilus: Update package definition., (continued)
- 01/22: gnu: nautilus: Update package definition., guix-commits, 2020/08/12
- 08/22: gnu: gst-editing-services: Update package definition., guix-commits, 2020/08/12
- 11/22: gnu: libmusicbrainz: Propagate inputs., guix-commits, 2020/08/12
- 03/22: gnu: Add liblouisutdml., guix-commits, 2020/08/12
- 13/22: gnu: totem: Update package definition., guix-commits, 2020/08/12
- 17/22: gnu: Add egl-wayland., guix-commits, 2020/08/12
- 04/22: gnu: Add latex2html., guix-commits, 2020/08/12
- 15/22: gnu: wayland-protocols: Update package definition., guix-commits, 2020/08/12
- 16/22: gnu: Add eglexternalplatform., guix-commits, 2020/08/12
- 09/22: gnu: rygel: Update package definition., guix-commits, 2020/08/12
- 14/22: gnu: wayland: Update package definition.,
guix-commits <=
- 19/22: gnu: gjs: Update package definition., guix-commits, 2020/08/12
- 20/22: gnu: mutter: Update package definition., guix-commits, 2020/08/12
- 12/22: gnu: sushi: Update package definition., guix-commits, 2020/08/12
- 21/22: gnu: gdm: Update package definition., guix-commits, 2020/08/12
- 22/22: gnu: gnome-shell: Update package definition., guix-commits, 2020/08/12
- 05/22: gnu: Add libbraille., guix-commits, 2020/08/12
- 06/22: gnu: Add brltty., guix-commits, 2020/08/12
- 18/22: gnu: Add mozjs-68., guix-commits, 2020/08/12
- 07/22: gnu: orca: Update package definition., guix-commits, 2020/08/12
- 10/22: gnu: simple-scan: Update package definition., guix-commits, 2020/08/12