diff options
| author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-08-14 02:00:00 +0200 |
|---|---|---|
| committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-08-14 02:00:00 +0200 |
| commit | 5a9c2abf9ecd47f4481c68cc5e57a85c84313645 (patch) | |
| tree | b52e3e144fd415c180452e02ef4e830e3a8bb916 /gnu/packages | |
| parent | 078d880f8fa52a33064dc1eb323e6547e10e651d (diff) | |
gnu: Remove ‘open source’ from package descriptions.
Also do some (trivial) editing where appropriate.
* gnu/packages/bioconductor.scm (r-anaquin, r-rcppnumerical)
[description]: Remove superfluous ‘open source’.
* gnu/packages/debian.scm (apt-mirror)[description]: Likewise.
Add @acronym{}. Drop obscure Ubuntu for famous Trisquel. Reorder.
* gnu/packages/documentation.scm (scrollkeeper)[description]:
Remove superfluous ‘open systems’. Keep ‘Open Source’ in standard name.
* gnu/packages/engineering.scm (freecad, cura-engine)[description]:
Remove superfluous ‘open source’ and excessive puffery.
* gnu/packages/firmware.scm (make-opensbi-package)
[synopsis]: Remove ‘Open Source’. Use @acronym{}.
[description]: Fix first sentence to follow guidelines. Use @acronym{}.
* gnu/packages/game-development.scm (ioquake3, recastnavigation):
[description]: Remove ‘open source’.
* gnu/packages/graphics.scm (skia)[description]: Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-s-sysdeps)[description]: Likewise.
* gnu/packages/machine-learning.scm (onnx)[description]: Likewise.
Use @acronym{}.
* gnu/packages/ocaml.scm (ocaml-cudf)[description]: Likewise.
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/bioconductor.scm | 11 | ||||
| -rw-r--r-- | gnu/packages/debian.scm | 6 | ||||
| -rw-r--r-- | gnu/packages/documentation.scm | 12 | ||||
| -rw-r--r-- | gnu/packages/engineering.scm | 19 | ||||
| -rw-r--r-- | gnu/packages/firmware.scm | 8 | ||||
| -rw-r--r-- | gnu/packages/game-development.scm | 7 | ||||
| -rw-r--r-- | gnu/packages/graphics.scm | 5 | ||||
| -rw-r--r-- | gnu/packages/lisp-xyz.scm | 2 | ||||
| -rw-r--r-- | gnu/packages/machine-learning.scm | 8 | ||||
| -rw-r--r-- | gnu/packages/ocaml.scm | 6 |
10 files changed, 42 insertions, 42 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 111bd658237..7d2ca413e95 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm | |||
| @@ -2091,8 +2091,8 @@ canonical cancer pathways.") | |||
| 2091 | (description | 2091 | (description |
| 2092 | "The project is intended to support the use of @dfn{sequins}(synthetic | 2092 | "The project is intended to support the use of @dfn{sequins}(synthetic |
| 2093 | sequencing spike-in controls) owned and made available by the Garvan Institute | 2093 | sequencing spike-in controls) owned and made available by the Garvan Institute |
| 2094 | of Medical Research. The goal is to provide a standard open source library for | 2094 | of Medical Research. The goal is to provide a standard library for quantitative |
| 2095 | quantitative analysis, modelling and visualization of spike-in controls.") | 2095 | analysis, modelling, and visualization of spike-in controls.") |
| 2096 | (license license:bsd-3))) | 2096 | (license license:bsd-3))) |
| 2097 | 2097 | ||
| 2098 | (define-public r-aneufinder | 2098 | (define-public r-aneufinder |
| @@ -6542,9 +6542,10 @@ problems in genomics, brain imaging, astrophysics, and data mining.") | |||
| 6542 | `(("r-knitr" ,r-knitr))) | 6542 | `(("r-knitr" ,r-knitr))) |
| 6543 | (home-page "https://github.com/yixuan/RcppNumerical") | 6543 | (home-page "https://github.com/yixuan/RcppNumerical") |
| 6544 | (synopsis "Rcpp integration for numerical computing libraries") | 6544 | (synopsis "Rcpp integration for numerical computing libraries") |
| 6545 | (description "This package provides a collection of open source libraries | 6545 | (description |
| 6546 | for numerical computing (numerical integration, optimization, etc.) and their | 6546 | "This package provides a collection of libraries for numerical computing |
| 6547 | integration with @code{Rcpp}.") | 6547 | (numerical integration, optimization, etc.) and their integration with |
| 6548 | @code{Rcpp}.") | ||
| 6548 | (license license:gpl2+))) | 6549 | (license license:gpl2+))) |
| 6549 | 6550 | ||
| 6550 | (define-public r-apeglm | 6551 | (define-public r-apeglm |
diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm index 5ff09393b9b..67b66be38d1 100644 --- a/gnu/packages/debian.scm +++ b/gnu/packages/debian.scm | |||
| @@ -331,9 +331,9 @@ debian/copyright for more information."))))) | |||
| 331 | (home-page "http://apt-mirror.github.io/") | 331 | (home-page "http://apt-mirror.github.io/") |
| 332 | (synopsis "Script for mirroring a Debian repository") | 332 | (synopsis "Script for mirroring a Debian repository") |
| 333 | (description | 333 | (description |
| 334 | "apt-mirror is a small tool that provides the ability to | 334 | "apt-mirror is a small tool that provides the ability to selectively |
| 335 | selectively mirror Debian and Ubuntu GNU/Linux distributions or any | 335 | mirror @acronym{APT, advanced package tool} sources, including GNU/Linux |
| 336 | other apt sources typically provided by open source developers.") | 336 | distributions such as Debian and Trisquel.") |
| 337 | (license license:gpl2)))) | 337 | (license license:gpl2)))) |
| 338 | 338 | ||
| 339 | (define-public dpkg | 339 | (define-public dpkg |
diff --git a/gnu/packages/documentation.scm b/gnu/packages/documentation.scm index 6f24149b5dc..585a295fb47 100644 --- a/gnu/packages/documentation.scm +++ b/gnu/packages/documentation.scm | |||
| @@ -338,12 +338,12 @@ additional metadata about the object to which the docstring belongs.") | |||
| 338 | (list intltool)) | 338 | (list intltool)) |
| 339 | (home-page "http://scrollkeeper.sourceforge.net/") | 339 | (home-page "http://scrollkeeper.sourceforge.net/") |
| 340 | (synopsis "Open Documentation Cataloging Project") | 340 | (synopsis "Open Documentation Cataloging Project") |
| 341 | (description "ScrollKeeper is a cataloging system for documentation on open | 341 | (description |
| 342 | systems. It manages documentation metadata as specified by the Open Source | 342 | "ScrollKeeper is a cataloging system for documentation. It manages |
| 343 | Metadata Framework and provides a simple API to allow help browsers to find, | 343 | documentation metadata as specified by the Open Source Metadata Framework and |
| 344 | sort, and search the document catalog. It will also be able to communicate | 344 | provides a simple API to allow help browsers to find, sort, and search the |
| 345 | with catalog servers on the Net to search for documents which are not on the | 345 | document catalog. It will also be able to communicate with catalog servers on |
| 346 | local system.") | 346 | the Net to search for documents which are not on the local system.") |
| 347 | (license lgpl2.1+))) | 347 | (license lgpl2.1+))) |
| 348 | 348 | ||
| 349 | (define-public zeal | 349 | (define-public zeal |
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 892a05d5d08..f1951794135 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm | |||
| @@ -2527,12 +2527,11 @@ comments."))) | |||
| 2527 | (home-page "https://www.freecadweb.org/") | 2527 | (home-page "https://www.freecadweb.org/") |
| 2528 | (synopsis "Your Own 3D Parametric Modeler") | 2528 | (synopsis "Your Own 3D Parametric Modeler") |
| 2529 | (description | 2529 | (description |
| 2530 | "FreeCAD is a general purpose feature-based, parametric 3D modeler for | 2530 | "FreeCAD is a general-purpose, feature-based, parametric 3D modeler for |
| 2531 | CAD, MCAD, CAx, CAE and PLM, aimed directly at mechanical engineering and | 2531 | CAD, MCAD, CAx, CAE, and PLM. It is aimed directly at mechanical engineering |
| 2532 | product design but also fits a wider range of uses in engineering, such as | 2532 | and product design but also fits a wider range of uses in engineering, such as |
| 2533 | architecture or other engineering specialties. It is 100% Open Source (LGPL2+ | 2533 | architecture or other engineering specialties. It is modular, allowing for |
| 2534 | license) and extremely modular, allowing for very advanced extension and | 2534 | extension and customization.") |
| 2535 | customization.") | ||
| 2536 | (license | 2535 | (license |
| 2537 | (list | 2536 | (list |
| 2538 | license:lgpl2.1+ | 2537 | license:lgpl2.1+ |
| @@ -3355,10 +3354,10 @@ facilitate the communication between Cura and its backend and similar code.") | |||
| 3355 | "stb_image.h"))))))) | 3354 | "stb_image.h"))))))) |
| 3356 | (home-page "https://github.com/Ultimaker/CuraEngine") | 3355 | (home-page "https://github.com/Ultimaker/CuraEngine") |
| 3357 | (synopsis "Cura slicing engine") | 3356 | (synopsis "Cura slicing engine") |
| 3358 | (description "CuraEngine is a powerful, fast and robust engine for | 3357 | (description |
| 3359 | processing 3D models into 3D printing instruction for Ultimaker and other | 3358 | "CuraEngine is an engine for processing 3D models into 3D printing |
| 3360 | GCode based 3D printers. It is part of the larger open source project called | 3359 | instructions for Ultimaker and other GCode-based 3D printers. It is part of a |
| 3361 | Cura.") | 3360 | larger project called Cura.") |
| 3362 | (license license:agpl3+))) | 3361 | (license license:agpl3+))) |
| 3363 | 3362 | ||
| 3364 | (define-public cura-binary-data | 3363 | (define-public cura-binary-data |
diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm index a258af30bff..3ba5078b633 100644 --- a/gnu/packages/firmware.scm +++ b/gnu/packages/firmware.scm | |||
| @@ -265,9 +265,11 @@ broadband modem as found, for example, on PinePhone.") | |||
| 265 | bin)) | 265 | bin)) |
| 266 | #t))))) | 266 | #t))))) |
| 267 | (home-page "https://github.com/riscv-software-src/opensbi") | 267 | (home-page "https://github.com/riscv-software-src/opensbi") |
| 268 | (synopsis "RISC-V Open Source Supervisor Binary Interface") | 268 | (synopsis "RISC-V @acronym{SBI, Supervisor Binary Interface} implementation") |
| 269 | (description "A reference implementation of the RISC-V SBI specifications | 269 | (description |
| 270 | for platform-specific firmwares executing in M-mode.") | 270 | "OpenSBI is the reference implementation of the RISC-V @acronym{SBI, |
| 271 | Supervisory Binary Interface} specifications for platform-specific firmwares | ||
| 272 | executing in M-mode.") | ||
| 271 | (license (list license:bsd-2 | 273 | (license (list license:bsd-2 |
| 272 | ;; lib/utils/libfdt/* is dual licensed under bsd-2 and gpl2+. | 274 | ;; lib/utils/libfdt/* is dual licensed under bsd-2 and gpl2+. |
| 273 | license:gpl2+ | 275 | license:gpl2+ |
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 7f05d8ed060..7b2fb8dac39 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm | |||
| @@ -2187,9 +2187,8 @@ of the others") | |||
| 2187 | (description "ioquake3 is a free software first person shooter engine | 2187 | (description "ioquake3 is a free software first person shooter engine |
| 2188 | based on the Quake 3: Arena and Quake 3: Team Arena source code. Compared to | 2188 | based on the Quake 3: Arena and Quake 3: Team Arena source code. Compared to |
| 2189 | the original, ioquake3 has been cleaned up, bugs have been fixed and features | 2189 | the original, ioquake3 has been cleaned up, bugs have been fixed and features |
| 2190 | added. The permanent goal is to create the open source Quake 3 distribution | 2190 | added. The permanent goal is to create a Quake 3 distribution upon which |
| 2191 | upon which people base their games, ports to new platforms, and other | 2191 | people base their games, ports to new platforms, and other projects.") |
| 2192 | projects.") | ||
| 2193 | (license license:gpl2)))) | 2192 | (license license:gpl2)))) |
| 2194 | 2193 | ||
| 2195 | (define-public instead | 2194 | (define-public instead |
| @@ -2806,8 +2805,6 @@ construction toolset for games. | |||
| 2806 | @item It is automatic, which means that you can throw any level geometry | 2805 | @item It is automatic, which means that you can throw any level geometry |
| 2807 | at it and you will get robust mesh out. | 2806 | at it and you will get robust mesh out. |
| 2808 | @item It is fast which means swift turnaround times for level designers. | 2807 | @item It is fast which means swift turnaround times for level designers. |
| 2809 | @item It is open source so it comes with full source and you can | ||
| 2810 | customize it to your heart's content. | ||
| 2811 | @end itemize | 2808 | @end itemize |
| 2812 | 2809 | ||
| 2813 | The Recast process starts with constructing a voxel mold from a level | 2810 | The Recast process starts with constructing a voxel mold from a level |
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 1afaf687be3..9a378e76a6a 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm | |||
| @@ -1948,8 +1948,9 @@ Cflags: -I${includedir}~%" #$output #$version)))))))) | |||
| 1948 | (inputs (list expat fontconfig freetype harfbuzz mesa libwebp zlib)) | 1948 | (inputs (list expat fontconfig freetype harfbuzz mesa libwebp zlib)) |
| 1949 | (home-page "https://skia.org/") | 1949 | (home-page "https://skia.org/") |
| 1950 | (synopsis "2D graphics library") | 1950 | (synopsis "2D graphics library") |
| 1951 | (description "Skia is an open source 2D graphics library. It can be | 1951 | (description |
| 1952 | used for drawing text, geometries, and images and has support for: | 1952 | "Skia is a 2D graphics library for drawing text, geometries, and images. |
| 1953 | It supports: | ||
| 1953 | @itemize | 1954 | @itemize |
| 1954 | @item 3x3 matrices with perspective | 1955 | @item 3x3 matrices with perspective |
| 1955 | @item antialiasing, transparency, filters | 1956 | @item antialiasing, transparency, filters |
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index cdd4d479ac7..6018c4deff9 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm | |||
| @@ -6831,7 +6831,7 @@ extension-points via the concept of hooks.") | |||
| 6831 | (synopsis "Common Lisp abstraction layer over platform dependent functionality") | 6831 | (synopsis "Common Lisp abstraction layer over platform dependent functionality") |
| 6832 | (description "@code{s-sysdeps} is an abstraction layer over platform | 6832 | (description "@code{s-sysdeps} is an abstraction layer over platform |
| 6833 | dependent functionality. This simple package is used as a building block in a | 6833 | dependent functionality. This simple package is used as a building block in a |
| 6834 | number of other open source projects. | 6834 | number of other projects. |
| 6835 | 6835 | ||
| 6836 | @code{s-sysdeps} abstracts: | 6836 | @code{s-sysdeps} abstracts: |
| 6837 | 6837 | ||
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index cd0640cd277..c61428486c0 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm | |||
| @@ -828,10 +828,10 @@ in terms of new algorithms.") | |||
| 828 | (home-page "https://onnx.ai/") | 828 | (home-page "https://onnx.ai/") |
| 829 | (synopsis "Open Neural Network Exchange") | 829 | (synopsis "Open Neural Network Exchange") |
| 830 | (description | 830 | (description |
| 831 | "Open Neural Network Exchange (ONNX) provides an open source format for | 831 | "@acronym{ONNX, Open Neural Network Exchange} is a format for AI models, |
| 832 | AI models, both deep learning and traditional ML. It defines an extensible | 832 | both deep learning and traditional @acronym{ML, machine learning}. It defines |
| 833 | computation graph model, as well as definitions of built-in operators and | 833 | an extensible computation graph model, as well as definitions of built-in |
| 834 | standard data types.") | 834 | operators and standard data types.") |
| 835 | (license license:expat))) | 835 | (license license:expat))) |
| 836 | 836 | ||
| 837 | (define-public python-onnx | 837 | (define-public python-onnx |
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index eb60cd00f06..79df84054f9 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm | |||
| @@ -608,9 +608,9 @@ for day to day programming.") | |||
| 608 | (native-inputs (list ocaml-ounit2)) | 608 | (native-inputs (list ocaml-ounit2)) |
| 609 | (home-page "https://www.mancoosi.org/cudf/") | 609 | (home-page "https://www.mancoosi.org/cudf/") |
| 610 | (synopsis "CUDF library (part of the Mancoosi tools)") | 610 | (synopsis "CUDF library (part of the Mancoosi tools)") |
| 611 | (description "CUDF (for Common Upgradeability Description Format) is a | 611 | (description |
| 612 | format for describing upgrade scenarios in package-based Free and Open Source | 612 | "@acronym{CUDF, Common Upgradeability Description Format} is a format for |
| 613 | Software distribution.") | 613 | describing upgrade scenarios in package-based software distributions.") |
| 614 | ;; With static-linking exception | 614 | ;; With static-linking exception |
| 615 | (license license:lgpl2.1+))) | 615 | (license license:lgpl2.1+))) |
| 616 | 616 | ||
