summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-01-19records: Add support for delayed fields.Ludovic Courtès
* guix/records.scm (make-syntactic-constructor): Add #:delayed parameter. [delayed-field?]: New procedure. [wrap-field-value]: Use it. (define-record-type*)[delayed-field?, wrapped-field?]: New procedures. [thunked-field-accessor-name]: Rename to... [wrapped-field-accessor-name]: ... this. [field-spec->srfi-9]: Change 'thunked' to 'wrapped'. [delayed-field-accessor-definition]: New procedure. Compute delayed-field accessors and emit them. Pass #:delayed to 'make-syntactic-constructor'. * tests/records.scm ("define-record-type* & delayed", "define-record-type* & delayed & default", "define-record-type* & delayed & inherited"): New tests.
2015-01-19make-syntactic-constructor kwarg defaultLudovic Courtès
2015-01-19records: Factorize value wrapping in the record constructor.Ludovic Courtès
* guix/records.scm (make-syntactic-constructor)[wrap-field-value]: New procedure. [field-bindings, field-value]: Use it.
2015-01-19records: Move 'make-syntactic-constructor' to the top level.Ludovic Courtès
* guix/records.scm (make-syntactic-constructor): New procedure, formerly nested in 'define-record-type*'.
2015-01-19records: Use keyword parameters for 'make-syntactic-constructor'.Ludovic Courtès
* guix/records.scm (define-record-type*)[make-syntactic-constructor]: Turn THUNKED and DEFAULTS into keyword arguments. Adjust caller accordingly. Declare 'thunked' and 'defaults' local variables.
2015-01-19gnu: Make libgnomeprint{,ui} as deprecated.Ludovic Courtès
* gnu/packages/gnome.scm (libgnomeprint): Add comment and update 'description' to mark it as deprecated. (libgnomeprintui): Ditto.
2015-01-19gnu: Remove unneeded #:select.Ludovic Courtès
* gnu/packages/fonts.scm: Remove #:select to work around <http://bugs.gnu.org/15540>.
2015-01-19gnu: Move guile-charting to (gnu packages plotutils).Ludovic Courtès
This removes the dependency from (gnu packages guile) to (gnu packages gtk), which potentially reduces the memory/IO/CPU footprint given that 'guile' is used during bootstrap. * gnu/packages/guile.scm (guile-charting): Move to... * gnu/packages/plotutils.scm (guile-charting): ... here.
2015-01-19gnu: Add json-glib.Andreas Enge
* gnu/packages/gnome.scm (json-glib): New variable.
2015-01-19gnu: tiled: Update to 0.11.0.David Thompson
* gnu/packages/game-development.scm (tiled): Update.
2015-01-19gnu: tiled: Move to game-development module.David Thompson
* gnu/packages/games.scm (tiled): Move from here... * gnu/packages/game-development (tiled): ...to here.
2015-01-19gnu: emms: Let the build system install emms-print-metadata.1.Ludovic Courtès
Reported by effa`` on #guix. * gnu/packages/emacs.scm (emms)[arguments] <pre-install>: Remove 'copy-file' invocation.
2015-01-19tests: Adjust syscall tests for 2.6ish Linux.Ludovic Courtès
* tests/syscalls.scm ("set-network-interface-flags", "set-network-interface-address"): Accept EACCES as a valid result.
2015-01-19gnu: Add CUPS.Ricardo Wurmus
* gnu/packages/cups.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
2015-01-19gnu: Add IJSRicardo Wurmus
* gnu/packages/ghostscript.scm (ijs): New variable.
2015-01-18gnu: Add telepathy-glib.Andreas Enge
* gnu/packages/glib.scm (telepathy-glib): New variable.
2015-01-18nar: Read archive signatures as Latin-1 strings.Ludovic Courtès
Fixes <http://bugs.gnu.org/19610>. Reported by Mark H Weaver <mhw@netris.org>. * guix/nar.scm (restore-one-item): Use 'read-latin1-string' to read the signature.
2015-01-18serialization: Read Latin-1 strings with 'get-bytevector-n'.Ludovic Courtès
* guix/serialization.scm (read-latin1-string): Use 'get-bytevector-n' instead of 'get-string-n'. Use 'list->string' etc. to convert the bytevector to a string.
2015-01-18store: Change 'store-lower' to preserve the original procedure's documentation.Ludovic Courtès
* guix/store.scm (preserve-documentation): New procedure. (store-lift, store-lower): Use it.
2015-01-17doc: Document '%state-monad' and update '%store-monad' description.Ludovic Courtès
* doc/guix.texi (The Store Monad): Document '%state-monad' and related procedures. Describe '%store-monad' as an alias for '%state-monad'. * guix/monads.scm: Update commentary.
2015-01-17store: Make '%store-monad' an alias for '%state-monad'.Ludovic Courtès
* guix/store.scm (define-alias): New macro. (%store-monad, store-return, store-bind): Define as aliases of the corresponding %STATE-MONAD part. (store-lift, text-file, interned-file): Return STORE as a second value. (run-with-store): Use 'run-with-state'. * guix/packages.scm (set-guile-for-build, package-file): Return STORE as a second value. * guix/monads.scm: Remove part of the module commentary.
2015-01-17monads: Add the state monad.Ludovic Courtès
* guix/monads.scm (state-return, state-bind, run-with-state, current-state, set-current-state, state-push, state-pop): New procedures. (%state-monad): New variable. * tests/monads.scm (%monads): Add %STATE-MONAD. (%monad-run): Add 'run-with-state'. (values->list): New macro. ("set-current-state", "state-push etc."): New tests.
2015-01-17gnu: linux-libre: Update to 3.18.3Jason Self
* gnu/packages/linux.scm (linux-libre): Update to version 3.18.3.
2015-01-17gnu: rasqal: Update to 0.9.33.Andreas Enge
* gnu/packages/rdf.scm (rasqal): Update to 0.9.33.
2015-01-17gnu: raptor2: Update to 2.0.15.Andreas Enge
* gnu/packages/rdf.scm (raptor2): Update to 2.0.15.
2015-01-17guix archive: Add -r/--recursive.Ludovic Courtès
* guix/scripts/archive.scm (show-help, %options): Add -r/--recursive. (export-from-store): Pass #:recursive? to 'export-paths'. * doc/guix.texi (Invoking guix archive): Add -r in Emacs example. Add example with ~/.guix-profile. Document -r/--recursive.
2015-01-17guix archive: Remove unused -r/--root option.Ludovic Courtès
* guix/scripts/archive.scm (%options): Remove -r/--root.
2015-01-17store: Remove unused variable.Ludovic Courtès
* guix/store.scm (export-paths): Remove unused variable 's'.
2015-01-17store: Add #:recursive? parameter to 'export-paths'.Ludovic Courtès
* guix/store.scm (export-paths): Add #:recursive? parameter and honor it. * tests/store.scm ("export/import incomplete", "export/import recursive"): New tests.
2015-01-17doc: Mention generation of ECDSA/Ed25519 keys when supported.Ludovic Courtès
* doc/guix.texi (Invoking guix archive): Mention ECDSA/Ed25519 as the default type of keys for libgcrypt >= 1.6.0.
2015-01-17gnu: Add fvwm.宋文武
* gnu/packages/fvwm.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
2015-01-17gnu: fontconfig: Propagate expat and freetype.Mark H Weaver
* gnu/packages/fontutils.scm (fontconfig)[inputs]: Move expat and freetype ... [propagated-inputs]: ... to here.
2015-01-17gnu: ffmpeg: Augment rpath of libraries.宋文武
* gnu/packages/video.scm (ffmpeg)[arguments]<phases>[add-lib-to-run-path]: Add $out/lib to the RUNPATH of libraries.
2015-01-16gnu: fontconfig: Update to 2.11.92.Andreas Enge
* gnu/packages/fontutils.scm (fontconfig): Update to 2.11.92.
2015-01-16emacs: In 'run-with-store' call, specify the guile-for-build.Ludovic Courtès
This fixes a regression introduced in commit e87f059. * emacs/guix-main.scm (process-package-actions): Add call to 'set-guile-for-build' in monadic expression.
2015-01-16gnu: e2fsck-static: Use really statically-linked executables.Ludovic Courtès
* gnu/packages/linux.scm (e2fsprogs/static): New variable. (e2fsck/static): Use it in 'inputs'.
2015-01-16gnu: Add CGAL.Ludovic Courtès
* gnu/packages/graphics.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
2015-01-16system: Add "en_US.UTF-8" to the default locales, for backward compatibility.Ludovic Courtès
* gnu/system/locale.scm (%default-locale-definitions): Add "en_US.UTF-8".
2015-01-16gnu: Add Eigen.Ludovic Courtès
* gnu/packages/algebra.scm (eigen): New variable.
2015-01-16gnu: Add IPython.Federico Beffa
* gnu/packages/python.scm (python-ipython, python2-ipython): New variable.
2015-01-16gnu: icecat: Add fixes for CVE-2014-{8634,8638,8639,8641}.Mark H Weaver
* gnu/packages/patches/icecat-CVE-2014-8634-pt1.patch, gnu/packages/patches/icecat-CVE-2014-8634-pt2.patch, gnu/packages/patches/icecat-CVE-2014-8638-pt1.patch, gnu/packages/patches/icecat-CVE-2014-8638-pt2.patch, gnu/packages/patches/icecat-CVE-2014-8639.patch, gnu/packages/patches/icecat-CVE-2014-8641.patch, gnu/packages/patches/icecat-armhf-xpcom.patch: New files. * gnu-system.am (dist_patch_DATA): Add them. * gnu/packages/gnuzilla.scm (icecat)[source]: Add patches.
2015-01-16Merge branch 'core-updates'Ludovic Courtès
Conflicts: gnu/packages/bootstrap.scm
2015-01-16gnu: add RetroArch.宋文武
* gnu/packages/games.scm (retroarch): New variable.
2015-01-15gnu: gd: Update to 2.1.1.Mark H Weaver
* gnu/packages/patches/gd-mips64-deplibs-fix.patch: Remove file. * gnu-system.am (dist_patch_DATA): Remove it. * gnu/packages/gd.scm (gd): Update to 2.1.1. Update source URI. Remove patch. Remove 'chdir' phase. Add pkg-config to native-inputs.
2015-01-15gnu: gdb: Update to 7.8.2.Ludovic Courtès
* gnu/packages/gdb.scm (gdb): Update to 7.8.2.
2015-01-15gnu: nix: Update to 1.8.Ludovic Courtès
* gnu/packages/package-management.scm (nix): Update to 1.8.
2015-01-15gnu: plotutils: Do not propagate libXaw.Ludovic Courtès
* gnu/packages/plotutils.scm (plotutils): Move LIBXAW from 'propagated-inputs' to 'inputs'. Add 'snippet'.
2015-01-15gnu: mercurial: Update to 3.2.4.Ludovic Courtès
* gnu/packages/version-control.scm (mercurial): Update to 3.2.4.
2015-01-15gnu: teckit: Add alternate source URL.Mark H Weaver
Fixes <http://bugs.gnu.org/19600>. * gnu/packages/fontutils.scm (teckit)[source]: Add Fedora mirror.
2015-01-15gnu: 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.