[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/115: gnu: glib-with-documentation: Fix documentation build.
From: |
guix-commits |
Subject: |
06/115: gnu: glib-with-documentation: Fix documentation build. |
Date: |
Fri, 7 May 2021 16:56:21 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit 603c06052e73726178ce6ba9bdea4c5808c67203
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Thu Mar 11 09:39:52 2021 -0500
gnu: glib-with-documentation: Fix documentation build.
* gnu/packages/glib.scm (glib-with-documentation) [native-inputs]:
Add docbook-4.2. Remove libxml2.
[arguments]<#:phases>['patch-docbook-xml]: New phase.
Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
gnu/packages/glib.scm | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index c32e643..76df9e7 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -320,7 +320,8 @@ functions for strings and common data structures.")
(properties (alist-delete 'hidden? (package-properties glib)))
(outputs (cons "doc" (package-outputs glib))) ; 20 MiB of GTK-Doc reference
(native-inputs
- `(("docbook-xml" ,docbook-xml)
+ `(("docbook-xml-4.2" ,docbook-xml-4.2)
+ ("docbook-xml-4.5" ,docbook-xml)
("gtk-doc" ,gtk-doc) ; for the doc
("libxml2" ,libxml2)
,@(package-native-inputs glib)))
@@ -330,6 +331,17 @@ functions for strings and common data structures.")
`(cons "-Dgtk_doc=true" ,flags))
((#:phases phases)
`(modify-phases ,phases
+ (add-after 'unpack 'patch-docbook-xml
+ (lambda* (#:key inputs #:allow-other-keys)
+ (with-directory-excursion "docs"
+ (substitute* (find-files "." "\\.xml$")
+ (("http://www.oasis-open.org/docbook/xml/4\\.5/")
+ (string-append (assoc-ref inputs "docbook-xml-4.5")
+ "/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"))
- 10/115: gnu: glibmm: Update to 2.68.0., (continued)
- 10/115: gnu: glibmm: Update to 2.68.0., guix-commits, 2021/05/07
- 11/115: gnu: glibmm: Enable documentation., guix-commits, 2021/05/07
- 20/115: gnu: cairo: Make some cosmetic changes., guix-commits, 2021/05/07
- 18/115: gnu: gtk-doc: Update synopsis, description, home-page and license., guix-commits, 2021/05/07
- 42/115: gnu: gdk-pixbuf+svg: Correct package definition to include changes from gdk-pixbuf., guix-commits, 2021/05/07
- 27/115: gnu: cairomm-1.13: Fix build., guix-commits, 2021/05/07
- 38/115: gnu: gdk-pixbuf: Fix documentation., guix-commits, 2021/05/07
- 39/115: gnu: gdk-pixbuf: Update to 2.42.4., guix-commits, 2021/05/07
- 56/115: gnu: atk: Update to 2.36.0., guix-commits, 2021/05/07
- 51/115: gnu: libgsf: Enable missing features., guix-commits, 2021/05/07
- 06/115: gnu: glib-with-documentation: Fix documentation build.,
guix-commits <=
- 07/115: gnu: Temporarily use glib without documentation., guix-commits, 2021/05/07
- 16/115: gnu: gtk-doc: Update to 1.32., guix-commits, 2021/05/07
- 15/115: gnu: gtk-doc: Correct inputs., guix-commits, 2021/05/07
- 14/115: gnu: gtk-doc: Change build-system., guix-commits, 2021/05/07
- 23/115: gnu: cairo: Enable some features., guix-commits, 2021/05/07
- 24/115: gnu: cairo: Update synopsis, description and license., guix-commits, 2021/05/07
- 28/115: gnu: pango: Add missing arguments., guix-commits, 2021/05/07
- 25/115: gnu: cairomm: Update to 1.16.0., guix-commits, 2021/05/07
- 26/115: gnu: cairomm: Enable documentation., guix-commits, 2021/05/07
- 41/115: gnu: gdk-pixbuf: Disable failing tests., guix-commits, 2021/05/07