[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
146/295: gnu: glib-with-documentation: Update package definition.
From: |
guix-commits |
Subject: |
146/295: gnu: glib-with-documentation: Update package definition. |
Date: |
Mon, 27 Jul 2020 06:25:54 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 18eaca5b2f19cd0507a912ff165f3be84e274555
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Wed Jun 24 22:15:44 2020 -0400
gnu: glib-with-documentation: Update package definition.
* gnu/packages/glib.scm (glib-with-documentation): Update package
definition.
[properties]: Remove field.
[native-inputs]: Remove libxml2.
[arguments]<#:phases>['patch-docbook-xml]: New phase.
['move-doc]: Modify phase.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/glib.scm | 29 +++++++++++++++++++++--------
1 file changed, 21 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index b5b3c87..36d7278 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -292,27 +292,40 @@ threads, dynamic loading, and an object system.")
;; which in turn depends on glib.
(package
(inherit glib)
- (properties (alist-delete 'hidden? (package-properties glib)))
- (outputs (cons "doc" (package-outputs glib))) ; 20 MiB of GTK-Doc reference
(native-inputs
- `(("gtk-doc" ,gtk-doc) ; for the doc
- ("docbook-xml" ,docbook-xml)
- ("libxml2" ,libxml2)
+ `(("gtk-doc" ,gtk-doc)
+ ("docbook-xml-4.2" ,docbook-xml-4.2)
+ ("docbook-xml-4.5" ,docbook-xml)
,@(package-native-inputs glib)))
+ (outputs (cons "doc" (package-outputs glib)))
(arguments
(substitute-keyword-arguments (package-arguments glib)
((#:configure-flags flags ''())
`(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/reference"
+ (substitute* '("gio/gdbus-object-manager-example/.*\\.xml"
+ "gio/.*\\.xml" "glib/.*\\.xml"
"gobject/.*\\.xml")
+ (("http://www.oasis-open.org/docbook/xml/4.5/")
+ (string-append (assoc-ref inputs "docbook-xml-4.5")
+ "/xml/dtd/docbook/")))
+ (substitute* "gio/gio.xml"
+ (("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"))
(html (string-append "/share/gtk-doc")))
- (copy-recursively (string-append out html)
- (string-append doc html))
- (delete-file-recursively (string-append out html))
+ (mkdir-p (string-append doc "/share"))
+ (rename-file
+ (string-append out html)
+ (string-append doc html))
#t)))))))))
(define gobject-introspection
- 110/295: gnu: Add libxmlb., (continued)
- 110/295: gnu: Add libxmlb., guix-commits, 2020/07/27
- 119/295: gnu: font-cantarell: Update package definition., guix-commits, 2020/07/27
- 105/295: gnu: Add krb5-auth-dialog., guix-commits, 2020/07/27
- 113/295: gnu: adwaita-icon-theme: Update to 3.36.1., guix-commits, 2020/07/27
- 120/295: gnu: clutter: Update to 1.26.4., guix-commits, 2020/07/27
- 129/295: gnu: enchant: Update package definition., guix-commits, 2020/07/27
- 133/295: gnu: gcr: Update to 3.36.0., guix-commits, 2020/07/27
- 138/295: gnu: gjs: Update to 1.58.8., guix-commits, 2020/07/27
- 140/295: gnu: Add mutest., guix-commits, 2020/07/27
- 141/295: gnu: graphene: Update package definition., guix-commits, 2020/07/27
- 146/295: gnu: glib-with-documentation: Update package definition.,
guix-commits <=
- 149/295: gnu: gstreamer: Update package definition., guix-commits, 2020/07/27
- 150/295: gnu: Add libvisual., guix-commits, 2020/07/27
- 151/295: gnu: Add libvisual-plugins., guix-commits, 2020/07/27
- 128/295: gnu: enchant-1.6: Update package definition., guix-commits, 2020/07/27
- 132/295: gnu: gcab: Update to 1.4., guix-commits, 2020/07/27
- 137/295: gnu: Add sysprof., guix-commits, 2020/07/27
- 154/295: gnu: Add nanomsg., guix-commits, 2020/07/27
- 143/295: gnu: Add esound., guix-commits, 2020/07/27
- 136/295: gnu: geoclue: Update to 2.5.6., guix-commits, 2020/07/27
- 155/295: gnu: Add nng., guix-commits, 2020/07/27