aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAge
...
| * | | | gnu: glibc: Do not copy static Bash binary to bin/.•••This avoids problems when installing 'glibc' in a profile, where glibc's limited 'bash' would take precedence over the valid 'bash'. * gnu/packages/base.scm (glibc)[arguments]: Do not copy STATIC-BASH to OUT/bin. Instead, simply refer to it directly. [inputs]: Use STATIC-BASH instead of BASH-LIGHT. * gnu/packages/commencement.scm (static-bash-for-glibc): Likewise. (glibc-final)[arguments]: Add STATIC-BASH-FOR-GLIBC to #:allowed-references. (gcc-final)[arguments]: Likewise. [native-inputs]: Add "static-bash". Ludovic Courtès2015-08-29
| * | | | gnu: ncurses: Remove obsolete hack.•••* gnu/packages/ncurses.scm (ncurses)[arguments]: Remove obsolete Solaris hack. Ludovic Courtès2015-08-29
| * | | | gnu: ncurses: Rework trick to avoid reference to the bootstrap bash.•••This removes reliance on the availability of 'bin/sh' in glibc. * gnu/packages/ncurses.scm (ncurses): Remove 'configure-phase'. Add 'remove-shebang-phase'. [arguments]: Remove distinction between cross builds and native builds. Use 'modify-phases'. Add 'remove-unneeded-shebang' phase. Ludovic Courtès2015-08-29
| * | | | gnu: ncurses: Upgrade to 6.0.•••* gnu/packages/ncurses.scm (ncurses): Upgrade to 6.0. Change library names to '.so.6'. Ludovic Courtès2015-08-29
| * | | | gnu: binutils: Upgrade to 2.25.1.•••* gnu/packages/base.scm (binutils): Upgrade to 2.25.1. Ludovic Courtès2015-08-29
| * | | | gnu: Add 'bash-static'.•••* gnu/packages/bash.scm (static-bash): New variable. Ludovic Courtès2015-08-29
* | | | | lint: Improve 'check-texinfo-markup'.•••* guix/scripts/lint.scm (check-description-style): Set 'field' parameter when emitting a warning in 'check-texinfo-markup'. Catch any error that may occur in during the 'texi->plain-text' conversion. This is a followup to commit 2748ee3. Mathieu Lirzin2015-09-26
* | | | | http-client: Backport Guile fix for 'read-chunk-header'.•••Fixes the wrong-type-arg exception initially reported at <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=19976#5> by Ricardo Wurmus <rekado@elephly.net>. * guix/http-client.scm (read-chunk-header): Backport Guile commit 53b8d5f. Ludovic Courtès2015-09-26
* | | | | gnu: Add squashfs-tools.•••* gnu/packages/compression.scm (squashfs-tools): New variable. 宋文武2015-09-26
* | | | | offload: Use gzip instead of xz for compression on the master.•••* guix/scripts/offload.scm (send-files): Use gzip --fast instead of xz. Ludovic Courtès2015-09-25
* | | | | utils: Add #:options parameter for compression output ports.•••* guix/utils.scm (compressed-output-port, call-with-compressed-output-port): Add #:options parameter and honor it. Ludovic Courtès2015-09-25
* | | | | gnu: Add Gajim.•••* gnu/packages/messaging.scm (gajim): New variable. Ricardo Wurmus2015-09-25
* | | | | gnu: Add python-nbxmpp.•••* gnu/packages/messaging.scm (python-nbxmpp, python2-nbxmpp): New variables. Ricardo Wurmus2015-09-25
* | | | | gnu: Add python-gnupg.•••* gnu/packages/gnupg.scm (python-gnupg, python2-gnupg): New variables. Ricardo Wurmus2015-09-25
* | | | | gnu: Add pyOpenSSL.•••* gnu/packages/python.scm (python-pyopenssl, python2-pyopenssl): New variables. Ricardo Wurmus2015-09-25
* | | | | gnu: Add python-cryptography.•••* gnu/packages/python.scm (python-cryptography, python2-cryptography): New variables. Ricardo Wurmus2015-09-25
* | | | | gnu: Add python-cryptography-vectors.•••* gnu/packages/python.scm (python-cryptography-vectors, python2-cryptography-vectors): New variables. Ricardo Wurmus2015-09-25
* | | | | gnu: Add python-pretend.•••* gnu/packages/python.scm (python-pretend, python2-pretend): New variables. Ricardo Wurmus2015-09-25
* | | | | gnu: Add python-idna.•••* gnu/packages/python.scm (python-idna, python2-idna): New variables. Ricardo Wurmus2015-09-25
* | | | | gnu: Add python-ipaddress.•••* gnu/packages/python.scm (python2-ipaddress): New variable. Ricardo Wurmus2015-09-25
* | | | | gnu: Add seqmagick.•••* gnu/packages/bioinformatics.scm (seqmagick): New variable. Ben Woodcroft2015-09-25
* | | | | emacs: build-log: Improve regexp for the phase end.•••* emacs/guix-build-log.el (guix-build-log-phase-end-regexp): Handle fractional number of seconds (like "0.8"). Alex Kost2015-09-25
* | | | | lint: Accept '`' character.•••* guix/scripts/lint.scm (properly-starts-sentence?): Match Texinfo highlighting commands as a sentence start. Mathieu Lirzin2015-09-24
* | | | | lint: Check non-translated package descriptions.•••* guix/ui.scm (texi->plain-text): Export. * guix/scripts/lint.scm (check-description-style): Use it instead of 'package-description-string'. Mathieu Lirzin2015-09-24
| |_|_|/ |/| | |
* | | | profiles: Make profile-specific derivations non-substitutable.•••This avoids gratuitous queries of the substituter. * guix/profiles.scm (ghc-package-cache-file): Pass #:substitutable? #f to 'gexp->derivation'. (ca-certificate-bundle): Likewise. (gtk-icon-themes): Likewise. (profile-derivation): Likewise. (info-dir-file): Likewise, plus #:local-build? #t. Ludovic Courtès2015-09-24
* | | | ui: Gracefully handle Unicode description strings.•••Fixes <http://bugs.gnu.org/21536>. Reported by Alex Kost <alezost@gmail.com>. * guix/ui.scm (texi->plain-text): Wrap body in 'with-fluids'. * tests/ui.scm ("package-description-string vs. Unicode"): New test. Ludovic Courtès2015-09-24
* | | | download: Don't abbreviate things that are not store items.•••Fixes a regression introduced in a8be7b9a. * guix/build/download.scm (store-path-abbreviation): Return STORE-PATH if it's not an actual store path. Fixes an out-of-range exception when running tests/substitute.scm and tests/store.scm. Ludovic Courtès2015-09-24
* | | | gnu: Add python-pyasn1.•••* gnu/packages/python.scm (python-pyasn1, python2-pyasn1): New variables. Ricardo Wurmus2015-09-24
* | | | gnu: python-cffi: Update to 1.2.1.•••* gnu/packages/python.scm (python-cffi): Update to 1.2.1. [native-inputs]: Add python-pytest. [arguments]: Enable tests. Ricardo Wurmus2015-09-24
* | | | tests: cran: Use cran-uri in expected output.•••* tests/cran.scm: Expect output to use "cran-uri" procedure. Ricardo Wurmus2015-09-24
* | | | download: Fix some minor progress-logging regressions.•••* guix/build/download.scm (string-pad-middle): Allow resulting padded string to overflow. (store-url-abbreviation): Remove unnecessary procedure. (progress-proc): Use BASENAME as default for parameter 'abbreviation'. (url-fetch): Display extra newlines for readability. Steve Sprang2015-09-23
* | | | emacs: Add 'guix-devel-build-package-definition'.•••Suggested by Ludovic Courtès <ludo@gnu.org>. * emacs/guix-guile.el (guix-guile-definition-regexp): New variable. (guix-guile-current-definition, guix-guile-boolean): New functions. * emacs/guix-devel.el: Require 'guix-base'. (guix-devel-repl-processes): New variable. (guix-devel-setup-repl, guix-devel-setup-repl-maybe): New functions. (guix-devel-build-package-definition): New command. * doc/emacs.texi (Emacs Development): Document it. Alex Kost2015-09-23
* | | | emacs: Add development utils.•••* emacs/guix-guile.el (guix-guile-current-module): New function. * emacs/guix-devel.el: New file. * emacs.am (ELFILES): Add it. * doc/emacs.texi (Emacs Development): New node. (Emacs Interface): Add it. * doc/contributing.texi (The Perfect Setup): Mention it. * doc/guix.texi (Top): Add it. * emacs/guix-init.el: Add 'guix-devel-activate-mode-maybe' to 'scheme-mode-hook'. Alex Kost2015-09-23
* | | | emacs: Add "View map" action to 'size' popup.•••* emacs/guix-command.el (guix-run-view-size-map): New function. (guix-command-additional-execute-arguments, guix-command-special-executors): Add entries for "View map" action. Alex Kost2015-09-23
* | | | gnu: Import modules needed by openimageio.•••* gnu/packages/graphics.scm: Add missing imports. This is a followup to commit 71299c1. Ludovic Courtès2015-09-23
* | | | gnu: Add openimageio.•••* gnu/packages/graphics.scm (openimageio): New variable. Ricardo Wurmus2015-09-23
* | | | gnu: Add XJackFreak.•••* gnu/packages/audio.scm (xjackfreak): New variable. Ricardo Wurmus2015-09-23
| |_|/ |/| |
* | | scripts: Add 'build-package'.•••* guix/scripts/system.scm (maybe-build): Move to ... * guix/scripts.scm: ...here. (build-package): New procedure. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Alex Kost2015-09-22
* | | emacs: Add code to call guile procedures.•••* emacs/guix-guile.el (guix-guile-make-call-expression): New function. * emacs/guix-geiser.el: Require 'guix-guile'. (guix-geiser-call, guix-geiser-call-in-repl): New functions. Alex Kost2015-09-22
* | | emacs: Move code for evaluating to "guix-geiser.el".•••* emacs/guix-backend.el: Adjust commentary. Move "eval" code to ... (guix-eval, guix-eval-read, guix-eval-in-repl): Adjust to use new functions. * emacs/guix-geiser.el: ...here. New file. (guix-geiser-eval, guix-geiser-eval-read, guix-geiser-eval-in-repl, guix-repl-send): New functions. * emacs.am (ELFILES): Add "guix-geiser.el". Alex Kost2015-09-22
* | | emacs: Move guile related code to "guix-guile.el".•••* emacs/guix-backend.el (guix-make-guile-expression): Move to... * emacs/guix-guile.el: ... here. New file. * emacs/guix-base.el: Use it. * emacs/guix-command.el: Use it. * emacs.am (ELFILES): Add it. Alex Kost2015-09-22
* | | gnu: linux-libre: Update to 4.2.1.•••* gnu/packages/linux.scm (linux-libre): Update to 4.2.1. Mark H Weaver2015-09-22
* | | gnu: recutils: Add libuuid to native-inputs.•••* gnu/packages/databases.scm (recutils)[native-inputs]: Add "libuuid". Signed-off-by: Ludovic Courtès <ludo@gnu.org> Leo Famulari2015-09-22
* | | licenses: Add Zope Public License.•••* guix/licenses.scm (zpl2.1): New variable. Ricardo Wurmus2015-09-22
* | | emacs: Improve 'guix-prettify-regexp'.•••* emacs/guix-prettify.el (guix-prettify-regexp): Modify to handle "nar" and "log". Alex Kost2015-09-22
* | | gnu: python2-ipython: Override terminado in propagated inputs.•••* gnu/packages/python.scm (python2-ipython)[inputs, propagated-inputs]: Override inherited "python-terminado" in propagated inputs instead of regular inputs. Ricardo Wurmus2015-09-21
* | | gnu: r-scales: Update to 0.3.0.•••* gnu/packages/statistics.scm (r-scales): Update to 0.3.0. Ricardo Wurmus2015-09-21
* | | Update CRAN mirrors.•••* guix/download.scm (%mirrors): Update mirror list for CRAN. Ricardo Wurmus2015-09-21
* | | gnu: Add r-dplyr.•••* gnu/packages/statistics.scm (r-dplyr): New variable. Vicente Vera Parra2015-09-21
* | | gnu: Add r-r6.•••* gnu/packages/statistics.scm (r-r6): New variable. Vicente Vera Parra2015-09-21