~ruther/guix-local

310b32a2 — Ludovic Courtès 11 years ago
records: Add support for delayed fields.

* 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.
0db40ed2 — Ludovic Courtès 11 years ago
make-syntactic-constructor kwarg default
c492be65 — Ludovic Courtès 11 years ago
records: Factorize value wrapping in the record constructor.

* guix/records.scm (make-syntactic-constructor)[wrap-field-value]: New
  procedure.
  [field-bindings, field-value]: Use it.
cf4efb39 — Ludovic Courtès 11 years ago
records: Move 'make-syntactic-constructor' to the top level.

* guix/records.scm (make-syntactic-constructor): New procedure, formerly
  nested in 'define-record-type*'.
9b543456 — Ludovic Courtès 11 years ago
records: Use keyword parameters for 'make-syntactic-constructor'.

* 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.
eb497b66 — Ludovic Courtès 11 years ago
gnu: Make libgnomeprint{,ui} as deprecated.

* gnu/packages/gnome.scm (libgnomeprint): Add comment and update
  'description' to mark it as deprecated.
  (libgnomeprintui): Ditto.
56b7a338 — Ludovic Courtès 11 years ago
gnu: Remove unneeded #:select.

* gnu/packages/fonts.scm: Remove #:select to work around
  <http://bugs.gnu.org/15540>.
00ebe474 — Ludovic Courtès 11 years ago
gnu: Move guile-charting to (gnu packages plotutils).

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.
109da1c0 — Andreas Enge 11 years ago
gnu: Add json-glib.

* gnu/packages/gnome.scm (json-glib): New variable.
7d24363f — David Thompson 11 years ago
gnu: tiled: Update to 0.11.0.

* gnu/packages/game-development.scm (tiled): Update.
b0910aad — David Thompson 11 years ago
gnu: tiled: Move to game-development module.

* gnu/packages/games.scm (tiled): Move from here...
* gnu/packages/game-development (tiled): ...to here.
c72aed6d — Ludovic Courtès 11 years ago
gnu: emms: Let the build system install emms-print-metadata.1.

Reported by effa`` on #guix.

* gnu/packages/emacs.scm (emms)[arguments] <pre-install>: Remove
  'copy-file' invocation.
d35c5e29 — Ludovic Courtès 11 years ago
tests: Adjust syscall tests for 2.6ish Linux.

* tests/syscalls.scm ("set-network-interface-flags",
  "set-network-interface-address"): Accept EACCES as a valid result.
51002318 — Ricardo Wurmus 11 years ago
gnu: Add CUPS.

* gnu/packages/cups.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
01aae5fc — Ricardo Wurmus 11 years ago
gnu: Add IJS

* gnu/packages/ghostscript.scm (ijs): New variable.
7873318d — Andreas Enge 11 years ago
gnu: Add telepathy-glib.

* gnu/packages/glib.scm (telepathy-glib): New variable.
71c1d528 — Ludovic Courtès 11 years ago
nar: Read archive signatures as Latin-1 strings.

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.
aa27b560 — Ludovic Courtès 11 years ago
serialization: Read Latin-1 strings with 'get-bytevector-n'.

* 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.
5808dcc2 — Ludovic Courtès 11 years ago
store: Change 'store-lower' to preserve the original procedure's documentation.

* guix/store.scm (preserve-documentation): New procedure.
  (store-lift, store-lower): Use it.
561fb6c3 — Ludovic Courtès 11 years ago
doc: Document '%state-monad' and update '%store-monad' description.

* 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.
Next