guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/124: gnu: Temporarily use glib without documentation.


From: guix-commits
Subject: 07/124: gnu: Temporarily use glib without documentation.
Date: Tue, 17 Aug 2021 22:44:58 -0400 (EDT)

raghavgururajan pushed a commit to branch wip-gnome
in repository guix.

commit 38eb51b14d093568ca3647adc91dd87ad5b8f160
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Wed Mar 24 02:47:29 2021 -0400

    gnu: Temporarily use glib without documentation.
    
    GLib v2.68.0 refers to gtk-doc v1.32.1 which is not released yet.
    Therefore, hide glib-with-documentation and unhide glib.
    
    * gnu/packages/glib.scm (glib) [properties]: Remove hidden.
    (glib-with-documentation) [properties]: Add hidden.
    
    Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
---
 gnu/packages/glib.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index 0078a01..bcd2c8d 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -191,7 +191,7 @@ shared NFS home directories.")
            (substitute* "tests/spawn-test.c"
              (("/bin/sh") "sh"))
            #t))))
-    (properties '((hidden? . #t)))
+    ;; (properties '((hidden? . #t)))
     (build-system meson-build-system)
     (outputs '("out"   ; everything
                "bin")) ; glib-mkenums, gtester, etc.; depends on Python
@@ -317,7 +317,8 @@ functions for strings and common data structures.")
   ;; glib's doc must be built in a separate package since it requires gtk-doc,
   ;; which in turn depends on glib.
   (package/inherit glib
-    (properties (alist-delete 'hidden? (package-properties glib)))
+    ;; (properties (alist-delete 'hidden? (package-properties glib)))
+    (properties '((hidden? . #t)))
     (outputs (cons "doc" (package-outputs glib))) ; 20 MiB of GTK-Doc reference
     (native-inputs
      `(("docbook-xml-4.2" ,docbook-xml-4.2)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]