summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* gnu: dbus: Downgrade to 1.12.20.•••DBus follows an even/odd release policy and 1.13 is thus unstable, as pointed out by Marius Bakke on IRC. * gnu/packages/glib.scm (dbus): Downgrade to 1.12.20. Ludovic Courtès2020-11-281-3/+3
* gnu: dbus: Update to 1.13.18.•••* gnu/packages/glib.scm (dbus): Update to 1.13.18. [source]: Remove "dbus-CVE-2020-12049.patch". * gnu/packages/patches/dbus-CVE-2020-12049.patch: Remove. * gnu/local.mk (dist_patch_DATA): Remove it. Ludovic Courtès2020-11-283-64/+4
* gnu: util-linux: Update to 2.35.2.•••* gnu/packages/linux.scm (util-linux): Update to 2.35.2. Ludovic Courtès2020-11-281-2/+2
* gnu: libffi: Add unreleased patch to fix float128 on powerpc64le.•••* gnu/packages/patches/libffi-float128-powerpc64le.patch: Import patch file from <https://github.com/libffi/libffi/pull/561.patch>. * gnu/packages/libffi.scm (libffi)[patches]: Apply patch. * gnu/local.mk (dist_patch_DATA): Add patch file to build system. Signed-off-by: Ludovic Courtès <ludo@gnu.org> John Doe2020-11-283-1/+61
* gnu: gcc: Phases no longer return a Boolean.•••* gnu/packages/gcc.scm (gcc-4.7, gcc-4.9) (make-libiberty, custom-gcc, libgccjit) (make-libstdc++-doc, isl, gnu-c-manual): Remove trailing #t from phases. Ludovic Courtès2020-11-251-22/+11
* gnu: base, gcc: Removing trailing #t from snippets.•••* gnu/packages/base.scm (libiconv)[source]: Remove trailing #t from 'snippet'. * gnu/packages/gcc.scm (gcc-4.8)[source]: Likewise. (gcc-4.9)[source]: Likewise. (gcc-5)[source]: Likewise. Ludovic Courtès2020-11-252-28/+20
* packages: Ignore return value of origin snippets.•••* guix/packages.scm (patch-and-repack): Ignore return value of SNIPPET and remove warning about non #t return value. Ludovic Courtès2020-11-251-20/+11
* build-system/texlive: Phases no longer return a Boolean.•••* guix/build/texlive-build-system.scm (configure): Remove trailing #t. (build): Use 'for-each' instead of 'every'. (install): Remove trailing #t. Ludovic Courtès2020-11-251-7/+5
* build-system/minify: Phases no longer return a Boolean.•••* guix/build/minify-build-system.scm (minify): Use 'for-each' instead of 'every'. Call 'close-pipe' and call error when it returns non-zero. (build): Use 'for-each' instead of 'every'. (install): Remove trailing #t. Ludovic Courtès2020-11-251-4/+7
* gnu: base, commencement: Remove trailing #t from build phases.•••* gnu/packages/base.scm (grep, tar, findutils) (coreutils, coreutils-8.30, gnu-make, gnu-make-4.2) (binutils-gold, glibc, make-glibc-locales): (glibc/hurd-headers, tzdata): Remove trailing #t in build phases. * gnu/packages/commencement.scm (bootar) (gash-boot, gash-utils-boot, mes-boot): (gzip-mesboot, gnu-make-mesboot0, bzip2-mesboot) (bash-mesboot0, tcc-boot, diffutils-mesboot) (patch-mesboot, sed-mesboot0, binutils-mesboot0) (gcc-core-mesboot0, mesboot-headers, gawk-mesboot0) (glibc-mesboot0, gcc-mesboot0, tar-mesboot) (grep-mesboot, binutils-mesboot1, gnu-make-mesboot) (gawk-mesboot, sed-mesboot, bash-mesboot) (gcc-core-mesboot1, gcc-mesboot1, binutils-mesboot) (glibc-headers-mesboot, glibc-mesboot, gcc-mesboot1-wrapper) (gcc-mesboot, gnu-make-boot0, binutils-boot0) (libstdc++-boot0, gcc-boot0, perl-boot0, python-boot0) (glibc-final-with-bootstrap-bash) (cross-gcc-wrapper, gettext-boot0, gcc-final): Remove trailing #t in build phases. Ludovic Courtès2020-11-252-176/+92
* build-system/gnu: Ignore the result of phase procedures.•••* guix/build/gnu-build-system.scm (set-SOURCE-DATE-EPOCH) (set-paths, install-locale, unpack, bootstrap) (patch-usr-bin-file, patch-source-shebangs) (patch-generated-file-shebangs, check) (patch-shebangs, strip, validate-runpath) (validate-documentation-location, reset-gzip-timestamps) (compress-documentation, delete-info-dir-file) (patch-dot-desktop-files, install-license-files): Remove trailing #t. (gnu-build): Use 'for-each' instead of 'every', ignore the result if each phase procedure, and remove warning about non #t phase results. Ludovic Courtès2020-11-251-65/+34
* gnu: gsl: Build shared libraries only.•••* gnu/packages/maths.scm (gsl)[arguments]: Add #:configure-flags. Ludovic Courtès2020-11-251-1/+2
* gnu: gsl: Demote conditional phase logic.•••* gnu/packages/maths.scm (gsl)[arguments]: Move 'cond' within 'modify-phases'. Ludovic Courtès2020-11-251-29/+31
* build-system/python: Set PYTHONDONTWRITEBYTECODE.•••* guix/build/python-build-system.scm (enable-bytecode-determinism): Set PYTHONDONTWRITEBYTECODE. Maxim Cournoyer2020-11-201-0/+3
* gnu: dbus: Remove replacement.•••* gnu/packages/glib.scm (dbus)[replacement]: Remove. [source]: Add "dbus-CVE-2020-12049.patch". (dbus/fixed): Remove. Ludovic Courtès2020-11-191-12/+3
* utils: Add #:keep-permissions? parameter to 'copy-recursively'.•••* guix/build/utils.scm (copy-recursively): Add #:keep-permissions? and honor it. * doc/guix.texi (Build Utilities): Adjust accordingly. Ludovic Courtès2020-11-192-9/+15
* utils: Add #:copy-file parameter to 'copy-recursively'.•••* guix/build/utils.scm (copy-recursively): Add #:copy-file and honor it. * doc/guix.texi (Build Utilities): Adjust accordingly. Ludovic Courtès2020-11-192-8/+10
* utils: 'copy-recursively' keeps directory mtime when #:keep-mtime? is true.•••Fixes <https://bugs.gnu.org/44741>. * guix/build/utils.scm (copy-recursively): Move 'set-file-time' call from 'down' to 'up'. Ludovic Courtès2020-11-191-4/+5
* gnu: cmake-minimal: Remove some documentation.•••These files are still available in the user-facing cmake package. * gnu/packages/cmake.scm (cmake-minimal)[arguments]: Add phase to remove help documentation. Efraim Flashner2020-11-191-0/+10
* gnu: cmake: Only build ccmake on user facing cmake.•••* gnu/packages/cmake.scm (cmake-bootstrap)[inputs]: Remove ncurses. (cmake)[inputs]: Add ncurses. Efraim Flashner2020-11-191-1/+3
* gnu: libxml2: Move documentation to its own output.•••This saves about 75% of the space in the "out" output. * gnu/packages/xml.scm (libxml2)[outputs]: Add doc. [arguments]: Rename the 'move-static-libs phase to 'use-other-outputs and adjust to move documentation to "doc" output. Efraim Flashner2020-11-191-6/+12
* gnu: nettle: UPdate to 3.6.•••* gnu/packages/nettle.scm (nettle): Update to 3.6. Efraim Flashner2020-11-181-3/+3
* gnu: bison: Update to 3.7.4.•••* gnu/packages/bison.scm (bison): Update to 3.7.4. Efraim Flashner2020-11-181-3/+3
* gnu: libgcrypt: Update to 1.8.7.•••* gnu/packages/gnupg.scm (libgcrypt): Update to 1.8.7. Miguel Ángel Arruga Vivas2020-11-181-2/+2
* gnu: libgpg-error: Update to 1.39.•••* gnu/packages/gnupg.scm (libgpg-error): Update to 1.39. Miguel Ángel Arruga Vivas2020-11-181-2/+2
* gnu: Add solidity.•••* gnu/packages/solidity.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add solidity.scm. Signed-off-by: Christopher Baines <mail@cbaines.net> Martin Becze2020-11-182-0/+93
* gnu: z3: Update to 4.8.9.•••* gnu/packages/maths.scm (z3): Update to 4.8.9. (cherry picked from commit dc2de508a38d8e0a3f93e8d6ded225d3a7e32548) Signed-off-by: Christopher Baines <mail@cbaines.net> Martin Becze2020-11-171-2/+3
* gnu: jsoncpp: Update to 1.9.4•••* gnu/packages/serialization.scm (jsoncpp): Update to 1.9.4. * gnu/packages/patches/jsoncpp-fix-inverted-case.patch: Removed old patch. * gnu/local.mk (dist_patch_DATA): Remove old patch. Signed-off-by: Christopher Baines <mail@cbaines.net> Martin Becze2020-11-173-26/+3
* gnu: gnutls: Make p11-kit a propagated input.•••Because p11-kit appears in the gnutls.pc file, it needs to be a propagated input. This was a regression introduced in 28a13226fd5cd08b3eb090151c0753424c3f6eb4 which broke things like HTTPS support in curl, which then broke Git clones from repositories using HTTPS. * gnu/packages/tls.scm (gnutls)[inputs]: Move p11-kit from here. [propagated-inputs]: To here. Christopher Baines2020-11-171-7/+7
* gnu: grep: Update to 3.6.•••* gnu/packages/base.scm (grep): Update to 3.6. Ludovic Courtès2020-11-171-2/+2
* gnu: gmp: Update to 6.2.1.•••* gnu/packages/multiprecision.scm (gmp): Update to 6.2.1. Ludovic Courtès2020-11-171-2/+2
* utils: 'wrap-script' doesn't pass a non-literal string to 'format'.•••Reported by Vagrant Cascadian <vagrant@debian.org> in <https://bugs.gnu.org/44626>. * guix/build/utils.scm (wrap-script): Use 'display' instead of passing a non-literal string to 'format'. Ludovic Courtès2020-11-171-1/+1
* gnu: libtool: Restore shebangs on all libtoolize files.•••Fixes <https://bugs.gnu.org/25304>. * gnu/packages/autotools.scm (libtool)[restore-build-aux-shebang]: New phase after install. [restore-ltmain-shebang]: Remove phase, it is now performed by the phase restore-build-aux-shebang. Miguel Ángel Arruga Vivas2020-11-161-5/+13
* gnu: fontutils: Remove PDF files from the "doc" output.•••* gnu/packages/fontutils.scm (fontconfig)[arguments]: Add 'remove-pdf-files' phase. Ludovic Courtès2020-11-081-0/+7
* gnu: fontconfig: Add "doc" output.•••* gnu/packages/fontutils.scm (fontconfig)[outputs]: New field. [arguments]: Add 'move-man-sections'. Ludovic Courtès2020-11-081-5/+21
* gnu: libxi: Add "doc" output.•••* gnu/packages/xorg.scm (libxi)[outputs]: New field. [arguments]: Pass "--mandir". Ludovic Courtès2020-11-081-1/+5
* gnu: libxext: Add "doc" output.•••* gnu/packages/xorg.scm (libxext)[outputs]: New field. [arguments]: Pass "--mandir". Ludovic Courtès2020-11-081-0/+4
* gnu: libxcb: Add "doc" output.•••* gnu/packages/xorg.scm (libxcb)[outputs]: New field. [arguments]: Pass "--mandir". Ludovic Courtès2020-11-081-2/+6
* gnu: glib: Add a debug output.•••* gnu/packages/glib.scm (glib)[outputs]: Add "debug". Maxim Cournoyer2020-11-061-1/+2
* build-system/meson: Do not apply strip-runpath to the "debug" output.•••Because the debug files are read-only, the strip-runpath procedure would throw an exception when attempting to open them. * guix/build/meson-build-system.scm (shrink-runpath): Remove "debug" from the list of outputs to be processed. Maxim Cournoyer2020-11-061-1/+1
* gnu: sqlite: Build with '-g'.•••* gnu/packages/sqlite.scm (sqlite)[arguments]: Add "-g" to CFLAGS. Ludovic Courtès2020-11-031-2/+2
* gnu: python: Add missing patch.•••This is a follow-up to commit 5319f716cf575321bef4c501d7aebdc7220d69cf. Reported by efraim via IRC. * gnu/packages/patches/python-3-hurd-configure.patch: New file. Jan (janneke) Nieuwenhuizen2020-10-261-0/+27
* gnu: python: Move Hurd-specific configure fix into a patch.•••* gnu/packages/patches/python-3-configure-hurd.patch: this New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/python.scm (python-3.8)[source]: Use it. [arguments]: Remove "support-hurd-cross-compile" stage. Jan (janneke) Nieuwenhuizen2020-10-262-12/+3
* gnu: sqlite: Move Hurd-specific patch into source.•••* gnu/packages/sqlite.scm (sqlite)[native-inputs]: Move conditional "sqlite-hurd.patch" to... [source]: ...here. [arguments]: Remove "patch-sqlite/hurd" stage. Jan (janneke) Nieuwenhuizen2020-10-261-17/+1
* gnu: boost: Move conditional configure fix for the Hurd inline.•••* gnu/packages/boost.scm (boost)[arguments]: Inline configure substitution for the Hurd. Jan (janneke) Nieuwenhuizen2020-10-261-7/+3
* gnu: sudo: Undo "groff" dependency removal for the Hurd.•••* gnu/packages/admin.scm (sudo)[native-inputs]: Undo "groff" dependency removal for the Hurd. Jan (janneke) Nieuwenhuizen2020-10-261-4/+1
* gnu: glibc: Move patches for the Hurd from cross-libc.•••* gnu/packages/cross-base.scm (cross-libc)[arguments]: Remove "patch-libc/hurd" stage. [native-inputs]: Move hurd patches to... * gnu/packages/base.scm (glibc)[source]: ...here. Jan (janneke) Nieuwenhuizen2020-10-262-21/+4
* gnu: python-six: Update to 1.15.0.•••* gnu/packages/python-xyz.scm (python-six): Update to 1.15.0. Signed-off-by: Christopher Baines <mail@cbaines.net> Simon South2020-10-231-2/+2
* gnu: mpc: Update to 1.2.1.•••* gnu/packages/multiprecision.scm (mpc): Update to 1.2.1. Andreas Enge2020-10-231-2/+2
* gnu: inetutils: Let telnetd and rlogind find login.•••Without the shadow input, configure doesn't find login and sets PATH_LOGIN to a (wrong) default value, which means that rlogind and telnetd doesn't work. * gnu/packages/admin.scm (inetutils): Let telnetd and rlogind find login. [inputs]: Add shadow. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Michael Rohleder2020-10-221-0/+1