me
/
guix
Archived
1
0
Fork 0
Commit Graph

108365 Commits (e64a9baad0511ad8b78cc0d475dfa0f53a395a90)

Author SHA1 Message Date
Maxim Cournoyer bcebf25561
gnu: h-client: Fix build.
* gnu/packages/hardware.scm (h-client) [phases]: Replace sbin/lspci by
bin/lspci in wrap-more phase.
2023-07-29 12:01:33 -04:00
Maxim Cournoyer 2c66262980
gnu: po4a: Update to 0.69.
* gnu/packages/gettext.scm (po4a): Update to 0.69.
2023-07-29 12:01:33 -04:00
Arun Isaac 6db0d1484e
gnu: hitch: Do not return #t from custom phases.
* gnu/packages/web.scm (hitch)[arguments]: Do not return #t from custom
phases.
2023-07-29 13:24:49 +01:00
Arun Isaac 5a462c0d3d
gnu: hitch: Rewrite grep command to not use perl regexps.
* gnu/packages/web.scm (hitch)[arguments]: Rewrite grep command in a test to
not use perl regexps.
2023-07-29 13:22:42 +01:00
fanquake a11107a3b2
gnu: weechat: Update to 4.0.2.
* gnu/packages/irc.scm (weechat): Update to 4.0.2.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-28 22:12:56 +08:00
Wojtek Kosior cbc8143d93
gnu: libharu: Update to 2.4.3.
* gnu/packages/pdf.scm (libharu): Update to 2.4.3.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-28 22:11:31 +08:00
Andy Tai b05e5030a3
gnu: openshot: Update to 3.1.1.
* gnu/packages/video.scm (openshot): Update to 3.1.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-28 22:08:22 +08:00
Distopico 03a817145a
gnu: direnv: Update to 2.32.3.
This version adds support to `guix shell`
instead of `guix environment` by default.

* gnu/packages/shellutils.scm (direnv): Update to 2.32.3.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-28 22:06:52 +08:00
Andy Tai 52dbc3d084
gnu: xnedit: Update to 1.5.0.
* gnu/packages/text-editors.scm (xnedit): Update to 1.5.0.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-28 22:05:38 +08:00
Hilton Chain 1f0c02d838
gnu: iwd: Update to 2.7.
* gnu/packages/networking.scm (iwd): Update to 2.7.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-28 22:01:39 +08:00
Hilton Chain 8adbfdd699
gnu: ell: Update to 0.57.
* gnu/packages/linux.scm (ell): Update to 0.57.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-28 22:00:20 +08:00
TakeV 667974a980
gnu: Add endgame-singularity.
* gnu/packages/games.scm (endgame-singularity): New variable.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-28 21:48:59 +08:00
Efraim Flashner 35c8d631d2
gnu: linux-libre-arm64-generic: Add support for ath9k wireless.
* gnu/packages/linux.scm (linux-libre-arm64-generic)[extra-options): Add
configuration for ath9k_htc.
2023-07-27 19:36:46 +03:00
Maxim Cournoyer c7e45139fa
Revert "services: mpd: Add an 'update' action to trigger a database update."
This reverts commit e1070ee160.  Rationale: this
only works with the default 'endpoints'.  The 'auto-update?' option should be
sufficient to trigger a database update automatically anyway.
2023-07-26 12:04:37 -04:00
Maxim Cournoyer 776317e707
services: mpd: Provision a default cache directory and set HOME.
Relates to <https://issues.guix.gnu.org/63082>.

* gnu/services/audio.scm (mpd-shepherd-service): Create a default .cache
directory.  Use mkdir-p/perms and refactor loop.  Set the HOME environment
variables.
2023-07-26 10:40:16 -04:00
Maxim Cournoyer 07bb69d52c
services: mpd: Auto-detect mpd-output mixer type by default.
Relates to <https://issues.guix.gnu.org/63082>.

* gnu/services/audio.scm (mpd-output) [mixer-type]: Change default value from
"none" to unspecified.
* doc/guix.texi (Audio Services): Regenerate doc.
2023-07-26 10:40:16 -04:00
Maxim Cournoyer 03795e2ba2
system: accounts: Export <user-account>. 2023-07-26 10:40:16 -04:00
Maxim Cournoyer f16c7188f4
services: Avoid 'delete' overrides warning in audio module.
* gnu/services/audio.scm: Hide 'delete' on (gnu services) import.
2023-07-26 10:40:16 -04:00
Maxim Cournoyer 0db2fa1ac0
services: mpd: Do not rotate logs when using syslog.
* gnu/services/audio.scm (mpd-log-rotation): Conditionlize based on the value
of LOG-FILE.
2023-07-26 10:40:16 -04:00
Maxim Cournoyer 131746885c
services: mpd: Log to syslog by default.
Rationale: the tristate value was awkward to deal with, the default log file
name was odd (/var/log/mpd/log) and it required special attention to create
the 'mpd' parent directory as root and chowning it to the MPD user.  It also
didn't match the default behavior of MPD, which is to log to systemd or syslog
unless a log file is specified.

* gnu/services/audio.scm (mpd-log-file-sanitizer): New procedure.
(mpd-configuration) [log-file]: Remove default maybe value.  Add sanitizer.
(mpd-shepherd-service): Validate the log file parent directory exists and has
the right permissions.  Conditionally add syslogd to requirements.
(mympd-log-to-sanitizer): New procedure.
(mympd-configuration) [log-to]: Change type to maybe-string.  Update doc and
add sanitizer.
(mympd-shepherd-service) [requirement]: Fix to use syslogd.  Adjust
accordingly.
[start] Adjust accordingly.
(mympd-log-rotation): Check log-to via maybe-value-set?.
* doc/guix.texi (Audio Services): Update doc.
2023-07-26 10:40:15 -04:00
Maxim Cournoyer a5d611c19b
services: mpd; Refactor start slot directory initialization.
* gnu/services/audio.scm (mpd-shepherd-service): Standardize the way the log
file parent and other directories are initialized in the start slot.
(mympd-shepherd-service): Likewise.
2023-07-26 10:40:15 -04:00
Maxim Cournoyer 98a46c9da6
services: mpd: List log-level in decreasing verbosity order in doc.
* gnu/services/audio.scm (mpd-configuration) [log-level]: List log-level in
decreasing verbosity order in doc.
* doc/guix.texi (Audio Services): Update doc.
2023-07-26 10:40:15 -04:00
Distopico 67cc7b1635
gnu: Add calc.
* gnu/packages/maths.scm (calc): New variable.

Co-authored-by: Andreas Enge <andreas@enge.fr>
2023-07-26 16:31:36 +02:00
David Elsing 2e3edb38a5
gnu: python-pymol: Fix launch script.
* gnu/packages/chemistry.scm (python-pymol)[#:phases]: Add 'disable-unchroot.
[native-inputs]: Remove python-setuptools.

Signed-off-by: Andreas Enge <andreas@enge.fr>
2023-07-26 16:11:31 +02:00
Christopher Baines 9ca9b0afb6
gnu: openjdk9: Fix build on aarch64.
* gnu/packages/java.scm (openjdk9)[arguments]: Add 'patch-for-aarch64 phase to
remove duplicate line in interp_masm_aarch64.hpp.

Signed-off-by: Andreas Enge <andreas@enge.fr>
2023-07-26 15:56:26 +02:00
Sharlatan Hellseher f22c20e7ca
gnu: Add glnemo2.
* gnu/packages/astronomy.scm (glnemo2): New variable.

Signed-off-by: Andreas Enge <andreas@enge.fr>
2023-07-26 15:49:49 +02:00
Sharlatan Hellseher 6397f1326d
gnu: Add ccfits.
* gnu/packages/astronomy.scm (ccfits): New variable.

Signed-off-by: Andreas Enge <andreas@enge.fr>
2023-07-26 15:33:27 +02:00
Hilton Chain e05dcecd0d
gnu: python-shiboken-6: Remove inherited workaround.
Fixes: <https://issues.guix.gnu.org/64803>.

* gnu/packages/qt.scm (python-shiboken-6)[arguments]<#:phases>: Delete
'workaround-importlib-error, which breaks the build.

Reported-by: Formbi <formbi@protonmail.com>
Signed-off-by: Andreas Enge <andreas@enge.fr>
2023-07-26 13:28:59 +02:00
Sharlatan Hellseher 707682ac75
gnu: cfitsio: Download source over HTTPS.
* gnu/packages/astronomy.scm (cfitsio)[source]: Use HTTPS.

Signed-off-by: Andreas Enge <andreas@enge.fr>
2023-07-26 12:19:54 +02:00
Christopher Baines 9312c68334
gnu: guix-build-coordinator: Update to 0-86.f39f160.
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-86.f39f160.
[arguments]: Update style.
2023-07-26 10:49:07 +01:00
Christopher Baines a62c8a80cb
gnu: nar-herder: Update to 0-21.53682fa.
* gnu/packages/package-management.scm (nar-herder): Update to 0-21.53682fa.
[arguments]: Update style.
2023-07-26 10:45:16 +01:00
Christopher Baines ad9bcc1361
gnu: guix-data-service: Update to 0.0.1-42.1c75394.
* gnu/packages/web.scm (guix-data-service): Update to 0.0.1-42.1c75394.
[arguments]: Update style.
2023-07-26 10:39:26 +01:00
Christopher Baines a8b4ab61f3
services: guix-data-service: Unlink the two shepherd services.
So that they can be restarted in dependently.

* gnu/services/guix.scm (guix-data-service-shepherd-services): Don't require
the main service from the jobs service.
2023-07-26 10:31:58 +01:00
Christopher Baines d979197eaf
gnu: Fix guile-for-guile-emacs builder.
I think this broke in c4c08775a8.

* gnu/packages/guile.scm (guile-for-guile-emacs)[arguments]: Switch to gexp
for phases.
2023-07-26 10:31:58 +01:00
Juliana Sims ca133a7c4d
gnu: Add rvvm.
* gnu/packages/virtualization.scm (rvvm): New variable.

Co-authored-by: Efraim Flashner <efraim@flashner.co.il>
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2023-07-26 11:31:15 +03:00
Efraim Flashner 713dca1399
gnu: toot: Update to 0.38.1.
* gnu/packages/mastodon.scm (toot): Update to 0.38.1.
[inputs]: Add python-tomlkit.
2023-07-26 09:11:56 +03:00
Efraim Flashner f76ef3f759
gnu: urlscan: Update to 1.0.1.
* gnu/packages/mail.scm (urlscan): Update to 1.0.1.
2023-07-26 08:53:09 +03:00
Efraim Flashner 8f5157bd82
gnu: mpv: Update to 0.36.0.
* gnu/packages/video.scm (mpv): Update to 0.36.0.
2023-07-26 08:30:40 +03:00
Tobias Geerinckx-Rice bfb480e76f
gnu: qemu: Update to 7.2.4.
* gnu/packages/virtualization.scm (qemu): Update to 7.2.4.
2023-07-23 02:00:00 +02:00
Maxim Cournoyer 005912c595
services: mpd: Rename %set-user-group to set-user-group.
The convention to use % as a prefix is for "special" variables rather than
procedures.

* gnu/services/audio.scm (%set-user-group): Rename to...
(set-user-group): ... this.
2023-07-25 13:04:18 -04:00
Maxim Cournoyer 42c8a2e296
services: mpd: Streamline mpd-user-sanitizer and mympd-user-sanitizer.
* gnu/services/audio.scm (mpd-user-sanitizer, %mympd-user): Remove extraneous
group field, already inherited.
(%mpd-user, %mympd-user): Clarify %lazy-group explanatory comment.  Fix
indentation.
2023-07-25 13:04:18 -04:00
Maxim Cournoyer e1070ee160
services: mpd: Add an 'update' action to trigger a database update.
* gnu/services/audio.scm (mpd-shepherd-service): Register a new update action.
* doc/guix.texi (Audio Services): Document it.
2023-07-25 13:04:17 -04:00
Maxim Cournoyer 6a57bf9612
services: mpd: Add auto-update? field to mpd-configuration.
* gnu/services/audio.scm (mpd-configuration) [auto-update?]: New field.
* doc/guix.texi (Audio Services): Update doc.
2023-07-25 13:04:12 -04:00
Efraim Flashner 11751b016d
gnu: opensbi: Remove configure-flags.
The 'configure phase is removed and nothing uses it.

* gnu/packages/firmware.scm (make-opensbi-package)[arguments]: Remove
configure-flags.
2023-07-25 16:07:02 +03:00
Efraim Flashner 1b95a34405
gnu: opensbi: Update to 1.3.1.
* gnu/packages/firmware.scm (make-opensbi-package): Update to 1.3.1.
2023-07-25 16:07:02 +03:00
Andre A. Gomes dce70730b8
gnu: nyxt: Update to 3.5.0.
* gnu/packages/web-browsers.scm (nyxt): Update to 3.5.0.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
2023-07-25 14:05:21 +02:00
Andre A. Gomes d2674ff89a
gnu: cl-nasdf: Update to 0.1.6.
* gnu/packages/lisp-xyz.scm (sbcl-nasdf): Update to 0.1.6.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
2023-07-25 14:03:38 +02:00
Guillaume Le Vaillant 81f0417417
gnu: hackrf: Update to 2023.01.1.
* gnu/packages/radio.scm (hackrf): Update to 2023.01.1.
2023-07-25 12:25:34 +02:00
Tobias Geerinckx-Rice 76e041f9ee
gnu: lvm2: Update to 2.03.21.
* gnu/packages/linux.scm (lvm2): Update to 2.03.21.
[source]: Remove patch.  Don't explicitly return #t from snippet.
[arguments]: Don't explicitly return #t from phases.
* gnu/packages/patches/lvm2-static-link.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2023-07-23 02:00:00 +02:00
Tobias Geerinckx-Rice 7a56d216fc
gnu: dkimproxy: Wrap with perl-cryptx.
Fixes ‘Can't locate Crypt/PK/Ed25519.pm in @INC’.

* gnu/packages/mail.scm (dkimproxy)[inputs]: Add perl-cryptx.
[arguments]: Wrap the scripts with it.
2023-07-23 02:00:00 +02:00
Tobias Geerinckx-Rice d01cf7e3c3
gnu: virt-viewer: Fix build.
* gnu/packages/spice.scm (virt-viewer)[arguments]: Add a new
'build-with-recent-meson phase.
2023-07-23 02:00:00 +02:00
Distopico 3adde30af5
gnu: Add sdkmanager.
* gnu/packages/android.scm (sdkmanager): New variable.

Co-authored-by: Andreas Enge <andreas@enge.fr>
2023-07-24 17:38:29 +02:00
Guillaume Le Vaillant cf9904bcc8
gnu: cl-ironclad: Update to 0.59.
* gnu/packages/lisp-xyz.scm (sbcl-ironclad): Update to 0.59.
2023-07-24 10:27:45 +02:00
Efraim Flashner a0c387cb79
gnu: nss: Fix building on powerpc-linux.
* gnu/packages/nss.scm (nss)[arguments]: Skip tests on powerpc-linux.
Adjust the configure-flags when building for powerpc-linux to not use
features unavailable for that architecture.
2023-07-24 08:14:58 +03:00
Ricardo Wurmus b5af0b9c01
gnu: Add python-openai.
* gnu/packages/python-web.scm (python-openai): New variable.
2023-07-23 23:08:47 +02:00
Ricardo Wurmus b95b34d6a3
gnu: Add python-fastapi-csrf-protect.
* gnu/packages/python-web.scm (python-fastapi-csrf-protect): New variable.
2023-07-23 23:08:47 +02:00
Ricardo Wurmus e332dfab61
gnu: Add r-degreport.
* gnu/packages/bioconductor.scm (r-degreport): New variable.
2023-07-23 23:08:47 +02:00
Ricardo Wurmus cc14e04c8e
gnu: Add r-wheatmap.
* gnu/packages/cran.scm (r-wheatmap): New variable.
2023-07-23 23:08:47 +02:00
Ricardo Wurmus 871cb5295c
gnu: Add r-setrng.
* gnu/packages/cran.scm (r-setrng): New variable.
2023-07-23 23:08:47 +02:00
Tobias Geerinckx-Rice 80afaaf4e3
gnu: darktable: Update to 4.4.2.
* gnu/packages/photo.scm (darktable): Update to 4.4.2.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice b61f2208c7
gnu: hwinfo: Remove input labels.
* gnu/packages/hardware.scm (hwinfo)[inputs]:
Remove input labels.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice e47f2cd387
gnu: hwinfo: Update to 23.2.
* gnu/packages/hardware.scm (hwinfo): Update to 23.2.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice 4d958375ea
gnu: godot: Update to 4.1.1.
* gnu/packages/game-development.scm (godot): Update to 4.1.1.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice ed8b10ede9
gnu: emacs-pos-tip: Update to 0.4.7.
* gnu/packages/emacs-xyz.scm (emacs-pos-tip): Update to 0.4.7.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice 806907ff83
gnu: mplayer: Use #:configure-flags.
* gnu/packages/video.scm (mplayer)[arguments]: Move configure flags
to their proper keyword, and honour them in the 'configure phase.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice 96727475fb
gnu: mplayer: Use G-expressions.
* gnu/packages/video.scm (mplayer)[arguments]:
Rewrite as G-expressions.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice c89173cf46
gnu: mplayer: Remove input labels.
* gnu/packages/video.scm (mplayer)[inputs]:
Remove input labels.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice 51bf90c72e
gnu: mplayer: Update to 1.5.
* gnu/packages/video.scm (mplayer): Update to 1.5.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice acd9d1b9b2
gnu: python-compreffor: Mark up description.
* gnu/packages/fontutils.scm (python-compreffor)[synopsis, description]:
Use @acronym{}.
2023-07-16 02:00:07 +02:00
Tobias Geerinckx-Rice 173ee74c0b
gnu: python-compreffor: Update to 0.5.4.
* gnu/packages/fontutils.scm (python-compreffor): Update to 0.5.4.
2023-07-16 02:00:07 +02:00
Liliana Marie Prikler 445a035908
gnu: Remove sky.
This package, along with other SCUMMVM-based games violate the FSDG: they are
neither built from nor point towards their corresponding source code.
See <https://lists.gnu.org/archive/html/guix-devel/2022-08/msg00039.html>
and <https://lists.gnu.org/archive/html/guix-devel/2023-06/msg00091.html>
for more information.

* gnu/packages/games.scm (sky): Delete variable.
2023-07-23 09:50:07 +02:00
Liliana Marie Prikler 6ac90e8942
gnu: Remove queen.
This package, along with other SCUMMVM-based games violate the FSDG: they are
neither built from nor point towards their corresponding source code.
See <https://lists.gnu.org/archive/html/guix-devel/2022-08/msg00039.html>
and <https://lists.gnu.org/archive/html/guix-devel/2023-06/msg00091.html>
for more information.

* gnu/packages/games.scm (make-queen-package, queen, queen-de, queen-fr)
(queen-it): Delete variable.
2023-07-23 09:50:07 +02:00
Liliana Marie Prikler 4423298863
gnu: Remove lure.
This package, along with other SCUMMVM-based games violate the FSDG: they are
neither built from nor point towards their corresponding source code.
See <https://lists.gnu.org/archive/html/guix-devel/2022-08/msg00039.html>
and <https://lists.gnu.org/archive/html/guix-devel/2023-06/msg00091.html>
for more information.

* gnu/packages/games.scm (make-lure-package, lure, lure-de, lure-es)
(lure-fr, lure-it): Delete variable.
2023-07-23 09:50:07 +02:00
Liliana Marie Prikler 29c390673d
gnu: Remove drascula.
This package, along with other SCUMMVM-based games violate the FSDG: they are
neither built from nor point towards their corresponding source code.
See <https://lists.gnu.org/archive/html/guix-devel/2022-08/msg00039.html>
and <https://lists.gnu.org/archive/html/guix-devel/2023-06/msg00091.html>
for more information.

* gnu/packages/games.scm (drascula): Delete variable.
2023-07-23 09:50:07 +02:00
Ahmad Draidi 79af3f8366
gnu: Add emacs-consult-flycheck.
* gnu/packages/emacs-xyz.scm (emacs-consult-flycheck): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:07 +02:00
Ahmad Draidi f88a7d82c7
gnu: Add emacs-heaven-and-hell.
* gnu/packages/emacs-xyz.scm (emacs-heaven-and-hell): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:07 +02:00
Ahmad Draidi a0d576bf26
gnu: Add emacs-mu4e-dashboard.
* gnu/packages/emacs-xyz.scm (emacs-mu4e-dashboard): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:06 +02:00
Ahmad Draidi 440ce641cc
gnu: Add emacs-persistent-scratch.
* gnu/packages/emacs-xyz.scm (emacs-persistent-scratch): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:06 +02:00
Ahmad Draidi 4b83e94bd8
gnu: Add emacs-mode-line-bell.
* gnu/packages/emacs-xyz.scm (emacs-mode-line-bell): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:06 +02:00
Ahmad Draidi cc2e092c3d
gnu: Add emacs-project-mode-line-tag.
* gnu/packages/emacs-xyz.scm (emacs-project-mode-line-tag): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:06 +02:00
Ahmad Draidi 68945743c2
gnu: Add emacs-exotica-theme.
* gnu/packages/emacs-xyz.scm (emacs-exotica-theme): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:06 +02:00
Ahmad Draidi d41d60b608
gnu: Add emacs-zeno-theme.
* gnu/packages/emacs-xyz.scm (emacs-zeno-theme): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:06 +02:00
Ahmad Draidi 9eb37dd195
gnu: Add emacs-which-key-posframe.
* gnu/packages/emacs-xyz.scm (emacs-which-key-posframe): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:06 +02:00
Ahmad Draidi 2e19854030
gnu: Add emacs-transient-posframe.
* gnu/packages/emacs-xyz.scm (emacs-transient-posframe): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:06 +02:00
Giacomo Leidi 468e3604e4
gnu: gnome-shell-extension-dash-to-panel: Update to 56.
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-panel): Update to 56.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:06 +02:00
Ahmad Draidi 69bfb753be
gnu: Add emacs-gc-stats.
* gnu/packages/emacs-xyz.scm (emacs-gc-stats): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:06 +02:00
Ahmad Draidi 33bf4588b4
gnu: Add emacs-sweet-theme.
* gnu/packages/emacs-xyz.scm (emacs-sweet-theme): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2023-07-23 09:50:05 +02:00
Tobias Geerinckx-Rice fdfea4c4ed
gnu: brltty: Use G-expressions.
* gnu/packages/accessibility.scm (brltty)[arguments]:
Rewrite as G-expressions.
2023-07-16 02:00:04 +02:00
Tobias Geerinckx-Rice 448e75ff9b
gnu: brltty: Update to 6.6.
* gnu/packages/accessibility.scm (brltty): Update to 6.6.
2023-07-16 02:00:04 +02:00
Tobias Geerinckx-Rice a0508975dd
gnu: google-highway: Update to 1.0.5.
* gnu/packages/cpp.scm (google-highway): Update to 1.0.5.
2023-07-16 02:00:20 +02:00
Tobias Geerinckx-Rice 7febc2a787
gnu: bmake: Update to 20230711.
* gnu/packages/build-tools.scm (bmake): Update to 20230711.
2023-07-16 02:00:20 +02:00
Tobias Geerinckx-Rice 7fd173369e
gnu: conan: Update to 2.0.9.
* gnu/packages/package-management.scm (conan): Update to 2.0.9.
[arguments]: Upgrade python-pyyaml-5 to python-pyyaml.
2023-07-16 02:00:05 +02:00
宋文武 ab7bae8de3
gnu: atril: Update to 1.26.1.
* gnu/packages/mate.scm (atril): Update to 1.26.1.
2023-07-22 16:36:50 +08:00
宋文武 47a1fcb697
gnu: mate: Remove duplicated mate-utils from inputs.
* gnu/packages/mate.scm (mate)[inputs]: Remove duplicated mate-utils.
2023-07-22 16:36:50 +08:00
宋文武 0e6fd134a2
gnu: mate-icon-theme: Update to 1.26.0.
* gnu/packages/mate.scm (mate-icon-theme): Update to 1.26.0.
2023-07-22 16:36:50 +08:00
宋文武 b6b3db9f08
gnu: mate-common: Update to 1.26.0.
* gnu/packages/mate.scm (mate-common): Update to 1.26.0.
2023-07-22 16:36:50 +08:00
Andy Tai b3ecbe16d2
gnu: mate-themes: Update to 3.22.24.
* gnu/packages/mate.scm (mate-themes): Update to 3.22.24.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 4487505b3f
gnu: mate-power-manager: Update to 1.26.1.
* gnu/packages/mate.scm (mate-power-manager): Update to 1.26.1.
[inputs]: Add libsecret.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai d9a79a546f
gnu: mate-polkit: Update to 1.26.1.
* gnu/packages/mate.scm (mate-polkit): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai f1bc75893e
gnu: mate-system-monitor: Update to 1.26.0.
* gnu/packages/mate.scm (mate-system-monitor): Update to 1.26.0.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai e8c5c8c303
gnu: pluma: Update to 1.26.1.
* gnu/packages/mate.scm (pluma): Update to 1.26.1.
[inputs]: Replace gtksourceview-3 with gtksourceview-4.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai e1b8663650
gnu: engrampa: Update to 1.26.1.
* gnu/packages/mate.scm (engrampa): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 9ab2f73014
gnu: eom: Update to 1.26.1.
* gnu/packages/mate.scm (eom): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 2530dc1515
gnu: mate-utils: Update to 1.26.1.
* gnu/packages/mate.scm (mate-utils): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 8c872e03b6
gnu: mate-menus: Update to 1.26.1.
* gnu/packages/mate.scm (mate-menus): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai e09bb0155e
gnu: mate-screensaver: Update to 1.26.2.
* gnu/packages/mate.scm (mate-screensaver): Update to 1.26.2.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai e0c1a0a812
gnu: mate-netbook: Update to 1.26.0.
* gnu/packages/mate.scm (mate-netbook): Update to 1.26.0.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 4504449cb7
gnu: mate-backgrounds: Update to 1.26.0.
* gnu/packages/mate.scm (mate-backgrounds): update to 1.26.0.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 177c35a344
gnu: mate-calc: Update to 1.26.0.
* gnu/packages/mate.scm (mate-calc): Update to 1.26.0.
[inputs]: Add mpc and mpfr.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai e6403a5671
gnu: mate-user-guide: Update to 1.26.1.
* gnu/packages/mate.scm (mate-user-guide): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 70f282d1be
gnu: mate-control-center: Update to 1.26.1.
* gnu/packages/mate.scm (mate-control-center): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 0509ed6323
gnu: caja-extensions: Update to 1.26.1.
* gnu/packages/mate.scm (caja-extensions): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 6d7a9b4d70
gnu: marco: Update to 1.26.2.
* gnu/packages/mate.scm (marco): Update to 1.26.2.
[inputs]: Add libxres.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 0d82425403
gnu: caja: Update to 1.26.1.
* gnu/packages/mate.scm (caja): update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 170aaece25
gnu: mate-panel: Update to 1.26.3.
* gnu/packages/mate.scm (mate-panel): Update to 1.26.3.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 848ba48529
gnu: mate-media: Update to 1.26.1.
* gnu/packages/mate.scm (mate-media): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai fe76492e38
gnu: mate-applets: Update to 1.26.1.
* gnu/packages/mate.scm (mate-applets): Update to 1.26.1.
[inputs]: Add libnl.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 7a08744bca
gnu: libmatekbd: Update to 1.26.1.
* gnu/packages/mate.scm (libmatekbd): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 17b625e31a
gnu: libmatemixer: Update to 1.26.0.
* gnu/packages/mate.scm (libmatemixer): Update to 1.26.0.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai a20e6f2537
gnu: mate-settings-daemon: Update to 1.26.1.
* gnu/packages/mate.scm (mate-settings-daemon): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai 8f39c0d809
gnu: mate-session-manager: Update to 1.26.1.
* gnu/packages/mate.scm (mate-session-manager): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:50 +08:00
Andy Tai d2c18b9c79
gnu: mate-terminal: Update to 1.26.1.
* gnu/packages/mate.scm (mate-terminal): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:49 +08:00
Andy Tai 27d4563e82
gnu: libmateweather: Update to 1.26.1.
* gnu/packages/mate.scm (libmateweather): Update to 1.26.1.
[source]: Add libmateweather-use-TZDIR.patch.
[inputs]: Replace tzdata with tzdata-for-tests.
[arguments]: Set TZDIR, ignore test failure for 'check-timezones.sh'.
* gnu/packages/patches/libmateweather-use-TZDIR.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.

Co-authored-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:49 +08:00
Andy Tai 1c814ec90b
gnu: mate-desktop: Update to 1.26.1.
* gnu/packages/mate.scm (mate-desktop): Update to 1.26.1.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 16:36:49 +08:00
Guillaume Le Vaillant a7233e99da
gnu: welle-io: Enable airspy support.
* gnu/packages/radio.scm (welle-io)[inputs]: Add airspy.
  [arguments]: Update 'configure-flags'.
2023-07-22 10:03:58 +02:00
Guillaume Le Vaillant 29f492049f
gnu: gr-osmosdr: Enable airspy support.
* gnu/packages/radio.scm (gr-osmosdr)[inputs]: Add airspy.
2023-07-22 09:51:18 +02:00
Guillaume Le Vaillant faf9a41a12
gnu: sdrangel: Enable airspy support.
* gnu/packages/radio.scm (sdrangel)[inputs]: Add airspy.
2023-07-22 09:38:59 +02:00
Guillaume Le Vaillant f23891b71c
gnu: sdr++: Enable airspy support.
* gnu/packages/radio.scm (sdr++)[inputs]: Add airspy.
  [arguments]: Update 'configure-flags'.
2023-07-22 09:29:19 +02:00
Guillaume Le Vaillant b4a0f62832
gnu: Add soapyairspy.
* gnu/packages/radio.scm (soapyairspy): New variable.
2023-07-22 09:26:27 +02:00
Guillaume Le Vaillant 3a05604a57
gnu: Add airspy.
* gnu/packages/radio.scm (airspy): New variable.
2023-07-22 09:21:16 +02:00
Hilton Chain 8505bf9f36
gnu: tessen: Update to 2.2.1.
* gnu/packages/password-utils.scm (tessen): Update to 2.2.1.
[arguments]<#:make-flags>: Set DESTDIR.
[license]: License has been changed to GPL2-only.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 11:37:06 +08:00
Rikard Nordgren a9fcec54c6
gnu: Add perl-statistics-distributions.
* gnu/packages/perl.scm (perl-statistics-distributions): New variable.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 11:29:31 +08:00
Rikard Nordgren fb52f687f7
gnu: Add perl-test-inter.
* gnu/packages/perl-check.scm (perl-test-inter): New variable.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 11:29:31 +08:00
Ahmad Draidi 7a6294ba05
gnu: emacs-org-modern: Update to 0.10.
* gnu/packages/emacs-xyz.scm (emacs-org-modern): Update to 0.10.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 11:29:31 +08:00
Josselin Poiret 3ec8acd3df
gnu: agda-cubical: Update to 0.5.
* gnu/packages/agda.scm (agda-cubical): Update to 0.5.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
2023-07-22 11:29:31 +08:00
Tobias Geerinckx-Rice 03ae5bb866
gnu: foot: Update to 1.15.1.
* gnu/packages/terminals.scm (foot): Update to 1.15.1.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice b56fe521de
gnu: openssh: Use G-expressions.
* gnu/packages/ssh.scm (openssh)[arguments]:
Rewrite as G-expressions.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice 12971d26ef
gnu: openssh: Remove input labels.
* gnu/packages/ssh.scm (openssh)[inputs]: Remove input labels.
(openssh-sans-x)[inputs]: Use MODIFY-INPUTS.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice 4372610731
gnu: openssh: Update to 9.3p2.
* gnu/packages/ssh.scm (openssh): Update to 9.3p2.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice 8b13984fac
gnu: gitolite: Update to 3.6.13.
* gnu/packages/version-control.scm (gitolite): Update to 3.6.13.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice 6984151a83
gnu: cryfs: Update to 0.11.4.
* gnu/packages/crypto.scm (cryfs): Update to 0.11.4.
[arguments]: Remove obsolete phase.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice d23ced7cc1
gnu: mygui: Update to 3.4.2.
* gnu/packages/game-development.scm (mygui): Update to 3.4.2.
(mygui-gl)[inputs]: Add libglvnd, and a union of sdl2 and sdl2-image.
2023-07-16 02:00:08 +02:00
Tobias Geerinckx-Rice 7967da1088
gnu: labwc: Update to 0.6.4.
* gnu/packages/wm.scm (labwc): Update to 0.6.4.
2023-07-16 02:00:07 +02:00
Tobias Geerinckx-Rice fa005d8a5b
gnu: osinfo-db: Use G-expressions.
* gnu/packages/virtualization.scm (osinfo-db)[arguments]:
Rewrite as G-expressions.
2023-07-16 02:00:07 +02:00
Tobias Geerinckx-Rice ec2016e8b8
gnu: osinfo-db: Update to 20230719.
* gnu/packages/virtualization.scm (osinfo-db): Update to 20230719.
2023-07-16 02:00:07 +02:00
Tobias Geerinckx-Rice 0a62285350
gnu: gallery-dl: Update to 1.25.8.
* gnu/packages/video.scm (gallery-dl): Update to 1.25.8.
2023-07-16 02:00:07 +02:00
Tobias Geerinckx-Rice d047e824dd
gnu: qtractor: Update to 0.9.34.
* gnu/packages/music.scm (qtractor): Update to 0.9.34.
2023-07-16 02:00:07 +02:00
Tobias Geerinckx-Rice bf767b2907
gnu: purescript: Use G-expressions.
* gnu/packages/purescript.scm (purescript)[arguments]:
Rewrite as G-expressions.
2023-07-16 02:00:07 +02:00
Tobias Geerinckx-Rice 1d8220216e
gnu: purescript: Update to 0.15.10.
* gnu/packages/purescript.scm (purescript): Update to 0.15.10.
2023-07-16 02:00:07 +02:00
Tobias Geerinckx-Rice eb12f3fd8b
gnu: wla-dx: Use G-expressions.
* gnu/packages/assembly.scm (wla-dx)[arguments]:
Rewrite as G-expressions.
2023-07-16 02:00:01 +02:00