Age | Commit message (Expand) | Author |
2019-06-20 | utils: canonical-newline-port: Fix handling of carriage return at buffer end....Prior to this change the added test fails for me locally at byte
1024. It might depend on some default buffer sizes.
Fixes <https://bugs.gnu.org/35863>.
* tests/utils.scm ("canonical-newline-port-1024"): Add test.
* guix/utils.scm (canonical-newline-port): Correct comments on CR/LF.
Remove CR even when they're at the end of the buffer.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Robert Vollmert |
2019-06-20 | gnu: guile: Add 2.2.5....* gnu/packages/guile.scm (guile-2.2.5): New variable.
| Ludovic Courtès |
2019-06-20 | gnu: python-jupyter-console: Update to 6.0.0....* gnu/packages/python-xyz.scm (python-jupyter-console): Update to 6.0.0.
[arguments]: Enable tests.
[propagated-inputs]: Replace python-prompt-toolkit-1 with
python-prompt-toolkit.
| Ricardo Wurmus |
2019-06-20 | gnu: python2-jupyter-console: Split from python-jupyter-console....* gnu/packages/python-xyz.scm (python2-jupyter-console): Implement without
package-with-python2.
| Ricardo Wurmus |
2019-06-20 | Revert "gnu: Add libgd."...This reverts commit 059e4c9a15b52f7e4b262e3317eac238bf53103d.
| Nicolas Goaziou |
2019-06-20 | gnu: Add lrcalc....* gnu/packages/algebra.scm (lrcalc): New variable.
| Andreas Enge |
2019-06-20 | gnu: Add eclib....* gnu/packages/algebra.scm (eclib): New variable.
| Andreas Enge |
2019-06-20 | gnu: Add m4rie....* gnu/packages/algebra.scm (m4rie): New variable.
| Andreas Enge |
2019-06-20 | gnu: weechat: update to 2.5...* gnu/packages/irc.scm (weechat): update to 2.5
Signed-off-by: Gábor Boskovits <boskovits@gmail.com>
| Josh Holland |
2019-06-20 | gnu: Add python-fpylll....* gnu/packages/algebra.scm (python-fpylll): New variable.
| Nicolas Goaziou |
2019-06-20 | gnu: fplll: Update to 5.2.1....* gnu/packages/algebra.scm (fplll): Update to 5.2.1.
[source]: Use Github tagged release: the original tarball no longer exists.
[native-inputs]: Add Autoconf and al.
[homepage]: Update it, the previous one no longer exists.
[description]: Expound description.
| Nicolas Goaziou |
2019-06-20 | services: Fix typo in (gnu services mail) exports....* gnu/services/mail.scm (define-module):
Re-spell ‘%default-imap4d-config-file’.
| Tobias Geerinckx-Rice |
2019-06-20 | gnu: Add symmetrica....* gnu/packages/algebra.scm (symmetrica): New variable.
* gnu/packages/patches/symmetrica-bruch.patch:
* gnu/packages/patches/symmetrica-int32.patch:
* gnu/packages/patches/symmetrica-return_values.patch:
* gnu/packages/patches/symmetrica-sort_sum_rename.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add patches.
| Nicolas Goaziou |
2019-06-20 | gnu: zathura: Install icons....* gnu/packages/pdf.scm (zathura)[native-inputs]: Add librsvg to build and
install the application icons.
Signed-off-by: Gábor Boskovits <boskovits@gmail.com>
| Alex Griffin |
2019-06-20 | gnu: Add libgd....* gnu/packages/image.scm (libgd): New variable.
| Nicolas Goaziou |
2019-06-20 | gnu: Move ratpoints into a different module....* gnu/packages/maths.scm (ratpoints): Move...
* gnu/packages/algebra.scm: ...here.
| Nicolas Goaziou |
2019-06-20 | gnu: spdlog: Clarify license....* gnu/packages/logging.scm (spdlog): Clarify license of the bundled fmt
library.
Signed-off-by: Gábor Boskovits <boskovits@gmail.com>
| Meiyo Peng |
2019-06-20 | gnu: bind: Update to 9.14.3 [fixes CVE-2019-6471]....* gnu/packages/dns.scm (isc-bind): Update to 9.14.3.
| Tobias Geerinckx-Rice |
2019-06-20 | gnu: zn_poly: Rename to zn-poly, according to our naming conventions....Reported by Nicolas Goaziou <mail@nicolasgoaziou.fr>.
This is a follow-up to commit 01822e3ebf24031d6438fc4e7ad3a869ea12fdf4.
* gnu/packages/sagemath.scm (zn_poly): Rename to...
* gnu/packages/sagemath.scm (zn-poly): ...this.
| Andreas Enge |
2019-06-19 | gnu: Add brial....* gnu/packages/sagemath.scm (brial): New variable.
| Andreas Enge |
2019-06-19 | gnu: Add m4ri....* gnu/packages/algebra.scm (m4ri): New variable.
| Andreas Enge |
2019-06-19 | gnu: Add crispy-doom....* gnu/packages/games.scm (crispy-doom): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Dan Frumin |
2019-06-19 | gnu: emacs-unpackaged-el: Add patch for missing require statement....* gnu/packages/emacs-xyz.scm (emacs-unpackaged-el)[source]: Add patch.
* gnu/packages/patches/emacs-unpackaged-req.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Brian Leung |
2019-06-19 | gnu: Add numix-theme....* gnu/packages/gnome.scm (numix-theme): New variable
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| Giacomo Leidi |
2019-06-19 | grafts: Avoid 'query-valid-derivers' RPC....Previously we'd make 502 'query-valid-derivers' RPCs for
"guix build vim -d", and after this patch, we don't do any.
Furthermore, the previous strategy was "stateful" in the sense that
'item->deriver' could return a derivation that is not the one that was
actually computed by this process, but an "equivalent" one (due to
fixed-output derivations); which one is chosen would depend on the state
of the store.
This in turn means that we'd have to call 'read-derivation-from-file' to
actually read .drv files (as opposed to getting them from
%DERIVATION-CACHE). This is costly and doesn't work with
GUIX_DAEMON_SOCKET=ssh://….
* guix/grafts.scm (item->deriver): Remove.
(reference-origin): New procedure.
(cumulative-grafts): Use it instead of 'item->deriver'.
| Ludovic Courtès |
2019-06-19 | derivations: Add 'derivation-input-derivation'....* guix/derivations.scm (derivation-input-derivation): New procedure.
(derivation-prerequisites): Use it.
| Ludovic Courtès |
2019-06-19 | gnu: Add python-pandocfilters....* gnu/packages/textutils.scm (python-pandocfilters): New variable.
| Nicolas Goaziou |
2019-06-19 | gnu: Add ratpoints....* gnu/packages/maths.scm (ratpoints): New variable.
* gnu/packages/patches/ratpoints-sturm_and_rp_private.patch: New file.
* gnu/local.mk (dist_patch_DATA): Reference patch.
| Nicolas Goaziou |
2019-06-19 | gnu: Add gf2x....* gnu/packages/algebra.scm (gf2x): New variable.
| Andreas Enge |
2019-06-19 | gnu: Add zn_poly....* gnu/packages/sagemath.scm (zn_poly): New variable.
| Andreas Enge |
2019-06-19 | gnu: Add pynac....* gnu/packages/sagemath.scm (pynac): New variable.
| Andreas Enge |
2019-06-19 | gnu: python-gmpy2: Update to 2.1.0b1....The gmpy2 package has become a standard package in sage-8.7, and the latest
stable release is too old.
* gnu/packages/sagemath.scm (python-gmpy2): Update to 2.1.0b1.
| Andreas Enge |
2019-06-19 | gnu: balsa: Update to 2.5.7....* gnu/packages/mail.scm (balsa): Update to 2.5.7.
[inputs]: Build with gtksourceview@3.
| Tobias Geerinckx-Rice |
2019-06-19 | gnu: nano: Update to 4.3....* gnu/packages/nano.scm (nano): Update to 4.3.
| Tobias Geerinckx-Rice |
2019-06-19 | gnu: notmuch: Update to 0.29.1....* gnu/packages/mail.scm (notmuch): Update to 0.29.1.
| Tobias Geerinckx-Rice |
2019-06-19 | gnu: mpd: Update to 0.21.10....* gnu/packages/mpd.scm (mpd): Update to 0.21.10.
| Tobias Geerinckx-Rice |
2019-06-19 | gnu: perl-xml-sax: Update to 1.02....* gnu/packages/xml.scm (perl-xml-sax): Update to 1.02.
| Tobias Geerinckx-Rice |
2019-06-19 | gnu: shadow: Update home page....* gnu/packages/admin.scm (shadow)[home-page]: Update to new project home.
| Tobias Geerinckx-Rice |
2019-06-19 | gnu: shadow: Update to 4.7....* gnu/packages/admin.scm (shadow): Update to 4.7.
| Tobias Geerinckx-Rice |
2019-06-19 | gnu: ansible: Update to 2.8.1....* gnu/packages/admin.scm (ansible): Update to 2.8.1.
| Tobias Geerinckx-Rice |
2019-06-19 | gnu: filezilla: Update to 3.42.1....* gnu/packages/ftp.scm (filezilla): Update to 3.42.1.
| Tobias Geerinckx-Rice |
2019-06-19 | gnu: libfilezilla: Update to 0.16.0....* gnu/packages/ftp.scm (libfilezilla): Update to 0.16.0.
| Tobias Geerinckx-Rice |
2019-06-19 | gnu: Add python-keras....* gnu/packages/machine-learning.scm (python-keras): New variable.
| Ricardo Wurmus |
2019-06-19 | gnu: Add python-pytest-timeout....* gnu/packages/check.scm (python-pytest-timeout): New variable.
| Ricardo Wurmus |
2019-06-19 | gnu: Add python-keras-preprocessing....* gnu/packages/machine-learning.scm (python-keras-preprocessing): New variable.
| Ricardo Wurmus |
2019-06-19 | gnu: Add python-keras-applications....* gnu/packages/machine-learning.scm (python-keras-applications): New variable.
| Ricardo Wurmus |
2019-06-19 | gnu: python-botocore: Update to 1.12.149....* gnu/packages/python-xyz.scm (python-botocore): Update to 1.12.149.
[native-inputs]: Add python-urllib3.
| Ricardo Wurmus |
2019-06-19 | gnu: python-s3transfer: Update to 0.2.0....* gnu/packages/python-web.scm (python-s3transfer): Update to 0.2.0.
[propagated-inputs]: Add python-urllib3.
| Ricardo Wurmus |
2019-06-19 | tests: Fix opensmtpd test....* gnu/tests/mail.scm (run-opensmtpd-test) <"mail arrived">: Invoke
smtpctl by its full file name.
| Tobias Geerinckx-Rice |
2019-06-18 | gnu: linux-libre: Update to 5.1.11....* gnu/packages/linux.scm (%linux-libre-version): Update to 5.1.11.
(%linux-libre-hash): Update hash.
| Mark H Weaver |