aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAge
...
| * | | gnu: gmp: Apply fixes for armhf.•••* gnu/packages/patches/gmp-arm-asm-nothumb.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/multiprecision.scm (gmp): Add patch. Include --build triplet in configure args when building natively. * gnu/packages/commencement.scm (gcc-final): Use bootstrap guile to build gmp-source. Mark H Weaver2015-01-07
| * | | gnu: gcc: Use 'gcc-configure-flags-for-triplet' for native compilers too.•••* gnu/packages/gcc.scm (gcc-configure-flags-for-triplet): Do not export it. (gcc-4.7): Pass the result of 'gcc-configure-flags-for-triplet' to configure for all builds, including native ones. * gnu/packages/cross-base.scm (cross-gcc-arguments): Do not add the result of 'gcc-configure-flags-for-triplet' here, since it is now included in the configure-flags inherited from gcc-4.8. Mark H Weaver2015-01-07
| * | | Move 'nix-system->gnu-triplet' to (guix utils) and export it.•••* gnu/packages/commencement.scm (nix-system->gnu-triplet): Move to... * guix/utils.scm (nix-system->gnu-triplet): ... here. Fix docstring typo. Mark H Weaver2015-01-07
| * | | gnu: gcc-static: Remove -lgcc_s from GNU_USER_TARGET_LIB_SPEC.•••* gnu/packages/make-bootstrap.scm (%gcc-static): Add 'remove-lgcc_s phase. * gnu/packages/gcc.scm (gcc-4.7): Add comment. Mark H Weaver2015-01-07
| * | | gnu: bootstrap: Fix egrep and fgrep after unpacking bootstrap binaries.•••* gnu/packages/bootstrap.scm (%bootstrap-coreutils&co): Add #:snippet argument to 'package-from-tarball' that calls 'patch-shebang' on egrep and fgrep after unpacking. Test 'fgrep' instead of 'true'. Mark H Weaver2015-01-07
| * | | gnu: bootstrap: Add support for snippets to 'package-from-tarball'.•••* gnu/packages/bootstrap.scm (package-from-tarball): Add new keyword argument #:snippet. Mark H Weaver2015-01-07
| * | | gnu: tcl: Pass --mandir to configure.•••This partially reverts 9b1bf33081652210502c6ef34506e27a9bc60f06. "gnu: Remove a bunch of now unneeded '--mandir' configure flags." * gnu/packages/tcl.scm (tcl)[arguments]: Put back the --mandir configure flag, with a comment explaining why it's still needed. Mark H Weaver2015-01-07
| * | | gnu: Make libtool and libltdl completely separate.•••* gnu/packages/autotools.scm (libtool)[outputs]: Remove. [arguments]: Remove 'if' around arguments. Add #:configure-flags. * gnu/packages/apr.scm (apr)[inputs]: Change libtool to libltdl. * gnu/packages/fontutils.scm (libuninameslist)[native-inputs]: Remove "libtool-bin". * gnu/packages/global.scm (global): Change libtool to libltdl. * gnu/packages/gnunet.scm (libextractor, gnunet): Likewise. * gnu/packages/graphviz.scm (graphviz): Likewise. * gnu/packages/libcanberra.scm (libcanberra): Likewise. * gnu/packages/libevent.scm (libuv)[native-inputs]: Remove "bin" part for libtool. * gnu/packages/mail.scm (mailutils): Change libtool to libltdl. (libetpan): Remove "bin" part for libtool. * gnu/packages/mp3.scm (libmp3splt): Change libtool to libltdl. * gnu/packages/openldap.scm (openldap): Remove "bin" part of libtool. Move it from 'inputs' to 'native-inputs'. * gnu/packages/photo.scm (libgphoto2): Change libtool to libltdl. * gnu/packages/pulseaudio.scm (pulseaudio): Likewise. * gnu/packages/ssh.scm (guile-ssh): Remove "bin" part of libtool. * gnu/packages/web.scm (libpsl): Likewise. * gnu/packages/weechat.scm (weechat): Move libtool to 'native-inputs' and add libltdl to 'inputs'. Ludovic Courtès2015-01-07
| * | | gnu: libtool: Update to 2.4.4.•••* gnu/packages/patches/libtool-2.4-skip-tests.patch: Rename to... * gnu/packages/patches/libtool-skip-tests.patch: ... this. * gnu/packages/patches/libtool-skip-tests-for-mips.patch: Remove. * gnu-system.am (dist_patch_DATA): Adjust accordingly. * gnu/packages/autotools.scm (libtool): Update to 2.4.4. (libtool-2.4.4): Remove. Ludovic Courtès2015-01-07
| * | | gnu: guile: Depend on 'libltdl' rather than 'libtool'.•••* gnu/packages/guile.scm (guile-1.8, guile-2.0): Replace LIBTOOL with LIBLTDL. Ludovic Courtès2015-01-07
| * | | gnu: libtool: Add libltdl as a separate package.•••* gnu/packages/autotools.scm (libltdl): New variable. Ludovic Courtès2015-01-07
| * | | gnu: libtool: Use 'parallel-job-count' to get the argument for '-j'.•••* gnu/packages/autotools.scm (libtool)[arguments] <check>: Use (parallel-job-count) instead of hand-written code. Ludovic Courtès2015-01-07
| * | | Revert "gnu: gcc: Add '-lgcc_s' only when '-pthread' is given."•••This reverts commit 9097e666d48c9b6c0263dcbe60b5af69ff7689f4. This turned out not to be a good strategy. Some build system, e.g. tcl's, do not pass -pthread on GNU/Linux by default, but merely link with -lpthread. Also, Ludovic found other cases where libgcc_s is dlopened by libc that have nothing to do with pthreads, e.g. to walk the stack. Mark H Weaver2015-01-07
| * | | gnu: guile: Apply fixes for arm.•••* gnu/packages/patches/guile-arm-fixes.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/guile.scm (guile-2.0): Add patch. Mark H Weaver2015-01-06
| * | | gnu: gcc: Add '-lgcc_s' only when '-pthread' is given.•••Suggested by Ludovic Courtès <ludo@gnu.org>. * gnu/packages/gcc.scm (gcc-4.7): In our modified GNU_USER_TARGET_LIB_SPEC, add '-lgcc_s' only when '-pthread' is given. Mark H Weaver2015-01-06
| * | | gnu: gcc: Improve dynamic linker patching code.•••* gnu/packages/gcc.scm (gcc-4.7): Join multi-line definitions of GLIBC_DYNAMIC_LINKER* before attempting substitutions. (gcc-4.9)[arguments]: Remove arguments override. Mark H Weaver2015-01-06
| * | | gnu: patchelf: Update to 0.8.•••* gnu/packages/elf.scm (patchelf): Update to 0.8. * gnu/packages/patches/patchelf-page-size.patch: Adapt to new version. Mark H Weaver2015-01-06
| * | | gnu: bash: Update to 4.3.33.•••* gnu/packages/bash.scm (%patch-series-4.3): Add patches 31-33. Mark H Weaver2015-01-06
| * | | gnu: udev: Remove package, now superceded by eudev.•••* gnu/packages/linux.scm (udev): Remove. (eudev): Incorporate fields formerly inherited from udev. Mark H Weaver2015-01-06
| * | | gnu: lvm2: Switch to eudev from udev.•••* gnu/packages/linux.scm (lvm2)[inputs]: Use eudev, not udev. Mark H Weaver2015-01-06
| * | | gnu: swig: Build a UTF-8 locale for the tests.•••* gnu/packages/swig.scm (swig)[arguments]: Add 'install-locales' phase. Mark H Weaver2015-01-06
| * | | gnu: icu4c: Avoid use of 'patchelf'; fix build on ARM systems.•••* gnu/packages/icu4c.scm (icu4c)[inputs]: Remove patchelf. [configure-flags]: Add --enable-rpath. Add --with-data-packaging=archive on arm systems. [phases]: Remove 'add-lib-to-runpath' phase. Mark H Weaver2015-01-06
| * | | gnu: gawk: Fix target-system check.•••* gnu/packages/gawk.scm (gawk): Fix target-system check. Mark H Weaver2015-01-06
| * | | gnu: boost: Fix target-system check.•••* gnu/packages/boost.scm (boost): Fix target-system check. Mark H Weaver2015-01-06
| * | | gnu: texlive: Fix target-system check.•••* gnu/packages/texlive.scm (texlive)[arguments]: Fix target-system check. Mark H Weaver2015-01-06
| * | | gnu: gtk+: Include xorg-server in native-inputs on MIPS; enable tests.•••* gnu/packages/gtk.scm (gtk+)[native-inputs]: Unconditionally include xorg-server and enable tests. Mark H Weaver2015-01-06
| * | | gnu: mit-krb5: Build with default gcc.•••* gnu/packages/mit-krb5.scm (mit-krb5)[native-inputs]: Remove gcc-4.7. Mark H Weaver2015-01-06
| * | | Merge branch 'master' into core-updatesMark H Weaver2015-01-06
| |\ \ \
| * | | | gnu: Remove a bunch of now unneeded '--mandir' configure flags.•••This has become redundant with the 'validate-documentation-location' phase introduced in commit d68fe74. * gnu/packages/compression.scm (bzip2): Remove 'fix-man-dir' phase. * gnu/packages/ncurses.scm (ncurses)[arguments]: Remove --mandir. * gnu/packages/pth.scm (pth)[arguments]: Remove #:configure-flags. * gnu/packages/tcl.scm (tcl)[arguments]: Likewise. * gnu/packages/xiph.scm (flac)[arguments]: Likewise. Ludovic Courtès2015-01-04
| * | | | ld-wrapper: Add '-rpath' flag for libraries passed by file name.•••Discussed at <http://lists.gnu.org/archive/html/guix-devel/2015-01/msg00028.html>. * gnu/packages/ld-wrapper.scm (switch-arguments, library-path): Remove. (library-files-linked): Rewrite to include the name of libraries passed by file names, and to honor the current -L search path instead of the final one. (rpath-arguments): Remove 'lib-path' parameter. Expect LIBRARY-FILES to be a list of absolute file names. (ld-wrapper): Adjust accordingly. Ludovic Courtès2015-01-04
| * | | | build-system/gnu: Use executables from the target inputs in 'patch-shebangs'.•••Fixes <http://bugs.gnu.org/18895>. * guix/build/gnu-build-system.scm (patch-shebangs): Add #:inputs parameter. Remove 'bindirs'. Add 'bin-directories', 'output-bindirs', and 'input-bindirs'. Use them instead of (getenv "PATH") to as the argument to 'patch-shebang'. Ludovic Courtès2015-01-04
| * | | | guix package: Follow symlinks for pattern search paths.•••* guix/scripts/package.scm (search-path-environment-variables): Add local 'files' variable. * tests/packages.scm ("--search-paths with pattern"): New test. Ludovic Courtès2015-01-03
| * | | | gnu: libxml2: Wrap search path specification in a list.•••Reported by Mark H Weaver. * gnu/packages/xml.scm (libxml2)[native-search-paths]: Wrap into a list. Ludovic Courtès2015-01-03
| * | | | gnu: glibc: MIPS: Avoid a dangling `vfork@GLIBC_2.0' reference.•••* gnu/packages/patches/glibc-mips-dangling-vfork-ref.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/base.scm (glibc): Add patch. Mark H Weaver2014-12-30
| * | | | gnu: glibc: Add fixes for CVE-2014-7817 and CVE-2012-3406.•••* gnu/packages/patches/glibc-CVE-2012-3406.patch, gnu/packages/patches/glibc-CVE-2014-7817.patch: New files. * gnu-system.am (dist_patch_DATA): Add them. * gnu/packages/base.scm (glibc): Add patches. Mark H Weaver2014-12-30
| * | | | Merge branch 'master' into core-updatesMark H Weaver2014-12-30
| |\ \ \ \
| * | | | | gnu: Revert use of '--strip-all'.•••This reverts commits f05bdc9412135f34a1c417edc203c35cd005d0d5 and 856ae5e6c71a1283a414d33e638051f95d3cce35. This broke all sorts of things. See <http://hydra.gnu.org/eval/102058>, for example. Ludovic Courtès2014-12-29
| * | | | | gnu: Don't use --strip-all in cases where this is problematic.•••This is a followup to 856ae5e. See <http://hydra.gnu.org/build/180506> for an example of build failure. * guix/build/gnu-build-system.scm (strip): Add #:archive-strip-flags parameter. Use it when (ar-file? path). * guix/build-system/gnu.scm (gnu-build): Add #:archive-strip-flags parameter and pass it down. * gnu/packages/commencement.scm (gcc-boot0)[arguments]: Add #:strip-flags. * gnu/packages/base.scm (glibc)[arguments]: Likewise. Ludovic Courtès2014-12-28
| * | | | | gnu: libxml2: Add search path specification.•••* gnu/packages/xml.scm (libxml2)[native-search-paths, search-paths]: New fields. * gnu/packages/gnome.scm (gnome-doc-utils)[arguments]: Remove. * gnu/packages/gps.scm (gpscorrelate)[arguments]: Remove settings for 'XML_CATALOG_FILES' from 'configure' phase. * gnu/packages/web.scm (tinyproxy)[arguments]: Likewise. Ludovic Courtès2014-12-27
| * | | | | guix package: Use 'search-path-as-list' instead of custom code.•••This will handle the new 'file-type' and 'file-pattern' fields correctly. * guix/scripts/package.scm (search-path-environment-variables)[search-path-definition]: Rewrite in terms of 'search-path-as-list'. Ludovic Courtès2014-12-27
| * | | | | utils: Export 'search-path-as-list'.•••* guix/build/utils.scm (search-path-as-list): Make public. * guix/scripts/environment.scm (for-each-search-path): Use it. Ludovic Courtès2014-12-27
| * | | | | packages: Add 'file-pattern' field to 'search-path-specification'.•••* guix/packages.scm (<search-path-specification>)[file-pattern]: New field. (search-path-specification->sexp): Honor it. Ludovic Courtès2014-12-27
| * | | | | build-support/gnu: Add support for file patterns in search paths.•••* guix/build/utils.scm (search-path-as-list): Add #:pattern parameter and honor it. (set-path-environment-variable): Likewise, and pass it to 'search-path-as-list'. * guix/packages.scm (search-path-specification->sexp): Add PATTERN slot. * guix/build/gnu-build-system.scm (set-paths): Adjust accordingly. Ludovic Courtès2014-12-27
| * | | | | packages: Add 'file-type' field to 'search-path-specification'.•••Fixes <http://bugs.gnu.org/18033>. * guix/packages.scm (<search-path-specification>): Rename 'directories' field to 'files'. Add 'file-type'. (search-path-specification->sexp): Honor 'file-type'. * gnu/packages/autotools.scm, gnu/packages/bootstrap.scm, gnu/packages/cross-base.scm, gnu/packages/games.scm, gnu/packages/gcc.scm, gnu/packages/glib.scm, gnu/packages/guile.scm, gnu/packages/man.scm, gnu/packages/perl.scm, gnu/packages/pkg-config.scm, gnu/packages/python.scm, gnu/packages/ruby.scm, gnu/packages/xfce.scm: Change 'directories' to 'files'. * tests/packages.scm ("search paths"): Change 'directories' field to 'files'. * guix/scripts/environment.scm (for-each-search-path): Likewise. Ludovic Courtès2014-12-27
| * | | | | build-system/gnu: Strip with '--strip-all' instead of '--strip-debug'.•••This saves 19% on the 'bin' directory of Coreutils, and certainly helpful for things like Git's 'libexec' directory. * guix/build-system/gnu.scm (gnu-build): Change default value for #:strip-flags to '("--strip-all"). * guix/build/gnu-build-system.scm (strip): Ditto. * gnu/packages/linux.scm (linux-libre)[arguments]: Add #:strip-flags. Ludovic Courtès2014-12-27
| * | | | | gnu: Use patch --force instead of --batch.•••* gnu/packages/linux.scm (linux-libre, net-tools): Pass "--force" to patch, instead of "--batch". * gnu/packages/mit-krb5.scm (mit-krb5): Ditto. Mark H Weaver2014-12-27
| * | | | | build-system/gnu: Add support for non-directory search paths.•••Partly fixes <http://bugs.gnu.org/18033>. * guix/build/utils.scm (search-path-as-list): Rename 'sub-directories' parameter to 'files'. Add #:type parameter and honor it. (set-path-environment-variable): Likewise. Pass #:type to 'search-path-as-list'. * guix/packages.scm (search-path-specification->sexp): Add 'directory as the last item of the tuple. * guix/build/gnu-build-system.scm (set-paths): Add 'type' to search-path pattern. Pass #:type to 'set-path-environment-variable'. Ludovic Courtès2014-12-27
| * | | | | gnu: gettext: Update to 0.19.4.•••* gnu/packages/gettext.scm (gnu-gettext): Update to 0.19.4. Ludovic Courtès2014-12-27
| * | | | | gnu: binutils: Update to 2.25.•••* gnu/packages/base.scm (binutils): Update to 2.25. Ludovic Courtès2014-12-27
| * | | | | gnu: m4: Remove already-applied patch.•••* gnu/packages/patches/m4-readlink-EINVAL.patch: Remove file. * gnu-system.am (dist_patch_DATA): Remove it. * gnu/packages/m4.scm (m4): Remove patch. Mark H Weaver2014-12-26