mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: guile-lib: Fix description.
* gnu/packages/guile-xyz.scm (guile-lib)[description]: Delete garbage characters. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
e97ab7fff7
commit
3c12e40dca
1 changed files with 29 additions and 29 deletions
|
@ -2560,35 +2560,35 @@ (define-public guile-lib
|
||||||
modules, allowing for people to cooperate integrating their generic Guile
|
modules, allowing for people to cooperate integrating their generic Guile
|
||||||
modules into a coherent library. Think \"a down-scaled, limited-scope CPAN
|
modules into a coherent library. Think \"a down-scaled, limited-scope CPAN
|
||||||
for Guile\". It provides the following modules:
|
for Guile\". It provides the following modules:
|
||||||
+@itemize
|
@itemize
|
||||||
+@item (apicheck) Describe and verify library programming interfaces.
|
@item (apicheck) Describe and verify library programming interfaces.
|
||||||
+@item (config load) Loading configuration files.
|
@item (config load) Loading configuration files.
|
||||||
+@item (container async-queue) A thread-safe message queue.
|
@item (container async-queue) A thread-safe message queue.
|
||||||
+@item (container nodal-tree) A tree consisting of nodes with attributes.
|
@item (container nodal-tree) A tree consisting of nodes with attributes.
|
||||||
+@item (container delay-tree) A nodal tree with lazily evaluated fields.
|
@item (container delay-tree) A nodal tree with lazily evaluated fields.
|
||||||
+@item (debugging assert) Helpful assert macro.
|
@item (debugging assert) Helpful assert macro.
|
||||||
+@item (debugging time) A simple macro to time the execution of an expression.
|
@item (debugging time) A simple macro to time the execution of an expression.
|
||||||
+@item (graph topological-sort) Routines to perform topological sorts.
|
@item (graph topological-sort) Routines to perform topological sorts.
|
||||||
+@item (htmlprag) Neil Van Dyke's permissive (\"pragmatic\") HTML parser.
|
@item (htmlprag) Neil Van Dyke's permissive (\"pragmatic\") HTML parser.
|
||||||
+@item (io string) SLIB's IO routines dealing with strings.
|
@item (io string) SLIB's IO routines dealing with strings.
|
||||||
+@item (logging logger) A flexible logging system.
|
@item (logging logger) A flexible logging system.
|
||||||
+@item (logging port-log) A logger that outputs to a port.
|
@item (logging port-log) A logger that outputs to a port.
|
||||||
+@item (logging rotating-log) A logger that rotates its output files.
|
@item (logging rotating-log) A logger that rotates its output files.
|
||||||
+@item (match-bind) Nifty and concise regular expression routines.
|
@item (match-bind) Nifty and concise regular expression routines.
|
||||||
+@item (math minima) A golden-section minimum finder.
|
@item (math minima) A golden-section minimum finder.
|
||||||
+@item (math primes) Functions related to prime numbers and factorization.
|
@item (math primes) Functions related to prime numbers and factorization.
|
||||||
+@item (os process) Spawning processes and capturing their output.
|
@item (os process) Spawning processes and capturing their output.
|
||||||
+@item (scheme documentation) Macros to define different kinds of variables
|
@item (scheme documentation) Macros to define different kinds of variables
|
||||||
+with documentation.
|
with documentation.
|
||||||
+@item (scheme kwargs) Defining functions with flexible keyword arguments.
|
@item (scheme kwargs) Defining functions with flexible keyword arguments.
|
||||||
+@item (search basic) Classic search functions.
|
@item (search basic) Classic search functions.
|
||||||
+@item (string completion) Building blocks for tab completion.
|
@item (string completion) Building blocks for tab completion.
|
||||||
+@item (string soundex) The SOUNDEX string categorization algorithm.
|
@item (string soundex) The SOUNDEX string categorization algorithm.
|
||||||
+@item (string transform) Beyond SRFI-13.
|
@item (string transform) Beyond SRFI-13.
|
||||||
+@item (string wrap) A versatile string formatter.
|
@item (string wrap) A versatile string formatter.
|
||||||
+@item (term ansi-color) Generate ANSI color escape sequences.
|
@item (term ansi-color) Generate ANSI color escape sequences.
|
||||||
+@item (unit-test) A JUnit-style unit testing framework.
|
@item (unit-test) A JUnit-style unit testing framework.
|
||||||
+@end itemize")
|
@end itemize")
|
||||||
;; The whole is under GPLv3+, but some modules are under laxer
|
;; The whole is under GPLv3+, but some modules are under laxer
|
||||||
;; distribution terms such as LGPL and public domain. See `COPYING' for
|
;; distribution terms such as LGPL and public domain. See `COPYING' for
|
||||||
;; details.
|
;; details.
|
||||||
|
|
Loading…
Reference in a new issue