summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add `pt_BR' translation.Ludovic Courtès2013-07-15
|
* gnu: pango, gtk+: Propagate inputs.Andreas Enge2013-07-15
| | | | | | * gnu/packages/gtk.scm (pango): Propagate input cairo. * gnu/packages/gtk.scm (gtk+): Propagate inputs atk, gdk-pixbuf and pango; drop input cairo, propagated through pango.
* Add gtk+.Andreas Enge2013-07-15
| | | | | * gnu/packages/gtk.scm (pango): Propagate input harfbuzz. * gnu/packages/gtk.scm (gtk+): New variable.
* gnu: make-bootstrap: Skip tests for the statically-linked gawk.Ludovic Courtès2013-07-14
| | | | * gnu/packages/make-bootstrap.scm (%static-inputs)[gawk]: Add #:tests? #f.
* Update `eo.po'.Ludovic Courtès2013-07-14
|
* Rename (guix web) to (guix http-client).Ludovic Courtès2013-07-14
| | | | | | | * guix/web.scm: Rename to... * guix/http-client.scm: ... this. * guix/gnu-maintenance.scm, guix/scripts/substitute-binary.scm, Makefile.am, po/POTFILES.in: Update accordingly.
* doc: Add "Building from Git" to 'HACKING'.Nikita Karetnikov2013-07-13
|
* guix package: Fix handling of `-e'.Ludovic Courtès2013-07-12
| | | | | | | | | | | | | This fixes a bug whereby a command like guix package -e '(@@ (gnu packages base) gnu-make-boot0)' would only succeed when the outputs of that package are available, and otherwise fail with "/nix/store/... is not valid". * guix/scripts/package.scm (guix-package)[process-action](package->tuple): Leave P as is in the result. Move `package->tuple' call from INSTALL* to INSTALL.
* ui: Ignore SIGPIPE and catch `system-error' exceptions.Ludovic Courtès2013-07-12
| | | | | * guix/ui.scm (initialize-guix): Call `sigaction'. (call-with-error-handling): Wrap `thunk' in a (catch 'system-error ...).
* guix package: Reuse FTP connections for subsequent `latest-release' calls.Ludovic Courtès2013-07-12
| | | | | | | | * guix/gnu-maintenance.scm (latest-release): Add `ftp-close' and `ftp-open' keyword parameters. * guix/scripts/package.scm (ftp-open*): New variable. (check-package-freshness): Call `latest-release' with `ftp-open*' and a no-op procedure.
* gnu-maintenance: `latest-release' closes its connection.Ludovic Courtès2013-07-12
| | | | | * guix/gnu-maintenance.scm (latest-release): Close CONN before returning.
* gnu: plotutils: Allow compilation with newer libpng.Ludovic Courtès2013-07-12
| | | | | | | * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/patches/plotutils-libpng-jmpbuf.patch: New file. * gnu/packages/plotutils.scm (plotutils): Add `plotutils-libpng-jmpbuf.patch' as an input, and apply it.
* gnu: freeipmi: Upgrade to 1.2.8.Ludovic Courtès2013-07-12
| | | | * gnu/packages/freeipmi.scm (freeipmi): Upgrade to 1.2.8.
* gnu: libidn: Upgrade to 1.28.Ludovic Courtès2013-07-12
| | | | * gnu/packages/libidn.scm (libidn): Upgrade to 1.28.
* gnu: gnupg: Upgrade support libraries.Ludovic Courtès2013-07-12
| | | | | * gnu/packages/gnupg.scm (libgpg-error): Upgrade to 1.12. (libassuan): Upgrade to 2.1.1.
* substitute-binary: Directly replace the global `regexp-exec'.Ludovic Courtès2013-07-11
| | | | | | | * guix/scripts/substitute-binary.scm (%regexp-exec-mutex, string->uri): Remove. (regexp-exec): Replace this global binding by a thread-safety wrapper. (fields->alist): Remove `with-mutex', and directly alias `recutils->alist'.
* gnu: help2man: Upgrade to 1.43.3.Ludovic Courtès2013-07-11
| | | | * gnu/packages/help2man.scm (help2man): Upgrade to 1.43.3.
* gnu: xorriso: Upgrade to 1.3.0.Ludovic Courtès2013-07-11
| | | | * gnu/packages/cdrom.scm (xorriso): Upgrade to 1.3.0.
* substitute-binary: Increase the default timeout.Ludovic Courtès2013-07-11
| | | | * guix/scripts/substitute-binary.scm (%fetch-timeout): Set to 5 seconds.
* gnu: automake: Upgrade to 1.14.Ludovic Courtès2013-07-11
| | | | * gnu/packages/autotools.scm (automake): Upgrade to 1.14.
* guix refresh: Keep only the newest versions of packages as upgrade candidates.Ludovic Courtès2013-07-11
| | | | | * guix/scripts/refresh.scm (guix-refresh)[keep-newest]: New procedure. Use it to keep only once copy of each package.
* list-packages: Show the package logo, when available.Ludovic Courtès2013-07-10
| | | | | | * build-aux/list-packages.scm (lookup-gnu-package): New procedure. (package->sxml): Add the package logo, when available, next to the description.
* Update eo.po.Ludovic Courtès2013-07-10
|
* gnu-maintenance: Add `doc-description' field to <gnu-package-descriptor>.Ludovic Courtès2013-07-10
| | | | | | | | | * guix/gnu-maintenance.scm (%gsrc-package-list-url): New variable. (<gnu-package-descriptor>): Add `doc-description' field. (official-gnu-packages)[group-package-fields]: Rename to... [read-records]: ... this. Reverse the result. [gsrc-description]: New procedure. Add the "description" field to the alist passed to `alist->record'.
* records: `recutils->alist' recognizes lines starting with a `+'.Ludovic Courtès2013-07-10
| | | | | | * guix/records.scm (%recutils-plus-rx): New variable. (recutils->alist): Use it to read + lines. * tests/records.scm ("recutils->alist with + lines"): New test.
* gnu-maintenance: Use `recutils->alist'.Ludovic Courtès2013-07-10
| | | | | | | * guix/gnu-maintenance.scm (official-gnu-packages)[group-package-fields]: Rewrite in terms of `recutils->alist'. Remove `state' parameter. Specify "doc-url" and "language" as multiple-value keys in the `alist->record' call.
* records: `alist->record' supports multiple-field occurrences.Ludovic Courtès2013-07-10
| | | | | | * guix/records.scm (alist->record): Add `multiple-value-keys' parameter. Update docstring, and honor it. * tests/records.scm ("alist->record"): New record.
* records: `recutils->alist' recognizes comments.Ludovic Courtès2013-07-10
| | | | | | * guix/records.scm (%recutils-comment-rx): New variable. (recutils->alist): Match comments. * tests/records.scm ("recutils->alist"): Add comments.
* records: Add `recutils->alist' for public consumption.Ludovic Courtès2013-07-10
| | | | | | | * guix/records.scm (%recutils-field-rx): New variable. (recutils->alist): New procedure, formerly known as `fields->alist'. * guix/scripts/substitute-binary.scm (fields->alist): Use it. * tests/records.scm ("recutils->alist"): New test.
* gnu: libpng: Upgrade to 1.5.17.Ludovic Courtès2013-07-10
| | | | * gnu/packages/libpng.scm (libpng): Upgrade to 1.5.17.
* list-packages: Write out the HTML page as UTF-8.Ludovic Courtès2013-07-10
| | | | | * build-aux/list-packages.scm (list-packages): Install the "C" locale. Write out as UTF-8.
* tests: Fix guix-package.sh in the presence of multiple-output `make'.Ludovic Courtès2013-07-10
| | | | | * tests/guix-package.sh: For $boot_make_drv, take only the "out" output. Reported by Nikita Karetnikov <nikita@karetnikov.org>.
* Add `build-aux/list-packages.scm'.Ludovic Courtès2013-07-10
| | | | | * build-aux/list-packages.scm: New file. * Makefile.am (EXTRA_DIST): Add it.
* Merge branch 'core-updates'Ludovic Courtès2013-07-09
|\
| * doc: Add "Installing Debugging Files".Ludovic Courtès2013-07-09
| | | | | | | | | | * doc/guix.texi (Installing Debugging Files): New node. (Packages with Multiple Outputs): Add cross-reference.
| * doc: Add "Packages with Multiple Outputs" section.Ludovic Courtès2013-07-08
| | | | | | | | | | * doc/guix.texi (Packages with Multiple Outputs): New node. (Invoking guix package): Refer to it.
| * build: Set the umask to 0022 before running the daemon for tests.Ludovic Courtès2013-07-08
| | | | | | | | | | * test-env.in: Run "umask 0022" before running the daemon. Reported by Matthew Lien - 練喆明 <bluet@bluet.org>
| * gnu: gettext: Upgrade to 0.18.3.Ludovic Courtès2013-07-08
| | | | | | | | | | | | * gnu/packages/gettext.scm (gettext): Upgrade to 0.18.3. Remove patch. Change `patch-tests' phase to use (which "sh'); keep it regardless of whether we're cross compiling.
| * gnu: tzdata: Upgrade to 2013d.Ludovic Courtès2013-07-07
| | | | | | | | * gnu/packages/base.scm (tzdata): Upgrade to 2013d.
| * doc: Move the packaging guidelines to the manual.Ludovic Courtès2013-07-07
| | | | | | | | | | * HACKING (Packaging Guidelines): Remove. * doc/guix.texi (Packaging Guidelines): New node.
| * doc: Add a "Porting" section.Ludovic Courtès2013-07-07
| | | | | | | | | | | | * HACKING (Porting the Guix distro on a new platform): Remove. * doc/guix.texi (Porting): New node. Describe cross-compilation as the only approach.
| * doc: Add a "Boostrapping" section.Ludovic Courtès2013-07-07
| | | | | | | | | | | | | | | | | | | | | | | | * doc/guix.texi (Package Modules): New node, with material formerly under "GNU Distribution". (Bootstrapping): New node. * Makefile.am (EXTRA_DIST): Add doc/images/bootstrap-graph.dot and doc/images/bootstrap-graph.eps. (infoimagedir, dist_infoimage_DATA, DOT_OPTIONS): New variable. (.dot.png, .dot.eps, doc/guix.pdf, doc/guix.info, doc/guix.ps): New targets. * doc/images/bootstrap-graph.dot: New file.
| * gnu: gcc: Add Texinfo to the native inputs.Ludovic Courtès2013-07-06
| | | | | | | | | | | | * gnu/packages/gcc.scm (gcc-4.7): Add `native-inputs' field. (gcc-4.8): Remove outdated comment. * gnu/packages/base.scm (gcc-boot0): Add `native-inputs' field.
| * gnu: make-bootstrap: guile-static-stripped has no "debug" output.Ludovic Courtès2013-07-05
| | | | | | | | | | * gnu/packages/make-bootstrap.scm (%guile-static-stripped): Add `outputs' field.
| * build-system/gnu: Remove the "debug" output when `strip-binaries?' is #f.Ludovic Courtès2013-07-04
| | | | | | | | | | | | | | * guix/build-system/gnu.scm (gnu-build, gnu-cross-build): Delete "debug" from OUTPUTS when STRIP-BINARIES? is false. * gnu/packages/cross-base.scm (cross-libc): Leave `outputs' unchanged. This reverts commit a4627d4.
| * gnu: cross-libc: Remove the "debug" output.Ludovic Courtès2013-07-04
| | | | | | | | | | * gnu/packages/cross-base.scm (cross-libc): Remove "debug" from the `outputs' field.
| * gnu: Add a "debug" output for some packages.Ludovic Courtès2013-07-03
| | | | | | | | | | | | | | | | * gnu/packages/base.scm (coreutils, gnu-make, glibc): Add a "debug" output. * gnu/packages/bdw-gc.scm (libgc): Likewise. * gnu/packages/guile.scm (guile-2.0): Likewise. * gnu/packages/libffi.scm (libffi): Likewise. * gnu/packages/multiprecision.scm (gmp, mpfr, mpc): Likewise.
| * build-system/gnu: Write debug files to the "debug" sub-derivation, if any.Ludovic Courtès2013-07-03
| | | | | | | | | | | | | | | | * guix/build/gnu-build-system.scm (strip): Add `objcopy-command' keyword parameter. [debug-output, debug-file-extension]: New variables. [debug-file, make-debug-file, add-debug-link]: New procedures. [strip-dir]: Use them.
| * utils: Re-export `alist-cons' and `alist-delete'.Ludovic Courtès2013-07-03
| | | | | | | | * guix/build/utils.scm: Re-export `alist-cons' and `alist-delete'.
| * gnu: gcc: Use `gcc-configure-flags-for-triplet' when cross-compiling GCC.Ludovic Courtès2013-06-26
| | | | | | | | | | | | | | * gnu/packages/cross-base.scm (gcc-configure-flags-for-triplet): Move to... * gnu/packages/gcc.scm (gcc-configure-flags-for-triplet): ... here. New procedure. (gcc-4.7): Use it when (%current-target-system) is true.