diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2019-03-31 16:39:43 +0300 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2019-03-31 20:51:10 +0300 |
| commit | 36a4366d79a310d05db0de2cf6d5bb3c5e861d4b (patch) | |
| tree | c3968d05b86ac4f9d6cb70bbd34b94708ded305e /gnu/packages | |
| parent | cd9ca20a5d54549db26d9780cbc7b282ec9f0001 (diff) | |
gnu: Fix descriptions to not use quotes.
* gnu/packages/admin.scm (wpa-supplicant-minimal, mingetty, di),
* gnu/packages/audio.scm (fil-plugins),
* gnu/packages/base.scm (make-ld-wrapper, make-glibc-locales),
* gnu/packages/bioinformatics.scm (r-samtools),
* gnu/packages/chez.scm (chez-mit),
* gnu/packages/commencement.scm (make-gcc-toolchain),
* gnu/packages/compression.scm (fastjar),
* gnu/packages/cran.scm (r-maps, r-rcpp),
* gnu/packages/databases.scm (sparql-query),
* gnu/packages/dunst.scm (dunst),
* gnu/packages/ftp.scm (ncftp),
* gnu/packages/gl.scm (freeglut),
* gnu/packages/haskell-check.scm (ghc-tasty-golden),
* gnu/packages/haskell.scm (ghc-case-insensitive, ghc-text,
ghc-haskell-src, ghc-syb, ghc-deepseq-generics, ghc-network-uri,
ghc-rerebase, ghc-zlib),
* gnu/packages/image.scm (jbig2dec),
* gnu/packages/kde-frameworks.scm (kinit, karchive),
* gnu/packages/linux.scm (wireless-tools, perf, module-init-tools, kbd),
* gnu/packages/lirc.scm (lirc),
* gnu/packages/lisp.scm (uglify-js),
* gnu/packages/mate.scm (mate-netbook),
* gnu/packages/microcom.scm (microcom),
* gnu/packages/music.scm (bristol),
* gnu/packages/networking.scm (perl-geo-ip),
* gnu/packages/patchutils.scm (patches),
* gnu/packages/perl-check.scm (perl-test-more-utf8),
* gnu/packages/perl.scm (perl-log-report-optional, perl-file-which,
perl-io-tty, perl-log-any, perl-digest-sha1, perl-class-load,
perl-regexp-common, perl-module-pluggable, perl-class-modifier),
* gnu/packages/python-xyz.scm (python-backports-abc, python-natsort),
* gnu/packages/samba.scm (iniparser),
* gnu/packages/search.scm (mlocate),
* gnu/packages/spice.scm (spice),
* gnu/packages/statistics.scm (r-dt, r-lubridate, r-estimability,
r-commonmark, r-digest, r-viridislite, r-stringr),
* gnu/packages/tex.scm (texlive-latex-changebar),
* gnu/packages/version-control.scm (subversion),
* gnu/packages/w3m.scm (w3m),
* gnu/packages/web.scm (perl-http-parser,
perl-plack-middleware-reverseproxy),
* gnu/packages/xorg.scm (xkeyboard-config, mkfontdir, xcursor-theme,
mkfontscale, xinit, font-alias)[description]: Use @code instead of quotes.
Diffstat (limited to 'gnu/packages')
36 files changed, 133 insertions, 129 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 7f7b2fec3ee..d901110e530 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm | |||
| @@ -475,8 +475,8 @@ login, passwd, su, groupadd, and useradd.") | |||
| 475 | (synopsis "Getty for the text console") | 475 | (synopsis "Getty for the text console") |
| 476 | (description | 476 | (description |
| 477 | "Small console getty that is started on the Linux text console, | 477 | "Small console getty that is started on the Linux text console, |
| 478 | asks for a login name and then transfers over to 'login'. It is extended to | 478 | asks for a login name and then transfers over to @code{login}. It is extended |
| 479 | allow automatic login and starting any app.") | 479 | to allow automatic login and starting any app.") |
| 480 | (license license:gpl2+))) | 480 | (license license:gpl2+))) |
| 481 | 481 | ||
| 482 | (define-public net-base | 482 | (define-public net-base |
| @@ -1140,7 +1140,8 @@ the client stations. It implements key negotiation with a WPA Authenticator | |||
| 1140 | and it controls the roaming and IEEE 802.11 authentication/association of the | 1140 | and it controls the roaming and IEEE 802.11 authentication/association of the |
| 1141 | WLAN driver. | 1141 | WLAN driver. |
| 1142 | 1142 | ||
| 1143 | This package provides the 'wpa_supplicant' daemon and the 'wpa_cli' command.") | 1143 | This package provides the @code{wpa_supplicant} daemon and the @code{wpa_cli} |
| 1144 | command.") | ||
| 1144 | 1145 | ||
| 1145 | ;; In practice, this is linked against Readline, which makes it GPLv3+. | 1146 | ;; In practice, this is linked against Readline, which makes it GPLv3+. |
| 1146 | (license license:bsd-3) | 1147 | (license license:bsd-3) |
| @@ -2076,7 +2077,7 @@ a new command using the matched rule, and runs it.") | |||
| 2076 | (home-page "https://www.gentoo.com/di/") | 2077 | (home-page "https://www.gentoo.com/di/") |
| 2077 | (synopsis "Advanced df like disk information utility") | 2078 | (synopsis "Advanced df like disk information utility") |
| 2078 | (description | 2079 | (description |
| 2079 | "'di' is a disk information utility, displaying everything that your | 2080 | "@code{di} is a disk information utility, displaying everything that your |
| 2080 | @code{df} command does and more. It features the ability to display your disk | 2081 | @code{df} command does and more. It features the ability to display your disk |
| 2081 | usage in whatever format you prefer. It is designed to be highly portable and | 2082 | usage in whatever format you prefer. It is designed to be highly portable and |
| 2082 | produce uniform output across heterogeneous networks.") | 2083 | produce uniform output across heterogeneous networks.") |
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index aa99382f794..fb119f870dc 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm | |||
| @@ -943,7 +943,7 @@ gain controls. There is also a global bypass switch and gain control. | |||
| 943 | The 2nd order resonant filters are implemented using a Mitra-Regalia style | 943 | The 2nd order resonant filters are implemented using a Mitra-Regalia style |
| 944 | lattice filter, which is stable even while parameters are being changed. | 944 | lattice filter, which is stable even while parameters are being changed. |
| 945 | 945 | ||
| 946 | All switches and controls are internally smoothed, so they can be used 'live' | 946 | All switches and controls are internally smoothed, so they can be used @code{live} |
| 947 | without any clicks or zipper noises. This makes this plugin suitable for use | 947 | without any clicks or zipper noises. This makes this plugin suitable for use |
| 948 | in systems that allow automation of plugin control ports, such as Ardour, or | 948 | in systems that allow automation of plugin control ports, such as Ardour, or |
| 949 | for stage use.") | 949 | for stage use.") |
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index db9cca6faff..91f8b03c837 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm | |||
| @@ -600,9 +600,9 @@ wrapper for the cross-linker for that target, called 'TARGET-ld'." | |||
| 600 | #t))))) | 600 | #t))))) |
| 601 | (synopsis "The linker wrapper") | 601 | (synopsis "The linker wrapper") |
| 602 | (description | 602 | (description |
| 603 | "The linker wrapper (or 'ld-wrapper') wraps the linker to add any | 603 | "The linker wrapper (or @code{ld-wrapper}) wraps the linker to add any |
| 604 | missing '-rpath' flags, and to detect any misuse of libraries outside of the | 604 | missing @code{-rpath} flags, and to detect any misuse of libraries outside of |
| 605 | store.") | 605 | the store.") |
| 606 | (home-page "https://www.gnu.org/software/guix//") | 606 | (home-page "https://www.gnu.org/software/guix//") |
| 607 | (license gpl3+))) | 607 | (license gpl3+))) |
| 608 | 608 | ||
| @@ -1019,8 +1019,8 @@ with the Linux kernel.") | |||
| 1019 | (synopsis "All the locales supported by the GNU C Library") | 1019 | (synopsis "All the locales supported by the GNU C Library") |
| 1020 | (description | 1020 | (description |
| 1021 | "This package provides all the locales supported by the GNU C Library, | 1021 | "This package provides all the locales supported by the GNU C Library, |
| 1022 | more than 400 in total. To use them set the 'LOCPATH' environment variable to | 1022 | more than 400 in total. To use them set the @code{LOCPATH} environment variable |
| 1023 | the 'share/locale' sub-directory of this package.") | 1023 | to the @code{share/locale} sub-directory of this package.") |
| 1024 | (outputs '("out")) ;110+ MiB | 1024 | (outputs '("out")) ;110+ MiB |
| 1025 | (native-search-paths '()) | 1025 | (native-search-paths '()) |
| 1026 | (arguments | 1026 | (arguments |
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index c647d48aec8..8f6a37a4f87 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm | |||
| @@ -7765,10 +7765,10 @@ biological sequences or sets of sequences.") | |||
| 7765 | (home-page "https://bioconductor.org/packages/release/bioc/html/Rsamtools.html") | 7765 | (home-page "https://bioconductor.org/packages/release/bioc/html/Rsamtools.html") |
| 7766 | (synopsis "Interface to samtools, bcftools, and tabix") | 7766 | (synopsis "Interface to samtools, bcftools, and tabix") |
| 7767 | (description | 7767 | (description |
| 7768 | "This package provides an interface to the 'samtools', 'bcftools', and | 7768 | "This package provides an interface to the @code{samtools}, |
| 7769 | 'tabix' utilities for manipulating SAM (Sequence Alignment / Map), FASTA, | 7769 | @code{bcftools}, and @code{tabix} utilities for manipulating SAM (Sequence |
| 7770 | binary variant call (BCF) and compressed indexed tab-delimited (tabix) | 7770 | Alignment / Map), FASTA, binary variant call (BCF) and compressed indexed |
| 7771 | files.") | 7771 | tab-delimited (tabix) files.") |
| 7772 | (license license:expat))) | 7772 | (license license:expat))) |
| 7773 | 7773 | ||
| 7774 | (define-public r-delayedarray | 7774 | (define-public r-delayedarray |
diff --git a/gnu/packages/chez.scm b/gnu/packages/chez.scm index 7d0042872ef..7e9f00f4c4a 100644 --- a/gnu/packages/chez.scm +++ b/gnu/packages/chez.scm | |||
| @@ -558,7 +558,7 @@ strings.") | |||
| 558 | (synopsis "MIT/GNU Scheme compatibility library for Chez Scheme") | 558 | (synopsis "MIT/GNU Scheme compatibility library for Chez Scheme") |
| 559 | (description "This package provides a set of MIT/GNU Scheme compatibility | 559 | (description "This package provides a set of MIT/GNU Scheme compatibility |
| 560 | libraries for Chez Scheme. The main goal was to provide the functionality | 560 | libraries for Chez Scheme. The main goal was to provide the functionality |
| 561 | required to port the program 'Scmutils' to Chez Scheme.") | 561 | required to port the program @code{Scmutils} to Chez Scheme.") |
| 562 | (license gpl3+))) | 562 | (license gpl3+))) |
| 563 | 563 | ||
| 564 | (define-public chez-scmutils | 564 | (define-public chez-scmutils |
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 0aa65fe6381..b07630a54df 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm | |||
| @@ -1050,7 +1050,7 @@ COREUTILS-FINAL vs. COREUTILS, etc." | |||
| 1050 | (description | 1050 | (description |
| 1051 | "This package provides a complete GCC tool chain for C/C++ development to | 1051 | "This package provides a complete GCC tool chain for C/C++ development to |
| 1052 | be installed in user profiles. This includes GCC, as well as libc (headers | 1052 | be installed in user profiles. This includes GCC, as well as libc (headers |
| 1053 | and binaries, plus debugging symbols in the 'debug' output), and Binutils.") | 1053 | and binaries, plus debugging symbols in the @code{debug} output), and Binutils.") |
| 1054 | (home-page "https://gcc.gnu.org/") | 1054 | (home-page "https://gcc.gnu.org/") |
| 1055 | (outputs '("out" "debug" "static")) | 1055 | (outputs '("out" "debug" "static")) |
| 1056 | 1056 | ||
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index fee657c3f8d..ec80dc92ecb 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm | |||
| @@ -158,8 +158,8 @@ the @code{zlib} source.") | |||
| 158 | (home-page "https://savannah.nongnu.org/projects/fastjar") | 158 | (home-page "https://savannah.nongnu.org/projects/fastjar") |
| 159 | (synopsis "Replacement for Sun's 'jar' utility") | 159 | (synopsis "Replacement for Sun's 'jar' utility") |
| 160 | (description | 160 | (description |
| 161 | "FastJar is an attempt to create a much faster replacement for Sun's 'jar' | 161 | "FastJar is an attempt to create a much faster replacement for Sun's |
| 162 | utility. Instead of being written in Java, FastJar is written in C.") | 162 | @code{jar} utility. Instead of being written in Java, FastJar is written in C.") |
| 163 | (license license:gpl2+))) | 163 | (license license:gpl2+))) |
| 164 | 164 | ||
| 165 | (define-public libtar | 165 | (define-public libtar |
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 40a0ed4759b..f741b20f152 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm | |||
| @@ -929,8 +929,8 @@ data store designed for maximum speed.") | |||
| 929 | (home-page "https://cran.r-project.org/web/packages/maps") | 929 | (home-page "https://cran.r-project.org/web/packages/maps") |
| 930 | (synopsis "Draw geographical maps") | 930 | (synopsis "Draw geographical maps") |
| 931 | (description "This package provides an R module for display of maps. | 931 | (description "This package provides an R module for display of maps. |
| 932 | Projection code and larger maps are in separate packages ('mapproj' and | 932 | Projection code and larger maps are in separate packages (@code{mapproj} and |
| 933 | 'mapdata').") | 933 | @code{mapdata}).") |
| 934 | (license license:gpl2))) | 934 | (license license:gpl2))) |
| 935 | 935 | ||
| 936 | (define-public r-mapproj | 936 | (define-public r-mapproj |
| @@ -1351,9 +1351,9 @@ a seamless integration of R and C++. Many R data types and objects can be | |||
| 1351 | mapped back and forth to C++ equivalents which facilitates both writing of new | 1351 | mapped back and forth to C++ equivalents which facilitates both writing of new |
| 1352 | code as well as easier integration of third-party libraries. Documentation | 1352 | code as well as easier integration of third-party libraries. Documentation |
| 1353 | about Rcpp is provided by several vignettes included in this package, via the | 1353 | about Rcpp is provided by several vignettes included in this package, via the |
| 1354 | 'Rcpp Gallery' site at <http://gallery.rcpp.org>, the paper by Eddelbuettel | 1354 | @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel |
| 1355 | and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see | 1355 | and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see |
| 1356 | 'citation(\"Rcpp\")' for details on these last two.") | 1356 | @code{citation(\"Rcpp\")} for details on these last two.") |
| 1357 | (license license:gpl2+))) | 1357 | (license license:gpl2+))) |
| 1358 | 1358 | ||
| 1359 | (define-public r-bindr | 1359 | (define-public r-bindr |
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index afc6d7a3073..3551be55967 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm | |||
| @@ -986,7 +986,7 @@ data in a single database. RocksDB is partially based on @code{LevelDB}.") | |||
| 986 | (home-page "https://github.com/tialaramex/sparql-query/") | 986 | (home-page "https://github.com/tialaramex/sparql-query/") |
| 987 | (synopsis "Command-line tool for accessing SPARQL endpoints over HTTP") | 987 | (synopsis "Command-line tool for accessing SPARQL endpoints over HTTP") |
| 988 | (description "Sparql-query is a command-line tool for accessing SPARQL | 988 | (description "Sparql-query is a command-line tool for accessing SPARQL |
| 989 | endpoints over HTTP. It has been intentionally designed to 'feel' similar to | 989 | endpoints over HTTP. It has been intentionally designed to @code{feel} similar to |
| 990 | tools for interrogating SQL databases. For example, you can enter a query over | 990 | tools for interrogating SQL databases. For example, you can enter a query over |
| 991 | several lines, using a semi-colon at the end of a line to indicate the end of | 991 | several lines, using a semi-colon at the end of a line to indicate the end of |
| 992 | your query. It also supports readline so that you can more easily recall and | 992 | your query. It also supports readline so that you can more easily recall and |
diff --git a/gnu/packages/dunst.scm b/gnu/packages/dunst.scm index 7328e442cf5..31b7f58758b 100644 --- a/gnu/packages/dunst.scm +++ b/gnu/packages/dunst.scm | |||
| @@ -73,6 +73,6 @@ | |||
| 73 | (synopsis "Customizable and lightweight notification daemon") | 73 | (synopsis "Customizable and lightweight notification daemon") |
| 74 | (description | 74 | (description |
| 75 | "Dunst is a highly configurable and minimalistic notification daemon. | 75 | "Dunst is a highly configurable and minimalistic notification daemon. |
| 76 | It provides 'org.freedesktop.Notifications' D-Bus service, so it is | 76 | It provides @code{org.freedesktop.Notifications} D-Bus service, so it is |
| 77 | started automatically on the first call via D-Bus.") | 77 | started automatically on the first call via D-Bus.") |
| 78 | (license license:bsd-3))) | 78 | (license license:bsd-3))) |
diff --git a/gnu/packages/ftp.scm b/gnu/packages/ftp.scm index 68ad8da716c..96953d6fd50 100644 --- a/gnu/packages/ftp.scm +++ b/gnu/packages/ftp.scm | |||
| @@ -134,9 +134,9 @@ reliability in mind.") | |||
| 134 | (synopsis "Command-line File Transfer Protocol (FTP) client") | 134 | (synopsis "Command-line File Transfer Protocol (FTP) client") |
| 135 | (description | 135 | (description |
| 136 | "NcFTP Client (or just NcFTP) is a set of command-line programs to access | 136 | "NcFTP Client (or just NcFTP) is a set of command-line programs to access |
| 137 | File Transfer Protocol (FTP) servers. This includes 'ncftp', an interactive | 137 | File Transfer Protocol (FTP) servers. This includes @code{ncftp}, an interactive |
| 138 | FTP browser, as well as non-interactive commands such as 'ncftpput' and | 138 | FTP browser, as well as non-interactive commands such as @code{ncftpput} and |
| 139 | 'ncftpget'.") | 139 | @code{ncftpget}.") |
| 140 | (license clarified-artistic))) | 140 | (license clarified-artistic))) |
| 141 | 141 | ||
| 142 | 142 | ||
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index 743932fd079..57e65e29b5a 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm | |||
| @@ -120,7 +120,7 @@ as ASCII text.") | |||
| 120 | "Freeglut is a completely Free/OpenSourced alternative to | 120 | "Freeglut is a completely Free/OpenSourced alternative to |
| 121 | the OpenGL Utility Toolkit (GLUT) library. GLUT was originally | 121 | the OpenGL Utility Toolkit (GLUT) library. GLUT was originally |
| 122 | written by Mark Kilgard to support the sample programs in the | 122 | written by Mark Kilgard to support the sample programs in the |
| 123 | second edition OpenGL 'RedBook'. Since then, GLUT has been used | 123 | second edition OpenGL @code{RedBook}. Since then, GLUT has been used |
| 124 | in a wide variety of practical applications because it is simple, | 124 | in a wide variety of practical applications because it is simple, |
| 125 | widely available and highly portable. | 125 | widely available and highly portable. |
| 126 | 126 | ||
diff --git a/gnu/packages/haskell-check.scm b/gnu/packages/haskell-check.scm index 19eb40eaa49..fa2bd0d652b 100644 --- a/gnu/packages/haskell-check.scm +++ b/gnu/packages/haskell-check.scm | |||
| @@ -148,9 +148,9 @@ Haskell test framework.") | |||
| 148 | "https://github.com/feuerbach/tasty-golden") | 148 | "https://github.com/feuerbach/tasty-golden") |
| 149 | (synopsis "Golden tests support for tasty") | 149 | (synopsis "Golden tests support for tasty") |
| 150 | (description | 150 | (description |
| 151 | "This package provides support for 'golden testing'. A @dfn{golden test} | 151 | "This package provides support for @code{golden testing}. A @dfn{golden |
| 152 | is an IO action that writes its result to a file. To pass the test, this | 152 | test} is an IO action that writes its result to a file. To pass the test, this |
| 153 | output file should be identical to the corresponding 'golden' file, which | 153 | output file should be identical to the corresponding @code{golden} file, which |
| 154 | contains the correct result for the test.") | 154 | contains the correct result for the test.") |
| 155 | (license license:expat))) | 155 | (license license:expat))) |
| 156 | 156 | ||
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 2a5ba2a706b..a23dfe9ae62 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm | |||
| @@ -1157,7 +1157,7 @@ them.") | |||
| 1157 | (synopsis | 1157 | (synopsis |
| 1158 | "Support for manipulating Haskell source code") | 1158 | "Support for manipulating Haskell source code") |
| 1159 | (description | 1159 | (description |
| 1160 | "The 'haskell-src' package provides support for manipulating Haskell | 1160 | "The @code{haskell-src} package provides support for manipulating Haskell |
| 1161 | source code. The package provides a lexer, parser and pretty-printer, and a | 1161 | source code. The package provides a lexer, parser and pretty-printer, and a |
| 1162 | definition of a Haskell abstract syntax tree (AST). Common uses of this | 1162 | definition of a Haskell abstract syntax tree (AST). Common uses of this |
| 1163 | package are to parse or generate Haskell 98 code.") | 1163 | package are to parse or generate Haskell 98 code.") |
| @@ -2360,11 +2360,11 @@ literals.") | |||
| 2360 | "Compression and decompression in the gzip and zlib formats") | 2360 | "Compression and decompression in the gzip and zlib formats") |
| 2361 | (description | 2361 | (description |
| 2362 | "This package provides a pure interface for compressing and decompressing | 2362 | "This package provides a pure interface for compressing and decompressing |
| 2363 | streams of data represented as lazy 'ByteString's. It uses the zlib C library | 2363 | streams of data represented as lazy @code{ByteString}s. It uses the zlib C |
| 2364 | so it has high performance. It supports the 'zlib', 'gzip' and 'raw' | 2364 | library so it has high performance. It supports the @code{zlib}, @code{gzip} |
| 2365 | compression formats. It provides a convenient high level API suitable for | 2365 | and @code{raw} compression formats. It provides a convenient high level API |
| 2366 | most tasks and for the few cases where more control is needed it provides | 2366 | suitable for most tasks and for the few cases where more control is needed it |
| 2367 | access to the full zlib feature set.") | 2367 | provides access to the full zlib feature set.") |
| 2368 | (license license:bsd-3))) | 2368 | (license license:bsd-3))) |
| 2369 | 2369 | ||
| 2370 | (define-public ghc-stm | 2370 | (define-public ghc-stm |
| @@ -2467,7 +2467,7 @@ are not exception safe and can be broken by @code{killThread}.") | |||
| 2467 | "An efficient packed, immutable Unicode text type (both strict and | 2467 | "An efficient packed, immutable Unicode text type (both strict and |
| 2468 | lazy), with a powerful loop fusion optimization framework. | 2468 | lazy), with a powerful loop fusion optimization framework. |
| 2469 | 2469 | ||
| 2470 | The 'Text' type represents Unicode character strings, in a time and | 2470 | The @code{Text} type represents Unicode character strings, in a time and |
| 2471 | space-efficient manner. This package provides text processing | 2471 | space-efficient manner. This package provides text processing |
| 2472 | capabilities that are optimized for performance critical use, both | 2472 | capabilities that are optimized for performance critical use, both |
| 2473 | in terms of large data quantities and high speed.") | 2473 | in terms of large data quantities and high speed.") |
| @@ -3800,10 +3800,10 @@ writing to stdout and other handles.") | |||
| 3800 | "https://github.com/basvandijk/case-insensitive") | 3800 | "https://github.com/basvandijk/case-insensitive") |
| 3801 | (synopsis "Case insensitive string comparison") | 3801 | (synopsis "Case insensitive string comparison") |
| 3802 | (description | 3802 | (description |
| 3803 | "The module 'Data.CaseInsensitive' provides the 'CI' type constructor | 3803 | "The module @code{Data.CaseInsensitive} provides the @code{CI} type |
| 3804 | which can be parameterised by a string-like type like: 'String', 'ByteString', | 3804 | constructor which can be parameterised by a string-like type like: |
| 3805 | 'Text', etc.. Comparisons of values of the resulting type will be insensitive | 3805 | @code{String}, @code{ByteString}, @code{Text}, etc. Comparisons of values of |
| 3806 | to cases.") | 3806 | the resulting type will be insensitive to cases.") |
| 3807 | (license license:bsd-3))) | 3807 | (license license:bsd-3))) |
| 3808 | 3808 | ||
| 3809 | (define-public ghc-syb | 3809 | (define-public ghc-syb |
| @@ -3830,7 +3830,7 @@ to cases.") | |||
| 3830 | (description "This package contains the generics system described in the | 3830 | (description "This package contains the generics system described in the |
| 3831 | /Scrap Your Boilerplate/ papers (see | 3831 | /Scrap Your Boilerplate/ papers (see |
| 3832 | @uref{http://www.cs.uu.nl/wiki/GenericProgramming/SYB, the website}). It | 3832 | @uref{http://www.cs.uu.nl/wiki/GenericProgramming/SYB, the website}). It |
| 3833 | defines the 'Data' class of types permitting folding and unfolding of | 3833 | defines the @code{Data} class of types permitting folding and unfolding of |
| 3834 | constructor applications, instances of this class for primitive types, and a | 3834 | constructor applications, instances of this class for primitive types, and a |
| 3835 | variety of traversals.") | 3835 | variety of traversals.") |
| 3836 | (license license:bsd-3))) | 3836 | (license license:bsd-3))) |
| @@ -4323,8 +4323,8 @@ interface.") | |||
| 4323 | "https://github.com/haskell/network-uri") | 4323 | "https://github.com/haskell/network-uri") |
| 4324 | (synopsis "Library for URI manipulation") | 4324 | (synopsis "Library for URI manipulation") |
| 4325 | (description "This package provides an URI manipulation interface. In | 4325 | (description "This package provides an URI manipulation interface. In |
| 4326 | 'network-2.6' the 'Network.URI' module was split off from the 'network' | 4326 | @code{network-2.6} the @code{Network.URI} module was split off from the |
| 4327 | package into this package.") | 4327 | @code{network} package into this package.") |
| 4328 | (license license:bsd-3))) | 4328 | (license license:bsd-3))) |
| 4329 | 4329 | ||
| 4330 | (define-public ghc-ansi-terminal | 4330 | (define-public ghc-ansi-terminal |
| @@ -5724,7 +5724,7 @@ using a simple box model.") | |||
| 5724 | (description | 5724 | (description |
| 5725 | "This package provides a @code{GHC.Generics}-based | 5725 | "This package provides a @code{GHC.Generics}-based |
| 5726 | @code{Control.DeepSeq.Generics.genericRnf} function which can be used for | 5726 | @code{Control.DeepSeq.Generics.genericRnf} function which can be used for |
| 5727 | providing an 'rnf' implementation.") | 5727 | providing an @code{rnf} implementation.") |
| 5728 | (license license:bsd-3))) | 5728 | (license license:bsd-3))) |
| 5729 | 5729 | ||
| 5730 | (define-public ghc-string-qq | 5730 | (define-public ghc-string-qq |
| @@ -9430,7 +9430,7 @@ the community, with the missing features being added with pull-requests.") | |||
| 9430 | `(("ghc-rebase" ,ghc-rebase))) | 9430 | `(("ghc-rebase" ,ghc-rebase))) |
| 9431 | (home-page "https://github.com/nikita-volkov/rerebase") | 9431 | (home-page "https://github.com/nikita-volkov/rerebase") |
| 9432 | (synopsis "Reexports from ``base'' with many other standard libraries") | 9432 | (synopsis "Reexports from ``base'' with many other standard libraries") |
| 9433 | (description "A rich drop-in replacement for ``base''. For details and | 9433 | (description "A rich drop-in replacement for @code{base}. For details and |
| 9434 | documentation please visit @uref{https://github.com/nikita-volkov/rerebase, | 9434 | documentation please visit @uref{https://github.com/nikita-volkov/rerebase, |
| 9435 | the project's home page}.") | 9435 | the project's home page}.") |
| 9436 | (license license:expat))) | 9436 | (license license:expat))) |
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index d363c445b7f..9fc29ec2844 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm | |||
| @@ -545,7 +545,7 @@ arithmetic ops.") | |||
| 545 | (arguments '(#:configure-flags '("--disable-static"))) | 545 | (arguments '(#:configure-flags '("--disable-static"))) |
| 546 | (synopsis "Decoder of the JBIG2 image compression format") | 546 | (synopsis "Decoder of the JBIG2 image compression format") |
| 547 | (description | 547 | (description |
| 548 | "JBIG2 is designed for lossy or lossless encoding of 'bilevel' (1-bit | 548 | "JBIG2 is designed for lossy or lossless encoding of @code{bilevel} (1-bit |
| 549 | monochrome) images at moderately high resolution, and in particular scanned | 549 | monochrome) images at moderately high resolution, and in particular scanned |
| 550 | paper documents. In this domain it is very efficient, offering compression | 550 | paper documents. In this domain it is very efficient, offering compression |
| 551 | ratios on the order of 100:1. | 551 | ratios on the order of 100:1. |
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 10a1dfe0d15..ec735d8903b 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm | |||
| @@ -418,7 +418,7 @@ documentation.") | |||
| 418 | (home-page "https://community.kde.org/Frameworks") | 418 | (home-page "https://community.kde.org/Frameworks") |
| 419 | (synopsis "Qt 5 addon providing access to numerous types of archives") | 419 | (synopsis "Qt 5 addon providing access to numerous types of archives") |
| 420 | (description "KArchive provides classes for easy reading, creation and | 420 | (description "KArchive provides classes for easy reading, creation and |
| 421 | manipulation of 'archive' formats like ZIP and TAR. | 421 | manipulation of @code{archive} formats like ZIP and TAR. |
| 422 | 422 | ||
| 423 | It also provides transparent compression and decompression of data, like the | 423 | It also provides transparent compression and decompression of data, like the |
| 424 | GZip format, via a subclass of QIODevice.") | 424 | GZip format, via a subclass of QIODevice.") |
| @@ -2585,8 +2585,9 @@ in applications using the KDE Frameworks.") | |||
| 2585 | (synopsis "Library to speed up start of applications on KDE workspaces") | 2585 | (synopsis "Library to speed up start of applications on KDE workspaces") |
| 2586 | (description "Kdeinit is a process launcher similar to init used for booting | 2586 | (description "Kdeinit is a process launcher similar to init used for booting |
| 2587 | UNIX. It launches processes by forking and then loading a dynamic library which | 2587 | UNIX. It launches processes by forking and then loading a dynamic library which |
| 2588 | contains a 'kdemain(...)' function. Using kdeinit to launch KDE applications | 2588 | contains a @code{kdemain(@dots{})} function. Using kdeinit to launch KDE |
| 2589 | makes starting KDE applications faster and reduces memory consumption.") | 2589 | applications makes starting KDE applications faster and reduces memory |
| 2590 | consumption.") | ||
| 2590 | ;; dual licensed | 2591 | ;; dual licensed |
| 2591 | (license (list license:lgpl2.0+ license:lgpl2.1+)))) | 2592 | (license (list license:lgpl2.0+ license:lgpl2.1+)))) |
| 2592 | 2593 | ||
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index b4a80bb2a0d..9e4261eb02a 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm | |||
| @@ -1996,7 +1996,7 @@ system.") | |||
| 1996 | (description | 1996 | (description |
| 1997 | "This package contains keytable files and keyboard utilities compatible | 1997 | "This package contains keytable files and keyboard utilities compatible |
| 1998 | for systems using the Linux kernel. This includes commands such as | 1998 | for systems using the Linux kernel. This includes commands such as |
| 1999 | 'loadkeys', 'setfont', 'kbdinfo', and 'chvt'.") | 1999 | @code{loadkeys}, @code{setfont}, @code{kbdinfo}, and @code{chvt}.") |
| 2000 | (license license:gpl2+))) | 2000 | (license license:gpl2+))) |
| 2001 | 2001 | ||
| 2002 | (define-public loadkeys-static | 2002 | (define-public loadkeys-static |
| @@ -2302,7 +2302,7 @@ mapper. Kernel components are part of Linux-libre.") | |||
| 2302 | #:tests? #f)) | 2302 | #:tests? #f)) |
| 2303 | (synopsis "Tools for manipulating Linux Wireless Extensions") | 2303 | (synopsis "Tools for manipulating Linux Wireless Extensions") |
| 2304 | (description "Wireless Tools are used to manipulate the now-deprecated | 2304 | (description "Wireless Tools are used to manipulate the now-deprecated |
| 2305 | Linux Wireless Extensions; consider using 'iw' instead. The Wireless | 2305 | Linux Wireless Extensions; consider using @code{iw} instead. The Wireless |
| 2306 | Extension was an interface allowing you to set Wireless LAN specific | 2306 | Extension was an interface allowing you to set Wireless LAN specific |
| 2307 | parameters and get the specific stats. It is deprecated in favor the nl80211 | 2307 | parameters and get the specific stats. It is deprecated in favor the nl80211 |
| 2308 | interface.") | 2308 | interface.") |
| @@ -2660,7 +2660,7 @@ in a digital read-out.") | |||
| 2660 | with support in the Linux kernel. perf can instrument CPU performance | 2660 | with support in the Linux kernel. perf can instrument CPU performance |
| 2661 | counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is capable | 2661 | counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is capable |
| 2662 | of lightweight profiling. This package contains the user-land tools and in | 2662 | of lightweight profiling. This package contains the user-land tools and in |
| 2663 | particular the 'perf' command.") | 2663 | particular the @code{perf} command.") |
| 2664 | (license (package-license linux-libre)))) | 2664 | (license (package-license linux-libre)))) |
| 2665 | 2665 | ||
| 2666 | (define-public pflask | 2666 | (define-public pflask |
| @@ -4016,8 +4016,8 @@ the default @code{nsswitch} and the experimental @code{umich_ldap}.") | |||
| 4016 | (home-page "https://www.kernel.org/pub/linux/utils/kernel/module-init-tools/") | 4016 | (home-page "https://www.kernel.org/pub/linux/utils/kernel/module-init-tools/") |
| 4017 | (synopsis "Tools for loading and managing Linux kernel modules") | 4017 | (synopsis "Tools for loading and managing Linux kernel modules") |
| 4018 | (description | 4018 | (description |
| 4019 | "Tools for loading and managing Linux kernel modules, such as `modprobe', | 4019 | "Tools for loading and managing Linux kernel modules, such as |
| 4020 | `insmod', `lsmod', and more.") | 4020 | @code{modprobe}, @code{insmod}, @code{lsmod}, and more.") |
| 4021 | (license license:gpl2+))) | 4021 | (license license:gpl2+))) |
| 4022 | 4022 | ||
| 4023 | (define-public mcelog | 4023 | (define-public mcelog |
diff --git a/gnu/packages/lirc.scm b/gnu/packages/lirc.scm index 627c79f979d..5e77f1ddc23 100644 --- a/gnu/packages/lirc.scm +++ b/gnu/packages/lirc.scm | |||
| @@ -96,10 +96,10 @@ | |||
| 96 | (synopsis "Linux Infrared Remote Control") | 96 | (synopsis "Linux Infrared Remote Control") |
| 97 | (description | 97 | (description |
| 98 | "LIRC allows computers to send and receive IR signals of many commonly | 98 | "LIRC allows computers to send and receive IR signals of many commonly |
| 99 | used remote controls. The most important part of LIRC is the 'lircd' daemon | 99 | used remote controls. The most important part of LIRC is the @code{lircd} |
| 100 | that decodes IR signals received by the device drivers. The second daemon | 100 | daemon that decodes IR signals received by the device drivers. The second |
| 101 | program 'lircmd' allows to translate IR signals to mouse movements. The | 101 | daemon program @code{lircmd} allows to translate IR signals to mouse movements. |
| 102 | user space applications allow you to control your computer with a remote | 102 | The user space applications allow you to control your computer with a remote |
| 103 | control: you can send X events to applications, start programs and much more | 103 | control: you can send X events to applications, start programs and much more |
| 104 | on just one button press.") | 104 | on just one button press.") |
| 105 | (license license:gpl2+))) | 105 | (license license:gpl2+))) |
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 87dcf36372a..d92d69985b3 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm | |||
| @@ -1467,7 +1467,7 @@ compressor. It works on data produced by @code{parse-js} to generate a | |||
| 1467 | @item reduce variable names (usually to single letters) | 1467 | @item reduce variable names (usually to single letters) |
| 1468 | @item join consecutive @code{var} statements | 1468 | @item join consecutive @code{var} statements |
| 1469 | @item resolve simple binary expressions | 1469 | @item resolve simple binary expressions |
| 1470 | @item group most consecutive statements using the ``sequence'' operator (comma) | 1470 | @item group most consecutive statements using the @code{sequence} operator (comma) |
| 1471 | @item remove unnecessary blocks | 1471 | @item remove unnecessary blocks |
| 1472 | @item convert @code{IF} expressions in various ways that result in smaller code | 1472 | @item convert @code{IF} expressions in various ways that result in smaller code |
| 1473 | @item remove some unreachable code | 1473 | @item remove some unreachable code |
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm index 16e91485067..f02bb41cdad 100644 --- a/gnu/packages/mate.scm +++ b/gnu/packages/mate.scm | |||
| @@ -1148,7 +1148,7 @@ can be used as backgrounds in the MATE Desktop environment.") | |||
| 1148 | @item Allows you to set basic rules for a window type, such as maximise|undecorate | 1148 | @item Allows you to set basic rules for a window type, such as maximise|undecorate |
| 1149 | @item Allows exceptions to the rules, based on string matching for window name | 1149 | @item Allows exceptions to the rules, based on string matching for window name |
| 1150 | and window class. | 1150 | and window class. |
| 1151 | @item Allows 'reversing' of rules when the user manually changes something: | 1151 | @item Allows @code{reversing} of rules when the user manually changes something: |
| 1152 | Re-decorates windows on un-maximise. | 1152 | Re-decorates windows on un-maximise. |
| 1153 | @end enumerate\n") | 1153 | @end enumerate\n") |
| 1154 | (license license:gpl3+))) | 1154 | (license license:gpl3+))) |
diff --git a/gnu/packages/microcom.scm b/gnu/packages/microcom.scm index 67fd5fe3551..3a1ec1d3cb5 100644 --- a/gnu/packages/microcom.scm +++ b/gnu/packages/microcom.scm | |||
| @@ -46,6 +46,6 @@ | |||
| 46 | (synopsis "Minimalistic serial line terminal program") | 46 | (synopsis "Minimalistic serial line terminal program") |
| 47 | (description "Microcom is a minimalistic terminal program for accessing | 47 | (description "Microcom is a minimalistic terminal program for accessing |
| 48 | devices via a serial connection. It features connection via RS232 serial | 48 | devices via a serial connection. It features connection via RS232 serial |
| 49 | interfaces (including setting of transfer rates) as well as in `telnetmode' | 49 | interfaces (including setting of transfer rates) as well as in @code{telnetmode} |
| 50 | as specified in rfc2217 and a (Linux specific) CAN mode.") | 50 | as specified in rfc2217 and a (Linux specific) CAN mode.") |
| 51 | (license gpl2+))) | 51 | (license gpl2+))) |
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 442796bc1d5..1707dfa9442 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm | |||
| @@ -1630,7 +1630,7 @@ mixing, FFT scopes, MIDI automation and full scriptability in Scheme.") | |||
| 1630 | (home-page "http://bristol.sourceforge.net/") | 1630 | (home-page "http://bristol.sourceforge.net/") |
| 1631 | (synopsis "Synthesizer emulator") | 1631 | (synopsis "Synthesizer emulator") |
| 1632 | (description | 1632 | (description |
| 1633 | "Bristol is an emulation package for a number of different 'classic' | 1633 | "Bristol is an emulation package for a number of different @code{classic} |
| 1634 | synthesizers including additive and subtractive and a few organs. The | 1634 | synthesizers including additive and subtractive and a few organs. The |
| 1635 | application consists of the engine, which is called bristol, and its own GUI | 1635 | application consists of the engine, which is called bristol, and its own GUI |
| 1636 | library called brighton that represents all the emulations. There are | 1636 | library called brighton that represents all the emulations. There are |
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index d3deb785163..e266ea08328 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm | |||
| @@ -1108,8 +1108,8 @@ offline emulation of DNS.") | |||
| 1108 | (home-page "https://metacpan.org/release/Geo-IP") | 1108 | (home-page "https://metacpan.org/release/Geo-IP") |
| 1109 | (synopsis | 1109 | (synopsis |
| 1110 | "Look up location and network information by IP Address in Perl") | 1110 | "Look up location and network information by IP Address in Perl") |
| 1111 | (description "The Perl module 'Geo::IP'. It looks up location and network | 1111 | (description "The Perl module @code{Geo::IP}. It looks up location and |
| 1112 | information by IP Address.") | 1112 | network information by IP Address.") |
| 1113 | (license license:perl-license))) | 1113 | (license license:perl-license))) |
| 1114 | 1114 | ||
| 1115 | (define-public perl-io-socket-inet6 | 1115 | (define-public perl-io-socket-inet6 |
diff --git a/gnu/packages/patchutils.scm b/gnu/packages/patchutils.scm index 09f5afbb28c..ec669e2e23d 100644 --- a/gnu/packages/patchutils.scm +++ b/gnu/packages/patchutils.scm | |||
| @@ -216,7 +216,7 @@ refreshed, and more.") | |||
| 216 | #:python ,python-2)) ;not compatible with Python 3 | 216 | #:python ,python-2)) ;not compatible with Python 3 |
| 217 | (synopsis "Patch tracking tool") | 217 | (synopsis "Patch tracking tool") |
| 218 | (description | 218 | (description |
| 219 | "'Patches' is a patch-tracking tool initially written for the QEMU | 219 | "@code{Patches} is a patch-tracking tool initially written for the QEMU |
| 220 | project. It provides commands that build a database of patches from a mailing | 220 | project. It provides commands that build a database of patches from a mailing |
| 221 | list, and commands that can search that database. It allows users to track | 221 | list, and commands that can search that database. It allows users to track |
| 222 | the status of a patch, apply patches, and search for patches---all that from | 222 | the status of a patch, apply patches, and search for patches---all that from |
diff --git a/gnu/packages/perl-check.scm b/gnu/packages/perl-check.scm index aae83e57717..a25c43cc32f 100644 --- a/gnu/packages/perl-check.scm +++ b/gnu/packages/perl-check.scm | |||
| @@ -801,9 +801,10 @@ to gmtime,time or localtime.") | |||
| 801 | (home-page "https://metacpan.org/release/Test-More-UTF8") | 801 | (home-page "https://metacpan.org/release/Test-More-UTF8") |
| 802 | (synopsis "Enhance Test::More for UTF8-based projects") | 802 | (synopsis "Enhance Test::More for UTF8-based projects") |
| 803 | (description "@code{Test::More::UTF8} is a simple extension for the widely | 803 | (description "@code{Test::More::UTF8} is a simple extension for the widely |
| 804 | used @code{Test::More} module. By default, it will do a @code{binmode ':utf8'} | 804 | used @code{Test::More} module. By default, it will do a @code{binmode |
| 805 | on all of @code{Test::Builder}'s output handles thus enabling the easy use | 805 | @code{:utf8}} on all of @code{Test::Builder}'s output handles thus enabling the |
| 806 | flagged strings without warnings like \"Wide character in print @dots{}\"") | 806 | easy use flagged strings without warnings like \"Wide character in print |
| 807 | @dots{}\"") | ||
| 807 | (license perl-license))) | 808 | (license perl-license))) |
| 808 | 809 | ||
| 809 | (define-public perl-test-most | 810 | (define-public perl-test-most |
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 038d551fb1a..ff387354e7f 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm | |||
| @@ -1190,11 +1190,11 @@ write accessor methods for your objects that perform standard tasks.") | |||
| 1190 | ("perl-test-requires" ,perl-test-requires))) | 1190 | ("perl-test-requires" ,perl-test-requires))) |
| 1191 | (home-page "https://metacpan.org/release/Class-Method-Modifiers") | 1191 | (home-page "https://metacpan.org/release/Class-Method-Modifiers") |
| 1192 | (synopsis "Moose-like method modifiers") | 1192 | (synopsis "Moose-like method modifiers") |
| 1193 | (description "Class::Method::Modifiers provides three modifiers: 'before', | 1193 | (description "Class::Method::Modifiers provides three modifiers: |
| 1194 | 'around', and 'after'. 'before' and 'after' are run just before and after the | 1194 | @code{before}, @code{around}, and @code{after}. @code{before} and @code{after} |
| 1195 | method they modify, but can not really affect that original method. 'around' | 1195 | are run just before and after the method they modify, but can not really affect |
| 1196 | is run in place of the original method, with a hook to easily call that | 1196 | that original method. @code{around} is run in place of the original method, |
| 1197 | original method.") | 1197 | with a hook to easily call that original method.") |
| 1198 | (license (package-license perl)))) | 1198 | (license (package-license perl)))) |
| 1199 | 1199 | ||
| 1200 | (define-public perl-class-singleton | 1200 | (define-public perl-class-singleton |
| @@ -2938,7 +2938,7 @@ input a message of arbitrary length and produces as output a | |||
| 2938 | (build-system perl-build-system) | 2938 | (build-system perl-build-system) |
| 2939 | (synopsis "Perl implementation of the SHA-1 message digest algorithm") | 2939 | (synopsis "Perl implementation of the SHA-1 message digest algorithm") |
| 2940 | (description | 2940 | (description |
| 2941 | "This package provides 'Digest::SHA1', an implementation of the NIST | 2941 | "This package provides @code{Digest::SHA1}, an implementation of the NIST |
| 2942 | SHA-1 message digest algorithm for use by Perl programs.") | 2942 | SHA-1 message digest algorithm for use by Perl programs.") |
| 2943 | (home-page "https://metacpan.org/release/Digest-SHA1") | 2943 | (home-page "https://metacpan.org/release/Digest-SHA1") |
| 2944 | (license (package-license perl)))) | 2944 | (license (package-license perl)))) |
| @@ -3481,7 +3481,7 @@ provide a quick dropin when such functionality is needed.") | |||
| 3481 | (home-page "https://metacpan.org/release/File-HomeDir") | 3481 | (home-page "https://metacpan.org/release/File-HomeDir") |
| 3482 | (synopsis "Find your home and other directories on any platform") | 3482 | (synopsis "Find your home and other directories on any platform") |
| 3483 | (description "File::HomeDir is a module for locating the directories that | 3483 | (description "File::HomeDir is a module for locating the directories that |
| 3484 | are \"owned\" by a user (typically your user) and to solve the various issues | 3484 | are @code{owned} by a user (typically your user) and to solve the various issues |
| 3485 | that arise trying to find them consistently across a wide variety of | 3485 | that arise trying to find them consistently across a wide variety of |
| 3486 | platforms.") | 3486 | platforms.") |
| 3487 | (license (package-license perl)))) | 3487 | (license (package-license perl)))) |
| @@ -4266,8 +4266,8 @@ filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.") | |||
| 4266 | (home-page "https://metacpan.org/release/IO-Tty") | 4266 | (home-page "https://metacpan.org/release/IO-Tty") |
| 4267 | (synopsis "Perl interface to pseudo ttys") | 4267 | (synopsis "Perl interface to pseudo ttys") |
| 4268 | (description | 4268 | (description |
| 4269 | "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to | 4269 | "This package provides the @code{IO::Pty} and @code{IO::Tty} Perl |
| 4270 | pseudo ttys.") | 4270 | interfaces to pseudo ttys.") |
| 4271 | (license (package-license perl)))) | 4271 | (license (package-license perl)))) |
| 4272 | 4272 | ||
| 4273 | (define-public perl-ipc-cmd | 4273 | (define-public perl-ipc-cmd |
| @@ -4533,7 +4533,7 @@ application, in turn, may choose one or more logging mechanisms via | |||
| 4533 | 4533 | ||
| 4534 | @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl | 4534 | @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl |
| 4535 | itself, which makes it appropriate for even small CPAN modules to use. It | 4535 | itself, which makes it appropriate for even small CPAN modules to use. It |
| 4536 | defaults to 'null' logging activity, so a module can safely log without | 4536 | defaults to @code{null} logging activity, so a module can safely log without |
| 4537 | worrying about whether the application has chosen (or will ever choose) a | 4537 | worrying about whether the application has chosen (or will ever choose) a |
| 4538 | logging mechanism.") | 4538 | logging mechanism.") |
| 4539 | (license (package-license perl)))) | 4539 | (license (package-license perl)))) |
| @@ -4606,7 +4606,7 @@ widely popular (Java-based) Log4j logging package in pure Perl.") | |||
| 4606 | "This module allows libraries to have a dependency to a small module | 4606 | "This module allows libraries to have a dependency to a small module |
| 4607 | instead of the full Log-Report distribution. The full power of | 4607 | instead of the full Log-Report distribution. The full power of |
| 4608 | @code{Log::Report} is only released when the main program uses that module. | 4608 | @code{Log::Report} is only released when the main program uses that module. |
| 4609 | In that case, the module using the 'Optional' will also use the full | 4609 | In that case, the module using the @code{Optional} will also use the full |
| 4610 | @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal} | 4610 | @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal} |
| 4611 | version.") | 4611 | version.") |
| 4612 | (license (package-license perl)))) | 4612 | (license (package-license perl)))) |
| @@ -5274,7 +5274,7 @@ examine the contents, and perform some simple tasks. It can also load the | |||
| 5274 | (home-page "https://metacpan.org/release/Module-Pluggable") | 5274 | (home-page "https://metacpan.org/release/Module-Pluggable") |
| 5275 | (synopsis "Give your Perl module the ability to have plugins") | 5275 | (synopsis "Give your Perl module the ability to have plugins") |
| 5276 | (description "This module provides a simple but extensible way of having | 5276 | (description "This module provides a simple but extensible way of having |
| 5277 | 'plugins' for your Perl module.") | 5277 | @code{plugins} for your Perl module.") |
| 5278 | (license (package-license perl)))) | 5278 | (license (package-license perl)))) |
| 5279 | 5279 | ||
| 5280 | (define-public perl-module-runtime | 5280 | (define-public perl-module-runtime |
| @@ -7130,7 +7130,7 @@ of @code{ref}.") | |||
| 7130 | (build-system perl-build-system) | 7130 | (build-system perl-build-system) |
| 7131 | (synopsis "Provide commonly requested regular expressions") | 7131 | (synopsis "Provide commonly requested regular expressions") |
| 7132 | (description | 7132 | (description |
| 7133 | "This module exports a single hash (`%RE') that stores or generates | 7133 | "This module exports a single hash (@code{%RE}) that stores or generates |
| 7134 | commonly needed regular expressions. Patterns currently provided include: | 7134 | commonly needed regular expressions. Patterns currently provided include: |
| 7135 | balanced parentheses and brackets, delimited text (with escapes), integers and | 7135 | balanced parentheses and brackets, delimited text (with escapes), integers and |
| 7136 | floating-point numbers in any base (up to 36), comments in 44 languages, | 7136 | floating-point numbers in any base (up to 36), comments in 44 languages, |
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 03a83022a19..413d8a822fd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm | |||
| @@ -5644,7 +5644,7 @@ It is written entirely in Python.") | |||
| 5644 | (synopsis "Backport of additions to the 'collections.abc' module") | 5644 | (synopsis "Backport of additions to the 'collections.abc' module") |
| 5645 | (description | 5645 | (description |
| 5646 | "Python-backports-abc provides a backport of additions to the | 5646 | "Python-backports-abc provides a backport of additions to the |
| 5647 | 'collections.abc' module in Python-3.5.") | 5647 | @code{collections.abc} module in Python-3.5.") |
| 5648 | (license license:psfl))) | 5648 | (license license:psfl))) |
| 5649 | 5649 | ||
| 5650 | (define-public python2-backports-abc | 5650 | (define-public python2-backports-abc |
| @@ -10341,12 +10341,12 @@ Python to manipulate OpenDocument 1.2 files.") | |||
| 10341 | (description | 10341 | (description |
| 10342 | "Natsort lets you apply natural sorting on lists instead of | 10342 | "Natsort lets you apply natural sorting on lists instead of |
| 10343 | lexicographical. If you use the built-in @code{sorted} method in python | 10343 | lexicographical. If you use the built-in @code{sorted} method in python |
| 10344 | on a list such as @code{['a20', 'a9', 'a1', 'a4', 'a10']}, it would be | 10344 | on a list such as @code{[@code{a20}, @code{a9}, @code{a1}, @code{a4}, |
| 10345 | returned as @code{['a1', 'a10', 'a20', 'a4', 'a9']}. Natsort provides a | 10345 | @code{a10}]}, it would be returned as @code{[@code{a1}, @code{a10}, @code{a20}, |
| 10346 | function @code{natsorted} that identifies numbers and sorts them separately | 10346 | @code{a4}, @code{a9}]}. Natsort provides a function @code{natsorted} that |
| 10347 | from strings. It can also sort version numbers, real numbers, mixed types | 10347 | identifies numbers and sorts them separately from strings. It can also sort |
| 10348 | and more, and comes with a shell command @command{natsort} that exposes this | 10348 | version numbers, real numbers, mixed types and more, and comes with a shell |
| 10349 | functionality in the command line.") | 10349 | command @command{natsort} that exposes this functionality in the command line.") |
| 10350 | (license license:expat) | 10350 | (license license:expat) |
| 10351 | (properties `((python2-variant . ,(delay python2-natsort)))))) | 10351 | (properties `((python2-variant . ,(delay python2-natsort)))))) |
| 10352 | 10352 | ||
diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index f4bd0e3f115..2ebbc29a795 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm | |||
| @@ -144,7 +144,7 @@ the Linux kernel CIFS client.") | |||
| 144 | (home-page "https://github.com/ndevilla/iniparser") | 144 | (home-page "https://github.com/ndevilla/iniparser") |
| 145 | (synopsis "Standalone ini file parsing library") | 145 | (synopsis "Standalone ini file parsing library") |
| 146 | (description | 146 | (description |
| 147 | "iniparser is a free stand-alone `ini' file parsing library (Windows | 147 | "iniparser is a free stand-alone @code{ini} file parsing library (Windows |
| 148 | configuration files). It is written in portable ANSI C and should compile | 148 | configuration files). It is written in portable ANSI C and should compile |
| 149 | anywhere.") | 149 | anywhere.") |
| 150 | (license x11))) | 150 | (license x11))) |
diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm index 9969cad8acb..a127d5ca34d 100644 --- a/gnu/packages/search.scm +++ b/gnu/packages/search.scm | |||
| @@ -243,7 +243,7 @@ interfaces, or a C API.") | |||
| 243 | (home-page "https://pagure.io/mlocate") | 243 | (home-page "https://pagure.io/mlocate") |
| 244 | (synopsis "Locate files on the file system") | 244 | (synopsis "Locate files on the file system") |
| 245 | (description | 245 | (description |
| 246 | "mlocate is a locate/updatedb implementation. The 'm' stands for | 246 | "mlocate is a locate/updatedb implementation. The @code{m} stands for |
| 247 | \"merging\": @code{updatedb} reuses the existing database to avoid rereading | 247 | \"merging\": @code{updatedb} reuses the existing database to avoid rereading |
| 248 | most of the file system, which makes it faster and does not trash the system | 248 | most of the file system, which makes it faster and does not trash the system |
| 249 | caches as much. The locate(1) utility is intended to be completely compatible | 249 | caches as much. The locate(1) utility is intended to be completely compatible |
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm index 55b551a119a..e9e9042bd14 100644 --- a/gnu/packages/spice.scm +++ b/gnu/packages/spice.scm | |||
| @@ -217,7 +217,7 @@ which allows users to view a desktop computing environment.") | |||
| 217 | #:parallel-tests? #f)) | 217 | #:parallel-tests? #f)) |
| 218 | (synopsis "Server implementation of the SPICE protocol") | 218 | (synopsis "Server implementation of the SPICE protocol") |
| 219 | (description "SPICE is a remote display system built for virtual | 219 | (description "SPICE is a remote display system built for virtual |
| 220 | environments which allows you to view a computing 'desktop' environment | 220 | environments which allows you to view a computing @code{desktop} environment |
| 221 | not only on the machine where it is running, but from anywhere on the | 221 | not only on the machine where it is running, but from anywhere on the |
| 222 | Internet and from a wide variety of machine architectures.") | 222 | Internet and from a wide variety of machine architectures.") |
| 223 | (home-page "https://www.spice-space.org") | 223 | (home-page "https://www.spice-space.org") |
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index d473c7c06d7..d89a18e2b95 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net> | 2 | ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net> |
| 3 | ;;; Copyright © 2015 Vicente Vera Parra <vicentemvp@gmail.com> | 3 | ;;; Copyright © 2015 Vicente Vera Parra <vicentemvp@gmail.com> |
| 4 | ;;; Copyright © 2016 Andreas Enge <andreas@enge.fr> | 4 | ;;; Copyright © 2016 Andreas Enge <andreas@enge.fr> |
| 5 | ;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il> | 5 | ;;; Copyright © 2016, 2017, 2019 Efraim Flashner <efraim@flashner.co.il> |
| 6 | ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl> | 6 | ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl> |
| 7 | ;;; Copyright © 2016 Roel Janssen <roel@gnu.org> | 7 | ;;; Copyright © 2016 Roel Janssen <roel@gnu.org> |
| 8 | ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com> | 8 | ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com> |
| @@ -802,10 +802,10 @@ effects of different types of color-blindness.") | |||
| 802 | (home-page "http://dirk.eddelbuettel.com/code/digest.html") | 802 | (home-page "http://dirk.eddelbuettel.com/code/digest.html") |
| 803 | (synopsis "Create cryptographic hash digests of R objects") | 803 | (synopsis "Create cryptographic hash digests of R objects") |
| 804 | (description | 804 | (description |
| 805 | "This package contains an implementation of a function 'digest()' for the | 805 | "This package contains an implementation of a function @code{digest()} for |
| 806 | creation of hash digests of arbitrary R objects (using the md5, sha-1, | 806 | the creation of hash digests of arbitrary R objects (using the md5, sha-1, |
| 807 | sha-256, crc32, xxhash and murmurhash algorithms) permitting easy comparison | 807 | sha-256, crc32, xxhash and murmurhash algorithms) permitting easy comparison |
| 808 | of R language objects, as well as a function 'hmac()' to create hash-based | 808 | of R language objects, as well as a function @code{hmac()} to create hash-based |
| 809 | message authentication code. | 809 | message authentication code. |
| 810 | 810 | ||
| 811 | Please note that this package is not meant to be deployed for cryptographic | 811 | Please note that this package is not meant to be deployed for cryptographic |
| @@ -827,7 +827,7 @@ OpenSSL should be used.") | |||
| 827 | (home-page "https://cran.r-project.org/web/packages/estimability") | 827 | (home-page "https://cran.r-project.org/web/packages/estimability") |
| 828 | (synopsis "Tools for assessing estimability of linear predictions") | 828 | (synopsis "Tools for assessing estimability of linear predictions") |
| 829 | (description "Provides tools for determining estimability of linear | 829 | (description "Provides tools for determining estimability of linear |
| 830 | functions of regression coefficients, and 'epredict' methods that handle | 830 | functions of regression coefficients, and @code{epredict} methods that handle |
| 831 | non-estimable cases correctly.") | 831 | non-estimable cases correctly.") |
| 832 | (license license:gpl2+))) | 832 | (license license:gpl2+))) |
| 833 | 833 | ||
| @@ -1063,7 +1063,7 @@ transliteration, concatenation, date-time formatting and parsing, etc.") | |||
| 1063 | (synopsis "Simple, consistent wrappers for common string operations") | 1063 | (synopsis "Simple, consistent wrappers for common string operations") |
| 1064 | (description | 1064 | (description |
| 1065 | "Stringr is a consistent, simple and easy to use set of wrappers around | 1065 | "Stringr is a consistent, simple and easy to use set of wrappers around |
| 1066 | the fantastic 'stringi' package. All function and argument names (and | 1066 | the fantastic @code{stringi} package. All function and argument names (and |
| 1067 | positions) are consistent, all functions deal with \"NA\"'s and zero length | 1067 | positions) are consistent, all functions deal with \"NA\"'s and zero length |
| 1068 | vectors in the same way, and the output from one function is easy to feed into | 1068 | vectors in the same way, and the output from one function is easy to feed into |
| 1069 | the input of another.") | 1069 | the input of another.") |
| @@ -2274,9 +2274,9 @@ other packages.") | |||
| 2274 | (synopsis "CommonMark and Github Markdown Rendering in R") | 2274 | (synopsis "CommonMark and Github Markdown Rendering in R") |
| 2275 | (description | 2275 | (description |
| 2276 | "The CommonMark specification defines a rationalized version of markdown | 2276 | "The CommonMark specification defines a rationalized version of markdown |
| 2277 | syntax. This package uses the 'cmark' reference implementation for converting | 2277 | syntax. This package uses the @code{cmark} reference implementation for |
| 2278 | markdown text into various formats including HTML, LaTeX and groff man. In | 2278 | converting markdown text into various formats including HTML, LaTeX and groff |
| 2279 | addition, it exposes the markdown parse tree in XML format. The latest | 2279 | man. In addition, it exposes the markdown parse tree in XML format. The latest |
| 2280 | version of this package also adds support for Github extensions including | 2280 | version of this package also adds support for Github extensions including |
| 2281 | tables, autolinks and strikethrough text.") | 2281 | tables, autolinks and strikethrough text.") |
| 2282 | (license license:bsd-2))) | 2282 | (license license:bsd-2))) |
| @@ -3165,8 +3165,8 @@ using the multicore functionality of the parallel package.") | |||
| 3165 | (synopsis "R wrapper of the DataTables JavaScript library") | 3165 | (synopsis "R wrapper of the DataTables JavaScript library") |
| 3166 | (description | 3166 | (description |
| 3167 | "This package allows for data objects in R to be rendered as HTML tables | 3167 | "This package allows for data objects in R to be rendered as HTML tables |
| 3168 | using the JavaScript library 'DataTables' (typically via R Markdown or Shiny). | 3168 | using the JavaScript library @code{DataTables} (typically via R Markdown or |
| 3169 | The 'DataTables' library has been included in this R package.") | 3169 | Shiny). The @code{DataTables} library has been included in this R package.") |
| 3170 | ;; The DT package as a whole is distributed under GPLv3. The DT package | 3170 | ;; The DT package as a whole is distributed under GPLv3. The DT package |
| 3171 | ;; inludes other software components under different licenses: | 3171 | ;; inludes other software components under different licenses: |
| 3172 | ;; | 3172 | ;; |
| @@ -3688,13 +3688,14 @@ most common form of color blindness.") | |||
| 3688 | (home-page "https://github.com/sjmgarnier/viridisLite") | 3688 | (home-page "https://github.com/sjmgarnier/viridisLite") |
| 3689 | (synopsis "Default color maps from matplotlib") | 3689 | (synopsis "Default color maps from matplotlib") |
| 3690 | (description | 3690 | (description |
| 3691 | "This package is a port of the new @code{matplotlib} color maps ('viridis', | 3691 | "This package is a port of the new @code{matplotlib} color maps |
| 3692 | 'magma', 'plasma' and 'inferno') to R. matplotlib is a popular plotting | 3692 | (@code{viridis}, @code{magma}, @code{plasma} and @code{inferno}) to R. |
| 3693 | library for Python. These color maps are designed in such a way that they | 3693 | matplotlib is a popular plotting library for Python. These color maps are |
| 3694 | will analytically be perfectly perceptually-uniform, both in regular form and | 3694 | designed in such a way that they will analytically be perfectly |
| 3695 | also when converted to black-and-white. They are also designed to be | 3695 | perceptually-uniform, both in regular form and also when converted to |
| 3696 | perceived by readers with the most common form of color blindness. This is | 3696 | black-and-white. They are also designed to be perceived by readers with the |
| 3697 | the 'lite' version of the more complete @code{viridis} package.") | 3697 | most common form of color blindness. This is the @code{lite} version of the |
| 3698 | more complete @code{viridis} package.") | ||
| 3698 | (license license:expat))) | 3699 | (license license:expat))) |
| 3699 | 3700 | ||
| 3700 | (define-public r-tidyselect | 3701 | (define-public r-tidyselect |
| @@ -5528,7 +5529,7 @@ is supported.") | |||
| 5528 | "This package provides functions to work with date-times and time-spans: | 5529 | "This package provides functions to work with date-times and time-spans: |
| 5529 | fast and user friendly parsing of date-time data, extraction and updating of | 5530 | fast and user friendly parsing of date-time data, extraction and updating of |
| 5530 | components of a date-time (years, months, days, hours, minutes, and seconds), | 5531 | components of a date-time (years, months, days, hours, minutes, and seconds), |
| 5531 | algebraic manipulation on date-time and time-span objects. The 'lubridate' | 5532 | algebraic manipulation on date-time and time-span objects. The @code{lubridate} |
| 5532 | package has a consistent and memorable syntax that makes working with dates | 5533 | package has a consistent and memorable syntax that makes working with dates |
| 5533 | easy and fun.") | 5534 | easy and fun.") |
| 5534 | (license license:gpl2))) | 5535 | (license license:gpl2))) |
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5b299376727..579dacafefc 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm | |||
| @@ -3416,8 +3416,8 @@ command.") | |||
| 3416 | (description | 3416 | (description |
| 3417 | "Identify areas of text to be marked with changebars with the | 3417 | "Identify areas of text to be marked with changebars with the |
| 3418 | @code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The | 3418 | @code{\\cbstart} and @code{\\cbend} commands; the bars may be coloured. The |
| 3419 | package uses 'drivers' to place the bars; the available drivers can work with | 3419 | package uses @code{drivers} to place the bars; the available drivers can work |
| 3420 | @code{dvitoln03}, @code{dvitops}, @code{dvips}, the emTeX and TeXtures DVI | 3420 | with @code{dvitoln03}, @code{dvitops}, @code{dvips}, the emTeX and TeXtures DVI |
| 3421 | drivers, and VTeX and pdfTeX.") | 3421 | drivers, and VTeX and pdfTeX.") |
| 3422 | (license license:lppl))) | 3422 | (license license:lppl))) |
| 3423 | 3423 | ||
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 667b2881b16..db096d85873 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm | |||
| @@ -1366,7 +1366,7 @@ following features: | |||
| 1366 | (home-page "https://subversion.apache.org/") | 1366 | (home-page "https://subversion.apache.org/") |
| 1367 | (synopsis "Revision control system") | 1367 | (synopsis "Revision control system") |
| 1368 | (description | 1368 | (description |
| 1369 | "Subversion (aka. ``svn'') exists to be recognized and adopted as a | 1369 | "@dfn{Subversion} (svn) exists to be recognized and adopted as a |
| 1370 | centralized version control system characterized by its | 1370 | centralized version control system characterized by its |
| 1371 | reliability as a safe haven for valuable data; the simplicity of its model and | 1371 | reliability as a safe haven for valuable data; the simplicity of its model and |
| 1372 | usage; and its ability to support the needs of a wide variety of users and | 1372 | usage; and its ability to support the needs of a wide variety of users and |
diff --git a/gnu/packages/w3m.scm b/gnu/packages/w3m.scm index b88bbd39bbd..1ec07675ab9 100644 --- a/gnu/packages/w3m.scm +++ b/gnu/packages/w3m.scm | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org> | 2 | ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org> |
| 3 | ;;; Copyright © 2016, 2017, 2018 Leo Famulari <leo@famulari.name> | 3 | ;;; Copyright © 2016, 2017, 2018 Leo Famulari <leo@famulari.name> |
| 4 | ;;; Copyright © 2016 Kei Kebreau <kkebreau@posteo.net> | 4 | ;;; Copyright © 2016 Kei Kebreau <kkebreau@posteo.net> |
| 5 | ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> | 5 | ;;; Copyright © 2016, 2019 Efraim Flashner <efraim@flashner.co.il> |
| 6 | ;;; Copyright © 2018 Rutger Helling <rhelling@mykolab.com> | 6 | ;;; Copyright © 2018 Rutger Helling <rhelling@mykolab.com> |
| 7 | ;;; | 7 | ;;; |
| 8 | ;;; This file is part of GNU Guix. | 8 | ;;; This file is part of GNU Guix. |
| @@ -76,8 +76,8 @@ | |||
| 76 | (home-page "http://w3m.sourceforge.net/") | 76 | (home-page "http://w3m.sourceforge.net/") |
| 77 | (synopsis "Text-mode web browser") | 77 | (synopsis "Text-mode web browser") |
| 78 | (description | 78 | (description |
| 79 | "w3m is a text-based web browser as well as a pager like 'more' or | 79 | "w3m is a text-based web browser as well as a pager like @code{more} or |
| 80 | 'less'. With w3m you can browse web pages through a terminal emulator | 80 | @code{less}. With w3m you can browse web pages through a terminal emulator |
| 81 | window. Moreover, w3m can be used as a text formatting tool which | 81 | window. Moreover, w3m can be used as a text formatting tool which |
| 82 | typesets HTML into plain text.") | 82 | typesets HTML into plain text.") |
| 83 | (license (x11-style "file://doc/README" | 83 | (license (x11-style "file://doc/README" |
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index c215c1928f2..6a34c1e2fde 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr> | 10 | ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr> |
| 11 | ;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com> | 11 | ;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com> |
| 12 | ;;; Copyright © 2016 Jelle Licht <jlicht@fsfe.org> | 12 | ;;; Copyright © 2016 Jelle Licht <jlicht@fsfe.org> |
| 13 | ;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il> | 13 | ;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il> |
| 14 | ;;; Copyright © 2016 Rene Saavedra <rennes@openmailbox.org> | 14 | ;;; Copyright © 2016 Rene Saavedra <rennes@openmailbox.org> |
| 15 | ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com> | 15 | ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com> |
| 16 | ;;; Copyright © 2016 Clément Lassieur <clement@lassieur.org> | 16 | ;;; Copyright © 2016 Clément Lassieur <clement@lassieur.org> |
| @@ -2900,7 +2900,7 @@ fields in the request.") | |||
| 2900 | (home-page "https://metacpan.org/release/HTTP-Parser") | 2900 | (home-page "https://metacpan.org/release/HTTP-Parser") |
| 2901 | (synopsis "Parse HTTP/1.1 requests") | 2901 | (synopsis "Parse HTTP/1.1 requests") |
| 2902 | (description "This is an HTTP request parser. It takes chunks of text as | 2902 | (description "This is an HTTP request parser. It takes chunks of text as |
| 2903 | received and returns a 'hint' as to what is required, or returns the | 2903 | received and returns a @code{hint} as to what is required, or returns the |
| 2904 | HTTP::Request when a complete request has been read. HTTP/1.1 chunking is | 2904 | HTTP::Request when a complete request has been read. HTTP/1.1 chunking is |
| 2905 | supported.") | 2905 | supported.") |
| 2906 | (license l:perl-license))) | 2906 | (license l:perl-license))) |
| @@ -3467,7 +3467,7 @@ required.") | |||
| 3467 | (synopsis "Supports app to run as a reverse proxy backend") | 3467 | (synopsis "Supports app to run as a reverse proxy backend") |
| 3468 | (description "Plack::Middleware::ReverseProxy resets some HTTP headers, | 3468 | (description "Plack::Middleware::ReverseProxy resets some HTTP headers, |
| 3469 | which are changed by reverse-proxy. You can specify the reverse proxy address | 3469 | which are changed by reverse-proxy. You can specify the reverse proxy address |
| 3470 | and stop fake requests using 'enable_if' directive in your app.psgi.") | 3470 | and stop fake requests using @code{enable_if} directive in your app.psgi.") |
| 3471 | (license l:perl-license))) | 3471 | (license l:perl-license))) |
| 3472 | 3472 | ||
| 3473 | (define-public perl-plack-test-externalserver | 3473 | (define-public perl-plack-test-externalserver |
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index a3965866380..770aa9409c9 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr> | 6 | ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr> |
| 7 | ;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org> | 7 | ;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org> |
| 8 | ;;; Copyright © 2015 Cyrill Schenkel <cyrill.schenkel@gmail.com> | 8 | ;;; Copyright © 2015 Cyrill Schenkel <cyrill.schenkel@gmail.com> |
| 9 | ;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il> | 9 | ;;; Copyright © 2016, 2017, 2019 Efraim Flashner <efraim@flashner.co.il> |
| 10 | ;;; Copyright © 2016 ng0 <ng0@n0.is> | 10 | ;;; Copyright © 2016 ng0 <ng0@n0.is> |
| 11 | ;;; Copyright © 2016 Alex Kost <alezost@gmail.com> | 11 | ;;; Copyright © 2016 Alex Kost <alezost@gmail.com> |
| 12 | ;;; Copyright © 2016 David Craven <david@craven.ch> | 12 | ;;; Copyright © 2016 David Craven <david@craven.ch> |
| @@ -548,7 +548,7 @@ Resources file.") | |||
| 548 | (synopsis "Xorg font aliases") | 548 | (synopsis "Xorg font aliases") |
| 549 | (description | 549 | (description |
| 550 | "This package provides some common aliases for Xorg fonts. | 550 | "This package provides some common aliases for Xorg fonts. |
| 551 | For example: '6x10', '9x15bold', etc.") | 551 | For example: @code{6x10}, @code{9x15bold}, etc.") |
| 552 | (license license:x11))) | 552 | (license license:x11))) |
| 553 | 553 | ||
| 554 | 554 | ||
| @@ -1600,8 +1600,8 @@ input from UTF-8 into the locale's encoding.") | |||
| 1600 | (home-page "https://www.x.org/wiki/") | 1600 | (home-page "https://www.x.org/wiki/") |
| 1601 | (synopsis "Create an index of scalable font files for X server") | 1601 | (synopsis "Create an index of scalable font files for X server") |
| 1602 | (description | 1602 | (description |
| 1603 | "MkFontScale creates the 'fonts.scale' and 'fonts.dir' index files used | 1603 | "MkFontScale creates the @code{fonts.scale} and @code{fonts.dir} index |
| 1604 | by the legacy X11 font system.") | 1604 | files used by the legacy X11 font system.") |
| 1605 | (license license:x11))) | 1605 | (license license:x11))) |
| 1606 | 1606 | ||
| 1607 | 1607 | ||
| @@ -2220,7 +2220,7 @@ X11 Inter-Client Communication Conventions Manual (ICCCM).") | |||
| 2220 | (synopsis "Default Xorg cursors") | 2220 | (synopsis "Default Xorg cursors") |
| 2221 | (description | 2221 | (description |
| 2222 | "This package provides a default set of cursor themes for the Xorg | 2222 | "This package provides a default set of cursor themes for the Xorg |
| 2223 | X server: 'handhelds', 'redglass' and 'whiteglass'.") | 2223 | X server: @code{handhelds}, @code{redglass} and @code{whiteglass}.") |
| 2224 | (license license:x11))) | 2224 | (license license:x11))) |
| 2225 | 2225 | ||
| 2226 | 2226 | ||
| @@ -3864,7 +3864,7 @@ extension to the X11 protocol. It includes: | |||
| 3864 | "xkeyboard-config provides a database for X Keyboard (XKB) Extension. | 3864 | "xkeyboard-config provides a database for X Keyboard (XKB) Extension. |
| 3865 | There are five components that define a complete keyboard mapping: | 3865 | There are five components that define a complete keyboard mapping: |
| 3866 | symbols, geometry, keycodes, compat, and types; these five components | 3866 | symbols, geometry, keycodes, compat, and types; these five components |
| 3867 | can be combined together using the 'rules' component of this database.") | 3867 | can be combined together using the @code{rules} component of this database.") |
| 3868 | (license license:x11))) | 3868 | (license license:x11))) |
| 3869 | 3869 | ||
| 3870 | 3870 | ||
| @@ -4746,7 +4746,7 @@ protocol and arbitrary X extension protocol.") | |||
| 4746 | (home-page "https://www.x.org/wiki/") | 4746 | (home-page "https://www.x.org/wiki/") |
| 4747 | (synopsis "Create an index of X font files in a directory") | 4747 | (synopsis "Create an index of X font files in a directory") |
| 4748 | (description | 4748 | (description |
| 4749 | "MkFontDir creates the 'fonts.dir' files needed by the legacy X | 4749 | "MkFontDir creates the @code{fonts.dir} files needed by the legacy X |
| 4750 | server core font system. The current implementation is a simple wrapper | 4750 | server core font system. The current implementation is a simple wrapper |
| 4751 | script around the mkfontscale program.") | 4751 | script around the mkfontscale program.") |
| 4752 | (license license:x11))) | 4752 | (license license:x11))) |
| @@ -5680,7 +5680,7 @@ The XCB util-wm module provides the following libraries: | |||
| 5680 | (description | 5680 | (description |
| 5681 | "The xinit program is used to start the X Window System server and a | 5681 | "The xinit program is used to start the X Window System server and a |
| 5682 | first client program on systems that are not using a display manager such as | 5682 | first client program on systems that are not using a display manager such as |
| 5683 | xdm. This package also provides the 'startx' command, which provides a | 5683 | xdm. This package also provides the @code{startx} command, which provides a |
| 5684 | user-friendly mechanism to start the X server.") | 5684 | user-friendly mechanism to start the X server.") |
| 5685 | (license license:x11))) | 5685 | (license license:x11))) |
| 5686 | 5686 | ||
