Age | Commit message (Expand) | Author |
2020-11-08 | image: Offload "disk-image" derivations....This is a followup to 99efa804bd6df5de4760ec5974ed2297f1746366.
* gnu/system/image.scm (system-disk-image): Pass #:local-build? #f to
'computed-file'.
| Ludovic Courtès |
2020-11-08 | maint: Reduce the package set for "i586-gnu"....* etc/release-manifest.scm (%base-packages/hurd): New variable.
(%base-manifest): Use it when SYSTEM is "i586-gnu".
| Ludovic Courtès |
2020-11-08 | installer: Limit listbox height....Fixes: <https://issues.guix.gnu.org/44428>.
* gnu/installer/newt.scm (init): Print screen size.
* gnu/installer/newt/page.scm (default-listbox-height): New variable.
(run-listbox-selection-page): Use it.
* gnu/installer/newt/wifi.scm (wifi-listbox-height): Ditto.
* gnu/installer/newt/network.scm (run-technology-page): Set the maximum
listbox height to 5.
* gnu/installer/newt/ethernet.scm (run-ethernet-page): Ditto.
* gnu/installer/newt/final.scm (run-config-display-page): Change listbox
height.
* gnu/installer/newt/partition.scm (run-disk-page): Ditto.
* gnu/installer/newt/welcome.scm (display-logo?): New procedure.
(run-menu-page): Use it.
* gnu/installer/steps.scm (%configuration-file-width): Remove it.
| Mathieu Othacehe |
2020-11-07 | Update NEWS. | Mathieu Othacehe |
2020-11-07 | Update NEWS. | Ludovic Courtès |
2020-11-07 | tests: nfs-root-fs: Use the right store file name....* gnu/tests/nfs.scm (run-nfs-root-fs-test): Pass "nfs-root-fs-test" as
the first argument to 'gexp->derivation'.
| Ludovic Courtès |
2020-11-07 | tests: git-http: Avoid race condition....* gnu/tests/version-control.scm (run-git-http-test)[test]("fcgiwrap
listens"): New test.
| Ludovic Courtès |
2020-11-07 | gnu: libffi: Fix building on powerpc....* gnu/packages/libffi.scm (libffi)[inputs]: New field.
[arguments]: Add 'apply-patch' phase when targeting PowerPC.
* gnu/packages/patches/libffi-3.3-powerpc-fixes.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
| Efraim Flashner |
2020-11-06 | tests: mpd: Remove race condition; use default MPD configuration....* gnu/tests/audio.scm (%mpd-os): Use the default 'mpd-configuration'.
(run-mpd-test)[test]("mpd listening"): New test.
("mpc connect"): Use 'system*' and 'test-equal'.
| Ludovic Courtès |
2020-11-06 | services: mpd: Fix daemon startup....Until now it would wait for a PID file that'd never come.
* gnu/services/audio.scm (mpd-shepherd-service): Add 'requirement'.
Remove #:pid-file from 'start'.
(mpd-service-activation): Create the ".mpd" directory since that's what
the daemon expects.
| Ludovic Courtès |
2020-11-06 | services: mpd: Always create the "mpd" user account....* gnu/services/audio.scm (%mpd-accounts): New variable.
(mpd-service-type)[extensions]: Add ACCOUNT-SERVICE-TYPE extension.
| Ludovic Courtès |
2020-11-06 | ui: Add missing format argument in 'warn-about-load-error'....* guix/ui.scm (warn-about-load-error): Add missing argument to 'warning'.
| Ludovic Courtès |
2020-11-06 | tests: Test "guix system search ."....This is a followup to 0c5d0c57d370b34f3ba677838deaa8baf7bca58a.
* tests/guix-system.sh: Run "guix system search .".
| Ludovic Courtès |
2020-11-06 | tests: docker-system: Increase VM memory....The test was failing with ENOSPC.
* gnu/tests/docker.scm (run-docker-system-test)[vm]: Increase 'memory-size'.
(%test-docker-system): Change 'locale-libcs' for the OS passed to
'system-docker-image'.
| Ludovic Courtès |
2020-11-06 | services: mpd: Do not eagerly look for a user....Running 'guix system search mpd' would throw a backtrace because the
mpd-shepherd-service service start Gexp contained an unquoted call to
'getpwnam', which would look for a missing 'mpd' user and fail.
* gnu/services/audio.scm (mpd-shepherd-service): gexp-unquote only the
relevant variable rather than the whole expression.
| Maxim Cournoyer |
2020-11-05 | Update NEWS. | Ludovic Courtès |
2020-11-05 | gnu: chromium: Silent 'local-file' warning....This is a followup to fddc87063231f8f9aa22bbbc5bca4a46b9bbf004.
* gnu/packages/chromium.scm (%guix-patches): Use 'assume-valid-file-name'.
| Ludovic Courtès |
2020-11-05 | services: Remove imports of (ice-9 …) modules....* gnu/services/monitoring.scm (zabbix-server-activation): Remove (ice-9
rdelim) from the imported modules.
(zabbix-agent-activation): Likewise.
* gnu/tests/mail.scm (run-exim-test)[test]: Remove (ice-9 ftw) from the
imported modules.
| Ludovic Courtès |
2020-11-05 | pack: Do not include the host (guix config)....* guix/scripts/pack.scm (store-database)[build]: Import a
synthetic (guix config).
| Ludovic Courtès |
2020-11-05 | shepherd: Remove dependency on (guix utils)....Since commit 8ce6f4dc2879919c12bc76a2f4b01200af97e019, importing this
module in a gexp would pull in (guix config) from the host, thereby
leading to non-reproducible derivations. Users in (gnu services ...) do
not expect that so simply remove the (guix utils) dependency for now.
* gnu/build/shepherd.scm (fork+exec-command/container)[strip-pid]: New
procedure.
Use it instead of 'strip-keyword-arguments'.
| Ludovic Courtès |
2020-11-05 | gexp: Warn when importing (guix config) or (ice-9 …)....While importing those modules from the host system is valid, it is often
a mistake that introduces non-reproducibility. This patch prints a
warning when that happens.
* guix/gexp.scm (gexp-attribute): Add #:validate parameter and honor it.
(gexp-modules)[validate-modules]: New procedure.
Pass it to 'gexp-attribute'.
* tests/gexp.scm ("gexp-modules, warning"): New test.
| Ludovic Courtès |
2020-11-05 | gexp: Store the source code location in <gexp>....* guix/gexp.scm (<gexp>)[location]: New field.
(gexp-location): New procedure.
(write-gexp): Print the location of GEXP.
(gexp->derivation): Adjust call to 'make-gexp'.
(gexp): Likewise.
| Ludovic Courtès |
2020-11-05 | image: Error out when passed an unsupported partition type....* gnu/build/image.scm (make-partition-image): Use 'raise' instead of
'format' when TYPE is not supported.
(convert-disk-image): Remove unneeded 'begin'.
| Ludovic Courtès |
2020-11-05 | gnu: dump1090: Update to 4.0....* gnu/packages/radio.scm (dump1090): Update to 4.0.
| Leo Famulari |
2020-11-05 | gnu: virt-viewer: Enable VNC support....* gnu/packages/spice.scm (virt-viewer)[inputs]: Add gtk-vnc.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: praat: Update to 6.1.30....* gnu/packages/language.scm (praat): Update to 6.1.30.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: python-audioread: Update to 2.1.9....* gnu/packages/mp3.scm (python-audioread): Update to 2.1.9.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: toxic: Update to 0.8.4....* gnu/packages/messaging.scm (toxic): Update to 0.8.4.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: libnice: Update to 0.1.18....* gnu/packages/networking.scm (libnice): Update to 0.1.18.
[arguments]: Add a new ‘disable-failing-test’ phase.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: lldpd: Omit static library....* gnu/packages/networking.scm (lldpd)[arguments]: Add ‘--disable-static’
to the #:configure-flags.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: lldpd: Update to 1.0.7....* gnu/packages/networking.scm (lldpd): Update to 1.0.7.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: fldigi: Update to 4.1.15....* gnu/packages/radio.scm (fldigi): Update to 4.1.15.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: python-sphinx-intl: Update to 2.0.1....* gnu/packages/sphinx.scm (python-sphinx-intl): Update to 2.0.1.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: oil: Update to 0.8.3....* gnu/packages/shells.scm (oil): Update to 0.8.3.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: xl2tpd: Update to 1.3.16....* gnu/packages/vpn.scm (xl2tpd): Update to 1.3.16.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: i3-gaps: Update to 4.18.3....* gnu/packages/wm.scm (i3-gaps): Update to 4.18.3.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: i3-wm: Update to 4.18.3....* gnu/packages/wm.scm (i3-wm): Update to 4.18.3.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: vera: Update to 1.24....* gnu/packages/dictionaries.scm (vera): Update to 1.24.
[arguments]: Replace problematic (non-)character.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: php: Move a test disablement....* gnu/packages/php.scm (php)[arguments]: Disable bug73837.phpt under a
more appropriate comment section.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: colord: Update to 1.4.5....* gnu/packages/gnome.scm (colord): Update to 1.4.5.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: zeitgeist: Update to 1.0.3....* gnu/packages/gnome.scm (zeitgeist): Update to 1.0.3.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: gpxsee: Update to 7.35....* gnu/packages/gps.scm (gpxsee): Update to 7.35.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: wavemon: Update to 0.9.2....* gnu/packages/hardware.scm (wavemon): Update to 0.9.2.
[source]: Add two bonus upstream commits as patches.
| Tobias Geerinckx-Rice |
2020-11-05 | gnu: python-djangorestframework: Update to 3.12.1....* gnu/packages/django.scm (python-djangorestframework): Update to 3.12.1.
| Marius Bakke |
2020-11-05 | gnu: python-django@2.2: Update to 2.2.17....* gnu/packages/django.scm (python-django-2.2): Update to 2.2.17.
| Marius Bakke |
2020-11-05 | gnu: python-django: Update to 3.1.3....* gnu/packages/django.scm (python-django): Update to 3.1.3.
| Marius Bakke |
2020-11-05 | gnu: ungoogled-chromium: Fix hardware acceleration....* gnu/packages/chromium.scm (ungoogled-chromium)[arguments]: Patch in absolute
file name of libGL.so, and install Chromiums own libEGL.so and libGLESv2.so.
| Marius Bakke |
2020-11-05 | gnu: ungoogled-chromium: Update to 86.0.4240.183-0.b68e17f [security fixes]....This fixes CVE-2020-16004, CVE-2020-16005, CVE-2020-16006, CVE-2020-16007,
CVE-2020-16008, CVE-2020-16009, and CVE-2020-16011.
* gnu/packages/chromium.scm (%ungoogled-revision, %ungoogled-origin): Update
to b68e17f.
(ungoogled-chromium): Update to 86.0.4240.183.
| Marius Bakke |
2020-11-05 | gnu: ungoogled-chromium: Add search path for installed extensions....* gnu/packages/patches/ungoogled-chromium-extension-search-path.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/chromium.scm (%guix-patches): New variable.
(ungoogled-chromium-snippet): Apply %GUIX-PATCHES.
(ungoogled-chromium)[arguments]: Don't hard-code extensions directory.
[native-search-paths]: New field.
| Marius Bakke |
2020-11-05 | services: guix: Do not embed the host (guix config)....Fixes a bug whereby different users would get different derivations for
the same service.
* gnu/services/base.scm (guix-shepherd-service): In 'start' method, do
not embed (guix config).
| Ludovic Courtès |