summaryrefslogtreecommitdiff
path: root/gnu/packages
Commit message (Expand)AuthorAgeFilesLines
...
| * | | gnu: boost: Fix target-system check.•••* gnu/packages/boost.scm (boost): Fix target-system check. Mark H Weaver2015-01-061-2/+2
| * | | gnu: texlive: Fix target-system check.•••* gnu/packages/texlive.scm (texlive)[arguments]: Fix target-system check. Mark H Weaver2015-01-061-1/+2
| * | | 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-061-12/+3
| * | | gnu: mit-krb5: Build with default gcc.•••* gnu/packages/mit-krb5.scm (mit-krb5)[native-inputs]: Remove gcc-4.7. Mark H Weaver2015-01-061-5/+1
| * | | Merge branch 'master' into core-updatesMark H Weaver2015-01-0622-134/+932
| |\ \ \
| * | | | 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-045-43/+12
| * | | | 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-041-45/+50
| * | | | 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-031-7/+7
| * | | | 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-302-0/+46
| * | | | 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-303-1/+456
| * | | | Merge branch 'master' into core-updatesMark H Weaver2014-12-3043-615/+1305
| |\ \ \ \
| * | | | | 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-293-12/+0
| * | | | | 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-282-0/+7
| * | | | | 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-274-32/+14
| * | | | | 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-2713-24/+22
| * | | | | 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-271-0/+5
| * | | | | 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-272-3/+3
| * | | | | gnu: gettext: Update to 0.19.4.•••* gnu/packages/gettext.scm (gnu-gettext): Update to 0.19.4. Ludovic Courtès2014-12-271-2/+2
| * | | | | gnu: binutils: Update to 2.25.•••* gnu/packages/base.scm (binutils): Update to 2.25. Ludovic Courtès2014-12-271-2/+2
| * | | | | 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-262-20/+1
| * | | | | gnu: gcc-4.8: Update to 4.8.4.•••* 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. Ludovic Courtès2014-12-272-28/+2
| * | | | | Merge branch 'master' into core-updatesLudovic Courtès2014-12-2626-78/+2171
| |\ \ \ \ \
| * \ \ \ \ \ Merge branch 'master' into 'core-updates'.Ludovic Courtès2014-12-1467-511/+4179
| |\ \ \ \ \ \
| * | | | | | | gnu: gawk: Build a UTF-8 locale for the tests.•••* gnu/packages/gawk.scm (gawk)[arguments]: Add 'install-locales' phase. Ludovic Courtès2014-11-261-1/+11
| * | | | | | | gnu: glibc: Do not install all the locales.•••* 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. Ludovic Courtès2014-11-261-15/+13
| * | | | | | | gnu: grep: Update to 2.21.•••* gnu/packages/base.scm (grep): Update to 2.21. Ludovic Courtès2014-11-241-2/+2
| * | | | | | | gnu: pkg-config: Update to 0.28.•••* gnu/packages/pkg-config.scm (%pkg-config): Update to 0.28. Ludovic Courtès2014-11-221-3/+3
| * | | | | | | gnu: file: Update to 5.20.•••* 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. Ludovic Courtès2014-11-224-36/+10
* | | | | | | | gnu: add RetroArch.•••* gnu/packages/games.scm (retroarch): New variable. 宋文武2015-01-161-1/+57
* | | | | | | | gnu: gdb: Update to 7.8.2.•••* gnu/packages/gdb.scm (gdb): Update to 7.8.2. Ludovic Courtès2015-01-151-2/+2
* | | | | | | | gnu: nix: Update to 1.8.•••* gnu/packages/package-management.scm (nix): Update to 1.8. Ludovic Courtès2015-01-151-2/+2
* | | | | | | | gnu: plotutils: Do not propagate libXaw.•••* gnu/packages/plotutils.scm (plotutils): Move LIBXAW from 'propagated-inputs' to 'inputs'. Add 'snippet'. Ludovic Courtès2015-01-151-6/+13
* | | | | | | | gnu: mercurial: Update to 3.2.4.•••* gnu/packages/version-control.scm (mercurial): Update to 3.2.4. Ludovic Courtès2015-01-151-2/+2
* | | | | | | | gnu: teckit: Add alternate source URL.•••Fixes <http://bugs.gnu.org/19600>. * gnu/packages/fontutils.scm (teckit)[source]: Add Fedora mirror. Mark H Weaver2015-01-151-2/+11
* | | | | | | | gnu: ninja: Disable testcase SubprocessTest.InterruptChild.•••* gnu/packages/patches/ninja-tests.patch: New file. * gnu/packages/ninja.scm (ninja): Add the patch. * gnu-system.am (dist_patch_DATA): Add it. 宋文武2015-01-152-13/+47
* | | | | | | | packages: Convert source derivations to monadic style.•••* 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. Ludovic Courtès2015-01-141-3/+3
* | | | | | | | gnu: Add zerofree.•••* gnu/packages/linux.scm (zerofree): New variable. Ludovic Courtès2015-01-131-1/+40
* | | | | | | | gnu: e2fsprogs: Install libext2fs.•••* gnu/packages/linux.scm (e2fsprogs)[source]: Add 'snippet'. [arguments]: Add --enable-elf-shlibs to #:configure-flags. Add #:make-flags. Ludovic Courtès2015-01-131-3/+15
* | | | | | | | gnu: Add GLEW.•••* gnu/packages/gl.scm (glew): New variable. Ludovic Courtès2015-01-131-0/+44
* | | | | | | | gnu: wireless-tools: Describe it as deprecated.•••* gnu/packages/linux.scm (wireless-tools)[description]: Explain that it is deprecated in favor of 'iw'. Ludovic Courtès2015-01-131-4/+6
* | | | | | | | gnu: guix: Update snapshot.•••* gnu/packages/package-management.scm (guix-devel): Update snapshot. Remove now-unneeded sub-module stuff in the 'bootstrap' phase. Ludovic Courtès2015-01-131-23/+4
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | gnu: Add QPDF.•••* gnu/packages/pdf.scm (qpdf): New variable. Ricardo Wurmus2015-01-131-0/+42
* | | | | | | gnu: Add iw.•••* gnu/packages/linux.scm (iw): New variable. Mark H Weaver2015-01-121-0/+26
* | | | | | | gnu: libnl: Update to 3.2.25.•••* gnu/packages/linux.scm (libnl): Update to 3.2.25. Mark H Weaver2015-01-121-3/+3
* | | | | | | gnu: Move xlockmore to (gnu packages xdisorg).•••* gnu/packages/xlockmore.scm: Remove. * gnu/packages/xdisorg.scm (xlockmore): New variable, from xlockmore.scm. * gnu-system.am (GNU_SYSTEM_MODULES): Remove xlockmore.scm. Ludovic Courtès2015-01-122-56/+33
* | | | | | | gnu: xlockmore: Update to 5.45.•••* gnu/packages/xlockmore.scm (xlockmore): Update to 5.45. [arguments]: Add #:configure-flags. Ludovic Courtès2015-01-121-4/+8
* | | | | | | gnu: evince: Add inputs.•••* 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. Federico Beffa2015-01-121-14/+4
* | | | | | | gnu: libcanberra: Add default sounds support.•••* 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. Federico Beffa2015-01-122-2/+51
* | | | | | | gnu: dconf: Add dconf.•••* gnu/packages/gnome.scm (dconf): New variable. Federico Beffa2015-01-121-0/+53
* | | | | | | gnu: ffmpeg: Update to 2.5.3•••* gnu/packages/video.scm (ffmpeg): Update to version 2.5.3. Jason Self2015-01-121-2/+2