Age | Commit message (Expand) | Author |
2019-08-30 | doc: Prefer https:// over git://....* doc/guix.texi (Continuous Integration): Use https:// in fictitious URLs.
| Tobias Geerinckx-Rice |
2019-08-30 | gnu: Add splix....* gnu/packages/cups.scm (splix): New public variable.
| Tobias Geerinckx-Rice |
2019-08-30 | gnu: Add jbigkit....* gnu/packages/image.scm (jbigkit): New public variable.
| Tobias Geerinckx-Rice |
2019-08-30 | gnu: diffoscope: Update to 122....* gnu/packages/package-management (diffoscope): Update to 122.
| Vagrant Cascadian |
2019-08-30 | gnu: Add r-genie3....* gnu/packages/bioconductor.scm (r-genie3): New variable.
| Ricardo Wurmus |
2019-08-30 | gnu: wlroots: Update to 0.7.0....* gnu/packages/wm.scm (wlroots): Update to 0.7.0.
| Rutger Helling |
2019-08-30 | gnu: Add emacs-helm-taskrunner....* gnu/packages/emacs-xyz.scm (emacs-helm-taskrunner): New variable.
Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
| Brian Leung |
2019-08-30 | gnu: Add emacs-ivy-taskrunner....* gnu/packages/emacs-xyz.scm (emacs-ivy-taskrunner): New variable.
Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
| Brian Leung |
2019-08-30 | gnu: Add emacs-taskrunner....* gnu/packages/emacs-xyz.scm (emacs-taskrunner): New variable.
Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
| Brian Leung |
2019-08-30 | gnu: emacs-mbsync: Update to 0.1.2-2.f549ecc....* gnu/packages/emacs-xyz.scm (emacs-mbsync): Update to 0.1.2-2.f549ecc.
Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
| Brian Leung |
2019-08-30 | gnu: Add emacs-helm-ag....* gnu/packages/emacs-xyz.scm (emacs-helm-ag): New variable.
Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
| Brian Leung |
2019-08-30 | gnu: aqbanking: Update to 5.8.1....* gnu/packages/gnucash.scm (aqbanking): Update to 5.8.1.
[source]: Remove FILE-NAME.
| Tobias Geerinckx-Rice |
2019-08-30 | gnu: gwenhywfar: Update to 4.20.2....* gnu/packages/gnucash.scm (gwenhywfar): Update to 4.20.2.
[source]: Remove FILE-NAME.
| Tobias Geerinckx-Rice |
2019-08-30 | services: cups: Move SET-ENV to FILES-CONFIGURATION....* gnu/services/cups.scm (cups-configuration): Move SET-ENV from here…
(files-configuration): …to here.
* doc/guix.texi (Printing Services): Adjust accordingly.
| Tobias Geerinckx-Rice |
2019-08-30 | services: cups: Add BrowseDNSSDSubTypes directive....* gnu/services/cups.scm (comma-separated-string-list?)
(serialize-comma-separated-string-list): New variables.
(cups-configuration)[browse-dns-sd-sub-types]: New field.
* doc/guix.texi (Printing Services): Document it.
| Tobias Geerinckx-Rice |
2019-08-30 | gnu: emacs: Update to 26.3....* gnu/packages/emacs.scm (emacs): Update to 26.3.
| Tobias Geerinckx-Rice |
2019-08-30 | gnu: python-pybtex: Update to 0.22.2....* gnu/packages/python-xyz.scm (python-pybtex): Update to 0.22.2.
| Tobias Geerinckx-Rice |
2019-08-30 | gnu: libhandy: Update to 0.0.11....* gnu/packages/gnome.scm (libhandy): Update to 0.0.11.
[arguments]: Remove ‘disable-broken-test’ phase.
[native-inputs]: Add hicolor-icon-theme.
| Tobias Geerinckx-Rice |
2019-08-30 | gnu: conky: Update to 1.11.5....* gnu/packages/conky.scm (conky): Update to 1.11.5.
| Tobias Geerinckx-Rice |
2019-08-30 | gnu: eolie: Update to 0.9.63....* gnu/packages/gnome.scm (eolie): Update to 0.9.63.
| Tobias Geerinckx-Rice |
2019-08-29 | gnu: rust: Update to 1.37.0....* gnu/packages/rust.scm (rust): Rename to...
(rust-1.36): ...this.
(rust): New variable.
| Ivan Petkov |
2019-08-30 | guix system: Reinstalling the bootloader preserves extra menu entries....Fixes <https://bugs.gnu.org/36876>.
Reported by Jesse Gibbons <jgibbons2357@gmail.com>.
Previously 'guix system delete-generations' or 'switch-generation' would
lose the extra bootloader menu entries specified in the current system's
configuration. This fixes that.
* guix/scripts/system.scm (reinstall-bootloader): Turn PARAMS into a
single <boot-parameters>. Adjust ENTRIES to include extra menu entries
specified in PARAMS.
| Ludovic Courtès |
2019-08-30 | system: Add 'bootloader-menu-entries' field to <boot-parameters>....This allows us to keep track of the extra menu entries specified in the
OS configuration.
* gnu/system.scm (<boot-parameters>)[bootloader-menu-entries]: New field.
(read-boot-parameters): Initialize it.
(operating-system-boot-parameters): Likewise.
(operating-system-boot-parameters-file): Serialize it.
* gnu/bootloader.scm (menu-entry->sexp, sexp->menu-entry): New
procedures.
| Ludovic Courtès |
2019-08-30 | daemon: Don't reply on 'st_blocks'....Ported by Ludovic Courtès <ludo@gnu.org>
from <https://github.com/NixOS/nix/commit/a2c4fcd5e9782dc8d2998773380c7171ee53b813>.
* nix/libstore/gc.cc (LocalStore::removeUnusedLinks): Use 'st.st_size'
instead of 'st.st_blocks * 512'.
* nix/libutil/util.cc (_deletePath): Likewise.
| Eelco Dolstra |
2019-08-30 | lint: formatting: Reporters return #f or a warning....* guix/lint.scm (report-tabulations, report-trailing-white-space)
(report-long-line, report-lone-parentheses): Return #f instead
of *unspecified* when there are no warnings.
(report-formatting-issues): Use 'filter-map' instead of 'map' + 'filter'.
| Ludovic Courtès |
2019-08-30 | bootloader: Fix comment about 'menu-entries'....* gnu/bootloader.scm (<bootloader-configuration>)[menu-entries]: Fix
margin comment.
| Ludovic Courtès |
2019-08-29 | gnu: linux-libre: Update to 5.2.11....* gnu/packages/linux.scm (linux-libre-5.2-version): Update to 5.2.11.
(linux-libre-5.2-pristine-source): Update hash.
| Mark H Weaver |
2019-08-29 | gnu: linux-libre@4.19: Update to 4.19.69....* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.69.
(linux-libre-4.19-pristine-source): Update hash.
| Mark H Weaver |
2019-08-29 | gnu: linux-libre@4.14: Update to 4.14.141....* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.141.
(linux-libre-4.14-pristine-source): Update hash.
| Mark H Weaver |
2019-08-30 | gnu: Add poussetaches....* gnu/packages/web.scm (poussetaches): New variable.
| Arun Isaac |
2019-08-30 | gnu: Add go-github-com-robfig-cron....* gnu/packages/golang.scm (go-github-com-robfig-cron): New variable.
| Arun Isaac |
2019-08-29 | gnu: Add rednotebook.... * gnu/package/rednotebook.scm: New file.
* gnu/local.mk: Add it.
* gnu/packages/rednotebook.scm (rednotebook): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
| Jesse Gibbons |
2019-08-29 | gnu: next: Update to 1.3.0 and rename sbcl-next to next....* gnu/packages/web-browsers.scm (sbcl-next): Deprecate for next.
* gnu/packages/web-browsers.scm (next): Update to 1.3.0.
[arguments]: Add phase to fix version number.
[inputs]: Update dependencies for 1.3.0.
| Pierre Neidhardt |
2019-08-29 | gnu: Add sbcl-next-download-manager....* gnu/packages/web-browsers.scm (sbcl-next-download-manager): New variable.
It's a Common Lisp system dependency for `next', which is why we don't export
the package.
| Pierre Neidhardt |
2019-08-29 | gnu: next-gtk-webkit: Update to 1.3.0 and hide package....* gnu/packages/web-browsers.scm (next-gtk-webkit): Update to 1.3.0.
We hide the package because it is not usable on its own, it's a necessary
backend for the `next' package.
| Pierre Neidhardt |
2019-08-29 | gnu: Add cl-dbus....* gnu/packages/lisp.scm (cl-dbus): New variable.
| Pierre Neidhardt |
2019-08-29 | gnu: Add sbcl-cl-xmlspam....* gnu/packages/lisp.scm (sbcl-cl-xmlspam): New variable.
| Pierre Neidhardt |
2019-08-29 | gnu: Add fe....* gnu/packages/text-editors.scm (fe): New variable.
| Nicolas Goaziou |
2019-08-29 | gnu: ungoogled-chromium: Update to 76.0.3809.132-0.8eba5c0....* gnu/packages/chromium.scm (%chromium-version): Set to 76.0.3809.132.
(%chromium-origin): Update hash.
| Marius Bakke |
2019-08-29 | gnu: rtorrent: Update to 0.9.8....* gnu/packages/bittorrent.scm (rtorrent): Update to 0.9.8.
| Marius Bakke |
2019-08-29 | gnu: libtorrent: Update to 0.13.8....* gnu/packages/bittorrent.scm (libtorrent): Update to 0.13.8.
| Marius Bakke |
2019-08-29 | gnu: QtWebKit: Increase build timeout....* gnu/packages/qt.scm (qtwebkit)[properties]: New field.
| Marius Bakke |
2019-08-29 | gnu: python-wrapt: Update to 1.11.2....* gnu/packages/python-xyz.scm (python-wrapt): Update to 1.11.2.
| Marius Bakke |
2019-08-29 | gnu: python-flask-sqlalchemy: Update to 2.4.0....* gnu/packages/python-web.scm (python-flask-sqlalchemy): Update to 2.4.0.
| Marius Bakke |
2019-08-29 | gnu: python-alembic: Update to 1.0.11....* gnu/packages/databases.scm (python-alembic): Update to 1.0.11.
| Marius Bakke |
2019-08-29 | gnu: Add rust-nodrop, rust-nodrop-union....* gnu/packages/crates-io.scm (rust-nodrop, rust-nodrop-union): New
variables.
| Efraim Flashner |
2019-08-29 | gnu: Add rust-num-iter....* gnu/packages/crates-io.scm (rust-num-iter): New variable.
| Efraim Flashner |
2019-08-29 | gnu: Add rust-futures-cpupool....* gnu/packages/crates-io.scm (rust-futures-cpupool): New variable.
| Efraim Flashner |
2019-08-29 | gnu: Add rust-fuchsia-cprng....* gnu/packages/crates-io.scm (rust-fuchsia-cprng): New variable.
| Efraim Flashner |
2019-08-29 | gnu: Add rust-fucshia-zircon....* gnu/packages/crates-io.scm (rust-fuchsia-zircon): New variable.
| Efraim Flashner |