diff options
Diffstat (limited to 'gnu')
79 files changed, 185 insertions, 185 deletions
diff --git a/gnu/bootloader.scm b/gnu/bootloader.scm index e2329e3df65..5ed72662fc3 100644 --- a/gnu/bootloader.scm +++ b/gnu/bootloader.scm | |||
| @@ -241,7 +241,7 @@ record." | |||
| 241 | ;;; Bootloader configuration record. | 241 | ;;; Bootloader configuration record. |
| 242 | ;;; | 242 | ;;; |
| 243 | 243 | ||
| 244 | ;; The <bootloader-configuration> record contains bootloader independant | 244 | ;; The <bootloader-configuration> record contains bootloader independent |
| 245 | ;; configuration used to fill bootloader configuration file. | 245 | ;; configuration used to fill bootloader configuration file. |
| 246 | 246 | ||
| 247 | (define-with-syntax-properties (warn-target-field-deprecation | 247 | (define-with-syntax-properties (warn-target-field-deprecation |
diff --git a/gnu/home/services.scm b/gnu/home/services.scm index 39c9033ad63..3b6fe28e1dc 100644 --- a/gnu/home/services.scm +++ b/gnu/home/services.scm | |||
| @@ -431,7 +431,7 @@ activation."))) | |||
| 431 | (format #f "/run/user/~a" (getuid)))) | 431 | (format #f "/run/user/~a" (getuid)))) |
| 432 | (flag-file-path (string-append | 432 | (flag-file-path (string-append |
| 433 | xdg-runtime-dir "/on-first-login-executed"))) | 433 | xdg-runtime-dir "/on-first-login-executed"))) |
| 434 | ;; XDG_RUNTIME_DIR dissapears on logout, that means such trick | 434 | ;; XDG_RUNTIME_DIR disappears on logout, that means such trick |
| 435 | ;; allows to launch on-first-login script on first login only | 435 | ;; allows to launch on-first-login script on first login only |
| 436 | ;; after complete logout/reboot. | 436 | ;; after complete logout/reboot. |
| 437 | (if (file-exists? xdg-runtime-dir) | 437 | (if (file-exists? xdg-runtime-dir) |
diff --git a/gnu/home/services/sway.scm b/gnu/home/services/sway.scm index 0e1a2d57b2a..eebc65766ea 100644 --- a/gnu/home/services/sway.scm +++ b/gnu/home/services/sway.scm | |||
| @@ -487,7 +487,7 @@ | |||
| 487 | ;; the above list. Each function either returns a list, or elements that will | 487 | ;; the above list. Each function either returns a list, or elements that will |
| 488 | ;; be put in one. The elements of these lists will either be: | 488 | ;; be put in one. The elements of these lists will either be: |
| 489 | ;; - strings, | 489 | ;; - strings, |
| 490 | ;; In this case, the string is seen as a line to add to the configuraiton | 490 | ;; In this case, the string is seen as a line to add to the configuration |
| 491 | ;; file. | 491 | ;; file. |
| 492 | ;; - a pair (cons 'begin-block string), | 492 | ;; - a pair (cons 'begin-block string), |
| 493 | ;; In this case, a line "string {" is added to the configuration file, and | 493 | ;; In this case, a line "string {" is added to the configuration file, and |
diff --git a/gnu/home/services/xdg.scm b/gnu/home/services/xdg.scm index 872db6902af..c5aaa77fad9 100644 --- a/gnu/home/services/xdg.scm +++ b/gnu/home/services/xdg.scm | |||
| @@ -95,7 +95,7 @@ this directory should contain static configurations.") | |||
| 95 | (data-home | 95 | (data-home |
| 96 | (path "$HOME/.local/share") | 96 | (path "$HOME/.local/share") |
| 97 | "Base directory for programs to store architecture independent | 97 | "Base directory for programs to store architecture independent |
| 98 | read-only shared data, analogus to @file{/usr/share}, but for user.") | 98 | read-only shared data, analogous to @file{/usr/share}, but for user.") |
| 99 | (runtime-dir | 99 | (runtime-dir |
| 100 | (path "${XDG_RUNTIME_DIR:-/run/user/$UID}") | 100 | (path "${XDG_RUNTIME_DIR:-/run/user/$UID}") |
| 101 | "Base directory for programs to store user-specific runtime files, | 101 | "Base directory for programs to store user-specific runtime files, |
| @@ -103,7 +103,7 @@ like sockets.") | |||
| 103 | ;; TODO: deprecated field, use $XDG_STATE_HOME(/log) instead. | 103 | ;; TODO: deprecated field, use $XDG_STATE_HOME(/log) instead. |
| 104 | (log-home | 104 | (log-home |
| 105 | maybe-path | 105 | maybe-path |
| 106 | "Base directory for programs to store log files, analogus to | 106 | "Base directory for programs to store log files, analogous to |
| 107 | @file{/var/log}, but for user. It is not a part of XDG Base Directory | 107 | @file{/var/log}, but for user. It is not a part of XDG Base Directory |
| 108 | Specification, but helps to make implementation of home services more | 108 | Specification, but helps to make implementation of home services more |
| 109 | consistent." | 109 | consistent." |
diff --git a/gnu/installer/newt.scm b/gnu/installer/newt.scm index 1fe710340fb..521668a3b25 100644 --- a/gnu/installer/newt.scm +++ b/gnu/installer/newt.scm | |||
| @@ -65,7 +65,7 @@ | |||
| 65 | 65 | ||
| 66 | (define (exit-error error) | 66 | (define (exit-error error) |
| 67 | ;; Newt may be suspended in the context of the "install-system" | 67 | ;; Newt may be suspended in the context of the "install-system" |
| 68 | ;; procedure. Resume it unconditionnally. | 68 | ;; procedure. Resume it unconditionally. |
| 69 | (newt-resume) | 69 | (newt-resume) |
| 70 | (newt-set-color COLORSET-ROOT "white" "red") | 70 | (newt-set-color COLORSET-ROOT "white" "red") |
| 71 | (define action | 71 | (define action |
diff --git a/gnu/installer/newt/services.scm b/gnu/installer/newt/services.scm index 848683e8c77..a91a08668da 100644 --- a/gnu/installer/newt/services.scm +++ b/gnu/installer/newt/services.scm | |||
| @@ -86,7 +86,7 @@ system.") | |||
| 86 | (abort-to-prompt 'installer-step 'abort))))) | 86 | (abort-to-prompt 'installer-step 'abort))))) |
| 87 | 87 | ||
| 88 | (define (run-console-services-cbt-page) | 88 | (define (run-console-services-cbt-page) |
| 89 | "Run a page to select various system adminstration services for non-graphical | 89 | "Run a page to select various system administration services for non-graphical |
| 90 | systems." | 90 | systems." |
| 91 | (let ((items (filter (lambda (service) | 91 | (let ((items (filter (lambda (service) |
| 92 | (eq? 'administration | 92 | (eq? 'administration |
diff --git a/gnu/installer/parted.scm b/gnu/installer/parted.scm index ccddc64f115..de2b4dc99bb 100644 --- a/gnu/installer/parted.scm +++ b/gnu/installer/parted.scm | |||
| @@ -927,7 +927,7 @@ cause them to cross." | |||
| 927 | 927 | ||
| 928 | 928 | ||
| 929 | ;; | 929 | ;; |
| 930 | ;; Auto partitionning. | 930 | ;; Auto partitioning. |
| 931 | ;; | 931 | ;; |
| 932 | 932 | ||
| 933 | (define* (create-adjacent-partitions! disk partitions | 933 | (define* (create-adjacent-partitions! disk partitions |
diff --git a/gnu/installer/steps.scm b/gnu/installer/steps.scm index 34dd14c9d56..b70e5ebda5e 100644 --- a/gnu/installer/steps.scm +++ b/gnu/installer/steps.scm | |||
| @@ -92,7 +92,7 @@ | |||
| 92 | sequentially, inside a the 'installer-step prompt. When aborted to with a | 92 | sequentially, inside a the 'installer-step prompt. When aborted to with a |
| 93 | parameter of 'abort, fallback to a previous install-step, accordingly to the | 93 | parameter of 'abort, fallback to a previous install-step, accordingly to the |
| 94 | specified REWIND-STRATEGY. When aborted to with a parameter of 'break, stop | 94 | specified REWIND-STRATEGY. When aborted to with a parameter of 'break, stop |
| 95 | the computation and return the accumalated result so far. | 95 | the computation and return the accumulated result so far. |
| 96 | 96 | ||
| 97 | REWIND-STRATEGY possible values are 'previous, 'menu and 'start. If 'previous | 97 | REWIND-STRATEGY possible values are 'previous, 'menu and 'start. If 'previous |
| 98 | is selected, the execution will resume at the previous installer-step. If | 98 | is selected, the execution will resume at the previous installer-step. If |
diff --git a/gnu/machine/hetzner.scm b/gnu/machine/hetzner.scm index 5e17bfae215..1d9a3f43857 100644 --- a/gnu/machine/hetzner.scm +++ b/gnu/machine/hetzner.scm | |||
| @@ -227,7 +227,7 @@ Have you run 'guix archive --generate-key'?") | |||
| 227 | ;;; | 227 | ;;; |
| 228 | 228 | ||
| 229 | (define (hetzner-machine-delegate target server) | 229 | (define (hetzner-machine-delegate target server) |
| 230 | "Return the delagate machine that uses SSH for deployment." | 230 | "Return the delegate machine that uses SSH for deployment." |
| 231 | (let* ((config (machine-configuration target)) | 231 | (let* ((config (machine-configuration target)) |
| 232 | ;; Get the operating system WITHOUT the provenance service to avoid a | 232 | ;; Get the operating system WITHOUT the provenance service to avoid a |
| 233 | ;; duplicate symlink conflict in the store. | 233 | ;; duplicate symlink conflict in the store. |
diff --git a/gnu/machine/hetzner/http.scm b/gnu/machine/hetzner/http.scm index bfd65554721..51b4bff984f 100644 --- a/gnu/machine/hetzner/http.scm +++ b/gnu/machine/hetzner/http.scm | |||
| @@ -514,7 +514,7 @@ | |||
| 514 | (string-append (hetzner-api-base-url api) path)) | 514 | (string-append (hetzner-api-base-url api) path)) |
| 515 | 515 | ||
| 516 | (define (hetzner-api-delete api path) | 516 | (define (hetzner-api-delete api path) |
| 517 | "Delelte the resource at PATH with the Hetzner API." | 517 | "Delete the resource at PATH with the Hetzner API." |
| 518 | (hetzner-api-response-body | 518 | (hetzner-api-response-body |
| 519 | (hetzner-api-request-send | 519 | (hetzner-api-request-send |
| 520 | (hetzner-api-request | 520 | (hetzner-api-request |
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 82b872d25ce..d5e50faa15c 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm | |||
| @@ -1540,7 +1540,7 @@ It can also list the processes responsible in a @command{top}-like table. | |||
| 1540 | A less common nmon feature is its ability to create highly detailed log files | 1540 | A less common nmon feature is its ability to create highly detailed log files |
| 1541 | in @acronym{CSV, comma-separated values} format. These can be imported into | 1541 | in @acronym{CSV, comma-separated values} format. These can be imported into |
| 1542 | spreadsheets or fed straight into an @acronym{RRD, round-robin database} using | 1542 | spreadsheets or fed straight into an @acronym{RRD, round-robin database} using |
| 1543 | @command{rrdtool} for further analyisis, or to create colourful graphs.") | 1543 | @command{rrdtool} for further analysis, or to create colourful graphs.") |
| 1544 | (license license:gpl3+))) | 1544 | (license license:gpl3+))) |
| 1545 | 1545 | ||
| 1546 | (define-public sipcalc | 1546 | (define-public sipcalc |
| @@ -5661,7 +5661,7 @@ disk utilization, priority, username, state, and exit code.") | |||
| 5661 | "/pkg/visitors" | 5661 | "/pkg/visitors" |
| 5662 | "/cmds/cbfs" | 5662 | "/cmds/cbfs" |
| 5663 | "/cmds/create-ffs" | 5663 | "/cmds/create-ffs" |
| 5664 | ;; TODO: Not packed yet in Guix, long jorney: | 5664 | ;; TODO: Not packed yet in Guix, long journey: |
| 5665 | ;; - github.com/u-root/u-root | 5665 | ;; - github.com/u-root/u-root |
| 5666 | ;; | 5666 | ;; |
| 5667 | ;; "/cmds/fmap" | 5667 | ;; "/cmds/fmap" |
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index dec7758fff4..52c295d98ad 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm | |||
| @@ -1044,7 +1044,7 @@ floating-point (no compression, LZW- or ZIP-compressed), FITS 8-bit, 16-bit, | |||
| 1044 | libusb | 1044 | libusb |
| 1045 | zlib)) | 1045 | zlib)) |
| 1046 | (home-page "https://www.indilib.org") | 1046 | (home-page "https://www.indilib.org") |
| 1047 | (synopsis "Library for astronimical intrumentation control") | 1047 | (synopsis "Library for astronimical instrumentation control") |
| 1048 | (description | 1048 | (description |
| 1049 | "INDI (Instrument-Neutral Device Interface) is a distributed XML-based | 1049 | "INDI (Instrument-Neutral Device Interface) is a distributed XML-based |
| 1050 | control protocol designed to operate astronomical instrumentation. INDI is | 1050 | control protocol designed to operate astronomical instrumentation. INDI is |
| @@ -1579,7 +1579,7 @@ model-fitting photometry or morphological analyses.") | |||
| 1579 | (home-page "http://www.github.com/andycasey/ads/") | 1579 | (home-page "http://www.github.com/andycasey/ads/") |
| 1580 | (synopsis "Python client to NASA's Astrophysics Data System") | 1580 | (synopsis "Python client to NASA's Astrophysics Data System") |
| 1581 | (description | 1581 | (description |
| 1582 | "This package provdies a Python Module to Interact with NASA's | 1582 | "This package provides a Python Module to Interact with NASA's |
| 1583 | @acronym{Astrophysics Data System,ADS}.") | 1583 | @acronym{Astrophysics Data System,ADS}.") |
| 1584 | (license license:expat))) | 1584 | (license license:expat))) |
| 1585 | 1585 | ||
| @@ -1999,7 +1999,7 @@ mining in astronomy.") | |||
| 1999 | (description | 1999 | (description |
| 2000 | "The BayesicFitting package is a python version of the the fitter classes | 2000 | "The BayesicFitting package is a python version of the the fitter classes |
| 2001 | in @acronym{HCSS, Herschel Common Science System}. HCSS was the all | 2001 | in @acronym{HCSS, Herschel Common Science System}. HCSS was the all |
| 2002 | encompassing software system for the operations and analysis of the ESA satelite | 2002 | encompassing software system for the operations and analysis of the ESA satellite |
| 2003 | Herschel.") | 2003 | Herschel.") |
| 2004 | (license license:gpl3+))) | 2004 | (license license:gpl3+))) |
| 2005 | 2005 | ||
| @@ -2994,7 +2994,7 @@ observationally-derived galaxy merger catalogs.") | |||
| 2994 | (arguments | 2994 | (arguments |
| 2995 | (list | 2995 | (list |
| 2996 | #:test-flags | 2996 | #:test-flags |
| 2997 | ;; Tests requiring additinal FITS files. | 2997 | ;; Tests requiring additional FITS files. |
| 2998 | ;; <https://portal.nersc.gov/project/cmb> | 2998 | ;; <https://portal.nersc.gov/project/cmb> |
| 2999 | ;; <https://portal.nersc.gov/project/sobs> | 2999 | ;; <https://portal.nersc.gov/project/sobs> |
| 3000 | #~(list "-k" (string-join | 3000 | #~(list "-k" (string-join |
| @@ -3192,7 +3192,7 @@ natively in Siril.") | |||
| 3192 | (arguments | 3192 | (arguments |
| 3193 | (list | 3193 | (list |
| 3194 | #:test-flags | 3194 | #:test-flags |
| 3195 | ;; Tests requiring additinal FITS files. | 3195 | ;; Tests requiring additional FITS files. |
| 3196 | ;; <https://healpy.github.io/healpy-data> | 3196 | ;; <https://healpy.github.io/healpy-data> |
| 3197 | ;; <https://portal.nersc.gov/project/cmb/pysm-data> | 3197 | ;; <https://portal.nersc.gov/project/cmb/pysm-data> |
| 3198 | #~(list "-k" (string-join | 3198 | #~(list "-k" (string-join |
| @@ -4842,7 +4842,7 @@ Virtual observatory (VO) using Python.") | |||
| 4842 | (home-page "https://github.com/punch-mission/regularizepsf") | 4842 | (home-page "https://github.com/punch-mission/regularizepsf") |
| 4843 | (synopsis "Point spread function modeling and regularization") | 4843 | (synopsis "Point spread function modeling and regularization") |
| 4844 | (description | 4844 | (description |
| 4845 | "This package inplements functionality of @acronym{Point Spread Function, | 4845 | "This package implements functionality of @acronym{Point Spread Function, |
| 4846 | PSF} describing how the optical system spreads light from sources.") | 4846 | PSF} describing how the optical system spreads light from sources.") |
| 4847 | (license license:expat))) | 4847 | (license license:expat))) |
| 4848 | 4848 | ||
| @@ -4968,7 +4968,7 @@ orbits described in TLE files.") | |||
| 4968 | (list | 4968 | (list |
| 4969 | #:test-flags | 4969 | #:test-flags |
| 4970 | #~(list "--numprocesses" (number->string (parallel-job-count)) | 4970 | #~(list "--numprocesses" (number->string (parallel-job-count)) |
| 4971 | ;; Requries SpicePy not packed in Guix yet. | 4971 | ;; Requires SpicePy not packed in Guix yet. |
| 4972 | "--ignore=sunpy/coordinates/tests/test_spice.py") | 4972 | "--ignore=sunpy/coordinates/tests/test_spice.py") |
| 4973 | #:phases | 4973 | #:phases |
| 4974 | #~(modify-phases %standard-phases | 4974 | #~(modify-phases %standard-phases |
| @@ -5026,7 +5026,7 @@ python_files = test_*.py")))))))) | |||
| 5026 | python-reproject | 5026 | python-reproject |
| 5027 | python-scikit-image | 5027 | python-scikit-image |
| 5028 | python-scipy | 5028 | python-scipy |
| 5029 | ;; python-spiceypy ; Not packed yet in Guix, long jorney. | 5029 | ;; python-spiceypy ; Not packed yet in Guix, long journey. |
| 5030 | python-tqdm | 5030 | python-tqdm |
| 5031 | python-zeep)) | 5031 | python-zeep)) |
| 5032 | (home-page "https://sunpy.org") | 5032 | (home-page "https://sunpy.org") |
| @@ -5283,7 +5283,7 @@ spherical polygons that represent arbitrary regions of the sky.") | |||
| 5283 | (build-system pyproject-build-system) | 5283 | (build-system pyproject-build-system) |
| 5284 | (arguments | 5284 | (arguments |
| 5285 | (list | 5285 | (list |
| 5286 | ;; Tests require additinal data, see | 5286 | ;; Tests require additional data, see |
| 5287 | ;; <https://spisea.readthedocs.io/en/latest/getting_started.html>. | 5287 | ;; <https://spisea.readthedocs.io/en/latest/getting_started.html>. |
| 5288 | #:tests? #f | 5288 | #:tests? #f |
| 5289 | #:phases | 5289 | #:phases |
| @@ -6801,7 +6801,7 @@ between image and reference catalogs. Currently only aligning images with | |||
| 6801 | python-setuptools-scm)) | 6801 | python-setuptools-scm)) |
| 6802 | (inputs | 6802 | (inputs |
| 6803 | (list | 6803 | (list |
| 6804 | ;; Requried for installation, see | 6804 | ;; Required for installation, see |
| 6805 | ;; <https://webbpsf.readthedocs.io/en/stable/installation.html>, no | 6805 | ;; <https://webbpsf.readthedocs.io/en/stable/installation.html>, no |
| 6806 | ;; licence provided. "To run WebbPSF, you must download these files and | 6806 | ;; licence provided. "To run WebbPSF, you must download these files and |
| 6807 | ;; tell WebbPSF where to find them using the WEBBPSF_PATH environment | 6807 | ;; tell WebbPSF where to find them using the WEBBPSF_PATH environment |
| @@ -7401,7 +7401,7 @@ astronomical fields. SkyMaker is part of the | |||
| 7401 | (build-system gnu-build-system) | 7401 | (build-system gnu-build-system) |
| 7402 | (arguments | 7402 | (arguments |
| 7403 | ;; FIXME: Tests failed | 7403 | ;; FIXME: Tests failed |
| 7404 | ;; Issue submited upstream https://github.com/danieljprice/splash/issues/67 | 7404 | ;; Issue submitted upstream https://github.com/danieljprice/splash/issues/67 |
| 7405 | ;; | 7405 | ;; |
| 7406 | ;; make: *** No rule to make target 'test_interpolate3D.o', needed by 'test1'. Stop. | 7406 | ;; make: *** No rule to make target 'test_interpolate3D.o', needed by 'test1'. Stop. |
| 7407 | ;; | 7407 | ;; |
| @@ -7517,7 +7517,7 @@ deconvolution). Such post-processing is not performed by Stackistry.") | |||
| 7517 | #:test-target "test" | 7517 | #:test-target "test" |
| 7518 | #:configure-flags | 7518 | #:configure-flags |
| 7519 | #~(list "-DENABLE_GPS=1" | 7519 | #~(list "-DENABLE_GPS=1" |
| 7520 | ;; TODO: Enable when all of the dependencies are availalbe for Qt6. | 7520 | ;; TODO: Enable when all of the dependencies are available for Qt6. |
| 7521 | "-DENABLE_QT6=0" | 7521 | "-DENABLE_QT6=0" |
| 7522 | "-DENABLE_TESTING=0" | 7522 | "-DENABLE_TESTING=0" |
| 7523 | (string-append "-DCMAKE_CXX_FLAGS=-isystem " | 7523 | (string-append "-DCMAKE_CXX_FLAGS=-isystem " |
| @@ -7699,7 +7699,7 @@ any arbitrary astrometric projection defined in the WCS standard.") | |||
| 7699 | (build-system cmake-build-system) | 7699 | (build-system cmake-build-system) |
| 7700 | (arguments | 7700 | (arguments |
| 7701 | (list #:tests? #f ; no tests | 7701 | (list #:tests? #f ; no tests |
| 7702 | #:build-type "Release" ; to improve performace | 7702 | #:build-type "Release" ; to improve performance |
| 7703 | #:configure-flags #~(list "-DCMAKE_CXX_STANDARD=14"))) | 7703 | #:configure-flags #~(list "-DCMAKE_CXX_STANDARD=14"))) |
| 7704 | (inputs (list gfortran hdf5 perl sqlite zlib)) | 7704 | (inputs (list gfortran hdf5 perl sqlite zlib)) |
| 7705 | (home-page "https://projets.lam.fr/projects/unsio/wiki") | 7705 | (home-page "https://projets.lam.fr/projects/unsio/wiki") |
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 392e0c5ac27..dcce8a69ea4 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm | |||
| @@ -15627,7 +15627,7 @@ genes or proteins in these datasets.") | |||
| 15627 | "This package provides a dplyr-like interface for interacting with the | 15627 | "This package provides a dplyr-like interface for interacting with the |
| 15628 | common Bioconductor classes @code{Ranges} and @code{GenomicRanges}. By | 15628 | common Bioconductor classes @code{Ranges} and @code{GenomicRanges}. By |
| 15629 | providing a grammatical and consistent way of manipulating these classes their | 15629 | providing a grammatical and consistent way of manipulating these classes their |
| 15630 | accessiblity for new Bioconductor users is hopefully increased.") | 15630 | accessibility for new Bioconductor users is hopefully increased.") |
| 15631 | (license license:artistic2.0))) | 15631 | (license license:artistic2.0))) |
| 15632 | 15632 | ||
| 15633 | (define-public r-inspect | 15633 | (define-public r-inspect |
| @@ -26838,7 +26838,7 @@ interest on transformed methylation proportions.") | |||
| 26838 | (home-page "https://bioconductor.org/packages/omicade4") | 26838 | (home-page "https://bioconductor.org/packages/omicade4") |
| 26839 | (synopsis "Multiple co-inertia analysis of omics datasets") | 26839 | (synopsis "Multiple co-inertia analysis of omics datasets") |
| 26840 | (description | 26840 | (description |
| 26841 | "This package performes multiple co-inertia analysis of omics datasets.") | 26841 | "This package performs multiple co-inertia analysis of omics datasets.") |
| 26842 | (license license:gpl2))) | 26842 | (license license:gpl2))) |
| 26843 | 26843 | ||
| 26844 | (define-public r-omnipathr | 26844 | (define-public r-omnipathr |
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index cc92d55ac48..ec703bc25ec 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm | |||
| @@ -1665,7 +1665,7 @@ similar.") | |||
| 1665 | (description | 1665 | (description |
| 1666 | "This package implements methods for batch correction and integration of | 1666 | "This package implements methods for batch correction and integration of |
| 1667 | scRNA-seq datasets, based on the Seurat anchor-based integration framework. | 1667 | scRNA-seq datasets, based on the Seurat anchor-based integration framework. |
| 1668 | In particular, STACAS is optimized for the integration of heterogenous | 1668 | In particular, STACAS is optimized for the integration of heterogeneous |
| 1669 | datasets with only limited overlap between cell sub-types (e.g. TIL sets of | 1669 | datasets with only limited overlap between cell sub-types (e.g. TIL sets of |
| 1670 | CD8 from tumor with CD8/CD4 T cells from lymphnode), for which the default | 1670 | CD8 from tumor with CD8/CD4 T cells from lymphnode), for which the default |
| 1671 | Seurat alignment methods would tend to over-correct biological differences. | 1671 | Seurat alignment methods would tend to over-correct biological differences. |
| @@ -1694,7 +1694,7 @@ information about cell-types in order to assist the integration process.") | |||
| 1694 | (home-page "https://github.com/vertesy/Stringendo") | 1694 | (home-page "https://github.com/vertesy/Stringendo") |
| 1695 | (synopsis "Stringendo is a string parsing library") | 1695 | (synopsis "Stringendo is a string parsing library") |
| 1696 | (description | 1696 | (description |
| 1697 | "This package provides string parsing functionalites for generating | 1697 | "This package provides string parsing functionalities for generating |
| 1698 | plotnames, filenames and paths.") | 1698 | plotnames, filenames and paths.") |
| 1699 | (license license:gpl3)))) | 1699 | (license license:gpl3)))) |
| 1700 | 1700 | ||
| @@ -3752,7 +3752,7 @@ operations: | |||
| 3752 | @item index the reference genome before alignment; | 3752 | @item index the reference genome before alignment; |
| 3753 | @item align reads to the corresponding reference genome; | 3753 | @item align reads to the corresponding reference genome; |
| 3754 | @item pre-process by convert pair-end reads into fragments, checking the | 3754 | @item pre-process by convert pair-end reads into fragments, checking the |
| 3755 | mapping quality score, alingment and filtration; | 3755 | mapping quality score, alignment and filtration; |
| 3756 | @item create the cell-by-bin matrix. | 3756 | @item create the cell-by-bin matrix. |
| 3757 | @end itemize") | 3757 | @end itemize") |
| 3758 | (license license:asl2.0))) | 3758 | (license license:asl2.0))) |
| @@ -3859,7 +3859,7 @@ use-case, we encourage users to compose functions to achieve their goals.") | |||
| 3859 | '(list "-k" | 3859 | '(list "-k" |
| 3860 | (string-append ;; Unclear why this one fails. There is no backtrace. | 3860 | (string-append ;; Unclear why this one fails. There is no backtrace. |
| 3861 | "not test_to_dataframe_is_sparse" | 3861 | "not test_to_dataframe_is_sparse" |
| 3862 | ;; These need skbio, but that neeeds biom-format. | 3862 | ;; These need skbio, but that needs biom-format. |
| 3863 | " and not test_align_tree_intersect_obs" | 3863 | " and not test_align_tree_intersect_obs" |
| 3864 | " and not test_align_tree_intersect_tips" | 3864 | " and not test_align_tree_intersect_tips" |
| 3865 | " and not test_align_tree_sample")) | 3865 | " and not test_align_tree_sample")) |
| @@ -13272,7 +13272,7 @@ variation, gene modules and their regulatory models and more.") | |||
| 13272 | r-snow)) | 13272 | r-snow)) |
| 13273 | (native-inputs (list r-knitr)) | 13273 | (native-inputs (list r-knitr)) |
| 13274 | (home-page "https://github.com/TillBirkner/metadeconfoundR") | 13274 | (home-page "https://github.com/TillBirkner/metadeconfoundR") |
| 13275 | (synopsis "Check multiple covariates for potenial confounding effects") | 13275 | (synopsis "Check multiple covariates for potential confounding effects") |
| 13276 | (description | 13276 | (description |
| 13277 | "This package detects naive associations between omics features and | 13277 | "This package detects naive associations between omics features and |
| 13278 | metadata in cross-sectional data-sets using non-parametric tests. In a second | 13278 | metadata in cross-sectional data-sets using non-parametric tests. In a second |
| @@ -18688,7 +18688,7 @@ interaction inference from scRNA-seq data.") | |||
| 18688 | (synopsis "Annotation, analysis and visualization of circRNA data") | 18688 | (synopsis "Annotation, analysis and visualization of circRNA data") |
| 18689 | (description "Circus is an R package for annotation, analysis and | 18689 | (description "Circus is an R package for annotation, analysis and |
| 18690 | visualization of circRNA data. Users can annotate their circRNA candidates | 18690 | visualization of circRNA data. Users can annotate their circRNA candidates |
| 18691 | with host genes, gene featrues they are spliced from, and discriminate between | 18691 | with host genes, gene features they are spliced from, and discriminate between |
| 18692 | known and yet unknown splice junctions. Circular-to-linear ratios of circRNAs | 18692 | known and yet unknown splice junctions. Circular-to-linear ratios of circRNAs |
| 18693 | can be calculated, and a number of descriptive plots easily generated.") | 18693 | can be calculated, and a number of descriptive plots easily generated.") |
| 18694 | (license license:artistic2.0))) | 18694 | (license license:artistic2.0))) |
| @@ -20540,7 +20540,7 @@ phase + query phase).") | |||
| 20540 | (define-public filtlong | 20540 | (define-public filtlong |
| 20541 | ;; The recommended way to install is to clone the git repository | 20541 | ;; The recommended way to install is to clone the git repository |
| 20542 | ;; https://github.com/rrwick/Filtlong#installation | 20542 | ;; https://github.com/rrwick/Filtlong#installation |
| 20543 | ;; and the lastest release is more than nine months old | 20543 | ;; and the latest release is more than nine months old |
| 20544 | (let ((commit "d1bb46dfe8bc7efe6257b5ce222c04bfe8aedaab") | 20544 | (let ((commit "d1bb46dfe8bc7efe6257b5ce222c04bfe8aedaab") |
| 20545 | (revision "1")) | 20545 | (revision "1")) |
| 20546 | (package | 20546 | (package |
diff --git a/gnu/packages/calcurse.scm b/gnu/packages/calcurse.scm index 5da701492b3..3819615c5fb 100644 --- a/gnu/packages/calcurse.scm +++ b/gnu/packages/calcurse.scm | |||
| @@ -44,7 +44,7 @@ | |||
| 44 | (arguments | 44 | (arguments |
| 45 | ;; The ical tests all want to create a ".calcurse" directory, and may | 45 | ;; The ical tests all want to create a ".calcurse" directory, and may |
| 46 | ;; fail with "cannot create directory '.calcurse': File exists" if run | 46 | ;; fail with "cannot create directory '.calcurse': File exists" if run |
| 47 | ;; concurently. | 47 | ;; concurrently. |
| 48 | `(#:configure-flags | 48 | `(#:configure-flags |
| 49 | (list (string-append "--docdir=" (assoc-ref %outputs "out") | 49 | (list (string-append "--docdir=" (assoc-ref %outputs "out") |
| 50 | "/share/doc/" ,name "-" ,version)) | 50 | "/share/doc/" ,name "-" ,version)) |
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index df858af4bde..3d83cd6ccb0 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm | |||
| @@ -922,7 +922,7 @@ has been designed to be fast, light and unintrusive.") | |||
| 922 | 922 | ||
| 923 | (define-public ftest | 923 | (define-public ftest |
| 924 | ;; There aren't any releases and it looks more like a small side project. | 924 | ;; There aren't any releases and it looks more like a small side project. |
| 925 | ;; It is included for completness to run tests for package utfcpp. | 925 | ;; It is included for completeness to run tests for package utfcpp. |
| 926 | (let ((commit "c4ad4af0946b73ce1a40cbc72205d15d196c7e06") | 926 | (let ((commit "c4ad4af0946b73ce1a40cbc72205d15d196c7e06") |
| 927 | (revision "0")) | 927 | (revision "0")) |
| 928 | (package | 928 | (package |
diff --git a/gnu/packages/chez.scm b/gnu/packages/chez.scm index 9e022ef2d48..e31e4393041 100644 --- a/gnu/packages/chez.scm +++ b/gnu/packages/chez.scm | |||
| @@ -482,7 +482,7 @@ will name the threaded machine type unless THREADS? is provided as #f." | |||
| 482 | "release_notes.pdf") | 482 | "release_notes.pdf") |
| 483 | (match (find-files | 483 | (match (find-files |
| 484 | "csug" | 484 | "csug" |
| 485 | "csug.*\\.pdf$" ;; embeded version number | 485 | "csug.*\\.pdf$" ;; embedded version number |
| 486 | #:fail-on-error? #t) | 486 | #:fail-on-error? #t) |
| 487 | ((pth) | 487 | ((pth) |
| 488 | (symlink pth | 488 | (symlink pth |
| @@ -732,7 +732,7 @@ package @code{cs-bootstrap} to bootstrap its initial version of Chez Scheme.") | |||
| 732 | ghostscript | 732 | ghostscript |
| 733 | netpbm)) | 733 | netpbm)) |
| 734 | ;; Debian uses a versionless path for STEXLIB, | 734 | ;; Debian uses a versionless path for STEXLIB, |
| 735 | ;; which is much more convienient. | 735 | ;; which is much more convenient. |
| 736 | (arguments | 736 | (arguments |
| 737 | (list | 737 | (list |
| 738 | #:install-plan #~`(("inputs" "lib/stex/") | 738 | #:install-plan #~`(("inputs" "lib/stex/") |
diff --git a/gnu/packages/chromium.scm b/gnu/packages/chromium.scm index cf1703cecb7..5da5f10da6f 100644 --- a/gnu/packages/chromium.scm +++ b/gnu/packages/chromium.scm | |||
| @@ -580,7 +580,7 @@ | |||
| 580 | "media_use_libvpx=true" | 580 | "media_use_libvpx=true" |
| 581 | "media_use_openh264=true" | 581 | "media_use_openh264=true" |
| 582 | 582 | ||
| 583 | ;; Do not artifically restrict formats supported by system ffmpeg. | 583 | ;; Do not artificially restrict formats supported by system ffmpeg. |
| 584 | "proprietary_codecs=true" | 584 | "proprietary_codecs=true" |
| 585 | "ffmpeg_branding=\"Chrome\"" | 585 | "ffmpeg_branding=\"Chrome\"" |
| 586 | 586 | ||
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index cec3a1cd710..a3898e54eff 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm | |||
| @@ -5539,7 +5539,7 @@ fitters for consensus relations.") | |||
| 5539 | (home-page "https://cran.r-project.org/package=repmis") | 5539 | (home-page "https://cran.r-project.org/package=repmis") |
| 5540 | (synopsis "Miscellaneous tools for reproducible research") | 5540 | (synopsis "Miscellaneous tools for reproducible research") |
| 5541 | (description | 5541 | (description |
| 5542 | "This package is a colletion of tools to load R packages and | 5542 | "This package is a collection of tools to load R packages and |
| 5543 | automatically generate BibTeX files citing them as well as load and cache | 5543 | automatically generate BibTeX files citing them as well as load and cache |
| 5544 | plain-text and Excel formatted data stored on GitHub, and from other | 5544 | plain-text and Excel formatted data stored on GitHub, and from other |
| 5545 | sources.") | 5545 | sources.") |
| @@ -8855,9 +8855,9 @@ you to rapidly iterate while developing a package.") | |||
| 8855 | (propagated-inputs (list r-base64enc)) | 8855 | (propagated-inputs (list r-base64enc)) |
| 8856 | (native-inputs (list pkg-config)) | 8856 | (native-inputs (list pkg-config)) |
| 8857 | (home-page "http://www.rforge.net/PKI") | 8857 | (home-page "http://www.rforge.net/PKI") |
| 8858 | (synopsis "Public Key Infrastucture for R based on the X.509 standard") | 8858 | (synopsis "Public Key Infrastructure for R based on the X.509 standard") |
| 8859 | (description | 8859 | (description |
| 8860 | "This is a package containing Public Key Infrastucture functions such as | 8860 | "This is a package containing Public Key Infrastructure functions such as |
| 8861 | verifying certificates, RSA encryption and signing, which can be used to build | 8861 | verifying certificates, RSA encryption and signing, which can be used to build |
| 8862 | PKI infrastructure and perform cryptographic tasks.") | 8862 | PKI infrastructure and perform cryptographic tasks.") |
| 8863 | ;; Either of these licenses. | 8863 | ;; Either of these licenses. |
| @@ -13846,7 +13846,7 @@ Institute of Standards and Technology}, USA.") | |||
| 13846 | (synopsis "Statistical framework to define subgroups in complex datasets") | 13846 | (synopsis "Statistical framework to define subgroups in complex datasets") |
| 13847 | (description | 13847 | (description |
| 13848 | "The package includes the necessary functions to construct a | 13848 | "The package includes the necessary functions to construct a |
| 13849 | self-organizing map of data, to evaluate the statistical signifcance of the | 13849 | self-organizing map of data, to evaluate the statistical significance of the |
| 13850 | observed data patterns, and to visualize the results.") | 13850 | observed data patterns, and to visualize the results.") |
| 13851 | (license license:gpl2+))) | 13851 | (license license:gpl2+))) |
| 13852 | 13852 | ||
| @@ -22622,7 +22622,7 @@ the base function @code{with()}.") | |||
| 22622 | (propagated-inputs (list r-abind r-bitops r-rnifti)) | 22622 | (propagated-inputs (list r-abind r-bitops r-rnifti)) |
| 22623 | (native-inputs (list r-testthat)) | 22623 | (native-inputs (list r-testthat)) |
| 22624 | (home-page "https://rigorousanalytics.blogspot.com") | 22624 | (home-page "https://rigorousanalytics.blogspot.com") |
| 22625 | (synopsis "Vizualization of medical imaging data") | 22625 | (synopsis "Visualization of medical imaging data") |
| 22626 | (description | 22626 | (description |
| 22627 | "This package provides functions for the input/output and visualization | 22627 | "This package provides functions for the input/output and visualization |
| 22628 | of medical imaging data that follow either the ANALYZE, NIfTI or AFNI formats. | 22628 | of medical imaging data that follow either the ANALYZE, NIfTI or AFNI formats. |
| @@ -35672,7 +35672,7 @@ package.") | |||
| 35672 | (native-inputs | 35672 | (native-inputs |
| 35673 | (list r-knitr r-testthat)) | 35673 | (list r-knitr r-testthat)) |
| 35674 | (home-page "https://github.com/renkun-ken/formattable") | 35674 | (home-page "https://github.com/renkun-ken/formattable") |
| 35675 | (synopsis "Print vectors and data frames with text fromatting") | 35675 | (synopsis "Print vectors and data frames with text formatting") |
| 35676 | (description | 35676 | (description |
| 35677 | "This R package provides functions to create formattable vectors and data | 35677 | "This R package provides functions to create formattable vectors and data |
| 35678 | frames. @emph{Formattable} vectors are printed with text formatting, and | 35678 | frames. @emph{Formattable} vectors are printed with text formatting, and |
| @@ -37571,7 +37571,7 @@ client).") | |||
| 37571 | (home-page "https://cran.r-project.org/web/packages/asd") | 37571 | (home-page "https://cran.r-project.org/web/packages/asd") |
| 37572 | (synopsis "Simulations for Adaptive Seamless Designs") | 37572 | (synopsis "Simulations for Adaptive Seamless Designs") |
| 37573 | (description | 37573 | (description |
| 37574 | "This package provdes means to run simulations for adaptive seamless | 37574 | "This package provides means to run simulations for adaptive seamless |
| 37575 | designs with and without early outcomes for treatment selection and | 37575 | designs with and without early outcomes for treatment selection and |
| 37576 | subpopulation type designs.") | 37576 | subpopulation type designs.") |
| 37577 | (license license:gpl3))) | 37577 | (license license:gpl3))) |
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 40653af13ac..454c3e3eeb4 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm | |||
| @@ -18373,7 +18373,7 @@ crate into higher level tools.") | |||
| 18373 | (base32 | 18373 | (base32 |
| 18374 | "1pkf4ay1210g9wqyqhkgvlcsv4i6kgdcmgnh19mrymylznv7pcal")))) | 18374 | "1pkf4ay1210g9wqyqhkgvlcsv4i6kgdcmgnh19mrymylznv7pcal")))) |
| 18375 | (build-system cargo-build-system) | 18375 | (build-system cargo-build-system) |
| 18376 | (arguments '(#:skip-build? #t)) ; Not meant to be built independantly. | 18376 | (arguments '(#:skip-build? #t)) ; Not meant to be built independently. |
| 18377 | (home-page "https://github.com/dtolnay/cxx") | 18377 | (home-page "https://github.com/dtolnay/cxx") |
| 18378 | (synopsis "Test suite of the cxx crate") | 18378 | (synopsis "Test suite of the cxx crate") |
| 18379 | (description "This package provides the test suite of the cxx crate.") | 18379 | (description "This package provides the test suite of the cxx crate.") |
| @@ -94573,7 +94573,7 @@ language.") | |||
| 94573 | (base32 "0gz3nmiaidscb5c85rh3qxi8i584gz5xm3amlxqminl8jq27k40g")))) | 94573 | (base32 "0gz3nmiaidscb5c85rh3qxi8i584gz5xm3amlxqminl8jq27k40g")))) |
| 94574 | (build-system cargo-build-system) | 94574 | (build-system cargo-build-system) |
| 94575 | (arguments | 94575 | (arguments |
| 94576 | `(#:skip-build? #t ;; dependency cypthon not yet availalbe | 94576 | `(#:skip-build? #t ;; dependency cypthon not yet available |
| 94577 | #:cargo-development-inputs | 94577 | #:cargo-development-inputs |
| 94578 | (;; ("rust-cpython" ,rust-cpython-0.2) TODO | 94578 | (;; ("rust-cpython" ,rust-cpython-0.2) TODO |
| 94579 | ("rust-quickcheck" ,rust-quickcheck-0.7) | 94579 | ("rust-quickcheck" ,rust-quickcheck-0.7) |
diff --git a/gnu/packages/crates-web.scm b/gnu/packages/crates-web.scm index 61f4fb89793..7ed571a384c 100644 --- a/gnu/packages/crates-web.scm +++ b/gnu/packages/crates-web.scm | |||
| @@ -340,7 +340,7 @@ | |||
| 340 | (base32 "0k1kg4gkp2jhi5fgdfd0cq2qfbyy3gfgwqjrvzq1hzrjmynwwnmr")))) | 340 | (base32 "0k1kg4gkp2jhi5fgdfd0cq2qfbyy3gfgwqjrvzq1hzrjmynwwnmr")))) |
| 341 | (build-system cargo-build-system) | 341 | (build-system cargo-build-system) |
| 342 | (arguments | 342 | (arguments |
| 343 | `(#:skip-build? #true ;bootsrapping issues with rust-actix | 343 | `(#:skip-build? #true ;bootstrapping issues with rust-actix |
| 344 | #:cargo-inputs | 344 | #:cargo-inputs |
| 345 | (("rust-proc-macro2" ,rust-proc-macro2-1) | 345 | (("rust-proc-macro2" ,rust-proc-macro2-1) |
| 346 | ("rust-quote" ,rust-quote-1) | 346 | ("rust-quote" ,rust-quote-1) |
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 15c55b4e4fe..bbbe4a1ba0a 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm | |||
| @@ -704,7 +704,7 @@ byte-oriented sources of random data.") | |||
| 704 | (synopsis "Cryptographically secure replacement for rand()") | 704 | (synopsis "Cryptographically secure replacement for rand()") |
| 705 | (description "This module is intended to provide a | 705 | (description "This module is intended to provide a |
| 706 | cryptographically-secure replacement for Perl's built-in @code{rand} function. | 706 | cryptographically-secure replacement for Perl's built-in @code{rand} function. |
| 707 | \"Crytographically secure\", in this case, means: | 707 | \"Cryptographically secure\", in this case, means: |
| 708 | 708 | ||
| 709 | @enumerate | 709 | @enumerate |
| 710 | @item No matter how many numbers you see generated by the random number | 710 | @item No matter how many numbers you see generated by the random number |
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 6876b9b38a3..87a0421fb1e 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm | |||
| @@ -2418,7 +2418,7 @@ automatically set update and create date and time based fields in a table.") | |||
| 2418 | `(#:phases | 2418 | `(#:phases |
| 2419 | (modify-phases %standard-phases | 2419 | (modify-phases %standard-phases |
| 2420 | (add-before 'configure 'skip-library-detection | 2420 | (add-before 'configure 'skip-library-detection |
| 2421 | ;; Avoid depencies on perl-devel-checklib, openssl, and zlib. They | 2421 | ;; Avoid dependencies on perl-devel-checklib, openssl, and zlib. They |
| 2422 | ;; are really only needed for the test suite; their absence does not | 2422 | ;; are really only needed for the test suite; their absence does not |
| 2423 | ;; affect the build or the end result. | 2423 | ;; affect the build or the end result. |
| 2424 | (lambda _ | 2424 | (lambda _ |
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 7f481f785ab..1d630fe13e1 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm | |||
| @@ -1411,7 +1411,7 @@ provides features like a Web-browsable API and authentication policies.") | |||
| 1411 | provides. A fresh look at blocks. With @code{django-sekizai} you can define | 1411 | provides. A fresh look at blocks. With @code{django-sekizai} you can define |
| 1412 | placeholders where your blocks get rendered and at different places in your | 1412 | placeholders where your blocks get rendered and at different places in your |
| 1413 | templates append to those blocks. This is especially useful for css and | 1413 | templates append to those blocks. This is especially useful for css and |
| 1414 | javascript. Your subtemplates can now define css and javscript files to be | 1414 | javascript. Your subtemplates can now define css and javascript files to be |
| 1415 | included, and the css will be nicely put at the top and the javascript to the | 1415 | included, and the css will be nicely put at the top and the javascript to the |
| 1416 | bottom, just like you should. Also sekizai will ignore any duplicate content in | 1416 | bottom, just like you should. Also sekizai will ignore any duplicate content in |
| 1417 | a single block.") | 1417 | a single block.") |
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5e48fab7e89..d154c852547 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm | |||
| @@ -1127,7 +1127,7 @@ a neat percentage.") | |||
| 1127 | (propagated-inputs (list emacs-async emacs-projectile)) | 1127 | (propagated-inputs (list emacs-async emacs-projectile)) |
| 1128 | (home-page "https://github.com/zachmassia/platformio-mode") | 1128 | (home-page "https://github.com/zachmassia/platformio-mode") |
| 1129 | (synopsis "Minor mode for building and uploading PlatformIO projects") | 1129 | (synopsis "Minor mode for building and uploading PlatformIO projects") |
| 1130 | (description "This package provices an Emacs minor mode for building and | 1130 | (description "This package provides an Emacs minor mode for building and |
| 1131 | uploading PlatformIO projects.") | 1131 | uploading PlatformIO projects.") |
| 1132 | (license license:gpl3+))) | 1132 | (license license:gpl3+))) |
| 1133 | 1133 | ||
| @@ -13844,7 +13844,7 @@ facilitate Perl programming. CPerl Mode has provided an excellent environment | |||
| 13844 | for coding; Emacs::PDE provides other common tools such as creating files | 13844 | for coding; Emacs::PDE provides other common tools such as creating files |
| 13845 | using templates, smart compiling, @command{perldoc}, @command{perltidy}, | 13845 | using templates, smart compiling, @command{perldoc}, @command{perltidy}, |
| 13846 | debugger, tags tree view and so on. PDE also provides an easy configuration | 13846 | debugger, tags tree view and so on. PDE also provides an easy configuration |
| 13847 | for Perl programing, and a tutorial for novices to start using Emacs.") | 13847 | for Perl programming, and a tutorial for novices to start using Emacs.") |
| 13848 | (license license:perl-license))) | 13848 | (license license:perl-license))) |
| 13849 | 13849 | ||
| 13850 | (define-public emacs-perspective | 13850 | (define-public emacs-perspective |
| @@ -20943,7 +20943,7 @@ function to be used by other frontend programs.") | |||
| 20943 | (license license:gpl2+))) | 20943 | (license license:gpl2+))) |
| 20944 | 20944 | ||
| 20945 | (define-public emacs-pyim-basedict | 20945 | (define-public emacs-pyim-basedict |
| 20946 | ;; XXX: The commit below points to the lastest (un-tagged) release. | 20946 | ;; XXX: The commit below points to the latest (un-tagged) release. |
| 20947 | (let ((commit "d61af27686f7a39e6c138b7261a686e7ea7a0ef7")) | 20947 | (let ((commit "d61af27686f7a39e6c138b7261a686e7ea7a0ef7")) |
| 20948 | (package | 20948 | (package |
| 20949 | (name "emacs-pyim-basedict") | 20949 | (name "emacs-pyim-basedict") |
| @@ -24752,7 +24752,7 @@ and can be consulted and modified.") | |||
| 24752 | (home-page "https://github.com/purescript-emacs/psc-ide-emacs") | 24752 | (home-page "https://github.com/purescript-emacs/psc-ide-emacs") |
| 24753 | (synopsis "Emacs integration for PureScript's psc-ide tool") | 24753 | (synopsis "Emacs integration for PureScript's psc-ide tool") |
| 24754 | (description | 24754 | (description |
| 24755 | "This package provices Emacs integration for @code{psc-ide}, an IDE | 24755 | "This package provides Emacs integration for @code{psc-ide}, an IDE |
| 24756 | protocol for PureScript programming language. It features: | 24756 | protocol for PureScript programming language. It features: |
| 24757 | 24757 | ||
| 24758 | @itemize | 24758 | @itemize |
| @@ -29854,7 +29854,7 @@ later.") | |||
| 29854 | (license license:gpl3+))) | 29854 | (license license:gpl3+))) |
| 29855 | 29855 | ||
| 29856 | (define-public emacs-srfi | 29856 | (define-public emacs-srfi |
| 29857 | ;; SRFI data gets updated quite frequently; lastest tag is from | 29857 | ;; SRFI data gets updated quite frequently; latest tag is from |
| 29858 | ;; 2020; commit from 2021-08-12. | 29858 | ;; 2020; commit from 2021-08-12. |
| 29859 | (let ((commit "e31bf04a3be3aad1286b7fe919c2e4810aae751e") | 29859 | (let ((commit "e31bf04a3be3aad1286b7fe919c2e4810aae751e") |
| 29860 | (revision "0")) | 29860 | (revision "0")) |
diff --git a/gnu/packages/erlang-xyz.scm b/gnu/packages/erlang-xyz.scm index 624aa289ce2..aa7c69baba8 100644 --- a/gnu/packages/erlang-xyz.scm +++ b/gnu/packages/erlang-xyz.scm | |||
| @@ -422,7 +422,7 @@ for Erlang/Elixir.") | |||
| 422 | (build-system rebar-build-system) | 422 | (build-system rebar-build-system) |
| 423 | (inputs (list erlang-fast-tls erlang-p1-utils)) | 423 | (inputs (list erlang-fast-tls erlang-p1-utils)) |
| 424 | (synopsis "STUN and TURN library for Erlang/Elixir") | 424 | (synopsis "STUN and TURN library for Erlang/Elixir") |
| 425 | (description "This package provodes STUN and TURN library for | 425 | (description "This package provides STUN and TURN library for |
| 426 | Erlang/Elixir.") | 426 | Erlang/Elixir.") |
| 427 | (home-page "https://hex.pm/packages/stun") | 427 | (home-page "https://hex.pm/packages/stun") |
| 428 | (license license:asl2.0))) | 428 | (license license:asl2.0))) |
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm index 056e129c897..8ca46e8bdc7 100644 --- a/gnu/packages/erlang.scm +++ b/gnu/packages/erlang.scm | |||
| @@ -284,7 +284,7 @@ Mozilla's canonical set.") | |||
| 284 | (build-system rebar-build-system) | 284 | (build-system rebar-build-system) |
| 285 | (home-page "https://github.com/project-fifo/cf") | 285 | (home-page "https://github.com/project-fifo/cf") |
| 286 | (synopsis "Terminal colour helper for Erlang io and io_lib") | 286 | (synopsis "Terminal colour helper for Erlang io and io_lib") |
| 287 | (description "This package provides a helper library for termial colour | 287 | (description "This package provides a helper library for terminal colour |
| 288 | printing extending the io:format syntax to add colours.") | 288 | printing extending the io:format syntax to add colours.") |
| 289 | (license license:expat))) | 289 | (license license:expat))) |
| 290 | 290 | ||
diff --git a/gnu/packages/esolangs.scm b/gnu/packages/esolangs.scm index 796f8d3f23b..f4841080046 100644 --- a/gnu/packages/esolangs.scm +++ b/gnu/packages/esolangs.scm | |||
| @@ -96,7 +96,7 @@ LOLCODE language specification. Unit tests come packaged with the lci source co | |||
| 96 | @item portable: lci follows the widely ported ANSI C specification allowing it | 96 | @item portable: lci follows the widely ported ANSI C specification allowing it |
| 97 | to compile on a broad range of systems. | 97 | to compile on a broad range of systems. |
| 98 | @item fast: Much effort has gone into producing simple and efficient code | 98 | @item fast: Much effort has gone into producing simple and efficient code |
| 99 | whenever possible to the extent that the above points are not compromized. | 99 | whenever possible to the extent that the above points are not compromised. |
| 100 | @end enumerate") | 100 | @end enumerate") |
| 101 | (home-page "http://lolcode.org/") | 101 | (home-page "http://lolcode.org/") |
| 102 | (license license:gpl3+)))) | 102 | (license license:gpl3+)))) |
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index b3ef763d35e..bb1234ebd9b 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm | |||
| @@ -1546,7 +1546,7 @@ information.") | |||
| 1546 | ;; a decade's worth of new data files) rely on the Debian packaging tools, | 1546 | ;; a decade's worth of new data files) rely on the Debian packaging tools, |
| 1547 | ;; so building normally even from the patched sources would miss them. | 1547 | ;; so building normally even from the patched sources would miss them. |
| 1548 | ;; Here, we do all of the patching in the origin, so that the result of | 1548 | ;; Here, we do all of the patching in the origin, so that the result of |
| 1549 | ;; `guix build --source` is actually useable for building without Guix. | 1549 | ;; `guix build --source` is actually usable for building without Guix. |
| 1550 | (let ((revision "1") | 1550 | (let ((revision "1") |
| 1551 | (commit "3054ee2f90cc7c03ed6b131177d09701c7a4fced")) | 1551 | (commit "3054ee2f90cc7c03ed6b131177d09701c7a4fced")) |
| 1552 | (package | 1552 | (package |
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 9d73af0a6d2..7830aae14ae 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm | |||
| @@ -712,7 +712,7 @@ expansion of Franklin Gothic, a classic font. It covers 105 Latin Languages.") | |||
| 712 | (apply invoke "make" "install-otb" (string-append "prefix=" otb) | 712 | (apply invoke "make" "install-otb" (string-append "prefix=" otb) |
| 713 | make-flags)))) | 713 | make-flags)))) |
| 714 | (add-after 'install 'install-documentation | 714 | (add-after 'install 'install-documentation |
| 715 | ;; There's no way to decypher the cryptic file names without this. | 715 | ;; There's no way to decipher the cryptic file names without this. |
| 716 | (lambda* (#:key outputs #:allow-other-keys) | 716 | (lambda* (#:key outputs #:allow-other-keys) |
| 717 | (for-each (match-lambda | 717 | (for-each (match-lambda |
| 718 | ((name . directory) | 718 | ((name . directory) |
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index eae43356162..30aaf0767aa 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm | |||
| @@ -2670,7 +2670,7 @@ role, and your gender.") | |||
| 2670 | (home-page "https://pipewalker.sourceforge.net/") | 2670 | (home-page "https://pipewalker.sourceforge.net/") |
| 2671 | (synopsis "Logical tile puzzle") | 2671 | (synopsis "Logical tile puzzle") |
| 2672 | (description | 2672 | (description |
| 2673 | "PipeWalker is a simple puzzle game with many diffent themes: connect all | 2673 | "PipeWalker is a simple puzzle game with many different themes: connect all |
| 2674 | computers to one network server, bring water from a source to the taps, etc. | 2674 | computers to one network server, bring water from a source to the taps, etc. |
| 2675 | The underlying mechanism is always the same: you must turn each tile in the | 2675 | The underlying mechanism is always the same: you must turn each tile in the |
| 2676 | grid in the right direction to combine all components into a single circuit. | 2676 | grid in the right direction to combine all components into a single circuit. |
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 6f6218cb278..54f96fef2b9 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm | |||
| @@ -1730,7 +1730,7 @@ extension.") | |||
| 1730 | (home-page "https://github.com/SciTools/cf-units") | 1730 | (home-page "https://github.com/SciTools/cf-units") |
| 1731 | (synopsis "Units of measure as required by the CF metadata conventions") | 1731 | (synopsis "Units of measure as required by the CF metadata conventions") |
| 1732 | (description | 1732 | (description |
| 1733 | "This package provids units of measure as required by the Climate and | 1733 | "This package provides units of measure as required by the Climate and |
| 1734 | Forecast (CF) metadata conventions. Provision of a wrapper class to support | 1734 | Forecast (CF) metadata conventions. Provision of a wrapper class to support |
| 1735 | Unidata/UCAR UDUNITS-2 library, and the cftime calendar functionality.") | 1735 | Unidata/UCAR UDUNITS-2 library, and the cftime calendar functionality.") |
| 1736 | (license license:lgpl3+))) | 1736 | (license license:lgpl3+))) |
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index 3b402f7bfb6..08f32f12852 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm | |||
| @@ -1194,7 +1194,7 @@ files, to verify signatures, and to manage the private and public keys.") | |||
| 1194 | prefix (,(string-append perllib ":" (getenv "PERL5LIB"))))))))))) | 1194 | prefix (,(string-append perllib ":" (getenv "PERL5LIB"))))))))))) |
| 1195 | (home-page "https://salsa.debian.org/intrigeri/parcimonie") | 1195 | (home-page "https://salsa.debian.org/intrigeri/parcimonie") |
| 1196 | (synopsis "Incrementally refreshes a GnuPG keyring") | 1196 | (synopsis "Incrementally refreshes a GnuPG keyring") |
| 1197 | (description "Parcimonie incrementaly refreshes a GnuPG keyring in a way | 1197 | (description "Parcimonie incrementally refreshes a GnuPG keyring in a way |
| 1198 | that makes it hard to correlate the keyring content to an individual, and | 1198 | that makes it hard to correlate the keyring content to an individual, and |
| 1199 | makes it hard to locate an individual based on an identifying subset of her | 1199 | makes it hard to locate an individual based on an identifying subset of her |
| 1200 | keyring content. Parcimonie is a daemon that fetches one key at a time using | 1200 | keyring content. Parcimonie is a daemon that fetches one key at a time using |
diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index 49c8e8a7fd7..fd628a031ed 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm | |||
| @@ -994,7 +994,7 @@ variable defined below. It requires guile-json to be installed." | |||
| 994 | "build"))))) | 994 | "build"))))) |
| 995 | (add-after 'patch-cargo-checksums 'remove-cargo-frozen-flag | 995 | (add-after 'patch-cargo-checksums 'remove-cargo-frozen-flag |
| 996 | (lambda _ | 996 | (lambda _ |
| 997 | ;; Remove --frozen flag from cargo invokation, otherwise it'll | 997 | ;; Remove --frozen flag from cargo invocation, otherwise it'll |
| 998 | ;; complain that it's not able to change Cargo.lock. | 998 | ;; complain that it's not able to change Cargo.lock. |
| 999 | ;; https://bugzilla.mozilla.org/show_bug.cgi?id=1726373 | 999 | ;; https://bugzilla.mozilla.org/show_bug.cgi?id=1726373 |
| 1000 | (substitute* "build/RunCbindgen.py" | 1000 | (substitute* "build/RunCbindgen.py" |
| @@ -1365,7 +1365,7 @@ ca495991b7852b855")) | |||
| 1365 | "toolkit/library/rust"))))) | 1365 | "toolkit/library/rust"))))) |
| 1366 | (add-after 'patch-cargo-checksums 'remove-cargo-frozen-flag | 1366 | (add-after 'patch-cargo-checksums 'remove-cargo-frozen-flag |
| 1367 | (lambda _ | 1367 | (lambda _ |
| 1368 | ;; Remove --frozen flag from cargo invokation, otherwise it'll | 1368 | ;; Remove --frozen flag from cargo invocation, otherwise it'll |
| 1369 | ;; complain that it's not able to change Cargo.lock. | 1369 | ;; complain that it's not able to change Cargo.lock. |
| 1370 | ;; https://bugzilla.mozilla.org/show_bug.cgi?id=1726373 | 1370 | ;; https://bugzilla.mozilla.org/show_bug.cgi?id=1726373 |
| 1371 | (substitute* "build/RunCbindgen.py" | 1371 | (substitute* "build/RunCbindgen.py" |
diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm index b7e6d14e379..8fe2d08a9df 100644 --- a/gnu/packages/golang-build.scm +++ b/gnu/packages/golang-build.scm | |||
| @@ -496,7 +496,7 @@ toolchain. The parts needed in the main Go repository are copied in.") | |||
| 496 | (modules '((guix build utils))) | 496 | (modules '((guix build utils))) |
| 497 | (snippet | 497 | (snippet |
| 498 | #~(begin | 498 | #~(begin |
| 499 | ;; Submodules with their own go.mod files and packaged separatly: | 499 | ;; Submodules with their own go.mod files and packaged separately: |
| 500 | ;; | 500 | ;; |
| 501 | ;; - olang.org/x/crypto/x509roots/fallback | 501 | ;; - olang.org/x/crypto/x509roots/fallback |
| 502 | (for-each delete-file-recursively (list "x509roots/fallback")))))) | 502 | (for-each delete-file-recursively (list "x509roots/fallback")))))) |
| @@ -507,7 +507,7 @@ toolchain. The parts needed in the main Go repository are copied in.") | |||
| 507 | #:import-path "golang.org/x/crypto" | 507 | #:import-path "golang.org/x/crypto" |
| 508 | #:phases | 508 | #:phases |
| 509 | #~(modify-phases %standard-phases | 509 | #~(modify-phases %standard-phases |
| 510 | ;; Network access requried: go mod download -json | 510 | ;; Network access required: go mod download -json |
| 511 | ;; github.com/google/wycheproof@v0.0.0-20191219022705-2196000605e4. | 511 | ;; github.com/google/wycheproof@v0.0.0-20191219022705-2196000605e4. |
| 512 | ;; | 512 | ;; |
| 513 | ;; internal/wycheproof/wycheproof_test.go | 513 | ;; internal/wycheproof/wycheproof_test.go |
| @@ -831,7 +831,7 @@ provided by the language and @code{sync} and @code{sync/atomic} packages. | |||
| 831 | The package provides several Golang submodules: | 831 | The package provides several Golang submodules: |
| 832 | @itemize | 832 | @itemize |
| 833 | @item @code{errgroup} - synchronization, error propagation, and Context | 833 | @item @code{errgroup} - synchronization, error propagation, and Context |
| 834 | cancelation for groups of goroutines working on subtasks of a common task | 834 | cancellation for groups of goroutines working on subtasks of a common task |
| 835 | @item @code{semaphore} - a weighted semaphore implementation | 835 | @item @code{semaphore} - a weighted semaphore implementation |
| 836 | @item @code{singleflight} - a duplicate function call suppression mechanism | 836 | @item @code{singleflight} - a duplicate function call suppression mechanism |
| 837 | @item @code{syncmap} - a concurrent map implementation | 837 | @item @code{syncmap} - a concurrent map implementation |
| @@ -919,7 +919,7 @@ low-level interaction with the operating system.") | |||
| 919 | (modules '((guix build utils))) | 919 | (modules '((guix build utils))) |
| 920 | (snippet | 920 | (snippet |
| 921 | #~(begin | 921 | #~(begin |
| 922 | ;; Submodules with their own go.mod files and packaged separatly: | 922 | ;; Submodules with their own go.mod files and packaged separately: |
| 923 | ;; | 923 | ;; |
| 924 | ;; - golang.org/x/telemetry/config | 924 | ;; - golang.org/x/telemetry/config |
| 925 | ;; - golang.org/x/telemetry/godev | 925 | ;; - golang.org/x/telemetry/godev |
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 964f62a0966..b8fa1d45274 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm | |||
| @@ -2365,7 +2365,7 @@ built-in @code{testing} package, but can be used in other contexts too.") | |||
| 2365 | (modules '((guix build utils))) | 2365 | (modules '((guix build utils))) |
| 2366 | (snippet | 2366 | (snippet |
| 2367 | #~(begin | 2367 | #~(begin |
| 2368 | ;; Submodules with their own go.mod files and packaged separatly: | 2368 | ;; Submodules with their own go.mod files and packaged separately: |
| 2369 | ;; | 2369 | ;; |
| 2370 | ;; - gotest.tools/x/generics | 2370 | ;; - gotest.tools/x/generics |
| 2371 | (for-each delete-file-recursively | 2371 | (for-each delete-file-recursively |
diff --git a/gnu/packages/golang-compression.scm b/gnu/packages/golang-compression.scm index 46464621e4c..27e30921123 100644 --- a/gnu/packages/golang-compression.scm +++ b/gnu/packages/golang-compression.scm | |||
| @@ -105,7 +105,7 @@ the @code{c2go} tool at | |||
| 105 | (synopsis "Collection of compression libraries for Golang") | 105 | (synopsis "Collection of compression libraries for Golang") |
| 106 | (description | 106 | (description |
| 107 | "Package compress is a collection of compression libraries implementing | 107 | "Package compress is a collection of compression libraries implementing |
| 108 | Golang moduels: | 108 | Golang modules: |
| 109 | @table @code | 109 | @table @code |
| 110 | @item brotli | 110 | @item brotli |
| 111 | Implements the Brotli format, described in RFC 7932. | 111 | Implements the Brotli format, described in RFC 7932. |
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index 0a72050250a..b1a114dd807 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm | |||
| @@ -1708,7 +1708,7 @@ algorithm.") | |||
| 1708 | (list | 1708 | (list |
| 1709 | #:import-path "github.com/pion/randutil")) | 1709 | #:import-path "github.com/pion/randutil")) |
| 1710 | (home-page "https://github.com/pion/randutil") | 1710 | (home-page "https://github.com/pion/randutil") |
| 1711 | (synopsis "Helper library for cryptographic and mathmatical randoms") | 1711 | (synopsis "Helper library for cryptographic and mathematical randoms") |
| 1712 | (description | 1712 | (description |
| 1713 | "This package provides primitives for generating random values.") | 1713 | "This package provides primitives for generating random values.") |
| 1714 | (license license:expat))) | 1714 | (license license:expat))) |
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 7b12c4e846f..fd8bcee5797 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm | |||
| @@ -2583,7 +2583,7 @@ decompose request handling into many smaller layers.") | |||
| 2583 | (modules '((guix build utils))) | 2583 | (modules '((guix build utils))) |
| 2584 | (snippet | 2584 | (snippet |
| 2585 | #~(begin | 2585 | #~(begin |
| 2586 | ;; Submodules with their own go.mod files and packaged separatly: | 2586 | ;; Submodules with their own go.mod files and packaged separately: |
| 2587 | ;; | 2587 | ;; |
| 2588 | ;; - github.com/go-jose/go-jose/jose-util | 2588 | ;; - github.com/go-jose/go-jose/jose-util |
| 2589 | (delete-file-recursively "jose-util"))))) | 2589 | (delete-file-recursively "jose-util"))))) |
| @@ -6183,7 +6183,7 @@ in Golang.") | |||
| 6183 | #:tests? #f | 6183 | #:tests? #f |
| 6184 | #:import-path "https://github.com/pion/ice" | 6184 | #:import-path "https://github.com/pion/ice" |
| 6185 | #:phases | 6185 | #:phases |
| 6186 | ;; Failed to build and only requried for inheritance: | 6186 | ;; Failed to build and only required for inheritance: |
| 6187 | ;; | 6187 | ;; |
| 6188 | ;; cannot use a.net (type *vnet.Net) as type transport.Net in field value: | 6188 | ;; cannot use a.net (type *vnet.Net) as type transport.Net in field value: |
| 6189 | ;; *vnet.Net does not implement transport.Net (wrong type for CreateDialer method) | 6189 | ;; *vnet.Net does not implement transport.Net (wrong type for CreateDialer method) |
| @@ -6956,7 +6956,7 @@ Caching.") | |||
| 6956 | (home-page "https://github.com/pquerna/ffjson") | 6956 | (home-page "https://github.com/pquerna/ffjson") |
| 6957 | (synopsis "Faster JSON for Golang") | 6957 | (synopsis "Faster JSON for Golang") |
| 6958 | (description | 6958 | (description |
| 6959 | "This package implements functinality to generate static | 6959 | "This package implements functionality to generate static |
| 6960 | @code{MarshalJSON} and @code{UnmarshalJSON} functions for structures in Go. | 6960 | @code{MarshalJSON} and @code{UnmarshalJSON} functions for structures in Go. |
| 6961 | The generated functions reduce the reliance upon runtime reflection to do | 6961 | The generated functions reduce the reliance upon runtime reflection to do |
| 6962 | serialization and are generally 2 to 3 times faster. In cases where | 6962 | serialization and are generally 2 to 3 times faster. In cases where |
| @@ -9314,7 +9314,7 @@ tool.")))) | |||
| 9314 | ((#:import-path _ "github.com/multiformats/go-multiaddr-dns") | 9314 | ((#:import-path _ "github.com/multiformats/go-multiaddr-dns") |
| 9315 | "github.com/multiformats/go-multiaddr-dns/madns"))) | 9315 | "github.com/multiformats/go-multiaddr-dns/madns"))) |
| 9316 | (description | 9316 | (description |
| 9317 | "This package provides a CLI binary executible built from | 9317 | "This package provides a CLI binary executable built from |
| 9318 | go-github-com-multiformats-go-multiaddr-dns."))) | 9318 | go-github-com-multiformats-go-multiaddr-dns."))) |
| 9319 | 9319 | ||
| 9320 | (define-public go-minify | 9320 | (define-public go-minify |
| @@ -9327,7 +9327,7 @@ go-github-com-multiformats-go-multiaddr-dns."))) | |||
| 9327 | #:tests? #f ; tested in the library | 9327 | #:tests? #f ; tested in the library |
| 9328 | #:import-path "github.com/tdewolff/minify/cmd/minify" | 9328 | #:import-path "github.com/tdewolff/minify/cmd/minify" |
| 9329 | #:unpack-path "github.com/tdewolff/minify")) | 9329 | #:unpack-path "github.com/tdewolff/minify")) |
| 9330 | (description "This package provides a CLI binary executible built from | 9330 | (description "This package provides a CLI binary executable built from |
| 9331 | go-github-com-tdewolff-minify-v2 source."))) | 9331 | go-github-com-tdewolff-minify-v2 source."))) |
| 9332 | 9332 | ||
| 9333 | (define-public gron | 9333 | (define-public gron |
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index a66144a9f40..2539311e1b9 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm | |||
| @@ -855,7 +855,7 @@ syntax highlighted HTML, ANSI-coloured text, etc.") | |||
| 855 | (with-directory-excursion (string-append "src/" import-path) | 855 | (with-directory-excursion (string-append "src/" import-path) |
| 856 | (for-each delete-file-recursively | 856 | (for-each delete-file-recursively |
| 857 | (list "lexers/testdata/python2/test_complex_file1.actual" | 857 | (list "lexers/testdata/python2/test_complex_file1.actual" |
| 858 | ;; Executible is packed as separate package. | 858 | ;; Executable is packed as separate package. |
| 859 | "cmd"))))) | 859 | "cmd"))))) |
| 860 | ;; XXX: Replace when go-build-system supports nested path. | 860 | ;; XXX: Replace when go-build-system supports nested path. |
| 861 | (replace 'check | 861 | (replace 'check |
| @@ -3277,7 +3277,7 @@ run time.") | |||
| 3277 | (home-page "https://containerd.io/") | 3277 | (home-page "https://containerd.io/") |
| 3278 | (synopsis "Cgroups for Golang") | 3278 | (synopsis "Cgroups for Golang") |
| 3279 | (description | 3279 | (description |
| 3280 | "This package implements a functinoality for creating, managing, | 3280 | "This package implements a functionality for creating, managing, |
| 3281 | inspecting, and destroying cgroups. The resources format for settings on the | 3281 | inspecting, and destroying cgroups. The resources format for settings on the |
| 3282 | cgroup uses the OCI runtime-spec found | 3282 | cgroup uses the OCI runtime-spec found |
| 3283 | @url{https://github.com/opencontainers/runtime-spec,here}.") | 3283 | @url{https://github.com/opencontainers/runtime-spec,here}.") |
| @@ -3710,7 +3710,7 @@ of building man pages.") | |||
| 3710 | (home-page "https://github.com/creasty/defaults") | 3710 | (home-page "https://github.com/creasty/defaults") |
| 3711 | (synopsis "Initialize structs with default values") | 3711 | (synopsis "Initialize structs with default values") |
| 3712 | (description | 3712 | (description |
| 3713 | "This package implements functionlity to initialize structs with default | 3713 | "This package implements functionality to initialize structs with default |
| 3714 | values. It supports almost all kind of types: @code{int/8/16/32/64}, | 3714 | values. It supports almost all kind of types: @code{int/8/16/32/64}, |
| 3715 | @code{uint/8/16/32/64}, @code{float32/64}, @code{uintptr}, @code{bool}, | 3715 | @code{uint/8/16/32/64}, @code{float32/64}, @code{uintptr}, @code{bool}, |
| 3716 | @code{string}, @code{map}, @code{slice}, @code{struct}, | 3716 | @code{string}, @code{map}, @code{slice}, @code{struct}, |
| @@ -4253,7 +4253,7 @@ supports concurrent serializable transactions.") | |||
| 4253 | (build-system go-build-system) | 4253 | (build-system go-build-system) |
| 4254 | (arguments | 4254 | (arguments |
| 4255 | (list | 4255 | (list |
| 4256 | ;; XXX: Tests fail on 32 bit architecure: | 4256 | ;; XXX: Tests fail on 32 bit architecture: |
| 4257 | ;; | 4257 | ;; |
| 4258 | ;; cannot use 12 << 30 (untyped int constant 12884901888) as int value | 4258 | ;; cannot use 12 << 30 (untyped int constant 12884901888) as int value |
| 4259 | ;; in assignment (overflows). | 4259 | ;; in assignment (overflows). |
| @@ -4352,7 +4352,7 @@ on throughput and hit ratio performance.") | |||
| 4352 | #:tests? #f | 4352 | #:tests? #f |
| 4353 | #:import-path "github.com/dgryski/trifles")) | 4353 | #:import-path "github.com/dgryski/trifles")) |
| 4354 | (home-page "https://github.com/dgryski/trifles") | 4354 | (home-page "https://github.com/dgryski/trifles") |
| 4355 | (synopsis "Collection of Golang utitity libraries and commands") | 4355 | (synopsis "Collection of Golang utility libraries and commands") |
| 4356 | (description | 4356 | (description |
| 4357 | "This package provides a collection veriaty of utility libraries: | 4357 | "This package provides a collection veriaty of utility libraries: |
| 4358 | 4358 | ||
| @@ -4563,7 +4563,7 @@ mtime,ctime and btime for files.") | |||
| 4563 | implementing POSIX/GNU-style --flags. It is compatible with the | 4563 | implementing POSIX/GNU-style --flags. It is compatible with the |
| 4564 | @url{http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html, | 4564 | @url{http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html, |
| 4565 | GNU extensions to the POSIX recommendations for command-line options}. This | 4565 | GNU extensions to the POSIX recommendations for command-line options}. This |
| 4566 | is an activly maintained fork of @url{https://github.com/ogier/pflag}.") | 4566 | is an actively maintained fork of @url{https://github.com/ogier/pflag}.") |
| 4567 | (license license:bsd-3))) | 4567 | (license license:bsd-3))) |
| 4568 | 4568 | ||
| 4569 | (define-public go-github-com-docker-distribution | 4569 | (define-public go-github-com-docker-distribution |
| @@ -4747,7 +4747,7 @@ sizes. It converts boring ugly numbers to human-friendly strings and back.") | |||
| 4747 | (home-page "https://github.com/edsrzf/mmap-go") | 4747 | (home-page "https://github.com/edsrzf/mmap-go") |
| 4748 | (synopsis "Memory mapped fiels (mmap) in Golang") | 4748 | (synopsis "Memory mapped fiels (mmap) in Golang") |
| 4749 | (description | 4749 | (description |
| 4750 | "This package implements functinoality of mapping files into memory. It | 4750 | "This package implements functionality of mapping files into memory. It |
| 4751 | tries to provide a simple interface, but doesn't go out of its way to abstract | 4751 | tries to provide a simple interface, but doesn't go out of its way to abstract |
| 4752 | away every little platform detail. | 4752 | away every little platform detail. |
| 4753 | 4753 | ||
| @@ -5282,7 +5282,7 @@ defined output to the standard output.") | |||
| 5282 | #:import-path "github.com/fatih/structs")) | 5282 | #:import-path "github.com/fatih/structs")) |
| 5283 | (home-page "https://github.com/fatih/structs") | 5283 | (home-page "https://github.com/fatih/structs") |
| 5284 | (synopsis "Utilities for Go structs") | 5284 | (synopsis "Utilities for Go structs") |
| 5285 | (description "This package provides various utilitiy functions to work | 5285 | (description "This package provides various utility functions to work |
| 5286 | with Go structs.") | 5286 | with Go structs.") |
| 5287 | (license license:expat))) | 5287 | (license license:expat))) |
| 5288 | 5288 | ||
| @@ -7749,7 +7749,7 @@ implementation in https://github.com/jackc/pgx.") | |||
| 7749 | "|")) | 7749 | "|")) |
| 7750 | #:phases | 7750 | #:phases |
| 7751 | #~(modify-phases %standard-phases | 7751 | #~(modify-phases %standard-phases |
| 7752 | ;; All tests in this file rquire PostgreSQL service running. | 7752 | ;; All tests in this file require PostgreSQL service running. |
| 7753 | (add-before 'check 'remove-failing-test-files | 7753 | (add-before 'check 'remove-failing-test-files |
| 7754 | (lambda* (#:key import-path #:allow-other-keys) | 7754 | (lambda* (#:key import-path #:allow-other-keys) |
| 7755 | (with-directory-excursion (string-append "src/" import-path) | 7755 | (with-directory-excursion (string-append "src/" import-path) |
| @@ -8696,7 +8696,7 @@ database/sql with sqlx.") | |||
| 8696 | "@command{lumin} is a simple command-line program which highlights matches | 8696 | "@command{lumin} is a simple command-line program which highlights matches |
| 8697 | to a specified pattern (string or regex) in the specified files. This is like | 8697 | to a specified pattern (string or regex) in the specified files. This is like |
| 8698 | @code{grep} with @code{--color}, except that @code{lumin} shows all lines, not | 8698 | @code{grep} with @code{--color}, except that @code{lumin} shows all lines, not |
| 8699 | just matching lines. This package proviedes a CLI tool and @code{colors} | 8699 | just matching lines. This package provides a CLI tool and @code{colors} |
| 8700 | library.") | 8700 | library.") |
| 8701 | (license license:bsd-2))) | 8701 | (license license:bsd-2))) |
| 8702 | 8702 | ||
| @@ -9401,7 +9401,7 @@ processing.") | |||
| 9401 | (home-page "https://github.com/knz/go-libedit") | 9401 | (home-page "https://github.com/knz/go-libedit") |
| 9402 | (synopsis "Go wrapper around @code{libedit}") | 9402 | (synopsis "Go wrapper around @code{libedit}") |
| 9403 | (description | 9403 | (description |
| 9404 | "This packae provides a wrapper around @code{libedit} for Golang.") | 9404 | "This package provides a wrapper around @code{libedit} for Golang.") |
| 9405 | (license license:asl2.0))) | 9405 | (license license:asl2.0))) |
| 9406 | 9406 | ||
| 9407 | (define-public go-github-com-knz-lipgloss-convert | 9407 | (define-public go-github-com-knz-lipgloss-convert |
| @@ -11963,7 +11963,7 @@ goroutines as a unit whole.") | |||
| 11963 | (synopsis "Universally Unique Lexicographically Sortable Identifier in Golang") | 11963 | (synopsis "Universally Unique Lexicographically Sortable Identifier in Golang") |
| 11964 | (description | 11964 | (description |
| 11965 | "This package implements @acronym{ULID, Universally Unique | 11965 | "This package implements @acronym{ULID, Universally Unique |
| 11966 | Lexicographically Sortable Identifier} as specificed in | 11966 | Lexicographically Sortable Identifier} as specified in |
| 11967 | @url{https://github.com/ulid/spec}. | 11967 | @url{https://github.com/ulid/spec}. |
| 11968 | 11968 | ||
| 11969 | Features of ULID: | 11969 | Features of ULID: |
| @@ -12311,7 +12311,7 @@ included in this package.") | |||
| 12311 | (home-page "https://github.com/otiai10/copy") | 12311 | (home-page "https://github.com/otiai10/copy") |
| 12312 | (synopsis "Go copy directory recursively") | 12312 | (synopsis "Go copy directory recursively") |
| 12313 | (description | 12313 | (description |
| 12314 | "This package implements recursive copy functinoality for directory.") | 12314 | "This package implements recursive copy functionality for directory.") |
| 12315 | (license license:expat))) | 12315 | (license license:expat))) |
| 12316 | 12316 | ||
| 12317 | (define-public go-github-com-outcaste-io-ristretto | 12317 | (define-public go-github-com-outcaste-io-ristretto |
| @@ -15658,7 +15658,7 @@ edges and self-loops are not permitted. | |||
| 15658 | (home-page "https://github.com/xaionaro-go/bytesextra") | 15658 | (home-page "https://github.com/xaionaro-go/bytesextra") |
| 15659 | (synopsis "Golang library for bytes I/O") | 15659 | (synopsis "Golang library for bytes I/O") |
| 15660 | (description | 15660 | (description |
| 15661 | "This packae provides @code{io.ReadWriteSeeker} implementation for | 15661 | "This package provides @code{io.ReadWriteSeeker} implementation for |
| 15662 | @code{[]byte}.") | 15662 | @code{[]byte}.") |
| 15663 | (license license:cc0))) | 15663 | (license license:cc0))) |
| 15664 | 15664 | ||
| @@ -16227,7 +16227,7 @@ character devices, pipes, FIFOs, and any file-descriptor that is poll-able, | |||
| 16227 | can be used with select(2), epoll(7), etc. | 16227 | can be used with select(2), epoll(7), etc. |
| 16228 | 16228 | ||
| 16229 | In addition, package poller allows the user to set timeouts (deadlines) for | 16229 | In addition, package poller allows the user to set timeouts (deadlines) for |
| 16230 | read and write operations, and also allows for safe cancelation of blocked | 16230 | read and write operations, and also allows for safe cancellation of blocked |
| 16231 | read and write operations; a Close from another go-routine safely cancels | 16231 | read and write operations; a Close from another go-routine safely cancels |
| 16232 | ongoing (blocked) read and write operations. | 16232 | ongoing (blocked) read and write operations. |
| 16233 | 16233 | ||
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index f9e2b5366f7..252aabe1845 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm | |||
| @@ -3927,7 +3927,7 @@ denote the invalidity of certain code paths in a Scheme program.") | |||
| 3927 | (description | 3927 | (description |
| 3928 | "This package provides an implementation of SRFI 146 for Guile. | 3928 | "This package provides an implementation of SRFI 146 for Guile. |
| 3929 | SRFI 146 defines datastructures that implement mappings (finite sets | 3929 | SRFI 146 defines datastructures that implement mappings (finite sets |
| 3930 | of associations consiting of a key and a value). Two types of | 3930 | of associations consisting of a key and a value). Two types of |
| 3931 | mappings are defined: One using a comparator to define an order on the | 3931 | mappings are defined: One using a comparator to define an order on the |
| 3932 | keys and another using a hash function on the keys. The | 3932 | keys and another using a hash function on the keys. The |
| 3933 | datastructures and procedures are by default purely-functional. This | 3933 | datastructures and procedures are by default purely-functional. This |
| @@ -4079,7 +4079,7 @@ or errors (Left).") | |||
| 4079 | (license license:expat)))) | 4079 | (license license:expat)))) |
| 4080 | 4080 | ||
| 4081 | (define-public guile-srfi-197 | 4081 | (define-public guile-srfi-197 |
| 4082 | ;; There is minor fix to the documention after the final tag, so use | 4082 | ;; There is minor fix to the documentation after the final tag, so use |
| 4083 | ;; the newest commit instead. | 4083 | ;; the newest commit instead. |
| 4084 | (let ((commit "d31b8be86460bf837cccf2737a1b9b9c01788573") | 4084 | (let ((commit "d31b8be86460bf837cccf2737a1b9b9c01788573") |
| 4085 | (revision "0")) | 4085 | (revision "0")) |
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 7af596ecf40..0a739640ab1 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm | |||
| @@ -3239,7 +3239,7 @@ and cyclic tridiagonal linear systems.") | |||
| 3239 | `(#:cabal-revision ("4" | 3239 | `(#:cabal-revision ("4" |
| 3240 | "026mkj9fz64rdrap25mp8cwdrzwj90h35qg9kkn078fac93aaq10"))) | 3240 | "026mkj9fz64rdrap25mp8cwdrzwj90h35qg9kkn078fac93aaq10"))) |
| 3241 | (home-page "https://diagrams.github.io/") | 3241 | (home-page "https://diagrams.github.io/") |
| 3242 | (synopsis "Scalable Vector Grpahics backend for the diagrams framework") | 3242 | (synopsis "Scalable Vector Graphics backend for the diagrams framework") |
| 3243 | (description "This package provides a modular backend for rendering | 3243 | (description "This package provides a modular backend for rendering |
| 3244 | diagrams created with the diagrams embedded domain-specific | 3244 | diagrams created with the diagrams embedded domain-specific |
| 3245 | language (EDSL) to Scalable Vector Graphics (SVG) files.") | 3245 | language (EDSL) to Scalable Vector Graphics (SVG) files.") |
| @@ -5394,7 +5394,7 @@ Accounting.") | |||
| 5394 | openblas)) | 5394 | openblas)) |
| 5395 | (home-page "https://github.com/albertoruiz/hmatrix") | 5395 | (home-page "https://github.com/albertoruiz/hmatrix") |
| 5396 | (synopsis "Haskell numeric linear algebra library") | 5396 | (synopsis "Haskell numeric linear algebra library") |
| 5397 | (description "The HMatrix package provices a Haskell library for | 5397 | (description "The HMatrix package provides a Haskell library for |
| 5398 | dealing with linear systems, matrix decompositions, and other | 5398 | dealing with linear systems, matrix decompositions, and other |
| 5399 | numerical computations based on BLAS and LAPACK.") | 5399 | numerical computations based on BLAS and LAPACK.") |
| 5400 | (license license:bsd-3))) | 5400 | (license license:bsd-3))) |
| @@ -6106,7 +6106,7 @@ example code on the home page for a quick introduction.") | |||
| 6106 | (home-page "https://github.com/ekmett/intervals") | 6106 | (home-page "https://github.com/ekmett/intervals") |
| 6107 | (synopsis "Interval arithmetic") | 6107 | (synopsis "Interval arithmetic") |
| 6108 | (description "This library provides @code{Numeric.Interval.Interval}, | 6108 | (description "This library provides @code{Numeric.Interval.Interval}, |
| 6109 | which represets a closed, convex set of floating point values.") | 6109 | which represents a closed, convex set of floating point values.") |
| 6110 | (license license:bsd-3))) | 6110 | (license license:bsd-3))) |
| 6111 | 6111 | ||
| 6112 | (define-public ghc-invariant | 6112 | (define-public ghc-invariant |
| @@ -8304,7 +8304,7 @@ found at runtime, a userError is thrown.") | |||
| 8304 | "This library makes it easy to implement monads with tricky control | 8304 | "This library makes it easy to implement monads with tricky control |
| 8305 | flow. This is useful for: writing web applications in a sequential style, | 8305 | flow. This is useful for: writing web applications in a sequential style, |
| 8306 | programming games with a uniform interface for human and AI players and easy | 8306 | programming games with a uniform interface for human and AI players and easy |
| 8307 | replay capababilities, implementing fast parser monads, designing monadic | 8307 | replay capabilities, implementing fast parser monads, designing monadic |
| 8308 | DSLs, etc.") | 8308 | DSLs, etc.") |
| 8309 | (license license:bsd-3))) | 8309 | (license license:bsd-3))) |
| 8310 | 8310 | ||
| @@ -16525,7 +16525,7 @@ JSON to and from the Lua stack.") | |||
| 16525 | (description | 16525 | (description |
| 16526 | "This package provides a parser for plain-text representations of tables. This | 16526 | "This package provides a parser for plain-text representations of tables. This |
| 16527 | package supports table headers, cells spanning multiple columns or rows, as well | 16527 | package supports table headers, cells spanning multiple columns or rows, as well |
| 16528 | as a way to specfiy column alignments.") | 16528 | as a way to specify column alignments.") |
| 16529 | (license license:expat))) | 16529 | (license license:expat))) |
| 16530 | 16530 | ||
| 16531 | (define-public ghc-lpeg | 16531 | (define-public ghc-lpeg |
| @@ -17159,7 +17159,7 @@ such as ala'.") | |||
| 17159 | (synopsis | 17159 | (synopsis |
| 17160 | "Data validation based on Applicative and Selective functors") | 17160 | "Data validation based on Applicative and Selective functors") |
| 17161 | (description | 17161 | (description |
| 17162 | "Lighweight pure data validation based on Applicative and Selective functors.") | 17162 | "Lightweight pure data validation based on Applicative and Selective functors.") |
| 17163 | (license license:mpl2.0))) | 17163 | (license license:mpl2.0))) |
| 17164 | 17164 | ||
| 17165 | (define-public ghc-tdigest | 17165 | (define-public ghc-tdigest |
diff --git a/gnu/packages/ibus.scm b/gnu/packages/ibus.scm index 0dfce29ea36..a290966bd06 100644 --- a/gnu/packages/ibus.scm +++ b/gnu/packages/ibus.scm | |||
| @@ -1136,7 +1136,7 @@ IBus-Table on IBus framework: | |||
| 1136 | (synopsis "Speech to text IBus engine using VOSK") | 1136 | (synopsis "Speech to text IBus engine using VOSK") |
| 1137 | (description "This Input Method uses VOSK for voice recognition and allows | 1137 | (description "This Input Method uses VOSK for voice recognition and allows |
| 1138 | to dictate text in several languages in any application that supports IBus. | 1138 | to dictate text in several languages in any application that supports IBus. |
| 1139 | One of the main adavantages is that VOSK performs voice recognition locally | 1139 | One of the main advantages is that VOSK performs voice recognition locally |
| 1140 | and does not rely on an online service.") | 1140 | and does not rely on an online service.") |
| 1141 | (license gpl3+))) | 1141 | (license gpl3+))) |
| 1142 | 1142 | ||
diff --git a/gnu/packages/instrumentation.scm b/gnu/packages/instrumentation.scm index 1515fef14cb..b42aaa2e2fa 100644 --- a/gnu/packages/instrumentation.scm +++ b/gnu/packages/instrumentation.scm | |||
| @@ -119,7 +119,7 @@ | |||
| 119 | ;; distribution tarballs are generated on Ubuntu LTS 18.04. | 119 | ;; distribution tarballs are generated on Ubuntu LTS 18.04. |
| 120 | ;; | 120 | ;; |
| 121 | ;; `paredit-raise-sexp' on the first list of native inputs and remove the | 121 | ;; `paredit-raise-sexp' on the first list of native inputs and remove the |
| 122 | ;; 'autoreconf invokation whenever we bump to the next version that is | 122 | ;; 'autoreconf invocation whenever we bump to the next version that is |
| 123 | ;; goind to be generated on Ubuntu LTS 22.04. | 123 | ;; goind to be generated on Ubuntu LTS 22.04. |
| 124 | (native-inputs | 124 | (native-inputs |
| 125 | (append | 125 | (append |
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index 43923a90ac5..faf982f4d71 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm | |||
| @@ -939,7 +939,7 @@ their levels to be controlled individually.") | |||
| 939 | (modules '((guix build utils))) | 939 | (modules '((guix build utils))) |
| 940 | (snippet | 940 | (snippet |
| 941 | #~(begin | 941 | #~(begin |
| 942 | ;; Submodules with their own go.mod files and packaged separatly: | 942 | ;; Submodules with their own go.mod files and packaged separately: |
| 943 | ;; | 943 | ;; |
| 944 | ;; - github.com/libp2p/go-libp2p/scripts/test_analysis | 944 | ;; - github.com/libp2p/go-libp2p/scripts/test_analysis |
| 945 | ;; - github.com/libp2p/go-libp2p/test-plans/m/v2 | 945 | ;; - github.com/libp2p/go-libp2p/test-plans/m/v2 |
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 0e1cffe0464..e1722c0fba3 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm | |||
| @@ -3572,7 +3572,7 @@ interfaces with @file{.ini} files.") | |||
| 3572 | (synopsis | 3572 | (synopsis |
| 3573 | "Canonical default initial values and identity elements for Julia") | 3573 | "Canonical default initial values and identity elements for Julia") |
| 3574 | (description | 3574 | (description |
| 3575 | "This package provides a canoncial set of default initial values | 3575 | "This package provides a canonical set of default initial values |
| 3576 | and identity elements for Julia.") | 3576 | and identity elements for Julia.") |
| 3577 | (license license:expat))) | 3577 | (license license:expat))) |
| 3578 | 3578 | ||
| @@ -6827,7 +6827,7 @@ interface functions for working with all kinds tabular data.") | |||
| 6827 | (license license:expat))) | 6827 | (license license:expat))) |
| 6828 | 6828 | ||
| 6829 | (define-public julia-tableshowutils | 6829 | (define-public julia-tableshowutils |
| 6830 | ;; The 0.2.5 release is not fully compatable with newer versions of Julia. | 6830 | ;; The 0.2.5 release is not fully compatible with newer versions of Julia. |
| 6831 | (let ((commit "c4e02d8b9bbb31fc81ed6618955e9b1c7cb04460") | 6831 | (let ((commit "c4e02d8b9bbb31fc81ed6618955e9b1c7cb04460") |
| 6832 | (revision "1")) | 6832 | (revision "1")) |
| 6833 | (package | 6833 | (package |
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 4f241cc2e3b..d1ed61aac7f 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm | |||
| @@ -496,7 +496,7 @@ used, but this framework provides a wrapper script to make generating the | |||
| 496 | documentation more convenient (including reading settings from the target | 496 | documentation more convenient (including reading settings from the target |
| 497 | framework or other module) and a standard template for the generated | 497 | framework or other module) and a standard template for the generated |
| 498 | documentation.") | 498 | documentation.") |
| 499 | ;; Most parts are bsd-2, but incuded jquery is expat | 499 | ;; Most parts are bsd-2, but included jquery is expat |
| 500 | ;; This list is taken from http://packaging.neon.kde.org/cgit/ | 500 | ;; This list is taken from http://packaging.neon.kde.org/cgit/ |
| 501 | (license (list license:bsd-2 license:expat)))) | 501 | (license (list license:bsd-2 license:expat)))) |
| 502 | 502 | ||
| @@ -985,7 +985,7 @@ as well as an API to create KDED modules.") | |||
| 985 | (native-inputs | 985 | (native-inputs |
| 986 | (list extra-cmake-modules qttools)) | 986 | (list extra-cmake-modules qttools)) |
| 987 | (inputs | 987 | (inputs |
| 988 | (list avahi ; alternativly dnssd could be used | 988 | (list avahi ; alternatively dnssd could be used |
| 989 | qtbase)) | 989 | qtbase)) |
| 990 | (home-page "https://community.kde.org/Frameworks") | 990 | (home-page "https://community.kde.org/Frameworks") |
| 991 | (synopsis "Network service discovery using Zeroconf") | 991 | (synopsis "Network service discovery using Zeroconf") |
| @@ -3480,7 +3480,7 @@ their settings.") | |||
| 3480 | (synopsis "Integration of QML and KDE work spaces") | 3480 | (synopsis "Integration of QML and KDE work spaces") |
| 3481 | (description "KDeclarative provides integration of QML and KDE work spaces. | 3481 | (description "KDeclarative provides integration of QML and KDE work spaces. |
| 3482 | It's comprises two parts: a library used by the C++ part of your application to | 3482 | It's comprises two parts: a library used by the C++ part of your application to |
| 3483 | intergrate QML with KDE Frameworks specific features, and a series of QML imports | 3483 | integrate QML with KDE Frameworks specific features, and a series of QML imports |
| 3484 | that offer bindings to some of the Frameworks.") | 3484 | that offer bindings to some of the Frameworks.") |
| 3485 | ;; dual licensed | 3485 | ;; dual licensed |
| 3486 | (license (list license:gpl2+ license:lgpl2.1+)))) | 3486 | (license (list license:gpl2+ license:lgpl2.1+)))) |
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index 098b977866c..8d177d147fc 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm | |||
| @@ -1808,7 +1808,7 @@ on top of Baloo.") | |||
| 1808 | libksysguard)) | 1808 | libksysguard)) |
| 1809 | (home-page "https://invent.kde.org/plasma/plasma5support") | 1809 | (home-page "https://invent.kde.org/plasma/plasma5support") |
| 1810 | (synopsis "Support components for porting from KF5/Qt5 to KF6/Qt6") | 1810 | (synopsis "Support components for porting from KF5/Qt5 to KF6/Qt6") |
| 1811 | (description "This package provids support components for porting from | 1811 | (description "This package provides support components for porting from |
| 1812 | KF5/Qt5 to KF6/Qt6") | 1812 | KF5/Qt5 to KF6/Qt6") |
| 1813 | (license (list license:lgpl2.0+)))) | 1813 | (license (list license:lgpl2.0+)))) |
| 1814 | 1814 | ||
diff --git a/gnu/packages/librewolf.scm b/gnu/packages/librewolf.scm index bbbfa901ba8..2a4bf3fadab 100644 --- a/gnu/packages/librewolf.scm +++ b/gnu/packages/librewolf.scm | |||
| @@ -358,7 +358,7 @@ | |||
| 358 | "services"))))) | 358 | "services"))))) |
| 359 | (add-after 'patch-cargo-checksums 'remove-cargo-frozen-flag | 359 | (add-after 'patch-cargo-checksums 'remove-cargo-frozen-flag |
| 360 | (lambda _ | 360 | (lambda _ |
| 361 | ;; Remove --frozen flag from cargo invokation, otherwise it'll | 361 | ;; Remove --frozen flag from cargo invocation, otherwise it'll |
| 362 | ;; complain that it's not able to change Cargo.lock. | 362 | ;; complain that it's not able to change Cargo.lock. |
| 363 | ;; https://bugzilla.mozilla.org/show_bug.cgi?id=1726373 | 363 | ;; https://bugzilla.mozilla.org/show_bug.cgi?id=1726373 |
| 364 | (substitute* "build/RunCbindgen.py" | 364 | (substitute* "build/RunCbindgen.py" |
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 30d6b944f2d..a042f581416 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm | |||
| @@ -7609,7 +7609,7 @@ native Linux file system, and has been part of the Linux kernel since version | |||
| 7609 | (home-page | 7609 | (home-page |
| 7610 | "http://www.citi.umich.edu/projects/nfsv4/crossrealm/libnfsidmap_config.html") | 7610 | "http://www.citi.umich.edu/projects/nfsv4/crossrealm/libnfsidmap_config.html") |
| 7611 | (synopsis "NFSv4 support library for name/ID mapping") | 7611 | (synopsis "NFSv4 support library for name/ID mapping") |
| 7612 | (description "Libnfsidmap is a library holding mulitiple methods of | 7612 | (description "Libnfsidmap is a library holding multiple methods of |
| 7613 | mapping names to ids and visa versa, mainly for NFSv4. It provides an | 7613 | mapping names to ids and visa versa, mainly for NFSv4. It provides an |
| 7614 | extensible array of mapping functions, currently consisting of two choices: | 7614 | extensible array of mapping functions, currently consisting of two choices: |
| 7615 | the default @code{nsswitch} and the experimental @code{umich_ldap}.") | 7615 | the default @code{nsswitch} and the experimental @code{umich_ldap}.") |
| @@ -8734,7 +8734,7 @@ receiving to-be-logged packets from the kernel nfnetlink_log subsystem | |||
| 8734 | "0ax9959c4bapq78n13bbaibcf1gwjir3ngx8l2dh45lw9m4ha2lr")))) | 8734 | "0ax9959c4bapq78n13bbaibcf1gwjir3ngx8l2dh45lw9m4ha2lr")))) |
| 8735 | (build-system gnu-build-system) | 8735 | (build-system gnu-build-system) |
| 8736 | (outputs '("out" | 8736 | (outputs '("out" |
| 8737 | ;; additonal non-default output plugins | 8737 | ;; additional non-default output plugins |
| 8738 | "json" "pcap" "sqlite3" "pgsql" "mysql")) | 8738 | "json" "pcap" "sqlite3" "pgsql" "mysql")) |
| 8739 | (native-inputs (list pkg-config)) | 8739 | (native-inputs (list pkg-config)) |
| 8740 | (inputs (list libnfnetlink | 8740 | (inputs (list libnfnetlink |
| @@ -9273,7 +9273,7 @@ libraries, which are often integrated directly into libfabric.") | |||
| 9273 | communications interface for the True Scale family of products. PSM users are | 9273 | communications interface for the True Scale family of products. PSM users are |
| 9274 | enabled with mechanisms necessary to implement higher level communications | 9274 | enabled with mechanisms necessary to implement higher level communications |
| 9275 | interfaces in parallel environments.") | 9275 | interfaces in parallel environments.") |
| 9276 | ;; Only Intel-compatable processors are supported. | 9276 | ;; Only Intel-compatible processors are supported. |
| 9277 | (supported-systems '("i686-linux" "x86_64-linux")) | 9277 | (supported-systems '("i686-linux" "x86_64-linux")) |
| 9278 | (license (list license:bsd-2 license:gpl2)))) ;dual | 9278 | (license (list license:bsd-2 license:gpl2)))) ;dual |
| 9279 | 9279 | ||
| @@ -9527,7 +9527,7 @@ The PSM2 API is a high-performance vendor-specific protocol that provides a | |||
| 9527 | low-level communications interface for the Intel Omni-Path family of | 9527 | low-level communications interface for the Intel Omni-Path family of |
| 9528 | high-speed networking devices.") | 9528 | high-speed networking devices.") |
| 9529 | (home-page "https://github.com/intel/opa-psm2") | 9529 | (home-page "https://github.com/intel/opa-psm2") |
| 9530 | ;; Only the x86_64 architecure is supported. | 9530 | ;; Only the x86_64 architecture is supported. |
| 9531 | (supported-systems '("x86_64-linux")) | 9531 | (supported-systems '("x86_64-linux")) |
| 9532 | (license (list license:bsd-3 license:gpl2)))) ; dual | 9532 | (license (list license:bsd-3 license:gpl2)))) ; dual |
| 9533 | 9533 | ||
diff --git a/gnu/packages/lisp-check.scm b/gnu/packages/lisp-check.scm index cbaef71b87e..46a51e74775 100644 --- a/gnu/packages/lisp-check.scm +++ b/gnu/packages/lisp-check.scm | |||
| @@ -167,7 +167,7 @@ minimal dependencies on DISSECT.") | |||
| 167 | (native-inputs (list sbcl-assert-p)) | 167 | (native-inputs (list sbcl-assert-p)) |
| 168 | (inputs (list sbcl-assertion-error sbcl-eventbus)) | 168 | (inputs (list sbcl-assertion-error sbcl-eventbus)) |
| 169 | (home-page "https://github.com/noloop/cacau") | 169 | (home-page "https://github.com/noloop/cacau") |
| 170 | (synopsis "Comon Lisp test runner") | 170 | (synopsis "Common Lisp test runner") |
| 171 | (description | 171 | (description |
| 172 | "This package provides a Common Lisp testing framework system CACAU which was | 172 | "This package provides a Common Lisp testing framework system CACAU which was |
| 173 | built to be independent of assertions systems.") | 173 | built to be independent of assertions systems.") |
| @@ -540,7 +540,7 @@ interactive development model in mind.") | |||
| 540 | (synopsis "Make CL unit tests more readable") | 540 | (synopsis "Make CL unit tests more readable") |
| 541 | (description | 541 | (description |
| 542 | "@code{cl-hamcrest} is an implementation of the Hamcrest idea in | 542 | "@code{cl-hamcrest} is an implementation of the Hamcrest idea in |
| 543 | Common Lisp. It simplifes unit tests and makes them more readable. | 543 | Common Lisp. It simplifies unit tests and makes them more readable. |
| 544 | Hamcrest uses the idea of pattern-matching, to construct matchers from | 544 | Hamcrest uses the idea of pattern-matching, to construct matchers from |
| 545 | different pieces and to apply them to the data.") | 545 | different pieces and to apply them to the data.") |
| 546 | (license license:bsd-3)))) | 546 | (license license:bsd-3)))) |
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 3135413c5d2..aa0f6b26413 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm | |||
| @@ -690,7 +690,7 @@ internationalizing Common Lisp programs. | |||
| 690 | One important aspect of internationalization is of course the language used in | 690 | One important aspect of internationalization is of course the language used in |
| 691 | error messages, documentation strings, etc. But with this project we provide | 691 | error messages, documentation strings, etc. But with this project we provide |
| 692 | tools for all other aspects of internationalization as well, including dates, | 692 | tools for all other aspects of internationalization as well, including dates, |
| 693 | weight, temperature, names of physical quantitites, etc.") | 693 | weight, temperature, names of physical quantities, etc.") |
| 694 | (license license:bsd-2)))) | 694 | (license license:bsd-2)))) |
| 695 | 695 | ||
| 696 | (define-public cl-acclimation | 696 | (define-public cl-acclimation |
| @@ -7457,7 +7457,7 @@ format.") | |||
| 7457 | (native-inputs | 7457 | (native-inputs |
| 7458 | (list sbcl-lift)) | 7458 | (list sbcl-lift)) |
| 7459 | (arguments | 7459 | (arguments |
| 7460 | `(#:tests? #f ; FIXME: Tests get stuck indefinitly | 7460 | `(#:tests? #f ; FIXME: Tests get stuck indefinitely |
| 7461 | #:phases | 7461 | #:phases |
| 7462 | (modify-phases %standard-phases | 7462 | (modify-phases %standard-phases |
| 7463 | (add-after 'unpack 'fix-paths | 7463 | (add-after 'unpack 'fix-paths |
| @@ -10078,9 +10078,9 @@ rendering of the XML Infoset.") | |||
| 10078 | "cl-syntax-annot" | 10078 | "cl-syntax-annot" |
| 10079 | "cl-syntax-interpol"))) | 10079 | "cl-syntax-interpol"))) |
| 10080 | (home-page "https://github.com/m2ym/cl-syntax") | 10080 | (home-page "https://github.com/m2ym/cl-syntax") |
| 10081 | (synopsis "Reader Syntax Coventions for Common Lisp and SLIME") | 10081 | (synopsis "Reader Syntax Conventions for Common Lisp and SLIME") |
| 10082 | (description | 10082 | (description |
| 10083 | "CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and SLIME.") | 10083 | "CL-SYNTAX provides Reader Syntax Conventions for Common Lisp and SLIME.") |
| 10084 | (license license:llgpl))) | 10084 | (license license:llgpl))) |
| 10085 | 10085 | ||
| 10086 | (define-public cl-syntax | 10086 | (define-public cl-syntax |
| @@ -14544,7 +14544,7 @@ coloured printing via @code{cl-ansi-text} and readline completion.") | |||
| 14544 | `(("metatilities-base" ,sbcl-metatilities-base))) | 14544 | `(("metatilities-base" ,sbcl-metatilities-base))) |
| 14545 | (arguments | 14545 | (arguments |
| 14546 | ;; NOTE: (Sharlatan-20210106222900+0000) Circular dependencies and failing | 14546 | ;; NOTE: (Sharlatan-20210106222900+0000) Circular dependencies and failing |
| 14547 | ;; test suites. lift-standard.config contains referances to deprecated | 14547 | ;; test suites. lift-standard.config contains references to deprecated |
| 14548 | ;; functionality. | 14548 | ;; functionality. |
| 14549 | ;; See https://github.com/hraban/dynamic-classes/issues/2 | 14549 | ;; See https://github.com/hraban/dynamic-classes/issues/2 |
| 14550 | `(#:tests? #f)) | 14550 | `(#:tests? #f)) |
| @@ -19946,7 +19946,7 @@ BTCPay, Paypal, and Stripe.") | |||
| 19946 | sbcl-cl-ppcre)) | 19946 | sbcl-cl-ppcre)) |
| 19947 | (home-page "https://github.com/cxxxr/lisp-preprocessor") | 19947 | (home-page "https://github.com/cxxxr/lisp-preprocessor") |
| 19948 | (synopsis "Common Lisp embedded template engine") | 19948 | (synopsis "Common Lisp embedded template engine") |
| 19949 | (description "This package provices an embedded template engine for Common Lisp.") | 19949 | (description "This package provides an embedded template engine for Common Lisp.") |
| 19950 | (license license:expat)))) | 19950 | (license license:expat)))) |
| 19951 | 19951 | ||
| 19952 | (define-public cl-lisp-preprocessor | 19952 | (define-public cl-lisp-preprocessor |
| @@ -24925,7 +24925,7 @@ server over a socket. | |||
| 24925 | 24925 | ||
| 24926 | @code{POSTMODERN} itself is a wrapper around these packages and provides higher | 24926 | @code{POSTMODERN} itself is a wrapper around these packages and provides higher |
| 24927 | level functions, a very simple data access object that can be mapped directly to | 24927 | level functions, a very simple data access object that can be mapped directly to |
| 24928 | database tables and some convient utilities. It then tries to put all these | 24928 | database tables and some convenient utilities. It then tries to put all these |
| 24929 | things together into a convenient programming interface") | 24929 | things together into a convenient programming interface") |
| 24930 | (home-page "https://marijnhaverbeke.nl/postmodern/") | 24930 | (home-page "https://marijnhaverbeke.nl/postmodern/") |
| 24931 | (license license:zlib))) | 24931 | (license license:zlib))) |
| @@ -31200,7 +31200,7 @@ the return type of a function.") | |||
| 31200 | (package | 31200 | (package |
| 31201 | (inherit (sbcl-package->ecl-package sbcl-type-i)) | 31201 | (inherit (sbcl-package->ecl-package sbcl-type-i)) |
| 31202 | (arguments | 31202 | (arguments |
| 31203 | ;; The tests get stuck indefinitly | 31203 | ;; The tests get stuck indefinitely |
| 31204 | '(#:tests? #f)))) | 31204 | '(#:tests? #f)))) |
| 31205 | 31205 | ||
| 31206 | (define-public sbcl-type-r | 31206 | (define-public sbcl-type-r |
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index b68ff96aa88..22604f5841b 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm | |||
| @@ -3429,7 +3429,7 @@ This is the certified version of the Open Cascade Technology (OCCT) library.") | |||
| 3429 | `("PYTHONPATH" prefix (,dest)))))))))) | 3429 | `("PYTHONPATH" prefix (,dest)))))))))) |
| 3430 | (inputs (list bash-minimal python)) | 3430 | (inputs (list bash-minimal python)) |
| 3431 | (home-page "https://www.fast-downward.org/") | 3431 | (home-page "https://www.fast-downward.org/") |
| 3432 | (synopsis "Domain-independant classical planning system") | 3432 | (synopsis "Domain-independent classical planning system") |
| 3433 | (description "Fast Downward is a portfolio-based planning system that | 3433 | (description "Fast Downward is a portfolio-based planning system that |
| 3434 | supports the propositional fragment of PDDL2.2.") | 3434 | supports the propositional fragment of PDDL2.2.") |
| 3435 | (license license:gpl3+))) | 3435 | (license license:gpl3+))) |
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index ab49030f0a1..1b97853a590 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm | |||
| @@ -352,7 +352,7 @@ the RFC.") | |||
| 352 | (description | 352 | (description |
| 353 | "Netperf is a benchmark that can be used to measure the performance of | 353 | "Netperf is a benchmark that can be used to measure the performance of |
| 354 | many different types of networking. It provides tests for both unidirectional | 354 | many different types of networking. It provides tests for both unidirectional |
| 355 | throughput, and end-to-end latency. The environments currently measureable | 355 | throughput, and end-to-end latency. The environments currently measurable |
| 356 | by netperf include: TCP and UDP via BSD Sockets for both IPv4 and IPv6, DLPI, | 356 | by netperf include: TCP and UDP via BSD Sockets for both IPv4 and IPv6, DLPI, |
| 357 | Unix Domain Sockets, SCTP for both IPv4 and IPv6.") | 357 | Unix Domain Sockets, SCTP for both IPv4 and IPv6.") |
| 358 | (license license:expat)))) | 358 | (license license:expat)))) |
| @@ -3159,7 +3159,7 @@ updates to the zebra daemon.") | |||
| 3159 | "Generate BGP filters from the @acronym{IRR, Internet Routing Registry}") | 3159 | "Generate BGP filters from the @acronym{IRR, Internet Routing Registry}") |
| 3160 | (description | 3160 | (description |
| 3161 | "This program helps automate the creation and maintenance of @acronym{BGP, | 3161 | "This program helps automate the creation and maintenance of @acronym{BGP, |
| 3162 | Border Gateway Protocol} routing filters used for peering trough Internet | 3162 | Border Gateway Protocol} routing filters used for peering through Internet |
| 3163 | exchanges. | 3163 | exchanges. |
| 3164 | 3164 | ||
| 3165 | It generates prefix lists, (extended) access lists, policy-statement terms, and | 3165 | It generates prefix lists, (extended) access lists, policy-statement terms, and |
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 6269bd5b2d0..f265aee2493 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm | |||
| @@ -561,7 +561,7 @@ depend: $(STDLIB_MLIS) $(STDLIB_DEPS)")) | |||
| 561 | #:phases | 561 | #:phases |
| 562 | (modify-phases %standard-phases | 562 | (modify-phases %standard-phases |
| 563 | (delete 'configure)) | 563 | (delete 'configure)) |
| 564 | ; some failures because of changes in OCaml's error message formating | 564 | ; some failures because of changes in OCaml's error message formatting |
| 565 | #:tests? #f)) | 565 | #:tests? #f)) |
| 566 | (home-page "https://github.com/ocaml/ocamlbuild") | 566 | (home-page "https://github.com/ocaml/ocamlbuild") |
| 567 | (synopsis "OCaml build tool") | 567 | (synopsis "OCaml build tool") |
| @@ -2874,7 +2874,7 @@ interface files.") | |||
| 2874 | (propagated-inputs | 2874 | (propagated-inputs |
| 2875 | (list ocaml-odoc)) | 2875 | (list ocaml-odoc)) |
| 2876 | (home-page "https://github.com/rdicosmo/parmap") | 2876 | (home-page "https://github.com/rdicosmo/parmap") |
| 2877 | (synopsis "Parallel map and fold primtives for OCaml") | 2877 | (synopsis "Parallel map and fold primitives for OCaml") |
| 2878 | (description | 2878 | (description |
| 2879 | "Library to perform parallel fold or map taking advantage of multiple | 2879 | "Library to perform parallel fold or map taking advantage of multiple |
| 2880 | core architectures for OCaml programs. Drop-in replacement for these | 2880 | core architectures for OCaml programs. Drop-in replacement for these |
| @@ -4831,7 +4831,7 @@ file (POSIX like) and filename.") | |||
| 4831 | (substitute* "test/test-main/Test.ml" | 4831 | (substitute* "test/test-main/Test.ml" |
| 4832 | ;; most of these tests fail because ld cannot find crti.o, but according | 4832 | ;; most of these tests fail because ld cannot find crti.o, but according |
| 4833 | ;; to the log file, the environment variables {LD_,}LIBRARY_PATH | 4833 | ;; to the log file, the environment variables {LD_,}LIBRARY_PATH |
| 4834 | ;; are set correctly when LD_LIBRARY_PATH is defined beforhand. | 4834 | ;; are set correctly when LD_LIBRARY_PATH is defined beforehand. |
| 4835 | (("TestBaseCompat.tests;") "") | 4835 | (("TestBaseCompat.tests;") "") |
| 4836 | (("TestExamples.tests;") "") | 4836 | (("TestExamples.tests;") "") |
| 4837 | (("TestFull.tests;") "") | 4837 | (("TestFull.tests;") "") |
| @@ -6675,7 +6675,7 @@ the OCaml code.") | |||
| 6675 | (modify-phases %standard-phases | 6675 | (modify-phases %standard-phases |
| 6676 | (add-after 'unpack 'fix-test-format | 6676 | (add-after 'unpack 'fix-test-format |
| 6677 | (lambda _ | 6677 | (lambda _ |
| 6678 | ;; Since sexplib >= 0.15, error formating has changed | 6678 | ;; Since sexplib >= 0.15, error formatting has changed |
| 6679 | (substitute* "test/driver/exception_handling/run.t" | 6679 | (substitute* "test/driver/exception_handling/run.t" |
| 6680 | (("\\(Failure ") "Failure(")) | 6680 | (("\\(Failure ") "Failure(")) |
| 6681 | (substitute* "test/base/test.ml" | 6681 | (substitute* "test/base/test.ml" |
| @@ -6727,7 +6727,7 @@ OCaml AST in the OCaml syntax; | |||
| 6727 | "11bkw7fgzfay8ws0piwphqip3y2lk2c9s2gil3zisnbvka92h1va")) | 6727 | "11bkw7fgzfay8ws0piwphqip3y2lk2c9s2gil3zisnbvka92h1va")) |
| 6728 | (build-system dune-build-system) | 6728 | (build-system dune-build-system) |
| 6729 | (arguments | 6729 | (arguments |
| 6730 | ;; Tests are currenlty failing | 6730 | ;; Tests are currently failing |
| 6731 | ;; (see https://github.com/janestreet/ppx_compare/issues/10) | 6731 | ;; (see https://github.com/janestreet/ppx_compare/issues/10) |
| 6732 | '(#:tests? #f)) | 6732 | '(#:tests? #f)) |
| 6733 | (propagated-inputs | 6733 | (propagated-inputs |
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 444efb67dd7..ce63306c075 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm | |||
| @@ -1132,7 +1132,7 @@ selected) | |||
| 1132 | @item Eraser with multiple configurations | 1132 | @item Eraser with multiple configurations |
| 1133 | @item LaTeX support | 1133 | @item LaTeX support |
| 1134 | @item bug reporting, autosave, and auto backup tools | 1134 | @item bug reporting, autosave, and auto backup tools |
| 1135 | @item Customizeable toolbar, with multiple configurations, e.g., to | 1135 | @item Customizable toolbar, with multiple configurations, e.g., to |
| 1136 | optimize toolbar for portrait / landscape | 1136 | optimize toolbar for portrait / landscape |
| 1137 | @item Page Template definitions | 1137 | @item Page Template definitions |
| 1138 | @item Shape drawing (line, arrow, circle, rectangle) | 1138 | @item Shape drawing (line, arrow, circle, rectangle) |
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 21ba0c94636..b7aaf0af954 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm | |||
| @@ -4766,7 +4766,7 @@ import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.") | |||
| 4766 | (description "Exporter::Tiny supports many of Sub::Exporter's | 4766 | (description "Exporter::Tiny supports many of Sub::Exporter's |
| 4767 | external-facing features including renaming imported functions with the `-as`, | 4767 | external-facing features including renaming imported functions with the `-as`, |
| 4768 | `-prefix` and `-suffix` options; explicit destinations with the `into` option; | 4768 | `-prefix` and `-suffix` options; explicit destinations with the `into` option; |
| 4769 | and alternative installers with the `installler` option. But it's written in | 4769 | and alternative installers with the `installer` option. But it's written in |
| 4770 | only about 40% as many lines of code and with zero non-core dependencies.") | 4770 | only about 40% as many lines of code and with zero non-core dependencies.") |
| 4771 | (license (package-license perl)))) | 4771 | (license (package-license perl)))) |
| 4772 | 4772 | ||
| @@ -13671,7 +13671,7 @@ via sendmsg and recvmsg. | |||
| 13671 | 13671 | ||
| 13672 | It also allows manipulating ancillary data or so-called control | 13672 | It also allows manipulating ancillary data or so-called control |
| 13673 | information (cmsghdr). This ancillary data may be used for file descriptor | 13673 | information (cmsghdr). This ancillary data may be used for file descriptor |
| 13674 | passing, IPv6 operations, and a host of implemenation-specific extensions.") | 13674 | passing, IPv6 operations, and a host of implementation-specific extensions.") |
| 13675 | (license license:perl-license))) | 13675 | (license license:perl-license))) |
| 13676 | 13676 | ||
| 13677 | ;;; | 13677 | ;;; |
diff --git a/gnu/packages/profiling.scm b/gnu/packages/profiling.scm index 5121b6e94e6..34d22f53db9 100644 --- a/gnu/packages/profiling.scm +++ b/gnu/packages/profiling.scm | |||
| @@ -136,7 +136,7 @@ most major microprocessors. PAPI enables software engineers to see, in near | |||
| 136 | real time, the relation between software performance and processor events. | 136 | real time, the relation between software performance and processor events. |
| 137 | 137 | ||
| 138 | In addition, PAPI provides access to a collection of components that expose | 138 | In addition, PAPI provides access to a collection of components that expose |
| 139 | performance measurement opportunites across the hardware and software stack.") | 139 | performance measurement opportunities across the hardware and software stack.") |
| 140 | (properties | 140 | (properties |
| 141 | '((release-monitoring-url | 141 | '((release-monitoring-url |
| 142 | . "http://icl.cs.utk.edu/papi/software/"))) | 142 | . "http://icl.cs.utk.edu/papi/software/"))) |
diff --git a/gnu/packages/prometheus.scm b/gnu/packages/prometheus.scm index cbee1d859c8..77875933f10 100644 --- a/gnu/packages/prometheus.scm +++ b/gnu/packages/prometheus.scm | |||
| @@ -569,7 +569,7 @@ kernel, and process metrics from the @file{/proc} pseudo file system.") | |||
| 569 | "The StatsD exporter is a drop-in replacement for | 569 | "The StatsD exporter is a drop-in replacement for |
| 570 | @url{https://github.com/statsd/statsd,StatsD}. The exporter translates StatsD | 570 | @url{https://github.com/statsd/statsd,StatsD}. The exporter translates StatsD |
| 571 | metrics to Prometheus metrics via configured mapping rules. This package | 571 | metrics to Prometheus metrics via configured mapping rules. This package |
| 572 | provdies a Golang module and @code{statsd_exporter} executable command.") | 572 | provides a Golang module and @code{statsd_exporter} executable command.") |
| 573 | (license license:asl2.0))) | 573 | (license license:asl2.0))) |
| 574 | 574 | ||
| 575 | ;;; | 575 | ;;; |
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 127e9e378aa..beff4353ce6 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm | |||
| @@ -282,7 +282,7 @@ formulas for Python.") | |||
| 282 | (home-page "https://github.com/JohannesBuchner/imagehash") | 282 | (home-page "https://github.com/JohannesBuchner/imagehash") |
| 283 | (synopsis "Perceptual Image Hashing library") | 283 | (synopsis "Perceptual Image Hashing library") |
| 284 | (description | 284 | (description |
| 285 | "This package implements a functinoality to tell whether two images look | 285 | "This package implements a functionality to tell whether two images look |
| 286 | nearly identical. The image hash algorithms (average, perceptual, difference, | 286 | nearly identical. The image hash algorithms (average, perceptual, difference, |
| 287 | wavelet) analyse the image structure on luminance (without color information). | 287 | wavelet) analyse the image structure on luminance (without color information). |
| 288 | The color hash algorithm analyses the color distribution and black & gray | 288 | The color hash algorithm analyses the color distribution and black & gray |
| @@ -842,7 +842,7 @@ the following purposes in mind: | |||
| 842 | @itemize | 842 | @itemize |
| 843 | @item Provide tools to handle downloaded or user-provided datasets. | 843 | @item Provide tools to handle downloaded or user-provided datasets. |
| 844 | @item Provide ready-to-use prediction algorithms and similarity measures. | 844 | @item Provide ready-to-use prediction algorithms and similarity measures. |
| 845 | @item Provide a base for creating custom algorithims. | 845 | @item Provide a base for creating custom algorithms. |
| 846 | @item Provide tools to evaluate, analyse and compare algorithm performance. | 846 | @item Provide tools to evaluate, analyse and compare algorithm performance. |
| 847 | @item Provide documentation with precise details regarding library algorithms. | 847 | @item Provide documentation with precise details regarding library algorithms. |
| 848 | @end itemize") | 848 | @end itemize") |
| @@ -932,7 +932,7 @@ cross-validation.") | |||
| 932 | (synopsis "Test-driven data analysis library for Python") | 932 | (synopsis "Test-driven data analysis library for Python") |
| 933 | (description | 933 | (description |
| 934 | "The TDDA Python module provides command-line and Python API support | 934 | "The TDDA Python module provides command-line and Python API support |
| 935 | for the overall process of data analysis, through tools that peform | 935 | for the overall process of data analysis, through tools that perform |
| 936 | reference testing, constraint discovery for data, automatic inference | 936 | reference testing, constraint discovery for data, automatic inference |
| 937 | of regular expressions from text data and automatic test generation.") | 937 | of regular expressions from text data and automatic test generation.") |
| 938 | (license license:expat))) ; MIT License | 938 | (license license:expat))) ; MIT License |
| @@ -2475,7 +2475,7 @@ annotations on an existing boxplots and barplots generated by seaborn.") | |||
| 2475 | (description | 2475 | (description |
| 2476 | "@code{unyt} is a Python library working with data that has physical | 2476 | "@code{unyt} is a Python library working with data that has physical |
| 2477 | units. It defines the @code{unyt.array.unyt_array} and | 2477 | units. It defines the @code{unyt.array.unyt_array} and |
| 2478 | @code{unyt.array.unyt_quantity} classess (subclasses of NumPy’s ndarray class) | 2478 | @code{unyt.array.unyt_quantity} classes (subclasses of NumPy’s ndarray class) |
| 2479 | for handling arrays and scalars with units,respectively") | 2479 | for handling arrays and scalars with units,respectively") |
| 2480 | (license license:bsd-3))) | 2480 | (license license:bsd-3))) |
| 2481 | 2481 | ||
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 2ee444a5095..d2d5a25e81f 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm | |||
| @@ -2121,7 +2121,7 @@ parallel as well as downloading each file in a number of chunks. | |||
| 2121 | 2121 | ||
| 2122 | asciicast demo of parfive parfive works by creating a downloader object, | 2122 | asciicast demo of parfive parfive works by creating a downloader object, |
| 2123 | appending files to it and then running the download. parfive has a synchronous | 2123 | appending files to it and then running the download. parfive has a synchronous |
| 2124 | API, but uses asyncio to paralellise downloading the files.") | 2124 | API, but uses asyncio to parallelise downloading the files.") |
| 2125 | (license license:expat))) | 2125 | (license license:expat))) |
| 2126 | 2126 | ||
| 2127 | (define-public python-html2text | 2127 | (define-public python-html2text |
| @@ -8562,7 +8562,7 @@ interpreter written in pure Python.") | |||
| 8562 | (home-page "https://github.com/web-push-libs/encrypted-content-encoding") | 8562 | (home-page "https://github.com/web-push-libs/encrypted-content-encoding") |
| 8563 | (synopsis "Encrypted Content Encoding for HTTP") | 8563 | (synopsis "Encrypted Content Encoding for HTTP") |
| 8564 | (description | 8564 | (description |
| 8565 | "This package provices a simple implementation of Encrypted Content | 8565 | "This package provides a simple implementation of Encrypted Content |
| 8566 | Encoding for HTTP.") | 8566 | Encoding for HTTP.") |
| 8567 | (license license:expat))) | 8567 | (license license:expat))) |
| 8568 | 8568 | ||
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f52c2a2d86d..4d149b34d6a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm | |||
| @@ -5970,7 +5970,7 @@ port forwards using @acronym{UPnP, Universal Plug and Play}.") | |||
| 5970 | python-setuptools-scm | 5970 | python-setuptools-scm |
| 5971 | python-wheel)) | 5971 | python-wheel)) |
| 5972 | (home-page "https://github.com/pytest-dev/py") | 5972 | (home-page "https://github.com/pytest-dev/py") |
| 5973 | (synopsis "Python library for parsing, I/O, instrospection, and logging") | 5973 | (synopsis "Python library for parsing, I/O, introspection, and logging") |
| 5974 | (description | 5974 | (description |
| 5975 | "Py is a Python library for file name parsing, .ini file parsing, I/O, | 5975 | "Py is a Python library for file name parsing, .ini file parsing, I/O, |
| 5976 | code introspection, and logging.") | 5976 | code introspection, and logging.") |
| @@ -23503,7 +23503,7 @@ until the object is actually required, and caches the result of said call.") | |||
| 23503 | (add-after 'unpack 'patch-getprotobyname-calls | 23503 | (add-after 'unpack 'patch-getprotobyname-calls |
| 23504 | ;; These calls are problematic in the build environment as there is | 23504 | ;; These calls are problematic in the build environment as there is |
| 23505 | ;; no /etc/protocols. This breaks the sanity-check phase of any | 23505 | ;; no /etc/protocols. This breaks the sanity-check phase of any |
| 23506 | ;; package depnding on this one. | 23506 | ;; package depending on this one. |
| 23507 | (lambda _ | 23507 | (lambda _ |
| 23508 | (substitute* "dns/rdtypes/IN/WKS.py" | 23508 | (substitute* "dns/rdtypes/IN/WKS.py" |
| 23509 | (("socket.getprotobyname\\('tcp'\\)") | 23509 | (("socket.getprotobyname\\('tcp'\\)") |
| @@ -23558,7 +23558,7 @@ It supports TSIG authenticated messages and EDNS0.") | |||
| 23558 | (add-after 'unpack 'patch-getprotobyname-calls | 23558 | (add-after 'unpack 'patch-getprotobyname-calls |
| 23559 | ;; These calls are problematic in the build environment as there is | 23559 | ;; These calls are problematic in the build environment as there is |
| 23560 | ;; no /etc/protocols. This breaks the sanity-check phase of any | 23560 | ;; no /etc/protocols. This breaks the sanity-check phase of any |
| 23561 | ;; package depnding on this one. | 23561 | ;; package depending on this one. |
| 23562 | (lambda _ | 23562 | (lambda _ |
| 23563 | (substitute* "dns/rdtypes/IN/WKS.py" | 23563 | (substitute* "dns/rdtypes/IN/WKS.py" |
| 23564 | (("socket.getprotobyname\\('tcp'\\)") | 23564 | (("socket.getprotobyname\\('tcp'\\)") |
| @@ -25276,7 +25276,7 @@ efficient as possible on all supported Python versions.") | |||
| 25276 | Mustache templating language renderer.") | 25276 | Mustache templating language renderer.") |
| 25277 | (license license:expat))) | 25277 | (license license:expat))) |
| 25278 | 25278 | ||
| 25279 | ;; XXX: Try to inherit from duckdb and build from source with all extentions. | 25279 | ;; XXX: Try to inherit from duckdb and build from source with all extensions. |
| 25280 | (define-public python-duckdb | 25280 | (define-public python-duckdb |
| 25281 | (package | 25281 | (package |
| 25282 | (name "python-duckdb") | 25282 | (name "python-duckdb") |
| @@ -29284,7 +29284,7 @@ user-space file systems in Python.") | |||
| 29284 | (replace 'check | 29284 | (replace 'check |
| 29285 | (lambda* (#:key tests? #:allow-other-keys) | 29285 | (lambda* (#:key tests? #:allow-other-keys) |
| 29286 | (when tests? | 29286 | (when tests? |
| 29287 | ;; These tests don't import currectly. | 29287 | ;; These tests don't import correctly. |
| 29288 | (delete-file "test/test_js_client.py") | 29288 | (delete-file "test/test_js_client.py") |
| 29289 | (delete-file "test/test_tsd_types.py") | 29289 | (delete-file "test/test_tsd_types.py") |
| 29290 | (delete-file "test/test_python_gen.py") | 29290 | (delete-file "test/test_python_gen.py") |
| @@ -34432,7 +34432,7 @@ dates in almost any string formats commonly found on web pages.") | |||
| 34432 | (replace 'check | 34432 | (replace 'check |
| 34433 | (lambda* (#:key inputs outputs #:allow-other-keys) | 34433 | (lambda* (#:key inputs outputs #:allow-other-keys) |
| 34434 | (add-installed-pythonpath inputs outputs) | 34434 | (add-installed-pythonpath inputs outputs) |
| 34435 | ;; This invokation is taken from tox.ini. | 34435 | ;; This invocation is taken from tox.ini. |
| 34436 | (invoke "nosetests" "-d" "-v" "tests/")))))) | 34436 | (invoke "nosetests" "-d" "-v" "tests/")))))) |
| 34437 | (home-page "https://github.com/akesterson/dpath-python") | 34437 | (home-page "https://github.com/akesterson/dpath-python") |
| 34438 | (synopsis "File-system-like pathing and searching for dictionaries") | 34438 | (synopsis "File-system-like pathing and searching for dictionaries") |
diff --git a/gnu/packages/racket.scm b/gnu/packages/racket.scm index 30c8e4df537..5262f7277fb 100644 --- a/gnu/packages/racket.scm +++ b/gnu/packages/racket.scm | |||
| @@ -190,7 +190,7 @@ | |||
| 190 | ;; as of Racket 7.0. See also <https://racket.discourse.group/t/951/4>. | 190 | ;; as of Racket 7.0. See also <https://racket.discourse.group/t/951/4>. |
| 191 | ;; | 191 | ;; |
| 192 | ;; For Racket BC, the compiled "linklet" s-expressions (primitive modules) | 192 | ;; For Racket BC, the compiled "linklet" s-expressions (primitive modules) |
| 193 | ;; are embeded in C as a static string constant. Eventually, they are further | 193 | ;; are embedded in C as a static string constant. Eventually, they are further |
| 194 | ;; compiled by the C-implemented Racket BC bytecode and JIT compilers. | 194 | ;; compiled by the C-implemented Racket BC bytecode and JIT compilers. |
| 195 | ;; | 195 | ;; |
| 196 | ;; Zuo is notably *not* a problem for bootstrapping. The implementation is a | 196 | ;; Zuo is notably *not* a problem for bootstrapping. The implementation is a |
| @@ -1122,7 +1122,7 @@ languages such as Typed Racket, R5RS and R6RS Scheme, Algol 60, and Datalog."))) | |||
| 1122 | ;; Let Guix coexist with other installation | 1122 | ;; Let Guix coexist with other installation |
| 1123 | ;; methods without clobbering user-specific packages. | 1123 | ;; methods without clobbering user-specific packages. |
| 1124 | ;; This could be set in various places, but doing | 1124 | ;; This could be set in various places, but doing |
| 1125 | ;; it here is convienient, at least until we support | 1125 | ;; it here is convenient, at least until we support |
| 1126 | ;; cross-compilation. | 1126 | ;; cross-compilation. |
| 1127 | 'installation-name | 1127 | 'installation-name |
| 1128 | (string-append (version) | 1128 | (string-append (version) |
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm index 626a1b9d5ae..cda2f1907cb 100644 --- a/gnu/packages/radio.scm +++ b/gnu/packages/radio.scm | |||
| @@ -2145,10 +2145,10 @@ It can perform as: | |||
| 2145 | methods: | 2145 | methods: |
| 2146 | 2146 | ||
| 2147 | @itemize | 2147 | @itemize |
| 2148 | @item Classic exercice, | 2148 | @item Classic exercise, |
| 2149 | @item Koch method, | 2149 | @item Koch method, |
| 2150 | @item Read from file, | 2150 | @item Read from file, |
| 2151 | @item Callsign exercice. | 2151 | @item Callsign exercise. |
| 2152 | @end itemize\n") | 2152 | @end itemize\n") |
| 2153 | (license license:gpl3+))) | 2153 | (license license:gpl3+))) |
| 2154 | 2154 | ||
diff --git a/gnu/packages/rails.scm b/gnu/packages/rails.scm index 537650cc880..6f93f4067b7 100644 --- a/gnu/packages/rails.scm +++ b/gnu/packages/rails.scm | |||
| @@ -135,7 +135,7 @@ multibyte strings, internationalization, time zones, and testing.") | |||
| 135 | '(#:tests? #f)) ;no included tests | 135 | '(#:tests? #f)) ;no included tests |
| 136 | (propagated-inputs | 136 | (propagated-inputs |
| 137 | (list ruby-activesupport)) | 137 | (list ruby-activesupport)) |
| 138 | (synopsis "Generate URIs idenfitying model instances in Ruby") | 138 | (synopsis "Generate URIs identifying model instances in Ruby") |
| 139 | (description | 139 | (description |
| 140 | "@code{GlobalID} provides a way to generate URIs from a model in Ruby that | 140 | "@code{GlobalID} provides a way to generate URIs from a model in Ruby that |
| 141 | uniquely identify it.") | 141 | uniquely identify it.") |
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index b3126de4656..58082359f64 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm | |||
| @@ -3165,7 +3165,7 @@ support.") | |||
| 3165 | (build-system ruby-build-system) | 3165 | (build-system ruby-build-system) |
| 3166 | (native-inputs | 3166 | (native-inputs |
| 3167 | (list bundler | 3167 | (list bundler |
| 3168 | ;; The test suite tests all the available backends. Currenly, this just | 3168 | ;; The test suite tests all the available backends. Currently, this just |
| 3169 | ;; means the node backend. | 3169 | ;; means the node backend. |
| 3170 | ;; | 3170 | ;; |
| 3171 | ;; PASSED: test:node | 3171 | ;; PASSED: test:node |
| @@ -6376,7 +6376,7 @@ of Memory.") | |||
| 6376 | (build-system ruby-build-system) | 6376 | (build-system ruby-build-system) |
| 6377 | (synopsis "URI class for parsing data URIs") | 6377 | (synopsis "URI class for parsing data URIs") |
| 6378 | (description | 6378 | (description |
| 6379 | "Data @acronym{URI, universal resource idenfitier}s allow resources to be | 6379 | "Data @acronym{URI, universal resource identifier}s allow resources to be |
| 6380 | embedded inside a URI. The URI::Data class provides support for parsing these | 6380 | embedded inside a URI. The URI::Data class provides support for parsing these |
| 6381 | URIs using the normal URI.parse method.") | 6381 | URIs using the normal URI.parse method.") |
| 6382 | (home-page "https://github.com/dball/data_uri") | 6382 | (home-page "https://github.com/dball/data_uri") |
| @@ -6985,7 +6985,7 @@ then be analyzed or manipulated more easily than the underlying AST layer.") | |||
| 6985 | (arguments | 6985 | (arguments |
| 6986 | '(#:test-target "spec" ;avoid rubocop dependency | 6986 | '(#:test-target "spec" ;avoid rubocop dependency |
| 6987 | #:phases (modify-phases %standard-phases | 6987 | #:phases (modify-phases %standard-phases |
| 6988 | (add-after 'patch-source-shebangs 'patch-shell-invokations | 6988 | (add-after 'patch-source-shebangs 'patch-shell-invocations |
| 6989 | (lambda _ | 6989 | (lambda _ |
| 6990 | (substitute* '("lib/parallel_tests/tasks.rb" | 6990 | (substitute* '("lib/parallel_tests/tasks.rb" |
| 6991 | "spec/parallel_tests/tasks_spec.rb") | 6991 | "spec/parallel_tests/tasks_spec.rb") |
| @@ -13933,7 +13933,7 @@ interface. It allows Jekyll to rebuild your site when a file changes.") | |||
| 13933 | (("gem 'activerecord.*$") "gem 'activerecord'\n")))) | 13933 | (("gem 'activerecord.*$") "gem 'activerecord'\n")))) |
| 13934 | (add-before 'check 'delete-Gemfile.lock | 13934 | (add-before 'check 'delete-Gemfile.lock |
| 13935 | (lambda _ | 13935 | (lambda _ |
| 13936 | ;; Bundler isn't being used for fetching dependendencies, so | 13936 | ;; Bundler isn't being used for fetching dependencies, so |
| 13937 | ;; delete the Gemfile.lock | 13937 | ;; delete the Gemfile.lock |
| 13938 | (delete-file "Gemfile.lock") | 13938 | (delete-file "Gemfile.lock") |
| 13939 | #t)) | 13939 | #t)) |
| @@ -16351,7 +16351,7 @@ and social networks to better index and display your site's content.") | |||
| 16351 | "/share/zoneinfo")) | 16351 | "/share/zoneinfo")) |
| 16352 | #t)) | 16352 | #t)) |
| 16353 | (add-before 'check 'delete-test-BatchProcessor | 16353 | (add-before 'check 'delete-test-BatchProcessor |
| 16354 | ;; test_BatchProcessor fails with exeption: | 16354 | ;; test_BatchProcessor fails with exception: |
| 16355 | ;; run> terminated with exception (report_on_exception is true) | 16355 | ;; run> terminated with exception (report_on_exception is true) |
| 16356 | (lambda _ | 16356 | (lambda _ |
| 16357 | (delete-file "test/test_BatchProcessor.rb") | 16357 | (delete-file "test/test_BatchProcessor.rb") |
| @@ -17829,7 +17829,7 @@ the power of the built-in @code{OptionParser}.") | |||
| 17829 | "`find spec -type f | sort`")))) | 17829 | "`find spec -type f | sort`")))) |
| 17830 | (add-after 'wrap 'populate-dictionaries | 17830 | (add-after 'wrap 'populate-dictionaries |
| 17831 | (lambda args | 17831 | (lambda args |
| 17832 | ;; We must initiallize these files here, or they will never be | 17832 | ;; We must initialize these files here, or they will never be |
| 17833 | ;; usable with the default settings. A more flexible approach | 17833 | ;; usable with the default settings. A more flexible approach |
| 17834 | ;; might use something like `Gem.find_files()` or | 17834 | ;; might use something like `Gem.find_files()` or |
| 17835 | ;; XDG_DATA_DIRS. | 17835 | ;; XDG_DATA_DIRS. |
diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index 758efa55466..70edcca3ca7 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm | |||
| @@ -600,7 +600,7 @@ and IPV6 and the protocols layered above them, such as TCP and UDP.") | |||
| 600 | (home-page "https://github.com/christgau/wsdd") | 600 | (home-page "https://github.com/christgau/wsdd") |
| 601 | (synopsis "Web Service Discovery host daemon") | 601 | (synopsis "Web Service Discovery host daemon") |
| 602 | (description "This daemon allows (Samba) hosts to be found by Web | 602 | (description "This daemon allows (Samba) hosts to be found by Web |
| 603 | Service Dicovery Clients. It also implements the client side of the | 603 | Service Discovery Clients. It also implements the client side of the |
| 604 | discovery protocol which searches for devices implementing | 604 | discovery protocol which searches for devices implementing |
| 605 | WSD.") | 605 | WSD.") |
| 606 | (license license:expat))) | 606 | (license license:expat))) |
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index 1e8224b2434..416f7cbbe1d 100644 --- a/gnu/packages/suckless.scm +++ b/gnu/packages/suckless.scm | |||
| @@ -672,7 +672,7 @@ in the range of your wireless station. Once received the program | |||
| 672 | extracts the BSSID of the AP and transmits deauthentication packets | 672 | extracts the BSSID of the AP and transmits deauthentication packets |
| 673 | using the broadcast MAC address. This results to the disconnection | 673 | using the broadcast MAC address. This results to the disconnection |
| 674 | of all clients connected to the AP at the time of the attack. This | 674 | of all clients connected to the AP at the time of the attack. This |
| 675 | is essencially a WiFi DoS attack tool created for educational | 675 | is essentially a WiFi DoS attack tool created for educational |
| 676 | purposes only. It works only in Linux and requires wireless card | 676 | purposes only. It works only in Linux and requires wireless card |
| 677 | drivers capable of injecting packets in wireless networks.") | 677 | drivers capable of injecting packets in wireless networks.") |
| 678 | (license license:gpl3+))) | 678 | (license license:gpl3+))) |
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm index a84893786c4..f717cbb3afd 100644 --- a/gnu/packages/syndication.scm +++ b/gnu/packages/syndication.scm | |||
| @@ -380,7 +380,7 @@ file system, and many more features.") | |||
| 380 | (inputs | 380 | (inputs |
| 381 | (list curl expat gumbo-parser ncurses sqlite yajl)) | 381 | (list curl expat gumbo-parser ncurses sqlite yajl)) |
| 382 | (home-page "https://codeberg.org/grisha/newsraft") | 382 | (home-page "https://codeberg.org/grisha/newsraft") |
| 383 | (synopsis "Feed reader for termnial") | 383 | (synopsis "Feed reader for terminal") |
| 384 | (description | 384 | (description |
| 385 | "Newsraft is a feed reader with ncurses user interface. It is greatly | 385 | "Newsraft is a feed reader with ncurses user interface. It is greatly |
| 386 | inspired by Newsboat and tries to be its lightweight counterpart. | 386 | inspired by Newsboat and tries to be its lightweight counterpart. |
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 1dc67e2d843..04632e84089 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm | |||
| @@ -1866,7 +1866,7 @@ for programmers; its status is experimental.") | |||
| 1866 | (outputs '("out" "doc")) | 1866 | (outputs '("out" "doc")) |
| 1867 | (build-system texlive-build-system) | 1867 | (build-system texlive-build-system) |
| 1868 | (home-page "https://ctan.org/pkg/abbr") | 1868 | (home-page "https://ctan.org/pkg/abbr") |
| 1869 | (synopsis "Simple macros supporting abreviations for Plain and LaTeX") | 1869 | (synopsis "Simple macros supporting abbreviations for Plain and LaTeX") |
| 1870 | (description | 1870 | (description |
| 1871 | "The package provides some simple macros to support abbreviations in | 1871 | "The package provides some simple macros to support abbreviations in |
| 1872 | Plain TeX or LaTeX. It allows writing, e.g., @samp{\\<TEX>} instead of | 1872 | Plain TeX or LaTeX. It allows writing, e.g., @samp{\\<TEX>} instead of |
| @@ -3682,7 +3682,7 @@ is allowed. The expression scanner is also provided.") | |||
| 3682 | (description | 3682 | (description |
| 3683 | "This book explains the basic concepts required for programming in TeX | 3683 | "This book explains the basic concepts required for programming in TeX |
| 3684 | and explains the programming methods, providing many examples. The package | 3684 | and explains the programming methods, providing many examples. The package |
| 3685 | makes the compileable source code as well as the compiled PDF file accessible | 3685 | makes the compilable source code as well as the compiled PDF file accessible |
| 3686 | to everyone.") | 3686 | to everyone.") |
| 3687 | (license license:lppl1.2+))) | 3687 | (license license:lppl1.2+))) |
| 3688 | 3688 | ||
| @@ -11609,7 +11609,7 @@ format of references to be determined automatically according to the type of | |||
| 11609 | reference. The formats used may be customised in the preamble of a document; | 11609 | reference. The formats used may be customised in the preamble of a document; |
| 11610 | Babel support is available (though the choice of languages remains limited: | 11610 | Babel support is available (though the choice of languages remains limited: |
| 11611 | currently Danish, Dutch, English, French, German, Italian, Norwegian, Russian, | 11611 | currently Danish, Dutch, English, French, German, Italian, Norwegian, Russian, |
| 11612 | Spanish and Ukranian). | 11612 | Spanish and Ukrainian). |
| 11613 | 11613 | ||
| 11614 | The package also offers a means of referencing a list of references, each | 11614 | The package also offers a means of referencing a list of references, each |
| 11615 | formatted according to its type. In such lists, it can collapse sequences of | 11615 | formatted according to its type. In such lists, it can collapse sequences of |
| @@ -19278,7 +19278,7 @@ Mingote, with support for LaTeX and pdfLaTeX.") | |||
| 19278 | (description | 19278 | (description |
| 19279 | "This package contains material presented in the book @emph{Guide to LaTeX}, | 19279 | "This package contains material presented in the book @emph{Guide to LaTeX}, |
| 19280 | 4th edition, by Helmut Kopka and Patrick W. Daly as code, sample figures, | 19280 | 4th edition, by Helmut Kopka and Patrick W. Daly as code, sample figures, |
| 19281 | processed files, as well as solutions to the exercices.") | 19281 | processed files, as well as solutions to the exercises.") |
| 19282 | (license license:lppl1.3c+))) | 19282 | (license license:lppl1.3c+))) |
| 19283 | 19283 | ||
| 19284 | (define-public texlive-guitar | 19284 | (define-public texlive-guitar |
| @@ -43877,7 +43877,7 @@ polytonic. The output text is natively encoded in Unicode, so it can be | |||
| 43877 | reused in any possible way. The @code{greektonoi} package provides, in | 43877 | reused in any possible way. The @code{greektonoi} package provides, in |
| 43878 | addition to inserting Greek accents and breathings, many other symbols used in | 43878 | addition to inserting Greek accents and breathings, many other symbols used in |
| 43879 | Greek numbers and arithmetic or in the Greek archaic period. It could be used | 43879 | Greek numbers and arithmetic or in the Greek archaic period. It could be used |
| 43880 | with @code{greektonoi} mapping or indepedently.") | 43880 | with @code{greektonoi} mapping or independently.") |
| 43881 | (license license:lgpl3))) | 43881 | (license license:lgpl3))) |
| 43882 | 43882 | ||
| 43883 | (define-public texlive-gtl | 43883 | (define-public texlive-gtl |
| @@ -91396,7 +91396,7 @@ macros to ease entry of the most common elements.") | |||
| 91396 | "This package is intended for use by users who know about fonts. It is | 91396 | "This package is intended for use by users who know about fonts. It is |
| 91397 | a quick-fix for fonts which do not have genuine LaTeX support. It is not | 91397 | a quick-fix for fonts which do not have genuine LaTeX support. It is not |
| 91398 | meant as a replacement of the LaTeX font definition files. It is meant as | 91398 | meant as a replacement of the LaTeX font definition files. It is meant as |
| 91399 | something more useable for LaTeX users than the @code{\\newfont} command. | 91399 | something more usable for LaTeX users than the @code{\\newfont} command. |
| 91400 | With @code{addfont} the loaded font scales along with the usual LaTeX size | 91400 | With @code{addfont} the loaded font scales along with the usual LaTeX size |
| 91401 | selection. Using this package still requires some knowledge on how to use | 91401 | selection. Using this package still requires some knowledge on how to use |
| 91402 | fonts with LaTeX.") | 91402 | fonts with LaTeX.") |
| @@ -108434,7 +108434,7 @@ Babel or Polyglossia.") | |||
| 108434 | (home-page "https://ctan.org/pkg/ktv-texdata") | 108434 | (home-page "https://ctan.org/pkg/ktv-texdata") |
| 108435 | (synopsis "Extract subsets of documents") | 108435 | (synopsis "Extract subsets of documents") |
| 108436 | (description | 108436 | (description |
| 108437 | "The package defines an exercice environment which numbers every exercise, and | 108437 | "The package defines an exercise environment which numbers every exercise, and |
| 108438 | a command @code{\\get} to extract a collection whose argument is | 108438 | a command @code{\\get} to extract a collection whose argument is |
| 108439 | a comma-separated set of exercise index numbers. While the package was | 108439 | a comma-separated set of exercise index numbers. While the package was |
| 108440 | designed for teachers constructing tables of exercises, it plainly has more | 108440 | designed for teachers constructing tables of exercises, it plainly has more |
| @@ -117190,7 +117190,7 @@ System} information and use it in a LaTeX document. For users of LaTeX2HTML, | |||
| 117190 | (synopsis "Readable and good looking CV and letter class") | 117190 | (synopsis "Readable and good looking CV and letter class") |
| 117191 | (description | 117191 | (description |
| 117192 | "This class provides an attractive and highly readable CV which will hopefully | 117192 | "This class provides an attractive and highly readable CV which will hopefully |
| 117193 | lead to your CV being read rather than disgarded.") | 117193 | lead to your CV being read rather than discarded.") |
| 117194 | (license license:lppl1.3+))) | 117194 | (license license:lppl1.3+))) |
| 117195 | 117195 | ||
| 117196 | (define-public texlive-realboxes | 117196 | (define-public texlive-realboxes |
| @@ -119222,7 +119222,7 @@ generally recommended, therefore, to use @code{mdframed} instead.") | |||
| 119222 | (home-page "https://ctan.org/pkg/shadow") | 119222 | (home-page "https://ctan.org/pkg/shadow") |
| 119223 | (synopsis "Shadow boxes") | 119223 | (synopsis "Shadow boxes") |
| 119224 | (description | 119224 | (description |
| 119225 | "This package defines a command @code{\\shabox} (analgous to @code{\\fbox}), | 119225 | "This package defines a command @code{\\shabox} (analogous to @code{\\fbox}), |
| 119226 | and supporting mechanisms.") | 119226 | and supporting mechanisms.") |
| 119227 | (license license:lppl))) | 119227 | (license license:lppl))) |
| 119228 | 119228 | ||
| @@ -122413,7 +122413,7 @@ and pasting from a PDF).") | |||
| 122413 | (home-page "https://ctan.org/pkg/textmerg") | 122413 | (home-page "https://ctan.org/pkg/textmerg") |
| 122414 | (synopsis "Merge text in TeX and LaTeX") | 122414 | (synopsis "Merge text in TeX and LaTeX") |
| 122415 | (description | 122415 | (description |
| 122416 | "This package repetetively produce documents from a fixed part and a variable | 122416 | "This package repetitively produce documents from a fixed part and a variable |
| 122417 | part. Such an operation is commonly used as ``mail merge'' to produce mail | 122417 | part. Such an operation is commonly used as ``mail merge'' to produce mail |
| 122418 | shots.") | 122418 | shots.") |
| 122419 | (license license:public-domain))) | 122419 | (license license:public-domain))) |
diff --git a/gnu/packages/tor-browsers.scm b/gnu/packages/tor-browsers.scm index 2718622f798..415171339d2 100644 --- a/gnu/packages/tor-browsers.scm +++ b/gnu/packages/tor-browsers.scm | |||
| @@ -494,7 +494,7 @@ Browser.") | |||
| 494 | "build"))))) | 494 | "build"))))) |
| 495 | (add-after 'patch-cargo-checksums 'remove-cargo-frozen-flag | 495 | (add-after 'patch-cargo-checksums 'remove-cargo-frozen-flag |
| 496 | (lambda _ | 496 | (lambda _ |
| 497 | ;; Remove --frozen flag from cargo invokation, otherwise it'll | 497 | ;; Remove --frozen flag from cargo invocation, otherwise it'll |
| 498 | ;; complain that it's not able to change Cargo.lock. | 498 | ;; complain that it's not able to change Cargo.lock. |
| 499 | ;; https://bugzilla.mozilla.org/show_bug.cgi?id=1726373 | 499 | ;; https://bugzilla.mozilla.org/show_bug.cgi?id=1726373 |
| 500 | (substitute* "build/RunCbindgen.py" | 500 | (substitute* "build/RunCbindgen.py" |
diff --git a/gnu/packages/tree-sitter.scm b/gnu/packages/tree-sitter.scm index aecb58eab72..19e32f53f11 100644 --- a/gnu/packages/tree-sitter.scm +++ b/gnu/packages/tree-sitter.scm | |||
| @@ -283,7 +283,7 @@ This package includes the @command{tree-sitter} command-line tool.") | |||
| 283 | tree-sitter- prefix to generate package name and also for generating | 283 | tree-sitter- prefix to generate package name and also for generating |
| 284 | REPOSITORY-URL value if it's not specified explicitly, TEXT is a string which | 284 | REPOSITORY-URL value if it's not specified explicitly, TEXT is a string which |
| 285 | will be used in description and synopsis. GET-CLEANUP-SNIPPET is a function, | 285 | will be used in description and synopsis. GET-CLEANUP-SNIPPET is a function, |
| 286 | it recieves GRAMMAR-DIRECTORIES as an argument and should return a G-exp, | 286 | it receives GRAMMAR-DIRECTORIES as an argument and should return a G-exp, |
| 287 | which will be used as a snippet in origin." | 287 | which will be used as a snippet in origin." |
| 288 | (let* ((multiple? (> (length grammar-directories) 1)) | 288 | (let* ((multiple? (> (length grammar-directories) 1)) |
| 289 | (grammar-names (string-append text " grammar" (if multiple? "s" ""))) | 289 | (grammar-names (string-append text " grammar" (if multiple? "s" ""))) |
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index 11f7c40b98a..c921426b7fe 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm | |||
| @@ -586,7 +586,7 @@ commit or run any Git arbitrary command.") | |||
| 586 | (synopsis "Statusline for Vim") | 586 | (synopsis "Statusline for Vim") |
| 587 | (description | 587 | (description |
| 588 | "@code{vim-airline} is an extensible statusline for Vim. | 588 | "@code{vim-airline} is an extensible statusline for Vim. |
| 589 | It can be extended and costumized with themes, works with unicode fonts | 589 | It can be extended and customized with themes, works with unicode fonts |
| 590 | and powerline symbols, etc.") | 590 | and powerline symbols, etc.") |
| 591 | (home-page "https://github.com/vim-airline/vim-airline") | 591 | (home-page "https://github.com/vim-airline/vim-airline") |
| 592 | (license license:expat))) | 592 | (license license:expat))) |
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 6e950592fcf..0e6153d7bd3 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm | |||
| @@ -2431,7 +2431,7 @@ and provides animations for switching between backgrounds.") | |||
| 2431 | (synopsis "Notification daemon with a graphical interface") | 2431 | (synopsis "Notification daemon with a graphical interface") |
| 2432 | (description | 2432 | (description |
| 2433 | "This package provides a notification daemon for the Sway Wayland | 2433 | "This package provides a notification daemon for the Sway Wayland |
| 2434 | compository, supporting the following featuers: | 2434 | compository, supporting the following features: |
| 2435 | 2435 | ||
| 2436 | @itemize | 2436 | @itemize |
| 2437 | @item Keyboard shortcuts | 2437 | @item Keyboard shortcuts |
diff --git a/gnu/services/audio.scm b/gnu/services/audio.scm index 6515d53dbd6..5091d7fc137 100644 --- a/gnu/services/audio.scm +++ b/gnu/services/audio.scm | |||
| @@ -443,7 +443,7 @@ example @file{/var/log/mpd.log}." | |||
| 443 | 443 | ||
| 444 | (log-level | 444 | (log-level |
| 445 | maybe-string | 445 | maybe-string |
| 446 | "Supress any messages below this threshold. | 446 | "Suppress any messages below this threshold. |
| 447 | The available values, in decreasing order of verbosity, are: @code{verbose}, | 447 | The available values, in decreasing order of verbosity, are: @code{verbose}, |
| 448 | @code{info}, @code{notice}, @code{warning} and @code{error}.") | 448 | @code{info}, @code{notice}, @code{warning} and @code{error}.") |
| 449 | 449 | ||
diff --git a/gnu/services/backup.scm b/gnu/services/backup.scm index 99a79ff5fbe..4d8cf167f04 100644 --- a/gnu/services/backup.scm +++ b/gnu/services/backup.scm | |||
| @@ -129,7 +129,7 @@ values that can be lowered to strings.") | |||
| 129 | (extra-flags | 129 | (extra-flags |
| 130 | (list-of-lowerables '()) | 130 | (list-of-lowerables '()) |
| 131 | "A list of values that are lowered to strings. These will be passed as | 131 | "A list of values that are lowered to strings. These will be passed as |
| 132 | command-line arguments to the current job @command{restic backup} invokation.")) | 132 | command-line arguments to the current job @command{restic backup} invocation.")) |
| 133 | 133 | ||
| 134 | (define list-of-restic-backup-jobs? | 134 | (define list-of-restic-backup-jobs? |
| 135 | (list-of restic-backup-job?)) | 135 | (list-of restic-backup-job?)) |
diff --git a/gnu/services/docker.scm b/gnu/services/docker.scm index 3af0f792701..5837784c7f1 100644 --- a/gnu/services/docker.scm +++ b/gnu/services/docker.scm | |||
| @@ -567,7 +567,7 @@ documentation for semantics.") | |||
| 567 | (extra-arguments | 567 | (extra-arguments |
| 568 | (list '()) | 568 | (list '()) |
| 569 | "A list of strings, gexps or file-like objects that will be directly passed | 569 | "A list of strings, gexps or file-like objects that will be directly passed |
| 570 | to the @command{docker run} invokation." | 570 | to the @command{docker run} invocation." |
| 571 | (sanitizer oci-sanitize-extra-arguments))) | 571 | (sanitizer oci-sanitize-extra-arguments))) |
| 572 | 572 | ||
| 573 | (define oci-container-configuration->options | 573 | (define oci-container-configuration->options |
diff --git a/gnu/services/linux.scm b/gnu/services/linux.scm index e683da6bac8..fb089b965f8 100644 --- a/gnu/services/linux.scm +++ b/gnu/services/linux.scm | |||
| @@ -373,7 +373,7 @@ more information)." | |||
| 373 | ;; despite the name of the command-line option | 373 | ;; despite the name of the command-line option |
| 374 | (scan? | 374 | (scan? |
| 375 | (boolean #t) | 375 | (boolean #t) |
| 376 | "Scan for cachable objects." | 376 | "Scan for cacheable objects." |
| 377 | (serializer empty-serializer)) | 377 | (serializer empty-serializer)) |
| 378 | 378 | ||
| 379 | ;; sole required field in the configuration file | 379 | ;; sole required field in the configuration file |
diff --git a/gnu/system/examples/raspberry-pi-64.tmpl b/gnu/system/examples/raspberry-pi-64.tmpl index 414d8ac7a54..971f778cb28 100644 --- a/gnu/system/examples/raspberry-pi-64.tmpl +++ b/gnu/system/examples/raspberry-pi-64.tmpl | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | ;; UEFI firmware with ACPI data is usually assumed to be existing on PCs. | 7 | ;; UEFI firmware with ACPI data is usually assumed to be existing on PCs. |
| 8 | 8 | ||
| 9 | ;; It expects the boot-partition to be mounted as boot/efi in the same way | 9 | ;; It expects the boot-partition to be mounted as boot/efi in the same way |
| 10 | ;; as it is usually expeted on PCs with UEFI firmware. | 10 | ;; as it is usually expected on PCs with UEFI firmware. |
| 11 | 11 | ||
| 12 | (use-modules (gnu) | 12 | (use-modules (gnu) |
| 13 | (gnu artwork) | 13 | (gnu artwork) |
