summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* gnu: Add gnuradio.Guillaume Le Vaillant2020-04-09
| | | | | | | * gnu/packages/ham-radio.scm (gnuradio): New variable. Co-authored-by: Danny Milosavljevic <dannym@scratchpost.org> Co-authored-by: Charlie Ritter <chewzerita@posteo.net>
* gnu: Add codec2.Guillaume Le Vaillant2020-04-09
| | | | * gnu/packages/audio.scm (codec2): New variable.
* gnu: Add python-click-plugins.Guillaume Le Vaillant2020-04-09
| | | | * gnu/packages/python-xyz.scm (python-click-plugins): New variable.
* gnu: Add python-titlecase.Christopher Lemmer Webber2020-04-10
| | | | | | * gnu/packages/python-xyz.scm (python-titlecase): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
* gnu: Add xfe.Raghav Gururajan2020-04-09
| | | | * gnu/packages/disk.scm (xfe): New variable.
* gnu: Add fox.Raghav Gururajan2020-04-09
| | | | * gnu/packages/graphics.scm (fox): New variable.
* gnu: nano: Update to 4.9.2.Efraim Flashner2020-04-09
| | | | * gnu/packages/nano.scm (nano): Update to 4.9.2.
* gnu: Remove python2-scikit-image.Marius Bakke2020-04-09
| | | | | | Some of the packages that this depends upon no longer supports Python 2. * gnu/packages/python-science.scm (python2-scikit-image): Remove variable.
* gnu: python-serpent: Declare python2 variant.Marius Bakke2020-04-09
| | | | | * gnu/packages/python-xyz.scm (python-serpent)[properties]: New field. (python2-serpent): New public variable.
* gnu: python-dask: Update to 2.14.0.Marius Bakke2020-04-09
| | | | * gnu/packages/python-xyz.scm (python-dask): Update to 2.14.0.
* gnu: python-cloudpickle: Update to 1.3.0.Marius Bakke2020-04-09
| | | | | | | | | * gnu/packages/python-xyz.scm (python-cloudpickle): Update to 1.3.0. [arguments]: Remove #:tests?. Add #:phases. [native-inputs]: Add PYTHON-PSUTIL. Remove PYTHON-MOCK. [properties]: New field. (python2-cloudpickle)[native-inputs]: New field. Preserve PYTHON2-MOCK. [propagated-inputs]: Add PYTHON2-FUTURES.
* gnu: python-datrie: Update to 0.8.2Marius Bakke2020-04-09
| | | | * gnu/packages/python-xyz.scm (python-datrie): Update to 0.8.2.
* gnu: minimap2: Fix cond expression for Guile 3 compatibility.Marius Bakke2020-04-09
| | | | | * gnu/packages/bioinformatics.scm (minimap2)[arguments]: Make the last COND test the symbol else instead of _.
* gnu: shellcheck: Update homepage.Jack Hill2020-04-09
| | | | | | * gnu/packages/haskell-apps.scm (shellcheck)[homepage]: Update URL. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
* gnu: mcomix: Update to 20200402.base-for-series-3486Pierre Neidhardt2020-04-09
| | | | * gnu/packages/image-viewers.scm (mcomix): Update to 20200402.
* installer: Include empty variant in keyboard layout selection.Florian Pelz2020-04-09
| | | | | | | | Previously for Azerbaijani, no Latin layout but only the Cyrillic variant could be selected. * gnu/installer/newt/keymap.scm (add-empty-variant): New procedure. (run-keymap-page): Use it to insert an empty variant.
* installer: Allow Alt+Shift toggle from non-Latin keyboard layouts.Florian Pelz2020-04-09
| | | | | | | | | | | | | | | | | Fixes <https://bugs.gnu.org/40493>. * gnu/installer/newt/keymap.scm (%non-latin-layouts): New variable. (%non-latin-variants): New variable. (%latin-layout+variants): New variable. (toggleable-latin-layout): New procedure to compute combined layouts. (run-keymap-page): Use it. (keyboard-layout->configuration): Apply it in config.scm. (run-layout-page): Mention Alt+Shift. * gnu/installer/keymap.scm (kmscon-update-keymap): Pass on XKB options. * gnu/installer/record.scm (<installer>): Adjust code comments. * gnu/installer.scm (apply-keymap): Pass on XKB options. (installer-steps): Adjust code comments. * gnu/packages/patches/kmscon-runtime-keymap-switch.patch: Apply XKB options.
* services/web: Fix ordering of default-nginx-config.Florian Pelz2020-04-08
| | | | | | | Fixes an error message '"load_module" directive is specified too late'. * gnu/services/web.scm (default-nginx-config): Emit load_module before global directives.
* gnu: cataclysm-dda: Update to 0.E.Nicolas Goaziou2020-04-09
| | | | * gnu/packages/games.scm (cataclysm-dda): Update to 0.E.
* gnu: linux-libre: Update to 5.4.31.Mark H Weaver2020-04-08
| | | | | * gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.31. (linux-libre-5.4-pristine-source): Update hash.
* gnu: linux-libre@5.6: Update to 5.6.3.Mark H Weaver2020-04-08
| | | | | * gnu/packages/linux.scm (linux-libre-5.6-version): Update to 5.6.3. (linux-libre-5.6-pristine-source): Update hash.
* news: Add ‘de’ translation.Florian Pelz2020-04-08
| | | | * etc/news.scm: Add a ‘de’ translation.
* download: Use correct system and guile in 'url-fetch/tarbomb' and ↵Diego Nicola Barbato2020-04-08
| | | | | | | | | | | | | | | | | | | | | | 'url-fetch/zipbomb'. Fixes <https://bugs.gnu.org/40115>. Previously the result of `guix build -s $system $package' would depend on the system Guix was built for if $package or one of its dependencies used 'url-fetch/tarbomb' or 'url-fetch/zipbomb' as the origin method of its source (e.g. `guix build -s i686-linux ffmpeg' on i686-linux would build a different derivation than on x86_64-linux). This patch fixes this by explicitly passing the correct system and guile to 'gexp->derivation'. * guix/download.scm (url-fetch/tarbomb): Pass #:system system and #:guile-for-build guile to 'gexp->derivation', where guile is the derivation of guile for system. (url-fetch/zipbomb): Likewise. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: openntpd: Don't use NAME in source URI.Tobias Geerinckx-Rice2020-04-08
| | | | * gnu/packages/ntp.scm (openntpd)[source]: Hard-code NAME.
* gnu: et: Update home page.Tobias Geerinckx-Rice2020-04-08
| | | | * gnu/packages/ssh.scm (et)[home-page]: Update.
* gnu: mosh: Tweak description.Tobias Geerinckx-Rice2020-04-08
| | | | | * gnu/packages/ssh.scm (mosh)[description]: Use full sentences and note that only the client may roam.
* gnu: Add chrony.Tobias Geerinckx-Rice2020-04-08
| | | | * gnu/packages/ntp.scm (chrony): New public variable.
* doc: Mention HTTP/HTTPS proxy in the system installation instructions.Ludovic Courtès2020-04-08
| | | | | * doc/guix.texi (Keyboard Layout and Networking and Partitioning): Mention 'herd set-http-proxy guix-daemon'.
* tests: Mark VM images as non-substitutable.Ludovic Courtès2020-04-08
| | | | | * gnu/tests/install.scm (run-install): Pass #:substitutable? to 'system-disk-image' and to 'gexp->derivation'.
* vm: Allow images to be marked as non-substitutable.Ludovic Courtès2020-04-08
| | | | | | | | * gnu/system/vm.scm (expression->derivation-in-linux-vm): Add #:substitutable? parameter. Pass it to 'gexp->derivation'. (qemu-image): Add #:substitutable? and pass it to 'expression->derivation-in-linux-vm'. (system-disk-image): Add #:substitutable? and pass it to 'qemu-image'.
* gnu: genimage: Update to 11.base-for-series-3476Vincent Legoll2020-04-08
| | | | | | | | * gnu/packages/genimage.scm (genimage): Update to 11, [arguments]: add a new test dump file to the patched ones because of missing /etc/passwd in build environment. Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
* installer: Add proxy support.Mathieu Othacehe2020-04-08
| | | | | | | | * gnu/installer/proxy.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add it. * po/guix/POTFILES.in: Add it. * gnu/installer/newt/parameters.scm (run-proxy-page): New procedure, (run-parameters-page): add the previous procedure to the parameters menu.
* installer: Turn help menu into parameters menu.Mathieu Othacehe2020-04-08
| | | | | | | | | | | * gnu/local.mk (INSTALLER_MODULES): Rename help.scm into parameters.scm. * po/guix/POTFILES.in: Ditto. * gnu/installer/record.scm (<installer>): Rename help-menu into parameter-menu and help-page into parameters-page. * gnu/installer/newt/parameters.scm: Renamed from help.scm. Update information messages. * gnu/installer/newt.scm: Update accordingly. * gnu/installer/newt/keymap.scm: Ditto.
* gnu: higan: Update description.Nicolas Goaziou2020-04-08
| | | | | * gnu/packages/emulators.scm (higan)[synopsis, description]: Update description.
* gnu: higan: Update to 110.Nicolas Goaziou2020-04-08
| | | | | | | | | | * gnu/packages/emulators.scm (higan): Update to 110. [source]: Switch to new repository. [inputs]: Add libxrandr, replace sdl with sdl2. [home-page]: Use new URL. [license]: Switch license. * gnu/packages/patches/higan-remove-march-native-flag.patch: Delete file. * gnu/local.mk: Reflect patch removal.
* gnu: Syncthing: Update to 1.4.1.Leo Famulari2020-04-07
| | | | * gnu/packages/syncthing.scm (syncthing): Update to 1.4.1.
* gnu: Add go-github-com-calmh-murmur3.Leo Famulari2020-04-07
| | | | | | | * gnu/packages/golang.scm (go-github-com-calmh-murmur3): New variable. (go-github-com-willf-bloom)[propagated-inputs]: Replace go-github-com-spaolacci-murmur3 with it. [arguments]: Patch the murmur3 import path in a new 'patch-import-path' phase.
* gnu: Go: Update to 1.13.9.Leo Famulari2020-04-07
| | | | * gnu/packages/golang.scm (go-1.13): Update to 1.13.9.
* maint: Cross-build GUILE-2.2/FIXED.Ludovic Courtès2020-04-08
| | | | | * etc/release-manifest.scm (%packages-to-cross-build): Replace "guile@2.2" with GUILE-2.2/FIXED.
* records: Have ABI check work well for cross-compilation.Ludovic Courtès2020-04-08
| | | | | | | Reported by Jan (janneke) Nieuwenhuizen <janneke@gnu.org>. * guix/records.scm (define-record-type*): Use 'target-most-positive-fixnum' on Guile 3 instead of 'most-positive-fixnum'.
* compile: Run the load phase within 'with-target'.Ludovic Courtès2020-04-08
| | | | | * guix/build/compile.scm (compile-files)[build]: Remove 'with-target'. Wrap body in 'with-target'.
* reconfigure: Correctly re-throw SRFI-34 exceptions on Guile 3.Ludovic Courtès2020-04-08
| | | | | | | | | | | | Previously, we'd just print an ugly backtrace when running on Guile 3 because the '%exception throw would not be caught anywhere. Reported by Arne Babenhauserheide <arne_bab@web.de> in <https://bugs.gnu.org/40496>. * guix/scripts/system/reconfigure.scm (install-bootloader-program): In 'catch' handler, match '%exception and use 'raise-exception' instead of 'throw' to rethrow in that case.
* Revert "Allow double-click select of URL in status"base-for-series-3466base-for-series-3465Marius Bakke2020-04-07
| | | | | | | As discussed on #guix, this should wait until 1.1.0 is branched off to avoid having to update translations. This reverts commit 9f1b787120b1b81abffaf0fa13fdbdf4cca39f2d.
* Allow double-click select of URL in statusTomZ2020-04-07
| | | | | | | | Various places while downloading or compiling guix prints the source URL. This change makes the URL easier to use by placing a space between the URL and the trailing dots. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
* gnu: gnurl: Update to 7.69.1.Marius Bakke2020-04-07
| | | | | * gnu/packages/gnunet.scm (gnurl): Update to 7.69.1. [source](uri): Switch to ".tar.gz" archive.
* gnu: Add tap-lv2.Alexandros Theodotou2020-04-07
| | | | | | * gnu/packages/music.scm (tap-lv2): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
* gnu: icecat: Update to 68.7.0-guix0-preview1 [security fixes].Mark H Weaver2020-04-07
| | | | | | | | | Includes fixes for CVE-2020-6821, CVE-2020-6822, CVE-2020-6825, CVE-2020-6827, and CVE-2020-6828. * gnu/packages/gnuzilla.scm (%icecat-version, %icecat-build-id): Update. (icecat-source): Update gnuzilla commit, base version, and hashes. * gnu/packages/patches/icecat-makeicecat.patch: Adapt to new version.
* gnu: emacs-beancount: Do not inherit inputs from beancount.Marius Bakke2020-04-07
| | | | * gnu/packages/finance.scm (emacs-beancount)[inputs, native-inputs]: New fields.
* gnu: beancount: pytest is a native input.Marius Bakke2020-04-07
| | | | | * gnu/packages/finance.scm (beancount)[inputs]: Move PYTHON-PYTEST ... [native-inputs]: ... here.
* gnu: beancount: Do not propagate inputs.Marius Bakke2020-04-07
| | | | | | * gnu/packages/finance.scm (beancount)[propagated-inputs]: Move everything from here ... [inputs]: ... to here.