| Commit message (Expand) | Author | Age | Files | Lines |
* | doc: Recommend using the installer script.•••* doc/guix.texi (Installation): Make it clear that the installer script is the
recommended, easy way to install Guix.
| Ricardo Wurmus | 2019-01-08 | 1 | -21/+25 |
* | pull: Document '--system'.•••Fixes <https://bugs.gnu.org/34010>.
Reported by Alex Kost <alezost@gmail.com>.
This is a followup to 5923102f7b58f0a0120926ec5b81ed48b26a188e.
* guix/scripts/pull.scm (show-help): Add '--system'.
| Ludovic Courtès | 2019-01-08 | 1 | -1/+3 |
* | self: Compress Info files.•••Fixes <https://bugs.gnu.org/33993>.
Reported by Adonay Felipe Nogueira <adfeno@hyperbola.info>.
* guix/self.scm (info-manual): Compress Info files.
| Ludovic Courtès | 2019-01-08 | 1 | -1/+8 |
* | build-self: Spin only on TTYs.•••* build-aux/build-self.scm (build-program): Spin only when 'isatty?'
returns true.
| Ludovic Courtès | 2019-01-08 | 1 | -6/+7 |
* | gnu: dvdisaster: Run regression tests.•••* gnu/packages/cdrom.scm (dvdisaster)[arguments]: Remove #:tests? argument.
Add 'check' phase.
| Eric Bavier | 2019-01-08 | 1 | -1/+7 |
* | gnu: dvdisaster: Install desktop file.•••* gnu/packages/cdrom.scm (dvdisaster)[arguments]: Add 'install-desktop phase.
| Eric Bavier | 2019-01-08 | 1 | -1/+25 |
* | gnu: prosody: Update to 0.11.1.•••* gnu/packages/messaging.scm (prosody): Update to 0.11.1.
[arguments]: Replace "Makefile" with "GNUmakefile". Change "5.1" to "5.2".
Explain why there are no tests.
[inputs]: Replace lua-5.1, lua5.1-bitop, lua5.1-expat, lua5.1-socket,
lua5.1-filesystem, lua5.1-sec with lua-5.2, lua5.2-bitop, lua5.2-expat,
lua5.2-socket, lua5.2-filesystem, lua5.2-sec.
| Clément Lassieur | 2019-01-08 | 1 | -16/+14 |
* | gnu: Add lua5.2-sec.•••* gnu/packages/lua.scm (lua5.2-sec): New variable.
(make-lua-sec): New procedure.
(lua5.1-sec, lua5.2-sec): Call it.
| Clément Lassieur | 2019-01-08 | 1 | -8/+18 |
* | gnu: Add lua-filesystem and lua5.2-filesystem.•••* gnu/packages/lua.scm (lua-filesystem, lua5.2-filesystem): New variables.
(make-lua-filesystem): New procedure.
(lua-filesystem, lua5.1-filesystem, lua5.2-filesystem): Call it.
| Clément Lassieur | 2019-01-08 | 1 | -4/+16 |
* | gnu: Add lua5.2-socket.•••* gnu/packages/lua.scm (lua5.2-socket): New variable.
(make-lua-socket): New procedure.
(lua5.1-socket, lua5.2-socket): Call it.
| Clément Lassieur | 2019-01-08 | 1 | -6/+14 |
* | gnu: Add lua5.2-expat.•••* gnu/packages/lua.scm (lua5.2-expat): New variable.
(make-lua-expat): New procedure.
(lua5.1-expat, lua5.2-expat): Call it.
| Clément Lassieur | 2019-01-08 | 1 | -7/+14 |
* | gnu: criu: Update to 3.11.•••* gnu/packages/virtualization.scm (criu): Update to 3.11.
[arguments]: Add custom phase to patch python calls.
| Efraim Flashner | 2019-01-08 | 1 | -6/+19 |
* | gnu: criu: Fix building on armhf-linux.•••* gnu/packages/virtualization.scm (criu)[arguments]: Hardcode the arm
version in the Makefile.
| Efraim Flashner | 2019-01-08 | 1 | -1/+4 |
* | gnu: gajim-omemo: Update to 2.6.26.•••* gnu/packages/messaging.scm (gajim-omemo): Update to 2.6.26.
| Clément Lassieur | 2019-01-08 | 1 | -2/+2 |
* | gnu: gajim: Update to 1.1.1.•••* gnu/packages/messaging.scm (gajim): Update to 1.1.1.
[arguments]: Replace #:test-target with a 'check' phase.
| Clément Lassieur | 2019-01-08 | 1 | -5/+7 |
* | gnu: tor: Update to 0.3.4.10.•••* gnu/packages/tor.scm (tor): Update to 0.3.4.10.
| Tobias Geerinckx-Rice | 2019-01-08 | 1 | -3/+3 |
* | gnu: privoxy: Update to 3.0.28.•••* gnu/packages/tor.scm (privoxy): Update to 3.0.28.
| Tobias Geerinckx-Rice | 2019-01-08 | 1 | -2/+2 |
* | gexp: 'gexp->script' does not emit load-path expression when unnecessary.•••This removes two elements from %LOAD-PATH and %LOAD-COMPILED-PATH of the
'guix' command and thus further reduces the number of 'stat' calls it
makes.
* guix/gexp.scm (load-path-expression): Return #f when MODULES and
EXTENSIONS are both empty.
(gexp->script): Don't emit anything when SET-LOAD-PATH is #f.
| Ludovic Courtès | 2019-01-07 | 1 | -25/+32 |
* | self: Move all modules into a single directory.•••This halves the number of elements in %LOAD-PATH and %LOAD-COMPILED-PATH
and halves the number of 'stat' calls as reported by:
env -i $(type -P guix) build -e '(@ (gnu packages base) coreutils)' -nd
* guix/self.scm (node-source+compiled, guile-module-union): New
procedures.
(guix-command): Remove 'compiled-modules' parameter. Remove
'source-directories' and 'object-directories' variables and add
'module-directory'. Change command so that it adds nothing but
MODULE-DIRECTORY to %LOAD-PATH and %LOAD-COMPILED-PATH.
(whole-package): Remove #:compiled-modules. Assume MODULES contains
'share/guile/site' and 'lib/guile' and adjust code accordingly.
(compiled-guix): When PULL-VERSION is 1, use 'node-source+compiled'
only. Remove #:compiled-modules argument to 'whole-package'.
* guix/channels.scm (whole-package-for-legacy): Add 'module+compiled'
and pass it to 'whole-package'.
| Ludovic Courtès | 2019-01-07 | 2 | -49/+100 |
* | gnu: libnet: Update to 1.2-rc3.•••* gnu/packages/networking.scm (libnet): Update to 1.2-rc3.
[source]: Use git-fetch.
| Rutger Helling | 2019-01-07 | 1 | -10/+12 |
* | import: opam: Parse comments.•••* guix/import/opam.scm: Add comment support in parser.
| Julien Lepiller | 2019-01-07 | 1 | -1/+2 |
* | gnu: ocaml-graph: Add upstream-name.•••* gnu/packages/ocaml.scm (ocaml-graph)[properties]: Add upstream-name.
| Julien Lepiller | 2019-01-07 | 1 | -0/+1 |
* | import: opam: Add updater.•••* guix/import/opam.scm (%opam-updater): New variable.
| Julien Lepiller | 2019-01-07 | 1 | -5/+54 |
* | import: opam: Add recursive option.•••* guix/script/import/opam.scm: Add recursive option.
* guix/import/opam.scm (opam->guix-package): return two values.
(opam-recursive-import): New variable.
| Julien Lepiller | 2019-01-07 | 2 | -28/+69 |
* | gnu: Move coq packages from ocaml to coq.•••* gnu/packages/ocaml.scm (coq, proof-general, coq-flocq, coq-gappa, coq-mathcomp)
(coq-coquelicot, coq-bignums, coq-interval): Move from here...
* gnu/packages/coq.scm: ... to here. New file.
| Julien Lepiller | 2019-01-07 | 2 | -417/+454 |
* | gnu: emacs-guix: Update to 0.5.1.1.•••* gnu/packages/emacs.scm (emacs-guix): Update to 0.5.1.1.
| Alex Kost | 2019-01-07 | 1 | -3/+3 |
* | gnu: containerd: Update synopsis.•••* gnu/packages/docker.scm (containerd)[synopsis]: Modify.
| Danny Milosavljevic | 2019-01-07 | 1 | -1/+1 |
* | gnu: containerd: Enable tests.•••* gnu/packages/docker.scm (containerd)[arguments]: Remove #:tests?.
| Danny Milosavljevic | 2019-01-07 | 1 | -1/+0 |
* | gnu: Add missing use-module clause.•••This is a follow-up to 4e5b8f7215b8e0ae864b954cd511404098fd2840.
* gnu/packages/docker.scm: Add missing use-module clause.
| Ricardo Wurmus | 2019-01-07 | 1 | -1/+2 |
* | gnu: Add r-corpcor.•••* gnu/packages/cran.scm (r-corpcor): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+22 |
* | gnu: Add r-ddrtree.•••* gnu/packages/cran.scm (r-ddrtree): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+31 |
* | gnu: Add r-qlcmatrix.•••* gnu/packages/cran.scm (r-qlcmatrix): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+27 |
* | gnu: Add r-combinat.•••* gnu/packages/cran.scm (r-combinat): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+17 |
* | gnu: Add r-densityclust.•••* gnu/packages/cran.scm (r-densityclust): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+30 |
* | gnu: Add r-sparsesvd.•••* gnu/packages/cran.scm (r-sparsesvd): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+23 |
* | gnu: Add r-docopt.•••* gnu/packages/cran.scm (r-docopt): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+19 |
* | gnu: Add r-rvcheck.•••* gnu/packages/cran.scm (r-rvcheck): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+21 |
* | gnu: Add r-tidytree.•••* gnu/packages/cran.scm (r-tidytree): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+28 |
* | gnu: Add r-colorramps.•••* gnu/packages/cran.scm (r-colorramps): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+20 |
* | gnu: Add r-wordcloud.•••* gnu/packages/cran.scm (r-wordcloud): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+23 |
* | gnu: Add r-waveslim.•••* gnu/packages/cran.scm (r-waveslim): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+25 |
* | gnu: Add r-tiff.•••* gnu/packages/cran.scm (r-tiff): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+25 |
* | gnu: Add r-fftwtools.•••* gnu/packages/cran.scm (r-fftwtools): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+26 |
* | gnu: Add r-softimpute.•••* gnu/packages/cran.scm (r-softimpute): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+27 |
* | gnu: Add r-adgoftest.•••* gnu/packages/cran.scm (r-adgoftest): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+22 |
* | gnu: Add r-gsl.•••* gnu/packages/cran.scm (r-gsl): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+21 |
* | gnu: Add r-stabledist.•••* gnu/packages/cran.scm (r-stabledist): New variable.
| Ricardo Wurmus | 2019-01-07 | 1 | -0/+20 |
* | gnu: perl-lingua-translit: Update to 0.28.•••* gnu/packages/perl.scm (perl-lingua-translit): Update to 0.28.
| Efraim Flashner | 2019-01-07 | 1 | -2/+2 |
* | gnu: Add containerd.•••* gnu/packages/docker.scm (containerd): New variable.
| Danny Milosavljevic | 2019-01-07 | 1 | -0/+68 |
* | gnu: Add dummy linker for arm-elf.•••* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add case for arm-elf.
| Danny Milosavljevic | 2019-01-07 | 1 | -0/+1 |