summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* guix: self: Adds guile-semver as a depenedency.series-3879Martin Becze2020-05-08
| | | | * guix/self.scm (compiled-guix) Added guile-semver as a depenedency.
* gnu: QEMU: Update to 5.0.0.base-for-series-3881base-for-series-3879Marius Bakke2020-05-08
| | | | | | | | | | | | | * gnu/packages/patches/qemu-CVE-2020-1711.patch, gnu/packages/patches/qemu-CVE-2020-7039.patch, gnu/packages/patches/qemu-CVE-2020-7211.patch, gnu/packages/patches/qemu-CVE-2020-8608.patch, gnu/packages/patches/qemu-fix-documentation-build-failure.patch: Delete files. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/virtualization.scm (qemu)[source](patches): Remove. [arguments]: Add phase 'patch-/bin/sh-references'. In the 'configure' phase, add shebang substitutions. Remove phase 'prevent-network-configuration'. [inputs]: Change from LIBCAP to LIBCAP-NG.
* Merge branch 'core-updates'Marius Bakke2020-05-08
|\
| * gnu: android-libutils: Fix build failure.Marius Bakke2020-05-07
| | | | | | | | | | | | * gnu/packages/android.scm (android-libutils)[arguments]: Add phase 'augment-CPLUS_INCLUDE_PATH'. [native-inputs]: Distinguish GCC-5.
| * build-system/emacs: Hide the 'delete' binding from (guix build utils).Marius Bakke2020-05-07
| | | | | | | | | | | | | | This gets rid of a warning from 'compute-guix-derivation.drv' when running on Guile 3.0. (guix build emacs-build-system) includes (srfi srfi-1) anyway. * guix/build/emacs-build-system.scm: Do not import 'delete' from (guix build utils).
| * channels: Add patch for <https://bugs.gnu.org/41028>.Ludovic Courtès2020-05-07
| | | | | | | | | | | | | | | | | | | | | | | | | | Without this patch, we couldn't jump from here to commits before 05e783871c2c69b402e088863d46f5be7915ac74 because the 'compute-guix-derivation' script would crash with an unbound-variable error for 'call-with-new-thread'. Fixes <https://bugs.gnu.org/41028>. Reported by Christopher Baines <mail@cbaines.net>. * guix/channels.scm (%bug-41028-patch): New variable. (%patches): Add it.
| * channels: Add mechanism to patch checkouts of the 'guix channel.Ludovic Courtès2020-05-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * guix/channels.scm (<patch>): New record type. (apply-patches): New procedure. (latest-channel-instance)[dot-git?]: New procedure. Use 'update-cached-checkout' and 'add-to-store' instead of 'latest-repository-commit'. Call 'apply-patches' when CHANNEL is the 'guix channel. (%patches): New variable. * guix/git.scm (url+commit->name): Make public. * tests/channels.scm ("latest-channel-instances includes channel dependencies") ("latest-channel-instances excludes duplicate channel dependencies"): Mock 'update-cached-checkout' instead of 'latest-repository-commit'. Wrap body in 'with-store' and pass the store to 'latest-channel-instances'.
| * channels: Add 'latest-channel-instance'.Ludovic Courtès2020-05-07
| | | | | | | | | | * guix/channels.scm (latest-channel-instance): New procedure. (latest-channel-instances): Use it.
| * Merge branch 'master' into core-updatesMarius Bakke2020-05-06
| |\
| * | gnu: php: Remove failing tests.Maxim Cournoyer2020-05-06
| | | | | | | | | | | | | | | | | | | | | * gnu/packages/php.scm (php)[phases]{prepare-tests}: Remove the ext/gd/tests/bug65148.phpt, ext/gd/tests/bug66590.phpt, ext/gd/tests/bug73869.phpt, ext/gd/tests/webp_basic.phpt and ext/gd/tests/imagecreatefromstring_webp.phpt tests.
| * | gnu: php: Partially fix the build.Maxim Cournoyer2020-05-06
| | | | | | | | | | | | | | | * gnu/packages/php.scm (php)[phases]: Do not attempt to delete the now nonexistent 'lstat_stat_variation9.phpt' file.
| * | gnu: hyperledger-iroha: Build with the latest Boost.Marius Bakke2020-05-05
| | | | | | | | | | | | | | | * gnu/packages/hyperledger.scm (hyperledger-iroha)[inputs]: Change from BOOST-1.69.0 to BOOST.
| * | Merge branch 'master' into core-updatesMarius Bakke2020-05-05
| |\ \
| * | | gnu: fakeroot: Fix test failures.Marius Bakke2020-05-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes <https://bugs.gnu.org/41090>. Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com>. * gnu/packages/linux.scm (fakeroot)[inputs]: Change from LIBCAP to LIBCAP/NEXT. [arguments]: Add substitution for tests that use 'ls' to test for block devices.
| * | | gnu: libcap: Add 2.34.Marius Bakke2020-05-05
| | | | | | | | | | | | | | | | * gnu/packages/linux.scm (libcap/next): New public variable.
| * | | gnu: cmark: Fix test failure with Python 3.8.Marius Bakke2020-05-05
| | | | | | | | | | | | | | | | * gnu/packages/markup.scm (cmark)[source](modules, snippet): New fields.
| * | | gnu: python-s3transfer: Fix build with Python 3.8.Christopher Baines2020-05-04
| | | | | | | | | | | | | | | | | | | | * gnu/packages/python-web.scm (python-s3transfer)[arguments]: Add a 'patch phase to fix a test to work under Python 3.8.
| * | | gnu: hplip: Fix build with Python 3.8.Marius Bakke2020-05-04
| | | | | | | | | | | | | | | | * gnu/packages/cups.scm (hplip)[arguments]: Add phase "fix-build-with-python-3.8".
| * | | gnu: gnome-maps: Remove obsolete input.Marius Bakke2020-05-04
| | | | | | | | | | | | | | | | | | | | * gnu/packages/geo.scm (gnome-maps)[native-inputs]: Remove INTLTOOL. Add GETTEXT-MINIMAL.
| * | | gnu: gnome-maps: Do not propagate GTK+.Marius Bakke2020-05-04
| | | | | | | | | | | | | | | | | | | | * gnu/packages/geo.scm (gnome-maps)[propagated-inputs]: Remove. [inputs]: Add GTK+.
| * | | gnu: gnome-maps: Add missing input.Marius Bakke2020-05-04
| | | | | | | | | | | | | | | | | | | | | | | | Fixes <https://bugs.gnu.org/41058>. Reported by sirgazil <sirgazil@zoho.com>. * gnu/packages/geo.scm (gnome-maps)[inputs]: Add EVOLUTION-DATA-SERVER.
| * | | gnu: gnome-weather: Add wrapper to fix runtime failure.Marius Bakke2020-05-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes <https://bugs.gnu.org/41057>. Reported by sirgazil <sirgazil@zoho.com>. * gnu/packages/gnome.scm (gnome-weather)[arguments]: Add #:glib-or-gtk?. Add phase to wrap the executable with GTK+ variables.
| * | | gnu: Add guile-ac-d-bus.Ludovic Courtès2020-05-03
| | | | | | | | | | | | | | | | * gnu/packages/guile-xyz.scm (guile-ac-d-bus): New variable.
| * | | gnu: Add guile-packrat.Ludovic Courtès2020-05-03
| | | | | | | | | | | | | | | | * gnu/packages/guile-xyz.scm (guile-packrat): New variable.
| * | | locale: Add glibc 2.29 to '%default-locale-libcs'.Ludovic Courtès2020-05-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This eases transition for anyone reconfiguring and still having profiles with packages using the former libc. * gnu/system/locale.scm (%default-locale-libcs): Add GLIBC-2.29.
| * | | gnu: ledger: Build with Python 3.Marius Bakke2020-05-02
| | | | | | | | | | | | | | | | * gnu/packages/finance.scm (ledger)[inputs]: Change from PYTHON-2 to PYTHON.
| * | | Merge branch 'master' into core-updatesMarius Bakke2020-05-02
| |\ \ \
| * | | | gnu: behave: Fix build with Python 3.8.Christopher Baines2020-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a patch based on an upstream commit [1]. 1: c000c88eb5239b87f299c85e83b349b0ef387ae7 * gnu/packages/patches/behave-skip-a-couple-of-tests.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/check.scm (behave)[source]: Use the patch.
| * | | | gnu: python-gst: Fix build with Python 3.8.Christopher Baines2020-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a patch based on an upstream commit [1]. 1: 10707f437f2fc3632067c6a0efa4432f7ebaf362 * gnu/packages/patches/python-gst-fix-build-with-python-3.8.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/gstreamer.scm (python-gst)[source]: Use the patch.
| * | | | gnu: libdbusmenu: Fix build failure.Marius Bakke2020-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/gtk.scm (libdbusmenu)[arguments]: Add phase do-not-treat-warnings-as-errors.
| * | | | doc: Update initrd section to refer to the right Guile variable.Marius Bakke2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a follow-up to commit 57833803b446484b6f413fb883b2156933c38639. * doc/guix.texi (Initial RAM Disk): Refer to "%guile-3.0-static-stripped" instead of "%guile-static-stripped".
| * | | | gnu: linux-initrd: Use Guile 3.0.Marius Bakke2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | * gnu/system/linux-initrd.scm (expression->initrd): Change from %GUILE-STATIC-STRIPPED to %GUILE-3.0-STATIC-STRIPPED.
| * | | | gnu: Add relocatable static Guile 3.0 variant.Marius Bakke2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/patches/guile-2.2-default-utf8.patch: New file, extracted from commit 2acfe022a740f79b593348cc6362cc4ee8f33bb4. * gnu/packages/patches/guile-3.0-linux-syscalls.patch, gnu/packages/patches/guile-3.0-relocatable.patch: New files. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. Move all Guile patches together while at it. * gnu/packages/make-bootstrap.scm (%guile-3.0-static-stripped): New public variable.
| * | | | gnu: %guile-static-stripped: Rewrite in terms of 'make-guile-static-stripped'.Marius Bakke2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The derivation changes slightly, but the end result is bit-identical. * gnu/packages/make-bootstrap.scm (make-guile-static-stripped): New procedure. (%guile-static-stripped): Adjust accordingly.
| * | | | gnu: %guile-static: Rewrite in terms of 'make-guile-static'.Marius Bakke2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The derivation remains unchanged. * gnu/packages/make-bootstrap.scm (make-guile-static): New procedure. (%guile-static): Adjust accordingly.
| * | | | system: hurd: Add /etc/group.Jan (janneke) Nieuwenhuizen2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows download to run. * gnu/system/hurd.scm (cross-hurd-image): Add /etc/group with guixbuilder.
| * | | | system: hurd: Add less, which to %base-packages/hurd.Efraim Flashner2020-05-01
| | | | | | | | | | | | | | | | | | | | * gnu/system/hurd.scm (%base-packages/hurd): Add less, which.
| * | | | gnu: guix: Update to 52b01cb700.Jan (janneke) Nieuwenhuizen2020-05-01
| | | | | | | | | | | | | | | | | | | | * gnu/packages/package-management.scm (guix): Update to 1.1.0-1.52b01cb700.
| * | | | gnu: guix: Apply courage for the Hurd.Jan (janneke) Nieuwenhuizen2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/package-management.scm (guix)[arguments]: When hurd-target? is true, configure --with-courage.
| * | | | gnu: guix: Cross-build fixup for wrap-program.Jan (janneke) Nieuwenhuizen2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows running: guix build hello * gnu/packages/package-management.scm (guix)[arguments]: When cross-compiling, fixup the shebang generated by wrap-program. [inputs]: When cross-compiling, include bash-minimal.
| * | | | gnu: guix: Use gnutls-3.6.13 when cross-compiling.Jan (janneke) Nieuwenhuizen2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/package-management.scm (guix)[propagated-inputs]: When cross-compiling, use patched gnutls-3.6.13.
| * | | | gnu: Add libtirpc/hurd.Ricardo Wurmus2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/onc-rpc.scm (libtirpc/hurd): New variable. * gnu/packages/patches/libtirpc-hurd-client.patch, gnu/packages/patches/libtirpc-hurd.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them.
| * | | | gnu: hurd: Add NFS support.Ricardo Wurmus2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/hurd.scm (hurd)[inputs]: Add libtirpc/hurd. [arguments]: Add configure flags to use libtirpc; add phase "find-tirpc" to find the RPC headers; add phase "fix-rpc-headers" to include missing headers.
| * | | | gnu: hurd: Use default QEMU guest IP: 10.0.2.15.Jan (janneke) Nieuwenhuizen2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifying 10.0.2.77 also works -device rtl8139,netdev=net0 -netdev user,id=net0,hostfwd=tcp:127.0.0.1:2228-10.0.2.77:22 but using this default allows us to use the widely advertised -device rtl8139,netdev=net0 -netdev user,id=net0,hostfwd=tcp:127.0.0.1:2228-:22 * gnu/packages/hurd.scm (hurd-rc-script): Used from (hurd)[inputs]: Use 10.0.2.15; the default QEMU guest IP.
| * | | | gnu: hurd: Fix references to /bin/w.Rene Saavedra2020-05-01
| | | | | | | | | | | | | | | | | | | | * gnu/packages/hurd.scm (hurd): Use '/bin/w' from hurd package.
| * | | | Merge branch 'master' into core-updatesMarius Bakke2020-04-30
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gnu/local.mk gnu/packages/backup.scm gnu/packages/emacs-xyz.scm gnu/packages/guile.scm gnu/packages/lisp.scm gnu/packages/openldap.scm gnu/packages/package-management.scm gnu/packages/web.scm gnu/packages/xorg.scm
| * | | | | gnu: guile-json: Update to 3.5.0.Marius Bakke2020-04-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/patches/guile-json-cross.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/guile.scm (guile-json-3): Update to 3.5.0. [source](patches): Remove. [native-inputs]: Remove AUTOCONF and AUTOMAKE. [arguments]: Remove.
| * | | | | gnu: libgc/static-libs: Mark it as hidden.Christopher Baines2020-04-28
| | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/bdw-gc.scm (libgc/static-libs)[properties] Set hidden? to #t.
| * | | | | gnu: libjpeg-turbo: Fix building on powerpc.Efraim Flashner2020-04-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/image.scm (libjpeg-turbo)[arguments]: Add configure-flags specific to powerpc to fix building and cross-building.
| * | | | | gnu: custom-gcc: Ensure #:modules are not overridden by the inherited GCC.Marius Bakke2020-04-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes a regression introduced in 56c833ea287f8f6d3c72f8bddc314960c0164d64 where the #:modules argument became ineffective. Reported by Efraim Flashner in <https://lists.gnu.org/archive/html/guix-devel/2020-04/msg00473.html> * gnu/packages/gcc.scm (custom-gcc)[arguments]: Add #:modules through SUBSTITUTE-KEYWORD-ARGUMENTS.