gnu: Sync GNU synopses and descriptions.

* gnu/packages/games.scm (gnugo): Adjust synopsis.
* gnu/packages/libffcall.scm (libffcall): Likewise.
* gnu/packages/lisp.scm (clisp): Adjust synopsis and description.
This commit is contained in:
Ludovic Courtès 2015-02-24 23:12:16 +01:00
parent 2178ed66f7
commit 4cc78cb38f
3 changed files with 7 additions and 9 deletions

View file

@ -849,7 +849,7 @@ (define-public gnugo
"0wkahvqpzq6lzl5r49a4sd4p52frdmphnqsfdv7gdp24bykdfs6s")))) "0wkahvqpzq6lzl5r49a4sd4p52frdmphnqsfdv7gdp24bykdfs6s"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("readline" ,readline))) (inputs `(("readline" ,readline)))
(synopsis "Go game") (synopsis "Play the game of Go")
(description "GNU Go is a program that plays the game of Go, in which (description "GNU Go is a program that plays the game of Go, in which
players place stones on a grid to form territory or capture other stones. players place stones on a grid to form territory or capture other stones.
While it can be played directly from the terminal, rendered in ASCII While it can be played directly from the terminal, rendered in ASCII

View file

@ -41,7 +41,7 @@ (module "ffcall")
"1lwdskc2w4rr98x9flr2726lmj4190l16r0izg7gqxy50801wwgd")))) "1lwdskc2w4rr98x9flr2726lmj4190l16r0izg7gqxy50801wwgd"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments `(#:parallel-build? #f)) (arguments `(#:parallel-build? #f))
(synopsis "Foreign function call libraries") (synopsis "Foreign function calls from interpreters")
(description (description
"GNU Libffcall is a collection of libraries that can be used to build "GNU Libffcall is a collection of libraries that can be used to build
foreign function call interfaces in embedded interpreters.") foreign function call interfaces in embedded interpreters.")

View file

@ -182,13 +182,11 @@ (define-public clisp
;; Makefiles seem to have race conditions. ;; Makefiles seem to have race conditions.
#:parallel-build? #f)) #:parallel-build? #f))
(home-page "http://www.clisp.org/") (home-page "http://www.clisp.org/")
(synopsis "Common Lisp implementation") (synopsis "A Common Lisp implementation")
(description "GNU CLISP is an implementation of ANSI Common Lisp, with (description
many extensions. It includes an interpreter, compiler, debugger, CLOS, MOP, "GNU CLISP is an implementation of ANSI Common Lisp. Common Lisp is a
an FFI, i18n, POSIX and Perl regular expressions, a socket interface, fast high-level, object-oriented functional programming language. CLISP includes
bignums, arbitrary precision floats, and more. An X11 interface is available an interpreter, a compiler, a debugger, and much more.")
through CLX, Garnet and CLUE/CLIO. Command line editing is provided by
readline.")
;; Website says gpl2+, COPYRIGHT file says gpl2; actual source files have ;; Website says gpl2+, COPYRIGHT file says gpl2; actual source files have
;; a lot of gpl3+. (Also some parts are under non-copyleft licenses, such ;; a lot of gpl3+. (Also some parts are under non-copyleft licenses, such
;; as CLX by Texas Instruments.) In that case gpl3+ wins out. ;; as CLX by Texas Instruments.) In that case gpl3+ wins out.