me
/
guix
Archived
1
0
Fork 0
Commit Graph

137299 Commits (6e33f0d887feb6bb2898b00a8c1b7839f6b27e49)

Author SHA1 Message Date
Jean-Pierre De Jesus DIAZ 1601508854
gnu: vim-vader: Update to 0.4.0-1.429b669.
* gnu/packages/vim.scm (vim-vader): Update to 0.4.0-1.429b669 and fix
'check phase.

Change-Id: I3dc73652596dcbded804dfc80c0ed9f2876ae89b
Signed-off-by: Christopher Baines <mail@cbaines.net>
2024-06-11 11:49:38 +01:00
宋文武 cca59ba0e3
gnu: opensurge: Update to 0.6.1.1.
* gnu/packages/games.scm (opensurge): Update to 0.6.1.1.
[inputs]: Add mesa and physfs.

Change-Id: Ia62559372757f7cfd6dc4784e2a8271bbe6d7868
Signed-off-by: Christopher Baines <mail@cbaines.net>
2024-06-11 11:46:16 +01:00
宋文武 f57a0523c4
gnu: surgescript: Update to 0.6.0.
* gnu/packages/game-development.scm (surgescript): Update to 0.6.0.

Change-Id: Ie976d33f3f2df4ac5c37476fcd9675c122a5783a
Signed-off-by: Christopher Baines <mail@cbaines.net>
2024-06-11 11:46:16 +01:00
David Wilson cef0707221
gnu: emacs-ef-themes: Update to 1.7.0.
* gnu/packages/emacs-xyz.scm (emacs-ef-themes): Update to 1.7.0.

Change-Id: I768a82eee884b1ea21c9d3b3fc693f9fe06e8abe
Signed-off-by: Christopher Baines <mail@cbaines.net>
2024-06-11 11:45:38 +01:00
Ian Eure 4cfc4692c9
gnu: jellyfin-mpv-shim: Update to 2.8.0.
* gnu/packages/video.scm (jellyfin-mpv-shim): Update to 2.8.0.

Change-Id: Icbae4392cab029c80bd8a3ce0fa756b567743c77
Signed-off-by: Christopher Baines <mail@cbaines.net>
2024-06-11 11:44:09 +01:00
Dariqq 1d5bfe4513
gnu: libwacom: Update to 2.11.0.
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>
2024-06-11 11:43:38 +01:00
Christopher Baines 0daa72e34d
git-download: Reduce builder duplication.
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
2024-06-11 11:33:43 +01:00
Christopher Baines 275f279891
hg-download: Reduce builder duplication.
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 hg-fetch is used by two different
package sources, the derivations will still differ but the builder will be
shared.

Looking at the code, becuase the ref is also in the builder, the builders have
been duplicated for a while.  The overhead is probably limited though since
hg-reference isn't used much compared to say svn-multi-reference.

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/hg-download.scm (hg-fetch): Extract out builder script and include
hash, hg ref url, and hg ref changeset in the derivation as an environment
variables.
(hg-fetch-builder): New procedure.

Change-Id: I3c3a0b4963ea1b208bf1d5137ef98666458ae2d7
2024-06-11 11:33:31 +01:00
Christopher Baines ad8d386168
svn-download: Reduce svn-fetch builder duplication.
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 svn-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
0e73f933b2.  I noticed the hash in the builder
script when wondering why the build coordinator on bayfront was substituting
svn-multi-download files over and over again.

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/svn-download.scm (svn-fetch): Extract out builder script, include hash
in the derivation as an environment variable and update the comment to be more
directive.
(svn-fetch-builder): New procedure.

Change-Id: I256b94666296ad747f494f0b497ca209b77fbfb4
2024-06-11 11:33:22 +01:00
Christopher Baines 04ca393b38
svn-download: Reduce svn-multi-fetch builder duplication.
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 svn-multi-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
0e73f933b2.  I noticed the hash in the builder
script when wondering why the build coordinator on bayfront was substituting
svn-multi-download files over and over again.

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/svn-download.scm (svn-multi-fetch): Extract out builder script, include
hash in the derivation as an environment variable and update comment to be
more directive.
(svn-multi-fetch-builder): New procedure.

Change-Id: I83c60140ae09e189ee5e5428038a9428ecb8e281
2024-06-11 11:33:05 +01:00
Efraim Flashner aed2e17768
gnu: cf-tool: Register patch.
This is a follow-up to b63343d184.

* gnu/local.mk (dist_patch_DATA): Register new patch.

Change-Id: Id251b5a5dcf5c3a7871230e319ec81dc205cfa2c
2024-06-11 12:42:31 +03:00
Efraim Flashner e542108f13
transformations: Fix powerpc64le support.
* guix/transformations.scm (tuning-compiler): Adjust the wrapper script
when building for powerpc* architectures to pass the correct flags.

Change-Id: I9d809ac9b707eb8d6afa7b843c95bce29862a752
2024-06-11 12:39:44 +03:00
Efraim Flashner 9087ee2f6e
gnu: gcc: Add tuning targets for powerpc64le-linux.
* gnu/packages/gcc.scm (%gcc-10-ppc64le-micro-architectures): New
variable.
(gcc-10, gcc-11, gcc-12, gcc-13)[properties]: Add entry in
compiler-cpu-architectures for powerpc64le.

Change-Id: I3f5d0f5949eea7ac1b1914ac1db2867f5d14aee6
2024-06-11 12:39:41 +03:00
Sharlatan Hellseher d346f392ee
gnu: go-github-com-sergi-go-diff: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-sergi-go-diff): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: If722317a42006e3bef4462b5a6fe4c0f434bd5d2
2024-06-11 10:25:30 +01:00
Artyom V. Poptsov b8b30d4041
gnu: kubo: Unbundle more inputs.
* gnu/packages/ipfs.scm (kubo): Unbundle more inputs.
  [inputs]: Add go-github-com-cenkalti-backoff-v4,
  go-github-com-cheggaaa-pb and go-github-com-tidwall-sjson. Remove
  go-github-com-mattn-go-runewidth.

Change-Id: I7cbaa336cc46d64fe66047e610384457f5e2abe0
Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-06-11 10:17:03 +01:00
Sharlatan Hellseher 17837a9749
gnu: Add go-github-com-tidwall-sjson.
* gnu/packages/golang-xyz.scm (go-github-com-tidwall-sjson): New variable.

Change-Id: I69d5c7205a440cbf2d6abcc814b6130a6a9d4e9c
2024-06-11 10:17:03 +01:00
Sharlatan Hellseher bb79b85b1e
gnu: Add go-github-com-tidwall-gjson.
* gnu/packages/golang-xyz.scm (go-github-com-tidwall-gjson): New variable.

Change-Id: If3345205e3cbc75c0a4aa51ea0e5566d6db9af71
2024-06-11 10:17:03 +01:00
Sharlatan Hellseher e76a755ece
gnu: Add go-github-com-tidwall-match.
* gnu/packages/golang-xyz.scm (go-github-com-tidwall-match): New variable.

Change-Id: I6923c2383784aeaa45d432a92c4d05f55cd3bea0
2024-06-11 10:17:03 +01:00
Sharlatan Hellseher 02bb43b722
gnu: Add go-github-com-tidwall-pretty.
* gnu/packages/golang-xyz.scm (go-github-com-tidwall-pretty): New variable.

Change-Id: Id5ebc95f579551710ef57553b96815c865e4b294
2024-06-11 10:17:03 +01:00
Artyom V. Poptsov 2ef0e4bce1
gnu: go-gopkg-in-cheggaaa-pb-v1: Rename to go-github-com-cheggaaa-pb.
* gnu/packages/golang-xyz.scm (go-gopkg-in-cheggaaa-pb-v1): Rename to
  go-github-com-cheggaaa-pb and sort alphabetically.
  (go-gopkg-in-cheggaaa-pb-v3): Inherit from go-github-com-cheggaaa-pb.

Change-Id: I945bc8646b2b4a01cf0e81bfd47a2d4fd1075dca

Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Change-Id: I42446da67c9c17aec35421a312120ad03c7fe83c
2024-06-11 10:17:03 +01:00
Artyom V. Poptsov 79d2c8e7b9
gnu: go-gopkg-in-cheggaaa-pb-v1: Update to 1.0.29.
* gnu/packages/golang-xyz.scm (go-gopkg-in-cheggaaa-pb-v1): Update to 1.0.29.
  [arguments]: Set the import path to "github.com/cheggaaa/pb".

Change-Id: I0042b64c44386d588bad7779444f1f6652619a2d
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-06-11 10:17:03 +01:00
Artyom V. Poptsov bc8a9a0063
gnu: Add go-github-com-cenkalti-backoff-v4.
* gnu/packages/golang-web.scm (go-github-com-cenkalti-backoff-v4): New variable.

Change-Id: I15ea42bdb1d3ad9a16433e5c6fa689650beb15ea
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-06-11 10:17:02 +01:00
Luis Higino b63343d184
gnu: Add cf-tool.
* gnu/packages/education.scm (cf-tool): New variable.
* gnu/packages/patches/cf-tool-add-languages.patch: New file.

Change-Id: Ib64cf9f26b3b1f3d761fa897365fce07822c3b11
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-06-11 10:17:02 +01:00
Luis Higino 21d631a3e8
gnu: Add go-github-com-k0kubun-go-ansi.
* gnu/packages/golang-xyz.scm (go-github-com-k0kubun-go-ansi): New variable.

Change-Id: I012a3b5c530f1fb7ee61e628fac216bdd966772c
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-06-11 10:17:02 +01:00
Luis Higino ca9fa4a88a
gnu: Add go-github-com-docopt-docopt-go.
* gnu/packages/golang-xyz.scm (go-github-com-docopt-docopt-go): New variable.

Change-Id: I70ab7bce1a4ac13e1b63ecb72f5b7df0b8b94b69
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-06-11 10:17:02 +01:00
Liliana Marie Prikler 693037101b
gnu: Add orfondl.
* gnu/packages/video.scm (orfondl): New variable.
[source]: Add snippet deleting prebuilt binary.
(orf-dl): Deprecate in favor of orfondl.

Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Change-Id: I3ee3ea9e603d6e4f7d0e3b32177c55d473973e90
2024-06-11 10:17:02 +01:00
Artyom V. Poptsov 9cc7fc6e79
gnu: bitwise: Update to 0.50.
* gnu/packages/maths.scm (bitwise): Update to 0.50.

Change-Id: I34958302d3385d5dbe80715bf7d955af7a4aadbd
Signed-off-by: jgart <jgart@dismail.de>
2024-06-10 18:20:18 -05:00
Aria Nolan 1035dfbadb
gnu: texlive-latexindent: Fix runtime error.
* gnu/packages/tex.scm (texlive-latexindent)[arguments]<#:phases>: Wrap Perl
script so it can find Perl libraries.
[inputs]: Add PERL-FILE-HOMEDIR and PERL-YAML-TINY.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Change-Id: I428c20f0c8aa49cc8273f41512f37b3622347ecc
2024-06-10 20:31:59 +02:00
Arun Isaac df5648daa1
gnu: mumi: Update to 0.3.0.
* gnu/packages/mail.scm (mumi): Update to 0.3.0.

Change-Id: I5893d5a2537b79a1d1e214d6f11b82f6d4b1622f
2024-06-10 14:12:27 +01:00
David Pflug 31420777b0
gnu: odamex: Update to 10.5.0.
* gnu/packages/games.scm (odamex): Update to 10.5.0.

Change-Id: I87280d58fecd1ffc52d13bd13b6b0f05721595c5
Signed-off-by: Andreas Enge <andreas@enge.fr>
2024-06-10 13:14:33 +02:00
Roman Scherer 319635c0f4
gnu: emacs-ellama: Update to 0.9.10.
* gnu/packages/emacs-xyz.scm (emacs-ellama): Update to 0.9.10.

Change-Id: I6e6f160ee88021220df9b6ba8aa6b0c2821ef0b7
Signed-off-by: Andrew Tropin <andrew@trop.in>
2024-06-10 14:48:40 +04:00
Roman Scherer d0a639a1a3
gnu: emacs-llm: Update to 0.16.1.
* gnu/packages/emacs-xyz.scm (emacs-llm): Update to 0.16.1.

Change-Id: I0d5b3960306399dd73e1876fab26f1ea25d01756
Signed-off-by: Andrew Tropin <andrew@trop.in>
2024-06-10 14:48:39 +04:00
Picnoir 7b0970fb43
gnu: rust-dns-lookup-2: Fix package tests.
This package was introduced in abfef465b2 as a
dependency for Nsncd. We can build Nsncd just fine, but building explicitly
this package is failing. The issue comes from two tests making assumption
about domain name resolution. The Guix build sandbox breaks these assumptions,
preventing the test suite to succeed. Fixing this by disabling the faulty
tests.

* gnu/packages/crates-io.scm (rust-dns-lookup-2): Skip faulty tests.

Change-Id: Idc42822d8cd72e83e9ea973820b5073ff87ad4d4
Signed-off-by: Christopher Baines <mail@cbaines.net>
2024-06-10 11:07:55 +01:00
Christopher Baines f63e6a17a1
gnu: nar-herder: Update to 0-35.76e3d60.
* gnu/packages/package-management.scm (nar-herder): Update to 0-35.76e3d60.

Change-Id: I4e5efbca03bf38ec42871d60c96294bf7647098d
2024-06-10 11:07:55 +01:00
Christopher Baines 597cbf6345
gnu: guix-build-coordinator: Update to 0-107.4ccfaff.
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-107.4ccfaff.

Change-Id: Ifb85fab8399abfcc939883518e7a235367e9f4fd
2024-06-10 11:07:55 +01:00
Christopher Baines 4fe804be9a
gnu: go-gopkg-in-alecthomas-kingpin-v2: Match name with variable.
To avoid duplicating go-github-com-alecthomas-kingpin.

* gnu/packages/golang-xyz.scm (go-gopkg-in-alecthomas-kingpin-v2)[name]: Set
to go-gopkg-in-alecthomas-kingpin-v2.

Change-Id: I1f9d2766c03393ac1268dafe490d25a7e57f7bc4
2024-06-10 11:07:55 +01:00
Christopher Baines 6ea32ab702
gnu: onnx-optimizer-for-torch2: Hide package.
As it duplicates onnx-optimizer.

* gnu/packages/machine-learning.scm (onnx-optimizer-for-torch2): Hide package.

Change-Id: I8a53805c1fbe57fac38c9de25ccc0929bddda36a
2024-06-10 11:07:55 +01:00
Christopher Baines 4d10e9f126
gnu: python-project-metadata-0.7: Remove.
As it's redundant as of 1039ec03be.

* gnu/packages/python-xyz.scm (python-pyproject-metadata-0.7): Remove
variable.
* gnu/packages/build-tools.scm (meson-python): Use python-pyproject-metadata
rather than python-pyproject-metadata-0.7.

Change-Id: I50d458ff636cfab3a262e7d0759e88f14f68081f
2024-06-10 11:07:55 +01:00
Artyom V. Poptsov 0803f0d761
gnu: feh: Update to 3.10.2.
* gnu/packages/image-viewers.scm (feh): Update to 3.10.2.

Change-Id: I4882d53304b9756be0ff66c2044c91c62dacf8a6
Signed-off-by: Andreas Enge <andreas@enge.fr>
2024-06-10 12:02:52 +02:00
Ahmad Draidi 88889137f5
gnu: labwc: Update to 0.7.2.
* gnu/packages/wm.scm (labwc): Update to 0.7.2.

Change-Id: I2ff485816069c962a9d532472e255305ce35316e
Signed-off-by: Andreas Enge <andreas@enge.fr>
2024-06-10 12:00:09 +02:00
gemmaro dffb519c59
gnu: solaar: Update to 1.1.13.
* gnu/packages/admin.scm (solaar): Update to 1.1.13.
[native-inputs]: Add python-pytest.
[propagated-inputs]: Add python-dbus-python and python-evdev.

Change-Id: I616c89ba50a0e8300c08856a96959eec7d274635
Signed-off-by: Andreas Enge <andreas@enge.fr>
2024-06-10 11:52:56 +02:00
Artyom V. Poptsov 11852360de
gnu: lesspipe: Update to 2.13.
* gnu/packages/less.scm (lesspipe): Update to 2.13.

Change-Id: Iad32d9291cb92db8c67200db26c8d914ec45cbe4
Signed-off-by: Andreas Enge <andreas@enge.fr>
2024-06-10 11:47:15 +02:00
Artyom V. Poptsov 0467da1731
gnu: maim: Update to 5.8.0.
* gnu/packages/xdisorg.scm (maim): Update to 5.8.0.
[inputs]: Add libwebp.

Change-Id: I91fb48b26bdd2393975f14c00d74f70d8f6db11f
Signed-off-by: Andreas Enge <andreas@enge.fr>
2024-06-10 11:45:37 +02:00
Timotej Lazar dc49255e21
gnu: mpop: Update to 1.4.19.
* gnu/packages/mail.scm (mpop): Update to 1.4.19.

Change-Id: I52123309eac66c4c8668a1582d183c6fce000e11
Signed-off-by: Andreas Enge <andreas@enge.fr>
2024-06-10 11:41:02 +02:00
Zheng Junjie 7c3e596d8a
gnu: zfs: Update to 2.2.4.
* gnu/packages/file-systems.scm (zfs): Update to 2.2.4.

Change-Id: I43729fb61a6b52a3305c389c8657bdcba3b5e1f0
Signed-off-by: Andreas Enge <andreas@enge.fr>
2024-06-10 11:21:01 +02:00
Janneke Nieuwenhuizen bc8a41f4a8
gnu: mes: Update to 0.26.1.
* gnu/packages/mes.scm (mes): Update to 0.26.1.

Change-Id: Ia7622262bc407e9df8e3934b0b04e156daa78596
2024-06-08 08:34:05 +02:00
Guillaume Le Vaillant 5abf9c0c6b
gnu: cl-fast-generic-functions: Fix build with sbcl >= 2.4.0.
* gnu/packages/patches/sbcl-fast-generic-functions-fix-sbcl-2.4.patch: Add
  file.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/lisp-xyz.scm (sbcl-fast-generic-functions)[source]: Use it.

Change-Id: Ifcc5b3c5c2d51570303063ca3b01f9c0b5849e88
2024-06-07 09:35:40 +02:00
Guillaume Le Vaillant f03ca652fc
gnu: cl-schemeish: Update to 0.0.1-2.872ea3d.
* gnu/packages/lisp-xyz.scm (sbcl-schemeish): Update to 0.0.1-2.872ea3d.
  [inputs]: Add sbcl-trivial-cltl2.
  [arguments]: Add 'fix-build' phase.

Change-Id: I5330053d629d39322650b34365be47074aeaf02e
2024-06-07 09:35:40 +02:00
Guillaume Le Vaillant 7df1df1489
gnu: cl-specialization-store: Disable tests.
* gnu/packages/lisp-xyz.scm (sbcl-specialization-store)[arguments]: Disable
  tests.
  (ecl-specialization-store): Simplify package definition.

Change-Id: I5dd574ac5e14a2c9a39e689af519cae45f6e59f5
2024-06-07 09:35:40 +02:00
Guillaume Le Vaillant 6aca9b80f4
gnu: cl-maxpc: Disable tests.
* gnu/packages/lisp-xyz.scm (sbcl-maxpc)[arguments]: Disable tests.

Change-Id: I4a7024657371d6d5a57bce1811a545b428da1be3
2024-06-07 09:35:40 +02:00