summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2014-06-19system: Prefer packages from %FINAL-INPUTS....* gnu/packages/base.scm (canonical-package): New procedure. * gnu/system.scm (%base-packages): Pass BASH, COREUTILS, FINDUTILS, GREP, and SED through 'canonical-package'. Ludovic Courtès
2014-06-19guix system: 'init' makes sure the target store directory exists....* guix/scripts/system.scm (install): Before calling 'copy-closure', make sure directory (%store-prefix) under TARGET exists. Ludovic Courtès
2014-06-19gnu: isc-dhcp: In native builds, refer to the final Coreutils and sed....* gnu/packages/admin.scm (isc-dhcp)[inputs]: Add Coreutils and sed only when (%current-target-system) is true. Ludovic Courtès
2014-06-19gnu: privoxy: Use etc/privoxy as the sysconfdir....Reported by "d00000" on #guix. * gnu/packages/tor.scm (privoxy)[arguments]: Add #:configure-flags. Ludovic Courtès
2014-06-18gnu: gawk: Apply work around to build system for MIPS....* gnu/packages/gawk.scm (gawk): Work around a build problem on MIPS. Mark H Weaver
2014-06-18gnu: linux-libre: Upgrade to 3.15....* gnu/packages/linux.scm (linux-libre): Upgrade to 3.15. Ludovic Courtès
2014-06-18gnu: kbd: Patch buggy makefile....* gnu/packages/linux.scm (kbd)[source]: Add 'modules' and 'snippet' fields. Ludovic Courtès
2014-06-18build: Add 'assert-final-inputs-self-contained' rule....* build-aux/check-final-inputs-self-contained.scm: New file. * Makefile.am (EXTRA_DIST): Add it. (assert-final-inputs-self-contained): New target. (distcheck-hook): Depend on it. Ludovic Courtès
2014-06-17substitute-binary: Avoid the term "narinfo" in user messages....* guix/scripts/substitute-binary.scm (assert-valid-narinfo): Change message to avoid the term "narinfo". Ludovic Courtès
2014-06-17Thank Benno.Ludovic Courtès
2014-06-17nls: Use xgettext and msgmerge with --no-wrap....Suggested by Benno Schulenberg <coordinator@translationproject.org>. * po/guix/Makevars (XGETTEXT_OPTIONS): Add --no-wrap. (MSGMERGE_OPTIONS): New variable. * po/packages/Makevars (XGETTEXT_OPTIONS): Add --no-wrap. (MSGMERGE_OPTIONS): New variable. Ludovic Courtès
2014-06-17nls: Remove obsolete messages from PO files....Suggested by Benno Schulenberg <coordinator@translationproject.org>. * po/guix/eo.po, po/guix/pt_BR.po, po/guix/sr.po, po/guix/vi.po, po/packages/eo.po, po/packages/pt_BR.po, po/packages/sr.po, po/packages/vi.po: Remove obsolete messages. Ludovic Courtès
2014-06-16tests: Use the C locale for 'guix package -s'....* tests/guix-package.sh: Set LC_MESSAGES=C before the 'guix package -s' test. Ludovic Courtès
2014-06-16gnu: guile-ncurses: Work around missing test files....* gnu/packages/patches/guile-ncurses-tests.patch: New file. * gnu/packages/guile.scm (guile-ncurses)[source]: Use it. * gnu-system.am (dist_patch_DATA): Add it. Ludovic Courtès
2014-06-16gnu: icu4c: Upgrade to 53.1....* gnu/packages/icu4c.scm (icu4c): Upgrade to 53.1. Ludovic Courtès
2014-06-16gnu: icu4c: Fix failing test....* gnu/packages/patches/icu4c-test-date-format.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/icu4c.scm (icu4c)[source]: Use it. Ludovic Courtès
2014-06-16gnu: qemu: Remove dependency on Samba....* gnu/packages/qemu.scm (qemu-headless)[inputs]: Remove SAMBA. [arguments]: Remove --smbd configure flag. Ludovic Courtès
2014-06-15Reverting "gnu: ncurses: Build libtinfo."...This reverts commit 953c9fcf8c1a2e0cbebadd9c07591caed7d26f8a. It turns out that most packages (guile-ncurses, cursynth, aumix, util-linux, etc.) expect libncurses to provide everything. So they had to be patched to add -ltinfow to their LDFLAGS, which is counterproductive. Other recent distros take that approach---e.g., <https://bugs.launchpad.net/ubuntu/+source/ncurses/+bug/259139>. Ludovic Courtès
2014-06-15gnu: apr: Build sequentially....* gnu/packages/apr.scm (apr)[arguments]: New field. Ludovic Courtès
2014-06-15gnu: Remove dependency from gzip to the bootstrap binaries....* gnu/packages/base.scm (grep-final): New variable. (%boot5-inputs): Add it. (%final-inputs): Use it. Ludovic Courtès
2014-06-15gnu: Add cook....* gnu/packages/cook.scm: New file. * gnu-system.am: New file cook.scm. John Darrington
2014-06-14gnu: gcc: Really avoid 'install-strip' when cross-compiling....This is a followup to 6b9229c. * gnu/packages/gcc.scm (gcc-4.7): Turn 'install-target' into a thunk, so (%current-target-system) is current. Ludovic Courtès
2014-06-14Merge branch 'master' into core-updatesLudovic Courtès
2014-06-14ui: Avoid circularity with (guix gexp)....Fixes a regression introduced in 56b8210 ("guix build: Allow gexps to be passed to '-e'.") * guix/ui.scm (%guix-user-module): Wrap in 'delay'. (read/eval): Adjust accordingly. Ludovic Courtès
2014-06-14i18n: Move package descriptions from 'guix' to 'guix-packages'....* po/guix: Merge with po/packages as per <https://lists.gnu.org/archive/html/guix-devel/2014-06/msg00058.html>. * po/packages/LINGUAS: Add eo, pt_BR, sr, and vi. Ludovic Courtès
2014-06-14guix: Look for "guix-packages" messages in $localedir....* scripts/guix.in (run-guix-main): Add 'bindtextdomain' call. Ludovic Courtès
2014-06-14guix build: Allow gexps to be passed to '-e'....* guix/ui.scm (%guix-user-module): New variable. (read/eval): Pass it as the second argument to 'eval'. * guix/scripts/build.scm (options/resolve-packages): Add case for 'gexp?'. * tests/guix-build.sh: Add tests. * doc/guix.texi (Invoking guix build): Document '-e gexp'. guxi build: Allow gexps to be passed to '-e'. * guix/ui.scm (%guix-user-module): New variable. (read/eval): Pass it as the second argument to 'eval'. * guix/scripts/build.scm (options/resolve-packages): Add case for 'gexp?'. * tests/guix-build.sh: Add tests. * doc/guix.texi (Invoking guix build): Document '-e gexp'. Ludovic Courtès
2014-06-14gnu: gcc-4.7: Upgrade to 4.7.4....* gnu/packages/gcc.scm (gcc-4.7): Upgrade to 4.7.4. Ludovic Courtès
2014-06-14gnu: gcc: Don't use the 'install-strip' target when cross-compiling....* gnu/packages/gcc.scm (gcc-4.7): Add 'install-target' variable. Use it in the 'install' phase. Ludovic Courtès
2014-06-14gnu: gcc: Fix cross-compilation of gcc (Canadian cross)....* gnu/packages/gcc.scm (gcc-4.7)[arguments] <#:make-flags>: When (%current-target-system) is true, pass the empty list or '("CFLAGS=-g0 -O2"). Ludovic Courtès
2014-06-14gnu: make-bootstrap: Make sure %gcc-stripped binaries are usable....* gnu/packages/make-bootstrap.scm (%gcc-stripped): When (%current-target-system) is false, run gcc, g++, and cpp with --version. Ludovic Courtès
2014-06-14gnu: make-bootstrap: Build %gcc-static with --disable-lto....* gnu/packages/make-bootstrap.scm (%gcc-static): Pass --disable-lto. Ludovic Courtès
2014-06-13gnu: Add pingus....* gnu/packages/games.scm (pingus): New variable. * gnu/packages/patches/pingus-sdl-libs-config.patch: New patch. * gnu-system.am (dist_patch_DATA): Add it. Eric Bavier
2014-06-13gnu: Add busybox....* gnu/packages/busybox.scm: New file. * gnu-system.am: Add gnu/packages/busybox.scm. John Darrington
2014-06-13gnu: make-bootstrap: Build libstdc++ in '%gcc-static'....* gnu/packages/make-bootstrap.scm (%gcc-static): Re-enable C++. Ludovic Courtès
2014-06-13Separate package description translations from string translations....* po/packages/LINGUAS, po/packages/Makevars, po/packages/POTFILES.in: New files. * po/guix/Makevars (DOMAIN): Change to "guix". (XGETTEXT_OPTIONS): Remove "--keyword=synopsis --keyword=description". * po/guix/POTFILES.in: Remove gnu/packages/*.scm. * configure.ac: Change to gettext 0.18.3. Produce po/packages/Makefile.in. * Makefile.am (SUBDIRS): Add po/packages. * guix/ui.scm (%package-text-domain): New variable. (P_): New procedure. (package->recutils): Use 'P_' instead of '_'. * guix/scripts/package.scm (find-packages-by-description): Use 'P_' instead of 'gettext'. Ludovic Courtès
2014-06-13Move gettext files to 'po/guix'....* po: Rename to... * po/guix: ... this. * po/guix/Makevars (subdir, top_builddir): Adjust accordingly. * configure.ac: Change 'po/Makefile.in' to 'po/guix/Makefile.in'. * Makefile.am (SUBDIRS): Change 'po' to 'po/guix'. Ludovic Courtès
2014-06-13gnu: make-bootstrap: Use single-output GCCs....* gnu/packages/make-bootstrap.scm (package-with-relocatable-glibc)[native-inputs]: Add 'outputs' field for the rewritten GCC. (%gcc-stripped): Add 'outputs' field. Ludovic Courtès
2014-06-13pull: Copy and compile gnu.scm....* guix/build/pull.scm (build-guix): Copy gnu.scm to OUT. Ludovic Courtès
2014-06-12gnu: grep: Upgrade to 2.20....* gnu/packages/base.scm (grep): Upgrade to 2.20. Ludovic Courtès
2014-06-12gnu: gettext: Upgrade to 0.19.1....* gnu/packages/gettext.scm (gnu-gettext): Upgrade to 0.19.1. Ludovic Courtès
2014-06-12gnu: make-bootstrap: Fix compilation of %gcc-static....* gnu/packages/make-bootstrap.scm (%gcc-static)[arguments] <#:configure-flags>: Add --disable-bootstrap --with-stage1-ldflags=-static. Remove #:make-flags. Ludovic Courtès
2014-06-12gnu: Add tinyproxy....* gnu/packages/web.scm (tinyproxy): New variable. * gnu/packages/docbook.scm: Remove #:select (tar) John Darrington
2014-06-12gnu: Add dropbear....* gnu/packages/ssh.scm (dropbear): New variable. John Darrington
2014-06-09gnu: cross-gcc: Use a single output....* gnu/packages/cross-base.scm (cross-gcc): Add 'outputs' field. Ludovic Courtès
2014-06-09guix build: Only 'guix build' sets #:print-build-trace....This makes 'guix package' et al. slightly less verbose, by not emitting "@ substituter-started" lines and similar. * guix/scripts/build.scm (set-build-options-from-command-line): Pass #:print-build-trace. (%default-options): Add 'print-build-trace?'. Ludovic Courtès
2014-06-09doc: Add a few words on the term "derivation"....* doc/guix.texi (Programming Interface): Add a sentence on "derivation". Ludovic Courtès
2014-06-09Thank Carlos.Ludovic Courtès
2014-06-09gnu: skribilo: Propagate Guile dependencies....Reported by Carlos Carleos <carleos@uniovi.es>. * gnu/packages/skribilo.scm (skribilo)[inputs]: Move GUILE-READER/GUILE-2.0 and GUILE-LIB to... [propagated-inputs]: ... here. New field. Ludovic Courtès
2014-06-09gnu: coreutils: Remove run-time dependency on Bash....* gnu/packages/base.scm (coreutils)[arguments] <patch-shell-references>: Leave src/split.c unpatched. Set $SHELL. Use .../bin/sh and not .../bin/bash in tests. Ludovic Courtès