summaryrefslogtreecommitdiff
path: root/gnu
Commit message (Collapse)AuthorAge
* gnu: cross-base: Switch back to 'CROSS_C_INCLUDE_PATH' & co.Ludovic Courtès2020-02-12
| | | | | | | | | | | | | This is a followup to 2073b55e6b964cb8ca15e8c74cb32dac00f05f0d. * gnu/build/cross-toolchain.scm (%gcc-include-paths): Switch back to 'C_INCLUDE_PATH' & co. * gnu/packages/cross-base.scm (%gcc-include-paths): Likewise. (cross-gcc-arguments): Remove 'treat-glibc-as-system-header' phase. (cross-gcc)[native-inputs]: Reorder so that libc comes last. [search-paths]: Add "include/c++" for 'CROSS_CPLUS_INCLUDE_PATH'. * guix/build-system/gnu.scm (standard-cross-packages): Have "cross-gcc" appear both for 'host and 'target.
* gnu: rust: Switch to 'C_INCLUDE_PATH'.Ludovic Courtès2020-02-12
| | | | | * gnu/packages/rust.scm (rust-1.19)[native-search-paths]: Remove "CPATH" and add "C_INCLUDE_PATH" and "CPLUS_INCLUDE_PATH" instead.
* system: locale: Remove canonical-package call.Mathieu Othacehe2020-02-12
| | | | | | | | This is a follow-up of dfc8ccbf5da96a67eb1cade499f0def21e7fdb02. Building locales using the same glibc as the one programs are linked against is enough. * gnu/system/locale.scm (%default-locale-libcs): Use the plain glibc package.
* system: Stop using canonical-package.Mathieu Othacehe2020-02-11
| | | | | | | | | | | | | | Usage of canonical-package outside of thunked fields breaks cross-compilation, see: https://lists.gnu.org/archive/html/guix-devel/2019-12/msg00410.html. * gnu/installer.scm (installer-program): Remove canonical-package. * gnu/services/base.scm (<nscd-cache>): Ditto, (%base-services): ditto. * gnu/services/xorg.scm: Remove useless canonical-package import. * gnu/system.scm (%base-packages): Remove canonical-package. * gnu/system/install.scm (%installation-services): Ditto, (installation-os): ditto. * gnu/system/locale.scm (single-locale-directory): Ditto.
* gnu: sdl2: Remove obsolete workaround.Marius Bakke2020-02-10
| | | | * gnu/packages/sdl.scm (sdl2)[arguments]: Remove #:make-flags.
* gnu: inkscape: Remove obsolete workaround.Marius Bakke2020-02-10
| | | | | * gnu/packages/inkscape.scm (inkscape)[arguments]: Remove phase "dont-use-system-includes".
* gnu: git, git-minimal: Do not retain a reference to 'bash-for-tests'.Marius Bakke2020-02-10
| | | | | | | | Fixes <https://bugs.gnu.org/39513>. Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com>. * gnu/packages/version-control.scm (git, git-minimal)[inputs]: Move BASH ... [native-inputs]: ... here. Add BASH-MINIMAL.
* gnu: gcc: Switch back to using 'C_INCLUDE_PATH' instead of 'CPATH'.Ludovic Courtès2020-02-06
| | | | | | | | | | | | | | | | | | | | | | | Fixes <https://bugs.gnu.org/30756>. Initially reported by Julien Lepiller <julien@lepiller.eu>. * gnu/packages/base.scm (make-gcc-libc): Remove 'treat-glibc-as-system-header' phase from 'arguments'. * gnu/packages/commencement.scm (gcc-final): Likewise. * gnu/packages/gcc.scm (gcc-4.7)[arguments]: Add "include/c++" to 'CPLUS_INCLUDE_PATH'. (gcc-6)[native-search-paths]: Remove. * gnu/packages/make-bootstrap.scm (gcc-for-bootstrap): Remove 'native-search-paths' and 'arguments'. * gnu/packages/patches/python-2.7-search-paths.patch, gnu/packages/patches/python-3-search-paths.patch: Replace "CPATH" with "C_INCLUDE_PATH". * guix/build-system/cmake.scm (lower): When not cross-compiling, move INPUTS from the 'host-inputs' field to the 'build-inputs' field of the bag, right after NATIVE-INPUTS. * guix/build-system/glib-or-gtk.scm (lower): Likewise. * guix/build-system/gnu.scm (lower): Likewise. * guix/build-system/meson.scm (lower): Likewise.
* gnu: commencement: Rationalize search path handling.Ludovic Courtès2020-02-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit ensures that only packages that correspond to compilers have a search path set. It also reduces manual handling of search path environment variables. * gnu/packages/commencement.scm (tcc-boot0)[native-search-paths]: Remove copy/pasted comment. (gcc-core-mesboot)[arguments]: In 'install2' phase, do not copy TCC/include to OUT/include. [native-search-paths]: Remove leading slash in "lib/gcc-lib/…" directory name. (mesboot-headers)[native-search-paths]: Remove. (glibc-mesboot0)[native-search-paths]: Remove. (gcc-mesboot0)[native-inputs]: Reorder so that we have libc, then kernel-headers, then gcc. [arguments]: Rewrite 'setenv' phase to only set CONFIG_SHELL and create 'config.cache'. (gcc-mesboot1)[native-inputs]: Reorder similarly. [arguments]: In 'setenv' phase, only set CONFIG_SHELL, C_INCLUDE_PATH, and CPLUS_INCLUDE_PATH. (glibc-headers-mesboot)[arguments]: In 'setenv' phase, replace references to '%build-inputs' by references to 'inputs'; simplify setting of CONFIG_SHELL and SHELL; simplify patching of /bin/pwd in the "configure" file; leave C_INCLUDE_PATH and LIBRARY_PATH unset. (glibc-mesboot)[native-search-paths]: Remove. (gcc-mesboot)[native-inputs]: Reorder. [arguments]: Remove clause for #:phases that would change the 'setenv' phase.
* gnu: commencement: Avoid hard-coded GCC version numbers.Ludovic Courtès2020-02-06
| | | | | * gnu/packages/commencement.scm (gcc-mesboot1, gcc-mesboot): Use 'package-version' instead of hard-coding the version number.
* gnu: WebKitGTK: Remove obsolete patch.Marius Bakke2020-02-06
| | | | | | | | | This patch was added in eb5f3ea1003f76545b197b1e779e2967ec379475 and no longer necessary since the update to 2.26.3 in f32ca55778eb049e83210aedcbeb4df2c98e587a. * gnu/packages/patches/webkitgtk-icu-65.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/webkit.scm (webkitgtk)[source](patches): Remove.
* gnu: OpenLDAP: Remove cross-compilation workaround.Marius Bakke2020-02-06
| | | | | | | | This is no longer required since the update to 2.4.49 in commit 090f33d6767dfc0b23d5e287369ec2dde331de01. * gnu/packages/openldap.scm (openldap)[native-inputs]: Remove AUTOMAKE. [arguments]: Remove 'fix-configure' phase.
* gnu: isl: Update to 0.22.1.Marius Bakke2020-02-06
| | | | * gnu/packages/gcc.scm (isl): Update to 0.22.1.
* gnu: bzip2: Update to 1.0.8.Marius Bakke2020-02-06
| | | | | * gnu/packages/compression.scm (bzip2): Update to 1.0.8. [source](uri): Change to maintained fork at sourceware.org.
* Merge remote-tracking branch 'origin/master' into core-updatesEfraim Flashner2020-02-04
|\
| * gnu: netsurf: Use https.Efraim Flashner2020-02-04
| | | | | | | | | | | | | | * gnu/packages/web.scm (netsurf-buildsystem, libparserutils, hubbub, libwapcaplet, libcss, libdom, libsvgtiny, libnsbmp, libnsgif, libnslog, libnsutils, libnspsl, nsgenbind, netsurf, netsurf-buildsystem) [source, home-page]: Use https.
| * gnu: netsurf: Build with gtk+-3.Efraim Flashner2020-02-04
| | | | | | | | | | * gnu/packages/web.scm (netsurf)[inputs]: Remove gtk+-2, add gtk+. [arguments]: Add makeflag to target gtk3.
| * gnu: git-annex: Update to 7.20200202.7.Kyle Meyer2020-02-04
| | | | | | | | | | | | * gnu/packages/haskell-apps.scm (git-annex): Update to 7.20200202.7. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
| * gnu: netsurf: Fix entity parsing.Eric Bavier2020-02-04
| | | | | | | | | | | | | | | | | | Follow-up to commit 31afa654c58cd7aa8bd11a771fa6eabcd766d443. * gnu/packages/web.scm (netsurf)[arguments]: In 'adjust-welcome' phase, ensure html entities are parsed and find their way back to the output. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
| * gnu: Add grip.Jakub Kądziołka2020-02-04
| | | | | | | | | | | | * gnu/packages/python-web.scm (grip): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
| * gnu: Add python-path-and-address.Jakub Kądziołka2020-02-04
| | | | | | | | | | | | * gnu/packages/python-web.scm (python-path-and-address): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
| * gnu: emacs-wgrep: Update to 2.3.2.Pierre Neidhardt2020-02-04
| | | | | | | | * gnu/packages/emacs-xyz.scm (emacs-wgrep): Update to 2.3.2.
| * gnu: python-language-server: Update to 0.31.7.Brett Gilio2020-02-03
| | | | | | | | * gnu/packages/python-xyz.scm (python-language-server): Update to 0.31.7.
| * gnu: QEMU: Fix CVE-2020-1711.Leo Famulari2020-02-03
| | | | | | | | | | | | * gnu/packages/patches/qemu-CVE-2020-1711.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/virtualization.scm (qemu)[source]: Use it.
| * gnu: qutebrowser: Update to 1.10.0Jack Hill2020-02-03
| | | | | | | | * gnu/packages/web-browsers.scm (qutebrowser): Update to 1.10.0.
| * gnu: sbcl-graph: Fix build.Guillaume Le Vaillant2020-02-03
| | | | | | | | | | | | | | | | | | | | | | | | | | Rename the asd files so that they have the same name as the ASDF system definitions. * gnu/packages/lisp-xyz.scm (sbcl-graph)[arguments]: Use 'graph-test.asd' instead of 'graph.test.asd' for test-asd-file. (sbcl-graph-dot)[arguments]: Use 'graph-dot.asd' instead of 'graph.dot.asd' for test-asd-file. (sbcl-graph-json)[arguments]: Use 'graph-json.asd' instead of 'graph.json.asd' for test-asd-file. * gnu/packages/patches/sbcl-graph-asdf-definitions.patch: Update accordingly.
| * gnu: sbcl-mgl-pax: Propagate the swank source package.Guillaume Le Vaillant2020-02-03
| | | | | | | | | | * gnu/packages/lisp-xyz.scm (sbcl-mgl-pax)[inputs]: Move swank to... [propagated-inputs]: ... here.
| * gnu: sbcl-cffi-bootstrap: Update to 0.21.0.Guillaume Le Vaillant2020-02-03
| | | | | | | | * gnu/packages/lisp-xyz.scm (sbcl-cffi-bootstrap): Update to 0.21.0.
| * gnu: Add cl-qrencode.Guillaume Le Vaillant2020-02-03
| | | | | | | | | | * gnu/packages/lisp-xyz.scm (sbcl-cl-qrencode, cl-qrencode, ecl-cl-qrencode): New variables.
| * gnu: Add cl-zpng.Guillaume Le Vaillant2020-02-03
| | | | | | | | * gnu/packages/lisp-xyz.scm (sbcl-zpng, cl-zpng, ecl-zpng): New variables.
| * gnu: Add cl-png-read.Guillaume Le Vaillant2020-02-03
| | | | | | | | | | * gnu/packages/lisp-xyz.scm (sbcl-png-read, cl-png-read, ecl-png-read): New variables.
| * gnu: Add cl-salza2.Guillaume Le Vaillant2020-02-03
| | | | | | | | | | * gnu/packages/lisp-xyz.scm (sbcl-salza2, cl-salza2, ecl-salza2): New variables.
| * gnu: ibus: Use new ucd package.Leo Prikler2020-02-03
| | | | | | | | | | | | | | | | * gnu/packages/ibus.scm (ibus)[native-inputs]: Add ucd; remove unicode-nameslist and unicode-blocks. [arguments]: Update configure flags and remove prepare-ucd-dir phase. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
| * gnu: Add ucd.Leo Prikler2020-02-03
| | | | | | | | | | | | * gnu/packages/unicode.scm (ucd): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
| * gnu: ibus: Disable parallel build.Leo Prikler2020-02-03
| | | | | | | | | | | | * gnu/packages/ibus.scm (ibus)[arguments]: Disable parallel build. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
| * gnu: ibus: Build with emoji support.Leo Prikler2020-02-03
| | | | | | | | | | | | | | | | | | * gnu/packages/ibus.scm (ibus)[native-inputs]: Add unicode-emoji and unicode-cldr-common. [arguments]<configure-flags>: Use list instead of quote. Add flags for unicode-emoji-dir and emoji-annotation-dir. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
| * gnu: Add unicode-cldr-common.Leo Prikler2020-02-03
| | | | | | | | | | | | | | * gnu/packages/unicode.scm (unicode-cldr-commmon): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net> Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
| * gnu: Add unicode-emoji.Leo Prikler2020-02-03
| | | | | | | | | | | | | | * gnu/packages/unicode.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
* | gnu: python-importlib-metadata: Update to 1.5.0.Marius Bakke2020-02-03
| | | | | | | | | | | | | | * gnu/packages/python-xyz.scm (python-importlib-metadata): Update to 1.5.0. [native-inputs]: Add PYTHON-PYFAKEFS. (python2-importlib-metadata)[native-inputs]: Add PYTHON2-PYFAKEFS-BOOTSTRAP. * gnu/packages/check.scm (python2-pyfakefs-bootstrap): New public variable.
* | Merge branch 'staging' into core-updatesMarius Bakke2020-02-03
|\ \
| * | Merge branch 'master' into stagingMarius Bakke2020-02-03
| |\|
| | * gnu: python-pyfakefs: Update to 3.7.1.Marius Bakke2020-02-03
| | | | | | | | | | | | * gnu/packages/check.scm (python-pyfakefs): Update to 3.7.1.
| | * gnu: python-lz4: Remove bundled copy of lz4.Marius Bakke2020-02-03
| | | | | | | | | | | | | | | | | | | | | * gnu/packages/python-compression.scm (python-lz4)[source](modules, snippet): New fields. [native-inputs]: Add PKG-CONFIG. [inputs]: Add LZ4.
| | * gnu: libx264: Update to 159-0.1771b55.Marius Bakke2020-02-03
| | | | | | | | | | | | | | | | | | | | | * gnu/packages/video.scm (libx264): Update to 159-0.1771b55. [source]: Change to GIT-FETCH. [version]: Use GIT-VERSION, and change from date-based identifier to the version defined in x264.h.
| | * gnu: commencement: Remove unused module imports.Marius Bakke2020-02-03
| | | | | | | | | | | | | | | * gnu/packages/commencement.scm: Do not import (guix licenses), (srfi srfi-26), and (ice-9 regex).
| | * gnu: rsync: Fix cross-compilation.Marius Bakke2020-02-03
| | | | | | | | | | | | | | | * gnu/packages/rsync.scm (rsync)[inputs]: Move PERL ... [native-inputs]: ... here.
| | * gnu: Add lf.Pkill -92020-02-02
| | | | | | | | | | | | | | | | | | * gnu/packages/disk.scm (lf): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
| | * gnu: sane-backends-minimal: Update to 1.0.29.Tobias Geerinckx-Rice2020-02-02
| | | | | | | | | | | | * gnu/packages/scanner.scm (sane-backends-minimal): Update to 1.0.29.
| | * gnu: godot: Add zenity for showing alerts.Timotej Lazar2020-02-02
| | | | | | | | | | | | | | | | | | | | | * gnu/packages/game-development.scm (godot)[inputs]: Add zenity. [arguments]: Wrap godot to look for it in the store. Signed-off-by: Leo Famulari <leo@famulari.name>
| | * gnu: godot: Update to 3.2.Timotej Lazar2020-02-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/game-development.scm (godot): Update to 3.2. [source](snippet): Remove obsolete and unbundled (wslay) thirdparty files, and add new ones. [arguments](scons-flags): Disable the builtin wslay. [inputs]: Add wslay. Signed-off-by: Leo Famulari <leo@famulari.name>