summaryrefslogtreecommitdiff
path: root/gnu
Commit message (Collapse)AuthorAge
...
| * | | | ld-wrapper: Add '-rpath' flag for libraries passed by file name.Ludovic Courtès2015-01-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | | gnu: libxml2: Wrap search path specification in a list.Ludovic Courtès2015-01-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reported by Mark H Weaver. * gnu/packages/xml.scm (libxml2)[native-search-paths]: Wrap into a list.
| * | | | gnu: glibc: MIPS: Avoid a dangling `vfork@GLIBC_2.0' reference.Mark H Weaver2014-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
| * | | | gnu: glibc: Add fixes for CVE-2014-7817 and CVE-2012-3406.Mark H Weaver2014-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
| * | | | Merge branch 'master' into core-updatesMark H Weaver2014-12-30
| |\ \ \ \
| * | | | | gnu: Revert use of '--strip-all'.Ludovic Courtès2014-12-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commits f05bdc9412135f34a1c417edc203c35cd005d0d5 and 856ae5e6c71a1283a414d33e638051f95d3cce35. This broke all sorts of things. See <http://hydra.gnu.org/eval/102058>, for example.
| * | | | | gnu: Don't use --strip-all in cases where this is problematic.Ludovic Courtès2014-12-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | | | gnu: libxml2: Add search path specification.Ludovic Courtès2014-12-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
| * | | | | packages: Add 'file-type' field to 'search-path-specification'.Ludovic Courtès2014-12-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | | | build-system/gnu: Strip with '--strip-all' instead of '--strip-debug'.Ludovic Courtès2014-12-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | | | gnu: Use patch --force instead of --batch.Mark H Weaver2014-12-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/linux.scm (linux-libre, net-tools): Pass "--force" to patch, instead of "--batch". * gnu/packages/mit-krb5.scm (mit-krb5): Ditto.
| * | | | | gnu: gettext: Update to 0.19.4.Ludovic Courtès2014-12-27
| | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/gettext.scm (gnu-gettext): Update to 0.19.4.
| * | | | | gnu: binutils: Update to 2.25.Ludovic Courtès2014-12-27
| | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/base.scm (binutils): Update to 2.25.
| * | | | | gnu: m4: Remove already-applied patch.Mark H Weaver2014-12-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/patches/m4-readlink-EINVAL.patch: Remove file. * gnu-system.am (dist_patch_DATA): Remove it. * gnu/packages/m4.scm (m4): Remove patch.
| * | | | | gnu: gcc-4.8: Update to 4.8.4.Ludovic Courtès2014-12-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/gcc.scm (gcc-4.8): Update to 4.8.4. Remove patch. * gnu/packages/patches/gcc-fix-pr61801.patch: Remove. * gnu-system.am (dist_patch_DATA): Adjust accordingly.
| * | | | | Merge branch 'master' into core-updatesLudovic Courtès2014-12-26
| |\ \ \ \ \
| * \ \ \ \ \ Merge branch 'master' into 'core-updates'.Ludovic Courtès2014-12-14
| |\ \ \ \ \ \
| * | | | | | | gnu: gawk: Build a UTF-8 locale for the tests.Ludovic Courtès2014-11-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/gawk.scm (gawk)[arguments]: Add 'install-locales' phase.
| * | | | | | | gnu: glibc: Do not install all the locales.Ludovic Courtès2014-11-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/base.scm (glibc)[outputs]: Remove "locales". [arguments]: Remove --localedir argument. Change libc_cv_localedir value to "/run/current-system/locale". Remove 'install-locales' phase.
| * | | | | | | gnu: grep: Update to 2.21.Ludovic Courtès2014-11-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/base.scm (grep): Update to 2.21.
| * | | | | | | gnu: pkg-config: Update to 0.28.Ludovic Courtès2014-11-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/pkg-config.scm (%pkg-config): Update to 0.28.
| * | | | | | | gnu: file: Update to 5.20.Ludovic Courtès2014-11-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/file.scm (file): Update to 5.20. (file-5.20): Remove. * gnu/packages/patches/file-CVE-2014-3587.patch: Remove. * gnu-system.am (dist_patch_DATA): Adjust accordingly. * gnu/packages/patchutils.scm (quilt): Use FILE instead of FILE-5.20. * gnu/packages/version-control.scm (aegis): Ditto.
* | | | | | | | gnu: add RetroArch.宋文武2015-01-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/games.scm (retroarch): New variable.
* | | | | | | | gnu: gdb: Update to 7.8.2.Ludovic Courtès2015-01-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/gdb.scm (gdb): Update to 7.8.2.
* | | | | | | | gnu: nix: Update to 1.8.Ludovic Courtès2015-01-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/package-management.scm (nix): Update to 1.8.
* | | | | | | | gnu: plotutils: Do not propagate libXaw.Ludovic Courtès2015-01-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/plotutils.scm (plotutils): Move LIBXAW from 'propagated-inputs' to 'inputs'. Add 'snippet'.
* | | | | | | | gnu: mercurial: Update to 3.2.4.Ludovic Courtès2015-01-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/version-control.scm (mercurial): Update to 3.2.4.
* | | | | | | | gnu: teckit: Add alternate source URL.Mark H Weaver2015-01-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes <http://bugs.gnu.org/19600>. * gnu/packages/fontutils.scm (teckit)[source]: Add Fedora mirror.
* | | | | | | | gnu: ninja: Disable testcase SubprocessTest.InterruptChild.宋文武2015-01-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/patches/ninja-tests.patch: New file. * gnu/packages/ninja.scm (ninja): Add the patch. * gnu-system.am (dist_patch_DATA): Add it.
* | | | | | | | packages: Convert source derivations to monadic style.Ludovic Courtès2015-01-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * guix/packages.scm (origin->derivation): Take body from 'package-source-derivation', and change it to monadic style. Expect METHOD to a monadic procedure. (package-source-derivation): Define in terms of 'origin->derivation'. * guix/download.scm (url-fetch): Remove 'store' argument. Remove 'guile-for-build' variable. Turn into a monadic procedure. * guix/git-download.scm (git-fetch): Likewise. * guix/svn-download.scm (svn-fetch): Likewise. * tests/builders.scm (url-fetch*): New procedure. Change tests to call 'url-fetch*' instead of 'url-fetch'. * tests/packages.scm ("package-source-derivation, snippet"): Remove 'store' parameter of 'fetch' and change it to use 'interned-file' instead of 'add-to-store'. * gnu/packages/bootstrap.scm (bootstrap-origin)[boot]: Remove 'store' parameter.
* | | | | | | | monads: Move '%store-monad' and related procedures where they belong.Ludovic Courtès2015-01-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This turns (guix monads) into a generic module for monads, and moves the store monad and related monadic procedures in their corresponding module. * guix/monads.scm (store-return, store-bind, %store-monad, store-lift, text-file, interned-file, package-file, package->derivation, package->cross-derivation, origin->derivation, imported-modules, compiled, modules, built-derivations, run-with-store): Move to... * guix/store.scm (store-return, store-bind, %store-monad, store-lift, text-file, interned-file): ... here. (%guile-for-build): New variable. (run-with-store): Moved from monads.scm. Remove default value for #:guile-for-build. * guix/packages.scm (default-guile): Export. (set-guile-for-build): New procedure. (package-file, package->derivation, package->cross-derivation, origin->derivation): Moved from monads.scm. * guix/derivations.scm (%guile-for-build): Remove. (imported-modules): Rename to... (%imported-modules): ... this. (compiled-modules): Rename to... (%compiled-modules): ... this. (built-derivations, imported-modules, compiled-modules): New procedures. * gnu/services/avahi.scm, gnu/services/base.scm, gnu/services/dbus.scm, gnu/services/dmd.scm, gnu/services/networking.scm, gnu/services/ssh.scm, gnu/services/xorg.scm, gnu/system/install.scm, gnu/system/linux-initrd.scm, gnu/system/shadow.scm, guix/download.scm, guix/gexp.scm, guix/git-download.scm, guix/profiles.scm, guix/svn-download.scm, tests/monads.scm: Adjust imports accordingly. * guix/monad-repl.scm (default-guile-derivation): New procedure. (store-monad-language, run-in-store): Use it. * build-aux/hydra/gnu-system.scm (qemu-jobs): Add explicit 'set-guile-for-build' call. * guix/scripts/archive.scm (derivation-from-expression): Likewise. * guix/scripts/build.scm (options/resolve-packages): Likewise. * guix/scripts/environment.scm (guix-environment): Likewise. * guix/scripts/system.scm (guix-system): Likewise. * doc/guix.texi (The Store Monad): Adjust module names accordingly.
* | | | | | | | gnu: Add zerofree.Ludovic Courtès2015-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/linux.scm (zerofree): New variable.
* | | | | | | | gnu: e2fsprogs: Install libext2fs.Ludovic Courtès2015-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/linux.scm (e2fsprogs)[source]: Add 'snippet'. [arguments]: Add --enable-elf-shlibs to #:configure-flags. Add #:make-flags.
* | | | | | | | gnu: Add GLEW.Ludovic Courtès2015-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/gl.scm (glew): New variable.
* | | | | | | | services: user-processes: Really honor the grace delay.Ludovic Courtès2015-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/services/base.scm (user-processes-service): Change #:grace-delay default value to 4. Define 'sleep*' and use it.
* | | | | | | | system: Add iw to '%base-packages'.Ludovic Courtès2015-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/system.scm (%base-packages): Add IW.
* | | | | | | | gnu: wireless-tools: Describe it as deprecated.Ludovic Courtès2015-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/linux.scm (wireless-tools)[description]: Explain that it is deprecated in favor of 'iw'.
* | | | | | | | gnu: guix: Update snapshot.Ludovic Courtès2015-01-13
| |_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/package-management.scm (guix-devel): Update snapshot. Remove now-unneeded sub-module stuff in the 'bootstrap' phase.
* | | | | | | gnu: Add QPDF.Ricardo Wurmus2015-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/pdf.scm (qpdf): New variable.
* | | | | | | gnu: Add iw.Mark H Weaver2015-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/linux.scm (iw): New variable.
* | | | | | | gnu: libnl: Update to 3.2.25.Mark H Weaver2015-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/linux.scm (libnl): Update to 3.2.25.
* | | | | | | services: user-processes: Write debugging messages to the output port.Ludovic Courtès2015-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/services/base.scm (user-processes-service): Write "sending all processes..." message to the current output port, not to /dev/console.
* | | | | | | gnu: Move xlockmore to (gnu packages xdisorg).Ludovic Courtès2015-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/xlockmore.scm: Remove. * gnu/packages/xdisorg.scm (xlockmore): New variable, from xlockmore.scm. * gnu-system.am (GNU_SYSTEM_MODULES): Remove xlockmore.scm.
* | | | | | | gnu: xlockmore: Update to 5.45.Ludovic Courtès2015-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/xlockmore.scm (xlockmore): Update to 5.45. [arguments]: Add #:configure-flags.
* | | | | | | gnu: evince: Add inputs.Federico Beffa2015-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/gnome.scm (evince): Add 'dconf' and 'libcanberra' inputs. Remove custom phase 'set-mime-search-path which is now handled by glib-or-gtk-build-system.
* | | | | | | gnu: libcanberra: Add default sounds support.Federico Beffa2015-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/libcanberra.scm (libcanberra): Add input 'sound-theme-freedesktop'. Add "libcanberra-sound-theme-freedesktop.patch" and related phase 'patch-default-sounds-directory to patch the default sounds directory.
* | | | | | | gnu: dconf: Add dconf.Federico Beffa2015-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/gnome.scm (dconf): New variable.
* | | | | | | gnu: ffmpeg: Update to 2.5.3Jason Self2015-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/video.scm (ffmpeg): Update to version 2.5.3.
* | | | | | | gnu: ffmpeg-2.2: Update to 2.2.11Jason Self2015-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/video.scm (ffmpeg-2.2): Update to version 2.2.11.
* | | | | | | gnu: gp2c: Update to 0.0.9pl2.Andreas Enge2015-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/algebra.scm (gp2c): Update to 0.0.9pl2.