[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
42/49: gnu: glib-with-documentation: Update package definition.
From: |
guix-commits |
Subject: |
42/49: gnu: glib-with-documentation: Update package definition. |
Date: |
Tue, 30 Jun 2020 17:07:08 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 344cb7cb15acb41e7e1f936f3877bcec68ab068b
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
- 25/49: gnu: enchant: Update package definition., (continued)
- 25/49: gnu: enchant: Update package definition., guix-commits, 2020/06/30
- 28/49: gnu: gcab: Update to 1.4., guix-commits, 2020/06/30
- 29/49: gnu: gcr: Update to 3.36.0., guix-commits, 2020/06/30
- 19/49: gnu: cogl: Update package definition., guix-commits, 2020/06/30
- 30/49: gnu: gdk-pixbuf: Update package definition., guix-commits, 2020/06/30
- 14/49: gnu: google-brotli: Update package definition., guix-commits, 2020/06/30
- 24/49: gnu: enchant-1.6: Update package definition., guix-commits, 2020/06/30
- 26/49: gnu: Add presage., guix-commits, 2020/06/30
- 32/49: gnu: geoclue: Update to 2.5.6., guix-commits, 2020/06/30
- 40/49: gnu: faad2: Update to 2.8.8., guix-commits, 2020/06/30
- 42/49: gnu: glib-with-documentation: Update package definition.,
guix-commits <=
- 43/49: gnu: glib-networking: Update to 2.64.3., guix-commits, 2020/06/30
- 46/49: gnu: Add libvisual., guix-commits, 2020/06/30
- 48/49: gnu: gst-plugins-base: Update package definition., guix-commits, 2020/06/30
- 04/49: gnu: Add malcontent., guix-commits, 2020/06/30
- 31/49: gnu: gdk-pixbuf+svg: Update package definition., guix-commits, 2020/06/30
- 33/49: gnu: Add sysprof., guix-commits, 2020/06/30
- 34/49: gnu: gjs: Update to 1.58.8., guix-commits, 2020/06/30
- 35/49: gnu: glib-networking: Update to 2.62.4., guix-commits, 2020/06/30
- 39/49: gnu: Add esound., guix-commits, 2020/06/30
- 02/49: gnu: Add tepl., guix-commits, 2020/06/30