aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* guix: profiles: Delete generated files.Nicolas Goaziou2023-07-29
| | | | | | * guix/profiles.scm (texlive-font-maps): Delete generated files. Fixes <https://issues.guix.gnu.org/64906>.
* download-nar: Improve output.Christopher Baines2023-07-28
| | | | | Report errors that occur, output the "Downloading from " line before starting to report progress and end the output with a newline.
* gnu: weechat: Update to 4.0.2.fanquake2023-07-28
| | | | | | * gnu/packages/irc.scm (weechat): Update to 4.0.2. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
* gnu: libharu: Update to 2.4.3.Wojtek Kosior2023-07-28
| | | | | | * gnu/packages/pdf.scm (libharu): Update to 2.4.3. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
* gnu: openshot: Update to 3.1.1.Andy Tai2023-07-28
| | | | | | * gnu/packages/video.scm (openshot): Update to 3.1.1. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
* gnu: direnv: Update to 2.32.3.Distopico2023-07-28
| | | | | | | | | 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>
* gnu: xnedit: Update to 1.5.0.Andy Tai2023-07-28
| | | | | | * gnu/packages/text-editors.scm (xnedit): Update to 1.5.0. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
* gnu: iwd: Update to 2.7.Hilton Chain2023-07-28
| | | | | | * gnu/packages/networking.scm (iwd): Update to 2.7. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
* gnu: ell: Update to 0.57.Hilton Chain2023-07-28
| | | | | | * gnu/packages/linux.scm (ell): Update to 0.57. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
* scripts: system: Remove duplicated "--target=TRIPLET" in help messages.Hilton Chain2023-07-28
| | | | | | | | It's already included in (show-cross-build-options-help). * guix/scripts/system.scm (show-help): Remove "--target=TRIPLET". Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
* gnu: Add endgame-singularity.TakeV2023-07-28
| | | | | | * gnu/packages/games.scm (endgame-singularity): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
* gnu: linux-libre-arm64-generic: Add support for ath9k wireless.Efraim Flashner2023-07-27
| | | | | * gnu/packages/linux.scm (linux-libre-arm64-generic)[extra-options): Add configuration for ath9k_htc.
* Revert "services: mpd: Add an 'update' action to trigger a database update."Maxim Cournoyer2023-07-26
| | | | | | This reverts commit e1070ee16036f6dfb84c44aea4119e4db770356b. Rationale: this only works with the default 'endpoints'. The 'auto-update?' option should be sufficient to trigger a database update automatically anyway.
* services: mpd: Update basic example.Maxim Cournoyer2023-07-26
| | | | | | | | Relates to <https://issues.guix.gnu.org/63082>. * doc/guix.texi (Audio Services): Do not use a deprecated user form; keep the default one. Remove port. Specify a music-directory. Mention the importance of permissions on the music directory.
* services: mpd: Provision a default cache directory and set HOME.Maxim Cournoyer2023-07-26
| | | | | | | | 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.
* services: mpd: Auto-detect mpd-output mixer type by default.Maxim Cournoyer2023-07-26
| | | | | | | | 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.
* system: accounts: Export <user-account>.Maxim Cournoyer2023-07-26
|
* services: Avoid 'delete' overrides warning in audio module.Maxim Cournoyer2023-07-26
| | | | * gnu/services/audio.scm: Hide 'delete' on (gnu services) import.
* services: mpd: Do not rotate logs when using syslog.Maxim Cournoyer2023-07-26
| | | | | * gnu/services/audio.scm (mpd-log-rotation): Conditionlize based on the value of LOG-FILE.
* services: mpd: Log to syslog by default.Maxim Cournoyer2023-07-26
| | | | | | | | | | | | | | | | | | | | | 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.
* services: mpd; Refactor start slot directory initialization.Maxim Cournoyer2023-07-26
| | | | | | * 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.
* services: mpd: List log-level in decreasing verbosity order in doc.Maxim Cournoyer2023-07-26
| | | | | | * gnu/services/audio.scm (mpd-configuration) [log-level]: List log-level in decreasing verbosity order in doc. * doc/guix.texi (Audio Services): Update doc.
* gnu: Add calc.Distopico2023-07-26
| | | | | | * gnu/packages/maths.scm (calc): New variable. Co-authored-by: Andreas Enge <andreas@enge.fr>
* gnu: python-pymol: Fix launch script.David Elsing2023-07-26
| | | | | | | * gnu/packages/chemistry.scm (python-pymol)[#:phases]: Add 'disable-unchroot. [native-inputs]: Remove python-setuptools. Signed-off-by: Andreas Enge <andreas@enge.fr>
* gnu: openjdk9: Fix build on aarch64.Christopher Baines2023-07-26
| | | | | | | * 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>
* gnu: Add glnemo2.Sharlatan Hellseher2023-07-26
| | | | | | * gnu/packages/astronomy.scm (glnemo2): New variable. Signed-off-by: Andreas Enge <andreas@enge.fr>
* gnu: Add ccfits.Sharlatan Hellseher2023-07-26
| | | | | | * gnu/packages/astronomy.scm (ccfits): New variable. Signed-off-by: Andreas Enge <andreas@enge.fr>
* gnu: python-shiboken-6: Remove inherited workaround.Hilton Chain2023-07-26
| | | | | | | | | | 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>
* gnu: cfitsio: Download source over HTTPS.Sharlatan Hellseher2023-07-26
| | | | | | * gnu/packages/astronomy.scm (cfitsio)[source]: Use HTTPS. Signed-off-by: Andreas Enge <andreas@enge.fr>
* gnu: guix-build-coordinator: Update to 0-86.f39f160.Christopher Baines2023-07-26
| | | | | | * gnu/packages/package-management.scm (guix-build-coordinator): Update to 0-86.f39f160. [arguments]: Update style.
* gnu: nar-herder: Update to 0-21.53682fa.Christopher Baines2023-07-26
| | | | | * gnu/packages/package-management.scm (nar-herder): Update to 0-21.53682fa. [arguments]: Update style.
* gnu: guix-data-service: Update to 0.0.1-42.1c75394.Christopher Baines2023-07-26
| | | | | * gnu/packages/web.scm (guix-data-service): Update to 0.0.1-42.1c75394. [arguments]: Update style.
* services: guix-data-service: Unlink the two shepherd services.Christopher Baines2023-07-26
| | | | | | | 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.
* gnu: Fix guile-for-guile-emacs builder.Christopher Baines2023-07-26
| | | | | | | I think this broke in c4c08775a820868059b59c68d4dfd6be0c9d9010. * gnu/packages/guile.scm (guile-for-guile-emacs)[arguments]: Switch to gexp for phases.
* gnu: Add rvvm.Juliana Sims2023-07-26
| | | | | | | * 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>
* gnu: toot: Update to 0.38.1.Efraim Flashner2023-07-26
| | | | | * gnu/packages/mastodon.scm (toot): Update to 0.38.1. [inputs]: Add python-tomlkit.
* gnu: urlscan: Update to 1.0.1.Efraim Flashner2023-07-26
| | | | * gnu/packages/mail.scm (urlscan): Update to 1.0.1.
* gnu: mpv: Update to 0.36.0.Efraim Flashner2023-07-26
| | | | * gnu/packages/video.scm (mpv): Update to 0.36.0.
* gnu: qemu: Update to 7.2.4.Tobias Geerinckx-Rice2023-07-23
| | | | * gnu/packages/virtualization.scm (qemu): Update to 7.2.4.
* services: mpd: Rename %set-user-group to set-user-group.Maxim Cournoyer2023-07-25
| | | | | | | | 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.
* services: mpd: Streamline mpd-user-sanitizer and mympd-user-sanitizer.Maxim Cournoyer2023-07-25
| | | | | | | * 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.
* services: mpd: Add an 'update' action to trigger a database update.Maxim Cournoyer2023-07-25
| | | | | * gnu/services/audio.scm (mpd-shepherd-service): Register a new update action. * doc/guix.texi (Audio Services): Document it.
* services: mpd: Add auto-update? field to mpd-configuration.Maxim Cournoyer2023-07-25
| | | | | * gnu/services/audio.scm (mpd-configuration) [auto-update?]: New field. * doc/guix.texi (Audio Services): Update doc.
* etc: Add a Qt team.Maxim Cournoyer2023-07-25
| | | | | * etc/teams.scm.in (qt): New variable. ('Maxim Cournoyer'): Add to qt team.
* etc: Add a telephony team.Maxim Cournoyer2023-07-25
| | | | | * etc/teams.scm.in (telephony): New variable. ('Maxim Cournoyer'): Add to telephony team.
* cuirass: Update hurd-manifest with newly supported packages.Janneke Nieuwenhuizen2023-07-25
| | | | | | * build-aux/cuirass/hurd-manifest.scm: Include full build of python-minimal and gettext-minimal (no longer without-tests). Add grub-minimal, grub, guix-without-tests and guile-3.0 (no longer delete it from guix dependencies).
* transformations: Wrap go binary.Efraim Flashner2023-07-25
| | | | | | | * guix/transformations.scm (tuning-compiler): Adjust to wrap the go binary with the appropriate environment variable. (build-system-with-tuning-compiler): Remove custom 'set-microarchitecture phase.
* gnu: opensbi: Remove configure-flags.Efraim Flashner2023-07-25
| | | | | | | The 'configure phase is removed and nothing uses it. * gnu/packages/firmware.scm (make-opensbi-package)[arguments]: Remove configure-flags.
* gnu: opensbi: Update to 1.3.1.Efraim Flashner2023-07-25
| | | | * gnu/packages/firmware.scm (make-opensbi-package): Update to 1.3.1.
* gnu: nyxt: Update to 3.5.0.Andre A. Gomes2023-07-25
| | | | | | * gnu/packages/web-browsers.scm (nyxt): Update to 3.5.0. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>