* [bug#33327] [PATCH 1/2] gnu: gtk-doc: Use local docbook-xsl.
@ 2018-11-09 18:20 Pierre Neidhardt
2018-11-09 18:24 ` [bug#33327] [PATCH 2/2] gnu: webkitgtk: Include documentation Pierre Neidhardt
2018-11-10 22:27 ` [bug#33327] [PATCH 1/2] gnu: gtk-doc: Use local docbook-xsl Ludovic Courtès
0 siblings, 2 replies; 7+ messages in thread
From: Pierre Neidhardt @ 2018-11-09 18:20 UTC (permalink / raw)
To: 33327
* gnu/packages/gtk.scm (gtk-doc): Use local docbook-xsl.
---
gnu/packages/gtk.scm | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 640bd75da..0d62b8083 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -19,6 +19,7 @@
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1411,7 +1412,12 @@ information.")
(string-append (assoc-ref inputs "docbook-xsl")
"/xml/xsl/docbook-xsl-"
,(package-version docbook-xsl)
- "/html/chunk.xsl")))
+ "/html/chunk.xsl"))
+ (("http://docbook.sourceforge.net/release/xsl/current/common/en.xml")
+ (string-append (assoc-ref inputs "docbook-xsl")
+ "/xml/xsl/docbook-xsl-"
+ ,(package-version docbook-xsl)
+ "/common/en.xml")))
#t))
(add-after 'patch-gtk-doc-scan 'patch-test-out
(lambda _
--
2.19.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#33327] [PATCH 2/2] gnu: webkitgtk: Include documentation.
2018-11-09 18:20 [bug#33327] [PATCH 1/2] gnu: gtk-doc: Use local docbook-xsl Pierre Neidhardt
@ 2018-11-09 18:24 ` Pierre Neidhardt
2018-11-10 22:27 ` Ludovic Courtès
2018-11-10 22:27 ` [bug#33327] [PATCH 1/2] gnu: gtk-doc: Use local docbook-xsl Ludovic Courtès
1 sibling, 1 reply; 7+ messages in thread
From: Pierre Neidhardt @ 2018-11-09 18:24 UTC (permalink / raw)
To: 33327
* gnu/packages/webkit.scm (webkitgtk): Include documentation.
---
gnu/packages/webkit.scm | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm
index d1890c8b3..b4560c0e4 100644
--- a/gnu/packages/webkit.scm
+++ b/gnu/packages/webkit.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2015, 2016, 2017, 2018 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -31,6 +32,7 @@
#:use-module (gnu packages base)
#:use-module (gnu packages bison)
#:use-module (gnu packages databases)
+ #:use-module (gnu packages docbook)
#:use-module (gnu packages enchant)
#:use-module (gnu packages flex)
#:use-module (gnu packages gcc)
@@ -71,6 +73,7 @@
#:build-type "Release" ; turn off debugging symbols to save space
#:configure-flags (list
"-DPORT=GTK"
+ "-DENABLE_GTKDOC=ON" ; No doc by default
(string-append ; uses lib64 by default
"-DLIB_INSTALL_DIR="
(assoc-ref %outputs "out") "/lib")
@@ -87,7 +90,20 @@
;; XXX Disable WOFF2 ‘web fonts’. These were never
;; supported in our previous builds. Enabling them
;; requires building libwoff2 and possibly woff2dec.
- "-DUSE_WOFF2=OFF")))
+ "-DUSE_WOFF2=OFF")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-gtk-doc-scan
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "Source/WebKit/WebProcess/InjectedBundle/API/gtk/DOM/docs/webkitdomgtk-docs.sgml"
+ (("http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd")
+ (string-append (assoc-ref inputs "docbook-xml")
+ "/xml/dtd/docbook/docbookx.dtd")))
+ (substitute* "Source/WebKit/UIProcess/API/gtk/docs/webkit2gtk-docs.sgml"
+ (("http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd")
+ (string-append (assoc-ref inputs "docbook-xml")
+ "/xml/dtd/docbook/docbookx.dtd")))
+ #t)))))
(native-inputs
`(("bison" ,bison)
("gettext" ,gettext-minimal)
@@ -97,6 +113,8 @@
("perl" ,perl)
("pkg-config" ,pkg-config)
("python" ,python-2) ; incompatible with Python 3 (print syntax)
+ ("gtk-doc" ,gtk-doc) ; For documentation generation
+ ("docbook-xml" ,docbook-xml) ; For documentation generation
("ruby" ,ruby)))
(propagated-inputs
`(("gtk+" ,gtk+)
--
2.19.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#33327] [PATCH 1/2] gnu: gtk-doc: Use local docbook-xsl.
2018-11-09 18:20 [bug#33327] [PATCH 1/2] gnu: gtk-doc: Use local docbook-xsl Pierre Neidhardt
2018-11-09 18:24 ` [bug#33327] [PATCH 2/2] gnu: webkitgtk: Include documentation Pierre Neidhardt
@ 2018-11-10 22:27 ` Ludovic Courtès
1 sibling, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2018-11-10 22:27 UTC (permalink / raw)
To: Pierre Neidhardt; +Cc: 33327
Hi,
Pierre Neidhardt <mail@ambrevar.xyz> skribis:
> * gnu/packages/gtk.scm (gtk-doc): Use local docbook-xsl.
This is so that users of gtk-doc don’t need to specify where docbook-xsl
is to be searched for, right?
Ludo’.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [bug#33327] [PATCH 2/2] gnu: webkitgtk: Include documentation.
2018-11-09 18:24 ` [bug#33327] [PATCH 2/2] gnu: webkitgtk: Include documentation Pierre Neidhardt
@ 2018-11-10 22:27 ` Ludovic Courtès
2018-11-11 10:54 ` Pierre Neidhardt
0 siblings, 1 reply; 7+ messages in thread
From: Ludovic Courtès @ 2018-11-10 22:27 UTC (permalink / raw)
To: Pierre Neidhardt; +Cc: 33327
Pierre Neidhardt <mail@ambrevar.xyz> skribis:
> * gnu/packages/webkit.scm (webkitgtk): Include documentation.
Since generated HTML documentation tends to take a lot of space, what
about moving it to a “doc” output?
Otherwise LGTM.
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [bug#33327] [PATCH 2/2] gnu: webkitgtk: Include documentation.
2018-11-10 22:27 ` Ludovic Courtès
@ 2018-11-11 10:54 ` Pierre Neidhardt
2018-11-11 11:35 ` Ludovic Courtès
0 siblings, 1 reply; 7+ messages in thread
From: Pierre Neidhardt @ 2018-11-11 10:54 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 33327
[-- Attachment #1: Type: text/plain, Size: 541 bytes --]
> This is so that users of gtk-doc don’t need to specify where docbook-xsl
> is to be searched for, right?
On the user-side, I don't know, but without this thee doc of WebKitGTK would
fail to build, so this is necessary on the builder side.
> Since generated HTML documentation tends to take a lot of space, what
> about moving it to a “doc” output?
Documentation is <7MB, <5% of the total package size, so I didn't bother
creating a separate output.
What do you think?
--
Pierre Neidhardt
https://ambrevar.xyz/
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [bug#33327] [PATCH 2/2] gnu: webkitgtk: Include documentation.
2018-11-11 10:54 ` Pierre Neidhardt
@ 2018-11-11 11:35 ` Ludovic Courtès
2018-11-11 15:06 ` Pierre Neidhardt
0 siblings, 1 reply; 7+ messages in thread
From: Ludovic Courtès @ 2018-11-11 11:35 UTC (permalink / raw)
To: Pierre Neidhardt; +Cc: 33327
Pierre Neidhardt <mail@ambrevar.xyz> skribis:
>> This is so that users of gtk-doc don’t need to specify where docbook-xsl
>> is to be searched for, right?
>
> On the user-side, I don't know, but without this thee doc of WebKitGTK would
> fail to build, so this is necessary on the builder side.
But other packages that use gtk-doc don’t have this problem, right? Any
idea what’s different?
>> Since generated HTML documentation tends to take a lot of space, what
>> about moving it to a “doc” output?
>
> Documentation is <7MB, <5% of the total package size, so I didn't bother
> creating a separate output.
> What do you think?
I have a preference for a separate “doc” output nonetheless, if it’s not
too difficult to achieve.
Thanks for your feedback,
Ludo’.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [bug#33327] [PATCH 2/2] gnu: webkitgtk: Include documentation.
2018-11-11 11:35 ` Ludovic Courtès
@ 2018-11-11 15:06 ` Pierre Neidhardt
0 siblings, 0 replies; 7+ messages in thread
From: Pierre Neidhardt @ 2018-11-11 15:06 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 33327
[-- Attachment #1: Type: text/plain, Size: 410 bytes --]
> But other packages that use gtk-doc don’t have this problem, right? Any
> idea what’s different?
I assume it's because WebKitGTK documentation uses some option of gtkdoc that
other packages don't use.
> I have a preference for a separate “doc” output nonetheless, if it’s not
> too difficult to achieve.
OK, I'll them and merge then.
--
Pierre Neidhardt
https://ambrevar.xyz/
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-11-11 15:08 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-09 18:20 [bug#33327] [PATCH 1/2] gnu: gtk-doc: Use local docbook-xsl Pierre Neidhardt
2018-11-09 18:24 ` [bug#33327] [PATCH 2/2] gnu: webkitgtk: Include documentation Pierre Neidhardt
2018-11-10 22:27 ` Ludovic Courtès
2018-11-11 10:54 ` Pierre Neidhardt
2018-11-11 11:35 ` Ludovic Courtès
2018-11-11 15:06 ` Pierre Neidhardt
2018-11-10 22:27 ` [bug#33327] [PATCH 1/2] gnu: gtk-doc: Use local docbook-xsl Ludovic Courtès
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.