aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAge
* gnu: calibre: Add a patch to avoid automatic checking for updates.•••* gnu/packages/patches/calibre-no-updates-dialog.patch: New file. * gnu-system.am (dist_patch_DATA): Register patch. * gnu/packages/ebook.scm (calibre): Use patch. Andreas Enge2015-03-24
* gnu: Add pbtranscript-tofu.•••* gnu/packages/bioinformatics.scm (pbtranscript-tofu): New variable. Ricardo Wurmus2015-03-24
* gnu: Add python2-bx-python.•••* gnu/packages/bioinformatics.scm (python2-bx-python): New variable. Ricardo Wurmus2015-03-24
* gnu: Add python2-pbcore.•••* gnu/packages/bioinformatics.scm (python2-pbcore): New variable. Ricardo Wurmus2015-03-24
* gnu: guix: Update snapshot.•••* gnu/packages/package-management.scm (guix-devel): Update. Ludovic Courtès2015-03-23
* gnu: geiser: Make description more concise and less personal.•••* gnu/packages/emacs.scm (geiser)[description]: Tweak. Ludovic Courtès2015-03-23
* gnu: geiser: Update to 0.7.•••* gnu/packages/emacs.scm (geiser): Update to 0.7. Ludovic Courtès2015-03-23
* substitute-binary: Remove thread-safe 'regexp-exec' wrapper.•••* guix/scripts/substitute-binary.scm: Remove 'regexp-exec' setting. Ludovic Courtès2015-03-23
* substitute-binary: Pipeline HTTP requests instead of using threads.•••* guix/scripts/substitute-binary.scm (fetch-narinfo, %lookup-threads, n-par-map*): Remove. (narinfo-cache-file, cached-narinfo, cache-narinfo!, narinfo-request, http-multiple-get, read-to-eof, fetch-narinfos, lookup-narinfos, narinfo-from-file): New procedures. (lookup-narinfo): Rewrite in terms of 'lookup-narinfos'. (guix-substitute-binary): Use 'lookup-narinfos' instead of 'lookup-narinfo'. Ludovic Courtès2015-03-23
* substitute-binary: Allow callers to specify the size of a narinfo.•••* guix/scripts/substitute-binary.scm (read-narinfo): Add #:size parameter and honor it. Ludovic Courtès2015-03-23
* Remove unused patchelf inputs.•••* gnu/packages/maths.scm (lapack, gmsh), gnu/packages/ssh.scm (libssh): Remove unused patchelf from native-inputs. Mark H Weaver2015-03-23
* gnu: bigloo: Use Emacs with X11 support.•••* gnu/packages/scheme.scm (bigloo)[inputs]: Change EMACS-NO-X to EMACS. Ludovic Courtès2015-03-23
* gnu: sdl: Explicitly use mesa as OpenGL driver.•••* gnu/packages/sdl.scm (sdl)[arguments]<#:configure-flags>: Add 'LDFLAGS=-lGL'. 宋文武2015-03-23
* gnu: sdl: Allow dlopen for OpenGL.•••Fixes a regression introduced in 666aa99. Reported by Felipe López and David Thompson. * gnu/packages/sdl.scm (sdl)[inputs]: Add glu. [arguments]<#:configure-flags>: Replace '--disable-sdl-dlopen' with '--disable-alsa-shared --disable-pulseaudio-shared --disable-x11-shared'. 宋文武2015-03-23
* gnu: Add python-h5py and python2-h5py.•••* gnu/packages/python.scm (python-h5py, python2-h5py): New variables. Ricardo Wurmus2015-03-23
* gnu: Add Julia.•••* gnu/packages/julia.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. Ricardo Wurmus2015-03-23
* gnu: Add double-conversion.•••* gnu/packages/maths.scm (double-conversion): New variable. Ricardo Wurmus2015-03-23
* gnu: Add SuiteSparse.•••* gnu/packages/maths.scm (suitesparse): New variable. Ricardo Wurmus2015-03-23
* gnu: icedtea6: remove commented substitution.•••* gnu/packages/java.scm (icedtea6): Remove commented substitution. Ricardo Wurmus2015-03-23
* gnu: icedtea6: Do not set CC and LD_LIBRARY_PATH.•••* gnu/packages/java.scm (icedtea6)[arguments]: Do not set CC and LD_LIBRARY_PATH variables. Ricardo Wurmus2015-03-23
* gnu: icedtea6: Rename ‘set-paths’ phase to ‘set-additional-paths’•••* gnu/packages/java.scm (icedtea6)[arguments]: Rename ‘set-paths’ phase to ‘set-additional-paths’. Ricardo Wurmus2015-03-23
* gnu: icedtea6: patch patches in separate build phase.•••* gnu/packages/java.scm (icedtea6)[arguments]: Move patching of patches from ‘patch-paths’ to new ‘patch-patches’ phase. Ricardo Wurmus2015-03-23
* gnu: icedtea6: patch hardcoded objcopy path.•••* gnu/packages/java.scm (icedtea6)[arguments]: patch Makefile to override DEF_OBJCOPY variable definition. Ricardo Wurmus2015-03-23
* gnu: icedtea6: patch ant shebang in unpack phase•••* gnu/packages/java.scm (icedtea6)[arguments]: patch bootstrap ant in the `unpack' phase instead of `patch-paths'. Ricardo Wurmus2015-03-23
* gnu: Add openblas.•••* gnu/packages/maths.scm (openblas): New variable. Ricardo Wurmus2015-03-23
* gnu: Add utf8proc.•••* gnu/packages/textutils.scm (utf8proc): New variable. Ricardo Wurmus2015-03-23
* store: Default to a non-empty list of substituters.•••Fixes <http://bugs.gnu.org/20163>. Reported by Mark H Weaver <mhw@netris.org>. * guix/store.scm (%default-substitute-urls): New variable. (set-build-options): Change default value of #:substitute-urls to %DEFAULT-SUBSTITUTE-URLS. Ludovic Courtès2015-03-22
* gexp: Fix handling of nativeness in nested gexps.•••* guix/gexp.scm (gexp-inputs): Remove 'references' parameter; add #:native? and honor it. [add-reference-inputs]: Distinguish between native gexp inputs, and non-native gexp inputs. Honor 'native?' field of list inputs. * tests/gexp.scm ("ungexp + ungexp-native, nested"): New test. Ludovic Courtès2015-03-22
* gexp: Ignore nested gexps in macro expansion.•••Before that, the 'references' and 'natives' or the outer gexp in an expression like #~#+#~#$coreutils would include those of the inner gexp. * guix/gexp.scm (gexp)[collect-escapes]: Ignore everything below 'ungexp-native' or 'ungexp-native-splicing'. [collect-native-escapes]: Ignore everything below 'ungexp' or 'ungexp-splicing'. Ludovic Courtès2015-03-22
* gexp: Allow <gexp-input> objects in #:allowed-references.•••* guix/gexp.scm (lower-references): Add <gexp-input> case. * tests/gexp.scm ("gexp->derivation #:allowed-references, specific output"): New test. Ludovic Courtès2015-03-22
* gexp: Add identity compiler for derivations.•••* guix/gexp.scm (derivation-compiler): New procedure. (lower-inputs): Remove 'derivation?' case. (gexp-inputs)[add-reference-inputs]: Likewise. (gexp->sexp)[reference->sexp]: Likewise. Ludovic Courtès2015-03-22
* Revert "gnu: Add sdcv."•••This reverts commit 004eb31859971f9602f618cbdf6612f4bcaddd9c. Tomáš Čech2015-03-22
* gnu: Add the-silver-searcher.•••* gnu/packages/code.scm (the-silver-searcher): New variable. Tomáš Čech2015-03-22
* gnu: Add mplayer2.•••* gnu/packages/video.scm (mplayer2): New variable. * gnu/packages/patches/mplayer2-theora-fix.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. Taylan Ulrich Bayırlı/Kammer2015-03-22
* gnu: gtk+-2: build gobject introspection typelib file.•••* gnu/packages/gtk.scm (gtk+-2): add `gobject-introspection' to the native-inputs to install typelib file. Ricardo Wurmus2015-03-21
* gnu: openssl: Update to 1.0.2a.•••* gnu/packages/openssl.scm (openssl): Update to 1.0.2a. Mark H Weaver2015-03-21
* gnu: calibre: Update to 2.22.0.•••* gnu/packages/ebook.scm (calibre): Update to 2.22.0. Andreas Enge2015-03-21
* gnu: Add python2-pygobject.•••* gnu/packages/glib.scm (python2-pygobject): New variable. Ricardo Wurmus2015-03-20
* gnu: python-pygobject: use home page of 3.x series.•••* gnu/packages/glib.scm (python-pygobject)[home-page]: Use home page of the 3.x series of the pygobject bindings instead of the home page for the 2.x bindings. Ricardo Wurmus2015-03-20
* gnu: lv2-mda-piano: change source URL.•••* gnu/packages/audio.scm (lv2-mda-piano)[source]: Change URL of git repository to new upstream. Ricardo Wurmus2015-03-20
* guix package: '-s' sorts packages by name, then by version.•••Before that it would sort them by name only, so the order in which two packages with the same name but a different version would appear was non-deterministic. Reported by Tomáš Čech <sleep_walker@gnu.org>. * guix/scripts/package.scm (find-packages-by-description)[version<?]: New variable. Change the 2nd argument to 'sort' to use 'string-compare' and resort to 'version<?' when P1 and P2 have the same name. Ludovic Courtès2015-03-20
* guix package: '-s' displays different packages that have the same location.•••Before that, 'guix package -s foobarbaz' would display only one package when several match but they have the same location (which is common when using 'inherit'.) The original rationale was given at <http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00280.html> but it was arguably misguided because it led to "real" packages being hidden. Reported by Tomáš Čech <sleep_walker@gnu.org>. * guix/scripts/package.scm (find-packages-by-description)[same-location?]: Remove. Remove call to 'delete-duplicates'. Ludovic Courtès2015-03-20
* gnu: arb: Update to 2.3.0.•••* gnu/packages/algebra.scm (arb): Update to 2.3.0. Andreas Enge2015-03-20
* gnu: Add Catalyst-Devel.•••* gnu/packages/web.scm (perl-catalyst-devel): New variable. Eric Bavier2015-03-20
* gnu: Add Module-Install.•••* gnu/packages/perl.scm (perl-module-install): New variable. Eric Bavier2015-03-20
* gnu: Add YAML-Tiny.•••* gnu/packages/perl.scm (perl-yaml-tiny): New variable. Eric Bavier2015-03-20
* gnu: perl-cpanel-json-xs: Move to (gnu packages perl).•••* gnu/packages/web.scm (perl-cpanel-json-xs): Move this... * gnu/packages/perl.scm: To here. Eric Bavier2015-03-20
* gnu: perl-json-maybexs: Move to (gnu packages perl).•••* gnu/packages/web.scm (perl-json-maybexs): Move this... * gnu/packages/perl.scm: To here. Eric Bavier2015-03-20
* gnu: Add PAR-Dist.•••* gnu/packages/perl.scm (perl-par-dist): New variable. Eric Bavier2015-03-20
* gnu: Add Module-ScanDeps.•••* gnu/packages/perl.scm (perl-module-scandeps): New variable. Eric Bavier2015-03-20