guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 8af5b0289fdf69f0b9065c1a445eadf71350be3e
Author: Andreas Enge <[email protected]>
AuthorDate: Sat Jul 4 12:15:25 2026 +0200

    gnu: Remove make-libstdc++-doc.
    
    * gnu/packages/gcc.scm (make-libstdc++-doc): Delete variable.
---
 gnu/packages/gcc.scm | 41 -----------------------------------------
 1 file changed, 41 deletions(-)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 1970cf4ce6..bddec56202 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -1781,47 +1781,6 @@ provides the GNU compiler for the Go programming 
language.")
 (define-public gccgo-16
   (make-gccgo gcc-16))
 
-(define (make-libstdc++-doc gcc)
-  "Return a package with the libstdc++ documentation for GCC."
-  (package
-    (inherit gcc)
-    (name "libstdc++-doc")
-    (version (package-version gcc))
-    (synopsis "GNU libstdc++ documentation")
-    (outputs '("out"))
-    (native-inputs (list doxygen
-                         texinfo
-                         libxml2
-                         libxslt
-                         docbook-xml
-                         docbook-xsl
-                         docbook2x
-                         graphviz)) ;for 'dot', invoked by 'doxygen'
-    (inputs '())
-    (propagated-inputs '())
-    (arguments
-     (list
-      #:out-of-source? #t
-      #:tests? #f                                ;it's just documentation
-      #:phases
-      #~(modify-phases %standard-phases
-          (add-before 'configure 'chdir
-            (lambda _
-              (chdir "libstdc++-v3")))
-          (replace 'build
-            (lambda* (#:key make-flags #:allow-other-keys)
-              (apply invoke `("make" ,@make-flags
-                              "doc-info"
-                              "doc-html"
-                              "doc-man"))))
-          (replace 'install
-            (lambda* (#:key make-flags #:allow-other-keys)
-              (apply invoke `("make" ,@make-flags
-                              "doc-install-info"
-                              "doc-install-html"
-                              "doc-install-man")))))))
-    (properties (alist-delete 'hidden? (package-properties gcc)))))
-
 (define-public isl
   (package
     (name "isl")

Reply via email to