[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
73/125: gnu: wayland: Fix and move documentation.
From: |
guix-commits |
Subject: |
73/125: gnu: wayland: Fix and move documentation. |
Date: |
Sat, 3 Jul 2021 21:17:33 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit 88eb52399d6908b537b085bd01d369afc4bae79e
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Fri Mar 26 10:42:00 2021 -0400
gnu: wayland: Fix and move documentation.
* gnu/packages/freedesktop.scm (wayland) [outputs]: New output "doc".
[arguments]<#:phases>['patch-docbook-xml]: New phase.
['move-doc]: New phase.
Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
gnu/packages/freedesktop.scm | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 8b7fbf2..3209abf 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -960,8 +960,31 @@ Python.")
(base32
"05bd2vphyx8qwa1mhsj1zdaiv4m4v94wrlssrn0lad8d601dkk5s"))))
(build-system meson-build-system)
+ (outputs '("out" "doc"))
(arguments
- `(#:parallel-tests? #f))
+ `(#: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* (find-files "." "\\.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
`(("docbook-xml-4.2" ,docbook-xml-4.2)
("docbook-xml" ,docbook-xml)
- 84/125: gnu: gtkmm: Update to 3.24.4., (continued)
- 84/125: gnu: gtkmm: Update to 3.24.4., guix-commits, 2021/07/03
- 90/125: gnu: ibus: Remove trailing #t in phases., guix-commits, 2021/07/03
- 91/125: gnu: iqa: Correct source uri., guix-commits, 2021/07/03
- 95/125: gnu: gst-plugins-base: Update to 1.18.4., guix-commits, 2021/07/03
- 99/125: gnu: gst-libav: Update to 1.18.4., guix-commits, 2021/07/03
- 74/125: gnu: wayland: Update synopsis, description and license., guix-commits, 2021/07/03
- 92/125: gnu: faac: Correct source uri., guix-commits, 2021/07/03
- 93/125: gnu: zbar: Update to 0.23.90., guix-commits, 2021/07/03
- 96/125: gnu: gst-plugins-base: Enable more features., guix-commits, 2021/07/03
- 104/125: gnu: glib: Disable failing test., guix-commits, 2021/07/03
- 73/125: gnu: wayland: Fix and move documentation.,
guix-commits <=
- 69/125: gnu: json-glib: Update to 1.6.2., guix-commits, 2021/07/03
- 78/125: gnu: gtk+-2: Add missing inputs and search-path., guix-commits, 2021/07/03
- 83/125: gnu: gtk+: Update to 3.24.27., guix-commits, 2021/07/03
- 103/125: gnu: cairo: Reintroduce security patches [security fixes]., guix-commits, 2021/07/03
- 107/125: gnu: pango: Use meson-0.55, as required by the project., guix-commits, 2021/07/03
- 108/125: gnu: glib-networking: Update to 2.68.0., guix-commits, 2021/07/03
- 110/125: gnu: glib-networking: Update home-page, synopsis, description and license., guix-commits, 2021/07/03
- 118/125: gnu: libepoxy: Propagate mesa., guix-commits, 2021/07/03
- 124/125: gnu: tracker-miners: Enable some features., guix-commits, 2021/07/03
- 85/125: gnu: gtkmm-2: Fix build., guix-commits, 2021/07/03