summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* gnu: Add pict.base-for-series-11342base-for-series-11341base-for-series-11340base-for-series-11339base-for-series-11338base-for-series-11337base-for-series-11335base-for-series-11333base-for-series-11332base-for-series-11331base-for-series-11330Maxim Cournoyer2022-02-08
| | | | * gnu/packages/check.scm (pict): New variable.
* gnu: Add emacs-mct.Andrew Tropin2022-02-08
| | | | | | * gnu/packages/emacs-xyz.scm (emacs-mct): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
* gnu: Add emacs-volatile-highlights.Jai Vetrivelan2022-02-08
| | | | | | * gnu/packages/emacs-xyz.scm (emacs-volatile-highlights): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
* gnu: thinkfan: Use G-expressions.Nicolas Goaziou2022-02-08
| | | | | * gnu/packages/linux.scm (thinkfan)[arguments]<#:configure-flags, #:phases>: Use G-expressions.
* gnu: thinkfan: Update to 1.3.1.Nicolas Goaziou2022-02-08
| | | | * gnu/packages/linux.scm (thinkfan): Update to 1.3.1.
* gnu: Add emacs-popper.Niklas Eklund2022-02-08
| | | | | | * gnu/packages/emacs-xyz.scm (emacs-popper): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
* gnu: seahorse-adventures: Use G-expressions.Nicolas Goaziou2022-02-08
| | | | | * gnu/packages/games.scm (seahorse-adventures)[origin]<snippet>: [arguments]<#:phases>: Use G-expressions.
* gnu: seahorse-adventures: Remove trailing #T from phases and snippet.Nicolas Goaziou2022-02-08
| | | | | | * gnu/packages/games.scm (seahorse-adventures)[origin]<#:snippet>: Remove trailing #T. [arguments]<#:phases>: Remove trailing #T.
* gnu: seahorse-adventures: Update to 1.4.Nicolas Goaziou2022-02-07
| | | | * gnu/packages/games.scm (seahorse-adventures): Update to 1.4.
* gnu: samba: Update to 4.15.5 [security fixes].Marius Bakke2022-02-07
| | | | | | This fixes CVE-2021-44141, CVE-2021-44142, and CVE-2022-0336. * gnu/packages/samba.scm (samba): Update to 4.15.5.
* gnu: rofi: Update to 1.7.3.Jai Vetrivelan2022-02-07
| | | | | | * gnu/packages/xdisorg.scm (rofi): Update to 1.7.3. Signed-off-by: Marius Bakke <marius@gnu.org>
* gnu: picom: Update to 9.Jai Vetrivelan2022-02-07
| | | | | | * gnu/packages/compton.scm (picom): Update to 9. Signed-off-by: Marius Bakke <marius@gnu.org>
* gnu: python-honcho: Update to 1.1.0.Stefan Reichör2022-02-07
| | | | | | * gnu/packages/python-xyz.scm (python-honcho): Update to 1.1.0. Signed-off-by: Marius Bakke <marius@gnu.org>
* gnu: ganeti-instance-guix: Update to 0.6.1.Marius Bakke2022-02-07
| | | | * gnu/packages/virtualization.scm (ganeti-instance-guix): Update to 0.6.1.
* gnu: clitest: Use G-expressions.Marius Bakke2022-02-07
| | | | | * gnu/packages/check.scm (clitest)[arguments]: Rewrite as gexp. While here, respect TESTS? in check phase.
* gnu: clitest: Update to 0.4.0.Marius Bakke2022-02-07
| | | | | | * gnu/packages/check.scm (clitest): Update to 0.4.0. [inputs]: Add BASH-MINIMAL. [arguments]: Remove trailing #t.
* gnu: Disable compressed debug sections for mingw-w64Carl Dong2022-02-07
| | | | | | | | | | | | | | | | | | | | | | | The newly introduced --enable-compressed-debug-section=all configure flag in the base binutils package makes the mingw-w64 build system unusable. For example: $ guix build --target=x86_64-w64-mingw32 hello and $ guix build mingw-w64-x86_64-winpthreads Will fail to build with an error: "x86_64-w64-mingw32-ld: final link failed: bad value" Turning off this flag seems to fix the problem, but perhaps it'd also be worthwhile to investigate the root cause. * gnu/packages/cross-base.scm (cross-binutils): When building for mingw targets, append "--enable-compressed-debug-section=no" to configure flags.
* gnu: linux-libre: Expose running kernel config as /proc/config.gz.Maxim Cournoyer2022-02-07
| | | | | * gnu/packages/linux.scm (%default-extra-linux-options) [CONFIG_IKCONFIG, CONFIG_IKCONFIG_PROC]: Enable kernel options.
* gnu: linux-libre: Build the snd-emu10k1 kernel module.Maxim Cournoyer2022-02-07
| | | | | | | | | Add the CONFIG_SND_EMU10K1=m and CONFIG_SND_EMU10K1_SEQ=m kernel options to all of our x86 and ARM configurations. The change automated via: $ git grep -rl CONFIG_SND_INDIGODJX | xargs grep -rL CONFIG_SND_EMU10K1=m \ | xargs sed '/CONFIG_SND_INDIGODJX=m/a\ CONFIG_SND_EMU10K1=m\nCONFIG_SND_EMU10K1_SEQ=m' -i
* gnu: linux-libre: Enable CONFIG_ZONE_DMA in all configs.Maxim Cournoyer2022-02-07
| | | | | | | | | | | | | | | | | | | | | ZONE_DMA is still used by some kernel drivers such as older sound and network cards; it was already enabled on ARM and for some i686 kernels. Enable it everywhere for consistency. The change was automated with: $ git grep -rl CONFIG_ZONE_DMA | \ xargs sed 's/# CONFIG_ZONE_DMA is not set/CONFIG_ZONE_DMA=y/' -i * gnu/packages/aux-files/linux-libre/4.14-x86_64.conf: Enable CONFIG_ZONE_DMA. * gnu/packages/aux-files/linux-libre/4.19-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/4.4-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/4.9-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.10-i686.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.10-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.15-i686.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.15-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.16-i686.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.16-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.4-x86_64.conf: Likewise.
* build: Fix typo in file-size docstring.Maxim Cournoyer2022-02-07
| | | | * guix/build/store-copy.scm (file-size): Fix typo.
* build: image: Account for fixed-size file system structures.Tobias Geerinckx-Rice2022-02-07
| | | | | | | | Workaround for <https://issues.guix.gnu.org/53194>. * gnu/build/image.scm (estimate-partition-size): Enforce a 1-MiB minimum. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
* guix: Restore profile hook for TeX Live font maps.Ricardo Wurmus2022-02-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Long ago we had a profile hook, called “texlive-configuration”, which would operate on the texlive-* packages that have actually been installed in the profile, build a union directory, and then install a texmf.cnf file that declared the prefix of the TeX Live tree to be the union directory. It then generated font maps based on the fonts that had actually been installed. This approach had multiple disadvantages, the worst of which was that you could only really have one TeX Live tree. Commit 04a0b1e09abce99857e7930336421ca6d15ae630 addressed this, where texmf.cnf was modified *once* and for all in texlive-bin to reference the GUIX_TEXMF variable to determine the root of the tree. This made much of “texlive-configuration” obsolete, because we didn’t need to have any union directories at all, because we had no need for a customized per-profile variant of texmf.cnf. Unfortunately, with the loss of the profile hook we would no longer build font maps. This patch resurrects the profile hook: we’re again generating font maps (such as pdftex.map) based on the contents of the profile. * gnu/packages/tex.scm (texlive-default-updmap.cfg): New variable. * guix/profiles.scm (texlive-configuration): Rename this... (texlive-font-maps): ...to this; update to run updmap-sys on the contents of the profile to generate only font maps. (%default-profile-hooks): Add texlive-font-maps. * guix/status.scm (hook-message): Rename unused texlive-configuration to texlive-font-maps.
* gnu: webrtc-audio-processing: Fix building on powerpc architectures.Efraim Flashner2022-02-07
| | | | | | | | | * gnu/packages/audio.scm (webrtc-audio-processing)[arguments]: Adjust custom arguments list to also fix building on all powerpc architectures. [native-inputs]: Add patch, local-file on riscv64-linux and powerpc architectures. * gnu/packages/patches/webrtc-audio-processing-big-endian.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it.
* gnu: gnome-arcade: Improve package style.Nicolas Goaziou2022-02-07
| | | | | | | * gnu/packages/emulators.scm (gnome-arcade)[arguments]: Use G-expressions. <#:phases>: Remove trailing #T. [inputs]: Remove labels. [description]: Start with a complete sentence.
* gnu: mame: Use G-expressions.Nicolas Goaziou2022-02-07
| | | | * gnu/packages/emulators.scm (mame)[arguments]<#:phases>: Use G-expressions.
* gnu: mame: Update to 0.240.Nicolas Goaziou2022-02-07
| | | | * gnu/packages/emulators.scm (mame): Update to 0.240.
* services: zabbix-frontend: Restore correct variable name.Marius Bakke2022-02-07
| | | | | | | | | This is a follow-up to 326e08bf0f55409f040612001f73a2cc4091c159, et.al. * gnu/services/monitoring.scm (%zabbix-front-end-nginx-configuration): Rename to ... (%zabbix-front-end-configuration-nginx): ... this. (zabbix-front-end-nginx-extension): Adjust accordingly.
* services: monitoring: Remove unused procedure.Marius Bakke2022-02-07
| | | | | | | This is a follow-up to commit 326e08bf0f55409f040612001f73a2cc4091c159. * gnu/services/monitoring.scm (zabbix-front-end-nginx-configuration): Remove variable.
* doc: Regenerate Zabbix server and agent configuration.Marius Bakke2022-02-07
| | | | | | | ...to make them in line with the newly generated front-end documentation. * doc/guix.texi (Monitoring Services): Regenerate zabbix-server-configuration and zabbix-agent-configuration.
* services: zabbix-front-end: Restore backwards compatibility.Marius Bakke2022-02-07
| | | | | | | | | | | | | | Commit e301f1a8ed11f9eacb2b7f525a7446dc00621a8b removed the NGINX argument entirely, but users may rely on and override it. Reported by rekado on #guix. * gnu/services/monitoring.scm (%zabbix-front-end-nginx-configuration): Restore exported variable. (zabbix-front-end-nginx-extension): New procedure. (zabbix-front-end-configuration): Remove FASTCGI-PARAMS field. Restore NGINX field, but default to the empty list. (zabbix-front-end-service-type): Extend NGINX-SERVICE-TYPE by ZABBIX-FRONT-END-NGINX-EXTENSION. * doc/guix.texi (Monitoring Services): Regenerate documentation.
* gnu: gimagereader: Use G-expressions.Nicolas Goaziou2022-02-07
| | | | * gnu/packages/ocr.scm (gimagereader)[arguments]<#:configure-flags>: Use G-expression.
* gnu: gimagereader: Remove input labels.Nicolas Goaziou2022-02-07
| | | | * gnu/packages/ocr.scm (gimagereader)[native-inputs, inputs]: Remove labels.
* gnu: gimagereader: Update to 3.4.0.Nicolas Goaziou2022-02-07
| | | | * gnu/packages/ocr.scm (gimagereader): Update to 3.4.0.
* gnu: fsearch: Update to 0.1.2.Nicolas Goaziou2022-02-07
| | | | * gnu/packages/search.scm (fsearch): Update to 0.1.2.
* gnu: mumi: Update to 0.0.1-7.f5232c4.Ricardo Wurmus2022-02-07
| | | | | * gnu/packages/mail.scm (mumi): Update to 0.0.1-7.f5232c4. [inputs]: Add guile-kolam.
* gnu: Add drc.Ricardo Wurmus2022-02-07
| | | | * gnu/packages/audio.scm (drc): New variable.
* gnu: Add nhc98.Ricardo Wurmus2022-02-07
| | | | * gnu/packages/haskell.scm (nhc98): New variable.
* gnu: Add ghc-4.Ricardo Wurmus2022-02-07
| | | | | | * gnu/packages/patches/ghc-4.patch: New file * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/haskell.scm (ghc-4): New variable.
* gnu: Add gcc-2.95-wrapper.Ricardo Wurmus2022-02-07
| | | | * gnu/packages/commencement.scm (gcc-2.95-wrapper): New variable.
* gnu: Add glibc-2.2.5.Ricardo Wurmus2022-02-07
| | | | | | * gnu/packages/commencement.scm (glibc-mesboot0, gcc-mesboot0, binutils-mesboot): Export variables. * gnu/packages/base.scm (glibc-2.2.5): New variable.
* gnu: Add perl-5.14.Ricardo Wurmus2022-02-07
| | | | | | | | * gnu/packages/patches/perl-5.14-autosplit-default-time.patch, gnu/packages/patches/perl-5.14-module-pluggable-search.patch, gnu/packages/patches/perl-5.14-no-sys-dirs.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them. * gnu/packages/perl.scm (perl-5.14): New variable.
* gnu: connman: Update to 1.41.Efraim Flashner2022-02-07
| | | | | | * gnu/packages/connman.scm (connman): Update to 1.41. [arguments]: Add configure-flag to build with iwd support. [native-inputs]: Remove labels.
* gnu: ddcutil: Update to 1.2.1.Efraim Flashner2022-02-07
| | | | | * gnu/packages/hardware.scm (ddcutil): Update to 1.2.1. [inputs]: Add kmod and i2c-tools.
* gnu: novena-eeprom: Build with older i2c-tools.Efraim Flashner2022-02-07
| | | | | * gnu/packages/admin.scm (novena-eeprom)[inputs]: Build with i2c-tools-3. * gnu/packages/linux.scm (i2c-tools-3): New variable.
* gnu: i2c-tools: Update to 4.3.Efraim Flashner2022-02-07
| | | | * gnu/packages/linux.scm (i2c-tools): Update to 4.3.
* gnu: procps: Add upstream-name property.Efraim Flashner2022-02-07
| | | | * gnu/packages/linux.scm (procps)[properties]: New field.
* gnu: util-linux: Add upstream-name property.Efraim Flashner2022-02-07
| | | | | | This allows derivative packages to check for updated source correctly. * gnu/packages/linux.scm (util-linux)[properties]: New field.
* gnu: openntpd: Add release-monitoring-url.Efraim Flashner2022-02-07
| | | | * gnu/packages/ntp.scm (openntpd)[properties]: New field.
* gnu: flare-game: Use HTTPS home page URI.Nicolas Goaziou2022-02-07
| | | | * gnu/packages/games.scm (flare-game)[home-page]: Use HTTPS URI.