From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 24 09:46:02 2020 Received: (at submit) by debbugs.gnu.org; 24 Sep 2020 13:46:02 +0000 Received: from localhost ([127.0.0.1]:39027 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kLRZS-0000TF-Em for submit@debbugs.gnu.org; Thu, 24 Sep 2020 09:46:02 -0400 Received: from lists.gnu.org ([209.51.188.17]:48572) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kLRZQ-0000Sn-3M for submit@debbugs.gnu.org; Thu, 24 Sep 2020 09:46:01 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:47174) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kLRZP-0005S0-Sh for guix-patches@gnu.org; Thu, 24 Sep 2020 09:45:59 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:56224) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kLRZL-0006Vx-S6 for guix-patches@gnu.org; Thu, 24 Sep 2020 09:45:59 -0400 Received: from dayas.lan (80-110-126-103.cgn.dynamic.surfer.at [80.110.126.103]) by dd26836.kasserver.com (Postfix) with ESMTPSA id D885A336815D; Thu, 24 Sep 2020 15:45:52 +0200 (CEST) From: Danny Milosavljevic To: guix-patches@gnu.org Subject: [WIP master] gnu: Add gobject-introspection+doctool. Date: Thu, 24 Sep 2020 15:45:29 +0200 Message-Id: <20200924134529.14435-1-dannym@scratchpost.org> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Tags: patch Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.145.193; envelope-from=dannym@scratchpost.org; helo=dd26836.kasserver.com X-detected-operating-system: by eggs.gnu.org: First seen = 2020/09/24 09:45:53 X-ACL-Warn: Detected OS = Linux 3.11 and newer [fuzzy] X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Danny Milosavljevic X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/glib.scm (gobject-introspection+doctool): New variable. --- gnu/packages/glib.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index ca037d3b24..0aa8c837cd 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -75,6 +75,7 @@ #:export (dbus glib gobject-introspection + gobject-introspection+doctool dbus-glib intltool itstool @@ -466,6 +467,19 @@ bindings to call into the C library.") ; Some bits are distributed under the LGPL2+, others under the GPL2+ (license license:gpl2+))) +(define gobject-introspection+doctool + (package + (inherit gobject-introspection) + (name "gobject-introspection+doctool") + (native-inputs + `(("python-mako" ,python-mako) + ("python-markdown" ,python-markdown) + ,@(package-native-inputs gobject-introspection))) + (arguments + (substitute-keyword-arguments (package-arguments gobject-introspection) + ((#:configure-flags flags ''()) + `(cons* "-Ddoctool=true" ,flags)))))) + (define intltool (package (name "intltool")