This is a followup to 510ad5d93c.
* tests/import-utils.scm ("beautify-description: transform fragment into
sentence"): Fix.
Change-Id: I331cb38a3460a024a789846772a074ba0b6c857c
Experience has shown that keeping too many entries increases disk usage
and, more importantly, leads to long delays when cleaning up the cache,
measured in minutes on slow or busy HDDs with hundreds of thousands of
cache entries, as is common on build machines. In those cases, the cost
of the cache outweighs its benefit.
* guix/scripts/substitute.scm (%narinfo-expired-cache-entry-removal-delay):
Reduce to 5 days.
(cached-narinfo-expiration-time)[max-ttl]: Reduce to 2 days.
Change-Id: Iab212f572ee9041be61716423a3c014f93fe81ed
* doc/guix.texi (Continuous Integration): Change ‘name’ field of
‘specification’ to be a symbol, as written in upstream Cuirass doc.
Change-Id: I0a8cddfb8ab47f627a01459393aaf346028bb3f6
This avoids generating new packages at run time and makes them visible
to ‘fold-packages’.
* gnu/packages/audio.scm (stargate-sbsms, stargate-soundtouch): New
variables, taken from…
* gnu/packages/music.scm (stargate)[inputs]: … here. Use them.
Change-Id: I2344d82756b3b7295c505fbdb36886b74abe5d5d
Fixes a regression introduced in
275f279891.
* guix/hg-download.scm (hg-fetch-builder): Remove calls to
‘string->symbol’.
Change-Id: I2e049d1ecb8860b6f946ca51358aaba22bdc9e2e
* doc/guix.texi (gitile-configuration): Update field name
nginx-server-block to nginx.
Change-Id: I215d3d57c1cb88271c580fa1426a661477a775f7
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu/packages/music.scm (cmus): Switch to new style.
[arguments]: Use g-exps. Drop trailing #t from 'configure phase.
Change-Id: Ia840202adddf390bd29a0fb57fa1a3294dd7a61a
Signed-off-by: jgart <jgart@dismail.de>
Includes fixes for CVE-2024-5688, CVE-2024-5690, CVE-2024-5691,
CVE-2024-5692, CVE-2024-5693, CVE-2024-5696, CVE-2024-5700, and
CVE-2024-5702.
* gnu/packages/gnuzilla.scm (%icecat-base-version, %icecat-build-id): Update.
(icecat-source): Update gnuzilla commit, base version, and hashes.
* gnu/packages/patches/mes-0.26.1-fixups.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/mes.scm (mes)[source]: Use it.
Change-Id: I071d442232c8e4bbce2e85cac0f73fb9205a678c
As this was renamed in 2ef0e4bce1.
* gnu/packages/flashing-tools.scm (wally-cli)[native-inputs]: Change
go-gopkg-in-cheggaaa-pb-v1 to go-github-com-cheggaaa-pb.
Change-Id: I7f7764f4e9e9d91381b230d49ed32b549e987828
* gnu/packages/pantheon.scm (pantheon-calculator): Update to 8.0.0.
[arguments]: Use gexp for phases.
Change-Id: I7d935b0eef3d14990fc4dbbd408febe8de977a29
Signed-off-by: Christopher Baines <mail@cbaines.net>
The spinit script is required for xspice to work correctly.
* gnu/packages/engineering.scm (ngspice)[arguments]: Delete the
'delete-scripts phase rather than the non-existent 'delete-script-files phase.
Signed-off-by: Christopher Baines <mail@cbaines.net>
Change-Id: I4c3620c6d42e407904577a9559e3d89016e895f6
With the 2.9 release the license got clarified to be hpnd.
* gnu/packages/xdisorg.scm (libwacom): Update to 2.11.0.
[native-inputs]: Remove python-evdev.
[inputs]: Add python, python-libevdev, python-pyudev.
[propagated-inputs]: Add libevdev.
[license]: Correct license to hpnd.
Change-Id: Ib5276beaec2c23e74532cb157225fc3a9a2e25e7
Signed-off-by: Christopher Baines <mail@cbaines.net>
Rather than creating a different builder in the store for every different
download (by hash), remove the hash from the builder and pass it in via an
environment variable. This means that when git-fetch is used by two different
package sources, the derivations will still differ but the builder will be
shared.
It used to be this way, but changed with
264fdbcaff. I noticed this through looking at
the same problem with svn-multi-fetch.
To try and make the effects of introducing variance in to the builder script
more obvious, separate it out in to it's own procedure, so that it's clearer
when there's new data going in that could cause variance.
* guix/git-download.scm (git-fetch/in-band*): Extract out builder script,
include hash in the derivation as an environment variable and update the
comment to be more directive.
(git-fetch-builder): New procedure.
Change-Id: I59c9fc445667c0e7dc44bcb706818300c394a1e5