From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:34724) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ghZc6-00080S-Fe for guix-patches@gnu.org; Thu, 10 Jan 2019 07:39:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ghZc2-0001zY-Jf for guix-patches@gnu.org; Thu, 10 Jan 2019 07:39:10 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:53736) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ghZby-0001yD-5q for guix-patches@gnu.org; Thu, 10 Jan 2019 07:39:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ghZbx-00023i-V0 for guix-patches@gnu.org; Thu, 10 Jan 2019 07:39:01 -0500 Subject: [bug#34028] [PATCH] gnu: dbus: Build documentation (manpages and html). Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:34553) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ghZb3-0007xO-DI for guix-patches@gnu.org; Thu, 10 Jan 2019 07:38:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ghZb1-0001e4-Az for guix-patches@gnu.org; Thu, 10 Jan 2019 07:38:05 -0500 Received: from mail-it1-x129.google.com ([2607:f8b0:4864:20::129]:37315) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ghZb1-0001dQ-4e for guix-patches@gnu.org; Thu, 10 Jan 2019 07:38:03 -0500 Received: by mail-it1-x129.google.com with SMTP id b5so15978516iti.2 for ; Thu, 10 Jan 2019 04:38:01 -0800 (PST) Received: from kwak ([157.52.5.144]) by smtp.gmail.com with ESMTPSA id h139sm9564711ith.24.2019.01.10.04.38.00 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 10 Jan 2019 04:38:00 -0800 (PST) From: Maxim Cournoyer Date: Thu, 10 Jan 2019 07:37:54 -0500 Message-ID: <875zuw1ye5.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34028@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello, This adds the documentation for dbus. It should be applied to core-updates. Thanks, Maxim --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-dbus-Build-documentation-manpages-and-html.patch Content-Transfer-Encoding: quoted-printable >From 2067f89a28a631eb05dd7301c08554bb0e9faa96 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 10 Jan 2019 07:35:38 -0500 Subject: [PATCH] gnu: dbus: Build documentation (manpages and html). * gnu/packages/glib.scm (dbus)[native-inputs]: Add docbook-xml-4.4, docbook-xsl, doxygen, xmlto, libxml2, libxslt and yelp-tools. [outputs]: Add a "doc" output to hold the large HTML documentation. --- gnu/packages/glib.scm | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index cd9b48caf..946ed2ba1 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -9,6 +9,7 @@ ;;; Copyright =C2=A9 2017 Petter ;;; Copyright =C2=A9 2018 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2018 Alex Vong +;;; Copyright =C2=A9 2019 Maxim Cournoyer ;;; ;;; This file is part of GNU Guix. ;;; @@ -33,6 +34,8 @@ #:use-module (gnu packages bison) #:use-module (gnu packages check) #:use-module (gnu packages compression) + #:use-module (gnu packages docbook) + #:use-module (gnu packages documentation) #:use-module (gnu packages enlightenment) #:use-module (gnu packages file) #:use-module (gnu packages flex) @@ -118,14 +121,21 @@ "sysconfdir=3D/tmp/dummy" "install")))))) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("pkg-config" ,pkg-config) + ;; Dependencies to generate the doc. + ("docbook-xml" ,docbook-xml-4.4) + ("docbook-xsl" ,docbook-xsl) + ("doxygen" ,doxygen) + ("xmlto" ,xmlto) + ("libxml2" ,libxml2) ;for XML_CATALOG_FILES + ("libxslt" ,libxslt) + ("yelp-tools" ,yelp-tools))) (inputs `(("expat" ,expat) - ;; Add a dependency on libx11 so that 'dbus-launch' has support for ;; '--autolaunch'. ("libx11" ,libx11))) - + (outputs '("out" "doc")) ;22 MiB of HTML doc (home-page "https://www.freedesktop.org/wiki/Software/dbus/") (synopsis "Message bus for inter-process communication (IPC)") (description --=20 2.20.1 --=-=-=--