summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* vm: Make the device node procedure a parameter.Ludovic Courtès2020-04-11
| | | | | | | * gnu/build/vm.scm (root-partition-initializer): Add #:make-device-nodes parameter and use it. * gnu/system/vm.scm (qemu-image): Add #:device-node parameter. Pass #:make-device-nodes to 'root-partition-initializer'.
* linux-boot: Add 'make-hurd-device-nodes'.Ludovic Courtès2020-04-11
| | | | * gnu/build/linux-boot.scm (make-hurd-device-nodes): New procedure.
* linux-boot: 'make-essential-device-nodes' root parameter is optional.Ludovic Courtès2020-04-11
| | | | | | * gnu/build/linux-boot.scm (make-essential-device-nodes): Change 'root' to an optional parameter. * gnu/build/vm.scm (root-partition-initializer): Adjust accordingly.
* vm: Preserve file permissions on /dev.Ludovic Courtès2020-04-11
| | | | | | | | Previously, when REGISTER-CLOSURES? was false, we'd set all the files under /dev to #o644, including /dev/null, /dev/zero, etc. * gnu/build/vm.scm (root-partition-initializer): Call 'reset-timestamps' separately for /dev, with #:preserve-permissions? #t.
* database: 'reset-timestamps' can optionally preserve permissions.Ludovic Courtès2020-04-11
| | | | | * guix/store/database.scm (reset-timestamps): Add #:preserve-permissions? and honor it.
* gnu: guile@3: Disable JIT on GNU/Hurd.Ludovic Courtès2020-04-11
| | | | * gnu/packages/guile.scm (guile-3.0)[arguments]: New field.
* gnu: cross-libc: Add patch to allow 'gettyent' reading store file names.Jan (janneke) Nieuwenhuizen2020-04-11
| | | | | | | * gnu/packages/patches/glibc-hurd-gettyent.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/cross-base.scm (cross-libc): Add it in 'patch-libc/hurd' phase when 'hurd-target?' is true.
* gnu: hurd: Install a BDF font.Ludovic Courtès2020-04-11
| | | | | | | * gnu/packages/hurd.scm (unifont): New variable. (hurd)[arguments]: In 'install-goodies' phase, install OUT/share/hurd/vga-system.bdf. [inputs]: Add UNIFONT.
* gnu: hurd: Add dependency on libdaemon.Ludovic Courtès2020-04-11
| | | | | * gnu/packages/hurd.scm (hurd)[inputs]: Add dependency on libdaemon. [native-inputs]: Add PKG-CONFIG.
* gnu: libdaemon: Cross-build with --localstatedir=/var.Ludovic Courtès2020-04-11
| | | | | * gnu/packages/libdaemon.scm (libdaemon)[arguments]: Add "--localstatedir=/var" when (%current-target-system) is true.
* gnu: libdaemon: Allow cross-compilation.Ludovic Courtès2020-04-11
| | | | * gnu/packages/libdaemon.scm (libdaemon)[arguments]: New field.
* gnu: hurd: Add dependency on libgcrypt.Ludovic Courtès2020-04-11
| | | | | * gnu/packages/hurd.scm (hurd)[inputs]: Add LIBGCRYPT. [native-inputs]: Likewise.
* gnu: libgcrypt: Fix cross-compilation.Jan (janneke) Nieuwenhuizen2020-04-11
| | | | | | | | | | | | | | | | | This works around /gnu/store/pwcp239kjf7lnj5i4lkdzcfcxwcfyk72-bash-minimal-5.0.16/bin/bash ../libtool --tag=CC --mode=link i586-pc-gnu-gcc -I/gnu/store/8x9dhckldm6iy1digklfanmvdaizq11f-libgpg-error-1.37/include -g -O2 -fvisibility=hidden -fno-delete-null-pointer-checks -Wall -o mpicalc mpicalc-mpicalc.o libgcrypt.la -L/gnu/store/8x9dhckldm6iy1digklfanmvdaizq11f-libgpg-error-1.37/lib -lgpg-error i586-pc-gnu-ld: ./.libs/libgcrypt.so: undefined reference to `_gcry_mpih_lshift' i586-pc-gnu-ld: ./.libs/libgcrypt.so: undefined reference to `_gcry_mpih_add_n' i586-pc-gnu-ld: ./.libs/libgcrypt.so: undefined reference to `_gcry_mpih_addmul_1' i586-pc-gnu-ld: ./.libs/libgcrypt.so: undefined reference to `_gcry_mpih_submul_1' i586-pc-gnu-ld: ./.libs/libgcrypt.so: undefined reference to `_gcry_mpih_mul_1' i586-pc-gnu-ld: ./.libs/libgcrypt.so: undefined reference to `_gcry_mpih_sub_n' i586-pc-gnu-ld: ./.libs/libgcrypt.so: undefined reference to `_gcry_mpih_rshift' * gnu/packages/gnupg.scm (libgcrypt)[arguments]: Disable assembly when cross-compiling.
* gnu: hurd: Install the UTF-8 motd.Ludovic Courtès2020-04-11
| | | | * gnu/packages/hurd.scm (hurd)[arguments]: Add 'install-goodies' phase.
* gnu: hurd: Ensure startup scripts refer to the right programs.Ludovic Courtès2020-04-11
| | | | | | | | * gnu/packages/hurd.scm (hurd)[arguments]: In 'set-file-names' phase, patch startup.c, init.c, login.c, and daemons/runsystem/*. Add 'patch-libexec-shebangs' phase. Subtitute /libexec and /sbin, so that we may run RC. [inputs]: Add BASH-MINIMAL, COREUTILS, SED, GREP, and UTIL-LINUX.
* gnu: hurd: Record the right file name of 'login'.Ludovic Courtès2020-04-11
| | | | * gnu/packages/hurd.scm (hurd)[arguments]: Add 'set-file-names' phase.
* gnu: hurd: Use a 32-bit MiG when cross-compiling.Ludovic Courtès2020-04-11
| | | | | * gnu/packages/hurd.scm (hurd)[native-inputs]: When '%current-target-system' is true, pass #:system "i686-linux" to 'mig'.
* gnu: cross-libc: Add patch to add 'mach_print' symbol on GNU/Hurd.Ludovic Courtès2020-04-11
| | | | | | | * gnu/packages/patches/glibc-hurd-mach-print.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/cross-base.scm (cross-libc): Add 'patch-libc/hurd' phase when 'hurd-target?' is true.
* gnu: hurd: Provide our own /libexec/rc script.Ludovic Courtès2020-04-11
| | | | | * gnu/packages/hurd.scm (hurd-rc-script): New procedure. (hurd)[inputs]: Add (hurd-rc-script).
* gnu: gnumach: Enable kernel debugger (kbd).Ludovic Courtès2020-04-11
| | | | * gnu/packages/hurd.scm (gnumach)[arguments]: Add "--enable-kdb".
* vm: 'qemu-image' can pass options to the 'mkfs' command.Ludovic Courtès2020-04-11
| | | | | | | | | * gnu/build/vm.scm (<partition>)[file-system-options]: New field. (create-ext-file-system, create-fat-file-system) (format-partition): Add #:options and honor it. (initialize-partition): Pass #:options to 'format-partition'. * gnu/system/vm.scm (qemu-image): Add #:file-system-options and use it for the root partition.
* vm: 'qemu-image' accepts a list of extra populate directives.Ludovic Courtès2020-04-11
| | | | | | | * gnu/build/vm.scm (root-partition-initializer): Add #:extra-directives parameter and pass it to 'populate-root-file-system'. * gnu/system/vm.scm (qemu-image): Add #:extra-directives parameter and pass it to 'root-partition-initializer'.
* install: 'populate-root-file-system' can be passed extra directives.Ludovic Courtès2020-04-11
| | | | | | * gnu/build/install.scm (evaluate-populate-directive): Handle 'file' directives. (populate-root-file-system): Add #:extras parameter and honor it.
* gnu: sbcl-burgled-batteries3: Fix build with Python 3.8.Marius Bakke2020-04-11
| | | | | | * gnu/packages/lisp-xyz.scm (sbcl-burgled-batteries3)[arguments]: Remove "m" suffix from Python include directory. Add phase to remove deprecated Python API binding.
* Merge branch 'master' into core-updatesMarius Bakke2020-04-11
|\
| * gnu: python-genshi: Update to 0.7.3.base-for-series-3503base-for-series-3499Marius Bakke2020-04-11
| | | | | | | | * gnu/packages/python-web.scm (python-genshi): Update to 0.7.3.
| * gnu: python-dnspython: Update to 1.16.0.Marius Bakke2020-04-11
| | | | | | | | * gnu/packages/python-xyz.scm (python-dnspython): Update to 1.16.0.
| * gnu: python-flask: Update to 1.1.2.Marius Bakke2020-04-11
| | | | | | | | * gnu/packages/python-web.scm (python-flask): Update to 1.1.2.
| * gnu: sbcl-burgled-batteries3: Python is a runtime dependency.Marius Bakke2020-04-11
| | | | | | | | | | | | * gnu/packages/lisp-xyz.scm (sbcl-burgled-batteries3)[native-inputs]: Move PYTHON ... [inputs]: ... here.
| * gnu: sbcl-burgled-batteries3: Update to 0.0.0-2.f65f454.Marius Bakke2020-04-11
| | | | | | | | | | | | | | * gnu/packages/lisp-xyz.scm (sbcl-burgled-batteries3): Update to 0.0.0-2.f65f454. [arguments]: Rewrite phases to use the new BB_PYTHON3_* variables. Add #:modules and #:imported-modules.
| * gnu: python-pyqtwebengine: Use 'python-version'.Marius Bakke2020-04-11
| | | | | | | | | | | | * gnu/packages/qt.scm (python-pyqtwebengine)[arguments]: Add (guix build python-build-system) to #:modules. Adjust #:imported-modules accordingly. Rewrite #:phases to use it instead of rolling their own, or hard-coding.
| * gnu: python-duniterpy: Update to 0.57.0.base-for-series-3497Nicolas Goaziou2020-04-11
| | | | | | | | * gnu/packages/finance.scm (python-duniterpy): Update to 0.57.0.
| * gnu: Add tennix.Nicolas Goaziou2020-04-11
| | | | | | | | * gnu/packages/games.scm (tennix): New variable.
| * gnu: Merge ham-radio and sdr modules into radio module.base-for-series-3495Guillaume Le Vaillant2020-04-11
| | | | | | | | | | | | | | | | | | * gnu/packages/ham-radio.scm: Rename to 'radio.scm'. * gnu/packages/sdr.scm: Remove file. (liquid-dsp): Move to ... * gnu/packages/radio.scm (liquid-dsp): ... here. * gnu/local.mk (GNU_SYSTEM_MODULES): Remove 'ham-radio.scm' and 'sdr.scm'. Add 'radio.scm'.
| * gnu: bubblewrap: Update to 0.4.1 [fixes CVE-2020-5291].Tobias Geerinckx-Rice2020-04-11
| | | | | | | | | | | | | | | | | | Relevant only ‘[i]f bubblewrap is installed in setuid mode and the kernel supports unprivileged user namespaces’. Bubblewrap is not setuid by default on Guix System. * gnu/packages/virtualization.scm (bubblewrap): Update to 0.4.1.
| * gnu: openconnect: Update to 8.08.Tobias Geerinckx-Rice2020-04-11
| | | | | | | | | | | | * gnu/packages/vpn.scm (openconnect): Update to 8.08. [propagated-inputs]: Use gnutls-3.6.13. * gnu/packages/tls.scm (gnutls-3.6.13): Export it.
| * gnu: supertux: Update to 0.6.1.1.Tobias Geerinckx-Rice2020-04-11
| | | | | | | | * gnu/packages/games.scm (supertux): Update to 0.6.1.1.
| * gnu: syncthing: Update to 1.4.2.Tobias Geerinckx-Rice2020-04-11
| | | | | | | | * gnu/packages/syncthing.scm (syncthing): Update to 1.4.2.
| * gnu: tig: Update to 2.5.1.Tobias Geerinckx-Rice2020-04-11
| | | | | | | | | | * gnu/packages/version-control.scm (tig): Update to 2.5.1. [arguments]: #:test-target is correct even if all #:tests? can't run.
| * gnu: dbacl: Update to 1.14.1.Tobias Geerinckx-Rice2020-04-11
| | | | | | | | | | | | | | | | * gnu/packages/textutils.scm (dbacl): Update to 1.14.1. [source]: Add patch to fix build with current glibc. [arguments]: (Try to) bootstrap only once. * gnu/packages/patches/dbacl-include-locale.h.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it.
| * gnu: libdca: Update to 0.0.7.Tobias Geerinckx-Rice2020-04-11
| | | | | | | | | | * gnu/packages/video.scm (libdca): Update to 0.0.7. [native-inputs]: Add autoconf, automake, and libtool.
| * gnu: thunar: Update to 1.8.14.Tobias Geerinckx-Rice2020-04-11
| | | | | | | | * gnu/packages/xfce.scm (thunar): Update to 1.8.14.
* | gnu: python-pycrypto: Fix build with Python 3.8.Marius Bakke2020-04-11
| | | | | | | | | | | | * gnu/packages/patches/python-pycrypto-time-clock.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/python-crypto.scm (python-pycrypto)[source](patches): Add it.
* | gnu: gRPC@1.16: Fix build with glibc 2.30 and later.Marius Bakke2020-04-11
| | | | | | | | | | * gnu/packages/rpc.scm (grpc-1.16.1)[arguments]: Add phase to rename custom gettid() function.
* | gnu: python-gevent: Update to 1.5.0.Marius Bakke2020-04-11
| | | | | | | | | | | | | | * gnu/packages/python-xyz.scm (python-gevent): Update to 1.5.0. [arguments]: Split the unbundling and include path adjustments intwo two phases. Enable previously failing test; disable two others. Use a format string instead of DISPLAY when writing skipped_tests.txt.
* | gnu: spandsp: Add comment.Marius Bakke2020-04-11
| | | | | | | | | | * gnu/packages/telephony.scm (spandsp)[native-inputs]: Note that the LIBJPEG-TURBO dependency comes via LIBTIFF.
* | gnu: Add linphoneqt.Raghav Gururajan2020-04-11
| | | | | | | | | | | | * gnu/packages/linphone.scm (linphoneqt): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
* | gnu: spandsp: Fix build failure.Danny Milosavljevic2020-04-11
| | | | | | | | * gnu/packages/telephony.scm (spandsp)[native-inputs]: Add libjpeg-turbo.
* | gnu: liblinphone: Fix build failure.Raghav Gururajan2020-04-11
| | | | | | | | | | | | | | * gnu/packages/linphone.scm (liblinphone)[arguments]<#:configure-flags]: Add -DENABLE_STRICT=NO. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
* | gnu: commencement: Memoize packages as a function of the system.Ludovic Courtès2020-04-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previous, things like 'ld-wrapper-boot0' would be memoized with (mlambda () …). However, the definition of 'ld-wrapper-boot0' depends on the result of (%boot0-inputs), which is itself a function of (%current-system). Thus, if one first calls: (parameterize ((%current-system "x86_64-linux")) (ld-wrapper-boot0)) then, in all subsequent calls to 'ld-wrapper-boot0', the value of (%current-system) would be ignored because the result is already memoized. Concretely, 'ld-wrapper-boot0' would always have the dependencies it has on x86_64-linux, even though they are different than those on armhf-linux, say ("bash-mesboot" vs. "bootstrap-binaries"). Fixes <https://bugs.gnu.org/40482>. Reported by Marius Bakke <mbakke@fastmail.com>. * gnu/packages/commencement.scm (define/system-dependent): New macro. (linux-libre-headers-boot0, hurd-core-headers-boot0, ld-wrapper-boot0) (gcc-boot0-intermediate-wrapped, gcc-boot0-wrapped, ld-wrapper-boot3): Define using 'define/system-dependent' instead of 'define' + 'mlambda'. Adjust users so they no longer look like procedure calls. * tests/guix-build.sh: Add test.