gnu: gauche: Remove number of packages from description.

* gnu/packages/scheme.scm (gauche)[description]: Remove number of packages.
[arguments]: Remove useless code.
This commit is contained in:
Gabriel Hondet 2019-01-17 08:24:30 +01:00 committed by Pierre Neidhardt
parent 2615ee9520
commit 6c4a951a6e
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -1214,13 +1214,9 @@ (define-public gauche
(("/bin/sh") (which "sh"))) (("/bin/sh") (which "sh")))
#t)) #t))
(add-after 'build 'build-doc (add-after 'build 'build-doc
(lambda* (#:key outputs #:allow-other-keys) (lambda _
(let* ((out (assoc-ref outputs "out")))
(with-directory-excursion "doc" (with-directory-excursion "doc"
(for-each (invoke "make" "info"))
(lambda (target)
(invoke "make" target))
'("info" "html" "htmls"))))
#t)) #t))
(add-before 'check 'patch-normalize-test (add-before 'check 'patch-normalize-test
;; neutralize sys-normalize-pathname test as it relies on ;; neutralize sys-normalize-pathname test as it relies on
@ -1236,10 +1232,9 @@ (define-public gauche
(("binary net termios") "binary termios")) (("binary net termios") "binary termios"))
#t)) #t))
(add-after 'install 'install-docs (add-after 'install 'install-docs
(lambda* (#:key outputs #:allow-other-keys) (lambda _
(let* ((out (assoc-ref outputs "out")))
(with-directory-excursion "doc" (with-directory-excursion "doc"
(invoke "make" "install"))) (invoke "make" "install"))
#t))))) #t)))))
(synopsis "Scheme scripting engine") (synopsis "Scheme scripting engine")
(description "Gauche is a R7RS Scheme scripting engine aiming at being a (description "Gauche is a R7RS Scheme scripting engine aiming at being a
@ -1247,6 +1242,5 @@ (define-public gauche
large scripts quickly. Quick startup, built-in system interface, native large scripts quickly. Quick startup, built-in system interface, native
multilingual support are some of the goals. Gauche comes with a package multilingual support are some of the goals. Gauche comes with a package
manager/installer @code{gauche-package} which can download, compile, install manager/installer @code{gauche-package} which can download, compile, install
and list gauche extension packages. There are currently 58 packages and list gauche extension packages.")
available.")
(license bsd-3))) (license bsd-3)))