Ludovic Courtès
d62c9b2671
Update NEWS.
2020-04-15 00:02:23 +02:00
Ludovic Courtès
8aa752ba22
services: shepherd: Increase the PID file timeout to 30s.
...
When running the installation image off a DVD, early I/O operations are
extremely slow, to the point that something like dbus-daemon would need
~20s to start. This change works around the issue.
Fixes <https://bugs.gnu.org/40572 >.
Reported by Florian Pelz <pelzflorian@pelzflorian.de >.
* gnu/services/shepherd.scm (shepherd-configuration-file): Set
%pid-file-timeout to 30.
2020-04-15 00:02:23 +02:00
Ludovic Courtès
bd4c345ef7
doc: Improve anchor collection.
...
This allows us to catch "operating_002dsystem-1", for instance.
* doc/build.scm (syntax-highlighted-html)[build](anchor-id->key): Drop
"-1" & co. from ID.
2020-04-14 16:01:53 +02:00
Ludovic Courtès
4487e42cba
doc: Avoid invalid 'match' pattern in 'syntax-highlighted-html'.
...
This is a followup to da9deba13d .
Last-minute modification of the 'match' pattern would lead to an error:
"multiple ellipsis patterns not allowed at same level"
* doc/build.scm (syntax-highlighted-html)[build](collect-anchors):
Add 'worthy-entry?' procedure and use it instead of the unsupported
pattern for ('dt ...).
2020-04-14 16:01:45 +02:00
Ludovic Courtès
f37789a523
doc: Emit hyperlinks in HTML output for @lisp snippets.
...
This makes it easier to jump to the definition of a procedure or
variable when looking at a code snippet. There can be false-positive
because scoping rules are ignored, for example, but it should be a good
approximation.
* doc/build.scm (syntax-highlighted-html)[build](highlights->sxml*): Add
'anchors' parameter. Add clause for ('symbol text).
(syntax-highlight): Add 'anchors' parameter. Wrap body in named let and
use it in recursive calls. Pass ANCHORS to 'highlights->sxml*'.
(underscore-decode, anchor-id->key, collect-anchors, html?): New procedures.
(process-file): Add 'anchors' parameter. and honor it.
Rewrite mono-node and multi-node HTML files separately.
2020-04-14 16:01:39 +02:00
Ludovic Courtès
1ae7a9251b
weather: Delete duplicate entries coming from '--manifest'.
...
* guix/scripts/weather.scm (load-manifest): Call 'delete-duplicates'.
2020-04-14 16:01:05 +02:00
Ludovic Courtès
bab1f340b3
maint: Ensure substitutes are available for '%default-xorg-modules'.
...
* etc/release-manifest.scm (%system-packages): Append
%DEFAULT-XORG-MODULES.
2020-04-14 16:01:05 +02:00
Ludovic Courtès
8e8d984fd6
maint: Actually check for the availablility of system packages.
...
* etc/release-manifest.scm (%system-manifest): New variable.
<top level>: Add it in 'concatenate-manifests' call.
2020-04-14 16:01:05 +02:00
Florian Pelz
0ad60b2a89
installer: Only load uvesafb kernel module when needed.
...
This is a follow-up to commit 557e6820a7 .
* gnu/system/install.scm (uvesafb-shepherd-service): Check
that /dev/fb0 is not already present.
2020-04-14 13:05:57 +00:00
Ludovic Courtès
2b29219370
nls: Update.
2020-04-14 13:01:58 +02:00
Ludovic Courtès
893651af3e
installer: Open manual in the selected language on tty2.
...
Fixes <https://bugs.gnu.org/40624 >.
Reported by Florian Pelz <pelzflorian@pelzflorian.de >.
Regression introduced in b5c2d93d7a .
* gnu/installer.scm (apply-locale): Remove 'lambda' around
'stop-service' and 'start-service' calls.
2020-04-14 13:01:58 +02:00
Florian Pelz
8e4d1493f1
services: kernel-module-loader: Clean up.
...
Suggested by Efraim Flashner <efraim@flashner.co.il >.
See <https://lists.gnu.org/archive/html/bug-guix/2020-04/msg00237.html >.
* gnu/services/linux.scm (kernel-module-loader-shepherd-service):
Remove unneeded 'respawn?' field.
2020-04-12 18:24:27 +00:00
Ludovic Courtès
6945c43754
Update NEWS.
2020-04-12 17:05:21 +02:00
Ludovic Courtès
2033cf19e6
gnu: guix: Update to 9d0d27f.
2020-04-12 03:33:13 +02:00
Ludovic Courtès
9d0d27fd88
gnu: guix: Update to 1.1.0rc2.
2020-04-12 00:38:43 +02:00
Ludovic Courtès
935ef44b39
nls: Update.
2020-04-12 00:18:05 +02:00
Ludovic Courtès
27a1e4fd10
build: Cap build parallelism on i686.
...
Works around <https://bugs.gnu.org/40522 >.
* build-aux/compile-all.scm (parallel-job-count*): New procedure.
<top level>: Use it instead of 'parallel-job-count'.
2020-04-12 00:00:59 +02:00
Ludovic Courtès
f4ec5e1a98
gnu: gdm: Don't offer GNOME when it's not in the system profile.
...
Fixes <https://bugs.gnu.org/37831 >.
Reported by Pierre Neidhardt <mail@ambrevar.xyz >.
* gnu/packages/patches/gdm-default-session.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/gnome.scm (gdm)[source]: Use it.
2020-04-11 23:58:49 +02:00
Florian Pelz
557e6820a7
installer: Load uvesafb kernel module.
...
Fixes <https://bugs.gnu.org/40538 >.
Machines without Kernel Mode Setting (those with many old and current AMD
GPUs, SiS GPUs, …) need uvesafb to show the GUI installer. Some may also need
a kernel parameter like nomodeset or vga=793, but we leave that for the user
to specify in GRUB.
* gnu/system/install.scm (uvesafb-shepherd-service): New procedure.
(uvesafb-service-type): New variable.
(%installation-services): Add it.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2020-04-11 22:59:35 +02:00
Ludovic Courtès
c635610bc6
tests: Run guided installation tests from an ISO image.
...
* gnu/tests/install.scm (guided-installation-test): Pass
#:installation-disk-image-file-system-type to 'run-install'.
2020-04-10 16:06:41 +02:00
Ludovic Courtès
66b53c2c72
installer: tests: Don't install to a CD/DVD.
...
* gnu/installer/tests.scm (choose-partitioning): Use 'find' to select
the disk.
2020-04-10 16:06:32 +02:00
Ludovic Courtès
74f01059cb
vm: 'system-disk-image' honors #:substitutable? for ISO9660 images.
...
This is a followup to a328f66a9e .
* gnu/system/vm.scm (iso9660-image): Add #:substitutable? and pass it to
'expression->derivation-in-linux-vm'.
(system-disk-image): Pass #:substitutable? to 'iso9660-image'.
2020-04-10 16:06:23 +02:00
Ludovic Courtès
abc33218f1
gnu: sdl-pango: Shorten file name of patch.
...
* gnu/packages/patches/sdl-pango-fix-explicit-SDLPango_CopyFTBitmapTo.patch:
Rename to...
* gnu/packages/patches/sdl-pango-header-guard.patch: ... this.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/sdl.scm (sdl-pango):
Likewise.
2020-04-10 16:06:14 +02:00
Ludovic Courtès
17edf577d5
gnu: akonadi: Shorten file name of patch.
...
This ensures we stay below the POSIX tar file name length limit.
* gnu/packages/patches/akonadi-Revert-Make-installation-properly-relo.patch:
Rename to...
* gnu/packages/patches/akonadi-not-relocatable.patch: ... this.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/kde-pim.scm (akonadi): Likewise.
2020-04-10 16:06:03 +02:00
Ludovic Courtès
18ffd2f968
gnu: binutils: Shorten file names of MinGW patches.
...
This ensures we stay below the POSIX tar file name length limit.
* gnu/packages/patches/binutils-mingw-w64-reproducible-import-libraries.patch:
Rename to...
* gnu/packages/patches/binutils-mingw-w64-deterministic.patch: ... this.
* gnu/packages/patches/binutils-mingw-w64-specify-timestamp.patch:
Rename to...
* gnu/packages/patches/binutils-mingw-w64-timestamp.patch: ... this.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/cross-base.scm (cross-binutils): Likewise.
2020-04-10 16:05:57 +02:00
Mathieu Othacehe
0bd7a6bad9
gnu: installer: Fix issue with "Esperanto" locale.
...
According to glibc manual, locale are under the following form:
language[_territory[.codeset]][@modifier]
The esperanto locale "epo" does not have a territory. Modify run-command to
take this into account.
Reported by Alex Sassmannshausen here:
https://lists.gnu.org/archive/html/guix-devel/2020-04/msg00192.html .
* gnu/installer/utils.scm (run-command): Handle locale without territory such
as "epo".
2020-04-10 16:05:38 +02:00
Tobias Geerinckx-Rice
2281a77a3c
gnu: xfce: Fix typo.
...
* gnu/packages/xfce.scm (xfce)[inputs]: Re-spell ‘tumlber’.
2020-04-10 16:05:30 +02:00
Tobias Geerinckx-Rice
325707fabe
services: gnome: Fix ‘gnome’ field name.
...
To match its own documentation & other similar services.
* gnu/services/desktop.scm (gnome-desktop-configuration)[gnome-package]:
Rename to…
[gnome]: …this.
2020-04-10 16:05:25 +02:00
Tobias Geerinckx-Rice
e830c2a8de
vm: Transparently compress iso9660 images.
...
* gnu/build/vm.scm (make-iso9660-image): Use the ‘--zisofs’ xorriso
filter at the highest compression settings for supported directories.
2020-04-10 16:05:19 +02:00
Ludovic Courtès
08b14ab20e
maint: 'release' targets runs ./bootstrap for new version string.
...
Reported by Vagrant Cascadian <vagrant@debian.org >.
* Makefile.am (dist-with-updated-version): New target.
(release): Depend on 'dist-with-updated-version'.
2020-04-10 12:26:21 +02:00
Vagrant Cascadian
eb0352e5b0
Add missing services/linux.scm to gnu/local.mk.
...
* gnu/local.mk (GNU_SYSTEM_MODULES): Add linux.scm.
2020-04-10 11:18:08 +02:00
Ludovic Courtès
f9adf35595
Update NEWS.
2020-04-09 22:56:56 +02:00
Ludovic Courtès
4fc2132741
gnu: qemu: Skip tests on i686-linux.
...
* gnu/packages/virtualization.scm (qemu)[arguments]: Add #:tests?.
2020-04-09 22:27:06 +02:00
Ludovic Courtès
98148830c0
maint: 'release' builds with '--fallback'.
...
* Makefile.am (guix-binary.%.tar.xz): Pass '--fallback' to 'guix pack'.
(release): Pass '--fallback' to 'guix build' and 'guix system'.
2020-04-09 16:32:38 +02:00
Ludovic Courtès
8b292ffd3c
maint: 'release' target no longer uses -K, to allow for offloading.
...
This is a followup to 2ce08a5d79 .
* Makefile.am (release): Remove -K flag.
2020-04-09 13:18:13 +02:00
Ludovic Courtès
808084e9d1
maint: Binary tarball uses "guile3.0-guix", not "guix".
...
* Makefile.am (GUIX_FOR_BINARY_TARBALL): New variable.
(guix-binary.%.tar.xz): Use $(GUIX_FOR_BINARY_TARBALL) instead of
"guix".
(release): Likewise.
2020-04-09 11:52:23 +02:00
Florian Pelz
7bc71025cc
installer: Include empty variant in keyboard layout selection.
...
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.
2020-04-09 03:45:22 +00:00
Florian Pelz
91c231a222
installer: Allow Alt+Shift toggle from non-Latin keyboard layouts.
...
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.
2020-04-09 02:42:54 +00:00
Florian Pelz
543516ed00
services/web: Fix ordering of default-nginx-config.
...
Fixes an error message '"load_module" directive is specified too late'.
* gnu/services/web.scm (default-nginx-config): Emit load_module before
global directives.
2020-04-08 23:12:32 +00:00
Nicolas Goaziou
b8f5b436ec
gnu: cataclysm-dda: Update to 0.E.
...
* gnu/packages/games.scm (cataclysm-dda): Update to 0.E.
2020-04-09 01:00:27 +02:00
Mark H Weaver
448e072555
gnu: linux-libre: Update to 5.4.31.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.31.
(linux-libre-5.4-pristine-source): Update hash.
2020-04-08 15:38:47 -04:00
Mark H Weaver
0d173f957a
gnu: linux-libre@5.6: Update to 5.6.3.
...
* gnu/packages/linux.scm (linux-libre-5.6-version): Update to 5.6.3.
(linux-libre-5.6-pristine-source): Update hash.
2020-04-08 15:37:49 -04:00
Florian Pelz
6ff3470fe5
news: Add ‘de’ translation.
...
* etc/news.scm: Add a ‘de’ translation.
2020-04-08 18:53:49 +00:00
Diego Nicola Barbato
c1d81df93d
download: Use correct system and guile in 'url-fetch/tarbomb' and '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 >
2020-04-08 19:35:34 +02:00
Tobias Geerinckx-Rice
198571b264
gnu: openntpd: Don't use NAME in source URI.
...
* gnu/packages/ntp.scm (openntpd)[source]: Hard-code NAME.
2020-04-08 17:05:51 +02:00
Tobias Geerinckx-Rice
23335e8d86
gnu: et: Update home page.
...
* gnu/packages/ssh.scm (et)[home-page]: Update.
2020-04-08 17:03:28 +02:00
Tobias Geerinckx-Rice
2ca12aee81
gnu: mosh: Tweak description.
...
* gnu/packages/ssh.scm (mosh)[description]: Use full sentences and note
that only the client may roam.
2020-04-08 15:20:39 +02:00
Tobias Geerinckx-Rice
9f12e06bb3
gnu: Add chrony.
...
* gnu/packages/ntp.scm (chrony): New public variable.
2020-04-08 14:42:29 +02:00
Ludovic Courtès
8c04471f24
doc: Mention HTTP/HTTPS proxy in the system installation instructions.
...
* doc/guix.texi (Keyboard Layout and Networking and Partitioning):
Mention 'herd set-http-proxy guix-daemon'.
2020-04-08 12:42:41 +02:00
Ludovic Courtès
9cfd889f1d
tests: Mark VM images as non-substitutable.
...
* gnu/tests/install.scm (run-install): Pass #:substitutable? to
'system-disk-image' and to 'gexp->derivation'.
2020-04-08 12:42:41 +02:00
Ludovic Courtès
a328f66a9e
vm: Allow images to be marked as non-substitutable.
...
* 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'.
2020-04-08 12:42:41 +02:00
Vincent Legoll
ba6f2bda18
gnu: genimage: Update to 11.
...
* 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 >
2020-04-08 11:30:55 +02:00
Mathieu Othacehe
ee0ad7803c
installer: Add proxy support.
...
* 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.
2020-04-08 10:24:02 +02:00
Mathieu Othacehe
07a53bd512
installer: Turn help menu into parameters menu.
...
* 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.
2020-04-08 10:24:02 +02:00
Nicolas Goaziou
6e2f7dc5e2
gnu: higan: Update description.
...
* gnu/packages/emulators.scm (higan)[synopsis, description]: Update
description.
2020-04-08 10:03:25 +02:00
Nicolas Goaziou
76cc11a0ed
gnu: higan: Update to 110.
...
* 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.
2020-04-08 09:56:59 +02:00
Leo Famulari
be54cbe690
gnu: Syncthing: Update to 1.4.1.
...
* gnu/packages/syncthing.scm (syncthing): Update to 1.4.1.
2020-04-07 22:04:34 -04:00
Leo Famulari
ea2dcf1664
gnu: Add go-github-com-calmh-murmur3.
...
* 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.
2020-04-07 22:04:34 -04:00
Leo Famulari
3868b2a799
gnu: Go: Update to 1.13.9.
...
* gnu/packages/golang.scm (go-1.13): Update to 1.13.9.
2020-04-07 22:04:30 -04:00
Ludovic Courtès
0eb799e669
maint: Cross-build GUILE-2.2/FIXED.
...
* etc/release-manifest.scm (%packages-to-cross-build): Replace
"guile@2.2" with GUILE-2.2/FIXED.
2020-04-08 00:05:46 +02:00
Ludovic Courtès
a05ad01122
records: Have ABI check work well for cross-compilation.
...
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'.
2020-04-08 00:05:45 +02:00
Ludovic Courtès
041c3c22dc
compile: Run the load phase within 'with-target'.
...
* guix/build/compile.scm (compile-files)[build]: Remove 'with-target'.
Wrap body in 'with-target'.
2020-04-08 00:05:45 +02:00
Ludovic Courtès
93add9bf7d
reconfigure: Correctly re-throw SRFI-34 exceptions on Guile 3.
...
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.
2020-04-08 00:05:45 +02:00
Marius Bakke
1c86577d62
Revert "Allow double-click select of URL in status"
...
As discussed on #guix, this should wait until 1.1.0 is branched off to avoid
having to update translations.
This reverts commit 9f1b787120 .
2020-04-07 22:09:14 +02:00
TomZ
9f1b787120
Allow double-click select of URL in status
...
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 >
2020-04-07 21:56:30 +02:00
Marius Bakke
55d4526411
gnu: gnurl: Update to 7.69.1.
...
* gnu/packages/gnunet.scm (gnurl): Update to 7.69.1.
[source](uri): Switch to ".tar.gz" archive.
2020-04-07 21:41:58 +02:00
Alexandros Theodotou
2aaf76582d
gnu: Add tap-lv2.
...
* gnu/packages/music.scm (tap-lv2): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-04-07 14:15:13 -04:00
Mark H Weaver
c87bb5a9bd
gnu: icecat: Update to 68.7.0-guix0-preview1 [security fixes].
...
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.
2020-04-07 13:46:59 -04:00
Marius Bakke
48cb64084a
gnu: emacs-beancount: Do not inherit inputs from beancount.
...
* gnu/packages/finance.scm (emacs-beancount)[inputs, native-inputs]: New fields.
2020-04-07 18:46:38 +02:00
Marius Bakke
74b992fb43
gnu: beancount: pytest is a native input.
...
* gnu/packages/finance.scm (beancount)[inputs]: Move PYTHON-PYTEST ...
[native-inputs]: ... here.
2020-04-07 18:46:38 +02:00
Marius Bakke
9afc618e1b
gnu: beancount: Do not propagate inputs.
...
* gnu/packages/finance.scm (beancount)[propagated-inputs]: Move everything
from here ...
[inputs]: ... to here.
2020-04-07 18:46:37 +02:00
Marius Bakke
805d70214a
gnu: emacs-beancount: Move to (gnu packages finance).
...
This is a fixup for commit abcac7a529 , as
inheritance across modules is not safe. Fixes <https://bugs.gnu.org/40488 >.
Reported by Christopher Baines <mail@cbaines.net >.
* gnu/packages/emacs-xyz.scm (emacs-beancount): Move from here ...
* gnu/packages/finance.scm: ... to here.
2020-04-07 18:46:37 +02:00
Efraim Flashner
68d8ec5770
gnu: Add python-ipython-cluster-helper.
...
* gnu/packages/python-xyz.scm (python-ipython-cluster-helper): New variable.
2020-04-07 19:22:22 +03:00
Efraim Flashner
0815350874
gnu: Add python-ipyparallel.
...
* gnu/packages/python-xyz.scm (python-ipyparallel): New variable.
2020-04-07 19:22:13 +03:00
Marius Bakke
9ac6d3785f
lint: 'm4' is a native input.
...
* guix/lint.scm (check-inputs-should-be-native): Add "m4".
2020-04-07 17:59:00 +02:00
Marius Bakke
5d9d9383ac
gnu: python-coveralls: Update to 1.11.1.
...
* gnu/packages/python-check.scm (python-coveralls): Update to 1.11.1.
[source]: Change to GIT-FETCH.
[arguments]: New field.
[propagated-inputs]: Remove PYTHON-SH and PYTHON-URLLIB3.
2020-04-07 17:59:00 +02:00
Nicolò Balzarotti
1e96e6ac8b
gnu: julia: Upgrade to 1.3.1.
...
* gnu/packages/julia.scm (libuv-julia): Upgrade to 2.0.0-1.35b1504.
(libunwind-julia): New variable.
(llvm-patch): Rename to ...
(julia-patch): ... this. Update to 1.3.1.
(llvm-julia): Adjust patch-set based on above change. Adjust indent.
(julia): Update to 1.3.1.
[source]: Add patch.
[arguments]: Adjust custom 'prepare-deps (llvm-patch): Rename to ...
(julia-patch): ... this. Update to 1.3.1.
(llvm-julia): Adjust patch-set based on above change.
(julia): Upgrade to 1.3.1.
[arguments]: Adjust custom 'prepare-deps phase based on changed inputs.
Remove most of 'hardcode-soname-map. Adjust 'fix-include-and-link-paths.
Add new 'fix-precompile phase. Adjust custom 'disable-broken-tests
phase. Add new 'make-wrapper phase. Adjust make-flags.
[inputs]: Add p7zip, mbedtls-apache, curl libssh2.
Remove openspecfun, fftw, fftwf, python2-virtualenv, rmath.
Replace libunwind with libunwind-julia, custom suitesparse with system
suitesparse, custom dsfmt with system dsfmt.
[native-search-paths]: Add JULIA_DEPOT_PATH.
* gnu/packages/patches/julia-SOURCE_DATE_EPOCH-mtime.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-04-07 17:31:58 +03:00
Efraim Flashner
46e8bc52c2
gnu: julia.scm: Fix indentaion.
...
* gnu/packages/julia.scm: Re-indent file.
2020-04-07 17:31:58 +03:00
Efraim Flashner
912b6ab01c
gnu: libgit2: Upgrade to 1.0.0.
...
* gnu/packages/version-control.scm (libgit2): Upgrade to 1.0.0.
[source]: Download using url-fetch.
[arguments]: Remove 'fix-pcre2-reference, 'make-git-checkout-writable
custom phases.
[home-page]: Update home-page.
2020-04-07 17:31:58 +03:00
Efraim Flashner
b94098af1e
gnu: sssd: Upgrade to 1.16.5.
...
* gnu/packages/sssd.scm (sssd): Upgrade to 1.16.5.
[source]: Use https.
2020-04-07 17:31:58 +03:00
Nicolò Balzarotti
158b8600c9
gnu: libgit2: Use system http-parser.
...
* gnu/packages/version-control.scm (libgit2)[source]: Update snippet.
[arguments]: Add configure-flag to use system http-parser.
[inputs]: Add http-parser.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-04-07 17:31:58 +03:00
Nicolò Balzarotti
633360e00e
gnu: http-parser: Add support for RFC 3986.
...
Fixes parsing of colon followed by empty port, allowed by RFC 3986
specifications. Fedora is applying it to system http-parser too.
* gnu/packages/web.scm (http-parser)[source]: Add patch from Fedora.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-04-07 17:31:58 +03:00
Nicolò Balzarotti
b60e2d480a
gnu: Add dsfmt.
...
* gnu/packages/maths.scm (dsfmt): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-04-07 17:31:55 +03:00
Ricardo Wurmus
5c08ae30ee
gnu: mumi: Update to 0.0.0-15.c85015d.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.0-15.c85015d.
2020-04-07 16:28:53 +02:00
Paul Garlick
68044c1634
gnu: Add perl-authen-dechpwd.
...
* gnu/packages/perl.scm (perl-authen-dechpwd): New variable.
2020-04-07 14:51:06 +01:00
Paul Garlick
18b46c5637
gnu: Add perl-data-integer.
...
* gnu/packages/perl.scm (perl-data-integer): New variable.
2020-04-07 14:51:05 +01:00
Paul Garlick
c3dbbd82f0
gnu: Add perl-digest-crc.
...
* gnu/packages/perl.scm (perl-digest-crc): New variable.
2020-04-07 14:51:04 +01:00
Paul Garlick
6482c3e358
gnu: Add perl-scalar-string.
...
* gnu/packages/perl.scm (perl-scalar-string): New variable.
2020-04-07 14:50:28 +01:00
Ricardo Wurmus
5bd109b811
gnu: mumi: Update to 0.0.0-14.ab53797.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.0-14.ab53797.
2020-04-07 15:30:05 +02:00
Naga Malleswari
c0bff513a4
gnu: libxfce4util: Update to 4.15.0.
...
* gnu/packages/xfce.scm (libxfce4util): Update to 4.15.0.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-07 14:19:02 +02:00
Andreas Enge
11abc24a03
gnu: gp2c: Update to 0.0.11pl3.
...
* gnu/packages/algebra.scm (gp2c): Update to 0.0.11pl3.
2020-04-07 14:01:38 +02:00
Andreas Enge
bf82d83c60
gnu: pari-gp: Update to 2.11.3.
...
* gnu/packages/algebra.scm (pari-gp): Update to 2.11.3.
2020-04-07 14:01:38 +02:00
Nicolas Goaziou
58ee99fcb2
gnu: mame: Update to 0.220.
...
* gnu/packages/emulators.scm (mame): Update to 0.220.
2020-04-07 13:47:39 +02:00
Ludovic Courtès
3302e03ba0
services: guix: Add 'set-http-proxy' action.
...
Fixes <https://bugs.gnu.org/25569 >.
Reported by Divan Santana <divan@santanas.co.za >.
* gnu/services/base.scm (shepherd-set-http-proxy-action): New procedure.
(guix-shepherd-service): Add 'actions' field. Change 'start' to a
lambda; check the value of the "http_proxy" environment variable and
add "http_proxy" and "https_proxy" to #:environment-variables as a
function of that.
* gnu/tests/base.scm (run-basic-test)["guix-daemon set-http-proxy
action", "guix-daemon set-http-proxy action, clear"]: New tests.
* doc/guix.texi (Base Services): Document it.
2020-04-07 12:31:36 +02:00
Ludovic Courtès
1e6fe44da8
maint: Remove GCC from the packages to cross-build.
...
* etc/release-manifest.scm (%packages-to-cross-build): Remove GCC.
2020-04-07 12:31:36 +02:00
Ludovic Courtès
e2385584db
installer: Reduce height of the help window.
...
* gnu/installer/newt/help.scm (run-help-page): Pass #:listbox-height.
2020-04-07 12:31:36 +02:00
Ludovic Courtès
8f41f19236
ci: Remove "mips64el-linux-gnuabi64" from '%cross-targets'.
...
The N64 ABI has always been a niche, it seems.
* gnu/ci.scm (%cross-targets): Remove "mips64el-linux-gnuabi64".
2020-04-07 12:31:36 +02:00
Nicolas Goaziou
f785d1b890
gnu: thinkfan: Update to 1.1.
...
* gnu/packages/linux.scm (thinkfan): Update to 1.1.
2020-04-07 11:24:01 +02:00
Nicolas Goaziou
aad5c9ceca
gnu: emacs-org-superstar: Update to 1.1.0.
...
* gnu/packages/emacs-xyz.scm (emacs-org-superstar): Update to 1.1.0.
2020-04-07 11:07:31 +02:00
Nicolas Goaziou
2d0cfa71ab
gnu: Add emacs-ctrlf.
...
* gnu/packages/emacs-xyz.scm (emacs-ctrlf): New variable.
2020-04-07 10:59:59 +02:00
Nicolas Goaziou
a6986961de
gnu: emacs-prescient: Update to 4.1.
...
* gnu/packages/emacs-xyz.scm (emacs-prescient): Update to 4.1.
[propagated-inputs]: Add emacs-selectrum.
[license]: Fix field.
2020-04-07 10:59:59 +02:00
Nicolas Goaziou
1c17e087c2
gnu: Add emacs-selectrum.
...
* gnu/packages/emacs-xyz.scm (emacs-selectrum): New variable.
2020-04-07 10:59:59 +02:00
Pierre Neidhardt
1d05da03ee
gnu: sbcl: Update to 2.0.3.
...
* gnu/packages/lisp.scm (sbcl): Update to 2.0.3.
2020-04-07 10:29:43 +02:00
Ludovic Courtès
d7113bb655
services: syslog: Create log files as non-world-readable.
...
Partly fixes <https://bugs.gnu.org/40405 >.
Reported by Diego Nicola Barbato <dnbarbato@posteo.de >.
* gnu/services/base.scm (syslog-service-type): Change 'start' method to
set umask to #o137 before spawning syslogd.
* gnu/tests/base.scm (run-basic-test)["/var/log/messages is not
world-readable"]: New test.
2020-04-06 23:56:24 +02:00
Ludovic Courtès
42a87136f0
channels: Call 'build-self.scm' procedure with a trivial build handler.
...
Previously, "TESTS=installed-os guix build -m etc/system-tests.scm"
would repeat the "Computing Guix derivation" phase ~5 times due to the
fact that there were several call paths, within a build-accumulator,
leading to (package-derivation store guix).
* guix/channels.scm (with-trivial-build-handler): New procedure.
(build-from-source): Wrap 'build' call in 'with-trivial-build-handler'.
2020-04-06 23:56:24 +02:00
Jakub Kądziołka
a4c4aaff9e
gnu: rust-bumpalo-3: Update to 3.2.1 [fixes RUSTSEC-2020-0006].
...
* gnu/packages/crates-io.scm (rust-bumpalo-3): Update to 3.2.1.
Note: rust-bumpalo-2.5 is not affected.
2020-04-06 22:56:11 +02:00
Leo Famulari
a270af317d
gnu: GnuTLS: Fix CVE-2020-11501.
...
* gnu/packages/tls.scm (gnutls)[replacement]: New field.
(gnutls-3.6.13): New variable.
(gnutls/guile-2.0, gnutls/dane, gnutls-3.6.10, gnutls3.0-gnutls): Use
PACKAGE/INHERIT.
2020-04-06 14:51:44 -04:00
Carl Dong
b066c25026
gnu: Move PACKAGES-WITH-*PATCHES to (guix packages)
...
* gnu/packages/cross-base.scm (package-with-extra-patches,
package-with-patches): Move procedures from here...
* guix/packages.scm (package-with-extra-patches, package-with-patches):
...to here, and export.
2020-04-06 14:02:42 -04:00
John D. Boy
8a4608b4bf
gnu: fossil: Update to 2.10.
...
* gnu/packages/version-control.scm (fossil): Update to 2.10.
[source]: Remove obsolete alternate URL.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-04-06 12:34:59 -04:00
Leo Famulari
336d7644b3
gnu: Add wireguard-linux-compat.
...
* gnu/packages/vpn.scm (wireguard-linux-compat): New variable.
(wireguard): Deprecate in favor of wireguard-tools.
2020-04-06 12:19:28 -04:00
Michael Rohleder
1ba85062c2
* gnu: emacs-elisp-demos: Update to 2020.02.19
...
* gnu/packages/emacs-xyz.scm (emacs-elisp-demos) Update to 2020.02.19.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-04-06 17:13:26 +03:00
Mathieu Othacehe
b5c2d93d7a
installer: Hide shepherd messages.
...
* gnu/installer.scm (apply-locale): Set "shepherd-message-port" instead of
redirecting stderr to make sure that nothing is printed on console.
2020-04-06 15:06:03 +02:00
Mathieu Othacehe
d52111450a
installer: Adapt to Guile-newt revision 2.
...
* gnu/installer/newt/page.scm (run-input-page): Remove component argument that
is not longer passed to the procedure passed to 'add-component-callback',
(run-listbox-selection-page): ditto.
* gnu/installer/newt/user.scm (run-user-add-page): Ditto,
(run-user-add-page): ditto.
2020-04-06 15:06:03 +02:00
Mathieu Othacehe
786c9c39bc
installer: Add a help page.
...
* gnu/installer/newt/help.scm: New file.
* gnu/local.mk (INSTALLER_MODULES): Add it.
* po/guix/POTFILES.in: Add it.
* gnu/installer/record.scm (<installer>): Add 'help-menu' and 'help-page'
fields,
(installer-help-menu, installer-help-page): new exported procedures.
* gnu/installer/newt.scm (init): Set the help line,
(help-menu, help-page): new procedures used ...
(newt-installer): ... here.
* gnu/installer/newt/keymap.scm (run-layout-page): Add a context argument to
differenciate the help context from the main one,
(run-keymap-page): add a context argument and pass it to run-layout-page.
* gnu/installer.scm (compute-keymap-step): Add a context argument and pass it
to 'installer-keymap-page',
(installer-steps): set the help menu and pass the appropriate context to
compute-keymap-step calls,
(guile-newt): update to revision 2.
2020-04-06 15:06:03 +02:00
Mathieu Othacehe
a274bba2f9
installer: Remove trailing tabs.
...
* gnu/installer.scm (installer-steps): Remove trailing tabs.
2020-04-06 15:06:03 +02:00
Jakub Kądziołka
af03dccea1
gnu: rgbds: Update to 0.4.0.
...
* gnu/packages/assembly.scm (rgbds): Update to 0.4.0
2020-04-06 14:39:37 +02:00
Ricardo Wurmus
00e075def4
gnu: mumi: Update to 0.0.0-13.1fee105.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.0-13.1fee105.
2020-04-06 13:47:36 +02:00
Ludovic Courtès
1a6f09d01b
news: Add entry for 'rottlog-service-type'.
...
* etc/news.scm: Add entry for 'rottlog-service-type'.
2020-04-06 12:08:14 +02:00
Ludovic Courtès
0468455e7d
services: Add 'rottlog-service-type' to '%base-services'.
...
* gnu/services/base.scm (%base-services): Add an instance of
ROTTLOG-SERVICE-TYPE.
* doc/guix.texi (Log Rotation): Mention that it's part of
%BASE-SERVICES and change example.
2020-04-06 12:07:49 +02:00
Ludovic Courtès
11dee1bb8f
build-self: Avoid call to 'show-what-to-build*' on modern Guix.
...
This avoids repeated "will be downloaded" messages for
'compute-guix-derivation' and its dependencies.
* build-aux/build-self.scm (build): Don't call 'show-what-to-build*'
when 'with-build-handler' is defined.
2020-04-06 12:07:49 +02:00
Ludovic Courtès
d636e54c27
doc: Make 'fc-cache -rv' instructions more prominent.
...
* doc/guix.texi (Application Setup): Move the "fc-cache" instructions
next to the Fontconfig paragraph and make the command more visible.
2020-04-06 12:07:49 +02:00
Ludovic Courtès
a841f81847
build: Add linphone.scm to gnu/local.mk.
...
This is a followup to d5a8e391ac .
* gnu/local.mk (GNU_SYSTEM_MODULES): Add linphone.scm.
2020-04-06 12:07:48 +02:00
Ricardo Wurmus
0e8564f8f0
services/web: Add missing ungexp for mumi shepherd services.
...
This is a follow-up to commit f00f52a1fb .
* gnu/services/web.scm (mumi-shepherd-services): Ungexp variables.
2020-04-06 09:44:04 +02:00
Ricardo Wurmus
6ef1fc8da3
services/web: Add default values to all mumi-configuration fields.
...
This is a follow-up to commit f00f52a1fb .
* gnu/services/web.scm (<mumi-configuration>)[sender,smtp]: Add default
values.
2020-04-06 08:55:13 +02:00
Ricardo Wurmus
f00f52a1fb
gnu: mumi: Update to 0.0.0-12.bb2fe92.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.0-12.bb2fe92.
[inputs]: Add guile-gcrypt, guile-redis, guile-webutils, mailutils.
* gnu/services/web.scm (<mumi-configuration>): New record type.
(mumi-configuration, mumi-configuration?, mumi-configuration-mumi,
mumi-configuration-mailer?, mumi-configuration-sender,
mumi-configuration-smtp): New procedures.
(mumi-shepherd-services): Accept configuration; adjust start commands; add
Shepherd service for mumi mailer.
(mumi-service-type): Pass default configuration.
* doc/guix.texi (Web Services): Update documentation.
2020-04-06 08:40:50 +02:00
Ricardo Wurmus
a71d335832
gnu: guile-for-guile-emacs: Update to 2.1.2-1.15ca784.
...
* gnu/packages/guile.scm (guile-for-guile-emacs): Update to 2.1.2-1.15ca784.
[source]: Fetch from Guile upstream repository.
[arguments]: Enable tests; replace 'bootstrap phase; disable only broken
tests.
[native-search-paths]: Inherit from guile-2.2.
2020-04-06 08:40:50 +02:00
Ricardo Wurmus
1d2e270e3e
gnu: r-snowballc: Update to 0.7.0.
...
* gnu/packages/cran.scm (r-snowballc): Update to 0.7.0.
2020-04-06 08:40:50 +02:00
Ricardo Wurmus
fdc9377775
gnu: r-huge: Update to 1.3.4.1.
...
* gnu/packages/cran.scm (r-huge): Update to 1.3.4.1.
2020-04-06 08:40:50 +02:00
Ricardo Wurmus
b61e6cf3d4
gnu: r-tidytree: Update to 0.3.3.
...
* gnu/packages/cran.scm (r-tidytree): Update to 0.3.3.
2020-04-06 08:40:50 +02:00
Ricardo Wurmus
a3202c7f57
gnu: r-ggstance: Update to 0.3.4.
...
* gnu/packages/cran.scm (r-ggstance): Update to 0.3.4.
2020-04-06 08:40:50 +02:00
Ricardo Wurmus
cded01f52d
gnu: r-factoextra: Update to 1.0.7.
...
* gnu/packages/cran.scm (r-factoextra): Update to 1.0.7.
2020-04-06 08:40:49 +02:00
Ricardo Wurmus
0df1844afa
gnu: r-reticulate: Update to 1.15.
...
* gnu/packages/cran.scm (r-reticulate): Update to 1.15.
[native-inputs]: Add r-knitr.
2020-04-06 08:40:49 +02:00
Ricardo Wurmus
c3a0a8a1b3
gnu: r-vcd: Update to 1.4-7.
...
* gnu/packages/cran.scm (r-vcd): Update to 1.4-7.
2020-04-06 08:40:49 +02:00
Ricardo Wurmus
83ba1c19c5
gnu: r-sn: Update to 1.6-1.
...
* gnu/packages/statistics.scm (r-sn): Update to 1.6-1.
2020-04-06 08:40:49 +02:00
Ricardo Wurmus
7a04149e3e
gnu: r-quantreg: Update to 5.55.
...
* gnu/packages/statistics.scm (r-quantreg): Update to 5.55.
2020-04-06 08:40:49 +02:00
Ricardo Wurmus
ad9b4a696e
gnu: r-xml2: Update to 1.3.0.
...
* gnu/packages/statistics.scm (r-xml2): Update to 1.3.0.
[propagated-inputs]: Remove r-rcpp.
2020-04-06 08:40:49 +02:00
Ricardo Wurmus
ffbab0788e
gnu: r-lattice: Update to 0.20-41.
...
* gnu/packages/statistics.scm (r-lattice): Update to 0.20-41.
2020-04-06 08:40:49 +02:00
Maxim Cournoyer
b6b07568c8
gnu: gsm: Add a newline to the fPIC option substitute replacement.
...
* gnu/packages/audio.scm (gsm): Add a trailing newline to the replacement
text. This makes it more robust in the face of future changes.
2020-04-05 22:55:31 -04:00
Maxim Cournoyer
fe6ccb8552
gnu: mediastreamer2: Move the tester files and HTML doc to separate outputs.
...
The tester binary generated gets installed with about 20 MiB of data files,
and the HTML documentation weighs another 500 KiB or so. Move them to
separate outputs.
* gnu/packages/patches/mediastreamer-srtp2.patch: Rename to...
* gnu/packages/patches/mediastreamer2-srtp2.patch: ...this, to please 'guix
lint'.
* gnu/local.mk (dist_patch_DATA): Adapt.
* gnu/packages/linphone.scm (mediastreamer2)[patches]: Likewise.
[outputs]: Add the "doc" and "tester" outputs.
[phases]: Add a phase to move the HTML doc and tester binary and data to the
'doc' and 'tester' outputs, respectively.
[description]: Remove the unicode characters surrounding the word 'powerful'.
2020-04-05 22:49:23 -04:00
Vagrant Cascadian
6978df6abb
gnu: linux-libre-arm*-generic*: Enable RTC for rockchip platforms.
...
* gnu/packages/linux (linux-libre-arm-generic, linux-libre-arm-generic-5.6,
linux-libre-arm64-generic, linux-libre-arm64-generic-5.6): Enable
RTC_DRV_RK808 as a built-in in kernel configuration.
2020-04-05 17:54:53 -07:00
Nicolas Goaziou
e3a617feac
gnu: ogre: Update to 1.12.5.
...
* gnu/packages/graphics.scm (ogre): Update to 1.12.5.
[source]: Add recursive? flag.
[arguments]: Update configure flags. Add a phase to fix CMakeLists.txt. Remove
unnecessary substitution.
[native-inputs]: Replace googletest with googletest-1.8.
[inputs]: Add pugixml.
2020-04-06 02:30:16 +02:00
Raghav Gururajan
2c56aeaea9
gnu: mediastreamer2: Enable SRTP2.
...
* gnu/packages/patches/mediastreamer-srtp2.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/linphone.scm (mediastreamer2)[source]: Use it.
2020-04-06 02:13:41 +02:00
Raghav Gururajan
b892016955
gnu: Add msamr.
...
* gnu/packages/linphone (msamr): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-06 01:58:20 +02:00
Raghav Gururajan
62e9f00ce2
gnu: Add vo-amrwbenc.
...
* gnu/packages/audio.scm (vo-amrwbenc): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-06 01:48:00 +02:00
Raghav Gururajan
d5fc851889
gnu: Add opencore-amr.
...
* gnu/packages/audio.scm (opencore-amr): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-06 01:27:15 +02:00
Raghav Gururajan
fe8f1c0b19
gnu: Add mswebrtc.
...
* gnu/packages/linphone.scm (mswebrtc): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-06 01:05:43 +02:00
Raghav Gururajan
f689d3d7d9
gnu: Add mssilk.
...
* gnu/packages/linphone.scm (mssilk): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-06 01:05:43 +02:00
Raghav Gururajan
14e73f8f18
gnu: Add msopenh264.
...
* gnu/packages/linphone.scm (msopenh264): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-06 01:05:42 +02:00
Ludovic Courtès
2729cb406d
system: Allow for comma-separated keyboard layouts.
...
Reported by Florian Pelz <pelzflorian@pelzflorian.de >.
* gnu/bootloader/grub.scm (keyboard-layout-file): Replace commas with
hyphens in the first argument to 'computed-file'.
* gnu/system/keyboard.scm (keyboard-layout->console-keymap): Likewise.
* doc/guix.texi (Keyboard Layout): Add example.
2020-04-06 00:14:13 +02:00
Vincent Legoll
f4783d77ed
gnu: vmpk: Make some inputs native.
...
* gnu/packages/music.scm (vmpk)[inputs]: Move qttools from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 23:52:35 +02:00
Vincent Legoll
8b39565ca3
gnu: synthv1: Make some inputs native.
...
* gnu/packages/music.scm (synthv1)[inputs]: Move qttools from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 23:52:34 +02:00
Vincent Legoll
3496519f18
gnu: kxmlgui: Make some inputs native.
...
* gnu/packages/kde-framework.scm (kxmlgui)[inputs]: Move qttools from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 23:52:33 +02:00
Vincent Legoll
1bb2ec7edc
gnu: kplotting: Make some inputs native.
...
* gnu/packages/kde-framework.scm (kplotting)[inputs]: Move qttools from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 23:47:48 +02:00
Vincent Legoll
ecd3237ca8
gnu: kio: Make some inputs native.
...
* gnu/packages/kde-frameworks.scm (kio)[inputs]: Move qttools from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 23:47:47 +02:00
Vincent Legoll
36d5d8a143
gnu: kiconthemes: Make some inputs native.
...
* gnu/packages/kde-frameworks.scm (kiconthemes)[inputs]: Move qttools from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 23:47:46 +02:00
Vincent Legoll
30dde2c508
gnu: kdewebkit: Make some inputs native.
...
* gnu/packages/kde-framework.scm (kdewebkit)[inputs]: Move qttools from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 23:47:45 +02:00
Vincent Legoll
957e0be35f
gnu: itk-snap: Make some inputs native.
...
* gnu/packages/image-processing.scm (itk-snap)[inputs]: Move qttools from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 23:47:44 +02:00
Vincent Legoll
859e042a70
gnu: gpsbabel: Make some inputs native.
...
* gnu/packages/gps.scm (gpsbabel)[inputs]: Move qttools from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 23:47:43 +02:00
Vincent Legoll
391d12ff81
gnu: alsa-modular-synth: Make some inputs native.
...
* gnu/packages/audio.scm (alsa-modular-synth)[inputs]: Move qttools from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 23:47:41 +02:00
Danny Milosavljevic
02b32cdda6
gnu: liblinphone: Add features.
...
* gnu/packages/linphone.scm (liblinphone)[arguments]<#:configure-flags>: Add features.
<#:phases>[patch]: New phase.
[inputs]: Add glib, gtk2, notify.
[propagated-inputs]: Add murrine.
2020-04-05 22:03:25 +02:00
Raghav Gururajan
9732910dd3
gnu: Add liblinphone.
...
* gnu/packages/linphone.scm (liblinphone): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 21:51:32 +02:00
Raghav Gururajan
b6b3a6a6c4
gnu: Add mediastreamer2.
...
* gnu/packages/linphone.scm (mediastreamer2): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 21:38:00 +02:00
Raghav Gururajan
e7859da113
gnu: Add belle-sip.
...
* gnu/packages/linphone.scm (belle-sip): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 21:03:38 +02:00
Danny Milosavljevic
74a6588573
gnu: mm-common: Make coreutils and sed native-inputs.
...
* gnu/packages/gnome.scm (mm-common)[inputs]: Remove coreutils, sed.
[native-inputs]: Add coreutils, sed.
2020-04-05 20:58:03 +02:00
Raghav Gururajan
4e8bdbf853
gnu: Add mm-common.
...
* gnu/packages/gnome.scm (mm-common): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 20:55:31 +02:00
Jakub Kądziołka
7fe746e071
gnu: python-intervaltree: Update to 3.0.2.
...
* gnu/packages/bioinformatics.scm (python-intervaltree): Update to 3.0.2.
[arguments]: Don't skip the tests, work around the problematic
sanity-check instead.
2020-04-05 20:43:17 +02:00
Vagrant Cascadian
b3b33da070
gnu: linux-libre: Remove 5.6.
...
The corresponding kernel config files are not yet updated, so remove
linux-libre-5.6 until they can be reviewed. See bug #40190 .
* gnu/packages/linux (linux-libre-5.6): Delete variable.
2020-04-05 11:39:32 -07:00
Raghav Gururajan
5e16e4401f
gnu: gsm: Update to 1.0.19.
...
* gnu/packages/audio.scm (gsm): Update to 1.0.19.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2020-04-05 14:16:14 -04:00
Maxim Cournoyer
5b05f8e965
gnu: gsm: Fix installation directory.
...
This is a follow-up commit to 74c7f367da , which broke the installation of the
bin, lib and share artifacts.
* gnu/packages/audio.scm (gsm)[make-flags]: Programmatically build the
INSTALL_ROOT make flag so that the %output variable gets properly expanded.
Instead of repeating the default CCFLAGS values as a make flag...
[phases]: ...add "-fPIC" using substitutes* in a new add-fpic-ccflag phase.
2020-04-05 14:16:14 -04:00
R Veera Kumar
95b800e67c
gnu: Add mtpaint.
...
* gnu/packages/image.scm (mtpaint): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 19:44:45 +02:00
Vincent Legoll
223e920abc
gnu: xfce4-places-plugin: Make some inputs native.
...
* gnu/packages/xfce.scm (xfce4-places-plugin)[inputs]: Move desktop-files-utils from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 18:23:19 +02:00
Vincent Legoll
3a3d5e36b8
gnu: spacefm: Make some inputs native.
...
* gnu/packages/lxde.scm (spacefm)[inputs]: Move desktop-files-utils from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 18:23:15 +02:00
Vincent Legoll
a8564071d7
gnu: ristretto: Make some inputs native.
...
* gnu/packages/xfce.scm (ristretto)[inputs]: Move desktop-files-utils from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 18:23:11 +02:00
Vincent Legoll
465734ba86
gnu: pcb: Make some inputs native.
...
* gnu/packages/engineering.scm (pcb)[inputs]: Move desktop-files-utils from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 18:23:07 +02:00
Vincent Legoll
a34564439d
gnu: mate: Make some inputs native.
...
* gnu/packages/mate.scm (mate)[inputs]: Move desktop-files-utils from here...
[native-inputs]: ...to this new field.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 18:22:59 +02:00
Vincent Legoll
91f92fc2c7
gnu: lepton-eda: Make some inputs native.
...
* gnu/packages/engineering.scm (lepton-eda)[inputs]: Move desktop-files-utils from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 18:22:56 +02:00
Vincent Legoll
9abc586391
gnu: gerbv: Make some inputs native.
...
* gnu/packages/engineering.scm (gerbv)[inputs]: Move desktop-files-utils from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 18:22:53 +02:00
Vincent Legoll
0b43ecb06e
gnu: geda-gaf: Make some inputs native.
...
* gnu/packages/engineering.scm (geda-gaf)[inputs]: Move desktop-files-utils from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 18:22:49 +02:00
Vincent Legoll
2f09526165
gnu: aegisub: Make some inputs native.
...
* gnu/packages/video.scm (aegisub)[inputs]: Move desktop-files-utils from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 18:22:03 +02:00
Guillaume Le Vaillant
d284d89a89
gnu: astronomy: Sort list of imported package modules.
...
* gnu/packages/astronomy.scm (astronomy): Sort list of imported packages.
2020-04-05 15:26:04 +02:00
Guillaume Le Vaillant
a19d63e8f4
gnu: Add gpredict.
...
* gnu/packages/astronomy.scm (gpredict): New variable.
2020-04-05 15:26:04 +02:00
Guillaume Le Vaillant
6eee2f7b9a
gnu: Add goocanvas.
...
* gnu/packages/gtk.scm (goocanvas): New variable.
2020-04-05 15:26:04 +02:00
Pierre Neidhardt
4391fefc5e
gnu: gnome-weather: Work around desktop application startup failure.
...
* gnu/packages/gnome.scm (gnome-weather)[arguments]: Replace Exec= line with
gnome-weather.
2020-04-05 14:58:25 +02:00
Brice Waegeneire
044d1478c9
gnu: Add kernel-module-loader-service.
...
* doc/guix.texi (Linux Services): Add a new subsection and document the
new service and its configuration.
* gnu/services/linux.scm (kernel-module-loader-service-type): New type.
(kernel-module-loader-shepherd-service): New procedure.
* gnu/tests/linux-modules.scm (module-loader-program): Procedure
removed.
(modules-loaded?-program): New procedure.
(run-loadable-kernel-modules-test): 'module-loader-program' procedure
replaced by the new one.
[os]: Use 'kernel-module-loader-service'.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 13:07:13 +02:00
Brice Waegeneire
8c88e24229
services: Allow modprobe to use "/etc/modprobe.d".
...
* gnu/services.scm (%modprobe-wrapper): Set 'MODPROBE_OPTIONS'
environment variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-05 12:12:07 +02:00
Alexandros Theodotou
50c5b68279
gnu: geonkick: Update to 1.10.0.
...
* gnu/packages/music.scm (geonkick): Update to 1.10.0.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-04-05 11:12:45 +02:00
Alexandros Theodotou
4656c95c06
gnu: redkite: Update to 0.8.0.
...
* gnu/packages/audio.scm (redkite): Update to 0.8.0.
2020-04-05 10:59:16 +02:00
Alexandros Theodotou
95856a6e02
gnu: Add jsonrpc-glib.
...
* gnu/packages/gnome.scm: (jsonrpc-glib) New variable.
2020-04-05 10:59:13 +02:00
Alexandros Theodotou
37084435d3
gnu: zrythm: Update to 0.8.200.
...
* gnu/packages/music.scm (zrythm): Update to 0.8.200,
[inputs]: add guile.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-04-05 10:37:09 +02:00
Joseph LaFreniere
bdea16a8e6
gnu: Add emacs-highlight-indent-guides.
...
* gnu/packages/emacs-xyz.scm (emacs-highlight-indent-guides): New variable.
2020-04-05 10:21:03 +02:00
Joseph LaFreniere
a24744bd0a
gnu: Add emacs-form-feed.
...
* gnu/packages/emacs-xyz.scm (emacs-form-feed): New variable.
2020-04-05 10:19:28 +02:00
Efraim Flashner
fb0aa4eb6c
gnu: Add tuir.
...
* gnu/packages/syndication.scm (tuir): New variable.
2020-04-05 09:42:43 +03:00
Maxim Cournoyer
74c7f367da
gsm: Add the -fPIC compiler option.
...
This is necessary for building mediastream2 (a dependency of Linphone).
* gnu/packages/audio.scm (gsm): Add the default CCFLAGS as a make flag, and
prepend -fPIC to these. Pass INSTALL_ROOT as a make flag as well, which
removes the need to use substitute* in a phase.
2020-04-05 01:15:45 -04:00
R Veera Kumar
77704cb13e
gnu: Add xplanet.
...
* gnu/packages/patches/xplanet-1.3.1-cxx11-eof.patch,
gnu/packages/patches/xplanet-1.3.1-libdisplay_DisplayOutput.cpp.patch,
gnu/packages/patches/xplanet-1.3.1-libimage_gif.c.patch,
gnu/packages/patches/xplanet-1.3.1-xpUtil-Add2017LeapSecond.cpp.patch: New
files.
* gnu/packages/astronomy.scm (xplanet): New variable.
[source]: Use patches.
* gnu/local.mk (dist_patch_DATA): Add them.
Signed-off-by: Eric Bavier <bavier@member.fsf.org >
2020-04-04 23:17:55 -05:00
Maxim Cournoyer
084d156563
gnu: nfs-utils: Fix the shebangs of the Python based tools.
...
While attempting to debug NFS with 'mountstats' and other Python based tools,
I was greeted by the error:
bash: /run/current-system/profile/sbin/mountstats: /usr/bin/python: bad
interpreter: No such file or directory
Add python-wrapper, so that the Python shebangs get rewritten correctly.
* gnu/packages/nfs.scm (nfs-utils)[inputs]: Add python-wrapper.
2020-04-04 22:05:01 -04:00
Nicolas Goaziou
eaa3cb1eb4
gnu: frescobaldi: Update to 3.1.1.
...
* gnu/packages/music.scm (frescobaldi): Update to 3.1.1.
2020-04-05 02:28:26 +02:00
Nicolas Goaziou
24319a83ca
gnu: rosegarden: Update to 19.12.
...
* gnu/packages/music.scm (rosegarden): Update to 19.12.
2020-04-05 02:21:24 +02:00
Nicolas Goaziou
4da6de3e67
gnu: lilypond: Update to 2.20.0.
...
* gnu/packages/music.scm (lilypond): Update to 2.20.0.
[native-inputs]: Use texi2html-1.82 instead of texi2html.
2020-04-05 02:05:28 +02:00
Nicolas Goaziou
f9f3ac4eda
gnu: Add texi2html-1.82.
...
* gnu/packages/texinfo.scm (texi2html-1.82): New variable.
2020-04-05 02:04:39 +02:00
Ludovic Courtès
376ba0ce57
store: 'with-store' uses 'with-exception-handler'.
...
This ensures the stack is not unwound before the exception is re-thrown,
as was the case since 8ed597f4a2 , leading
to '&store-protocol-error' being uncaught by 'with-error-handling'
in (guix scripts build) & co.
* guix/store.scm (call-with-store): Define 'thunk'. Add 'cond-expand'
to use 'with-exception-handler' on 'guile-3' and 'catch' otherwise.
2020-04-05 00:36:44 +02:00
Ludovic Courtès
524a4e357c
gnu: cross-base: Remove unneeded 'let'.
...
This is a followup to 102d307520 .
* gnu/packages/cross-base.scm (cross-libc): Remove (let ((libc libc)) …).
2020-04-05 00:36:43 +02:00
Nicolas Goaziou
0189574375
gnu: hydrogen: Update to 1.0.0-beta2.
...
* gnu/packages/music.scm (hydrogen): Update to 1.0.0-beta2.
[native-inputs]: Add qttools.
[inputs]: Add liblo and pulseaudio, remove libtar.
2020-04-05 00:25:10 +02:00
Nicolas Goaziou
211cf6dc68
gnu: denemo: Update to 2.3.0.
...
* gnu/packages/music.scm (denemo): Update to 2.3.0.
[arguments]: Augment `check' phase for tests to pass. Remove unnecessary
phase.
[native-inputs]: Add diffutils.
2020-04-04 23:30:47 +02:00
Carl Dong
4719b71572
gnu: mingw: Add mingw-w64 reproducibility patches.
...
These patches were originally found at the debian mingw-w64 team's
mingw-w64 repo, and should improve the reproducibility of our mingw-w64
toolchain.
* gnu/packages/patches/mingw-w64-dlltool-temp-prefix.patch: New file.
* gnu/packages/patches/mingw-w64-reproducible-gendef.patch: New file.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
* gnu/packages/mingw.scm (make-mingw-w64): Apply patches.
2020-04-04 16:23:07 -04:00
Vincent Legoll
19b10c91e8
gnu: gparted: Make some inputs native.
...
* gnu/packages/disk.scm (gparted)[inputs]: Move yelp-tools from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-04 22:02:17 +02:00
Ivan Kozlov
b2fff3b5de
system: Don’t create a module database when no modules are available.
...
* gnu/system.scm (operating-system-directory-base-entries): Don't create
a module database when no modules are available.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-04 21:13:26 +02:00
Vincent Legoll
5a46779e9f
gnu: rubber: Make some inputs native.
...
* gnu/packages/tex.scm (rubber)[inputs]: Move texinfo from here...
[native-inputs]: ...to this new field.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-04 20:19:19 +02:00
Vincent Legoll
525e83ec83
gnu: scotch: Make some inputs native.
...
* gnu/packages/math.scm (scotch)[inputs]: Move flex & bison from here...
[native-inputs]: ...to this new field.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-04 20:19:03 +02:00
Vincent Legoll
79edfcf268
gnu: telegram-purple: Make some inputs native.
...
* gnu/packages/telephony.scm (telegram-purple)[inputs]: Move gettext from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-04 20:18:52 +02:00
Vincent Legoll
28c0a2d4f5
gnu: jami: Make some inputs native.
...
* gnu/packages/telephony.scm (jami)[inputs]: Move gettext from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-04 20:18:42 +02:00
Vincent Legoll
a7f6202437
gnu: libkate: Make some inputs native.
...
* gnu/packages/xiph.scm (libkate)[inputs]: Move bison from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-04 20:18:29 +02:00
Vincent Legoll
4a5ae4ebf7
gnu: man-db: Make some inputs native.
...
* gnu/packages/man.scm (man-db)[inputs]: Move flex from here...
[native-inputs]: ...to here.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-04 20:18:10 +02:00
Guillaume Le Vaillant
5ef1b17578
gnu: qgis: Fix some plugins.
...
* gnu/packages/geo.scm (qgis)[arguments]: Add a 'wrap-gis' phase to set the
environment variables required by some plugins.
2020-04-04 20:03:06 +02:00
Ludovic Courtès
3cea550788
tests: Adjust '--with-commit' test for tags.
...
This is a followup to efa578ecae .
* tests/guix-build-branch.sh: Adjust '--with-commit=guile-gcrypt=v0.1.0'
test to expect the tag ID rather than the commit ID.
2020-04-04 18:52:36 +02:00
Ludovic Courtès
8ed597f4a2
store: 'with-store' doesn't close the store upon abort.
...
Fixes <https://bugs.gnu.org/40428 >.
Reported by Marius Bakke <mbakke@fastmail.com > and 白い熊.
Regression introduced with the first uses of 'with-build-handler' in
commit 62195b9a8f and subsequent.
* guix/store.scm (call-with-store): Use 'catch #t' instead of
'dynamic-wind'. This ensures STORE remains open when a non-local exit
other than an exception occurs, such as an abort to the build handler
prompt.
* tests/store.scm ("with-build-handler + with-store"): New test.
2020-04-04 18:52:35 +02:00
Ludovic Courtès
d8c8bfcc1f
maint: Remove unsupported cross-compilation jobs from 'release-manifest.scm'.
...
* etc/release-manifest.scm (%packages-to-cross-build-for-mingw): New
variable.
(%cross-manifest): Use it. Remove "riscv64-linux-gnu" from %CROSS-TARGETS.
2020-04-04 18:52:35 +02:00
Julien Lepiller
3a3b594822
gnu: ocaml-menhir: Update to 20190626.
...
* gnu/packages/ocaml.scm (ocaml-menhir): Update to 20190626.
2020-04-04 18:34:42 +02:00
Marius Bakke
f2d97d577d
gnu: Replace uses of 'gettext' with 'gettext-minimal'.
...
* gnu/packages/cdrom.scm (dvdstyler)[native-inputs]: Change from GNU-GETTEXT
to GETTEXT-MINIMAL.
* gnu/packages/emulators.scm (dolphin-emu)[native-inputs]: Likewise.
* gnu/packages/engineering.scm (lepton-eda, kicad, kicad-i18l)[native-inputs]:
Likewise.
* gnu/packages/games.scm (quadrapassel, edgar)[native-inputs]: Likewise.
* gnu/packages/gnome.scm (eog-plugins, workrave, geary)[native-inputs]: Likewise.
* gnu/packages/guile-xyz.scm (guile-gi, emacsy)[native-inputs]: Likewise.
* gnu/packages/image.scm (gpick)[native-inputs]: Likewise.
* gnu/packages/messaging.scm (telegram-purple)[native-inputs]: Likewise.
* gnu/packages/music.scm (fmit)[native-inputs]: Likewise.
* gnu/packages/package-management.scm (flatpak)[native-inputs]: Likewise.
* gnu/packages/patchutils.scm (quilt)[native-inputs]: Likewise.
* gnu/packages/photo.scm (hugin)[native-inputs]: Likewise.
* gnu/packages/security-token.scm (eid-mw)[native-inputs]: Likewise.
* gnu/packages/telephony.scm (jami)[native-inputs]: Likewise.
* gnu/packages/texinfo.scm (pinfo)[native-inputs]: Likewise.
* gnu/packages/vulkan.scm (vkd3d)[native-inputs]: Likewise.
* gnu/packages/web.scm (cadaver)[native-inputs]: Likewise.
2020-04-04 15:48:44 +02:00
Marius Bakke
0c2e94f21f
gnu: cadaver: Build with OpenSSL 1.0.
...
* gnu/packages/web.scm (cadaver)[inputs]: Change from OPENSSL to OPENSSL-1.0.
2020-04-04 15:48:31 +02:00
Naga Malleswari
600b6d4378
gnu: Add r-asd.
...
* gnu/packages/cran.scm (r-asd): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-04 15:26:06 +02:00
Vincent Legoll
a5a2d79b91
gnu: c-reduce: Make some inputs native.
...
* gnu/packages/debug.scm (c-reduce)[inputs]: Move flex from here...
[native-inputs]: ...to this new field.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-04-04 12:45:36 +02:00
Vincent Legoll
d6f1f60721
gnu: ell: Make some inputs native.
...
* gnu/packages/linux.scm (ell)[inputs]: Move libtool from here...
[native-inputs]: ...to here.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-04-04 12:45:36 +02:00
Vincent Legoll
5f98b84cd9
gnu: dico: Make some inputs native.
...
* gnu/packages/dico.scm (dico)[inputs]: Move groff from here...
[native-inputs]: ...to this new field.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-04-04 12:45:36 +02:00
Vincent Legoll
6e834bdd9f
gnu: a2ps: Make some inputs native.
...
* gnu/packages/pretty-print.scm (a2ps)[inputs]: Move groff from here...
[native-inputs]: ...to here.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-04-04 12:45:36 +02:00
Naga Malleswari
dd233e4dfa
gnu: gnome-online-accounts: Update to 3.36.0.
...
* gnu/packages/gnome.scm (gnome-online-accounts): Update to 3.36.0.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-04 12:14:21 +02:00
Naga Malleswari
49dcd7fc2f
gnu: gnome-online-miners: Update to 3.34.0.
...
* gnu/packages/gnome.scm (gnome-online-miners): Update to 3.34.0.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-04 12:14:20 +02:00
Dimakakos Dimos
cdbbb94c69
gnu: Deprecate emacs-modus-themes.
...
* gnu/package/emacs-xyz.scm (emacs-modus-themes): Deprecate it.
2020-04-04 11:34:26 +02:00
Dimakakos Dimos
56ec01132e
gnu: Add emacs-modus-operandi-theme.
...
* gnu/packages/emacs-xyz.scm (emacs-modus-operandi-theme): New variable.
2020-04-04 11:34:24 +02:00
Dimakakos Dimos
51d4587a69
gnu: Add emacs-modus-vivendi-theme.
...
* gnu/packages/emacs-xyz.scm (emacs-modus-vivendi-theme): New variable.
2020-04-04 11:33:09 +02:00
Maxim Cournoyer
e8a1c5af84
gnu: spandsp: Disable parallel build.
...
The build could otherwise fail non-deterministically.
Reported-by: Raghav Gururajan <raghavgururajan@disroot.org >
* gnu/packages/telephony.scm (spandsp)[arguments]: Set parallel-build? to
false.
2020-04-03 23:01:45 -04:00
Mark H Weaver
d24e598a78
gnu: icecat: Update to 68.6.1-guix0-preview1 [security fixes].
...
Includes fixes for CVE-2020-6819 and CVE-2020-6820.
* 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.
2020-04-03 21:28:43 -04:00
Vagrant Cascadian
f97a4279f0
gnu: Add linux-libre-arm64-generic-5.6.
...
* gnu/packages/linux (linux-libre-arm64-generic-5.6): New variable.
2020-04-03 16:09:12 -07:00
Vagrant Cascadian
3e91ca4476
gnu: Add linux-libre-arm-generic-5.6.
...
* gnu/packages/linux (linux-libre-arm-generic-5.6): New variable.
2020-04-03 16:08:55 -07:00
Vagrant Cascadian
1b131e1f5a
gnu: Add linux-libre 5.6.2.
...
* gnu/packages/linux (deblob-scripts-5.6): New variable.
(linux-libre-5.6-version): New variable.
(linux-libre-5.6-pristine-source): New variable.
(linux-libre-5.6-source): New variable.
(linux-libre-headers-5.6): New variable.
(linux-libre-5.6): New variable.
2020-04-03 16:08:03 -07:00
Mark H Weaver
41a795e726
gnu: linux-libre: Update to 5.4.30.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.30.
(linux-libre-5.4-pristine-source): Update hash.
2020-04-03 17:30:39 -04:00
Mark H Weaver
fa015e2f68
gnu: linux-libre@4.19: Update to 4.19.114.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.114.
(linux-libre-4.19-pristine-source): Update hash.
2020-04-03 17:30:03 -04:00
Mark H Weaver
331c55059c
gnu: linux-libre@4.14: Update to 4.14.175.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.175.
(linux-libre-4.14-pristine-source): Update hash.
2020-04-03 17:29:28 -04:00
Mark H Weaver
486ff941cb
gnu: linux-libre@4.9: Update to 4.9.218.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.218.
(linux-libre-4.9-pristine-source): Update hash.
2020-04-03 17:28:57 -04:00
Mark H Weaver
cec3a09314
gnu: linux-libre@4.4: Update to 4.4.218.
...
* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.218.
(linux-libre-4.4-pristine-source): Update hash.
2020-04-03 17:27:48 -04:00
Ludovic Courtès
b256d13619
gnu: cross-base: Add 'package-with-patches'.
...
This is a followup to c1c50cb5b0 .
* gnu/packages/cross-base.scm (package-with-patch): Rename to...
(package-with-patches): ... this, and take a list of patches.
(package-with-extra-patches): Use it.
(cross-binutils): Use 'search-patches' instead of 'search-patch'.
2020-04-03 23:09:59 +02:00
Ludovic Courtès
f7b5b8cd45
pack: Pass the cross-compilation target to 'run-with-store'.
...
This ensures '%current-target-system' is correctly bound upfront, which
some packages rely on.
* guix/scripts/pack.scm (guix-pack): Pass #:target to 'run-with-store'.
2020-04-03 23:06:43 +02:00
Carl Dong
c1c50cb5b0
gnu: cross-base: Fix PACKAGE-WITH-EXTRA-PATCHES
...
This also removes the execute bit from the patches added. Not sure how
or why those were set in the first place.
* gnu/packages/cross-base.scm (package-with-extra-patches): Imitate
PACKAGE-WITH-PATCH instead of using it.
* gnu/packages/patches/binutils-mingw-w64-reproducible-import-libraries.patch:
Remove execute bit.
* gnu/packages/patches/binutils-mingw-w64-specify-timestamp.patch:
Remove execute bit.
2020-04-03 14:13:36 -04:00
Marius Bakke
e7a353ed46
gnu: ungoogled-chromium: Update to 80.0.3987.163-0.516e2d9.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 80.0.3987.163.
(%chromium-origin): Update hash.
2020-04-03 17:54:39 +02:00
Maxim Cournoyer
5179b5cbe9
gnu: Add python-cantools.
...
* gnu/packages/python-xyz.scm (python-cantools): New variable.
2020-04-03 11:25:17 -04:00
Maxim Cournoyer
22a49c09ee
gnu: Add python-bitstruct.
...
* gnu/packages/python-xyz.scm (python-bitstruct): New variable.
2020-04-03 11:25:17 -04:00
Maxim Cournoyer
91b3f58de8
gnu: Add python-diskcache.
...
* gnu/packages/python-xyz.scm (python-diskcache): New variable.
2020-04-03 11:25:16 -04:00
Maxim Cournoyer
a9d58a801e
gnu: Add python-can.
...
* gnu/packages/python-xyz.scm (python-can): New variable.
2020-04-03 11:25:16 -04:00
Maxim Cournoyer
e063426031
gnu: Add python-aenum.
...
* gnu/packages/python-xyz.scm (python-aenum): New variable.
2020-04-03 11:25:16 -04:00
Maxim Cournoyer
aeee50b661
gnu: Add python-textparser.
...
* gnu/packages/python-xyz.scm (python-textparser): New variable.
2020-04-03 11:25:16 -04:00
Paul Garlick
2b0695a5ef
gnu: Add perl-data-entropy.
...
* gnu/packages/perl.scm (perl-data-entropy): New variable.
2020-04-03 15:55:43 +01:00
Paul Garlick
20b4eb556e
gnu: Add perl-crypt-rijndael.
...
* gnu/packages/perl.scm (perl-crypt-rijndael): New variable.
2020-04-03 15:55:42 +01:00
Paul Garlick
b4a003f635
gnu: Add perl-data-float.
...
* gnu/packages/perl.scm (perl-data-float): New variable.
2020-04-03 15:55:41 +01:00
Paul Garlick
ce3e95d78e
gnu: Add perl-http-lite.
...
* gnu/packages/web.scm (perl-http-lite): New variable.
2020-04-03 15:55:40 +01:00
Raghav Gururajan
9be3ab7bbe
gnu: Remove bctoolbox and ortp.
...
* gnu/packages/telephony.scm (bctoolbox): Delete variable.
(ortp): Delete variable.
* gnu/packages/audio.scm (bluez-alsa)[inputs]: Update ortp reference.
* gnu/packages/kde-internet.scm (kopete)[inputs]: Update ortp reference.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-03 16:41:44 +02:00
R Veera Kumar
72c71d2497
gnu: Add qalculate-gtk.
...
* gnu/packages/maths.scm (qalculate-gtk): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-03 16:26:38 +02:00
R Veera Kumar
70c98efaf6
gnu: Add libqalculate.
...
* gnu/packages/maths.scm (libqalculate): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-03 16:26:38 +02:00
Ludovic Courtès
c627e2cba4
gnu: gnome-initial-setup: Record file name of 'gsd-keyboard-display'.
...
* gnu/packages/gnome.scm (gnome-initial-setup)[arguments]: Add
'set-gkbd-file-name' phase.
[inputs]: Add LIBGNOMEKBD.
2020-04-03 16:26:37 +02:00
Damien Cassou
1ace39da78
gnu: clipnotify: Update to 6.0.1.
...
* gnu/packages/xdisorg.scm (clipnotify): Update to 6.0.1.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-03 15:28:42 +02:00
Marius Bakke
3e4ce1cc3e
gnu: calibre: Fix build with python-msgpack >= 1.0.
...
* gnu/packages/patches/calibre-msgpack-compat.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/ebook.scm (calibre)[source](patches): Add it.
2020-04-03 15:28:42 +02:00
Raghav Gururajan
f3697439cd
gnu: Add bzrtp.
...
* gnu/packages/linphone.scm (bzrtp): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-03 13:04:11 +02:00
Raghav Gururajan
13f401d366
gnu: Add ortp.
...
* gnu/packages/linphone.scm (ortp): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-03 13:01:07 +02:00
Raghav Gururajan
02d5d72cfc
gnu: Add bcg729.
...
* gnu/packages/linphone.scm (bcg729): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-03 13:01:07 +02:00
Ludovic Courtès
73bfb14f8f
guix system: Mention 'herd restart' when reconfigure completes.
...
* guix/scripts/system.scm (with-shepherd-error-handling): Use 'mbegin'
instead of 'begin'.
(perform-action): Print a message after 'upgrade-shepherd-services'.
That message had disappeared in commit
5c8c8c4554 .
2020-04-03 12:58:14 +02:00
Ludovic Courtès
4efbb079b5
guix system: Remove unused procedure.
...
This procedure was unused since
5c8c8c4554 .
* guix/scripts/system.scm (call-with-service-upgrade-info): Remove.
2020-04-03 12:58:14 +02:00
Ludovic Courtès
9fb3ff31c1
reconfigure: Silence Guile warnings.
...
Fixes <https://bugs.gnu.org/39301 >.
Reported by strypsteen@posteo.net .
* guix/scripts/system/reconfigure.scm (switch-to-system)
(upgrade-shepherd-services, install-bootloader): Wrap 'primitive-load'
call in 'parameterize'.
2020-04-03 12:58:14 +02:00
Ludovic Courtès
00a1ebb84a
Revert "reconfigure: Run the effect scripts as separate processes."
...
This reverts commit 5517750344 .
That commit would remove all sorts of error checking when running those
programs.
2020-04-03 12:58:14 +02:00
Raghav Gururajan
28f6f1e0da
gnu: Add bcmatroska2.
...
* gnu/packages/linphone.scm (bcmatroska2): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-03 12:45:28 +02:00
Raghav Gururajan
c8f69ec27b
gnu: Add belcard.
...
* gnu/packages/linphone.scm (belcard): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-03 12:43:18 +02:00
Raghav Gururajan
63c73bcad0
gnu: Add belr.
...
* gnu/packages/linphone.scm (belr): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-03 12:41:51 +02:00
Raghav Gururajan
bfaabfebac
gnu: Add bctoolbox.
...
* gnu/packages/linphone.scm (bctoolbox): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-03 12:41:03 +02:00
Raghav Gururajan
d5a8e391ac
gnu: Add bcunit.
...
* gnu/packages/linphone.scm (bcunit): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-04-03 12:39:07 +02:00
Justus Winter
9ec27360af
gnu: Add muchsync.
...
* gnu/packages/mail.scm (muchsync): New variable.
2020-04-03 10:56:42 +02:00
Guillaume Le Vaillant
24f4263d06
gnu: gpsd: Update to 3.20.
...
* gnu/packages/gps.scm (gpsd): Update to 3.20.
[inputs]: Add gtk+.
2020-04-03 10:12:47 +02:00
Guillaume Le Vaillant
4570ab0316
gnu: txr: Update to 234.
...
* gnu/packages/lisp.scm (txr): Update to 234.
2020-04-03 09:48:48 +02:00
Tobias Geerinckx-Rice
7a9543d77e
gnu: lollypop: Peel off duplicate wrapper.
...
* gnu/packages/gnome.scm (lollypop)[arguments]: Take down some at-ats
with proper module imports and prefixing. Remove the redundant
‘wrap-glib-or-gtk’ phaseis already run by the MESON-BUILD-SYSTEM.
2020-04-03 00:14:03 +02:00
Carl Dong
401d28e433
gnu: cross-base: Hotfix for paren
...
* gnu/packages/cross-base.scm (package-with-extra-patches): Add trailing
paren.
2020-04-02 18:08:33 -04:00
Carl Dong
79825bee07
gnu: cross-base: Add mingw-w64 specific binutils patches.
...
These patches were originally found at the debian mingw-w64 team's
binutils repo, and should improve the reproducibility of our mingw-w64
toolchain.
* gnu/packages/patches/binutils-mingw-w64-reproducible-import-libraries.patch:
New file.
* gnu/packages/patches/binutils-mingw-w64-specify-timestamp.patch:
New file.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
* gnu/packages/cross-base.scm (cross-binutils): Apply relevant patches
if target is mingw-w64.
(package-with-extra-patches): New procedure.
2020-04-02 17:59:53 -04:00
Ludovic Courtès
5517750344
reconfigure: Run the effect scripts as separate processes.
...
Fixes <https://bugs.gnu.org/39301 >.
Reported by strypsteen@posteo.net .
* guix/scripts/system/reconfigure.scm (switch-to-system)
(upgrade-shepherd-services, install-bootloader): Use 'system*' instead
of 'primitive-load'.
2020-04-02 23:15:12 +02:00
Ludovic Courtès
a6850f6827
guix system: Do not import the user's (guix config).
...
Previously, 'switch-to-system.drv' and 'install-bootloader.drv' would
depend on the user's (guix config) module. This is no longer the case.
* guix/scripts/system/reconfigure.scm (not-config?): New procedure.
(switch-system-program): Do not import the user's (guix config). Use
'make-config.scm' instead.
(install-bootloader-program): Likewise.
2020-04-02 23:15:11 +02:00
Ludovic Courtès
efa578ecae
git: Don't try to resolve tags with 'tag-lookup'.
...
Fixes <https://bugs.gnu.org/40377 >.
Reported by Brice Waegeneire <brice@waegenei.re >.
* guix/git.scm (switch-to-ref): In the 'tag case, remove call to
'tag-lookup'.
2020-04-02 23:15:11 +02:00
Alex ter Weele
70c128dc33
gnu: Add synapse.
...
* gnu/packages/matrix.scm (synapse): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:17 +02:00
Alex ter Weele
0752908415
gnu: Add python-matrix-synapse-ldap3.
...
* gnu/packages/matrix.scm: New file.
(python-matrix-synapse-ldap3): New variable.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add matrix.scm.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:17 +02:00
Alex ter Weele
276ddb02b5
gnu: Add python-pysaml2.
...
* gnu/packages/python-xyz.scm: (python-pysaml2) New variable.
Co-authored-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:16 +02:00
Alex ter Weele
9a3d361b5d
gnu: Add python-txacme.
...
* gnu/packages/python-xyz.scm (python-txacme): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:16 +02:00
Marius Bakke
87ba9efc6d
gnu: Add python-txsni.
...
* gnu/packages/python-xyz.scm: (python-txsni) New variable.
Co-authored-by: Alex ter Weele <alex.ter.weele@gmail.com >
2020-04-02 20:55:16 +02:00
Alex ter Weele
bdbe69f659
gnu: Add python-pem.
...
* gnu/packages/python-xyz.scm: (python-pem) New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:16 +02:00
Alex ter Weele
acbba42d56
gnu: Add python-eliot.
...
* gnu/packages/python-xyz.scm: (python-eliot) New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:16 +02:00
Alex ter Weele
09e6675dad
gnu: Add python-boltons.
...
* gnu/packages/python-xyz.scm: (python-boltons) New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:16 +02:00
Alex ter Weele
858f3834be
gnu: Add python-ldap3.
...
* gnu/packages/python-xyz.scm (python-ldap3): New variable.
Co-authored-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:16 +02:00
Alex ter Weele
534fadf91d
gnu: Add python-prometheus-client.
...
* gnu/packages/python-xyz.scm (python-prometheus-client): New variable.
Co-authored-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:15 +02:00
Alex ter Weele
4fd0a4a4e9
gnu: Add python-pymacaroons.
...
* gnu/packages/python-xyz.scm (python-pymacaroons): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:15 +02:00
Alex ter Weele
039c549900
gnu: Add python-daemonize.
...
* gnu/packages/python-xyz.scm (python-daemonize): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:15 +02:00
Alex ter Weele
af1f7a3279
gnu: Add python-signedjson.
...
* gnu/packages/python-xyz.scm (python-signedjson): New variable.
Co-authored-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:15 +02:00
Alex ter Weele
77b32f61f9
gnu: Add python-canonicaljson.
...
* gnu/packages/python-xyz.scm (python-canonicaljson): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:15 +02:00
Alex ter Weele
bc834c0f62
gnu: Add python-unpaddedbase64.
...
* gnu/packages/python-xyz.scm (python-unpaddedbase64): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:15 +02:00
Alex ter Weele
3094c0ae59
gnu: Add python-frozendict.
...
* gnu/packages/python-xyz.scm (python-frozendict): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:15 +02:00
Simon Mages
83670e02bc
services: murmur: Add missing newline in murmur-configuration.
...
* gnu/services/telephony.scm (default-murmur-config): Add newline after
"max-user-bandwidth".
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:15 +02:00
John Soo
0673d55d95
gnu: Add font-iosevka-term.
...
* gnu/packages/fonts.scm (font-iosevka-term): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:14 +02:00
John Soo
0161862d9d
gnu: Add font-iosevka-term-slab.
...
* gnu/packages/fonts.scm (font-iosevka-term-slab): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:14 +02:00
John Soo
53eaf69d6d
gnu: proof-general: Update home-page.
...
* gnu/packages/coq.scm (proof-general):[home-page] update to proofgeneral.github.io
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:14 +02:00
John Soo
5bd5d6ef2d
gnu: proof-general: Update to 4.4.
...
* gnu/packages/coq.scm (proof-general): Update to 4.4.
[source]: Change to GIT-FETCH.
[arguments]: Remove obsolete substitutions.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:14 +02:00
Brendan Tildesley
a6ac679f0a
gnu: gnome-default-applications: Change defaults.list to gnome-mimeapps.list.
...
* gnu/packages/gnome.scm (gnome-default-applications)[arguments]: Change
deprecated defaults.list filename to gnome-mimeapps.list. The old
defaults.list was changed to mimeapps.list in the mime spec. The gnome- prefix
makes the file only be read when XDG_CURRENT_DESKTOP=GNOME.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:14 +02:00
John Soo
79e5d150c6
gnu: Add xwallpaper.
...
* gnu/packages/xdisorg.scm (xwallpaper): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:14 +02:00
John Soo
be41d7d91d
gnu: cedille: Install the info pages.
...
* gnu/packages/cedille.scm (cedille)[arguments]: Rename phase
'patch-cedille-path-el' to 'patch-cedille-paths' and add substitution for the
info page location. In the 'copy-cedille-mode' phase, install the info page.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:14 +02:00
John Soo
a8f1b52017
gnu: cedille: Fix emacs outputs.
...
* gnu/packages/cedille.scm (cedille):[arguments] Add slashes to output paths.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:14 +02:00
Danjela Lura
c035d7b0ba
gnu: Add r-oenb.
...
* gnu/packages/cran.scm (r-oenb): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:13 +02:00
Jérémy Korwin-Zmijowski
a4f7dc73be
gnu: Add emacs-ac-geiser.
...
* gnu/packages/emacs-xyz.scm (emacs-ac-geiser): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:13 +02:00
Timotej Lazar
43b176f36c
gnu: sdl2: Update to 2.0.12.
...
* gnu/packages/patches/sdl2-mesa-compat.patch: Delete file.
* gnu/packages/sdl.scm (sdl2): Update to 2.0.12.
[source]: Drop patch that was included in this release.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:13 +02:00
Timotej Lazar
9d4ed35703
gnu: sdl2: Use udev to discover input devices.
...
Without udev SDL falls back on custom detection code, which blocks every three
seconds while checking for new devices.
* gnu/packages/sdl.scm (sdl2)[inputs]: Add eudev.
[arguments]<#:make-flags>: Add LDFLAGS to include eudev in rpath so that
dlopen can find it.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-04-02 20:55:13 +02:00
Marius Bakke
3ccfa4048a
gnu: python-pyasn1: Update to 0.4.8.
...
* gnu/packages/python-xyz.scm (python-pyasn1): Update to 0.4.8.
2020-04-02 20:55:13 +02:00
Leo Famulari
8549e47ecf
gnu: Apache httpd: Update to 2.4.43 [fixes CVE-2020-{1927,1934}].
...
* gnu/packages/web.scm (httpd): Update to 2.4.43.
2020-04-02 11:36:38 -04:00
Christopher Lemmer Webber
abcac7a529
gnu: Add emacs-beancount.
...
* gnu/packages/emacs-xyz.scm (emacs-beancount): New variable.
2020-04-02 11:19:53 -04:00
Christopher Lemmer Webber
f1f724841a
gnu: Add beancount.
...
* gnu/packages/finance.scm (beancount): New variable.
* gnu/packages/patches/beancount-disable-googleapis-fonts.patch: New file.
* gnu/local.mk: Add it.
2020-04-02 11:19:53 -04:00
Ludovic Courtès
a1a9d3848c
gnu: mate-session-manager: Actually build with elogind support.
...
Fixes <https://bugs.gnu.org/40327 >.
Reported by Jonathan Brielmaier <jonathan.brielmaier@web.de >.
This ensures one gets a "Shut Down" entry in the "System" menu.
* gnu/packages/mate.scm (mate-session-manager)[arguments]: Pass
"--with-elogind" instead of "--enable-elogind". Remove 'pre-configure'
phase.
2020-04-02 16:07:12 +02:00
Ludovic Courtès
9bdb0fee01
services: mate: Provide all the polkit actions.
...
* gnu/services/desktop.scm (mate-polkit-extension): New procedure.
(mate-desktop-service-type): Use it when extending POLKIT-SERVICE-TYPE.
2020-04-02 16:07:12 +02:00
Ludovic Courtès
8a5cdc078c
gnu: mate-control-center: Fix file name in polkit rule.
...
* gnu/packages/mate.scm (mate-control-center)[arguments]: New field.
2020-04-02 16:07:12 +02:00
Jonathan Brielmaier
ae8e0fbd82
gnu: mate: Add glib:bin to propagated-inputs.
...
This is a fix for https://issues.guix.gnu.org/issue/38135 until the
proper fix from core-updates is merged.
* gnu/packages/mate.scm (mate)[propagated-inputs]: Add glib:bin.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:11 +02:00
Jonathan Brielmaier
57384fe72f
gnu: mate-themes: Update to 3.22.21.
...
* gnu/packages/mate.scm (mate-themes): Update to 3.22.21.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:11 +02:00
Jonathan Brielmaier
db41c3f1b4
gnu: mate-power-manager: Update to 1.24.1.
...
* gnu/packages/mate.scm (mate-power-manager): Update to 1.24.1.
[native-inputs]: Switch from intltool to gettext as upstream. Add polkit
for ITS rules. Libtool is generated during build, so we can remove the
external one.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:11 +02:00
Jonathan Brielmaier
65afb91138
gnu: mate-polkit: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-polkit): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:11 +02:00
Jonathan Brielmaier
16d9b4594a
gnu: mate-system-monitor: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-system-monitor): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:11 +02:00
Jonathan Brielmaier
0a60386f74
gnu: pluma: Update to 1.24.0.
...
* gnu/packages/mate.scm (pluma): Update to 1.24.0.
[inputs]: Switch from python-2 to python(3) like upstream.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:11 +02:00
Jonathan Brielmaier
3877fe358d
gnu: engrampa: Update to 1.24.0.
...
* gnu/packages/mate.scm (engrampa): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:11 +02:00
Jonathan Brielmaier
04cf2fffb8
gnu: eom: Update to 1.24.0.
...
* gnu/packages/mate.scm (eom): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:11 +02:00
Jonathan Brielmaier
6e5be55bbc
gnu: mate-utils: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-utils): Update to 1.24.0.
[inputs]: Add udisks.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:10 +02:00
Jonathan Brielmaier
bfa66d6484
gnu: mate-screensaver: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-screensaver): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:10 +02:00
Jonathan Brielmaier
6df282a745
gnu: mate-netbook: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-netbook): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:10 +02:00
Jonathan Brielmaier
66adc72e7a
gnu: mate-backgrounds: Update to 1.24.1.
...
* gnu/packages/mate.scm (mate-backgrounds): Update to 1.24.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:10 +02:00
Jonathan Brielmaier
b30b55b3ee
gnu: mate-calc: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-calc): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:10 +02:00
Jonathan Brielmaier
204deed748
gnu: mate-user-guide: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-user-guide): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:10 +02:00
Jonathan Brielmaier
dedd7d4182
gnu: mate-control-center: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-control-center): Update to 1.24.0.
[inputs]: Add polkit.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:10 +02:00
Jonathan Brielmaier
eec293d266
gnu: caja-extensions: Update to 1.24.0.
...
* gnu/packages/mate.scm (caja-extensions): Update to 1.24.0.
[native-inputs]: Add xmllint provided by the libxml2 package.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:10 +02:00
Jonathan Brielmaier
ac17c544fb
gnu: marco: Update to 1.24.0.
...
* gnu/packages/mate.scm (marco): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:10 +02:00
Jonathan Brielmaier
755fe58dbc
gnu: caja: Update to 1.24.0.
...
* gnu/packages/mate.scm (caja): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:09 +02:00
Jonathan Brielmaier
9ab39e36d6
gnu: mate-panel: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-panel): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:09 +02:00
Jonathan Brielmaier
618634756a
gnu: mate-media: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-media): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:09 +02:00
Jonathan Brielmaier
2f45b56802
gnu: mate-applets: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-applets): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:09 +02:00
Jonathan Brielmaier
424f58f5c9
gnu: mate-menus: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-menus): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:09 +02:00
Jonathan Brielmaier
4107a56e73
gnu: libmatekbd: Update to 1.24.0.
...
* gnu/packages/mate.scm (libmatekbd): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:09 +02:00
Jonathan Brielmaier
900db20624
gnu: libmatemixer: Update to 1.24.0.
...
* gnu/packages/mate.scm (libmatemixer): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:09 +02:00
Jonathan Brielmaier
d4c466b754
gnu: mate-settings-daemon: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-settings-daemon): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:09 +02:00
Jonathan Brielmaier
42da81763f
gnu: mate-session-manager: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-session-manager): Update to 1.24.0.
[native-inputs]: Add now required libxcomposite.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:08 +02:00
Jonathan Brielmaier
6129b04673
gnu: mate-terminal: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-terminal): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:08 +02:00
Jonathan Brielmaier
42096be5d7
gnu: libmateweather: Update to 1.24.0.
...
* gnu/packages/mate.scm (libmateweather): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:08 +02:00
Jonathan Brielmaier
ea5b0a6fff
gnu: mate-desktop: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-desktop): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:08 +02:00
Jonathan Brielmaier
947dc39e18
gnu: mate-icon-theme: Update to 1.24.0.
...
* gnu/packages/mate.scm (mate-icon-theme): Update to 1.24.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 16:07:08 +02:00
Ludovic Courtès
3b4d7cdccc
bournish: Prevent inlining of run-time support procedures.
...
On Guile 3, those procedures could be inlined, leading to
unbound-variable errors:
scheme@(guile-user)> ,bournish
Welcome to Bournish, a minimal Bourne-like shell!
To switch back, type `,L scheme'.
bournish@(guile-user)> ls
ice-9/boot-9.scm:1669:16: In procedure raise-exception:
Unbound variable: ls-command-implementation
Reported by Ricardo Wurmus.
* guix/build/bournish.scm (define-command-runtime): New macro.
(ls-command-implementation, wc-command-implementation)
(wc-l-command-implementation, wc-c-command-implementation): Use it
instead of 'define'.
2020-04-02 16:07:08 +02:00
Julien Lepiller
725862ef53
nls: Add Tamil translation.
...
* po/guix/LINGUAS: Add 'ta'.
* po/guix/ta.po: New file.
2020-04-02 14:57:37 +02:00
Danny Milosavljevic
451c38b7d6
gnu: docker: Provide version string to docker service.
...
Fixes <https://bugs.gnu.org/40368 >.
Reported by Pierre Neidhardt <mail@ambrevar.xyz >.
* gnu/packages/docker.scm (docker)[configure]: Provide version string.
[install]: Install versioned binary.
2020-04-02 12:46:52 +02:00
Pierre Neidhardt
1ea9d1e187
gnu: emacs-sly-asdf: Update to 20200306.
...
* gnu/packages/emacs-xyz.scm (emacs-sly-asdf): Update to 20200306.
2020-04-02 12:04:21 +02:00
Ludovic Courtès
c7af968717
system: Add xterm to lightweight-desktop example.
...
That makes ratpoison more usable, for instance.
* gnu/system/examples/lightweight-desktop.tmpl (packages): Add XTERM.
2020-04-02 11:48:25 +02:00
Ludovic Courtès
b34ead48dc
gexp: 'lower-references' uses 'mapm/accumulate-builds'.
...
* guix/gexp.scm (lower-references): Use 'mapm/accumulate-builds' instead
of 'mapm'.
2020-04-02 11:48:25 +02:00
Ludovic Courtès
2ad6eb0568
guix system: Use 'mapm/accumulate-builds'.
...
* guix/scripts/system.scm (perform-action): Use 'mapm/accumulate-builds'
instead of 'mapm'.
2020-04-02 11:48:24 +02:00
Ludovic Courtès
223ede4e15
services: Accumulate builds for 'system' entries.
...
That way, more build requests are accumulated when running "guix system
build".
* gnu/services.scm (system-derivation): Use 'mapm/accumulate-builds'
rather than 'sequence'.
2020-04-02 11:48:24 +02:00
Vincent Legoll
0f4be78fef
gnu: Add cramfs-tools.
...
* gnu/packages/linux.scm (cramfs-tools): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 11:48:24 +02:00
Ludovic Courtès
5c83dd1d64
ui: Clarify "dependencies changed".
...
Suggested by Leo Famulari <leo@famulari.name >.
* guix/ui.scm (show-manifest-transaction): Change to "dependencies or
package changed".
2020-04-02 11:48:24 +02:00
Pierre Neidhardt
12d0bd26ac
gnu: Add ccl-1.12.
...
* gnu/packages/lisp.scm (ccl-1.12): New variable.
2020-04-02 11:47:52 +02:00
Vincent Legoll
0ad7e703c9
gnu: nethack: Make some inputs native.
...
* gnu/packages/games.scm (nethack)[inputs]: Move flex & bison from here...
[native-inputs]: ...to this new field.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-04-02 11:16:49 +02:00
Vincent Legoll
24a3eb9084
gnu: mailutils: Make some inputs native.
...
* gnu/packages/mail.scm (mailutils)[inputs]: Move dejagnu from here...
[native-inputs]: ...to here.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-04-02 11:16:49 +02:00
Vincent Legoll
5f214c642f
gnu: iwd: Make some inputs native.
...
* gnu/packages/networking.scm (iwd)[inputs]: Move libtool from here...
[native-inputs]: ...to here.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-04-02 11:16:48 +02:00
Vincent Legoll
d367304770
gnu: darktable: Make some inputs native.
...
* gnu/packages/photo.scm (darktable)[inputs]: Move intltool, perl & pkg-config
from here...
[native-inputs]: ...to here.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-04-02 11:16:40 +02:00
Pierre Neidhardt
bf155ce30c
gnu: transmission: Install icons to the "gui" output.
...
* gnu/packages/bittorrent.scm (transmission)[arguments]: Move the "icons" and
"pixmaps" folders to the "gui" output. Previously, if the user only install
the "gui" output, the icon would be missing.
2020-04-02 11:00:02 +02:00
Efraim Flashner
e7228f0cfa
gnu: openshot: Enable tests.
...
* gnu/packages/video.scm (openshot)[arguments]: Add custom 'check phase.
2020-04-02 09:21:47 +03:00
Efraim Flashner
5020a26392
gnu: openshot: Upgrade to 2.5.1.
...
* gnu/packages/video.scm (openshot): Update to 2.5.1.
[source]: Add note about bundled libraries. Remove upstream rename
workaround.
[home-page]: Update to new home-page.
2020-04-02 09:21:43 +03:00
Lars-Dominik Braun
44dbd856b7
gnu: python-aiohttp: Enable tests
...
* gnu/packages/python-web.scm (python-aiohttp) [arguments]: Enable tests
[native-inputs] Add test dependencies [patches] Add test case patch
* gnu/packages/patches/python-aiohttp-3.6.2-no-warning-fail.patch: New file
* gnu/local.mk (dist_patch_DATA): Add it
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 00:06:26 +02:00
Lars-Dominik Braun
b27a0dd46c
gnu: Add python-pytest-forked
...
* gnu/packages/check.scm (python-pytest-forked): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 00:06:26 +02:00
Lars-Dominik Braun
ecceef27c8
gnu: gunicorn: Update to 20.0.4
...
* gnu/packages/python-web.scm (gunicorn) [version]: Update to 20.0.4
[arguments] Re-enable previously failing tests
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-04-02 00:06:26 +02:00
Ludovic Courtès
4b75a70600
grafts: Simplify access to store item references.
...
This is a followup to 710854304b .
This also slightly reduces the number of 'query-references' RPCs, for
instance from 176 to 166 from "guix build emacs -d".
* guix/grafts.scm (references-oracle): Remove.
(non-self-references): Remove 'references' parameter and add 'store'.
Add 'references*' procedure and use it instead of 'references'. Adjust
caller accordingly.
(cumulative-grafts): Remove 'references' parameter and adjust caller
accordingly.
2020-04-02 00:06:26 +02:00
Leo Famulari
65bdb2d9dd
gnu: libavif: Update to 0.6.3.
...
* gnu/packages/image.scm (libavif): Update to 0.6.3.
2020-04-01 15:07:36 -04:00
Tobias Geerinckx-Rice
204d55c980
gnu: netpbm: Install an unversioned library link.
...
* gnu/packages/netpbm.scm (netpbm)[arguments]: Symlink libnetpbm.so.*.*
to libnetpbm.so.
Reported by R Veera Kumar <vkor@vkten.in >.
2020-04-01 19:45:44 +02:00
Jack Hill
63406c0bfd
gnu: Add gnome-chess
...
* gnu/packages/games.scm (gnome-chess): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-04-01 18:28:40 +01:00
Tobias Geerinckx-Rice
475d5d8d15
gnu: netpbm: Delete files natively.
...
* gnu/packages/netpbm.scm (netpbm)[arguments]: Delete files with
DELETE-FILE-RECURSIVELY instead of invoking ‘rm’.
2020-04-01 19:05:00 +02:00
Tobias Geerinckx-Rice
079ffbcfaf
gnu: netpbm: Use INVOKE.
...
* gnu/packages/netpbm.scm (netpbm)[arguments]: Substitute INVOKE
for SYSTEM*.
2020-04-01 19:05:00 +02:00
Tobias Geerinckx-Rice
3853941d25
gnu: netpbm: Omit static libraries.
...
* gnu/packages/netpbm.scm (netpbm)[arguments]: Don't copy the static
libraries to the output.
2020-04-01 19:04:59 +02:00
Tobias Geerinckx-Rice
3f3daa1cc1
gnu: openshot: Fix ‘color shift.png’ file name.
...
* gnu/packages/video.scm (openshot)[source]: Rename it to
‘colorshift.png’ in the snippet.
Reported by <znavko@disroot.org >.
2020-04-01 17:14:10 +02:00
John Soo
c26fd5648c
gnu: emacs-spacemacs-theme: Update to f79c40fb241e204539fde97200abae91e828e585.
...
* gnu/packages/emacs-xyz.scm (emacs-spacemacs-theme): Update to
f79c40fb241e204539fde97200abae91e828e585.
2020-04-01 16:13:15 +02:00
John Soo
0cc8cdbe1b
gnu: emacs-all-the-icons: Update to 4.0.1.
...
* gnu/packages/emacs-xyz.scm (emacs-all-the-icons): Update to 4.0.1.
2020-04-01 16:09:04 +02:00
John Soo
ec7d4b4de6
gnu: Add emacs-evil-leader.
...
* gnu/packages/emacs-xyz.scm (emacs-evil-leader): New variable.
2020-04-01 15:57:49 +02:00
John Soo
a97b943b55
gnu: emacs-graphviz-dot-mode: Update to 0.4.2.
...
* gnu/packages/emacs-xyz.scm (emacs-graphviz-dot-mode): Update to 0.4.2.
[native-inputs]: Add emacs-company.
[description]: Fix typo.
2020-04-01 15:40:57 +02:00
Paul Garlick
0c5cb84116
gnu: Add perl-crypt-eksblowfish.
...
* gnu/packages/perl.scm (perl-crypt-eksblowfish): New variable.
2020-04-01 14:22:27 +01:00
R Veera Kumar
e2bd0af373
gnu: Add qiv.
...
* gnu/packages/image-viewers.scm (qiv): New variable.
2020-04-01 12:19:16 +02:00
Marius Bakke
f8c8f80704
gnu: ungoogled-chromium: Update to 80.0.3987.162-0.516e2d9 [security fixes].
...
* gnu/packages/chromium.scm (%chromium-version): Set to 80.0.3987.162.
(%chromium-origin): Update hash.
2020-04-01 11:29:34 +02:00
Ricardo Wurmus
4ecba23091
gnu: r-biocworkflowtools: Update to 1.12.1.
...
* gnu/packages/bioconductor.scm (r-biocworkflowtools): Update to 1.12.1.
[native-inputs]: Add r-knitr.
2020-04-01 11:15:27 +02:00
Ricardo Wurmus
9669bc170a
gnu: r-mixomics: Update to 6.10.9.
...
* gnu/packages/bioconductor.scm (r-mixomics): Update to 6.10.9.
[native-inputs]: Add r-knitr.
2020-04-01 11:15:27 +02:00
Ricardo Wurmus
d49e3f0190
gnu: r-cytoml: Update to 1.12.1.
...
* gnu/packages/bioconductor.scm (r-cytoml): Update to 1.12.1.
[native-inputs]: Add r-knitr.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
028fd6f786
gnu: r-gofuncr: Update to 1.6.1.
...
* gnu/packages/bioconductor.scm (r-gofuncr): Update to 1.6.1.
[native-inputs]: Add r-knitr.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
81a37891ec
gnu: r-genomicinteractions: Update to 1.20.2.
...
* gnu/packages/bioconductor.scm (r-genomicinteractions): Update to 1.20.2.
[native-inputs]: Add r-knitr.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
0be3cc7f89
gnu: r-biomart: Update to 2.42.1.
...
* gnu/packages/bioinformatics.scm (r-biomart): Update to 2.42.1.
[native-inputs]: Add r-knitr.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
c5c6719f92
gnu: r-genomeinfodb: Update to 1.22.1.
...
* gnu/packages/bioinformatics.scm (r-genomeinfodb): Update to 1.22.1.
[native-inputs]: Add r-knitr.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
775c6f402c
gnu: r-forecast: Update to 8.12.
...
* gnu/packages/cran.scm (r-forecast): Update to 8.12.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
32fbd12348
gnu: r-rematch2: Update to 2.1.1.
...
* gnu/packages/cran.scm (r-rematch2): Update to 2.1.1.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
8310b036d8
gnu: r-afex: Update to 0.27-2.
...
* gnu/packages/cran.scm (r-afex): Update to 0.27-2.
[native-inputs]: Add r-knitr.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
5a0fb78edb
gnu: r-fs: Update to 1.4.0.
...
* gnu/packages/cran.scm (r-fs): Update to 1.4.0.
[propagated-inputs]: Remove r-rcpp.
[native-inputs]: Add r-knitr.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
c639485645
gnu: r-performance: Update to 0.4.5.
...
* gnu/packages/cran.scm (r-performance): Update to 0.4.5.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
76fb1e8f3f
gnu: r-heatmaply: Update to 1.1.0.
...
* gnu/packages/cran.scm (r-heatmaply): Update to 1.1.0.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
c7e4a01669
gnu: r-quantmod: Update to 0.4.17.
...
* gnu/packages/cran.scm (r-quantmod): Update to 0.4.17.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
dbf4aaeab8
gnu: r-tinytex: Update to 0.21.
...
* gnu/packages/cran.scm (r-tinytex): Update to 0.21.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
29825fe290
gnu: r-callr: Update to 3.4.3.
...
* gnu/packages/cran.scm (r-callr): Update to 3.4.3.
2020-04-01 11:15:26 +02:00
Ricardo Wurmus
0b4067277e
gnu: r-sn: Update to 1.6-0.
...
* gnu/packages/statistics.scm (r-sn): Update to 1.6-0.
[propagated-inputs]: Add r-quantreq.
2020-04-01 11:15:25 +02:00
Ricardo Wurmus
13472a670c
gnu: r-gtools: Update to 3.8.2.
...
* gnu/packages/statistics.scm (r-gtools): Update to 3.8.2.
2020-04-01 11:15:25 +02:00
Ricardo Wurmus
383895dde4
gnu: r-foreach: Update to 1.5.0.
...
* gnu/packages/statistics.scm (r-foreach): Update to 1.5.0.
[native-inputs]: Add r-knitr.
2020-04-01 11:15:25 +02:00
Ricardo Wurmus
53477d9786
gnu: r-tibble: Update to 3.0.0.
...
* gnu/packages/statistics.scm (r-tibble): Update to 3.0.0.
[propagated-inputs]: Add r-ellipsis, r-lifecycle, r-magrittr, and r-vctrs.
[native-inputs]: Add r-knitr.
2020-04-01 11:15:25 +02:00
John Soo
31e47945d3
gnu: Add emacs-elf-mode.
...
* gnu/packages/emacs-xyz.scm (emacs-elf-mode): New variable.
2020-04-01 10:43:44 +02:00
John Soo
61e10fa839
gnu: Add emacs-imenu-list.
...
* gnu/packages/emacs-xyz.scm (emacs-imenu-list): New variable.
2020-04-01 10:36:39 +02:00
John Soo
1d5c93d9f8
gnu: Add emacs-evil-tmux-navigator.
...
* gnu/packages/emacs-xyz.scm (emacs-evil-tmux-navigator): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-04-01 09:04:53 +01:00
Efraim Flashner
fba0fea4a6
gnu: toot: Adjust custom phases.
...
* gnu/packages/mastodon.scm (toot)[arguments]: 'check is already run
after 'install so replace 'check rather than re-inserting it.
2020-04-01 10:22:33 +03:00
Efraim Flashner
b7417f3d54
gnu: toot: Update to 0.25.2.
...
* gnu/packages/mastodon.scm (toot): Update to 0.25.2.
2020-04-01 10:21:48 +03:00
Efraim Flashner
5619741752
gnu: vim-asyncrun: Update to 2.7.1.
...
* gnu/packages/vim.scm (vim-asyncrun): Update to 2.7.1.
2020-04-01 10:19:33 +03:00
Efraim Flashner
2a844af991
gnu: mpv-mpris: Switch to copy-build-system.
...
* gnu/packages/video.scm (mpv-mpris)[build-system]: Switch to
copy-build-system.
[arguments]: Add custom 'build phase before 'install phase.
2020-04-01 10:17:47 +03:00
Efraim Flashner
b51a37b116
gnu: mpv-mpris: Update to 0.4.
...
* gnu/packages/video.scm (mpv-mpris): Update to 0.4.
2020-04-01 10:11:35 +03:00
Efraim Flashner
dbb58f28ea
gnu: font-gnu-unifont: Update to 13.0.01.
...
* ngu/packages/fonts.scm (font-gnu-unifont): Update to 13.0.01.
[home-page]: Follow redirect.
2020-04-01 09:39:13 +03:00
Efraim Flashner
17264e362c
gnu: emacs-discover-my-major: Don't use unstable tarball.
...
* gnu/packages/emacs-xyz.scm (emacs-discover-my-major)[source]: Download
using git-fetch. Use new upstream URI.
[home-page]: Update to new home-page.
2020-04-01 09:16:24 +03:00
Efraim Flashner
f12bd0bedd
system: Move nanorc to XDG_CONFIG_HOME.
...
* gnu/system/shadow.scm (skeleton-directory): Move .nanorc to
.config/nano/nanorc.
2020-04-01 07:50:48 +03:00
Ricardo Wurmus
92dae7a605
gnu: mumi: Update to 0.0.0-11.0e9af8d.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.0-11.0e9af8d.
2020-04-01 06:07:28 +02:00
Raghav Gururajan
f1cf62f5dc
gnu: Add libantlr3c.
...
* gnu/packages/java.scm (libantlr3c): New variable.
Co-authored by Maxim Cournoyer.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2020-03-31 22:31:43 -04:00
Ricardo Wurmus
284b27c5ae
gnu: mumi: Update to 0.0.0-10.f7d6a54.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.0-10.f7d6a54.
2020-04-01 04:28:19 +02:00
Kyle Meyer
9cbc5fae80
gnu: git-annex: Update to 8.20200330.
...
* gnu/packages/haskell-apps.scm (git-annex): Update to 8.20200330.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-04-01 01:20:42 +02:00
Jack Hill
a7cc13ed83
gnu: gimp: Disable automatic update checking
...
* gnu/packages/gimp.scm (gimp)[arguments]: Disable update checking
in #:configure-flags.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-31 18:39:56 -04:00
Ludovic Courtès
e62f6f77fe
gnu: gnumach: Fix compilation.
...
* gnu/packages/hurd.scm (gnumach)[arguments]: Inherit arguments from
GNUMACH-HEADERS.
[native-inputs]: Add AUTOCONF, AUTOMAKE, and TEXINFO-4.
2020-04-01 00:12:31 +02:00
Ludovic Courtès
b87d7002b7
Revert "gnu: coreutils: Fix cross-compilation to i586-pc-gnu."
...
This reverts commit 67cbfeae30 , which is
not longer necessary now that the 'ld.so' linker script of the cross
glibc contains "libhurduser.so libmachuser.so".
2020-04-01 00:12:31 +02:00
Jan Nieuwenhuizen
b3bd475696
gnu: cross-libc: Build fix for the Hurd.
...
This fixes cross building of coreutils, e.g.
./pre-inst-env guix build --target=i586-pc-gnu coreutils
* gnu/packages/cross-base.scm (cross-libc): Add -lhurduser, -lmachuser for the
Hurd.
2020-04-01 00:12:31 +02:00
Raghav Gururajan
d82539d35f
gnu: Add spandsp.
...
* gnu/packages/telephony.scm (spandsp): New variable.
Co-authored by Maxim Cournoyer.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2020-03-31 17:02:58 -04:00
Vitaliy Shatrov
3de5b4047e
gnu: Add neverball
...
* gnu/packages/games.scm (neverball): New variable.
2020-03-31 20:19:21 +02:00
Leo Famulari
653a51cb28
gnu: pam-krb5: Fix CVE-2020-10595.
...
* gnu/packages/patches/pam-krb5-CVE-2020-10595.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/admin.scm (pam-krb5)[source]: Use it.
2020-03-31 13:31:57 -04:00
Leo Famulari
2206805c2c
gnu: python-pyyaml: Update to 5.3.1 [fixes CVE-2020-1747]
...
* gnu/packages/python-xyz.scm (python-pyyaml): Update to 5.3.1.
2020-03-31 13:18:47 -04:00
Paul Garlick
233e1ed3ad
gnu: Add perl-class-mix.
...
* gnu/packages/perl.scm (perl-class-mix): New variable.
2020-03-31 17:47:06 +01:00
Paul Garlick
f73e7fea69
gnu: Add perl-params-classify.
...
* gnu/packages/perl.scm (perl-params-classify): New variable.
2020-03-31 17:47:05 +01:00
Paul Garlick
e3f892ae91
gnu: Add perl-devel-callchecker.
...
* gnu/packages/perl.scm (perl-devel-callchecker): New variable.
2020-03-31 17:47:04 +01:00
Paul Garlick
f83674aa46
gnu: Add perl-dynaloader-functions.
...
* gnu/packages/perl.scm (perl-dynaloader-functions): New variable.
2020-03-31 17:46:55 +01:00
Ricardo Wurmus
11ef009e7a
gnu: mumi: Update to 0.0.0-9.5fdbc3e.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.0-9.5fdbc3e.
2020-03-31 17:50:51 +02:00
Arne Babenhauserheide
ef4b5f2fed
profiles: Compute manual database entries in parallel.
...
This provides a 36% speedup on an SSD and 4 cores for the 1.5K man pages
in the manual database derivation of:
guix environment --ad-hoc jupyter python-ipython python-ipykernel
* guix/profiles.scm (manual-database)[build]: Add 'print-string',
'print', and 'compute-entry'. Change 'compute-entries' to call
'compute-entry' in 'n-par-map'.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2020-03-31 14:55:42 +02:00
Ludovic Courtès
67cbfeae30
gnu: coreutils: Fix cross-compilation to i586-pc-gnu.
...
Until now cross-compilation would fail with:
i586-pc-gnu-ld: src/copy.o: undefined reference to symbol 'file_chauthor'
i586-pc-gnu-ld: /gnu/store/…-glibc-cross-i586-pc-gnu-2.29/lib/libhurduser.so.0.3: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
* gnu/packages/base.scm (coreutils)[arguments]: When 'hurd-target?', add
#:configure-flags.
2020-03-31 14:55:42 +02:00
Ludovic Courtès
2c33901fb1
ci: Fix 'evaluation-spec' binding.
...
* guix/ci.scm (<evaluation>)[spec]: Add "specification", which is what
the JSON field is actually called.
2020-03-31 14:55:42 +02:00
Ludovic Courtès
06efbe2fba
gnu: hwloc@2: Update to 2.2.0.
...
* gnu/packages/mpi.scm (hwloc-2): Update to 2.2.0.
2020-03-31 14:55:42 +02:00
Ludovic Courtès
8db4e704dc
gnu: hwloc@2: Skip test that fails on emulated hardware.
...
Works around <https://bugs.gnu.org/40342 >.
* gnu/packages/mpi.scm (hwloc-2)[arguments]: Add
'skip-test-that-fails-on-qemu' phase.
2020-03-31 14:55:42 +02:00
Alexandru-Sergiu Marton
031610aa8a
gnu: scdoc: Update to 1.10.1.
...
* gnu/packages/man.scm (scdoc): Update to 1.10.1.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-03-31 15:51:07 +03:00
Tobias Geerinckx-Rice
4b163550bd
gnu: Order module imports in (gnu packages ntp).
...
This shouldn't cause any conflicts :-)
* gnu/packages/ntp.scm: Order module imports alphabetically.
2020-03-31 14:30:39 +02:00
Tobias Geerinckx-Rice
5acea98e4b
gnu: sonic: Fix installation directories.
...
* gnu/packages/speech.scm (sonic)[arguments]: Replace erroneous use of
DESTDIR with PREFIX. Add the required ‘rpath’ LDFLAGS together with a
‘respect-LDFLAGS’ phase.
2020-03-31 14:30:39 +02:00
Tobias Geerinckx-Rice
f255bec634
gnu: hexchat: Fix typo in synopsis.
...
* gnu/packages/messaging.scm (hexchat)[synopsis]: Lowercase ‘client’.
2020-03-31 14:30:39 +02:00
Tobias Geerinckx-Rice
4e839a83de
gnu: gmime: Update to 3.2.7.
...
* gnu/packages/mail.scm (gmime): Update to 3.2.7.
2020-03-31 14:30:39 +02:00
Tobias Geerinckx-Rice
61e079d6c5
gnu: font-rachana: Don't use unstable tarball.
...
* gnu/packages/fonts.scm (font-rachana)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
2020-03-31 14:30:39 +02:00
Tobias Geerinckx-Rice
0736d973d6
gnu: font-rachana: Update to 7.0.3.
...
* gnu/packages/fonts.scm (font-rachana): Update to 7.0.3.
2020-03-31 14:30:39 +02:00
Ricardo Wurmus
008b1aecf7
gnu: mumi: Update to 0.0.0-8.9f66dbc.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.0-8.9f66dbc.
2020-03-31 10:36:37 +02:00
Vincent Legoll
479e74d603
gnu: procenv: Make some inputs native & make multiline.
...
* gnu/packages/linux.scm (procenv)[native-inputs]: New field.
[inputs]: Move groff to native-inputs, move each remaining item on its own line.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-03-31 09:41:54 +02:00
Vincent Legoll
5450e30172
gnu: nftables: Make some inputs native.
...
* gnu/packages/linux.scm (procenv)[native-inputs]: New field.
[inputs]: Move bison & flex to native-inputs.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-03-31 09:41:47 +02:00
Vincent Legoll
913c8897ea
gnu: sudo: Make some inputs native.
...
* gnu/packages/admin.scm (sudo)[native-inputs]: New field.
[inputs]: Move groff to native-inputs.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-03-31 09:41:39 +02:00
Vincent Legoll
3926d0fcff
gnu: privoxy: Make some inputs native.
...
* gnu/packages/tor.scm (privoxy)[native-inputs]: New field.
[inputs]: Move autoconf & automake to native-inputs.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-03-31 09:41:32 +02:00
Raghav Gururajan
011f941279
gnu: antlr3: Make antlr3-3.3 public.
...
This is done in preparation of adding Linphone, which transitively requires
antlr3-3.3 through its belle-sip dependency.
* gnu/packages/java.scm (antlr3): Make antlr3-3.3 public.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2020-03-30 22:49:42 -04:00
John Soo
2330ef9427
gnu: Add emacs-flycheck-elm.
...
* gnu/packages/emacs-xyz.scm (emacs-flycheck-elm): New variable.
2020-03-31 00:29:26 +02:00
Ludovic Courtès
b771e0176a
pack: Adjust test to '--dry-run' changes.
...
This is a followup to 131f50cdc9 .
* tests/guix-pack.sh: Use '--no-grafts' in conjunction with '-n' and '-d'.
2020-03-31 00:06:36 +02:00
Ludovic Courtès
a357849f5b
guix package: Do not misdiagnose upgrades when there are propagated inputs.
...
Fixes <https://bugs.gnu.org/35872 >.
Reported by Andy Tai <atai@atai.org >.
* guix/profiles.scm (list=?, manifest-entry=?): New procedures.
* guix/scripts/package.scm (transaction-upgrade-entry): In the '=' case,
use 'manifest-entry=?' to determine whether it's an upgrade.
* tests/packages.scm ("transaction-upgrade-entry, zero upgrades,
propagated inputs"): New test.
2020-03-31 00:06:36 +02:00
Ludovic Courtès
b9c79cae53
guix package: Add 'transaction-upgrade-entry' test.
...
* tests/packages.scm ("transaction-upgrade-entry, zero upgrades, equivalent package"):
New test.
2020-03-31 00:06:36 +02:00
Ludovic Courtès
1a9a373eb4
profiles: 'lower-manifest-entry' recurses on dependencies.
...
* guix/profiles.scm (lower-manifest-entry)[recurse]: New procedure.
Call it on dependencies and set the 'dependencies' field accordingly.
2020-03-31 00:06:36 +02:00
Ludovic Courtès
a187cc5628
guix package: 'transaction-upgrade-entry' swallows build requests.
...
Fixes a regression introduced in
131f50cdc9 whereby the install/upgrade
message would not be displayed:
$ guix upgrade -n
2.1 MB would be downloaded:
/gnu/store/…-something-1.2
/gnu/store/…-its-dependency-2.3
This is because we'd directly abort from 'transaction-upgrade-entry' to
the build handler of 'build-notifier'.
* guix/scripts/package.scm (transaction-upgrade-entry): Call 'string=?'
expression in 'with-build-handler'.
* tests/packages.scm ("transaction-upgrade-entry, grafts"): New test.
2020-03-31 00:06:36 +02:00
Ludovic Courtès
190ddfe21e
guix package: 'transaction-upgrade-entry' uses 'lower-manifest-entry'.
...
* guix/profiles.scm (lower-manifest-entry): Export.
* guix/scripts/package.scm (transaction-upgrade-entry)[lower-manifest-entry*]
[upgrade]: New procedures.
Use 'lower-manifest-entry*' instead of 'package-derivation' to compute
the output file name of PKG.
2020-03-31 00:06:36 +02:00
Nicolas Goaziou
df7bb43bd0
gnu: emacs-stumpwm-mode: Bump revision.
...
* gnu/packages/emacs-xyz.scm (emacs-stumpwm-mode): Bump revision. This is
a followup to 31ee29161c .
2020-03-30 22:51:02 +02:00
John Soo
47fc5229eb
gnu: Add emacs-dhall-mode.
...
* gnu/packages/emacs-xyz.scm (emacs-dhall-mode): New variable.
2020-03-30 22:41:27 +02:00
John Soo
1c2f6d66ec
gnu: Add emacs-haskell-snippets.
...
* gnu/packages/emacs-xyz.scm (emacs-haskell-snippets): New variable.
2020-03-30 22:38:09 +02:00
Oleg Pykhalov
9a12243c61
gnu: Add stumpish.
...
* gnu/packages/wm.scm (stumpish): New variable.
2020-03-30 23:20:54 +03:00
Oleg Pykhalov
65051fdce1
gnu: Add sbcl-stumpwm-ttf-fonts.
...
* gnu/packages/wm.scm (sbcl-stumpwm-ttf-fonts): New variable.
* doc/guix-cookbook.texi (Customizing a Window Manager): Document
SBCL-STUMPWM-TTF-FONTS installation and configuration.
2020-03-30 23:20:54 +03:00
Oleg Pykhalov
31ee29161c
gnu: emacs-stumpwm-mode: Update to 0.0.1-1.dd5b037.
...
* gnu/packages/emacs-xyz.scm (emacs-stumpwm-mode): Update to 0.0.1-1.dd5b037.
2020-03-30 23:20:54 +03:00
Oleg Pykhalov
1fbd1b4cdb
gnu: Add sbcl-clx-truetype.
...
* gnu/packages/lisp-xyz.scm (sbcl-clx-truetype): New variable.
2020-03-30 23:20:54 +03:00
Leo Famulari
49d20d51e9
Revert "system: Move nanorc to XDG_CONFIG_HOME."
...
This reverts commit bd71818df3 .
This changed caused system reconfiguration to fail like this:
------
building /gnu/store/y1x8asbzw624ywgkpin35p1i4bqnyfy2-skel.drv...
Backtrace:
4 (primitive-load "/gnu/store/2x7d0jsbgf2ndb5fsk0nj07rhsx?")
In ice-9/eval.scm:
619:8 3 (_ #f)
In ice-9/boot-9.scm:
260:13 2 (for-each #<procedure 7ffff6ad8100 at ice-9/eval.scm:3?> ?)
In guix/build/utils.scm:
343:27 1 (_ "/gnu/store/ajrgkj1s9vdcq00drn703f4zj9dvfrsv-nanorc" ?)
In unknown file:
0 (copy-file "/gnu/store/ajrgkj1s9vdcq00drn703f4zj9dvfrs?" ?)
ERROR: In procedure copy-file:
In procedure copy-file: No such file or directory
`/gnu/store/v1grsca743phw41lyf63dzmh9nz5jlpn-bash_profile' -> `.bash_profile'
`/gnu/store/xdsaw0mj6axj427hyi6ysrnsxi21n7d5-bashrc' -> `.bashrc'
`/gnu/store/6i0b236dyar78zc5k5hrj5dv3vr4zb9w-zprofile' -> `.zprofile'
`/gnu/store/ajrgkj1s9vdcq00drn703f4zj9dvfrsv-nanorc' -> `.config/nano/nanorc'
builder for `/gnu/store/y1x8asbzw624ywgkpin35p1i4bqnyfy2-skel.drv' failed with exit code 1
------
2020-03-30 16:02:38 -04:00
Vagrant Cascadian
04fd952d54
gnu: reprotest: Update to 0.7.14.
...
* gnu/packages/diffoscope (reprotest): Update to 0.7.14.
* gnu/packages/patches/reprotest-support-guix.patch: Remove file.
* gnu/local.mk [dist_patch_DATA]: Update accordingly.
2020-03-30 12:58:44 -07:00
Vagrant Cascadian
03227eeb12
gnu: diffoscope: Update to 138.
...
* gnu/packages/diffoscope (diffoscope): Update to 138.
2020-03-30 12:43:22 -07:00
Lars-Dominik Braun
1110a421f4
gnu: Add python-tortoise-orm.
...
* gnu/packages/databases.scm (python-tortoise-orm): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-30 14:49:50 -04:00
Lars-Dominik Braun
0ab3a8c244
gnu: Add python-ciso8601.
...
* gnu/packages/time.scm (python-ciso8601): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-30 14:49:50 -04:00
Lars-Dominik Braun
c8fdf86d33
gnu: Add python-pypika.
...
Not to be confused with python-pika, which is a different package.
* gnu/packages/databases.scm (python-pypika): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-30 14:49:50 -04:00
Lars-Dominik Braun
ba0b249dd8
gnu: Add python-aiosqlite.
...
* gnu/packages/databases.scm (python-aiosqlite): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-30 14:49:50 -04:00
Lars-Dominik Braun
4edefc5075
gnu: Add python-aiounittest.
...
* gnu/packages/check.scm (python-aiounittest): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-30 14:49:49 -04:00
John Soo
5199be620f
gnu: Add emacs-flycheck-rust.
...
* gnu/packages/emacs-xyz.scm (emacs-flycheck-rust): New variable.
2020-03-30 19:11:50 +02:00
Pierre Neidhardt
0ad6ecb84b
gnu: sbcl-cl-containers: Update to 20200328.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-containers): Update to 20200328.
2020-03-30 15:22:48 +02:00
Pierre Neidhardt
f96aa12339
gnu: sbcl-serapeum: Update to 20200330.
...
* gnu/packages/lisp-xyz.scm (sbcl-serapeum): Update to 20200330.
2020-03-30 15:22:48 +02:00
John Soo
ea5a3a43f8
gnu: Add emacs-racer.
...
* gnu/packages/emacs-xyz.scm (emacs-racer): New variable.
2020-03-30 15:00:06 +02:00
John Soo
9a69218a16
gnu: Add emacs-evil-escape.
...
* gnu/packages/emacs-xyz.scm (emacs-evil-escape): New variable.
2020-03-30 15:00:05 +02:00
Efraim Flashner
bd71818df3
system: Move nanorc to XDG_CONFIG_HOME.
...
* gnu/system/shadow.scm (default-skeletons): Move .nanorc to
.config/nano/nanorc.
2020-03-30 15:40:30 +03:00
John Soo
f931d46ce3
gnu: Add emacs-company-coq.
...
* gnu/packages/emacs-xyz.scm (emacs-company-coq): New variable.
2020-03-30 14:37:41 +02:00
John Soo
1d3c1f4b49
gnu: Add emacs-elm-mode.
...
* gnu/packages/emacs-xyz.scm (emacs-elm-mode): New variable.
2020-03-30 14:15:39 +02:00
Joseph LaFreniere
9782200ce5
gnu: Add emacs-caps-lock.
...
* gnu/packages/emacs-xyz.scm (emacs-caps-lock): New variable.
2020-03-30 14:09:25 +02:00
Evan Straw
6957e4c13d
gnu: emacs-arduino-mode: Change to a maintained fork.
...
* gnu/packages/emacs-xyz.scm (emacs-arduino-mode)[source]: Update URI.
[arguments]: Add phase to fix obsolete warnings.
[home-page]: Update home page.
2020-03-30 13:59:42 +02:00
Marius Bakke
6e27d1088d
.gitignore: Ignore test results in tests/services.
...
This is a follow-up to commit d3e439e355 .
* .gitignore: Add /tests/services/*.trs.
2020-03-30 12:24:55 +02:00
Brendan Tildesley
927f365566
gnu: ath9k-htc-firmware: Correct home-page url.
...
* gnu/packages/firmware.scm (ath9k-htc-firmware)[home-page]: Correct url.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-03-30 10:54:00 +03:00
Efraim Flashner
043ee597a7
gnu: antlr3: Don't use unstable tarball.
...
* gnu/packages/java.scm (antlr3)[source]: Download using git-fetch.
2020-03-30 10:05:53 +03:00
Efraim Flashner
2876b23345
gnu: java-javaewah: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-javaewah)[source]: Download using
git-fetch.
2020-03-30 10:05:53 +03:00
Efraim Flashner
242af2954e
gnu: java-jmock: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-jmock)[source]: Download using git-fetch.
2020-03-30 10:05:52 +03:00
Efraim Flashner
7cf26f249a
gnu: java-jmock-1: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-jmock-1)[source]: Download using git-fetch.
[home-page]: Update home-page.
2020-03-30 10:05:52 +03:00
Efraim Flashner
7cf90f6419
gnu: java-easymock: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-easymock)[source]: Download using git-fetch.
[home-page]: Use https.
2020-03-30 10:05:52 +03:00
Efraim Flashner
3dc7a8ce73
gnu: java-objenesis: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-objenesis)[source]: Download using
git-fetch.
2020-03-30 10:05:52 +03:00
Efraim Flashner
654f997d98
gnu: java-asm: Download using https.
...
* gnu/packages/java.scm (java-asm)[source]: Use https URL.
2020-03-30 10:05:52 +03:00
Efraim Flashner
df9487c594
gnu: java-modello-core: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-modello-core)[source]: Download using
git-fetch.
2020-03-30 10:05:51 +03:00
Efraim Flashner
16c6276399
gnu: java-sisu-build-api: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-sisu-build-api)[source]: Download using
git-fetch.
2020-03-30 10:05:51 +03:00
Efraim Flashner
d9e356a893
gnu: java-plexus-sec-dispatcher: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-plexus-sec-dispatcher)[source]: Download
using git-fetch.
2020-03-30 10:05:51 +03:00
Efraim Flashner
5723137a4c
gnu: java-plexus-compiler-api: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-plexus-compiler-api)[source]: Download
using git-fetch.
2020-03-30 10:05:51 +03:00
Efraim Flashner
d0e6461370
gnu: java-plexus-cipher: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-plexus-cipher)[source]: Download using
git-fetch.
2020-03-30 10:05:51 +03:00
Efraim Flashner
48fe942c85
gnu: java-plexus-io: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-plexus-io)[source]: Download using git-fetch.
2020-03-30 10:05:50 +03:00
Efraim Flashner
3a26ea3a58
gnu: java-plexus-container-default-bootstrap: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-plexus-container-default-bootstrap)
[source]: Download using git-fetch.
2020-03-30 10:05:50 +03:00
Efraim Flashner
9520b2b16e
gnu: java-plexus-classworlds: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-plexus-classworlds)[source]: Download
using git-fetch.
2020-03-30 10:05:50 +03:00
Efraim Flashner
c4b67ba3a8
gnu: java-plexus-interpolation: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-plexus-interpolation)[source]: Download
using git-fetch.
2020-03-30 10:05:50 +03:00
Efraim Flashner
c53badd452
gnu: java-plexus-utils: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-plexus-utils)[source]: Download using
git-fetch.
2020-03-30 10:05:50 +03:00
Efraim Flashner
42c1c59ea1
gnu: java-junit: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-junit)[source]: Download using git-fetch.
[home-page]: Update home-page.
2020-03-30 10:05:49 +03:00
Efraim Flashner
2703d57343
gnu: java-hamcrest-core: Don't use unstable tarball.
...
* gnu/packages/java.scm (java-hamcrest-core)[source]: Download using
git-fetch.
2020-03-30 10:05:49 +03:00
Jan Nieuwenhuizen
3e3364fc52
gnu: gmp: Build fix for mingw.
...
* gnu/packages/multiprecision.scm (gmp) [arguments]: Add `setenv' phase for
mingw target.
2020-03-29 23:54:30 +02:00
Ludovic Courtès
71d17a09ee
gnu: commencement: Micro-optimize the package graph.
...
This removes 2 'add-data-to-store-cache' lookups.
* gnu/packages/commencement.scm (flex-boot0): Move (package (inherit …))
outside the 'propagated-inputs' field to avoid creating a new node each
time the field is accessed.
2020-03-29 23:14:28 +02:00
Ludovic Courtès
5a17b9b673
build-system/gnu: Optimize the package graph.
...
With this change, the output of:
guix graph -e '(@@ (gnu packages commencement) coreutils-final)' |grep 'label = ' | wc -l
drops from 76 nodes to 68 nodes, and the "add-data-to-store-cache" hit
rate for:
guix build libreoffice -d --no-grafts
drops from 3.9% to 2.6%.
* guix/build-system/gnu.scm (package-with-explicit-inputs*)[cut?]:
Adjust condition to exclude packages with build systems other than
GNU-BUILD-SYSTEM, such as 'ld-wrapper-boot3'.
2020-03-29 23:14:28 +02:00
Ludovic Courtès
9f78552996
packages: 'package->bag' keys cache by replacement.
...
* guix/packages.scm (package->bag): When GRAFT? is true, use PACKAGE's
replacement as the cache key. Remove GRAFT? from the list of
secondary cache keys.
2020-03-29 23:14:28 +02:00
Ludovic Courtès
18c8a4396b
deploy: Use 'map/accumulate-builds'.
...
* guix/scripts/deploy.scm (guix-deploy): Use 'map/accumulate-builds'
instead of 'for-each'.
2020-03-29 23:14:27 +02:00
Ludovic Courtès
d089b23335
deploy: Factorize machine deployment.
...
* guix/scripts/deploy.scm (deploy-machine*): New procedure.
(guix-deploy): Call it in 'for-each'.
2020-03-29 23:14:27 +02:00
Leo Famulari
4c60d5325e
gnu: MPD: Update to 0.21.21.
...
* gnu/packages/mpd.scm (mpd): Update to 0.21.21.
2020-03-29 16:51:58 -04:00
Nicolas Goaziou
1a17d21b24
gnu: Add parlatype.
...
* gnu/packages/gnome.scm (parlatype): New variable.
2020-03-29 22:40:53 +02:00
Michael Rohleder
3bf45ff4e0
gnu: font-jetbrains-mono: Update to 1.0.3.
...
* gnu/packages/fonts.scm (font-jetbrains-mono): update to 1.0.3
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:47 +02:00
Michael Rohleder
4d59d9faad
gnu: emacs-helm-org-contacts: Update to 20200319.
...
* gnu/packages/emacs-xyz.scm (emacs-helm-org-contacts): update to 20200310
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:47 +02:00
Alexandros Theodotou
65f61dcca2
gnu: Add fogpad.
...
* gnu/packages/music.scm (fogpad): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:47 +02:00
Alexandros Theodotou
bce1e728c5
gnu: Add regrader.
...
* gnu/packages/music.scm (regrader): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:47 +02:00
Alexandros Theodotou
cedd56f262
gnu: Add vl1-emulator.
...
* gnu/packages/music.scm (vl1-emulator): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:47 +02:00
Alex ter Weele
99f3fdd182
gnu: python-typing-extensions: Update to 3.7.4.1.
...
* gnu/packages/python-xyz (python-typing-extensions): Update to 3.7.4.1.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:47 +02:00
Alexey Abramov
5b8a60ff5d
gnu: emacs-next: Add harfbuzz (text shaping engine) to inputs.
...
* gnu/packages/emacs.scm (emacs-next)[inputs]: Add harfbuzz.
[arguments]: Enable harfbuzz in #:configure-flags.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:47 +02:00
Marius Bakke
2f6ad77b2f
gnu: ghc-esqueleto: Update to 3.3.1.1.
...
* gnu/packages/haskell-xyz.scm (ghc-esqueleto): Update to 3.3.1.1.
2020-03-29 22:34:46 +02:00
Marius Bakke
96c813ce4c
gnu: ghc-yesod-persistent: Update to 1.6.0.4.
...
* gnu/packages/haskell-web.scm (ghc-yesod-persistent): Update to 1.6.0.4.
2020-03-29 22:34:46 +02:00
Marius Bakke
5adb2c1e8d
gnu: ghc-scalpel: Fix typo in description.
...
* gnu/packages/haskell-web.scm (ghc-scalpel)[description]: Add punctuation.
2020-03-29 22:34:46 +02:00
Alexandru-Sergiu Marton
78858787ff
gnu: ghc-persistent-sqlite: Update to 2.10.5.2.
...
* gnu/packages/haskell-xyz.scm (ghc-persistent-sqlite): Update to 2.10.5.2.
[inputs]: Remove GHC-OLD-LOCALE.
[native-inputs]: Add GHC-PERSISTENT-TEST, GHC-EXCEPTIONS, GHC-FAST-LOGGER,
GHC-HUNIT, GHC-QUICKCHECK, GHC-SYSTEM-FILEIO, and GHC-SYSTEM-FILEPATH.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:46 +02:00
Alexandru-Sergiu Marton
ce32f7c7f2
gnu: Add ghc-persistent-test.
...
* gnu/packages/haskell-xyz.scm (ghc-persistent-test): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:46 +02:00
Alexandru-Sergiu Marton
d5378e98b4
gnu: ghc-persistent-template: Update to 2.8.0.
...
* gnu/packages/haskell-xyz.scm (ghc-persistent-template): Update to 2.8.0.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:46 +02:00
Alexandru-Sergiu Marton
8c9697a954
gnu: ghc-persistent: Update to 2.10.4.
...
* gnu/packages/haskell-xyz.scm (ghc-persistent): Update to 2.10.4.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:46 +02:00
Alexandru-Sergiu Marton
9989d1464f
gnu: Add ghc-html-conduit.
...
* gnu/packages/haskell-web.scm (ghc-html-conduit): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:45 +02:00
Alexandru-Sergiu Marton
b1dbc9f580
gnu: Add ghc-pwstore-fast.
...
* gnu/packages/haskell-xyz.scm (ghc-pwstore-fast): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:45 +02:00
Alexandru-Sergiu Marton
49bcca8478
gnu: Add ghc-nonce.
...
* gnu/packages/haskell-xyz.scm (ghc-nonce): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:45 +02:00
Alexandru-Sergiu Marton
ec8491b031
gnu: Add ghc-basic-prelude.
...
* gnu/packages/haskell-xyz.scm (ghc-basic-prelude): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:45 +02:00
Alexandru-Sergiu Marton
fbe32d46e8
gnu: Add ghc-project-template.
...
* gnu/packages/haskell-xyz.scm (ghc-project-template): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:45 +02:00
Brian Leung
745879a746
gnu: Add emacs-hlint-refactor-mode.
...
* gnu/packages/emacs-xyz.scm (emacs-hlint-refactor-mode): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:45 +02:00
Brian Leung
79617a0122
gnu: Add apply-refact.
...
* gnu/packages/haskell-apps.scm (apply-refact): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-29 22:34:44 +02:00
Marius Bakke
1e19569b41
gnu: Move the deprecated 'ghc-stylish-haskell' closer to its replacement.
...
Inheritance across modules can cause unbound variable errors because
of cyclic dependencies between the modules.
* gnu/packages/haskell-xyz.scm (ghc-stylish-haskell): Move from here ...
* gnu/packages/haskell-apps.scm (ghc-stylish-haskell): ... to here.
2020-03-29 22:34:44 +02:00
Nicolas Goaziou
9e9dd4098f
gnu: Add pocketsphinx.
...
* gnu/packages/speech.scm (pocketsphinx): New variable.
2020-03-29 22:32:54 +02:00
Nicolas Goaziou
337fc72228
gnu: Add sphinxbase.
...
* gnu/packages/speech.scm (sphinxbase): New variable.
2020-03-29 22:32:53 +02:00
Leo Famulari
e5b44b06b3
gnu: GnuPG: Really use ~/.guix-profile/bin/pinentry by default.
...
Fixes <https://bugs.gnu.org/24076 >.
* gnu/packages/patches/gnupg-default-pinentry.patch: New file. Use $HOME to find
the user's Guix profile and installed pinentry.
* gnu/local.mk (dist_patch_DATA): Add the patch.
* gnu/packages/gnupg.scm (gnupg)[source]: Use it.
2020-03-29 15:25:50 -04:00
Hartmut Goebel
8f83699ba0
gnu: Add flyer-composer-cli.
...
* gnu/packages/pdf.scm (flyer-composer-cli): New variable.
2020-03-29 21:07:28 +02:00
Hartmut Goebel
e34b06b758
gnu: Add flyer-composer.
...
* gnu/packages/pdf.scm (flyer-composer): New variable.
2020-03-29 21:07:28 +02:00
Jakub Kądziołka
8b87d095b3
gnu: z3: Fix build determinism.
...
* gnu/packages/maths.scm (z3)[arguments]: Add a phase to set
PYTHONHASHSEED=0.
2020-03-29 20:35:33 +02:00
Efraim Flashner
04950d1ff6
gnu: tesseract-ocr: Don't use unstable tarball.
...
* gnu/packages/ocr.scm (tesseract-ocr)[source]: Download using git-fetch.
[home-page]: Use full URL.
2020-03-29 21:02:15 +03:00
Efraim Flashner
4eb40497b6
gnu: vowpal-wabbit: Don't use unstable tarball.
...
* gnu/packages/machine-learning.scm (vowpal-wabbit)[source]: Download
using git-fetch.
[arguments]: Add custom 'make-files-writable phase.
2020-03-29 20:50:24 +03:00
Efraim Flashner
a428fdd4d0
gnu: unionfs-fuse: Don't use unstable tarball.
...
* gnu/packages/linux.scm (unionfs-fuse)[source]: Download using git-fetch.
2020-03-29 20:50:24 +03:00
Efraim Flashner
fcc8f2fc46
gnu: txt2man: Don't use unstable tarball.
...
* gnu/packages/man.scm (txt2man)[source]: Download using git-fetch.
2020-03-29 20:50:24 +03:00
Efraim Flashner
a46498020b
gnu: nextpnr-ice40: Clean-up description.
...
* gnu/packages/fpga.scm (nextpnr-ice40)[description]: Appease guix lint.
2020-03-29 20:50:24 +03:00
Efraim Flashner
0e68695e79
gnu: nextpnr-ice40: Use a source file-name.
...
* gnu/packages/fpga.scm (nextpnr-ice40)[source]: Add file-name field.
2020-03-29 20:50:21 +03:00
Tobias Geerinckx-Rice
881903ae56
gnu: synthv1: Update to 0.9.13.
...
* gnu/packages/music.scm (synthv1): Update to 0.9.13.
2020-03-29 18:55:00 +02:00
Tobias Geerinckx-Rice
546948391a
gnu: padthv1: Update to 0.9.13.
...
* gnu/packages/music.scm (padthv1): Update to 0.9.13.
2020-03-29 18:54:58 +02:00
Tobias Geerinckx-Rice
1eb12d8419
gnu: samplv1: Update to 0.9.13.
...
* gnu/packages/music.scm (samplv1): Update to 0.9.13.
2020-03-29 18:54:57 +02:00
Tobias Geerinckx-Rice
0a54c38790
gnu: drumkv1: Update to 0.9.13.
...
* gnu/packages/music.scm (drumkv1): Update to 0.9.13.
2020-03-29 18:54:56 +02:00
Tobias Geerinckx-Rice
acf900eec3
gnu: cgit: Update to 1.2.3.
...
* gnu/packages/version-control.scm (cgit): Update to 1.2.3.
[inputs]: Update git to 2.25.1.
2020-03-29 18:40:58 +02:00
Tobias Geerinckx-Rice
f020c7cc44
gnu: xtl: Update to 0.6.13.
...
* gnu/packages/cpp.scm (xtl): Update to 0.6.13.
2020-03-29 18:40:58 +02:00
Tobias Geerinckx-Rice
a457c55a0a
gnu: numix-gtk-theme: Fix installation directory.
...
* gnu/packages/gnome-xyz.scm (numix-gtk-theme)[arguments]: Replace
erroneous use of DESTDIR with INSTALL_DIR in #:make-flags.
2020-03-29 18:40:58 +02:00
Tobias Geerinckx-Rice
ec5a3021c5
gnu: numix-gtk-theme: Fix name.
...
* gnu/package/gnome-xyz.scm (numix-gtk-theme): New public variable,
renamed from……
(numix-theme): …this now-deprecated one.
2020-03-29 18:40:57 +02:00
Tobias Geerinckx-Rice
991a571038
gnu: numix-theme: The ‘check’ phase already respects ‘#:tests?’.
...
* gnu/packages/gnome-xyz.scm (numix-theme)[arguments]: Don't delete
the ‘check’ phase.
2020-03-29 18:40:57 +02:00
Tobias Geerinckx-Rice
e08df3ad70
gnu: herbstluftwm: Put completions where fish expects them.
...
* gnu/packages/wm.scm (herbstluftwm)[arguments]: Set FISHCOMPLETIONDIR
in #:make-flags.
2020-03-29 18:40:57 +02:00
Tobias Geerinckx-Rice
78bf89de5a
gnu: herbstluftwm: The ‘check’ phase already respects ‘#:tests?’.
...
* gnu/packages/wm.scm (herbstluftwm)[arguments]: Don't delete the
‘check’ phase.
2020-03-29 18:40:57 +02:00
Tobias Geerinckx-Rice
faf6905560
gnu: xscreensaver: Put ‘app-defaults’ in the right place.
...
* gnu/packages/xdisorg.scm (xscreensaver)[arguments]: Drop /usr from
AD_DIR make flag.
2020-03-29 18:40:56 +02:00
Tobias Geerinckx-Rice
53b9df20c1
gnu: Remove more packages deprecated for over almost a year.
...
* gnu/packages/games.scm (armagetron-advanced)
(cataclysm-dark-days-ahead, gnubackgammon, l-abbaye-des-morts)
(the-battle-for-wesnoth, the-battle-for-wesnoth-server)
(project-starfighter, kiki-the-nano-bot, fish-fillets-ng)
(dungeon-crawl-stone-soup): Let's forget this ever happened.
* gnu/packages/emacs-xyz.scm (geiser, paredit, git-modes/old-name)
(magit, magit-svn, haskell-mode, emacs-emms-player-mpv, bbdb)
(ert-runner, groovy-emacs-modes): Remove variable.
* gnu/packages/engineering.scm (emacs-emms-player-simple-mpv)
(emacs-evil-ediff, emacs-evil-mu4e, emacs-wgrep-helm, ao): Likewise.
* gnu/packages/finance.scm (monero-core): Likewise.
* gnu/packages/gnome.scm (dungeon-crawl-stone-soup-tiles)
(tales-of-maj-eyal, battle-tanks, the-legend-of-edgar)
(gnome-tweak-tool): Likewise.
* gnu/packages/gnuzilla.scm (conkeror): Likewise.
* gnu/packages/guile-xyz.scm (mcron2): Likewise.
* gnu/packages/image.scm (pngcrunch): Likewise.
* gnu/packages/linux.scm (eudev-with-hwdb): Likewise.
* gnu/packages/maths.scm (qtoctave): Likewise.
* gnu/packages/package-management.scm (guile2.0-guix): Likewise.
* gnu/packages/php.scm (php-with-bcmath): Likewise.
* gnu/packages/python-xyz.scm (python-kivy-next, python2-kivy-next):
Likewise.
* gnu/packages/video.scm (livestreamer): Likewise.
* gnu/packages/virtualization.scm (lookingglass): Likewise.
* gnu/packages/vulkan.scm (vulkan-icd-loader): Likewise.
* gnu/packages/syndication.scm (newsbeuter): Likewise.
(newsboat)[description]: Remove historical footnote.
2020-03-29 18:40:56 +02:00
Jakub Kądziołka
57c3b71cbe
gnu: Update hash-extender.
...
* gnu/packages/crypto.scm (hash-extender): Update to newer commit.
* gnu/packages/patches/hash-extender-test-suite.patch: The patch
was merged upstream, no need to apply it anymore.
* gnu/local.mk (dist_patch_DATA): Unregister the patch file.
2020-03-29 18:35:06 +02:00
Jakub Kądziołka
1a4baf5119
gnu: sameboy: Add missing #t in phase.
...
* gnu/packages/emulators.scm (sameboy)[arguments]: Add a trailing #t
to the install phase.
2020-03-29 18:21:40 +02:00
Jakub Kądziołka
6a89997153
gnu: rgbds: Update to 0.3.10.
...
* gnu/packages/assembly.scm (rgbds): Update to 0.3.10.
2020-03-29 18:21:09 +02:00
Jakub Kądziołka
7cc9e1dc5a
algebra.scm: Add a copyright line
...
This is a follow-up to commit d96ad7fa1d .
2020-03-29 18:01:07 +02:00
Jakub Kądziołka
d96ad7fa1d
gnu: ntl: Update to 11.4.3.
...
* gnu/packages/algebra.scm (ntl): Update to 11.4.3.
[source], [home-page]: Use https URL.
[source](snippet): Remove bundled libtool.
[inputs]: Add gf2x.
[arguments](configure): Use invoke insteam of system*. Remove the no longer
supported WIZARD argument. Add a LIBTOOL parameter, since it's now
required. Enable building with gf2x. Pass the paths to dependencies
explicitly.
(eclib)[inputs]: Remove the transitive dependency on gmp, which is now
handled automatically by libtool.
2020-03-29 17:53:56 +02:00
Ludovic Courtès
033df23680
packages: Change 'guile-for-grafts' back to 2.0.
...
This reverts 2b6fe60599 , due to reports of
segfaults of Guile 3.0.2 during grafting.
* guix/packages.scm (guile-for-grafts): Change back to GUILE-2.0.
2020-03-29 15:35:47 +02:00
Ludovic Courtès
cea91813ac
gnu: guile3.0-websocket: Install .go files in the right place.
...
* gnu/packages/guile-xyz.scm (guile3.0-websocket)[arguments]: In
'update-guile-version' phase, change "/ccache" to "/site-ccache".
2020-03-29 15:32:18 +02:00
Evan Straw
8ffc20efb8
gnu: Add guile3.0-websocket.
...
* gnu/packages/guile-xyz.scm (guile3.0-websocket): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-29 15:32:18 +02:00
Ludovic Courtès
0e833ac5f4
services: shepherd: Mark '.go' derivations as non-substitutable.
...
* gnu/services/shepherd.scm (scm->go): Pass #:options to 'computed-file'.
2020-03-29 15:32:18 +02:00
Ludovic Courtès
131f50cdc9
'--dry-run' no longer implies '--no-grafts'.
...
* guix/scripts/archive.scm (%options): "dry-run" option no longer adds
'graft? #f to RESULT.
* guix/scripts/environment.scm (%options): Likewise.
* guix/scripts/pack.scm (%options): Likewise.
* guix/scripts/package.scm (%options): Likewise.
* guix/scripts/pull.scm (%options): Likewise.
* guix/scripts/system.scm (%options): Likewise.
2020-03-29 15:32:18 +02:00
Ludovic Courtès
710854304b
grafts: Don't rely on substitute info for missing store items.
...
Fixes <https://bugs.gnu.org/22990 >.
* guix/grafts.scm (references-oracle)[references*]: Remove call to
'substitution-oracle' and to 'references/substitutes'. Use
'references/cached' and 'build-derivations' right away instead.
2020-03-29 15:32:17 +02:00
Ludovic Courtès
c70cf1a724
store: Add 'references/cached'.
...
* guix/store.scm (references/cached): New procedure.
2020-03-29 15:32:17 +02:00
Ludovic Courtès
25af35fa32
profiles: Use 'mapm/accumulate-builds'.
...
* guix/profiles.scm (check-for-collisions): Use 'mapm/accumulate-builds'
to lower manifest entries. Call 'foldm' over the already-lowered entries.
(profile-derivation): Use 'mapm/accumulate-builds' instead of 'mapm'
when calling HOOKS.
2020-03-29 15:32:17 +02:00
Ludovic Courtès
584dfdac37
gexp: 'lower-inputs' uses 'mapm/accumulate-builds'.
...
This doesn't have an noticeable impact on the run time of
'guix system build desktop.tmp --no-grafts -d'.
* guix/gexp.scm (lower-inputs): Use 'mapm/accumulate-builds' instead of 'mapm'.
2020-03-29 15:32:17 +02:00
Ludovic Courtès
1213ea9bd9
guix build: Use 'map/accumulate-builds'.
...
* guix/scripts/build.scm (options->derivations): Use
'map/accumulate-builds' instead of 'append-map'.
2020-03-29 15:32:17 +02:00
Ludovic Courtès
c40bf5816c
store: Add 'map/accumulate-builds'.
...
* guix/store.scm (<unresolved>): New record type.
(build-accumulator, map/accumulate-builds, mapm/accumulate-builds): New
procedures.
* tests/store.scm ("map/accumulate-builds", "mapm/accumulate-builds"):
New tests.
2020-03-29 15:32:17 +02:00
Nicolas Goaziou
3b1886c9dd
gnu: emacs-flycheck-grammalecte: Fix location for external executables.
...
* gnu/packages/emacs-xyz.scm (emacs-flycheck-grammalecte)[inputs]: Add curl.
[arguments]: Fix path to all "python", "python3" and "curl" occurrences.
2020-03-29 15:14:13 +02:00
Marius Bakke
05fa5a84fa
gnu: libreoffice: Update to 6.4.2.2.
...
* gnu/packages/libreoffice.scm (libreoffice): Update to 6.4.2.2.
2020-03-29 13:49:18 +02:00
Marius Bakke
e8a225268e
gnu: qtwebkit: Update to 5.212.0-alpha4.
...
* gnu/packages/qt.scm (qtwebkit): Update to 5.212.0-alpha4.
[native-inputs]: Change from PYTHON-2.7 to PYTHON.
2020-03-29 13:49:18 +02:00
Efraim Flashner
b93b7b2585
gnu: msmtp: Don't rely on netcat to send queued messages.
...
* gnu/packages/mail.scm (msmtp)[arguments]: Adjust custom 'install phase
to also patch msmtpq to not need netcat.
2020-03-29 13:25:52 +03:00
Florian Pelz
acb41a4024
services: gdm: Add gdm user to 'video' supplementary group.
...
This makes it possible to use gdm with the 'uvesafb' kernel module.
See <https://lists.gnu.org/archive/html/guix-devel/2020-03/msg00389.html >.
* gnu/services/xorg.scm (%gdm-accounts): Set supplementary groups.
2020-03-29 10:12:08 +00:00
Tobias Geerinckx-Rice
77ca6fb316
gnu: libostree: Update to 2020.3.
...
* gnu/packages/package-management.scm (libostree): Update to 2020.3.
2020-03-29 01:45:33 +01:00
Tobias Geerinckx-Rice
cb427e7e84
gnu: libwacom: Update to 1.3.
...
* gnu/packages/xdisorg.scm (libwacom): Update to 1.3.
2020-03-29 01:45:32 +01:00
Tobias Geerinckx-Rice
ff38c70e5a
gnu: mtools: Update to 4.0.24.
...
* gnu/packages/mtools.scm (mtools): Update to 4.0.24.
2020-03-29 01:45:32 +01:00
Tobias Geerinckx-Rice
49d41690dd
gnu: igt-gpu-tools: Update home page.
...
* gnu/packages/admin.scm (igt-gpu-tools)[home-page]: Update.
2020-03-29 01:31:51 +01:00
Tobias Geerinckx-Rice
07ce7ae531
gnu: xfce4-screensaver: Update to 0.1.9.
...
* gnu/packages/xfce.scm (xfce4-screensaver): Update to 0.1.9.
2020-03-29 01:24:10 +01:00
Tobias Geerinckx-Rice
515b085180
gnu: xscreensaver: Update to 5.44.
...
* gnu/packages/xdisorg.scm (xscreensaver): Update to 5.44.
2020-03-29 01:24:10 +01:00
Tobias Geerinckx-Rice
33abf95fe6
gnu: vapoursynth: Update to 49.
...
* gnu/packages/video.scm (vapoursynth): Update to 49.
2020-03-29 01:24:10 +01:00
Tobias Geerinckx-Rice
b08c4f5fce
gnu: zimg: Update source hash.
...
The old and new checkouts differ only in file metadata…
* gnu/packages/image.scm (zimg)[source]: Update hash.
2020-03-29 01:24:10 +01:00
Tobias Geerinckx-Rice
aee7f3a307
gnu: youtube-dl: Update to 2020.03.24.
...
* gnu/packages/video.scm (youtube-dl): Update to 2020.03.24.
2020-03-29 01:24:10 +01:00
Tobias Geerinckx-Rice
d8006740b9
gnu: Remove packages deprecated for over a year.
...
* gnu/packages/admin.scm (intel-gpu-tools): Remove variable.
* gnu/packages/algebra.scm (giac-xcas): Likewise.
2020-03-29 01:24:10 +01:00
Tobias Geerinckx-Rice
8c9dcdea0a
gnu: igraph: Update to 0.8.1.
...
* gnu/packages/graph.scm (igraph): Update to 0.8.1.
2020-03-29 01:24:10 +01:00
Tobias Geerinckx-Rice
1b36f75867
gnu: Order module imports in (gnu packages admin).
...
* gnu/packages/admin.scm: Order module imports alphabetically.
2020-03-29 01:24:09 +01:00
Tobias Geerinckx-Rice
a48cf78a8e
gnu: thefuck: Update to 3.30.
...
* gnu/packages/admin.scm (thefuck): Update to 3.30.
[native-inputs]: Add go.
2020-03-29 01:24:09 +01:00
Tobias Geerinckx-Rice
e3fdc0197f
gnu: light: Update to 1.2.2.
...
* gnu/packages/linux.scm (light): Update to 1.2.2.
2020-03-29 01:24:09 +01:00
Tobias Geerinckx-Rice
75083257ac
gnu: acpica: Update to 20200326.
...
* gnu/packages/admin.scm (acpica): Update to 20200326.
2020-03-29 01:24:09 +01:00
Vincent Legoll
62b9ad19e3
gnu: Add wol.
...
* gnu/packages/networking.scm (wol): New public variable.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-03-29 00:02:46 +01:00
Nicolas Goaziou
735a8d997a
gnu: emacs-csv: Use proper Texinfo markup in description.
...
* gnu/packages/emacs-xyz.scm (emacs-csv)[description]: Use proper Texinfo
markup.
2020-03-28 21:33:16 +01:00
Amin Bandali
c2cf286c62
Update email address and Savannah handle for Amin Bandali.
...
* .mailmap, gnu/local.mk, gnu/packages/emacs-xyz.scm, gnu/packages/emacs.scm,
gnu/packages/fonts.scm, gnu/packages/fpga.scm, gnu/packages/lean.scm,
gnu/packages/maths.scm, gnu/packages/pulseaudio.scm: Update my email address.
* build-aux/git-authenticate.scm: Update my Savannah handle.
2020-03-28 16:30:07 -04:00
Nicolas Goaziou
255fb17b25
gnu: armadillo: Fix typo in description.
...
* gnu/packages/maths.scm (armadillo): Fix spaces after "eg.".
2020-03-28 21:27:33 +01:00
Marius Bakke
043c3d6499
gnu: KOrganizer: Fix typo in description.
...
* gnu/packages/kde-pim.scm (korganizer)[description]: clanedaring -> calendaring.
2020-03-28 20:03:50 +01:00
Efraim Flashner
619edce5cd
gnu: youtube-viewer: Add missing comment.
...
This is a follow-up to 315b98b9eb .
* gnu/packages/video.scm (youtube-viewer)[arguments]: Add comment
explaining why we don't install the gtk3 variant.
2020-03-28 21:07:08 +03:00
Leo Famulari
e4257138fe
Revert "gnu: gnupg: Use ~/.guix-profile/bin/pinentry by default."
...
This commit didn't work:
https://issues.guix.gnu.org/issue/24076#13
This reverts commit c7af9d0b5e .
2020-03-28 11:50:41 -04:00
Marius Bakke
388b432cea
deploy: Remove use of '~*' in format string.
...
...since 'msgfmt' fails to interpret it. Reported by Vagrant Cascadian
in <https://lists.gnu.org/archive/html/guix-devel/2020-03/msg00340.html >.
See also <https://bugs.gnu.org/37505 >.
* guix/scripts/deploy.scm (show-what-to-deploy): Use ~d instead of ~* when
displaying machines that will be deployed.
2020-03-28 15:55:13 +01:00
Alex Griffin
54cf5e2a35
gnu: pagekite: Update to 1.5.0.200327.
...
* gnu/packages/networking.scm (pagekite): Update to 1.5.0.200327.
2020-03-28 09:08:16 -05:00
Alex Griffin
27d8b9d976
gnu: python-socksipychain: Update to 2.1.1-1.eb5ee87.
...
* gnu/packages/python-xyz.scm (python-socksipychain): Update to 2.1.1-1.eb5ee87.
2020-03-28 09:07:06 -05:00
Pierre Neidhardt
aa7f3ec0e0
gnu: sbcl-cl-containers: Update to 20200212.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-containers): Update to 20200212.
2020-03-28 10:39:20 +01:00
Christopher Baines
24b5d8f745
gnu: lollypop: Update to 1.2.32.
...
* gnu/packages/gnome.scm (lollypop): Update to 1.2.32.
2020-03-28 09:17:59 +00:00
Ricardo Wurmus
27c3afa940
gnu: r-curl: Fix patch to respect CURL_CA_BUNDLE.
...
Fixes <https://debbugs.gnu.org/40262 >.
* gnu/packages/cran.scm (r-curl)[arguments]: Ensure CURLOPT_CAINFO actually
gets set.
2020-03-27 23:38:31 +01:00
Nicolas Goaziou
9fad055023
gnu: grammalecte: Update to 1.8.0.
...
* gnu/packages/dictionaries.scm (grammalecte): Update to 1.8.0.
2020-03-27 23:37:20 +01:00
Nicolas Goaziou
734eb7d79e
gnu: fet: Update to 5.44.0.
...
* gnu/packages/education.scm (fet): Update to 5.44.0.
2020-03-27 23:34:37 +01:00
Nicolas Goaziou
57be2cadf8
gnu: emacs-flycheck-grammalecte: Update to 1.0.
...
* gnu/packages/emacs-xyz.scm (emacs-flycheck-grammalecte): Update to 1.0.
2020-03-27 23:32:11 +01:00
Michael Rohleder
f71bce9bb2
gnu: tmate: Update to 2.4.0.
...
* gnu/packages/terminals.scm (tmate): Update to 2.4.0.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-27 16:49:37 -04:00
Michael Rohleder
816bce684c
gnu: Neofetch: Update to 7.0.0.
...
* gnu/packages/admin.scm (neofetch): Update to 7.0.0.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-27 16:42:26 -04:00
Ludovic Courtès
7cb77b7896
gnu: mailutils: Update to 3.9.
...
* gnu/packages/mail.scm (mailutils): Update to 3.9.
[arguments]: In 'prepare-test-suite' phase, adjust name of the mda
'testsuite' files.
2020-03-27 19:09:30 +01:00
Ludovic Courtès
2b6fe60599
packages: Use Guile 3.0 for grafts.
...
* guix/packages.scm (guile-2.0): Rename to...
(guile-for-grafts): ... this, and adjust callers. Refer to 'guile-3.0'
instead of 'guile-2.0'.
2020-03-27 19:09:30 +01:00
Ludovic Courtès
3139739802
gnu: guile-next: Update to 3.0.2.
...
* gnu/packages/guile.scm (guile-3.0): Update to 3.0.2.
* gnu/packages/patches/guile-3.0-crash.patch: Remove.
* gnu/local.mk (dist_patch_DATA): Remove it.
2020-03-27 19:09:30 +01:00
Pierre Neidhardt
eb5341c235
gnu: Add trivial-package-local-nicknames.
...
* gnu/packages/lisp-xyz.scm (cl-trivial-package-local-nicknames,
sbcl-trivial-package-local-nicknames): New variables.
2020-03-27 18:40:21 +01:00
Ricardo Wurmus
bc3fda5d2b
services/nfs: Replace nfs-version with nfs-versions.
...
Instead of accepting a string for just one protocol version accept a list of
supported versions.
* gnu/services/nfs.scm (<nfs-configuration>)[nfs-version]: Remove field and
replace...
[nfs-versions]: ...with this new field.
(nfs-shepherd-services): Pass as many "--nfs-version" options as there are
supported versions.
* doc/guix.texi (Network File System): Document nfs-versions.
2020-03-27 15:30:44 +01:00
Jakub Kądziołka
9483782a61
gnu: rust: Add 1.39
...
* gnu/packages/rust.scm (rust-1.39): New variable.
(%cargo-reference-hash): Add a comment explaining the role of the
variable.
2020-03-27 14:28:11 +01:00
Jakub Kądziołka
444bc2ddf2
gnu: rust: Add 1.38
...
All packages are still built with rustc 1.37, but users will see rustc
1.38 in their profiles, and packages that require newer compiler
versions will be possible to add.
* gnu/packages/rust.scm (rust-1.31): Factor out the
patch-command-exec-tests phase to a separate procedure.
(patch-command-exec-tests-phase): New procedure.
(rust): Rename to rust-1.37, make rust an alias.
(rust-1.38): New variable.
2020-03-27 14:28:06 +01:00
Nicolas Goaziou
1a7247c629
gnu: asymptote: Update to 2.65.
...
* gnu/packages/plotutils.scm (asymptote): Update to 2.65.
2020-03-27 12:20:35 +01:00
Ricardo Wurmus
2ba5253044
gnu: r-multiassayexperiment: Update to 1.12.6.
...
* gnu/packages/bioconductor.scm (r-multiassayexperiment): Update to 1.12.6.
2020-03-27 11:21:13 +01:00
Ricardo Wurmus
37732212a3
gnu: r-locfit: Update to 1.5-9.4.
...
* gnu/packages/statistics.scm (r-locfit): Update to 1.5-9.4.
2020-03-27 11:21:13 +01:00
Ricardo Wurmus
c99880320d
gnu: r-class: Update to 7.3-16.
...
* gnu/packages/statistics.scm (r-class): Update to 7.3-16.
2020-03-27 11:21:13 +01:00
Ricardo Wurmus
3345157fa6
gnu: r-xgboost: Update to 1.0.0.2.
...
* gnu/packages/cran.scm (r-xgboost): Update to 1.0.0.2.
2020-03-27 11:21:13 +01:00
Ricardo Wurmus
76d7ce4f45
gnu: r-rjava: Update to 0.9-12.
...
* gnu/packages/cran.scm (r-rjava): Update to 0.9-12.
2020-03-27 11:21:13 +01:00
Ricardo Wurmus
84b7c4aa17
gnu: r-sf: Update to 0.9-0.
...
* gnu/packages/cran.scm (r-sf): Update to 0.9-0.
[native-inputs]: Add r-knitr.
2020-03-27 11:21:13 +01:00
Ricardo Wurmus
498c887a96
gnu: r-bayestestr: Update to 0.5.3.
...
* gnu/packages/cran.scm (r-bayestestr): Update to 0.5.3.
[native-inputs]: Add r-knitr.
2020-03-27 11:21:13 +01:00
Ricardo Wurmus
9c189913e9
gnu: r-hdf5r: Update to 1.3.2.
...
* gnu/packages/cran.scm (r-hdf5r): Update to 1.3.2.
[native-inputs]: Add r-knitr.
2020-03-27 11:21:13 +01:00
Ricardo Wurmus
6232a36291
gnu: r-ggally: Update to 1.5.0.
...
* gnu/packages/cran.scm (r-ggally): Update to 1.5.0.
2020-03-27 11:21:13 +01:00
Christopher Baines
0a76a4e073
gnu: guix-data-service: Update to 0.0.1-19.d1c243f.
...
These changes support the guix-data-service-backup-database and
guix-data-service-create-small-backup scripts. These are shell scripts, so
require coreutils from the build environment at runtime as well as binaries
from postgresql, ephemeralpg and optionally util-linux (for ionice and
renice).
* gnu/packages/web.scm (guix-data-service): Update to 0.0.1-19.d1c243f.
[arguments]: Add (ice-9 ftw) and (ice-9 match) to #:modules, change the
'install phase to wrap all bin files with some inputs as well.
[inputs]: Add util-linux, include ephemeralpg from native-inputs and switch
postgresql for postgresql-11.
[native-inputs]: Move ephemeralpg to inputs.
2020-03-26 22:51:36 +00:00
Lars-Dominik Braun
01d5f2c5cd
gnu: Add python-json5.
...
* gnu/packages/python-xyz.scm (python-json5): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-26 23:45:41 +01:00
Lars-Dominik Braun
aefcfecd84
gnu: Add python-pytest-check-links.
...
* gnu/packages/python-xyz.scm (python-pytest-check-links): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-26 23:45:41 +01:00
Ludovic Courtès
be6520e6a5
vm: Distinguish between success and failure of the guest code.
...
Fixes <https://bugs.gnu.org/34276 >.
Reported by Tobias Geerinckx-Rice <me@tobias.gr >.
* gnu/system/vm.scm (expression->derivation-in-linux-vm)[loader]:
Produce '/xchg/.exit-status' file upon success.
* gnu/build/vm.scm (load-in-linux-vm): Check for 'xchg/.exit-status'
once QEMU has completed and respond accordingly.
2020-03-26 23:45:41 +01:00
Jakub Kądziołka
60eee3e6de
gnu: Add ROPgadget.
...
* gnu/packages/cybersecurity.scm: New file.
(ropgadget): New variable.
* gnu/local.mk (GNU_SYSTEM_MODULES): Register the file.
2020-03-26 22:53:02 +01:00
Björn Höfling
eebaed2b76
gnu: java-tomcat: Update to 8.5.53.
...
This fixes CVE-2020-1938 ("Ghostcat").
* gnu/packages/web.scm (java-tomcat): Update to 8.5.53.
[properties]: Add cpe-name.
2020-03-26 21:39:49 +01:00
Marius Bakke
3089b70d76
gnu: icu4c: Explicitly add patch flags in replacement package.
...
This is to prevent a build failure when this gets merged to 'core-updates'
which does not have any patch-flags to inherit.
* gnu/packages/icu4c.scm (icu4c/fixed)[source](patch-flags): New field.
2020-03-26 21:15:08 +01:00
Marius Bakke
9ea9ff6b0f
gnu: help2man: Update to 1.47.13.
...
* gnu/packages/man.scm (help2man/latest): Update to 1.47.13.
2020-03-26 20:20:48 +01:00
Alexandros Theodotou
9b0c95cc68
gnu: Add python-pywinrm.
...
* gnu/packages/python-xyz.scm (python-pywinrm): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-26 19:14:44 +00:00
Alexandros Theodotou
c596359729
gnu: Add python-requests_ntlm.
...
* gnu/packages/python-web.scm (python-requests_ntlm): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-26 19:14:44 +00:00
Alexandros Theodotou
163997c961
gnu: Add python-ntlm-auth.
...
* gnu/packages/python-crypto.scm (python-ntlm-auth): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-26 19:14:44 +00:00
Alexandros Theodotou
f8dcdf2b36
gnu: Add python-kerberos.
...
* gnu/packages/python-crypto.scm (python-kerberos): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-26 19:14:44 +00:00
Roel Janssen
79c395dde3
gnu: Update sambamba to 0.7.1.
...
* gnu/packages/bioinformatics.scm (sambamba): Update to 0.7.1;
Remove unneeded undead input.
2020-03-26 18:08:27 +01:00
Naga Malleswari
db47adb0c7
gnu: Add 7kaa.
...
* gnu/packages/games.scm (7kaa): New variable.
2020-03-26 15:55:02 +01:00
Efraim Flashner
50e45d8629
gnu: boinc-client: Update to 7.16.5.
...
* gnu/packages/distributed.scm (boinc-client): Update to 7.16.5.
2020-03-26 14:08:24 +02:00
Efraim Flashner
f87d594238
gnu: boinc-server: Fix build.
...
* gnu/packages/distributed.scm (boinc-server)[inputs]: Replace openssl
with openssl-1.0, mariadb with mariadb:dev.
2020-03-26 14:08:24 +02:00
Ludovic Courtès
260eae7893
status: Display synthetic information about profiles being built.
...
* guix/status.scm (print-build-event): Add 'profile case.
* guix/scripts/package.scm (build-and-use-profile): Remove now redundant
message.
2020-03-26 13:07:19 +01:00
Ludovic Courtès
e7570ec2da
profiles: 'profile-derivation' sets a 'type' property.
...
* guix/profiles.scm (profile-derivation): Pass #:properties to
'gexp->derivation'.
2020-03-26 13:07:19 +01:00
Ludovic Courtès
c7af9d0b5e
gnu: gnupg: Use ~/.guix-profile/bin/pinentry by default.
...
Fixes <https://bugs.gnu.org/24076 >.
Reported by Danny Milosavljevic <dannym@scratchpost.org >.
* gnu/packages/patches/gnupg-default-pinentry.patch: New file.
* gnu/packages/gnupg.scm (gnupg)[source]: Use it.
* gnu/local.mk (dist_patch_DATA): Add it.
2020-03-26 13:07:19 +01:00
Efraim Flashner
315b98b9eb
gnu: youtube-viewer: Don't build gtk3 front-end.
...
* gnu/packages/video.scm (youtube-viewer)[arguments]: Update
module-build-flags to only build gtk2 front-end.
2020-03-26 12:56:10 +02:00
Efraim Flashner
b5a26299f7
gnu: youtube-viewer: Update to 3.7.5.
...
* gnu/packages/video.scm (youtube-viewer): Update to 3.7.5.
[inputs]: Add perl-json-xs.
2020-03-26 12:56:07 +02:00
Mathieu Othacehe
b03ebdbc7c
tests: install: Add %test-gui-installed-desktop-os-encrypted.
...
* gnu/tests/install.scm (gui-test-program): Add a desktop? argument, and pass it to choose-services,
(installation-target-os-for-gui-tests): new procedure,
(installation-target-desktop-os-for-gui-tests): new procedure,
(guided-installation-test): add target-os and desktop? arguments. Use
target-os instead of the previous os variable. Pass desktop? argument to
gui-test-program.
(%test-gui-installed-os): Adapt accordingly,
(%test-gui-installed-os-encrypted): ditto,
(%test-gui-installed-desktop-os-encrypted): new exported variable.
2020-03-26 11:53:50 +01:00
Mathieu Othacehe
7a1a10dbd4
installer: tests: Use a filter to select desktop-environments.
...
* gnu/installer/tests.scm (choose-services): Turn desktop-environments list
into a choose-desktop-environment procedure. This way, it is easier to select
all desktop-environments or none, in the same way as choose-network-service?
and choose-network-management-tool? arguments.
2020-03-26 11:53:50 +01:00
Pierre Neidhardt
62c27e09f0
gnu: emacs-helm-exwm: Update to 0.0.2.
...
* gnu/packages/emacs-xyz.scm (emacs-helm-exwm): Update to 0.0.2.
2020-03-26 09:00:46 +01:00
Ricardo Wurmus
90fb592321
gnu: r-argon2: Fix case in synopsis and use full sentence in description.
...
* gnu/packages/cran.scm (r-argon2)[synopsis]: Use lower case.
[description]: Use full sentence.
2020-03-26 08:28:53 +01:00
Ricardo Wurmus
5c3902a762
gnu: r-getpass: Change case in synopsis and adjust indentation.
...
* gnu/packages/cran.scm (r-getpass): Adjust indentation.
[synopsis]: Do not capitalize all words.
2020-03-26 08:28:53 +01:00
Ricardo Wurmus
f03e62c12d
gnu: r-remoter: Fix indentation.
...
* gnu/packages/cran.scm (r-remoter): Fix indentation.
2020-03-26 08:28:53 +01:00
Ricardo Wurmus
9bde1b1348
gnu: r-remoter: Use lower case in the synopsis.
...
* gnu/packages/cran.scm (r-remoter)[synopsis]: Do not capitalize all words.
2020-03-26 08:28:41 +01:00
Vagrant Cascadian
730a4b10fa
gnu: linux-libre-5.4-source: Add patch to support pinebook pro.
...
* gnu/packages/patches/linux-libre-support-for-Pinebook-Pro.patch:
New file.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
* gnu/packages/linux (linux-libre-5.4-source): Add patch.
2020-03-25 18:59:25 -07:00
Mark H Weaver
2a57b72251
gnu: linux-libre: Update deblob scripts.
...
* gnu/packages/linux.scm (deblob-scripts-5.4): Update to 5.4.28.
2020-03-25 20:39:05 -04:00
Mark H Weaver
5cc6271d22
gnu: linux-libre: Update to 5.4.28.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.28.
(linux-libre-5.4-pristine-source): Update hash.
2020-03-25 20:37:38 -04:00
Mark H Weaver
1d777c7837
gnu: linux-libre@4.19: Update to 4.19.113.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.113.
(linux-libre-4.19-pristine-source): Update hash.
2020-03-25 20:36:25 -04:00
Leo Famulari
7d57a190f6
gnu: icu4c: Fix CVE-2020-10531.
...
* gnu/packages/patches/icu4c-CVE-2020-10531.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/icu4c.scm (icu4c)[replacement]: New field.
(icu4c/fixed): New variable.
2020-03-25 17:53:59 -04:00
Todor Kondić
0c549393b9
gnu: Add r-remoter.
...
* gnu/packages/cran.scm (r-remoter): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-25 15:46:02 -04:00
Todor Kondić
6ad80b2a6b
gnu: Add r-getpass.
...
* gnu/packages/cran.scm (r-getpass): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-25 15:46:02 -04:00
Todor Kondić
49a8ef8ae1
gnu: Add r-argon2.
...
* gnu/packages/cran.scm (r-argon2): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-25 15:45:54 -04:00
Nicolas Goaziou
0557618dbe
gnu: Add emacs-chronometrist.
...
* gnu/packages/emacs-xyz.scm (emacs-chronometrist): New variable.
2020-03-25 17:34:38 +01:00
Ricardo Wurmus
8b19fa51a4
gnu: abseil-cpp: Update to 20200225.1.
...
* gnu/packages/cpp.scm (abseil-cpp): Update to 20200225.1.
2020-03-25 16:29:26 +01:00
Ricardo Wurmus
9e17989017
import/cran: Import missing module.
...
This is a follow-up to commit b005c240bb .
Reported-by: Ludovic Courtès <ludo@gnu.org >
* guix/import/cran.scm: Import (guix ui) module.
2020-03-25 16:28:57 +01:00
Ludovic Courtès
98e9ed8a3f
gnu: gnu-pw-mgr: Build reproducibly.
...
* gnu/packages/gnu-pw-mgr.scm (gnu-pw-mgr)[native-inputs]: Remove
AUTOGEN so that man pages are not regenerated with a fresh date.
2020-03-25 16:02:53 +01:00
Ludovic Courtès
c136da3fbd
tests: Adjust to 'show-manifest-transaction' changes.
...
This is a followup to 3e5ab0a7a9 .
* tests/ui.scm ("show-manifest-transaction"): Update regexp.
* tests/guix-package.sh: Adjust Emacs regexp in --with-source test.
2020-03-25 16:02:53 +01:00
Ludovic Courtès
c74f19d758
environment: Use 'with-build-handler'.
...
* guix/scripts/environment.scm (build-environment): Remove.
(guix-environment): Wrap 'with-status-verbosity' in
'with-build-handler'. Remove 'dry-run?' conditional. Use
'built-derivations' instead of 'build-environment'.
2020-03-25 16:02:53 +01:00
Ludovic Courtès
2d5ee2c6e8
archive: Use 'with-build-handler'.
...
* guix/scripts/archive.scm (export-from-store): Remove call to
'show-what-to-build' and dry-run? condition.
(guix-archive): Wrap 'cond' in 'with-build-handler'.
2020-03-25 16:02:53 +01:00
Ricardo Wurmus
eb019af8d8
tests/nfs: Fix use of WAIT-FOR-FILE.
...
* gnu/tests/nfs.scm ("nfs services are running"): Pass marionette to
WAIT-FOR-FILE.
2020-03-25 14:17:24 +01:00
Ricardo Wurmus
b3c083b985
services/nfs: Mount nfsd pseudo file system.
...
* gnu/services/nfs.scm (nfs-shepherd-services): Add shepherd-service providing
/proc/fs/nfsd and make other shepherd services require it.
2020-03-25 14:17:24 +01:00
Guillaume Le Vaillant
620c756443
gnu: electron-cash: Update to 4.0.14.
...
* gnu/packages/finance.scm (electron-cash): Update to 4.0.14.
2020-03-25 11:09:45 +01:00
Ricardo Wurmus
b005c240bb
import/cran: Support importing from Mercurial repositories.
...
* guix/import/cran.scm (download): Accept keyword #:method; add case for hg
method.
(fetch-description): Handle hg repository.
(description->package): Add cases for hg repositories and update call of
DOWNLOAD procedure.
(cran->guix-package): Retry importing from Bioconductor when hg import failed.
2020-03-25 09:40:05 +01:00
Ricardo Wurmus
2fcd2e1a5f
gnu: r-shiny: Add missing inputs.
...
* gnu/packages/cran.scm (r-shiny)[propagated-inputs]: Add r-later, r-promises,
r-rlang, and r-withr.
[native-inputs]: Add gfortran.
2020-03-25 09:40:05 +01:00
Ricardo Wurmus
51d1a7a2ef
gnu: r-mast: Add r-knitr to native inputs.
...
* gnu/packages/bioconductor.scm (r-mast)[native-inputs]: Add r-knitr.
2020-03-25 09:40:05 +01:00
Tanguy Le Carrour
97b1366d49
gnu: poetry: Update to 1.0.5.
...
* gnu/packages/python-xyz.scm (poetry): Update to 1.0.5.
[propagated-inputs] Add python-clikit, python-importlib-metadata,
python-keyring, and python-pexpect. Remove python-msgpack and python-glob2.
[home-page] Update URL.
[arguments] Remove 'patch-setup-py' phase, and adjust required versions of
keyring, pyrsistent and importlib-metadata.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:16:50 -04:00
Tanguy Le Carrour
c298118860
gnu: python-cachy: Update to 0.3.0.
...
* gnu/packages/python-xyz.scm (python-cachy): Update to 0.3.0.
[arguments]: Replace the 'check' phase.
[native-inputs]: Add memcached and python-pifpaf.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:22 -04:00
Tanguy Le Carrour
f5879f158c
gnu: Add python-pifpaf.
...
* gnu/packages/python-xyz.scm (python-pifpaf): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:22 -04:00
Tanguy Le Carrour
20c9df4e46
gnu: Add python-daiquiri.
...
* gnu/packages/python-xyz.scm (python-daiquiri): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:21 -04:00
Tanguy Le Carrour
3b3edfa8e3
gnu: Add python-json-logger.
...
* gnu/packages/python-xyz.scm (python-json-logger): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:21 -04:00
Tanguy Le Carrour
f6c784806e
gnu: Add python-xattr.
...
* gnu/packages/python-xyz.scm (python-xattr): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:21 -04:00
Tanguy Le Carrour
1655e7be78
gnu: python-fakeredis: Update to 1.2.1.
...
* gnu/packages/databases.scm (python-fakeredis): Update to 1.2.1.
[propagated-inputs]: Add python-sortedcontainers.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:21 -04:00
Tanguy Le Carrour
eac978eef8
gnu: python-clikit: Update to 0.4.2.
...
* gnu/packages/python-xyz.scm (python-clikit): Update to 0.4.2.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:20 -04:00
Tanguy Le Carrour
01e3044200
gnu: python-sortedcontainers: Add missing propagated-inputs.
...
* gnu/packages/python-xyz.scm (python-sortedcontainers):
[propagated-inputs] Add python-appdirs, python-distlib, python-filelock,
python-importlib-metadata and python-six.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:20 -04:00
Tanguy Le Carrour
6dcbd20afa
gnu: python-cachecontrol: Add missing propagated-input.
...
* gnu/packages/python-web.scm (python-cachecontrol):
[propagated-inputs]: Add python-msgpack.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:20 -04:00
Tanguy Le Carrour
66ab2f5e3a
gnu: python-msgpack: Update to 1.0.0.
...
* gnu/packages/python-xyz.scm (python-msgpack): Update to 1.0.0.
(python-msgpack-transitional)[version,source]: New fields to avoid updating this
package.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:20 -04:00
Tanguy Le Carrour
67c8b6448e
gnu: python-pastel: Update to 0.2.0.
...
* gnu/packages/graphics.scm (python-pastel): Update to 0.2.0.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:19 -04:00
Tanguy Le Carrour
a356d1b68d
gnu: python-jsonschema: Update to 3.2.0.
...
* gnu/packages/python-xyz.scm (python-jsonschema): Update to 3.2.0.
[propagated-inputs]: Add python-importlib-metadata.
[arguments]: Use add-installed-pythonpath to make a test pass.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:19 -04:00
Tanguy Le Carrour
2c15cb5898
gnu: python-pexpect: Update to 4.8.0.
...
* gnu/packages/python-xyz.scm (python-pexpect): Update to 4.8.0.
[arguments]: Disable failing test.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 17:10:19 -04:00
Paul Garlick
5e44011bfb
gnu: perl-mail-sendmail: Add line above definition.
...
* gnu/packages/perl.scm (perl-mail-sendmail): Add line.
2020-03-24 20:08:05 +00:00
Paul Garlick
25022bfd3a
gnu: Add perl-mail-sendmail.
...
* gnu/packages/perl.scm (perl-mail-sendmail): New variable.
2020-03-24 19:59:43 +00:00
Christopher Baines
57e12aad6d
scripts: lint: Handle store connections for lint checkers.
...
Rather than individual checkers opening up a connection to the store for each
package to check, if any checker requires a store connection, open a
connection and pass it to all checkers that would use it. This makes running
the derivation checker much faster for multiple packages.
* guix/scripts/lint.scm (run-checkers): Add a #:store argument, and pass the
store to checkers if they require a store connection.
(guix-lint): Establish a store connection if any checker requires one, and
pass it through to run-checkers.
2020-03-24 19:47:46 +00:00
Christopher Baines
7826fbc02b
lint: Add a #:store argument to check-derivation
...
This can then be used to avoid opening up a store connection each time a
package needs checking.
* guix/lint.scm (check-derivation): Add a #:store argument, and pull the
handling of the store connection out of the try function.
2020-03-24 19:47:46 +00:00
Christopher Baines
d84ad6a24e
lint: Mark the derivation checker as requiring a store connection.
...
* guix/lint.scm (%local-checkers): Mark the derivation checker as requiring a
store connection.
2020-03-24 19:47:46 +00:00
Christopher Baines
3874dc5ef2
lint: Add a requires-store? field to the checker record.
...
This can then be used to mark checkers that require a store connection, which
will enable passing a connection in, avoiding the overhead of establishing a
connection inside the check function when it's run for lots of different
packages.
* guix/lint.scm (<lint-checker>): Add requires-store? to the record type.
2020-03-24 19:47:43 +00:00
Josh Marshall
b14c234c0d
gnu: Add Docusign API Python client.
...
* gnu/packages/python-xyz.scm (python-docusign-esign): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-24 15:36:20 -04:00
Danny Milosavljevic
be743fc0fd
doc: Document that a working environment for building Guix requires "--pure".
...
* doc/guix.texi (Invoking guix environment): Document that a working
environment for building Guix requires "--pure".
2020-03-24 19:25:25 +01:00
Ludovic Courtès
637db76d7a
guix system: Fix mistaken 'guix pull' warning upon 'reconfigure'.
...
Fixes <https://bugs.gnu.org/38196 >.
Reported by Florian Pelz <pelzflorian@pelzflorian.de >.
* guix/scripts/system.scm (maybe-suggest-running-guix-pull): Check
whether 'current-profile' returns true instead of checking for the
existence of ~root/.config/guix/current. That way, "sudo guix system
reconfigure" no longer emits a warning in that case.
2020-03-24 18:54:41 +01:00
Ludovic Courtès
72a5cc5358
gnu: automake: Add version 1.16.2.
...
* gnu/packages/autotools.scm (automake-1.16.2): New variable.
2020-03-24 18:03:18 +01:00
Ludovic Courtès
53c594cb3f
pack: Do not store extended attributes in squashfs images.
...
* guix/scripts/pack.scm (squashfs-image)[build](mksquashfs): Pass "-no-xattrs".
2020-03-24 16:56:19 +01:00
Ludovic Courtès
8465f1f680
ui: 'show-manifest-transaction' tabulates package lists for install/remove.
...
It also removes the store file name from the output.
* guix/ui.scm (show-manifest-transaction)[package-strings]: Rewrite to
use 'tabulate'. Remove 'item' parameter and adjust callers.
2020-03-24 15:44:45 +01:00
Ludovic Courtès
3e5ab0a7a9
ui: 'show-manifest-transaction' tabulates upgraded package lists.
...
This also changes "1.0.0 → 1.0.0" to "(dependencies changed)", which is
probably less confusing.
* guix/ui.scm (tabulate): New procedure.
(show-manifest-transaction)[upgrade-string]: Rewrite to take lists of
names, versions, and outputs instead of single elements. Use
'tabulate'. Adjust callers accordingly.
2020-03-24 15:44:45 +01:00
Martin Becze
cf2b91aad0
import: crate: Deduplicate dependencies.
...
* guix/import/crate.scm (crate-version-dependencies): Deduplicate crate dependencies.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-24 15:44:45 +01:00
Martin Becze
b488b64a3e
gnu: Add guile3.0-semver.
...
* gnu/packages/guile-xyz.scm (guile3.0-semver): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-24 15:44:45 +01:00
Efraim Flashner
08d5341b1f
gnu: nano: Update to 4.9.
...
* gnu/packages/nano.scm (nano): Update to 4.9.
2020-03-24 15:47:58 +02:00
Naga Malleswari
54a9fe3429
doc: Fix typo in example.
...
* doc/guix.texi (Base Services)[file->udev-rule]: Correct misspelt
"user-account".
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-03-24 13:10:43 +01:00
Naga Malleswari
022767d7c1
doc: Fix typo.
...
* doc/guix.texi (Invoking guix time-machine): Fix typo.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-03-24 13:07:17 +01:00
Guillaume Le Vaillant
151f3d416c
gnu: Add qgis.
...
* gnu/packages/geo.scm (qgis): New variable.
Co-authored-by: Wiktor Żelazny <wzelazny@vurv.cz >
Co-authored-by: Arun Isaac <arunisaac@systemreboot.net >
2020-03-24 11:42:41 +01:00
Arun Isaac
d13d28265f
licenses: Add QWT 1.0 license.
...
* guix/licenses.scm (qwt1.0): New variable.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-03-24 11:42:41 +01:00
Arun Isaac
5d33e789c2
licenses: Add Open Government Licence for Public Sector Information.
...
* guix/licenses.scm (ogl-psi1.0): New variable.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-03-24 11:42:40 +01:00
Guillaume Le Vaillant
f7ac2fe1ce
gnu: Add saga.
...
* gnu/packages/geo.scm (saga): New variable.
2020-03-24 11:42:40 +01:00
Guillaume Le Vaillant
9fce591479
gnu: Add grass.
...
* gnu/packages/geo.scm (grass): New variable.
2020-03-24 11:42:40 +01:00
Guillaume Le Vaillant
efcb05083f
gnu: Add python-owslib.
...
* gnu/packages/python-xyz.scm (python-owslib): New variable.
2020-03-24 11:42:40 +01:00
Ricardo Wurmus
b0d1da986b
gnu: r-harmony: Update to 0.1.
...
* gnu/packages/cran.scm (r-harmony): Update to 0.1.
[native-inputs]: Add autoconf.
2020-03-24 11:06:01 +01:00
Ricardo Wurmus
8ff6386491
gnu: r-shiny: Update to 1.4.0.2.
...
* gnu/packages/cran.scm (r-shiny): Update to 1.4.0.2.
2020-03-24 11:06:01 +01:00
Ricardo Wurmus
5d45d71170
gnu: r-multiassayexperiment: Update to 1.12.5.
...
* gnu/packages/bioconductor.scm (r-multiassayexperiment): Update to 1.12.5.
[native-inputs]: Add r-knitr.
2020-03-24 11:06:01 +01:00
Ricardo Wurmus
1f2f01aed5
gnu: r-bigpint: Update to 1.2.2.
...
* gnu/packages/bioconductor.scm (r-bigpint): Update to 1.2.2.
[native-inputs]: Add r-knitr.
2020-03-24 11:06:01 +01:00
Ricardo Wurmus
4bcb38c801
gnu: r-biosigner: Update to 1.14.4.
...
* gnu/packages/bioconductor.scm (r-biosigner): Update to 1.14.4.
2020-03-24 11:06:01 +01:00
Ricardo Wurmus
d5951dc43a
gnu: r-gosemsim: Update to 2.12.1.
...
* gnu/packages/bioconductor.scm (r-gosemsim): Update to 2.12.1.
[native-inputs]: Add r-knitr.
2020-03-24 11:06:01 +01:00
Ricardo Wurmus
c649d31957
gnu: r-tximport: Update to 1.14.2.
...
* gnu/packages/bioinformatics.scm (r-tximport): Update to 1.14.2.
[native-inputs]: Add r-knitr.
2020-03-24 11:06:00 +01:00
Ricardo Wurmus
c10bef9bd3
gnu: r-caret: Update to 6.0-86.
...
* gnu/packages/cran.scm (r-caret): Update to 6.0-86.
[native-inputs]: Add r-knitr.
2020-03-24 11:06:00 +01:00
Ricardo Wurmus
1e40a27465
gnu: r-batchtools: Update to 0.9.13.
...
* gnu/packages/cran.scm (r-batchtools): Update to 0.9.13.
[native-inputs]: Add r-knitr.
2020-03-24 11:06:00 +01:00
Ricardo Wurmus
6005efa40f
gnu: r-mcmc: Update to 0.9-7.
...
* gnu/packages/cran.scm (r-mcmc): Update to 0.9-7.
2020-03-24 11:06:00 +01:00
Ricardo Wurmus
d3836473de
gnu: r-proc: Update to 1.16.2.
...
* gnu/packages/cran.scm (r-proc): Update to 1.16.2.
2020-03-24 11:06:00 +01:00
Ricardo Wurmus
c5036a4f39
gnu: r-xgboost: Update to 1.0.0.1.
...
* gnu/packages/cran.scm (r-xgboost): Update to 1.0.0.1.
[native-inputs]: Add r-knitr.
2020-03-24 11:06:00 +01:00
Ricardo Wurmus
2f445f0da3
gnu: r-radiant-data: Update to 1.3.4.
...
* gnu/packages/cran.scm (r-radiant-data): Update to 1.3.4.
[propagated-inputs]: Remove r-gridextra; add r-mass, r-patchwork, and
r-randomizr.
2020-03-24 11:06:00 +01:00
Ricardo Wurmus
ff248f41cb
gnu: r-patchwork: Update to 1.0.0.
...
* gnu/packages/cran.scm (r-patchwork): Update to 1.0.0.
[source]: Fetch from CRAN.
[native-inputs]: Add r-knitr.
2020-03-24 11:06:00 +01:00
Ricardo Wurmus
d8dc2a7c1e
gnu: r-igraph: Update to 1.2.5.
...
* gnu/packages/graph.scm (r-igraph): Update to 1.2.5.
2020-03-24 11:06:00 +01:00
Ricardo Wurmus
f7a21df523
gnu: r-robustbase: Update to 0.93-6.
...
* gnu/packages/statistics.scm (r-robustbase): Update to 0.93-6.
2020-03-24 11:06:00 +01:00
Ricardo Wurmus
7e349066e6
gnu: r-hmisc: Update to 4.4-0.
...
* gnu/packages/statistics.scm (r-hmisc): Update to 4.4-0.
2020-03-24 11:06:00 +01:00
Ricardo Wurmus
670cbe2c3c
gnu: r-pkgmaker: Update to 0.31.1.
...
* gnu/packages/statistics.scm (r-pkgmaker): Update to 0.31.1.
2020-03-24 11:06:00 +01:00
Ricardo Wurmus
d16a4d1f96
gnu: r-dt: Update to 0.13.
...
* gnu/packages/statistics.scm (r-dt): Update to 0.13.
[native-inputs]: Add r-knitr.
2020-03-24 11:05:59 +01:00
Ricardo Wurmus
f871696911
gnu: r-locfit: Update to 1.5-9.2.
...
* gnu/packages/statistics.scm (r-locfit): Update to 1.5-9.2.
2020-03-24 11:05:59 +01:00
Ricardo Wurmus
e0d6a7da74
gnu: Add r-randomizr.
...
* gnu/packages/cran.scm (r-randomizr): New variable.
2020-03-24 11:05:59 +01:00
Guillaume Le Vaillant
47a2306415
gnu: sbcl: Increase maximum heap size to 2Gb.
...
* gnu/packages/lisp.scm (sbcl)[arguments]: Add the "--dynamic-space-size=2Gb"
option in the build phase.
2020-03-24 09:31:43 +01:00
Michael Rohleder
0f96fd6454
gnu: dialog: Update to 1.3-20200228.
...
* gnu/packages/ncurses.scm (dialog): Update to 1.3-20200228.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-23 21:17:55 -04:00
Leo Famulari
aae5f89db0
gnu: Git: Update to 2.26.0.
...
* gnu/packages/version-control.scm (git): Update to 2.26.0.
[arguments]: Adjust the 'install-credential-netrc' phase to upstream changes.
2020-03-23 21:17:46 -04:00
Mathieu Othacehe
acd595c237
Revert "gnu: youtube-dl: Add 'ffmpeg' as input."
...
This reverts commit 4233e74b39 .
2020-03-23 21:51:25 +01:00
Leo Famulari
a11237e40a
gnu: Mutt: Update to 1.13.4.
...
* gnu/packages/mail.scm (mutt): Update to 1.13.4.
[source]: Prefer HTTPS URL and replace FTP URL with HTTP.
2020-03-23 15:53:11 -04:00
Alexandros Theodotou
0a6f68982b
gnu: sord: Add pcre to inputs.
...
* gnu/packages/rdf.scm (sord)[inputs]: Add pcre needed for sord_validate.
2020-03-23 20:48:49 +01:00
Brice Waegeneire
7884fc434f
gnu: youtube-dl: Add zsh completion.
...
* gnu/packages/video.scm (youtube-dl)[arguments]: Add phase
install-completion.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-03-23 19:02:46 +01:00
Brice Waegeneire
4233e74b39
gnu: youtube-dl: Add 'ffmpeg' as input.
...
* gnu/packages/video.scm (youtube-dl)[arguments]: Add phase
wrap-executable.
[inputs]: Add ffmpeg.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-03-23 19:02:44 +01:00
Brice Waegeneire
1a5443e86b
doc: Fix typo in example.
...
* doc/guix.texi (Invoking guix deploy): Fix example to use '%user'
variable defined above.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-03-23 18:57:01 +01:00
Brice Waegeneire
a9f2c210f3
system: Export 'operating-system-kernel-loadable-modules'.
...
* gnu/system.scm: Export 'operating-system-kernel-loadable-modules'.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-03-23 18:52:31 +01:00
Maxim Cournoyer
f2c698bd3e
gnu: emacs-lua-mode: Update to 20191204.
...
* (emacs-lua-mode): Update to 20191204.
2020-03-23 13:49:39 -04:00
Maxim Cournoyer
09c09c4c7c
gnu: emacs-ert-runner: Update to 0.8.0.
...
* (emacs-ert-runner): Update to 0.8.0.
2020-03-23 13:49:38 -04:00
Maxim Cournoyer
80168c4b5b
gnu: emacs-dash: Update to 2.17.0.
...
* (emacs-dash): Update to 2.17.0.
2020-03-23 13:49:38 -04:00
Mathieu Othacehe
f9b6f75d1c
installer: Fix cow-store umount issue.
...
* gnu/installer/final.scm (kill-cow-users): Ignore exception that could be
raised if a process disappears between reading its pid and its maps file.
2020-03-23 18:46:40 +01:00
Tobias Geerinckx-Rice
5490b2c733
gnu: parallel: Update to 20200322.
...
* gnu/packages/parallel.scm (parallel): Update to 20200322.
2020-03-23 18:35:27 +01:00
Tobias Geerinckx-Rice
c2d468a111
gnu: extremetuxracer: Update to 0.8.0.
...
* gnu/packages/games.scm (extremetuxracer): Update to 0.8.0.
2020-03-23 18:35:27 +01:00
Alexandros Theodotou
d3e7282ec3
gnu: Add zlfo.
...
* gnu/packages/music.scm (zlfo): New variable.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-03-23 15:39:02 +01:00
Alexandros Theodotou
360ebe50b5
gnu: Add ztoolkit-rsvg.
...
* gnu/packages/audio.scm (ztoolkit-rsvg): New variable.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net > [with modifications]
2020-03-23 15:39:01 +01:00
Alexandros Theodotou
2f4faccc6f
gnu: Add ztoolkit.
...
* gnu/packages/audio.scm (ztoolkit): New variable.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-03-23 15:39:00 +01:00
Roel Janssen
7ff6395100
gnu: Add circos.
...
* gnu/local.mk: Register circos-remove-findbin.patch.
* gnu/packages/patches/circos-remove-findbin.patch: New file.
* gnu/packages/perl.scm: New variable.
2020-03-23 11:42:36 +01:00
Alexandros Theodotou
591faabd8c
gnu: Add python-gcovr.
...
* gnu/packages/python-xyz.scm (python-gcovr): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-23 10:48:18 +01:00
Alexandros Theodotou
670da39888
gnu: Add lv2toweb.
...
* gnu/packages/audio.scm (lv2toweb): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-23 10:48:18 +01:00
Ludovic Courtès
8bc745052e
machine: ssh: Better report missing initrd modules.
...
* gnu/machine/ssh.scm (machine-check-initrd-modules): Improve message
upon module mismatch.
2020-03-23 10:48:17 +01:00
Ludovic Courtès
1292372725
deploy: Write a message upon successful deployment.
...
* guix/scripts/deploy.scm (guix-deploy): Write message upon successful
deployment.
2020-03-23 10:48:17 +01:00
Ludovic Courtès
1bb248d0b1
deploy: Show what machines will be deployed.
...
* guix/scripts/deploy.scm (show-what-to-deploy): New procedure.
(guix-deploy): Call it.
2020-03-23 10:48:17 +01:00
Ludovic Courtès
7b322d3c4c
ui: Add 'indented-string'.
...
* guix/scripts/pull.scm (display-news-entry): Remove extra space in
format string for 'indented-string'.
(indented-string): Remove.
(display-new/upgraded-packages)[pretty]: Pass #:initial-indent? to
'indented-string'.
* guix/ui.scm (indented-string): New procedure.
2020-03-23 10:48:17 +01:00
Ludovic Courtès
ea6e2299b4
machine: ssh: Make sanity checks in a single round trip.
...
* gnu/machine/ssh.scm (<remote-assertion>): New record type.
(remote-let): New macro.
(machine-check-file-system-availability): Rewrite to use 'remote-let'
instead of 'mlet' and 'machine-remote-eval'.
(machine-check-initrd-modules): Likewise.
(machine-check-building-for-appropriate-system): Make non-monadic.
(check-deployment-sanity): Rewrite to gather all the assertions as a
single gexp and pass it to 'machine-remote-eval'.
2020-03-23 10:48:17 +01:00
Ludovic Courtès
8f53d73493
ssh: 'send-files' reports missing modules on the remote host.
...
Reported by Mikael Djurfeldt <mikael@djurfeldt.com >
in <https://bugs.gnu.org/40125 >.
* guix/ssh.scm (send-files)[inferior-remote-eval*]: New procedure.
[missing]: Use it. Add an explicit 'resolve-module' call.
(report-inferior-exception): New procedure.
2020-03-23 10:48:17 +01:00
Leo Famulari
1eb27d5cae
Re-order the armhf linux-libre kernel packages to fix the build.
...
This is a followup to commit 37f8c50cdc .
Previously, building Guix crashed like this:
------
In ice-9/eval.scm:
619:8 4 (_ #f)
626:19 3 (_ #<directory (gnu packages linux) 7fcf3e526c80>)
159:9 2 (_ #<directory (gnu packages linux) 7fcf3e526c80>)
223:20 1 (proc #<directory (gnu packages linux) 7fcf3e526c80>)
In unknown file:
0 (%resolve-variable (7 . linux-libre-arm-generic) #<directory (gnu packages linux) 7fcf3e526c80>)
ERROR: In procedure %resolve-variable:
error: linux-libre-arm-generic: unbound variable
------
* gnu/packages/linux.scm (linux-libre-arm-veyron): Move after
linux-libre-arm-generic.
2020-03-23 01:46:48 -04:00
Vagrant Cascadian
058e96c59f
gnu: Add linux-libre-arm64-generic.
...
* gnu/packages/linux (linux-libre-arm64-generic): New variable.
2020-03-22 20:55:42 -07:00
Vagrant Cascadian
37f8c50cdc
gnu: linux-libre-arm-veyron: Deprecate package.
...
* gnu/packages/linux (linux-libre-arm-veyron): Mark as deprecated package.
(kernel-config-veyron): Remove obsolete function.
* gnu/system/examples/asus-c201.tmpl: Update to use linux-libre-arm-generic.
* gnu/packages/aux-files/linux-libre/5.4-arm-veyron.conf: Delete file.
* Makefile.am (AUX_FILES): Update accordingly.
2020-03-22 20:55:37 -07:00
Maxim Cournoyer
4ef89d884d
gnu: emacs-elpy: Update to 1.32.0.
...
* gnu/packages/emacs-xyz.scm (emacs-elpy): Update to 1.32.0.
[phases]{fake-virtualenv}: Rename to 'do-not-use-virtualenv. Use the new
ELPY_TEST_DONT_USE_VIRTUALENV environment variable to skip tests using
virtualenv, and set the elpy-rpc-virtualenv-path default value to 'system so
that a virtualenv is not needed.
[native-inputs]: Move the Python dependencies to...
[propagated] ...here. This is so that Elpy doesn't nag users with fetching
those from PyPI. Add python-rope.
Fixes <https://bugs.gnu.org/40079 >.
Reported-by: sirgazil <sirgazil@zoho.com >
2020-03-22 21:17:39 -04:00
Maxim Cournoyer
4cbd60698d
gnu: emacs: Patch references to /bin/sh.
...
When attempting to run ert-runner in the build side environment where /bin/sh
doesn't exist as part of the emacs-elpy test suite, Emacs was throwing the
error "Searching for program: No such file or directory, /bin/sh". This is
because the default shell when SHELL is not set was "/bin/sh", as can be seen
in callproc.c:
sh = getenv ("SHELL");
Vshell_file_name = build_string (sh ? sh : "/bin/sh");
Thus, patch the occurrences of "/bin/sh" in the source files of Emacs to refer
to their correct store location.
* gnu/packages/emacs.scm (emacs)[phases]{patch-program-file-names}: Add phase.
2020-03-22 21:17:39 -04:00
Maxim Cournoyer
393c5e6928
gnu: emacs-minimal: Install the custom site-start file.
...
This makes the EMACS-MINIMAL package more generally useful, by adding support
to load autoload definitions. Note that this doesn't negatively impact the
performance of the emacs-build-system, because at that time the --quick option
is used, which disables loading site-start.el (which is the one calling
GUIX-EMACS-AUTOLOAD-PACKAGES).
* gnu/packages/emacs.scm (emacs-minimal)[phases]: Do not delete the
'install-site-start phase.
[inputs]: Add the emacs/guix-emacs.el auxiliary file.
2020-03-22 21:17:39 -04:00
Maxim Cournoyer
3bd3a6257f
gnu: emacs: Re-indent.
...
* gnu/packages/emacs.scm (emacs): Fix indentation.
2020-03-22 21:17:39 -04:00
Maxim Cournoyer
ffaec30702
gnu: emacs: Byte compile the site-lisp directory, without coupling.
...
This re-instates what the previously reverted commit did, but without adding
a dependency on the (guix build emacs-utils) module.
* gnu/packages/emacs.scm (emacs)[phases]{install-site-start}: Define a
EMACS-BYTE-COMPILE-DIRECTORY procedure, and use it.
2020-03-22 21:17:38 -04:00
Maxim Cournoyer
d0a64567f1
Revert "gnu: emacs: Byte compile the site-lisp directory."
...
This reverts commit 4714d0fc1a .
Rational: Having to rebuild Emacs every time (guix build emacs-utils) changes
is not great.
2020-03-22 21:17:38 -04:00
Maxim Cournoyer
155f9afde5
gnu: emacs: Remove obsolete FIXME comment.
...
* gnu/packages/aux-files/emacs/guix-emacs.el: Remove comment.
2020-03-22 21:17:38 -04:00
Maxim Cournoyer
afc6b1c0b6
build: emacs-utils: Add an option to select scoping for batch eval.
...
In Emacs 27, --eval now evaluates using lexical scoping. This change adds an
option to select dynamic scoping, by using a workaround proposed in
<https://bugs.gnu.org/39823 >.
* guix/build/emacs-utils.scm (emacs-batch-eval): Add a DYNAMIC? keyword
argument. Wrap the EXPR with a call to EVAL that makes use of the argument
to select the scoping mode.
(emacs-generate-autoloads): Use it.
2020-03-22 21:17:38 -04:00
Kei Kebreau
6607aad53c
gnu: wxmaxima: Update to 20.03.1.
...
* gnu/packages/maths.scm (wxmaxima): Update to 20.03.1.
2020-03-22 19:22:42 -04:00
Ludovic Courtès
86603d8660
nls: Update.
2020-03-23 00:06:58 +01:00
Ludovic Courtès
ae5c4a9292
services: console-font: Fix docstring.
...
* gnu/services/base.scm (console-font-service-type): Use quasiquote and
unquote appropriately in docstring.
2020-03-23 00:06:58 +01:00
John Soo
8825f9955a
doc: Add console-font-service-type to Base Services.
...
* doc/guix.texi (Base Services): Add console-font-service-type.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2020-03-23 00:06:58 +01:00
Ludovic Courtès
8b18f5cb30
tests: Use the same source as ci.guix.gnu.org.
...
* etc/system-tests.scm (system-test-manifest): In 'local-file' call, use
a name that is a function of COMMIT to match what Cuirass does.
2020-03-23 00:06:58 +01:00
Alexandru-Sergiu Marton
d4842a7c47
gnu: i3-gaps: Update to 4.18.
...
* gnu/packages/wm.scm (i3-gaps): Update to 1.18.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-22 17:21:33 -04:00
Leo Famulari
268efd97c2
gnu: Remove qemu-minimal-2.10.
...
* gnu/packages/virtualization.scm (qemu-minimal-2.10): Remove variable.
* gnu/packages/debug.scm (qemu-for-american-fuzzy-lop): New variable.
(american-fuzzy-lop)[inputs]: Remove custom-qemu and add
qemu-for-american-fuzzy-lop.
[arguments]: Adjust reference to QEMU in the 'install-qemu' phase.
2020-03-22 14:26:31 -04:00
Leo Famulari
c9164d3098
gnu: Prefix licenses in (gnu packages debug).
...
* gnu/packages/debug.scm: Add a license prefix.
2020-03-22 14:26:31 -04:00
Guillaume Le Vaillant
e6a0cd9aa1
gnu: electron-cash: Update to 4.0.13.
...
This package was inheriting from electrum, but as now almost all the fields
have differences, let's make these two packages independent from each other.
* gnu/packages/finance.scm (electron-cash): Update to 4.0.13.
[inputs]: Add libevent, openssl, python-cython, python-hidapi,
python-keepkey, python-stem, python-trezor, qtsvg and zlib.
[arguments]: Add a wrap-qt phase allowing qtsvg to be found at runtime to
show SVG icons correctly.
2020-03-22 19:03:52 +01:00
Alex Griffin
9720894cc8
gnu: gnome-shell-extension-paperwm: Update to 36.0.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-paperwm): Update to 36.0.
2020-03-22 11:24:25 -05:00
Guillaume Le Vaillant
aaa8893715
gnu: qbittorrent: Fix icons not showing in GUI.
...
* gnu/packages/bittorrent.scm (qbittorrent)[arguments]: Add a wrap-qt phase.
2020-03-22 17:11:14 +01:00
Ludovic Courtès
23b3947897
gnu: libchop: Build against libtirpc and related tools.
...
* gnu/packages/backup.scm (libchop)[source]: Add 'modules' and 'snippet'.
[arguments]: Add #:configure-flags; add 'set-libtirpc-include-path' phase.
[native-inputs]: Add RPCSVC-PROTO.
[inputs]: Add LIBTIRPC.
2020-03-22 16:49:47 +01:00
Ludovic Courtès
9acacb71c9
Remove workaround for 'time-monotonic' in Guile 2.2.2.
...
This is a followup to e688c2df39 .
* build-aux/hydra/evaluate.scm <top level>: Remove 'time-monotonic'
definition.
* guix/cache.scm: Likewise.
* guix/progress.scm: Likewise.
* guix/scripts/substitute.scm: Likewise.
* guix/scripts/weather.scm: Likewise.
* tests/cache.scm: Likewise.
2020-03-22 16:49:47 +01:00
Ludovic Courtès
99b23eabdb
installer: Do not include the host (guix config).
...
Previously, "locales.drv" would depend on the host's (guix config).
Thus, the derivation would depend on details of the user's installation.
* gnu/installer.scm (not-config?): New procedure.
(build-compiled-file): Pass it to 'source-module-closure' and use
'make-config.scm'.
2020-03-22 16:49:47 +01:00
pinoaffe@airmail.cc
363989e668
gnu: Add nextpnr-ice40.
...
* gnu/packages/fpga.scm (nextpnr-ice40): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-03-22 15:59:35 +01:00
pinoaffe@airmail.cc
179be4bbe4
gnu: icestorm: Update to latest revision.
...
* gnu/packages/fpga.scm (icestorm): Update to latest revision.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-03-22 15:59:33 +01:00
Efraim Flashner
113309e044
gnu: r-dt: Update license field.
...
* gnu/packages/statistics.scm (r-dt)[license]: Add wtfpl2.
2020-03-22 15:37:49 +02:00
Efraim Flashner
ff66791d3a
gnu: zzuf: Update license field.
...
* gnu/packages/debug.scm (zzuf)[license]: List as wtfpl2.
2020-03-22 15:37:48 +02:00
Efraim Flashner
8506fce04b
gnu: libcaca: Update license field.
...
* gnu/packages/video.scm (libcaca)[license]: List as wtfpl2.
2020-03-22 15:37:48 +02:00
Mathieu Othacehe
c086c5af1c
build-system: linux-module: Fix cross compilation.
...
* guix/build-system/linux-module.scm (default-kmod, default-gcc): Delete
procedures.
(system->arch): New procedure.
(make-linux-module-builder)[native-inputs]: Move linux...
[inputs]: ...to here.
(linux-module-build-cross): New procedure.
(linux-module-build): Add TARGET. Pass TARGET and ARCH to build side.
(lower): Allow cross-compilation. Move "linux" and "linux-module-builder"
to host-inputs. Add target-inputs. Call linux-module-build-cross if
TARGET is set, linux-module-build otherwise.
* guix/build/linux-module-build-system.scm (configure): Add ARCH argument.
(linux-module-build): Adjust comment.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-03-22 13:20:07 +01:00
Danny Milosavljevic
5c79f23863
system: Add kernel-loadable-modules to operating-system.
...
* gnu/system.scm (<operating-system>): Add kernel-loadable-modules.
(operating-system-directory-base-entries): Use it.
* doc/guix.texi (operating-system Reference): Document
KERNEL-LOADABLE-MODULES.
* gnu/build/linux-modules.scm (depmod): New procedure.
(make-linux-module-directory): New procedure. Export it.
* guix/profiles.scm (linux-module-database): New procedure. Export it.
* gnu/tests/linux-modules.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/linux.scm (make-linux-libre*)[arguments]<#:phases>[install]:
Disable depmod. Remove "build" and "source" symlinks.
[native-inputs]: Remove kmod.
2020-03-22 12:51:50 +01:00
Ludovic Courtès
66a198c807
hydra: evaluate: Use 'with-build-handler'.
...
* build-aux/hydra/evaluate.scm (command-line): Remove 'set!' for
'build-things'. Use 'with-build-handler' instead.
* build-aux/hydra/gnu-system.scm (hydra-jobs): Add comment about
removing 'show-what-to-build' call.
2020-03-22 12:42:52 +01:00
Ludovic Courtès
91601790d0
packages: 'package-field-location' handles missing source properties.
...
This is a followup to f2b24f01f4 .
* guix/packages.scm (package-field-location): Check whether
'source-properties->location' returns #f. This fixes the case where
'source-properties' returns the empty list.
2020-03-22 12:42:52 +01:00
Ludovic Courtès
3e6f65be7a
copy: Use 'with-build-handler'.
...
* guix/scripts/copy.scm (send-to-remote-host): Remove explicit
'show-what-to-build' call. Call 'build-derivations' unconditionally.
(guix-copy): Wrap 'with-status-verbosity' in 'with-build-handler'.
2020-03-22 12:42:52 +01:00
Ludovic Courtès
81c0b52bd6
copy: Actually implement '--dry-run'.
...
* guix/scripts/copy.scm (%options): Add '--dry-run'.
2020-03-22 12:42:52 +01:00
Ludovic Courtès
7473238f7d
copy: Factorize 'with-store' & co.
...
* guix/scripts/copy.scm (send-to-remote-host): Remove 'with-store' and
'set-build-options-from-command-line' call. Add 'local' parameter.
(retrieve-from-remote-host): Likewise.
(guix-copy): Wrap 'with-status-verbosity' in 'with-store' and add call
to 'set-build-options-from-command-line'.
2020-03-22 12:42:52 +01:00
Ludovic Courtès
9b771305df
ui: 'build-notifier' invokes continuation when there's nothing to do.
...
* guix/ui.scm (build-notifier): Call CONTINUE when there's nothing to
build or download, even when DRY-RUN? is true.
2020-03-22 12:42:52 +01:00
Ludovic Courtès
883a1765a6
ui: 'show-what-to-build' returns two values, for builds and downloads.
...
* guix/ui.scm (show-what-to-build): Return two values.
2020-03-22 12:42:52 +01:00
Ludovic Courtès
bec3474107
ui: 'show-what-to-build' returns true when there are grafts to build.
...
* guix/ui.scm (show-what-to-build): Distinguish between 'build/full' and
'build'. Return true whe 'build/full' is non-empty, thus taking grafts
into account.
2020-03-22 12:42:52 +01:00
Ludovic Courtès
a0f480d623
guix system: Use 'with-build-handler'.
...
* guix/scripts/system.scm (reinstall-bootloader): Remove call to
'show-what-to-build*'.
(perform-action): Call 'build-derivations' instead of 'maybe-build'.
(process-action): Wrap 'run-with-store' in 'with-build-handler'.
2020-03-22 12:42:51 +01:00
Ludovic Courtès
65ffb9388c
guix package, pull: Use 'with-build-handler'.
...
* guix/scripts/package.scm (build-and-use-profile): Remove #:dry-run?
and #:use-substitutes?. Remove call to 'show-what-to-build' and
'dry-run?' special case.
(process-actions): Adjust accordingly.
(guix-package*): Wrap 'parameterize' in 'with-build-handler'.
* guix/scripts/pull.scm (build-and-install): Remove #:use-substitutes?
and #:dry-run? and adjust 'update-profile' call accordingly. Remove
'dry-run?' conditional.
(guix-pull): Wrap body in 'with-build-handler'.
2020-03-22 12:42:51 +01:00
Ludovic Courtès
5f5e9a5cd6
pack: Use 'with-build-handler'.
...
* guix/scripts/pack.scm (guix-pack): Wrap 'parameterize' in
'with-build-handler'. Remove explicit call to 'show-what-to-build'.
Call 'build-derivations' regardless of whether OPTS contains 'dry-run?'.
2020-03-22 12:42:51 +01:00
Ludovic Courtès
bdda46a67d
deploy: Use 'with-build-handler'.
...
Until now, 'guix deploy' would never display what is going to be built.
* guix/scripts/deploy.scm (guix-deploy): Wrap 'for-each' in
'with-build-handler'.
2020-03-22 12:42:51 +01:00
Ludovic Courtès
62195b9a8f
guix build: Use 'with-build-handler'.
...
Fixes <https://bugs.gnu.org/28310 >.
Reported by Andreas Enge <andreas@enge.fr >.
* guix/scripts/build.scm (guix-build): Wrap 'parameterize' in
'with-build-handler'. Remove explicit call to 'show-what-to-build'.
Call 'build-derivations' regardless of whether OPTS contains 'dry-run?'.
2020-03-22 12:42:51 +01:00
Ludovic Courtès
07ce23e011
ui: Add a notification build handler.
...
* guix/ui.scm (build-notifier): New variable.
2020-03-22 12:42:51 +01:00
Ludovic Courtès
041b340da4
store: Add 'with-build-handler'.
...
* guix/store.scm (current-build-prompt): New variable.
(call-with-build-handler, invoke-build-handler): New procedures.
(with-build-handler): New macro.
* tests/store.scm ("with-build-handler"): New test.
2020-03-22 12:42:51 +01:00
Ludovic Courtès
9a067fe7ee
syscalls: 'with-file-lock' re-grabs lock when reentering its dynamic extent.
...
* guix/build/syscalls.scm (call-with-file-lock)
(call-with-file-lock/no-wait): Initialize PORT in the 'dynamic-wind'
"in" handler. This allows us to re-enter a captured continuation and
have the lock grabbed anew.
2020-03-22 12:42:51 +01:00
Mathieu Othacehe
1550db6fd4
tests: install: Abort when one installation step fails.
...
When marionette-eval calls fail in gui-test-program, the installation
continues which results in two scenarios:
- hang forever at the next marionette-eval call,
- keep going and start a broken installation, which is annoying because it
clears the terminal and hides the error.
Make sure that gui-test-program is exited with #f return code when one of the
marionette-eval calls fail.
* gnu/tests/install.scm (gui-test-program): Add a new macro
"marionette-eval*". Throw an exception when one on the marionette-eval calls
fail.
2020-03-22 10:53:55 +01:00
Efraim Flashner
e64ea84392
gnu: python-bleach: Update to 3.1.3 (fixes CVE-2020-6816).
...
* gnu/packages/python-xyz.scm (python-bleach): Update to 3.1.3.
[native-inputs]: Remove python-pytest-runner2. Add python-datrie,
python-genshi, python-lxml.
[home-page]: Update to new home-page.
2020-03-22 10:39:08 +02:00
Efraim Flashner
34bf3ed26b
gnu: Add python-block-tracing.
...
* gnu/packages/python-xyz.scm (python-block-tracing): New variable.
2020-03-22 09:58:29 +02:00
Efraim Flashner
0a124c4615
gnu: Add python-privy.
...
* gnu/packages/python-crypto.scm (python-privy): New variable.
2020-03-22 09:58:29 +02:00
Efraim Flashner
0831063778
gnu: Add python-argon2-cffi.
...
* gnu/packages/python-crypto.scm (python-argon2-cffi): New variable.
2020-03-22 09:58:28 +02:00
Efraim Flashner
24200bdf9d
gnu: Add python-userspacefs.
...
* gnu/packages/python-xyz.scm (python-userspacefs): New variable.
2020-03-22 09:58:28 +02:00
Efraim Flashner
2eb09a5cfd
gnu: Add python-fusepyng.
...
* gnu/packages/python-xyz.scm (python-fusepyng): New variable.
2020-03-22 09:58:28 +02:00
Efraim Flashner
9a684b4078
gnu: Add python-keyrings.alt.
...
* gnu/packages/python-crypto.scm (python-keyring.alt): New variable.
2020-03-22 09:58:28 +02:00
Efraim Flashner
10d3fbf051
gnu: edirect: Install more programs.
...
* gnu/packages/bioinformatics.scm (edirect)[arguments]: Add
'patch-programs phase to work around not finding binaries in the PATH.
Rewrite 'install phase to install many more scripts. Rewrite
'wrap-program to wrap more scripts with more programs.
[inputs]: Add edirect-go-programs.
[native-search-paths]: New field.
2020-03-22 09:53:57 +02:00
Efraim Flashner
7d13a94215
gnu: Add edirect-go-programs.
...
* gnu/packages/bioinformatics.scm (edirect-go-programs): New variable.
(edirect)[source]: Adjust snippet to not use non-free software.
2020-03-22 09:53:57 +02:00
Efraim Flashner
073c64dc79
gnu: Add go-github-com-surgebase-porter2.
...
* gnu/packages/golang.scm (go-github-com-surgebase-porter2): New variable.
2020-03-22 09:53:57 +02:00
Efraim Flashner
62cfb49159
gnu: Add go-github-com-surge-glog.
...
* gnu/packages/golang.scm (go-github-com-surge-glog): New variable.
2020-03-22 09:53:56 +02:00
Efraim Flashner
03baf02e6f
gnu: Add go-github-com-pbnjay-memory.
...
* gnu/packages/golang.scm (go-github-com-pbnjay-memory): New variable.
2020-03-22 09:53:56 +02:00
Efraim Flashner
cb38099839
gnu: Add go-github-com-klauspost-cpuid.
...
* gnu/packages/golang.scm (go-github-com-klauspost-cpuid): New variable.
2020-03-22 09:53:56 +02:00
Efraim Flashner
44b9e8fd8f
gnu: Add go-github-com-gedex-inflector.
...
* gnu/packages/golang.scm (go-github-com-gedex-inflector): New variable.
2020-03-22 09:12:50 +02:00
Efraim Flashner
40c86b39c3
gnu: Add go-github-com-fogleman-gg.
...
* gnu/packages/golang.scm (go-github-com-fogleman-gg): New variable.
2020-03-22 09:12:49 +02:00
Efraim Flashner
ae863ccd63
gnu: Add go-github-com-golang-freetype.
...
* gnu/packages/golang.scm (go-github-com-golang-freetype): New variable.
2020-03-22 09:12:49 +02:00
Efraim Flashner
3770bd6526
gnu: Add go-golang-org-rainycape-unidecode.
...
* gnu/packages/golang.scm (go-golang-org-rainycape-unidecode): New variable.
2020-03-22 09:12:49 +02:00
Efraim Flashner
2573709cc9
gnu: Add go-golang-org-x-image.
...
* gnu/packages/golang.scm (go-golang-org-x-image): New variable.
2020-03-22 09:12:49 +02:00
Efraim Flashner
405c0c947c
services: Add fontconfig-file-system-service.
...
* gnu/services/desktop.scm (%fontconfig-file-system,
fontconfig-file-system-service): New variables.
(%desktop-services): Add fontconfig-file-system-service.
2020-03-22 09:08:11 +02:00
pinoaffe@airmail.cc
6f3475655a
gnu: cutter: Update to 1.10.1.
...
* gnu/packages/engineering.scm (cutter): Update to 1.10.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-22 00:02:24 +01:00
pinoaffe@airmail.cc
fcc10cb2cb
gnu: radare2: Update to 4.2.1.
...
* gnu/packages/engineering.scm (radare2): Update to 4.2.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-22 00:02:24 +01:00
Damien Cassou
f5e0634431
gnu: clipmenu: Improve the package definition
...
* gnu/packages/xdisorg.scm (clipmenu): Add the package's unit-tests to the
check phase. Wrap the program so the PATH contains all dependencies. The
previous approach to patch the script was incomplete and more complex.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-22 00:02:23 +01:00
Damien Cassou
fb2709ef98
gnu: clipnotify: Comment on the lack of a test suite.
...
* gnu/packages/xdisorg.scm (clipnotify): Add a comment
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-22 00:02:23 +01:00
Damien Cassou
08df188ea8
gnu: clipmenu: Re-indent.
...
* gnu/packages/xdisorg.scm (clipmenu): Re-indent
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-22 00:02:23 +01:00
Ludovic Courtès
e69b8bbae9
guix-install.sh: /etc/profile.d/guix.sh sources ~/.guix-profile/etc/profile.
...
* etc/guix-install.sh (sys_create_init_profile): Source
~/.guix-profile/etc/profile instead of running 'guix package
--search-paths=prefix'
2020-03-22 00:02:23 +01:00
Ludovic Courtès
3c69701f97
guix-install.sh: Add a trailing colon to 'INFOPATH'.
...
Fixes <https://bugs.gnu.org/39984 >.
Suggested by Adam Porter <adam@alphapapa.net >.
* etc/guix-install.sh (sys_create_init_profile): Add a trailing colon to
'INFOPATH'.
2020-03-22 00:02:23 +01:00
Ludovic Courtès
4a6ec23a97
download: Delete the output file upon failure.
...
This allows ENOSPC conditions to be properly reported as such rather
than as a hash mismatch due to the availability of a truncated file.
Fixes <https://bugs.gnu.org/39993 >.
Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com >.
* guix/build/download.scm (url-fetch): In the failure case, delete FILE.
2020-03-22 00:02:23 +01:00
Alexandros Theodotou
70236bae9e
gnu: Add dragonfly-reverb
...
* gnu/packages/music.scm (dragonfly-reverb): New variable.
2020-03-21 21:52:53 +01:00
Mark H Weaver
ee4c927f33
gnu: linux-libre: Update to 5.4.27.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.27.
(linux-libre-5.4-pristine-source): Update hash.
2020-03-21 16:38:06 -04:00
Mark H Weaver
0d624f1fd8
gnu: linux-libre@4.19: Update to 4.19.112.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.112.
(linux-libre-4.19-pristine-source): Update hash.
2020-03-21 16:38:04 -04:00
Mark H Weaver
f120eab056
gnu: linux-libre@4.14: Update to 4.14.174.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.174.
(linux-libre-4.14-pristine-source): Update hash.
2020-03-21 16:38:02 -04:00
Mark H Weaver
3e13d780b8
gnu: linux-libre@4.9: Update to 4.9.217.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.217.
(linux-libre-4.9-pristine-source): Update hash.
2020-03-21 16:37:59 -04:00
Mark H Weaver
d1b3c6c746
gnu: linux-libre@4.4: Update to 4.4.217.
...
* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.217.
(linux-libre-4.4-pristine-source): Update hash.
2020-03-21 16:37:57 -04:00
John Soo
08c62ac7bd
gnu: ghc-stylish-haskell: Deprecate older duplicate package.
...
* gnu/packages/haskell-xyz.scm (ghc-stylish-haskell): Deprecate it.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-21 21:38:08 +01:00
John Soo
156b08bd2f
gnu: stylish-haskell: Update description.
...
* gnu/packages/haskell-apps.scm (stylish-haskell): Update description.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-21 21:38:08 +01:00
Wiktor Żelazny
3ac12ca61b
gnu: Add r-oai.
...
* gnu/packages/cran.scm (r-oai): new variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-21 21:38:08 +01:00
Wiktor Żelazny
069554dc24
gnu: Add r-latex2exp.
...
* gnu/packages/cran.scm (r-latex2exp): new variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-21 21:38:08 +01:00
Wiktor Żelazny
ae10511981
gnu: Add r-httpcode.
...
* gnu/packages/cran.scm (r-httpcode): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-21 21:38:08 +01:00
wednesday
2e59a63b41
gnu: global: Add 'python-wrapper' as input.
...
* gnu/packages/code.scm (global)[inputs]: Add 'python-wrapper' to fix
tagging python code.
2020-03-21 21:38:08 +01:00
Marius Bakke
18401bdf69
Revert "gnu: Remove qemu-minimal@2.10."
...
This package was still in use by american-fuzzy-lop.
This reverts commit 559f373288 .
2020-03-21 21:38:08 +01:00
Tobias Geerinckx-Rice
dde3f55156
gnu: gpgme: Fix build.
...
Reported by joshuaBPMan on #guix.
* gnu/packages/gnupg.scm (gpgme)[arguments]: Add ‘disable-failing-test’ phase.
2020-03-21 20:42:52 +01:00
Tobias Geerinckx-Rice
b1ebda07cb
gnu: python-pygraphviz: Use HTTPS home page.
...
* gnu/packages/graphviz.scm (python-pygraphviz)[home-page]: Use HTTPS.
2020-03-21 20:42:52 +01:00
Tobias Geerinckx-Rice
d7ee58ccd2
gnu: python-tables: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-tables)[home-page]: Use HTTPS.
2020-03-21 20:42:51 +01:00
Tobias Geerinckx-Rice
02d1fd03ad
gnu: python-future: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-future)[home-page]: Use HTTPS.
2020-03-21 20:42:51 +01:00
Tobias Geerinckx-Rice
20c604c54e
gnu: python-scrypt: Use HTTPS home page.
...
* gnu/packages/python-crypto.scm (python-scrypt)[home-page]: Use HTTPS.
2020-03-21 20:42:51 +01:00
Tobias Geerinckx-Rice
e51b34bb90
gnu: python-scikit-learn: Use HTTPS home page.
...
* gnu/packages/machine-learning.scm (python-scikit-learn)[home-page]: Use HTTPS.
2020-03-21 20:42:50 +01:00
Tobias Geerinckx-Rice
26be188f35
gnu: python2-pyro: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python2-pyro)[home-page]: Use HTTPS.
2020-03-21 20:42:50 +01:00
Tobias Geerinckx-Rice
8c9b6f3299
gnu: python2-element-tree: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python2-element-tree)[home-page]: Use HTTPS.
2020-03-21 20:42:49 +01:00
Tobias Geerinckx-Rice
012d2950af
gnu: python-cheetah: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-cheetah)[home-page]: Use HTTPS.
2020-03-21 20:42:49 +01:00
Tobias Geerinckx-Rice
3d2d9cc7b5
gnu: python-kivy: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-kivy)[home-page]: Use HTTPS.
2020-03-21 20:42:49 +01:00
Ekaitz Zarraga
e7c7912573
gnu: Add gnome-shell-extension-topicons-redux.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-topicons-redux): New
variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-21 20:17:21 +01:00
Alexandru-Sergiu Marton
0cec5c4eb1
gnu: ghc-extra: Downgrade to 1.6.21.
...
* gnu/packages/haskell-xyz.scm (ghc-extra): Downgrade to 1.6.21.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-21 20:17:21 +01:00
Marius Bakke
559f373288
gnu: Remove qemu-minimal@2.10.
...
* gnu/packages/virtualization.scm (qemu-minimal-2.10): Remove variable.
2020-03-21 20:17:20 +01:00
Marius Bakke
ee38d87c58
gnu: Remove flex@2.6.1.
...
* gnu/packages/flex.scm (flex-2.6.1): Remove variable.
2020-03-21 20:17:20 +01:00
Marius Bakke
a67c4ff369
gnu: GRUB: Use the latest version of QEMU for tests.
...
* gnu/packages/bootloaders.scm (grub)[native-inputs]: Change from
QEMU-MINIMAL-2.10 to QEMU-MINIMAL.
2020-03-21 20:17:20 +01:00
Marius Bakke
f142c0775a
gnu: GRUB: Build with the latest version of Flex.
...
* gnu/packages/bootloaders.scm (grub)[native-inputs]: Change from FLEX-2.6.1
to FLEX.
2020-03-21 20:17:20 +01:00
Marius Bakke
9dec91229b
gnu: python-grpcio: Update to 1.27.2.
...
* gnu/packages/rpc.scm (python-grpcio): Update to 1.27.2.
[source](modules, snippet): New fields.
[arguments]: Add phases to use system libraries and the correct compiler.
[inputs]: Add C-ARES, OPENSSL, and ZLIB.
2020-03-21 20:17:20 +01:00
Marius Bakke
80a8583a6b
gnu: TensorFlow: Correct gRPC input.
...
* gnu/packages/machine-learning.scm (tensorflow)[native-inputs]: Move
GRPC:STATIC ...
[inputs]: ... here.
2020-03-21 20:17:20 +01:00
Marius Bakke
447fafe3d7
gnu: gRPC: Update to 1.27.3.
...
* gnu/packages/rpc.scm (grpc): Update to 1.27.3.
[arguments]: Add "-DgRPC_ABSL_PROVIDER=package" in #:configure-flags.
[inputs]: Add ABSEIL-CPP.
(grpc-1.16.1): New public variable.
* gnu/packages/hyperledger.scm (hyperledger-iroha)[inputs]: Change from GRPC
to GRPC-1.16.
* gnu/packages/machine-learning.scm (tensorflow)[native-inputs, inputs]: Likewise.
2020-03-21 20:17:20 +01:00
Marius Bakke
c28a8855f1
gnu: python-gast: Update to 0.3.3.
...
* gnu/packages/python-xyz.scm (python-gast): Update to 0.3.3.
2020-03-21 20:17:19 +01:00
Tobias Geerinckx-Rice
de1d778ef5
gnu: go-gopkg.in-mgo.v2: Use HTTPS home page.
...
* gnu/packages/databases.scm (go-gopkg.in-mgo.v2)[home-page]: Use HTTPS.
2020-03-21 16:20:12 +01:00
Tobias Geerinckx-Rice
aa033c8e49
gnu: lua5.2-expat: Use HTTPS home page.
...
* gnu/packages/lua.scm (lua5.2-expat)[home-page]: Use HTTPS.
2020-03-21 16:20:12 +01:00
Tobias Geerinckx-Rice
de94865859
gnu: git-test-sequence: Use HTTPS home page.
...
* gnu/packages/version-control.scm (git-test-sequence)[home-page]: Use HTTPS.
2020-03-21 16:20:11 +01:00
Tobias Geerinckx-Rice
05fe0f5648
gnu: ogre: Use HTTPS home page.
...
* gnu/packages/graphics.scm (ogre)[home-page]: Use HTTPS.
2020-03-21 16:20:11 +01:00
Tobias Geerinckx-Rice
e2b70d90ca
gnu: ruby-sequel: Use HTTPS home page.
...
* gnu/packages/ruby.scm (ruby-sequel)[home-page]: Use HTTPS.
2020-03-21 16:20:11 +01:00
Tobias Geerinckx-Rice
3573971209
gnu: ruby-rspec: Use HTTPS home page.
...
* gnu/packages/ruby.scm (ruby-rspec)[home-page]: Use HTTPS.
2020-03-21 16:20:11 +01:00
Tobias Geerinckx-Rice
c6be7eeddf
gnu: opencl-clhpp: Use HTTPS home page.
...
* gnu/packages/opencl.scm (opencl-clhpp)[home-page]: Use HTTPS.
2020-03-21 16:20:11 +01:00
Tobias Geerinckx-Rice
7e0f9df902
gnu: gnupg: Update to 2.2.20 [security fix].
...
* gnu/packages/gnupg.scm (gnupg): Update to 2.2.20.
2020-03-21 16:20:11 +01:00
6033fe7de85d
6a65ec0945
gnu: Add emacs-objed.
...
*gnu/packages/emacs-xyz.scm (emacs-objed): New variable.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-03-21 15:41:51 +01:00
Vincent Legoll
93a267b7a4
gnu: blktrace: Update to db4f634.
...
* gnu/packages/linux.scm (blktrace): Update to db4f634.
[revision]: Increment variable.
[patches]: Remove variable.
* gnu/packages/patches/blktrace-use-rmtree.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Remove it.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-03-21 15:17:22 +01:00
Vitaliy Shatrov
2eb39cd26c
gnu: coreutils: Improve description.
...
* gnu/packages/base.scm (coreutils): Improve description and state that there
is no shell included.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-03-21 15:13:30 +01:00
Danny Milosavljevic
ba2a1436d8
gnu: Add r-boa.
...
* gnu/packages/cran.scm (r-boa): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-03-21 14:13:03 +01:00
Naga Malleswari
1163dacd4b
gnu: Add r-crochet.
...
* gnu/packages/cran.scm (r-crochet): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-03-21 14:13:00 +01:00
Jakub Kądziołka
bbeb710de7
gnu: Add hash-extender.
...
* gnu/packages/crypto.scm (hash-extender): New variable.
* gnu/packages/patches/hash-extender-test-suite.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register the new file.
2020-03-21 12:56:11 +01:00
Marius Bakke
f2c7513d16
gnu: python-grpcio: Move to (gnu packages rpc).
...
* gnu/packages/python-xyz.scm (python-grpcio): Move from here ...
* gnu/packages/rpc.scm (python-grpcio): ... to here.
2020-03-21 12:22:22 +01:00
Marius Bakke
c61557b1b6
gnu: gRPC: Move to (gnu packages rpc).
...
* gnu/packages/machine-learning.scm (grpc): Move to ...
* gnu/packages/rpc.scm: ... here. New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/hyperledger.scm: Adjust module imports.
2020-03-21 12:22:22 +01:00
Marius Bakke
dcff9bda97
gnu: python-language-server: Build with python-jedi@0.15.2.
...
* gnu/packages/python-xyz.scm (python-language-server)[propagated-inputs]:
Remove PYTHON-JEDI. Add PYTHON-JEDI-0.15.
(python-jedi-0.15, python-parso-0.5): New public variables.
2020-03-21 11:58:26 +01:00
Tobias Geerinckx-Rice
8198c19c12
gnu: python-django: Use HTTPS home page.
...
* gnu/packages/django.scm (python-django)[home-page]: Use HTTPS.
2020-03-21 03:09:51 +01:00
Tobias Geerinckx-Rice
fa7efe1798
gnu: python2-s3cmd: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python2-s3cmd)[home-page]: Use HTTPS.
2020-03-21 03:09:51 +01:00
Tobias Geerinckx-Rice
acf2b20069
gnu: rsync: Use system zlib and popt libraries.
...
Reduce our likelihood of contracting security bugs at the expense of
compression ratio (in some cases) and compatibility with rsync≤3.1.1.
rsync@3.1.2 was released in 2014. Time to upgrade your CentOS box.
* gnu/packages/rsync.scm (rsync)[inputs]: Add popt and zlib.
[arguments]: Use them.
2020-03-21 03:09:51 +01:00
Tobias Geerinckx-Rice
f9caa6c7c1
gnu: perl-archive-zip: Update to 1.68.
...
* gnu/packages/perl-compression.scm (perl-archive-zip): Update to 1.68.
2020-03-21 03:09:51 +01:00
Tobias Geerinckx-Rice
02e052ba9d
gnu: guile3.0-syntax-highlight: Use HTTPS home page.
...
* gnu/packages/guile-xyz.scm (guile3.0-syntax-highlight)[home-page]: Use HTTPS.
2020-03-21 03:09:51 +01:00
Tobias Geerinckx-Rice
69669b2877
gnu: guile-rsvg: Use HTTPS home page.
...
* gnu/packages/gtk.scm (guile-rsvg)[home-page]: Use HTTPS.
2020-03-21 03:09:51 +01:00
Tobias Geerinckx-Rice
2aaa09f17d
gnu: hdf-eos2: Use HTTPS home page.
...
* gnu/packages/maths.scm (hdf-eos2)[home-page]: Use HTTPS.
2020-03-21 03:09:51 +01:00
Tobias Geerinckx-Rice
a7b7817dd8
gnu: ruby-omniauth: Update to 1.9.1.
...
* gnu/packages/ruby.scm (ruby-omniauth): Update to 1.9.1.
2020-03-21 03:09:51 +01:00
Tobias Geerinckx-Rice
fa2a0fd00b
gnu: Use ‘license:’ prefix in (gnu packages libreoffice).
...
* gnu/packages/libreoffice.scm: Import (guix licenses) with a #:prefix
and adjust all callers.
2020-03-21 03:09:43 +01:00
Tobias Geerinckx-Rice
7ea838447c
gnu: r-maptools: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-maptools)[home-page]: Use HTTPS.
2020-03-21 03:09:43 +01:00
Tobias Geerinckx-Rice
d8bf501eb2
gnu: ocaml-sedlex: Use HTTPS home page.
...
* gnu/packages/ocaml.scm (ocaml-sedlex)[home-page]: Use HTTPS.
2020-03-21 03:09:43 +01:00
Tobias Geerinckx-Rice
786886d1f5
gnu: ocaml-tsdl: Update to 0.9.7.
...
* gnu/packages/ocaml.scm (ocaml-tsdl): Update to 0.9.7.
[native-inputs]: Remove ocaml-ocb-stubblr.
[inputs]: Remove ocaml-result.
2020-03-21 03:09:43 +01:00
Tobias Geerinckx-Rice
2d1e064694
gnu: ocaml-tsdl: Use HTTPS home page.
...
* gnu/packages/ocaml.scm (ocaml-tsdl)[home-page]: Use HTTPS.
2020-03-21 03:09:43 +01:00
Tobias Geerinckx-Rice
fed4ff33fa
gnu: sbcl-parse-number: Use HTTPS home page.
...
* gnu/packages/lisp-xyz.scm (sbcl-parse-number)[home-page]: Use HTTPS.
2020-03-21 03:09:43 +01:00
Tobias Geerinckx-Rice
9ca4c65492
gnu: sbcl-parse-js: Use HTTPS home page.
...
* gnu/packages/lisp-xyz.scm (sbcl-parse-js)[home-page]: Use HTTPS.
2020-03-21 03:09:43 +01:00
Tobias Geerinckx-Rice
113c9b97b4
gnu: sbcl-cl+ssl: Use HTTPS home page.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl+ssl)[home-page]: Use HTTPS.
2020-03-21 03:09:43 +01:00
Tobias Geerinckx-Rice
46a5d07ef7
gnu: cl-jonathan: Use HTTPS home page.
...
* gnu/packages/lisp-xyz.scm (cl-jonathan)[home-page]: Use HTTPS.
2020-03-21 03:09:41 +01:00
Christopher Baines
6b8c390f28
gnu: python-botocore: Update to 1.15.26.
...
To keep compatability with awscli.
* gnu/packages/python-xyz.scm (python-botocore): Update to 1.15.26.
2020-03-21 00:15:11 +00:00
Ludovic Courtès
f2b24f01f4
packages: 'package-field-location' preserves the original file name.
...
Fixes <https://bugs.gnu.org/39425 >.
Reported by Alex ter Weele <alex.ter.weele@gmail.com >.
* guix/packages.scm (package-field-location): Remove 'with-fluids' for
'%file-port-name-canonicalization'. Change the 'file' field of the
resulting location to FILE.
2020-03-20 23:59:31 +01:00
Ludovic Courtès
fe4a37276b
gnu: guix: Install SysV init files to $(prefix)/etc.
...
Fixes <https://bugs.gnu.org/40153 >.
Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com >.
This is a followup to 73fbe04107 .
* gnu/packages/package-management.scm (guix)[arguments]: In 'bootstrap'
phase, change "sysvinitservicedir" in 'nix/local.mk'.
2020-03-20 23:59:31 +01:00
Leo Famulari
f08040c5f8
gnu: VLC: Improve AV1 playback.
...
* gnu/packages/video.scm (inputs): Add dav1d.
2020-03-20 18:51:51 -04:00
Leo Famulari
e401653b51
gnu: FFmpeg: Prefer dav1d over libaom.
...
* gnu/packages/patches/ffmpeg-prefer-dav1d.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/video.scm (ffmpeg)[source]: Use it.
2020-03-20 18:51:51 -04:00
Marius Bakke
85bad77fac
gnu: python2-faker: Add explicit dependency on six.
...
This is a follow-up to commit a6a7336964 .
* gnu/packages/python-xyz.scm (python2-faker)[propagated-inputs]: Add
PYTHON2-SIX.
2020-03-20 22:55:01 +01:00
Marius Bakke
51d42caa94
gnu: python-orator: Update to 0.9.9.
...
* gnu/packages/databases.scm (python-orator): Update to 0.9.9.
[arguments]: Remove #:phases. Add #:tests?.
[native-inputs]: Remove.
[propagated-inputs]: Add PYTHON-PYYAML.
2020-03-20 22:41:59 +01:00
Marius Bakke
a6a7336964
gnu: Update python-faker to to 4.0.2, python2-faker to 3.0.1.
...
* gnu/packages/patches/python-faker-fix-build-32bit.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/python-xyz.scm (python-faker): Update to 4.0.2.
[source](patches, modules, snippet): Remove.
[arguments]: Adjust check phase.
[native-inputs]: Remove PYTHON-EMAIL-VALIDATOR and PYTHON-MOCK. Add
PYTHON-FREEZEGUN, PYTHON-PYTEST, PYTHON-RANDOM2, and PYTHON-VALIDATORS.
[propagated-inputs]: Remove PYTHON-SIX. Add PYTHON-TEXT-UNIDECODE.
(python2-faker): Update to 3.0.1.
[native-inputs]: Add PYTHON2-MOCK.
2020-03-20 22:41:59 +01:00
Marius Bakke
fe36fdb206
gnu: Add python-random2.
...
* gnu/packages/python-xyz.scm (python-random2, python2-random2): New public
variables.
2020-03-20 22:41:59 +01:00
Marius Bakke
28030d290a
gnu: Add python-validators.
...
* gnu/packages/python-xyz.scm (python-validators, python2-validators): New
public variables.
2020-03-20 22:41:59 +01:00
Marius Bakke
9f9335277f
gnu: Add python-text-unidecode.
...
* gnu/packages/python-xyz.scm (python-text-unidecode, python2-text-unidecode):
New public variables.
2020-03-20 22:41:59 +01:00
Marius Bakke
e5023bfd2a
gnu: python-pendulum: Update to 2.1.0.
...
* gnu/packages/time.scm (python-pendulum): Update to 2.1.0.
[native-inputs]: Remove.
[arguments]: New field.
[propagated-inputs]: Remove PYTHON-TZLOCAL.
2020-03-20 22:41:59 +01:00
Marius Bakke
463e98357b
gnu: python-pytzdata: Update to 2019.3.
...
* gnu/packages/time.scm (python-pytzdata): Update to 2019.3.
[native-inputs]: Remove.
[arguments]: New field.
[propagated-inputs]: Add PYTHON-CLEO.
2020-03-20 22:41:58 +01:00
Marius Bakke
0266a6a23b
gnu: python-clikit: Declare Python 2 variant.
...
* gnu/packages/python-xyz.scm (python-clikit)[properties]: New field.
(python2-clikit): New public variable.
2020-03-20 22:41:58 +01:00
Vincent Legoll
830dab870a
gnu: ansible: Update to 2.9.6.
...
* gnu/packages/admin.scm (ansible): Update to 2.9.6.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-20 19:15:52 +01:00
Vincent Legoll
baf4567137
gnu: Add squid.
...
* gnu/packages/networking.scm (squid): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-20 19:15:52 +01:00
Michael Rohleder
fe2b134cf9
gnu: emacs-projectile: Update to 2.1.0.
...
* gnu/packages/emacs-xyz.scm (emacs-projectile): Update to 2.1.0.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-20 19:15:52 +01:00
guy fleury iteriteka
0f7e6964c7
gnu: make-libiberty: Use install-file.
...
* gnu/packages/gcc.scm(make-libiberty): In phase install use
install-file helper function to install file.
2020-03-20 19:15:52 +01:00
Vincent Legoll
12eb7bb8af
gnu: Add blktrace.
...
* gnu/packages/linux.scm (blktrace): New variable.
* gnu/packages/patches/blktrace-use-rmtree.patch: Add file.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-20 19:15:52 +01:00
Brendan Tildesley
ad64b09df4
gnu: Add wev.
...
* gnu/packages/freedesktop.scm (wev): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-20 19:15:52 +01:00
Leo Prikler
fcafee61bf
gnu: add premake5.
...
* gnu/packages/build-tools.scm (premake5): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-20 19:15:52 +01:00
Leo Prikler
3861fb1c1f
gnu: gsettings-desktop-schemas: patch monospace font.
...
* gnu/packages/gnome.scm (gsettings-desktop-schemas)[arguments]<phases>:
Rename `set-adwaita-theme-file-name' to the more generic `patch-schemas'.
Add patch for the monospace font (Source Code Pro 10 -> Monospace 11).
Adjust comments.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-20 19:15:51 +01:00
Marius Bakke
0f6651344f
gnu: libiberty: Do not inherit properties from GCC.
...
* gnu/packages/gcc.scm (make-libiberty)[properties]: New field.
2020-03-20 19:15:51 +01:00
Guillaume Le Vaillant
6145b16778
gnu: osm2pgsql: Update to 1.2.1.
...
* gnu/packages/geo.scm (osm2pgsql): Update to 1.2.1.
[inputs]: Add bzip2 and replace proj.4 by proj.
[native-inputs]: Replace python-2 by python and python2-psycopg2 by
python-psycopg2.
2020-03-20 18:17:21 +01:00
Guillaume Le Vaillant
7ba300ee6e
gnu: libosmium: Update to 2.15.4.
...
* gnu/packages/geo.scm (libosmium): Update to 2.15.4.
[inputs]: Add bzip2 and utfcpp.
2020-03-20 18:16:54 +01:00
Nicolas Goaziou
819c0df2ee
gnu: emacs-company: Update to 0.9.12.
...
* gnu/packages/emacs-xyz.scm (emacs-company): Update to 0.9.12.
2020-03-20 10:05:59 +01:00
Florian Pelz
e84490346d
gnu: nginx-accept-language-module: Simplify decompression phase.
...
See <https://lists.gnu.org/archive/html/guix-patches/2020-03/msg00652.html >
where a similar change was found to be sufficient.
* gnu/packages/web.scm (nginx-accept-language-module)[arguments]:
In 'unpack-nginx-sources' phase, extract the compressed tarball using
tar's auto-decompression instead of decompressing manually.
2020-03-20 08:13:56 +00:00
Florian Pelz
e2303e8e37
gnu: Add v86d.
...
* gnu/packages/xorg.scm (v86d): New variable.
2020-03-20 08:07:45 +00:00
Tobias Geerinckx-Rice
837644b48a
gnu: emacs-company: Use HTTPS home page.
...
* gnu/packages/emacs-xyz.scm (emacs-company)[home-page]: Use HTTPS.
2020-03-20 03:07:07 +01:00
Tobias Geerinckx-Rice
c7a2e64574
gnu: emacs-mit-scheme-doc: Use HTTPS home page.
...
* gnu/packages/emacs-xyz.scm (emacs-mit-scheme-doc)[home-page]: Use HTTPS.
2020-03-20 03:07:06 +01:00
Tobias Geerinckx-Rice
23518188fd
gnu: emacs-ebib: Use HTTPS home page.
...
* gnu/packages/emacs-xyz.scm (emacs-ebib)[home-page]: Use HTTPS.
2020-03-20 03:07:06 +01:00
Tobias Geerinckx-Rice
7942a129b1
gnu: java-modello-plugins-xpp3: Use HTTPS home page.
...
* gnu/packages/java.scm (java-modello-plugins-xpp3)[home-page]: Use HTTPS.
2020-03-20 03:07:06 +01:00
Tobias Geerinckx-Rice
27c0eadef9
gnu: java-aqute-bnd-annotation: Use HTTPS home page.
...
* gnu/packages/java.scm (java-aqute-bnd-annotation)[home-page]: Use HTTPS.
2020-03-20 03:07:06 +01:00
Tobias Geerinckx-Rice
14544d2f99
gnu: java-joda-time: Use HTTPS home page.
...
* gnu/packages/java.scm (java-joda-time)[home-page]: Use HTTPS.
2020-03-20 03:07:06 +01:00
Tobias Geerinckx-Rice
e799400d4b
gnu: java-jmh: Use HTTPS home page.
...
* gnu/packages/java.scm (java-jmh)[home-page]: Use HTTPS.
2020-03-20 03:07:06 +01:00
Tobias Geerinckx-Rice
268dc4720c
gnu: java-plexus-classworlds: Use HTTPS home page.
...
* gnu/packages/java.scm (java-plexus-classworlds)[home-page]: Use HTTPS.
2020-03-20 03:07:06 +01:00
Tobias Geerinckx-Rice
1f0e7e0d59
gnu: bs1770gain: Update to 0.6.7.
...
* gnu/packages/audio.scm (bs1770gain): Update to 0.6.7.
2020-03-20 03:07:06 +01:00
Tobias Geerinckx-Rice
d82160134a
gnu: php: Update to 7.4.4.
...
* gnu/packages/php.scm (php): Update to 7.4.4.
2020-03-20 03:07:06 +01:00
Christopher Baines
9ae3e79172
gnu: Add python-easy-thumbnails.
...
* gnu/packages/django.scm (python-easy-thumbnails): New variable.
2020-03-19 23:47:50 +00:00
Nicolas Goaziou
29a2f61e97
gnu: Add foobillard++.
...
* gnu/packages/games.scm (foobillard++): New variable.
* gnu/packages/patches/foobillard++-pkg-config.patch: New file.
* gnu/local.mk: Reference new file.
2020-03-19 23:24:50 +01:00
Ludovic Courtès
be0a672c30
tests: Accept manual installation scripts that exit with SIGTERM.
...
Fixes <https://bugs.gnu.org/39926 >.
Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com >.
Previously we'd error out if the installation script exits with
non-zero, which was the case because the 'reboot' program would
typically not get a reply, and thus would eventually be killed by PID 1
as the system is brought down.
* gnu/tests/install.scm (run-install)[install]: Expect SCRIPT to exit
with SIGTERM in addition to exiting with zero.
2020-03-19 23:17:32 +01:00
Efraim Flashner
f08b672661
gnu: vim: Update to 8.2.0411.
...
* gnu/packages/vim.scm (vim): Update to 8.2.0411.
2020-03-19 22:33:30 +02:00
Efraim Flashner
25d39a2a2c
gnu: librsvg-next: Inherit from librsvg.
...
* gnu/packages/gnome.scm (librsvg-next)[inherit]: New field, inherit
from librsvg.
2020-03-19 22:33:30 +02:00
Efraim Flashner
6956867056
gnu: librsvg-next: Use cargo-build-system.
...
* gnu/packages/gnome.scm (librsvg-next)[source]: Don't use computed
source. Add snippet to remove vendored crates.
[build-system]: Switch to cargo-build-system.
[arguments]: Remove configure-flags, make-flags, imported modules. Add
modules and vendor fields. Add crates to cargo-inputs and
cargo-development-inputs. Add 'prepare-for-build phase to adjust the
source before building. Add 'gnu-configure phase to add the configure
phase from the gnu-build-system. Replace the 'build, 'check and 'install
phases from the gnu-build-system.
[native-inputs]: Remove rust-1.34, rust-1.34:cargo.
(computed-origin-method, librsvg-next-source): Remove variables.
2020-03-19 22:33:30 +02:00
Efraim Flashner
abca147f20
gnu: librsvg-next-source: Replace all crates.
...
* gnu/packages/gnome.scm (librsvg-next-source): Replace all remaining
vendored crates with packaged ones.
2020-03-19 22:33:30 +02:00
Efraim Flashner
18cef6547b
gnu: Add rust-markup5ever-0.9.
...
* gnu/packages/crates-io.scm (rust-markup5ever-0.9): New variable.
(rust-markup5ever-0.8): Inherit from rust-markup-0.9.
2020-03-19 22:33:29 +02:00
Efraim Flashner
b9affb662b
gnu: Add rust-pangocairo-0.8.
...
* gnu/packages/crates-io.scm (rust-pangocairo-0.8): New variable.
2020-03-19 22:33:29 +02:00
Efraim Flashner
2d1cc3a4c9
gnu: Add rust-pango-0.7.
...
* gnu/packages/crates-io.scm (rust-pango-0.7): New variable.
2020-03-19 22:33:29 +02:00
Efraim Flashner
d23c34727f
gnu: Add rust-rctree-0.3.
...
* gnu/packages/crates-io.scm (rust-rctree-0.3): New variable.
2020-03-19 22:33:28 +02:00
Efraim Flashner
4bf3167de2
gnu: Add rust-nalgebra-0.18.
...
* gnu/packages/crates-io.scm (rust-nalgebra-0.18): New variable.
2020-03-19 22:33:28 +02:00
Efraim Flashner
f87fa00361
gnu: Add rust-abomonation-0.7.
...
* gnu/packages/crates-io.scm (rust-abomonation-0.7): New variable.
2020-03-19 22:33:28 +02:00
Efraim Flashner
5df9352864
gnu: Add rust-recycler-0.1.
...
* gnu/packages/crates-io.scm (rust-recycler-0.1): New variable.
2020-03-19 22:33:28 +02:00
Efraim Flashner
5f29a63f10
gnu: rust-matrixmultiply-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-matrixmultiply-0.1)[arguments]: Don't
skip build.
2020-03-19 22:33:28 +02:00
Efraim Flashner
eef9de5fed
gnu: Add rust-matrixmultiply-0.2.
...
* gnu/packages/crates-io.scm (rust-matrixmultiply-0.2): New variable.
(rust-matrixmultiply-0.1): Inherit from rust-matrixmultiply-0.2.
2020-03-19 22:33:27 +02:00
Efraim Flashner
c450d81a16
gnu: Add rust-rawpointer-0.2.
...
* gnu/packages/crates-io.scm (rust-rawpointer-0.2):New variable.
(rust-rawpointer-0.1): Inherit from rust-rawpointer-0.2.
2020-03-19 22:33:27 +02:00
Efraim Flashner
8511b51650
gnu: Add rust-gdk-pixbuf-0.7.
...
* gnu/packages/crates-io.scm (rust-gdk-pixbuf-0.7): New variable.
2020-03-19 22:33:27 +02:00
Efraim Flashner
ad2c51088f
gnu: Add rust-gio-0.7.
...
* gnu/packages/crates-io.scm (rust-gio-0.7): New variable.
2020-03-19 22:33:27 +02:00
Efraim Flashner
8985755a91
gnu: Add rust-gir-format-check-0.1.
...
* gnu/packages/crates-io.scm (rust-gir-format-check-0.1): New variable.
2020-03-19 22:33:26 +02:00
Efraim Flashner
40b9f38876
gnu: Add rust-fragile-0.3.
...
* gnu/packages/crates-io.scm (rust-fragile-0.3): New variable.
2020-03-19 22:33:26 +02:00
Efraim Flashner
930d8c5a21
gnu: Add rust-data-url-0.1.
...
* gnu/packages/crates-io.scm (rust-data-url-0.1): New variable.
2020-03-19 22:33:26 +02:00
Efraim Flashner
f581452874
gnu: Add rust-cssparser-0.25.
...
* gnu/packages/crates-io.scm (rust-cssparser-0.25): New variable.
2020-03-19 22:33:26 +02:00
Efraim Flashner
ed72b99d8c
gnu: Add rust-cssparser-macros-0.3.
...
* gnu/packages/crates-io.scm (rust-cssparser-macros-0.3): New variable.
2020-03-19 22:33:25 +02:00
Efraim Flashner
57beeed704
gnu: Add rust-cairo-rs-0.7.
...
* gnu/packages/crates-io.scm (rust-cairo-rs-0.7): New variable.
2020-03-19 22:33:25 +02:00
Efraim Flashner
55ca8748df
gnu: Add rust-glib-0.8.
...
* gnu/packages/crates-io.scm (rust-glib-0.8): New variable.
2020-03-19 22:33:25 +02:00
Efraim Flashner
c9d0d4d4ea
gnu: Add rust-procedural-masquerade-0.1.
...
* gnu/packages/crates-io.scm (rust-procedural-masquerade-0.1): New variable.
2020-03-19 22:33:25 +02:00
Efraim Flashner
f90a306d1f
gnu: Add rust-float-cmp-0.5.
...
* gnu/packages/crates-io.scm (rust-float-cmp-0.5): New variable.
(rust-float-cmp-0.3): Inherit from rust-float-cmp-0.5.
2020-03-19 22:33:24 +02:00
Efraim Flashner
2d6fa18399
gnu: Add rust-dtoa-short-0.3.
...
* gnu/packages/crates-io.scm (rust-dtoa-short-0.3): New variable.
2020-03-19 22:33:24 +02:00
Efraim Flashner
ee7ef9cb8c
gnu: Add rust-float-cmp-0.3.
...
* gnu/packages/crates-io.scm (rust-float-cmp-0.3): New variable.
2020-03-19 22:33:24 +02:00
Efraim Flashner
6fee63e6d9
gnu: Add rust-num-0.1.
...
* gnu/packages/crates-io.scm (rust-num-0.1): New variable.
2020-03-19 22:33:24 +02:00
Efraim Flashner
74f44bf74f
gnu: Add rust-num-rational-0.1.
...
* gnu/packages/crates-io.scm (rust-num-rational-0.1): New variable.
2020-03-19 22:33:23 +02:00
Efraim Flashner
fbe6dbb69e
gnu: Add rust-num-complex-0.1.
...
* gnu/packages/crates-io.scm (rust-num-complex-0.1): New variable.
2020-03-19 22:33:23 +02:00
Efraim Flashner
9acfbaf39d
gnu: Add rust-num-bigint-0.1.
...
* gnu/packages/crates-io.scm (rust-num-bigint-0.1): New variable.
2020-03-19 22:33:23 +02:00
Efraim Flashner
85cb4da813
gnu: Add rust-cairo-rs-0.8.
...
* gnu/packages/crates-io.scm (rust-cairo-rs-0.8): New variable.
2020-03-19 22:33:23 +02:00
Efraim Flashner
2832731589
gnu: Add rust-glib-0.9.
...
* gnu/packages/crates-io.scm (rust-glib-0.9): New variable.
2020-03-19 22:33:22 +02:00
Efraim Flashner
8f000e87a2
gnu: Add rust-futures-preview-0.3.
...
* gnu/packages/crates-io.scm (rust-futures-preview-0.3): New variable.
2020-03-19 22:33:22 +02:00
Efraim Flashner
07bf6cbc49
gnu: rust-futures-util-preview-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-futures-util-preview-0.3)[arguments]:
Don't skip build. Skip tests. Replace rust-rand-0.4 with 0.7 in
cargo-inputs. Remove rust-rand-core-0.5.
2020-03-19 22:33:22 +02:00
Efraim Flashner
6de81dd2d8
gnu: Add rust-gtk-rs-lgpl-docs-0.1.
...
* gnu/packages/crates-io.scm (rust-gtk-rs-lgpl-docs-0.1): New variable.
2020-03-19 22:33:22 +02:00
Efraim Flashner
87a3a185fe
gnu: Add rust-rustdoc-stripper-0.1.
...
* gnu/packages/crates-io.scm (rust-rustdoc-stripper-0.1): New variable.
2020-03-19 22:33:21 +02:00
Efraim Flashner
818794ee28
gnu: Add rust-alga-0.9.
...
* gnu/packages/crates-io.scm (rust-alga-0.9): New variable.
2020-03-19 22:33:21 +02:00
Efraim Flashner
e036be30c5
gnu: Add rust-decimal-2.0.
...
* gnu/packages/crates-io.scm (rust-decimal-2.0): New variable.
2020-03-19 22:33:21 +02:00
Efraim Flashner
8ae8478a71
gnu: Add rust-ord-subset-3.
...
* gnu/packages/crates-io.scm (rust-ord-subset-3): New variable.
2020-03-19 22:33:21 +02:00
Efraim Flashner
44b748e4f5
gnu: Add rust-alga-derive-0.9.
...
* gnu/packages/crates-io.scm (rust-alga-derive-0.9): New variable.
2020-03-19 22:33:20 +02:00
Efraim Flashner
34d0c1e7dd
gnu: Add rust-edit-distance-2.1.
...
* gnu/packages/crates-io.scm (rust-edit-distance-2.1): New variable.
2020-03-19 22:33:20 +02:00
Efraim Flashner
f06961ea35
gnu: Add rust-pangocairo-sys-0.10.
...
* gnu/packages/crates-io.scm (rust-pangocairo-sys-0.10): New variable.
2020-03-19 22:33:20 +02:00
Efraim Flashner
1386cad154
gnu: Add rust-pango-sys-0.9.
...
* gnu/packages/crates-io.scm (rust-pango-sys-0.9): New variable.
2020-03-19 22:33:20 +02:00
Efraim Flashner
a3ea699eb3
gnu: Add rust-gtk-pixbuf-sys-0.9.
...
* gnu/packages/crates-io.scm (rust-gdk-pixbuf-sys-0.9): New variable.
2020-03-19 22:33:20 +02:00
Efraim Flashner
d105cc52f9
gnu: Add rust-cairo-sys-rs-0.9.
...
* gnu/packages/crates-io.scm (rust-cairo-sys-rs-0.9): New variable.
2020-03-19 22:33:16 +02:00
Brendan Tildesley
3e000955cd
guix: lint: Ad scdoc as a suggested native input.
...
* guix/lint.scm (check-inputs-should-be-native): Add scdoc.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-03-19 21:10:21 +01:00
Brendan Tildesley
355dd7135c
gnu: grim: Move scdoc to native-inputs.
...
* gnu/packages/image.scm (scdoc)[inputs]: Remove scdoc.
[native-inputs]: Add scdoc.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-03-19 21:10:20 +01:00
Jakub Kądziołka
0b06a0199f
gnu: rust-bindgen: Add missing space to synopsis.
...
* gnu/packages/crates-io.scm (rust-bindgen-0.50)[synopsis]: Add a space
between "C++" and "libraries".
2020-03-19 21:02:34 +01:00
Michael Rohleder
15c3aa0911
gnu: docker-compose: Update to 1.25.4.
...
Fixes <https://bugs.gnu.org/40015 >.
* gnu/packages/docker.scm (docker-compose): Update to 1.25.4.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-03-19 20:45:00 +01:00
Maxim Cournoyer
cc96c9504d
gnu: emacs-magit: Remove obsolete make flags.
...
* gnu/packages/emacs-xyz.scm (emacs-magit): Remove make flags that were jadis
required to reference external Elisp libraries. These are now made available
through EMACSLOADPATH.
2020-03-19 13:08:49 -04:00
Maxim Cournoyer
fdffceeb01
doc: Update to reflect the current installation prefix of Emacs packages.
...
* doc/guix.texi (Application Setup)[Emacs Packages]: No longer mention the
guix.d Elisp installation prefix. Do not treat the user profile specially, as
it is not special anymore.
(Build Systems): Document the correct Elisp installation prefix.
2020-03-19 12:07:10 -04:00
Maxim Cournoyer
d5195020d2
gnu: emacs-mew: Remove guix.d from the Elisp installation directory.
...
* gnu/packages/mail.scm (emacs-mew)[arguments]: Update the Elisp installation
prefix.
2020-03-19 12:07:10 -04:00
Maxim Cournoyer
0a3ce07784
gnu: cedille: Remove guix.d from the Elisp installation directory.
...
* gnu/packages/cedille.scm (cedille)[phases]{patch-cedille-path-el}: Update
the Elisp installation prefix used.
{copy-cedille-mode}: Likewise.
2020-03-19 12:07:10 -04:00
Maxim Cournoyer
d53e87cf11
gnu: ghc-hindent: Remove guix.d from the Elisp installation directory.
...
* gnu/packages/haskell-xyz.scm (ghc-hindent)[phases]{emacs-install}: Update
the installation prefix directory.
2020-03-19 12:07:10 -04:00
Maxim Cournoyer
092cdae90b
gnu: emacs-forge: Use the emacs-build-system.
...
This streamlines the package definition nicely and bring benefits, such as
having the Elisp files scanned for potential /bin/ programs and patched,
compressing the info manual, being able to compile the autoload file, and
installing the byte compiled files to the correct location (under site-lisp/).
* gnu/packages/emacs-xyz.scm (emacs-forge)[build-system]: Switch from the
gnu-build-system to the emacs-build-system.
[arguments]: Remove the #:modules and #:imported-modules arguments. Delete
all the custom phases except the 'chdir-lisp one, and add a new
'build-info-manual phase.
2020-03-19 12:07:10 -04:00
Maxim Cournoyer
93f606b343
gnu: emacs-guix: Remove unnecessary configure flags.
...
* gnu/packages/emacs-xyz.scm (emacs-guix)[arguments]: Remove.
2020-03-19 12:07:10 -04:00
Maxim Cournoyer
06ab895e8c
gnu: emacs-magit-svn: Use the emacs-build-system.
...
* gnu/packages/emacs-xyz.scm (emacs-magit-svn)[build-system]: Use the
emacs-build-system.
[arguments]: Remove.
2020-03-19 12:07:10 -04:00
Brendan Tildesley
5e78a87bb9
gnu: waybar: Update to 0.9.1.
...
* gnu/packages/wm.scm (waybar): Update to 0.9.1.
[inputs]: Add date and gtk-layer-shell dependencies.
[synopsis]:Remove period.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-19 15:14:08 +01:00
Brendan Tildesley
d2793ed696
gnu: Add gtk-layer-shell.
...
* gnu/packages/gtk.scm (gtk-layer-shell): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-19 15:14:08 +01:00
Brendan Tildesley
5ea2058409
gnu: spdlog: Update to 1.5.0.
...
* gnu/packages/logging.scm (spdlog): Update to 1.5.0
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-19 15:14:08 +01:00
Brendan Tildesley
1afd98dc93
gnu: Add date.
...
* gnu/packages/wm.scm (date): New variable.
* gnu/packages/patches/date-output-pkg-config-files.patch: New file.
* gnu/local.mk: Add patch.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-19 15:14:08 +01:00
Ludovic Courtès
892ca1d92f
guix package: Remove unneeded import.
...
This is a followup to 55e1dfa4dd .
* guix/scripts/package.scm: Remove unneeded #:use-module.
2020-03-19 15:14:08 +01:00
Ludovic Courtès
1dca6aaafa
inferior: '&inferior-exception' includes a stack trace.
...
* guix/inferior.scm (port->inferior): Bump protocol to (0 1 1).
(&inferior-exception)[stack]: New field.
(read-repl-response): Recognize 'exception' form for protocol (0 1 1).
* tests/inferior.scm ("&inferior-exception"): Check the value returned
by 'inferior-exception-stack'.
2020-03-19 15:14:08 +01:00
Ludovic Courtès
2b0a370d00
repl: Return stack traces along with exceptions.
...
* guix/repl.scm (repl-prompt): New variable.
(stack->frames): New procedure.
(send-repl-response)[frame->sexp, handle-exception]: New procedure.
Pass HANDLE-EXCEPTION as a pre-unwind handler.
(machine-repl): Define 'tag'. Bump protocol version to (0 1 1).
Wrap 'loop' call in 'call-with-prompt'.
2020-03-19 15:14:08 +01:00
Ludovic Courtès
ec0a866172
inferior: Adjust to protocol (0 1).
...
* guix/inferior.scm (port->inferior): For protocol (0 x ...), where x >= 1,
send the (() repl-version ...) form.
2020-03-19 15:14:08 +01:00
Ludovic Courtès
f06a26f5b5
repl: Allow clients to send their protocol version.
...
* guix/repl.scm (send-repl-response): Add #:version.
(machine-repl): Make 'loop' an internal define with a
'version' parameter. Pass VERSION to 'send-repl-response'.
Send (0 1) as the protocol version.
If the first element read from INPUT matches (() repl-version _ ...),
interpret it as the client's protocol version.
2020-03-19 15:14:08 +01:00
Jan Nieuwenhuizen
ac75bd0102
gnu: system: Remove guile-wm from skeleton.
...
* gnu/system/shadow.scm (default-skeletons): Remove guile-wm (especially as a
dependency).
2020-03-19 12:14:19 +01:00
Efraim Flashner
afa3b4d191
gnu: Fix typo.
...
This is a follow-up to 83a4ab4e42 .
* gnu/local.mk (dist_patch_DATA): Fix typo in patch name.
2020-03-19 12:52:32 +02:00
Hartmut Goebel
d3d8be5281
gnu: Add korganizer.
...
* gnu/packages/kde-pim.scm (korganizer): New variable.
2020-03-19 11:36:23 +01:00
Hartmut Goebel
992c6d29bb
gnu: Add kincidenceeditor.
...
* gnu/packages/kde-pim.scm (kincidenceeditor): New variable.
2020-03-19 11:36:22 +01:00
Hartmut Goebel
b3359b8598
gnu: Add keventviews.
...
* gnu/package/kde-pim.scm (keventviews): New variable.
2020-03-19 11:36:21 +01:00
Hartmut Goebel
d9491d5053
gnu: Add kcalendarsupport.
...
* gnu/packages/kde-pim.scm (kcalendarsupport): New variable.
2020-03-19 11:36:21 +01:00
Hartmut Goebel
9d95d8bd12
gnu: Add kdiagram.
...
* gnu/packages/kde.scm (kdiagram): New variable.
* packages/patches/kdiagram-Fix-missing-link-libraries.patch: New file.
* gnu/local.mk: Add it.
2020-03-19 11:36:21 +01:00
Hartmut Goebel
639b6ead0c
gnu: Add kmail.
...
* gnu/packages/kde-pim.scm (kmail): New variable.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch:
New file.
* gnu/local.mk: Add it.
2020-03-19 11:36:21 +01:00
Hartmut Goebel
dd80d13bea
gnu: Add knotes.
...
* gnu/packages/kde-pim.scm (knotes): NEw variable.
2020-03-19 11:36:20 +01:00
Hartmut Goebel
86633b2218
gnu: Add kaddressbook.
...
* gnu/packages/kde-pim.scm (kaddressbook): New variable.
2020-03-19 11:36:20 +01:00
Hartmut Goebel
de6b782204
gnu: Add kdepim-runtime.
...
* gnu/packages/kde-pim.scm (kdepim-runtime): New variable.
* gnu/packages/patches/kdepim-runtime-Fix-missing-link-libraries.patch:
New file.
* gnu/local.mk: Add it.
2020-03-19 11:36:20 +01:00
Hartmut Goebel
49e247efcc
gnu: Add kdav.
...
This is in kde-pim.scm since it explicitly offers the "KPimKDAV".
* gnu/package/kde-pim.scm (kdav): New variable.
2020-03-19 11:36:19 +01:00
Hartmut Goebel
7a0bb02db4
gnu: Add kblog.
...
* gnu/packages/kde-pim.scm (kblog): New variable.
2020-03-19 11:36:19 +01:00
Hartmut Goebel
d3b543a1fd
gnu: Add kmailcommon.
...
* gnu/packages/kde-pim.scm (kmailcommon): New variable.
2020-03-19 11:36:19 +01:00
Hartmut Goebel
a146c18ca4
gnu: Add kmessagelib.
...
* gnu/packages/kde-pim.scm (kmessagelib): New variable.
2020-03-19 11:36:18 +01:00
Hartmut Goebel
83a4ab4e42
gnu: Add libksieve.
...
* gnu/packages/kde-pim.scm (libksieve): New variable.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch:
New file.
* gnu/local.mk: Add it.
2020-03-19 11:36:18 +01:00
Brice Waegeneire
ea2a180f68
gnu: gpa: Add phase wrap-program.
...
Fixes <https://bugs.gnu.org/36109 >
* gnu/packages/gnupg.scm (gpa)[arguments]: Add phase wrap-program.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-19 10:48:27 +01:00
Ricardo Wurmus
2ceb2ed99f
gnu: r-modelmetrics: Update to 1.2.2.2.
...
* gnu/packages/statistics.scm (r-modelmetrics): Update to 1.2.2.2.
2020-03-19 10:06:29 +01:00
Ricardo Wurmus
f3a64b9960
gnu: r-matrixstats: Update to 0.56.0.
...
* gnu/packages/statistics.scm (r-matrixstats): Update to 0.56.0.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
ecf34a9101
gnu: r-quanteda: Update to 2.0.1.
...
* gnu/packages/cran.scm (r-quanteda): Update to 2.0.1.
[native-inputs]: Add r-knitr.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
40e5102449
gnu: r-isocodes: Update to 2020.03.16.
...
* gnu/packages/cran.scm (r-isocodes): Update to 2020.03.16.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
c7eb52e64c
gnu: r-accept: Update to 0.7.1.
...
* gnu/packages/cran.scm (r-accept): Update to 0.7.1.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
69e260c542
gnu: r-uwot: Update to 0.1.8.
...
* gnu/packages/cran.scm (r-uwot): Update to 0.1.8.
[propagated-inputs]: Remove r-rcppparallel.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
ac9bdd4c68
gnu: r-ggraph: Update to 2.0.2.
...
* gnu/packages/cran.scm (r-ggraph): Update to 2.0.2.
[native-inputs]: Add r-knitr.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
999204f7f7
gnu: r-units: Update to 0.6-6.
...
* gnu/packages/cran.scm (r-units): Update to 0.6-6.
[native-inputs]: Add r-knitr.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
dacebbf066
gnu: r-nonnest2: Update to 0.5-3.
...
* gnu/packages/cran.scm (r-nonnest2): Update to 0.5-3.
[native-inputs]: Add r-knitr.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
ef1443928e
gnu: r-waveslim: Update to 1.8.2.
...
* gnu/packages/cran.scm (r-waveslim): Update to 1.8.2.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
49b68b64f7
gnu: r-ggeffects: Update to 0.14.2.
...
* gnu/packages/cran.scm (r-ggeffects): Update to 0.14.2.
[native-inputs]: Add r-knitr.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
bd1a2cb2c4
gnu: r-glmmtmb: Update to 1.0.1.
...
* gnu/packages/cran.scm (r-glmmtmb): Update to 1.0.1.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
5cef0ef018
gnu: r-pwr: Update to 1.3-0.
...
* gnu/packages/cran.scm (r-pwr): Update to 1.3-0.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
e6f4f314ba
gnu: r-officer: Update to 0.3.8.
...
* gnu/packages/cran.scm (r-officer): Update to 0.3.8.
[propagated-inputs]: Remove r-digest.
[native-inputs]: Add r-knitr.
2020-03-19 10:06:28 +01:00
Ricardo Wurmus
99de0bd1dc
gnu: r-recipes: Update to 0.1.10.
...
* gnu/packages/cran.scm (r-recipes): Update to 0.1.10.
[native-inputs]: Add r-knitr.
2020-03-19 10:06:27 +01:00
Ricardo Wurmus
b8168e8945
gnu: r-rmysql: Update to 0.10.20.
...
* gnu/packages/cran.scm (r-rmysql): Update to 0.10.20.
2020-03-19 10:06:27 +01:00
Ricardo Wurmus
1c7a4952ff
gnu: r-ffbase: Update to 0.12.8.
...
* gnu/packages/cran.scm (r-ffbase): Update to 0.12.8.
2020-03-19 10:06:27 +01:00
Ricardo Wurmus
cabdfeab76
gnu: r-rcpp: Update to 1.0.4.
...
* gnu/packages/cran.scm (r-rcpp): Update to 1.0.4.
[native-inputs]: Remove r-knitr.
2020-03-19 10:06:27 +01:00
Ricardo Wurmus
0776498740
gnu: r-glue: Update to 1.3.2.
...
* gnu/packages/cran.scm (r-glue): Update to 1.3.2.
2020-03-19 10:06:27 +01:00
Ricardo Wurmus
30c56e67f7
gnu: r-crosstalk: Update to 1.1.0.1.
...
* gnu/packages/cran.scm (r-crosstalk): Update to 1.1.0.1.
[propagated-inputs]: Remove r-ggplot2 and r-shiny.
2020-03-19 10:06:27 +01:00
Ricardo Wurmus
2d6a7bca9e
gnu: r-biocpkgtools: Update to 1.4.6.
...
* gnu/packages/bioconductor.scm (r-biocpkgtools): Update to 1.4.6.
[propagated-inputs]: Add r-biocfilecache, r-rappdirs, r-rlang, and
r-tidyselect.
[native-inputs]: Add r-knitr.
2020-03-19 10:06:27 +01:00
Ricardo Wurmus
f7100edaf6
gnu: r-biosigner: Update to 1.14.2.
...
* gnu/packages/bioconductor.scm (r-biosigner): Update to 1.14.2.
[native-inputs]: Remove r-rmarkdown, pandoc, and pandoc-citeproc.
2020-03-19 10:06:27 +01:00
Marius Bakke
0883f34c51
gnu: ungoogled-chromium: Update to 80.0.3987.149-0.516e2d9 [security fixes].
...
This releases fixes CVE-2020-6422, CVE-2020-6424, CVE-2020-6425,
CVE-2020-6426, CVE-2020-6427, CVE-2020-6428, CVE-2020-6429, CVE-2019-20503,
and CVE-2020-6449.
* gnu/packages/chromium.scm (%chromium-version): Set to 80.0.3987.149.
(%ungoogled-revision): Set to 516e2d990a50a4bbeb8c583e56333c2935e2af95.
(%chromium-origin, %ungoogled-origin): Update hashes.
2020-03-19 09:09:47 +01:00
Marius Bakke
baab9eef27
gnu: python2-cython: Exclude parallel tests on i686 systems.
...
* gnu/packages/python-xyz.scm (python2-cython)[arguments]: When building on
i686-linux, override the 'check' phase.
2020-03-19 08:41:51 +01:00
Marius Bakke
e7a90f28cb
gnu: git: Enable parallel tests.
...
* gnu/packages/version-control.scm (git)[arguments]: Remove #:parallel-testS?.
2020-03-19 08:41:51 +01:00
Marius Bakke
c7f06b2b57
gnu: varnish: Update to 6.4.0.
...
* gnu/packages/web.scm (varnish): Update to 6.4.0.
2020-03-19 08:41:50 +01:00
Marius Bakke
0029e65581
gnu: RocksDB: Update to 6.7.3.
...
* gnu/packages/databases.scm (rocksdb): Update to 6.7.3.
2020-03-19 08:41:50 +01:00
Marius Bakke
76e8818b94
gnu: wpebackend-fdo: Update to 1.6.0.
...
* gnu/packages/webkit.scm (wpebackend-fdo): Update to 1.6.0.
2020-03-19 08:41:50 +01:00
Marius Bakke
63efc495c1
gnu: libwpe: Update to 1.6.0.
...
* gnu/packages/webkit.scm (libwpe): Update to 1.6.0.
2020-03-19 08:41:50 +01:00
Marius Bakke
1912ea5003
gnu: dav1d: Update to 0.6.0.
...
* gnu/packages/video.scm (dav1d): Update to 0.6.0.
2020-03-19 08:41:50 +01:00
Marius Bakke
9a9cd9bc7b
gnu: libsoup: Update to 2.70.0.
...
* gnu/packages/gnome.scm (libsoup): Update to 2.70.0.
2020-03-19 08:41:50 +01:00
Marius Bakke
aa0063a00a
gnu: libsecret: Update to 0.20.2.
...
* gnu/packages/gnome.scm (libsecret): Update to 0.20.2.
2020-03-19 08:41:50 +01:00
Marius Bakke
24b5767dad
gnu: git: Update to 2.25.2.
...
* gnu/packages/version-control.scm (git): Update to 2.25.2.
2020-03-19 08:41:49 +01:00
Marius Bakke
c6d24c091c
gnu: OpenSSL: Update replacement to 1.1.1e [fixes CVE-2019-1551].
...
* gnu/packages/tls.scm (openssl-1.1.1d): Rename to ...
(openssl-1.1.1e): ... this. Update to 1.1.1e.
(openssl)[replacement]: Adjust accordingly.
2020-03-19 08:41:49 +01:00
Marius Bakke
05e783871c
build-self: Import (ice-9 threads) in the compute-guix-derivation script.
...
This is required for CALL-WITH-NEW-THREAD in Guile 3.0.
* build-aux/build-self.scm (build-program): Import (ice-9 threads).
2020-03-19 08:41:49 +01:00
Pierre Neidhardt
78cb0f3cf8
gnu: sbcl-cl-webkit: Update to 20200319.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-webkit): Update to 20200319.
2020-03-19 07:44:34 +01:00
Tobias Geerinckx-Rice
58d9027412
gnu: glances: Deprecate python- prefix.
...
* gnu/package/python-xyz.scm (glances): New public variable renamed
from……
(python-glances): …this now-deprecated one.
2020-03-19 02:30:38 +01:00
Tobias Geerinckx-Rice
16b8503f55
gnu: Remove python2-glances variant.
...
* gnu/packages/python-xyz.scm (python2-glances): Remove variable.
2020-03-19 02:30:37 +01:00
Tobias Geerinckx-Rice
b8e777efcf
gnu: python-glances: Update to 3.1.4.
...
* gnu/packages/python-xyz.scm (python-glances): Update to 3.1.4.
2020-03-19 02:30:37 +01:00
Tobias Geerinckx-Rice
bfa368ed0a
gnu: aircrack-ng: Update to 1.6.
...
* gnu/packages/networking.scm (aircrack-ng): Update to 1.6.
2020-03-19 02:30:36 +01:00
Tobias Geerinckx-Rice
f44c555b7d
gnu: neomutt: Update to 20200313.
...
* gnu/packages/mail.scm (neomutt): Update to 20200313.
2020-03-19 02:30:36 +01:00
Tobias Geerinckx-Rice
85b9ae93f0
gnu: Use HTTPS for supported psyc.eu subdomains.
...
* gnu/packages/messaging.scm (libpsyc)[home-page]: Use HTTPS.
(perl-net-psyc)[source, description, home-page]: Likewise.
2020-03-19 02:28:52 +01:00
Tobias Geerinckx-Rice
619ffa02ef
gnu: camlp5: Update home page.
...
* gnu/packages/ocaml.scm (camlp5)[home-page]: Update.
2020-03-19 02:28:37 +01:00
Tobias Geerinckx-Rice
4a0399e277
gnu: jrnl: Use HTTPS home page.
...
* gnu/packages/jrnl.scm (jrnl)[home-page]: Use HTTPS.
2020-03-19 00:45:16 +01:00
Tobias Geerinckx-Rice
2e7d1c567d
gnu: libmygpo-qt: Update home page.
...
* gnu/packages/gpodder.scm (libmygpo-qt)[home-page]: Update.
2020-03-19 00:45:06 +01:00
Tobias Geerinckx-Rice
0c34b5e6d0
gnu: camlzip: Update home page.
...
* gnu/packages/ocaml.scm (camlzip)[home-page]: Update.
2020-03-19 00:44:53 +01:00
Tobias Geerinckx-Rice
a79b7ab5a2
gnu: lablgtk: Update to 2.18.10.
...
* gnu/packages/ocaml.scm (lablgtk): Update to 2.18.10.
2020-03-19 00:42:17 +01:00
Tobias Geerinckx-Rice
6d27891aa0
gnu: bind: Update to 9.16.1.
...
* gnu/packages/dns.scm (isc-bind): Update to 9.16.1.
2020-03-19 00:42:17 +01:00
Tobias Geerinckx-Rice
30ae1e8c94
gnu: inxi-minimal: Update to 3.0.38-1.
...
* gnu/packages/admin.scm (inxi-minimal): Update to 3.0.38-1.
2020-03-19 00:42:17 +01:00
Tobias Geerinckx-Rice
f73c1a48ce
gnu: chafa: Update to 1.2.2.
...
* gnu/packages/image-viewers.scm (chafa): Update to 1.2.2.
2020-03-19 00:42:17 +01:00
Tobias Geerinckx-Rice
1b9e1648f6
gnu: workrave: Update to 1.10.37.
...
* gnu/packages/gnome.scm (workrave): Update to 1.10.37.
[arguments]: Disable #:tests?.
2020-03-19 00:42:16 +01:00
Tobias Geerinckx-Rice
8826b792d8
gnu: dovecot: Use libsodium.
...
This adds support for ARGON2I and ARGON2ID password hashing in exchange
for a <1% increase in closure size.
* gnu/packages/mail.scm (dovecot)[inputs]: Add libsodium.
(dovecot-libsodium-plugin)[description]: Note its use.
2020-03-19 00:42:16 +01:00
Tobias Geerinckx-Rice
d6894b95ec
gnu: dovecot: Use SQLite.
...
* gnu/packages/mail.scm (dovecot)[arguments]: Add "--with-sqlite"
to #:configure-flags.
2020-03-19 00:42:16 +01:00
Tobias Geerinckx-Rice
181d19ab2c
gnu: extempore: Use HTTPS home page.
...
* gnu/packages/music.scm (extempore)[home-page]: Use HTTPS.
2020-03-19 00:42:13 +01:00
Tobias Geerinckx-Rice
51d9c867aa
gnu: r-rhpcblasctl: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-rhpcblasctl)[home-page]: Use HTTPS.
2020-03-19 00:42:13 +01:00
Tobias Geerinckx-Rice
0e2e942515
gnu: r-snowfall: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-snowfall)[home-page]: Use HTTPS.
2020-03-19 00:42:12 +01:00
Tobias Geerinckx-Rice
48a13b4b82
gnu: Use HTTPS for non.tuxfamily.org home pages.
...
* gnu/packages/music.scm (non-timeline, non-mixer, non-session-manager)
(non-sequencer)[home-page]: Use HTTPS.
2020-03-19 00:41:40 +01:00
Nicolas Goaziou
db483baa1a
gnu: emacs-org-static-blog: Fix typo in description.
...
* gnu/packages/emacs-xyz.scm (emacs-org-static-blog)[description]: Fix typo.
2020-03-18 21:50:14 +01:00
Mark H Weaver
b3fa8349ab
gnu: linux-libre: Update to 5.4.26.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.26.
(linux-libre-5.4-pristine-source): Update hash.
2020-03-18 16:46:06 -04:00
Mark H Weaver
30f9236685
gnu: linux-libre@4.19: Update to 4.19.111.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.111.
(linux-libre-4.19-pristine-source): Update hash.
2020-03-18 16:45:00 -04:00
Leo Famulari
001af160d5
doc: Correctly state the size of the glibc-locales package.
...
* doc/guix.texi (Application Setup): Give the correct size.
2020-03-18 14:42:05 -04:00
Tobias Geerinckx-Rice
4de63cf3fc
gnu: tor: Update to 0.4.2.7.
...
* gnu/packages/tor.scm (tor): Update to 0.4.2.7.
2020-03-18 17:49:31 +01:00
Tobias Geerinckx-Rice
61d399c5fb
gnu: pioneer: Use HTTPS home page.
...
* gnu/packages/games.scm (pioneer)[home-page]: Use HTTPS.
2020-03-18 17:48:54 +01:00
Tobias Geerinckx-Rice
2bc3ec3b44
gnu: dovecot: Support LZ4 compression.
...
* gnu/packages/mail.scm (dovecot)[inputs]: Add lz4.
2020-03-18 17:48:53 +01:00
Tobias Geerinckx-Rice
e309b7206f
gnu: r-stabledist: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-stabledist)[home-page]: Use HTTPS.
2020-03-18 17:48:53 +01:00
Tobias Geerinckx-Rice
8a02807a12
gnu: r-proc: Update home page.
...
* gnu/packages/cran.scm (r-proc)[home-page]: Follow (HTTPS) redirection.
2020-03-18 17:48:53 +01:00
Tobias Geerinckx-Rice
917edde580
gnu: r-stepwise: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-stepwise)[home-page]: Use HTTPS.
2020-03-18 17:48:53 +01:00
Tobias Geerinckx-Rice
b89993fbd4
gnu: r-ldheatmap: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-ldheatmap)[home-page]: Use HTTPS.
2020-03-18 17:48:53 +01:00
Tobias Geerinckx-Rice
083a95b7e0
gnu: r-shinyace: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-shinyace)[home-page]: Use HTTPS.
2020-03-18 17:48:53 +01:00
Maxim Cournoyer
6c3881078a
doc: Follow-up commit to f6b950319c.
...
* doc/guix.texi (Invoking guix deploy): Fix typo in example.
Reported-by: Ludovic Courtès <ludo@gnu.org >
2020-03-18 11:16:57 -04:00
Guillaume Le Vaillant
7b1fb40dff
gnu: Add opencpn.
...
* gnu/packages/geo.scm (opencpn): New variable.
2020-03-18 15:20:22 +01:00
Nicolas Goaziou
97dba3876d
gnu: emacs-org-static-blog: Update to 1.3.0.
...
* gnu/packages/emacs-xyz.scm (emacs-org-static-blog): Update to 1.3.0.
2020-03-18 14:42:10 +01:00
Dimakakos Dimos
c1ec7149ed
gnu: emacs-lsp-ui: Update to 6.2.
...
* gnu/packages/emacs-xyz.scm (emacs-lsp-ui): Update to 6.2.
2020-03-18 12:30:21 +01:00
Michael Rohleder
202c674ca7
gnu: emacs-which-key: update to 3.4.0
...
[[PGP Signed Part:No public key for 7C7AFFBEFEF2CB25 created at 2020-03-17T19:10:10+0100 using RSA]]
* gnu/packages/emacs-xyz.scm (emacs-which-key): Update to 3.4.0
From f36fee740bab3d74b526358be421a1527af9b69d Mon Sep 17 00:00:00 2001
From: Michael Rohleder <mike@rohleder.de >
Date: Tue, 17 Mar 2020 19:03:45 +0100
Subject: [PATCH] gnu: emacs-which-key: update to 3.4.0
* gnu/packages/emacs-xyz.scm (emacs-which-key): Update to 3.4.0
2020-03-18 12:28:44 +01:00
Brice Waegeneire
382ba7bad5
gnu: Add emacs-org-static-blog.
...
* gnu/packages/emacs-xyz.scm (emacs-org-static-blog): New variable.
2020-03-18 12:26:28 +01:00
raingloom
0e26c3cfcf
gnu: Add Geary.
...
* gnu/packages/gnome.scm (geary): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-18 11:55:33 +01:00
raingloom
d0f5016475
gnu: gspell: --enable-vala for VAPI (for geary)
...
* gnu/packages/gnome.scm (gspell)[arguments]: Add #:configure-flags.
[native-inputs]: Add VALA.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-18 11:55:33 +01:00
Tanguy Le Carrour
370cb2e0a4
gnu: gnunet-gtk: Update to 0.12.0.
...
* gnu/packages/gnunet.scm (gnunet-gtk): Update to 0.12.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-18 11:55:33 +01:00
Tanguy Le Carrour
aaa7d17dce
gnu: gnunet: Update to 0.12.2.
...
* gnu/packages/gnunet.scm (gnunet): Update to 0.12.2.
[inputs]: Add libjpeg. [arguments]: Deactivate more tests, set LANG env
variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-18 11:55:33 +01:00
Ludovic Courtès
e002332b8a
gnu: mcron: Depend on Guile 2.2.7.
...
Fixes <https://bugs.gnu.org/37237 >.
* gnu/packages/guile-xyz.scm (mcron)[inputs]: Replace GUILE-2.2 with
GUILE-2.2.7.
2020-03-18 11:55:33 +01:00
Florian Pelz
771c5e155d
store: Fix many guix commands failing on some locales.
...
Partly fixes <https://bugs.gnu.org/39970 >.
At least 'guix environment', 'guix install' and 'guix pull'
on 'az_AZ.utf8' and 'tr_TR.utf8' were affected.
* guix/store.scm (store-path-hash-part): Move base path detection to ...
(store-path-base): ... this new exported procedure.
(store-path-package-name): Use it instead of locale-dependent regexps.
(store-regexp*): Remove.
2020-03-14 07:09:14 +00:00
Maxim Cournoyer
6794653e1b
bootloader: grub: Refactor eye-candy a bit.
...
* gnu/bootloader/grub.scm (eye-candy)[setup-gfxterm-body]: Define the GFXMODE
binding using AND-LET* instead of chained AND=>. Add a comment about
supporting graphical mode on other systems than x86. Generate configuration
string using FORMAT rather than STRING-APPEND.
2020-03-17 23:09:14 -04:00
Maxim Cournoyer
aaffde38b5
bootloader: grub: Use the all_video module in graphic mode.
...
* gnu/bootloader/grub.scm (eye-candy): Load the module 'all_video'
which automatically loads all the available and relevant video
modules.
2020-03-17 23:08:16 -04:00
Maxim Cournoyer
f6b950319c
gnu: system: Export %sudoers-specification.
...
Exporting this variable allows reusing the default value of the `sudoers-file'
field when configuring it.
* gnu/system.scm (gnu): Export %sudoers-specification.
* doc/guix.texi (Invoking guix deploy): Document an example, to use with 'guix
deploy'.
2020-03-17 23:01:07 -04:00
Tobias Geerinckx-Rice
ce9fc7e8ab
gnu: r-imager: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-imager)[home-page]: Use HTTPS.
2020-03-18 02:16:21 +01:00
Tobias Geerinckx-Rice
3c1a10e341
gnu: r-gsubfn: Update home page.
...
* gnu/packages/cran.scm (r-gsubfn)[home-page]: Update and use HTTPS.
2020-03-18 02:16:21 +01:00
Tobias Geerinckx-Rice
f9d9a7e4a6
gnu: r-lars: Update home page.
...
* gnu/packages/statistics.scm (r-lars)[home-page]: Follow (HTTPS)
redirection.
2020-03-18 02:16:21 +01:00
Tobias Geerinckx-Rice
d07b513a30
gnu: r-tractor-base: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-tractor-base)[home-page]: Use HTTPS.
2020-03-18 02:16:21 +01:00
Tobias Geerinckx-Rice
e661c96f84
gnu: r-mclust: Use HTTPS home page.
...
* gnu/packages/statistics.scm (r-mclust)[home-page]: Use HTTPS.
2020-03-18 02:16:21 +01:00
Tobias Geerinckx-Rice
72ac699414
gnu: r-pls: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-pls)[home-page]: Use HTTPS.
2020-03-18 02:16:21 +01:00
Tobias Geerinckx-Rice
ddf69c4afe
gnu: r-epi: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-epi)[home-page]: Use HTTPS.
2020-03-18 02:16:21 +01:00
Tobias Geerinckx-Rice
1994e638e5
gnu: r-elasticnet: Update home page.
...
* gnu/packages/cran.scm (r-elasticnet)[home-page]: Follow (HTTPS)
redirection.
2020-03-18 02:16:21 +01:00
Tobias Geerinckx-Rice
f764111bfb
gnu: r-iso: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-iso)[home-page]: Use HTTPS.
2020-03-18 02:16:21 +01:00
Tobias Geerinckx-Rice
dbe0e0db40
gnu: godot: Update to 3.2.1.
...
* gnu/packages/game-development.scm (godot): Update to 3.2.1.
2020-03-18 02:16:21 +01:00
Tobias Geerinckx-Rice
2c674796d4
gnu: tintin++: Update to 2.02.02.
...
* gnu/packages/games.scm (tintin++): Update to 2.02.02.
2020-03-18 02:16:21 +01:00
Tobias Geerinckx-Rice
de60ac2ff2
gnu: tracker-miners: Update to 2.3.3.
...
* gnu/packages/gnome.scm (tracker-miners): Update to 2.3.3.
2020-03-18 02:16:21 +01:00
Tobias Geerinckx-Rice
caaefa4007
gnu: tracker: Update to 2.3.4.
...
* gnu/packages/gnome.scm (tracker): Update to 2.3.4.
2020-03-18 02:16:21 +01:00
Leo Famulari
b8930fd86b
gnu: libfdk: Update to 2.0.1.
...
* gnu/packages/audio.scm (libfdk): Update to 2.0.1.
2020-03-17 18:25:47 -04:00
Tobias Geerinckx-Rice
4ce61a9080
gnu: r-forcats: Use HTTPS home page.
...
* gnu/packages/statistics.scm (r-forcats)[home-page]: Use HTTPS.
2020-03-17 23:09:24 +01:00
Tobias Geerinckx-Rice
39c57484ea
gnu: r-rcppparallel: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-rcppparallel)[home-page]: Use HTTPS.
2020-03-17 23:09:24 +01:00
Tobias Geerinckx-Rice
0e36f3e488
gnu: r-emplik: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-emplik)[home-page]: Use HTTPS.
2020-03-17 23:09:24 +01:00
Tobias Geerinckx-Rice
f8c3d903e9
gnu: r-hapassoc: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-hapassoc)[home-page]: Use HTTPS.
2020-03-17 23:09:24 +01:00
Tobias Geerinckx-Rice
486a080048
gnu: r-htqpcr: Update home page.
...
* gnu/packages/bioconductor.scm (r-htqpcr)[home-page]: Use HTTPS link
to PDF paper.
2020-03-17 23:09:24 +01:00
Tobias Geerinckx-Rice
3ee2070241
gnu: r-beeswarm: Use HTTPS home page.
...
* gnu/packages/statistics.scm (r-beeswarm)[home-page]: Use HTTPS.
2020-03-17 23:09:24 +01:00
Tobias Geerinckx-Rice
6068cbe1e1
gnu: r-acs: Update home page.
...
* gnu/packages/cran.scm (r-acs)[home-page]: Follow (HTTPS) redirection.
2020-03-17 23:09:24 +01:00
Tobias Geerinckx-Rice
1c131432bd
gnu: r-tsa: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-tsa)[home-page]: Use HTTPS.
2020-03-17 23:09:23 +01:00
Tobias Geerinckx-Rice
ac5bd7f0f0
gnu: Use HTTPS for www.rforge.net home pages.
...
* gnu/packages/cran.scm (r-rjava, r-tiff, r-uuid, r-fastmatch, r-jpeg)
[home-page]: Use HTTPS.
* gnu/packages/statistics.scm (r-base64enc)[home-page]: Likewise
2020-03-17 23:09:23 +01:00
Tobias Geerinckx-Rice
38e1b9efc8
gnu: american-fuzzy-lop: Use HTTPS home page.
...
* gnu/packages/debug.scm (american-fuzzy-lop)[home-page]: Use HTTPS.
2020-03-17 23:09:23 +01:00
Tobias Geerinckx-Rice
3ba980b188
gnu: american-fuzzy-lop: Update to 2.56b.
...
* gnu/packages/debug.scm (american-fuzzy-lop): Update to 2.56b.
[source]: Use GIT-FETCH from the new upstream, and GIT-FILE-NAME.
[inputs]: Adjust custom-qemu's ‘apply-afl-patches’ phase to this new
reality. Don't apply upstreamed Qemu patches.
[arguments]: Make the git check-out writable.
2020-03-17 23:09:23 +01:00
Tobias Geerinckx-Rice
317b13f30e
gnu: american-fuzzy-lop: Fix documentation directory.
...
* gnu/packages/debug.scm (american-fuzzy-lop)[arguments]: Install
documentation into its conventional location.
2020-03-17 23:09:23 +01:00
Leo Famulari
6838611252
gnu: Syncthing: Update to 1.4.0.
...
* gnu/packages/syncthing.scm (syncthing): Update to 1.4.0.
[inputs]: Add go-github-com-willf-bloom.
2020-03-17 16:04:13 -04:00
Leo Famulari
79405c030f
gnu: Add go-github-com-willf-bloom.
...
* gnu/packages/golang.scm (go-github-com-willf-bloom): New variable.
2020-03-17 16:04:13 -04:00
Leo Famulari
88841a3ead
gnu: Add go-github-com-willf-bitset.
...
* gnu/packages/golang.scm (go-github-com-willf-bitset): New variable.
2020-03-17 16:04:12 -04:00
Leo Famulari
cb78846c13
gnu: go-github-com-spaolacci-murmur3: Update to 1.1.0
...
* gnu/packages/golang.scm (go-github-com-spaolacci-murmur3): Update to 1.1.0.
2020-03-17 16:04:12 -04:00
Leo Famulari
98c873181a
gnu: go-github-com-pkg-errors: Update to 0.9.1.
...
* gnu/packages/golang.scm (go-github-com-pkg-errors): Update to 0.9.1.
2020-03-17 16:04:06 -04:00
Ricardo Wurmus
57f6ac8d90
gnu: pigx-scrnaseq: Update to 1.1.4.
...
* gnu/packages/bioinformatics.scm (pigx-scrnaseq): Update to 1.1.4.
2020-03-17 20:29:19 +01:00
Tobias Geerinckx-Rice
5a3cbfceb1
gnu: redis: Use HTTPS home page.
...
* gnu/packages/databases.scm (redis)[home-page]: Use HTTPS.
2020-03-17 20:02:27 +01:00
Tobias Geerinckx-Rice
720aa97782
gnu: sipcalc: Use HTTPS home page.
...
* gnu/packages/admin.scm (sipcalc)[home-page]: Use HTTPS.
2020-03-17 20:02:26 +01:00
Tobias Geerinckx-Rice
e496ee679d
gnu: bridge-utils: Update home page.
...
* gnu/packages/linux.scm (bridge-utils)[home-page]: Follow (HTTPS)
redirection.
2020-03-17 20:02:07 +01:00
Tobias Geerinckx-Rice
6c71d56d77
gnu: Add straw-viewer.
...
* gnu/packages/video.scm (straw-viewer): New public variable.
2020-03-17 20:02:07 +01:00
Tobias Geerinckx-Rice
9bd0f41509
gnu: tftp-hpa: Use HTTPS home page.
...
* gnu/packages/networking.scm (tftp-hpa)[home-page]: Use HTTPS.
2020-03-17 20:02:07 +01:00
Tobias Geerinckx-Rice
359b137cd6
gnu: liboop: Use HTTPS home page.
...
* gnu/packages/ssh.scm (liboop)[home-page]: Use HTTPS.
2020-03-17 20:02:07 +01:00
Tobias Geerinckx-Rice
096ed4f935
gnu: guitarix: Use HTTPS home page.
...
* gnu/packages/audio.scm (guitarix)[home-page]: Use HTTPS.
2020-03-17 20:02:07 +01:00
Tobias Geerinckx-Rice
5331dcd6fc
gnu: opensubdiv: Use HTTPS home page.
...
* gnu/packages/graphics.scm (opensubdiv)[home-page]: Use HTTPS.
2020-03-17 20:02:07 +01:00
Ricardo Wurmus
eecf72433f
gnu: agi-bio: Fix unqualified file reference.
...
* gnu/packages/opencog.scm (agi-bio)[arguments]: Add phase
'fix-unqualified-load.
2020-03-17 17:00:31 +01:00
Mathieu Othacehe
8d003ca344
build-system: linux-module: Break some long lines.
...
* gnu/build/linux-modules.scm (make-linux-module-builder, lower): Break some
long commentary lines.
2020-03-17 16:51:14 +01:00
Guillaume Le Vaillant
8ee8eb2698
gnu: gpsd: Install python modules and scripts.
...
* gnu/packages/gps.scm (gpsd)[native-inputs]: Remove python and add bc.
[inputs]: Add python, python-pycairo, python-pygobject,
python-pyserial, python-wrapper and qtbase.
[arguments]: Update scons-flags, remove fix-paths phase, improve fix-build
phase and add wrap-python-scripts phase.
2020-03-17 13:53:04 +01:00
Ricardo Wurmus
3c0456c6b5
gnu: Add guile-irc.
...
* gnu/packages/guile-xyz.scm (guile-irc): New variable.
2020-03-17 13:22:01 +01:00
Efraim Flashner
db9b616110
doc: Fix typo in prosody configuration.
...
* doc/guix.texi (Messaging Services)[Prosody Service]: Switch 'cons' to
'cons*' in example prosody-service-type.
2020-03-17 13:08:39 +02:00
Nicolas Goaziou
0f8ae2ea08
gnu: scintilla: Update to 4.3.2.
...
* gnu/packages/text-editors.scm (scintilla): Update to 4.3.2.
2020-03-17 11:20:42 +01:00
Nicolas Goaziou
8fc83d98dd
gnu: httrack: Fix Texinfo markup in description.
...
* gnu/packages/web.scm (httrack): Fix Texinfo markup in description.
2020-03-17 11:10:45 +01:00
Tobias Geerinckx-Rice
10b52f4695
gnu: simplescreenrecorder: Use HTTPS home page.
...
* gnu/packages/video.scm (simplescreenrecorder)[home-page]: Use HTTPS.
2020-03-17 03:12:25 +01:00
Tobias Geerinckx-Rice
ce91eeacad
gnu: libmng: Use HTTPS home page.
...
* gnu/packages/image.scm (libmng)[home-page]: Use HTTPS.
2020-03-17 03:12:21 +01:00
Tobias Geerinckx-Rice
f4766a1810
gnu: libjaylink: Use HTTPS home page.
...
* gnu/packages/embedded.scm (libjaylink)[home-page]: Use HTTPS.
2020-03-17 03:12:16 +01:00
Tobias Geerinckx-Rice
d74647b04a
gnu: qdbm: Use HTTPS home page.
...
* gnu/packages/databases.scm (qdbm)[home-page]: Use HTTPS.
2020-03-17 03:12:09 +01:00
Tobias Geerinckx-Rice
cfff0b386d
gnu: fritzing: Use HTTPS home page.
...
* gnu/packages/engineering.scm (fritzing)[home-page]: Use HTTPS.
2020-03-17 03:01:23 +01:00
Tobias Geerinckx-Rice
c9938fa84f
gnu: glfw: Use HTTPS home page.
...
* gnu/packages/gl.scm (glfw)[home-page]: Use HTTPS.
2020-03-17 03:01:13 +01:00
Tobias Geerinckx-Rice
fe5ed0bbe3
gnu: wireless-tools: Use HTTPS home page.
...
* gnu/packages/linux.scm (wireless-tools)[home-page]: Use HTTPS.
2020-03-17 03:01:03 +01:00
Tobias Geerinckx-Rice
831d64cc17
gnu: openimageio: Use HTTPS home page.
...
* gnu/packages/graphics.scm (openimageio)[home-page]: Use HTTPS.
2020-03-17 03:00:54 +01:00
Tobias Geerinckx-Rice
df10a64efc
gnu: shogun: Use HTTPS home page.
...
* gnu/packages/machine-learning.scm (shogun)[home-page]: Use HTTPS.
2020-03-17 03:00:46 +01:00
Tobias Geerinckx-Rice
97845067b1
gnu: perl-test-simple: Update to 1.302172.
...
* gnu/packages/perl-check.scm (perl-test-simple): Update to 1.302172.
2020-03-17 03:00:37 +01:00
Tobias Geerinckx-Rice
bf782bfc3f
gnu: five-or-more: Update to 3.32.1.
...
* gnu/packages/gnome.scm (five-or-more): Update to 3.32.1.
[source]: Hard-code NAME.
2020-03-17 03:00:28 +01:00
Tobias Geerinckx-Rice
5144e31492
gnu: eigen: Update to 3.3.7.
...
* gnu/packages/algebra.scm (eigen): Update to 3.3.7.
[source]: Add a patch to fix a test failure.
* gnu/packages/patches/eigen-stabilise-sparseqr-test.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
2020-03-17 03:00:18 +01:00
Tobias Geerinckx-Rice
aa0bcb6c53
gnu: doctest: Update to 2.3.7.
...
* gnu/packages/check.scm (doctest): Update to 2.3.7.
2020-03-17 03:00:09 +01:00
Tobias Geerinckx-Rice
70c910eb98
gnu: reaver: Update to 1.6.6.
...
* gnu/packages/networking.scm (reaver): Update to 1.6.6.
[source]: Hard-code NAME.
2020-03-17 02:59:58 +01:00
Julien Lepiller
06f0453ad2
guix: import: opam: Use a default repository.
...
* guix/import/opam.scm (opam->guix-package): Use a default value for
`repository`.
2020-03-17 00:06:23 +01:00
Ekaitz Zarraga
19b7d41d34
gnu: gnome-shell-extension-appindicator: Update to 33.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator):
Update to 33.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-16 22:58:37 +01:00
Ludovic Courtès
d3fecbab82
gnu: Add tla.
...
* gnu/packages/version-control.scm (tla): New variable.
2020-03-16 22:58:37 +01:00
Ludovic Courtès
70526bdbe0
services: nfs: Remove unnecessary "mount" invocation.
...
* gnu/services/nfs.scm (%nfs-activation): Remove unnecessary "mount"
invocation (/proc/fs/nfsd is automatically mounted, somehow). Remove
unnecessary 'mkdir-p' call.
2020-03-16 22:58:37 +01:00
Ludovic Courtès
e28770df71
services: nfs: Move activation snippet out of line.
...
* gnu/services/nfs.scm (%nfs-activation): New variable.
(nfs-service-type)[extensions]: Refer to %NFS-ACTIVATION.
2020-03-16 22:58:37 +01:00
Ludovic Courtès
a55472955d
tests: nfs-server: Use marionette helper procedures.
...
* gnu/tests/nfs.scm (run-nfs-server-test)[test](wait-for-file): Remove.
("nscd is listening on its socket"): Use 'wait-for-unix-socket'.
2020-03-16 22:58:37 +01:00
Efraim Flashner
8a65ca6f8c
gnu: rust-rand-0.4: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-0.4)[arguments]: Don't skip build.
2020-03-16 21:41:34 +02:00
Efraim Flashner
723c5d5772
gnu: rust-rand-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-0.3)[arguments]: Don't skip build.
2020-03-16 21:39:32 +02:00
Efraim Flashner
fde752baa7
gnu: rust-rand-xorshift-0.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-xorshift-0.2)[arguments]: Don't
skip build.
2020-03-16 21:36:47 +02:00
Efraim Flashner
c11eea603e
gnu: rust-rawpointer-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rawpointer-0.1)[arguments]: Don't
skip build.
2020-03-16 21:34:19 +02:00
Efraim Flashner
182f2a471d
gnu: rust-argon2rs-0.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-argon2rs-0.2)[arguments]: Don't skip
build. Add phase to find all rust dependencies.
2020-03-16 21:28:51 +02:00
Efraim Flashner
f86dd71cbd
gnu: rust-cargon-0.0: Don't skip build.
...
* gnu/pacakges/crates-io.scm (rust-cargon-0.0)[arguments]: Don't skip
build. Move rust-gcc-0.3 from cargo-development-inputs to cargo-inputs.
2020-03-16 21:27:51 +02:00
Mark H Weaver
057b34478f
gnu: linux-libre@4.19: Update to 4.19.110.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.110.
(linux-libre-4.19-pristine-source): Update hash.
2020-03-16 13:54:51 -04:00
Tobias Geerinckx-Rice
1fddf8ef17
gnu: cook: Fix.
...
This follows up on commit 5adc59e6fe .
* gnu/packages/cook.scm (cook)[home-page]: Better.
Reported-by: Marius Bakke <mbakke@fastmail.com >
2020-03-16 16:48:31 +01:00
Tobias Geerinckx-Rice
89b49245ef
gnu: cogl: Use HTTPS home page.
...
* gnu/packages/gnome.scm (cogl)[home-page]: Use HTTPS.
2020-03-16 16:32:43 +01:00
Tobias Geerinckx-Rice
0d2753ccc1
gnu: agda: Use HTTPS home page.
...
* gnu/packages/agda.scm (agda)[home-page]: Use HTTPS.
2020-03-16 16:32:43 +01:00
Tobias Geerinckx-Rice
5adc59e6fe
gnu: cook: Use archived home page.
...
* gnu/packages/cook.scm (cook)[home-page]: Use a Web Archived copy.
2020-03-16 16:32:43 +01:00
Tobias Geerinckx-Rice
9482008321
gnu: wxwidgets: Refer to xdg-open.
...
Fixes <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=22704 >.
* gnu/packages/wxwidgets.scm (wxwidgets)[inputs]: Add xdg-utils.
[arguments]: Add ‘refer-to-inputs’ phase to patch xdg-open calls.
2020-03-16 16:32:43 +01:00
Marius Bakke
8317c89aa3
gnu: python-tqdm: Update to 4.43.0.
...
* gnu/packages/python-xyz.scm (python-tqdm): Update to 4.43.0.
[arguments]: New field.
[native-inputs]: Remove PYTHON-FLAKE8 and PYTHON-COVERAGE.
[properties]: Remove.
(python2-tqdm): Use PACKAGE-WITH-PYTHON2.
2020-03-16 15:45:38 +01:00
Marius Bakke
e26e084fbb
gnu: python-zope-security: Update to 5.1.0.
...
* gnu/packages/python-web.scm (python-zope-security): Update to 5.1.0.
[native-inputs]: Remove PYTHON-SIX. Move PYTHON-ZOPE-COMPONENT and
PYTHON-ZOPE-LOCATION ...
[propagated-inputs]: ... here. Add PYTHON-ZOPE-INTERFACE.
(python2-zope-security)[propagated-inputs]: Remove.
2020-03-16 15:45:38 +01:00
Marius Bakke
386d2fd130
gnu: python-zope-location: Update to 4.2.
...
* gnu/packages/python-web.scm (python-zope-location): Update to 4.2.
[native-inputs]: Add PYTHON-ZOPE-TESTRUNNER.
[propagated-inputs]: Add PYTHON-ZOPE-INTERFACE.
2020-03-16 15:45:37 +01:00
Marius Bakke
a3a7a03312
gnu: python-zope-proxy: Update to 4.3.4.
...
* gnu/packages/python-web.scm (python-zope-proxy): Update to 4.3.4.
[native-inputs]: Add PYTHON-ZOPE-TESTRUNNER.
2020-03-16 15:45:37 +01:00
Marius Bakke
2585304c6e
gnu: python-zope-configuration: Update to 4.3.1.
...
* gnu/packages/python-web.scm (python-zope-configuration): Update to 4.3.1.
[native-inputs]: Add PYTHON-ZOPE-TESTING and PYTHON-ZOPE-TESTRUNNER.
[propagated-inputs]: Add PYTHON-ZOPE-INTERFACE.
2020-03-16 15:45:37 +01:00
Marius Bakke
a1e9c929fa
gnu: python-zope-schema: Update to 5.0.1.
...
* gnu/packages/python-web.scm (python-zope-schema): Update to 5.0.1.
[propagated-inputs]: Remove PYTHON-ZOPE-EXCEPTIONS.
[native-inputs]: Remove PYTHON-NOSE and PYTHON-COVERAGE. Add
PYTHON-ZOPE-TESTRUNNER and PYTHON-ZOPE-I18NMESSAGEID.
2020-03-16 15:45:37 +01:00
Marius Bakke
ce4b7a4436
gnu: python-zope-i18nmessageid: Update to 5.0.1.
...
* gnu/packages/python-web.scm (python-zope-i18nmessageid): Update to 5.0.1.
[native-inputs]: Add PYTHON-COVERAGE and PYTHON-ZOPE-TESTRUNNER.
[propagated-inputs]: Add PYTHON-SIX.
2020-03-16 15:45:37 +01:00
Marius Bakke
ddacd13d56
gnu: python-zope-testrunner: Update to 5.1.
...
* gnu/packages/python-web.scm (python-zope-testrunner): Update to 5.1.
[source](uri): Download tarball instead of zipball.
[native-inputs]: Remove UNZIP. Move PYTHON-ZOPE-INTERFACE and
PYTHON-ZOPE-EXCEPTIONS ...
[propagated-inputs]: ... here.
2020-03-16 15:45:37 +01:00
Marius Bakke
16839ec340
gnu: python-zope-testing: Update to 4.7.
...
* gnu/packages/python-web.scm (python-zope-testing): Update to 4.7.
[source](modules, snippet): Remove.
2020-03-16 15:45:36 +01:00
Marius Bakke
9a1dfda6fa
gnu: python-zope-exceptions: Update to 4.3.
...
* gnu/packages/python-web.scm (python-zope-exceptions): Update to 4.3.
2020-03-16 15:45:36 +01:00
Marius Bakke
5af5165448
gnu: python-zope-interface: Update to 4.7.2.
...
* gnu/packages/python-web.scm (python-zope-interface): Update to 4.7.2.
2020-03-16 15:45:36 +01:00
Marius Bakke
f11b555637
gnu: python-gevent: Update to 1.4.0.
...
* gnu/packages/python-xyz.scm (python-gevent): Update to 1.4.0.
[arguments]: Adjust unbundling variables. Future-proof the C_INCLUDE_PATH
override. Add phases "pretend-to-be-CI" and "adjust-tests". Run the tests
with "python -m gevent.tests", and respect PARALLEL-JOB-COUNT.
[native-inputs]: Add PYTHON-DNSPYTHON, PYTHON-PSUTIL, PYTHON-ZOPE-EVENT and
PYTHON-ZOPE-INTERFACE.
(python2-gevent)[native-inputs]: Fix input inheritance.
2020-03-16 15:45:36 +01:00
Marius Bakke
aa0e4413b7
gnu: python-kivy: Remove unused input.
...
* gnu/packages/python-xyz.scm (python-kivy)[native-inputs]: Remove GIT.
2020-03-16 15:45:36 +01:00
Marius Bakke
24464edd31
gnu: Remove python2-gitdb.
...
Upstream no longer supports Python 2 and there are no users in Guix.
* gnu/packages/version-control.scm (python2-gitdb): Remove variable.
2020-03-16 15:45:36 +01:00
Marius Bakke
751c1b5960
gnu: Remove python2-gitpython.
...
This package fails to build and has no users in Guix.
* gnu/packages/version-control.scm (python2-gitpython): Remove variable.
2020-03-16 15:45:35 +01:00
Marius Bakke
da44dcb87e
gnu: Remove python2-bandit.
...
This package fails to build and has no users in Guix.
* gnu/packages/openstack.scm (python2-bandit): Remove variable.
2020-03-16 15:45:35 +01:00
Marius Bakke
9ff7c73ba5
gnu: Remove python2-oslo.config.
...
This package fails to build and has no users in Guix.
* gnu/packages/openstack.scm (python2-oslo.config): Remove variable.
2020-03-16 15:45:35 +01:00
Marius Bakke
538f44de9b
gnu: Remove python2-oslo.utils.
...
This package fails to build and has no users in Guix.
* gnu/packages/openstack.scm (python2-oslo.utils): Remove variable.
2020-03-16 15:45:35 +01:00
Marius Bakke
710f7b5742
gnu: Remove python2-oslo.serialization.
...
* gnu/packages/openstack.scm (python2-oslo.serialization): Remove variable.
(python-oslo.serialization)[properties]: Remove.
2020-03-16 15:45:35 +01:00
Marius Bakke
e778c457a5
gnu: Remove python2-oslo.log.
...
This package fails to build and has no users in Guix.
* gnu/packages/openstack.scm (python2-oslo.log): Remove variable.
2020-03-16 15:45:35 +01:00
Marius Bakke
dc99be08ef
gnu: Remove python2-tempest-lib.
...
This package fails to build and has no users in Guix.
* gnu/packages/openstack.scm (python2-tempest-lib): Remove variable.
2020-03-16 15:45:35 +01:00
Marius Bakke
3b9610b559
gnu: Remove python2-swiftclient.
...
This package fails to build and has no reverse dependencies.
* gnu/packages/openstack.scm (python2-swiftclient): Remove variable.
(python-swiftclient)[properties]: Remove.
2020-03-16 15:45:35 +01:00
Marius Bakke
d440e02094
gnu: Remove python2-keystoneclient.
...
This package fails to build and has no reverse dependencies.
* gnu/packages/openstack.scm (python2-keystoneclient): Remove variable.
2020-03-16 15:45:34 +01:00
Marius Bakke
2680a3d83e
gnu: Remove git-annex-remote-hubic.
...
This package does not build and is officially unmaintained since 2017.
* gnu/packages/version-control.scm (git-annex-remote-hubic): Remove variable.
2020-03-16 15:45:34 +01:00
Marius Bakke
e76cbdcd90
gnu: beets: Fix build with newer Werkzeug.
...
* gnu/packages/patches/beets-werkzeug-compat.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/music.scm (beets)[source](patches): New field.
2020-03-16 15:45:34 +01:00
Marius Bakke
066c21cda4
gnu: Remove python2-flask-migrate.
...
Upstream no longer supports Python 2 and there are no dependencies on it in Guix.
* gnu/packages/python-web.scm (python2-flask-migrate): Remove variable.
2020-03-16 15:45:34 +01:00
Marius Bakke
f8205d9a78
gnu: python2-flake8: Add missing propagated dependency.
...
* gnu/packages/python-xyz.scm (python2-flake8)[propagated-inputs]: Add
PYTHON-FUNCTOOLS32.
2020-03-16 15:45:34 +01:00
Marius Bakke
b85822eaf9
gnu: python-flask-migrate: Update to 2.5.3.
...
* gnu/packages/python-web.scm (python-flask-migrate): Update to 2.5.3.
2020-03-16 15:45:34 +01:00
Marius Bakke
e5b4b8028a
gnu: python-flask-restful-swagger: Update to 0.20.1.
...
* gnu/packages/python-web.scm (python-flask-restful-swagger): Update to
0.20.1.
[arguments]: New field. Explicitly disable tests.
2020-03-16 15:45:33 +01:00
Marius Bakke
200acbc34b
gnu: python-stdnum: Update to 1.13.
...
* gnu/packages/finance.scm (python-stdnum): Update to 1.13.
[arguments]: New field.
[native-inputs]: Add PYTHON-NOSE.
2020-03-16 15:45:33 +01:00
Marius Bakke
0a044f75b5
gnu: python-flask-restful: Update to 0.3.8.
...
* gnu/packages/patches/python-flask-restful-werkzeug-compat.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/python-web.scm (python-flask-restful): Update to 0.3.8.
[source](patches): New field.
[native-inputs]: Remove PYTHON-SPHINX.
2020-03-16 15:45:33 +01:00
Marius Bakke
8f29817ed5
gnu: python-flask-wtf: Update to 0.14.3.
...
* gnu/packages/python-web.scm (python-flask-wtf): Update to 0.14.3.
[arguments]: Remove obsolete phase. Override check phase.
[native-inputs]: Remove PYTHON-NOSE. Add PYTHON-PYTEST.
2020-03-16 15:45:33 +01:00
Marius Bakke
33901ed8c0
gnu: python-flask-babel: Update to 1.0.0.
...
* gnu/packages/python-web.scm (python-flask-babel): Update to 1.0.0.
[arguments]: New field.
2020-03-16 15:45:33 +01:00
Marius Bakke
4393dafd32
gnu: python-flask-login: Update to 0.5.0.
...
* gnu/packages/python-web.scm (python-flask-login): Update to 0.5.0.
[arguments]: Remove.
[native-inputs]: Remove PYTHON-NOSE and PYTHON-PEP8. Add PYTHON-COVERAGE,
PYTHON-PYCODESTYLE. and PYTHON-PYTEST.
2020-03-16 15:45:33 +01:00
Marius Bakke
15af040cc3
gnu: python-flask: Update to 1.1.1.
...
* gnu/packages/python-web.scm (python-flask): Update to 1.1.1.
2020-03-16 15:45:32 +01:00
Marius Bakke
44b885656a
gnu: python-werkzeug: Update to 1.0.0.
...
* gnu/packages/python-web.scm (python-werkzeug): Update to 1.0.0.
[source](uri): Capitalize PyPI project name.
[native-inputs]: Add PYTHON-PYTEST-TIMEOUT.
2020-03-16 15:45:32 +01:00
Marius Bakke
a1dc5898fb
gnu: python-stem: Update to 1.8.0.
...
* gnu/packages/python-xyz.scm (python-stem): Update to 1.8.0.
2020-03-16 15:45:32 +01:00
Joseph LaFreniere
76d2b9a2e8
gnu: Add libgccjit.
...
* gnu/packages/gcc.scm (libgccjit): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-16 14:05:53 +01:00
Ludovic Courtès
e8cec7cc12
tests: nfs: Ensure 'rpcinfo' can be found.
...
The test was failing since 8b9cad01e9 .
* gnu/tests/nfs.scm (run-nfs-test)[test]("RPC service running"): Add
'setenv' call for PATH.
2020-03-16 14:05:52 +01:00
Ludovic Courtès
a37e03d60e
tests: opensmtpd: Check /var/spool/mail instead of /var/mail.
...
The test had been failing since the upgrade to 6.6.3p1 in commit
2dbfd8eec4 .
* gnu/services/mail.scm (opensmtpd-activation): Create /var/spool/mail.
* gnu/tests/mail.scm (run-opensmtpd-test): Check /var/spool/mail instead
of /var/mail.
2020-03-16 14:05:52 +01:00
Ludovic Courtès
c215d9ec1c
tests: opensmtpd: Gracefully handle test failure.
...
Previously the 'wait' loop would run for ~1024 seconds, at which point
we'd reach the file descriptor limit due to the leak in 'queue-empty?'.
* gnu/tests/mail.scm (run-opensmtpd-test)[test]("mail arrived"): In
'queue-empty?', close PIPE to avoid file descriptor leak. In 'wait'
loop, arrange to run at most 20 times.
2020-03-16 14:05:52 +01:00
Ludovic Courtès
0f13dd2b7f
services: dhcpd: Use 'invoke/quiet' when validating the config file.
...
This avoids the lengthy copyright/config message from dhcpd.
* gnu/services/networking.scm (dhcpd-activation): Use 'invoke/quiet'
instead of 'invoke'.
2020-03-16 14:05:52 +01:00
Ludovic Courtès
ef0f5ff2a7
tests: dhcpd: Adjust network interface name.
...
This is a followup to 8e53fe2b91 .
* gnu/tests/networking.scm (dhcpd-v4-configuration)
(%dhcpd-os): Use "ens3" instead of "eth0".
2020-03-16 14:05:52 +01:00
Ludovic Courtès
4df02ab675
tests: rsync: Set PATH.
...
This is a followup to 8b9cad01e9 , which
would leave PATH unset.
* gnu/tests/rsync.scm (run-rsync-test)[test]("service running"): Add
call to 'setenv' for PATH.
2020-03-16 14:05:52 +01:00
Ricardo Wurmus
bc6bf142d3
gnu: star: Update to 2.7.3a.
...
* gnu/packages/bioinformatics.scm (star): Update to 2.7.3a.
2020-03-16 13:59:20 +01:00
Ricardo Wurmus
85f0958693
services/web: Export nginx-configuration-global-directives.
...
This is a follow-up to commit b420e6deb9 .
* gnu/services/web.scm (nginx-configuration-global-directives): Export
procedure.
2020-03-16 12:22:16 +01:00
Tobias Geerinckx-Rice
2ec4607863
services: nginx: Fix broken default configuration.
...
* gnu/services/web.scm (nginx-configuration): Emit an empty events{}
block by default.
* doc/guix.texi (Web Services): Document it.
2020-03-16 03:19:55 +01:00
Leo Famulari
8bbbbb3935
Revert "gnu: BlueZ: Update to 5.54."
...
This reverts commit f24aaa81de .
This change caused too many rebuilds for the master branch.
2020-03-15 21:03:57 -04:00
Björn Höfling
b19f155cf8
gnu: java-snakeyaml: Update hash.
...
Compared to the the old tarfile available on ci.guix.gnu.org, only the file
'.hg_archival.txt' was removed.
* gnu/packages/java.scm (java-snakeyaml)[source]: Update hash.
2020-03-15 23:10:43 +01:00
Björn Höfling
c3d56df50b
gnu: java-xsdlib: Use archived home page URI, update source URI.
...
* gnu/packages/xml.scm (java-xsdlib)[home-page]: Use archived URI.
[source]: Update URI.
2020-03-15 23:10:42 +01:00
Björn Höfling
5281ba175b
gnu: java-qdox: Move version 2.0-M2 side by side with version 1.12.1.
...
* gnu/packages/java.scm (java-qdox): Move package definition up,
such that it is side by side with version 1.12.1.
2020-03-15 23:10:42 +01:00
Björn Höfling
3e550fc835
gnu: java-qdox: Update source and home-page URI.
...
* gnu/packages/java.scm (java-qdox)[source]: Update URI.
[home-page]: Update URI.
2020-03-15 23:10:42 +01:00
Björn Höfling
839e3e89de
gnu: java-osgi-service-packageadmin: Update source URI.
...
* gnu/packages/java.scm (java-osgi-service-packageadmin)[source]: Update URI.
2020-03-15 23:10:42 +01:00
Björn Höfling
f8f2fefbac
gnu: java-osgi-service-cm: Update source URI.
...
* gnu/packages/java.scm (java-osgi-service-cm)[source]: Update URI.
2020-03-15 23:10:42 +01:00
Björn Höfling
e0695da916
gnu: java-osgi-util-tracker: Update source URI.
...
* gnu/packages/java.scm (java-osgi-util-tracker)[source]: Update URI.
2020-03-15 23:10:42 +01:00
Björn Höfling
b787534b7b
gnu: java-osgi-service-resolver: Update source URI.
...
* gnu/packages/java.scm (java-osgi-service-resolver)[source]: Update URI.
2020-03-15 23:10:42 +01:00
Björn Höfling
4a6a7b2d0c
gnu: java-osgi-service-jdbc: Update source URI.
...
* gnu/packages/java.scm (java-osgi-service-jdbc)[source]: Update URI.
2020-03-15 23:10:41 +01:00
Björn Höfling
9b0bf25c57
gnu: java-osgi-service-log: Update source URI.
...
* gnu/packages/java.scm (java-osgi-service-log)[source]: Update URI.
2020-03-15 23:10:41 +01:00
Björn Höfling
05662561f4
gnu: java-osgi-framework: Update source URI.
...
* gnu/packages/java.scm (java-osgi-framework)[source]: Update URI.
2020-03-15 23:10:41 +01:00
Björn Höfling
7a5c5017d3
gnu: java-osgi-service-repository: Update source URI.
...
* gnu/packages/java.scm (java-osgi-service-repository)[source]: Update URI.
2020-03-15 23:10:41 +01:00
Björn Höfling
98b1985fdc
gnu: java-osgi-service-metatype-annotations: Update source URI.
...
* gnu/packages/java.scm (java-osgi-service-metatype-annotations)[source]:
Update URI.
2020-03-15 23:10:41 +01:00
Björn Höfling
c962e6c414
gnu: java-osgi-util-promise: Update source URI.
...
* gnu/packages/java.scm (java-osgi-util-promise)[source]: Update URI.
2020-03-15 23:10:41 +01:00
Björn Höfling
43be029996
gnu: java-osgi-util-function: Update source URI.
...
* gnu/packages/java.scm (java-osgi-util-function)[source]: Update URI.
2020-03-15 23:10:40 +01:00
Björn Höfling
ec4ba4178b
gnu: java-osgi-namespace-service: Update source URI.
...
* gnu/packages/java.scm (java-osgi-namespace-service)[source]: Update URI.
2020-03-15 23:10:40 +01:00
Björn Höfling
fccce6616b
gnu: java-osgi-namespace-extender: Update source URI.
...
* gnu/packages/java.scm (java-osgi-namespace-extender)[source]: Update URI.
2020-03-15 23:10:40 +01:00
Björn Höfling
1f2643faa3
gnu: java-osgi-resource: Update source URI.
...
* gnu/packages/java.scm (java-osgi-resource)[source]: Update URI.
2020-03-15 23:10:40 +01:00
Björn Höfling
fc1c5dbde5
gnu: java-osgi-dto: Update source URI.
...
* gnu/packages/java.scm (java-osgi-dto)[source]: Update URI.
2020-03-15 23:10:40 +01:00
Björn Höfling
fa315559a6
gnu: java-osgi-service-component-annotations: Update source URI.
...
* gnu/packages/java.scm (java-osgi-service-component-annotations)[source]:
Update URI.
2020-03-15 23:10:40 +01:00
Alexandros Theodotou
70d9ef5139
gnu: Add lv2lint.
...
* gnu/packages/audio.scm (lv2lint): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-15 15:14:14 -04:00
Alexandru-Sergiu Marton
eea58169fb
gnu: Add ghcid.
...
* gnu/packages/haskell-apps.scm (ghcid): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-15 15:04:31 -04:00
Michael Rohleder
e2c7dbbf98
gnu: emacs-debbugs: update to 0.22
...
* gnu/packages/emacs-xyz.scm (emacs-debbugs): Update to 0.22.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-15 14:26:58 -04:00
Vincent Legoll
f24aaa81de
gnu: BlueZ: Update to 5.54.
...
* gnu/packages/linux.scm (bluez): Update to 5.54.
[replacement]: Remove field.
(bluez/fixed): Remove variable.
* gnu/packages/patches/bluez-CVE-2020-0556.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Remove it.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-15 14:25:36 -04:00
Vincent Legoll
323841bda4
gnu: Add nvme-cli
...
* gnu/packages/linux.scm (nvme-cli): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-15 13:54:00 -04:00
Vincent Legoll
cd773f1185
gnu: nose2: Update to 0.9.2.
...
* gnu/packages/check.scm (python-nose2): Update to 0.9.2.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-15 13:45:59 -04:00
Ricardo Wurmus
ed78340438
gnu: eolie: Update to 0.9.98.1.
...
* gnu/packages/gnome.scm (eolie): Update to 0.9.98.1.
2020-03-15 18:00:22 +01:00
Sebastian Schott
39af91db79
gnu: Add rapid-photo-downloader
...
* gnu/packages/photo.scm (rapid-photo-downloader): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-15 16:41:44 +00:00
Sebastian Schott
2f12e6608b
gnu: Add python-tenacity
...
* gnu/packages/python-xyz.scm (python-tenacity): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-15 16:41:44 +00:00
Sebastian Schott
dcf9532995
gnu: Add python-colorlog
...
* gnu/packages/python-xyz.scm (python-colorlog): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-15 16:41:44 +00:00
Sebastian Schott
23fde56b33
gnu: Add python-pyprind
...
* gnu/packages/python-xyz.scm (python-pyprind): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-15 16:41:43 +00:00
Sebastian Schott
f3465dee98
gnu: Add python-gphoto2
...
* gnu/packages/python-xyz.scm (python-gphoto2): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-15 16:41:43 +00:00
Sebastian Schott
2763f0de41
gnu: Add python-colour
...
* gnu/packages/python-xyz.scm (python-colour): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-15 16:41:43 +00:00
Sebastian Schott
5164a92eaa
gnu: Add python-d2to1
...
* gnu/packages/python-xyz.scm (python-d2to1): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-15 16:41:43 +00:00
Sebastian Schott
a5e76112b6
gnu: Add python-rawkit
...
* gnu/packages/python-xyz.scm (python-rawkit): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-15 16:41:43 +00:00
Sebastian Schott
1b9c1fdb42
gnu: Add python-easygui
...
* gnu/packages/python-xyz.scm (python-easygui): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-15 16:41:43 +00:00
Sebastian Schott
244a527d44
gnu: Add python-pymediainfo
...
* gnu/packages/python-xyz.scm (python-pymediainfo): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-03-15 16:41:40 +00:00
Marius Bakke
f5eb13b211
gnu: mesa-opencl: Build with clang@9.
...
This is a follow-up to commit cf4fdbcb0b .
* gnu/packages/gl.scm (mesa-opencl)[native-inputs]: Change from CLANG-8 to CLANG-9.
(mesa)[inputs]: Add reminder.
2020-03-15 15:49:05 +01:00
Marius Bakke
4fc26c6592
gnu: python-tblib: Update to 1.6.0.
...
* gnu/packages/python-xyz.scm (python-tblib): Update to 1.6.0.
2020-03-15 15:47:17 +01:00
Marius Bakke
45ebd90c18
gnu: python-alembic: Update to 1.4.1.
...
* gnu/packages/patches/python-alembic-exceptions-cause.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/databases.scm (python-alembic): Update to 1.4.1.
[source](patches): New field.
[arguments]: New field, override check phase.
2020-03-15 15:09:08 +01:00
Marius Bakke
baea210c04
gnu: python-editor: Update to 1.0.4.
...
* gnu/packages/python-xyz.scm (python-editor): Update to 1.0.4.
[arguments]: New field.
[home-page, synopsis]: Adjust indentation.
2020-03-15 15:09:08 +01:00
Marius Bakke
745041b59f
gnu: python-jedi: Update to 0.16.
...
* gnu/packages/patches/python-jedi-deleted-variables.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/python-xyz.scm (python-jedi): Update to 0.16.
[source](patches): New field.
2020-03-15 15:09:07 +01:00
Marius Bakke
ab6e4ab8c3
gnu: python-psycopg2: Update to 2.8.4.
...
* gnu/packages/databases.scm (python-psycopg2): Update to 2.8.4.
2020-03-15 15:09:07 +01:00
Marius Bakke
7d5f0795c1
gnu: python-sqlalchemy: Update to 1.3.15.
...
* gnu/packages/databases.scm (python-sqlalchemy): Update to 1.3.15.
2020-03-15 15:09:07 +01:00
Marius Bakke
a4abed71ae
gnu: python-parso: Update to 0.6.2.
...
* gnu/packages/python-xyz.scm (python-parso): Update to 0.6.2.
2020-03-15 15:09:07 +01:00
Marius Bakke
e3da9b2e55
gnu: Update python-natsort to 7.0.1, python2-natsort to 6.2.1.
...
* gnu/packages/python-xyz.scm (python-natsort): Update to 7.0.1.
(python2-natsort): Update to 6.2.1.
2020-03-15 15:09:07 +01:00
Marius Bakke
0731f943e3
gnu: Update python-seaborn to 0.10.0, python2-seaborn to 0.9.1.
...
* gnu/packages/python-xyz.scm (python-seaborn): Update to 0.9.0.
[source](patches): Remove.
[arguments]: Remove obsolete phase.
[properties]: New field.
(python2-seaborn): Update to 0.9.1.
2020-03-15 15:09:07 +01:00
Marius Bakke
23bc9a3586
gnu: python-joblib: Update to 0.14.1.
...
* gnu/packages/python-xyz.scm (python-joblib): Update to 0.14.1.
2020-03-15 15:09:07 +01:00
Marius Bakke
5a9980d55e
gnu: python-networkx: Update to 2.4.
...
* gnu/packages/python-xyz.scm (python-networkx): Update to 2.4.
[source](uri): Download tarball instead of zipball.
[arguments]: New field.
[native-inputs]: Remove PYTHON-NOSE and UNZIP. Add PYTHON-PYTEST.
[properties]: New field.
(python2-networkx): Stick with version 2.2.
2020-03-15 15:09:06 +01:00
Marius Bakke
c19930dc6b
gnu: python-pyrsistent: Update to 0.15.7.
...
* gnu/packages/python-xyz.scm (python-pyrsistent): Update to 0.15.7.
2020-03-15 15:09:06 +01:00
Marius Bakke
3987715415
gnu: python2-pandas: Fix build with Python 2.7.17.
...
While at it, fix the inheritance.
* gnu/packages/python-science.scm (python2-pandas): Use INHERIT instead of
PACKAGE/INHERIT.
[source](modules, snippet): New fields.
2020-03-15 15:09:06 +01:00
Marius Bakke
382550f0be
gnu: python2-scikit-learn: Downgrade to 0.20.4.
...
This is a follow-up to commit 546893c2965c8114e4d7cfe1de46c46664ec4b9e.
* gnu/packages/machine-learning.scm (python-scikit-learn)[properties]: New field.
(python2-scikit-learn)[version, source]: New fields.
2020-03-15 15:09:06 +01:00
Marius Bakke
c085742e07
gnu: libarea: Build with cmake-minimal.
...
* gnu/packages/engineering.scm (libarea)[native-inputs]: Change from CMAKE to
CMAKE-MINIMAL.
2020-03-15 15:09:06 +01:00
Marius Bakke
76e0b5ba26
gnu: python-pyside: Update to 5.12.6.
...
* gnu/packages/qt.scm (python-shiboken-2): Update to 5.12.6.
[source]: Download tarball release instead of git repository.
[arguments]: Add phase to make files writable and update timestamps.
(python-pyside-2): Inherit version and source from PYTHON-SHIBOKEN-2.
[native-inputs]: Remove LIBCXX-6. Rename "python-wrapper" input to "python".
Change from CMAKE to CMAKE-MINIMAL.
[arguments]: Remove libcxx substitution. Add "-DPYTHON_EXECUTABLE" in
#:configure-flags.
(python-pyside-2-tools)[native-inputs]: Add PYTHON-WRAPPER.
[arguments]: Set "-DPYTHON_EXECUTABLE" in #:configure-flags. Add phase
'go-to-source-dir'.
2020-03-15 15:09:06 +01:00
Ricardo Wurmus
0b6de85a4a
gnu: zabbix-agentd: Update to 4.4.6.
...
* gnu/packages/monitoring.scm (zabbix-agentd): Update to 4.4.6.
2020-03-15 15:07:14 +01:00
Ricardo Wurmus
a431a63537
gnu: guile-gi: Embed absolute file name of extension library.
...
* gnu/packages/guile-xyz.scm (guile-gi)[arguments]: Add phase
patch-references-to-extension.
2020-03-15 14:17:26 +01:00
Ricardo Wurmus
b420e6deb9
services/web: nginx-configuration: Add support for global directives.
...
* gnu/services/web.scm (<nginx-configuration>)[global-directives]: Add field.
(emit-global-directive): New procedure.
(default-nginx-config): Use it.
* doc/guix.texi (Web Services): Document it.
2020-03-15 12:05:32 +01:00
Ricardo Wurmus
995b391013
services/web: Remove empty events directive from default-nginx-config.
...
* gnu/services/web.scm (default-nginx-config): Remove empty events directive.
2020-03-15 12:05:32 +01:00
Efraim Flashner
6e003bd4cc
gnu: Add python-pytest-vcr.
...
* gnu/packages/python-check.scm (python-pytest-vcr): New variable.
2020-03-15 08:54:31 +02:00
Efraim Flashner
3eca7ff968
gnu: Add python-blurhash.
...
* gnu/packages/python-crypto.scm (python-blurhash): New variable.
2020-03-15 08:52:18 +02:00
Efraim Flashner
b5ffcbe1af
gnu: Add bidiv.
...
* gnu/packages/fribidi.scm (bidiv): New variable.
* gnu/packages/patches/bidiv-update-fribidi.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
2020-03-15 08:47:21 +02:00
Leo Famulari
90beb0ed45
gnu: LibreOffice: Update to 6.4.1.2.
...
* gnu/packages/libreoffice.scm (libreoffice): Update to 6.4.1.2.
2020-03-14 20:33:57 -04:00
Leo Famulari
183f258ea8
Revert "gnu: VIGRA: Try to fix a build failure on the build farm."
...
This doesn't have any effect on our build farm, because Cuirass does not
honor the 'timeout' and 'max-silent-time' properties:
https://lists.gnu.org/archive/html/guix-devel/2020-03/msg00209.html
This reverts commit 9e89b41966 .
* gnu/packages/image.scm (vigra)[properties]: Remove field.
2020-03-14 20:33:54 -04:00
Tobias Geerinckx-Rice
77386648da
gnu: gauche: Use HTTPS home page.
...
* gnu/packages/scheme.scm (gauche)[home-page]: Use HTTPS.
2020-03-15 01:08:08 +01:00
Tobias Geerinckx-Rice
131f0f853e
gnu: librep: Update home page.
...
* gnu/packages/sawfish.scm (librep)[home-page]: Follow (HTTPS)
redirection.
2020-03-15 01:08:08 +01:00
Tobias Geerinckx-Rice
416d098a0e
gnu: librep: Don't use NAME in source URI.
...
* gnu/packages/sawfish.scm (librep)[source]: Hard-code NAME.
2020-03-15 01:08:07 +01:00
Tobias Geerinckx-Rice
8031a55a23
gnu: sudo: Update to 1.8.31p1.
...
* gnu/packages/admin.scm (sudo): Update to 1.8.31p1.
2020-03-15 01:08:07 +01:00
Björn Höfling
7779ad5038
gnu: java-osgi-cmpn: Update source URI.
...
* gnu/packages/java.scm (java-osgi-cmpn)[source]: Update URI.
2020-03-14 23:06:35 +01:00
Björn Höfling
3344bc495d
gnu: java-qdox-1.12: Update source and home-page URI.
...
* gnu/packages/java.scm (java-qdox-1.12)[source]: Update URI.
[home-page]: Update URI.
2020-03-14 23:06:34 +01:00
Tobias Geerinckx-Rice
5acaec829f
gnu: pangomm: Update home page.
...
* gnu/packages/gtk.scm (pangomm)[home-page]: Follow (HTTPS)
redirection.
2020-03-14 22:01:40 +01:00
Tobias Geerinckx-Rice
30e8cf5f22
gnu: giblib: Use archived home page.
...
* gnu/packages/image.scm (giblib)[home-page]: Use Web Archive snapshot.
2020-03-14 22:01:40 +01:00
Tobias Geerinckx-Rice
1a04595498
gnu: giblib: Add mirror URL.
...
* gnu/packages/image.scm (giblib)[source]: Add another URL.
2020-03-14 22:01:40 +01:00
Tobias Geerinckx-Rice
0b1d71b218
gnu: ant: Use HTTPS home page.
...
* gnu/packages/java.scm (ant)[home-page]: Use HTTPS.
2020-03-14 22:01:40 +01:00
Tobias Geerinckx-Rice
a489466b95
gnu: fio: Update to 3.19.
...
* gnu/packages/benchmark.scm (fio): Update to 3.19.
2020-03-14 22:01:40 +01:00
Tobias Geerinckx-Rice
20035fa7d7
gnu: cube: Use HTTPS home page.
...
* gnu/packages/profiling.scm (cube)[home-page]: Use HTTPS.
2020-03-14 22:01:40 +01:00
Tobias Geerinckx-Rice
189c0b33ba
gnu: talkfilters: Don't use NAME in source URI.
...
* gnu/packages/games.scm (talkfilters)[source]: Hard-code NAME.
2020-03-14 22:01:40 +01:00
Tobias Geerinckx-Rice
edd3a25606
gnu: hyperrogue: Update to 11.3a.
...
* gnu/packages/games.scm (hyperrogue): Update to 11.3a.
2020-03-14 22:01:40 +01:00
Tobias Geerinckx-Rice
d3be522036
gnu: openlibm: Use HTTPS home page.
...
* gnu/packages/maths.scm (openlibm)[home-page]: Use HTTPS.
2020-03-14 22:01:40 +01:00
Felix Gruber
6ceb771657
gnu: define dune-*-openmpi packages
...
* gnu/packages/maths.scm (dune-common-openmpi, dune-geometry-openmpi,
dune-istl-openmpi, dune-typetree-openmpi, dune-uggrid-openmpi,
dune-grid-openmpi, dune-alugrid-openmpi, dune-subgrid-openmpi,
dune-localfunctions-openmpi, dune-functions-openmpi,
dune-pdelab-openmpi): New variables.
(add-openmpi-to-dune-package): New function to add openmpi to the
inputs of a dune-* package and replace all dune-* packages in its
input with the corresponding dune-*-openmpi package.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-14 17:54:34 +01:00
Felix Gruber
393dc1cc0b
gnu: dune-*: remove openmpi dependency
...
* gnu/packages/maths.scm (dune-*)[inputs]: Remove openmpi dependency.
[arguments]: remove code to setup openmpi for tests.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-14 17:54:34 +01:00
Efraim Flashner
3dade1d59e
gnu: gcc-9: Update to 9.3.0.
...
* gnu/packages/gcc.scm (gcc-9): Update to 9.3.0.
2020-03-14 18:52:41 +02:00
Ricardo Wurmus
abb0ff4548
gnu: Add guile3.0-chickadee.
...
* gnu/packages/game-development.scm (guile3.0-chickadee): New variable.
2020-03-14 17:31:40 +01:00
Ricardo Wurmus
ad1edd03ad
gnu: Add guile3.0-opengl.
...
* gnu/packages/gl.scm (guile3.0-opengl): New variable.
2020-03-14 17:31:40 +01:00
Ricardo Wurmus
59d10c3112
gnu: Add guile3.0-sdl2.
...
* gnu/packages/sdl.scm (guile3.0-sdl2): New variable.
2020-03-14 17:31:40 +01:00
Jakub Kądziołka
ce226e9d8d
gnu: Add superfamiconv
...
* gnu/packages/graphics.scm (superfamiconv): New variable.
2020-03-14 13:14:59 +01:00
Marius Bakke
aebba13c0b
Merge branch 'staging'
2020-03-14 12:57:21 +01:00
Marius Bakke
747953c430
gnu: libopenshot: Update to 0.2.5.
...
* gnu/packages/video.scm (libopenshot): Update to 0.2.5.
2020-03-14 11:55:34 +01:00
Marius Bakke
f575668730
gnu: libopenshot-audio: Update to 0.2.0.
...
* gnu/packages/audio.scm (libopenshot-audio): Update to 0.2.0.
2020-03-14 11:55:34 +01:00
Marius Bakke
a92a93c9a4
gnu: cppzmq: Update to 4.6.0.
...
* gnu/packages/networking.scm (cppzmq): Update to 4.6.0.
[arguments]: Add #:configure-flags.
2020-03-14 11:55:34 +01:00
Marius Bakke
6d84566e5e
gnu: GraphicsMagick: Update to 1.3.35.
...
* gnu/packages/imagemagick.scm (graphicsmagick): Update to 1.3.35.
2020-03-14 11:55:33 +01:00
Marius Bakke
b471337dea
gnu: suitesparse: Build with cmake-minimal.
...
* gnu/packages/maths.scm (suitesparse)[native-inputs]: Change from CMAKE to
CMAKE-MINIMAL.
2020-03-14 11:55:33 +01:00
Leo Famulari
554f5b6280
gnu: Add SVT-AV1.
...
* gnu/packages/video.scm (svt-av1): New variable.
2020-03-14 01:02:37 -04:00
Tobias Geerinckx-Rice
71441a3851
gnu: hyperestraier: Use HTTPS home page.
...
* gnu/packages/search.scm (hyperestraier)[home-page]: Use HTTPS.
2020-03-14 03:43:46 +01:00
Tobias Geerinckx-Rice
ec4c170f94
gnu: blender: Update to 2.82a.
...
* gnu/packages/graphics.scm (blender): Update to 2.82a.
2020-03-14 03:43:46 +01:00
Tobias Geerinckx-Rice
954bfbdf77
gnu: cdparanoia: Use HTTPS home page.
...
* gnu/packages/cdrom.scm (cdparanoia)[home-page]: Use HTTPS.
2020-03-14 03:43:46 +01:00
Tobias Geerinckx-Rice
1df9bee786
gnu: scm: Use HTTPS home page.
...
* gnu/packages/scheme.scm (scm)[home-page]: Use HTTPS.
2020-03-14 03:43:46 +01:00
Tobias Geerinckx-Rice
450a1af293
gnu: iodine: Use HTTPS home page.
...
* gnu/packages/networking.scm (iodine)[home-page]: Use HTTPS.
2020-03-14 03:43:46 +01:00
Tobias Geerinckx-Rice
bb45b9c258
gnu: vim-scheme: Use HTTPS home page.
...
* gnu/packages/vim.scm (vim-scheme)[home-page]: Use HTTPS.
2020-03-14 03:43:46 +01:00
Tobias Geerinckx-Rice
a96d4897ae
gnu: ncftp: Use HTTPS home page.
...
* gnu/packages/ftp.scm (ncftp)[home-page]: Use HTTPS.
2020-03-14 03:43:45 +01:00
Marius Bakke
bb4674b43f
Merge branch 'master' into staging
2020-03-14 01:42:02 +01:00
Marius Bakke
989d564f44
gnu: launchmon: Fix build with GCC 7.
...
* gnu/packages/admin.scm (launchmon)[source](modules, snippet): New fields.
2020-03-14 01:39:43 +01:00
Leo Famulari
39356057bc
doc: Update guidance about Python 2 package variants.
...
* doc/contributing.texi (Python Modules): Don't recommend adding Python-2
package variants by default.
2020-03-13 19:27:33 -04:00
Leo Famulari
364a1374ad
gnu: BlueZ: Fix CVE-2020-0556.
...
* gnu/packages/patches/bluez-CVE-2020-0556.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/linux.scm (bluez)[replacement]: New field.
(bluez/fixed): New variable.
2020-03-13 19:24:30 -04:00
Tobias Geerinckx-Rice
e819fc0285
gnu: trio: Use HTTPS home page.
...
* gnu/packages/code.scm (trio)[home-page]: Use HTTPS.
2020-03-13 22:57:04 +01:00
Tobias Geerinckx-Rice
9dc6e542b5
gnu: nginx: Update to 1.17.9.
...
* gnu/packages/web.scm (nginx): Update to 1.17.9.
2020-03-13 22:57:04 +01:00
Tobias Geerinckx-Rice
d7d2b1dcfd
gnu: miredo: Use HTTPS home page.
...
* gnu/packages/networking.scm (miredo)[home-page]: Use HTTPS.
2020-03-13 22:57:04 +01:00
Tobias Geerinckx-Rice
788425c2a8
gnu: taglib: Use HTTPS home page.
...
* gnu/packages/mp3.scm (taglib)[home-page]: Use HTTPS.
2020-03-13 22:57:04 +01:00
Tobias Geerinckx-Rice
9afbfc7a9a
gnu: perl-test2-plugin-nowarnings: Run all tests.
...
* gnu/packages/perl-check.scm (perl-test2-plugin-nowarnings)
[native-inputs]: Add perl-ipc-run3.
2020-03-13 22:57:04 +01:00
Tobias Geerinckx-Rice
78b2034b5b
gnu: perl-test2-suite: Correct name.
...
* gnu/packages/perl-check.scm (perl-test2-bundle-extended): Rename to…
(perl-test2-suite): …this.
[name]: Adjust accordingly.
(perl-test2-plugin-nowarnings)[propagated-inputs]: Use new name.
* gnu/packages/perl.scm (perl-params-validationcompiler)[native-inputs]:
Likewise.
2020-03-13 22:57:04 +01:00
Tobias Geerinckx-Rice
0d49a4bbe1
gnu: tegola: Use HTTPS home page.
...
* gnu/packages/geo.scm (tegola)[home-page]: Use HTTPS.
2020-03-13 22:57:04 +01:00
Tobias Geerinckx-Rice
bbaaee6319
gnu: libpipeline: Update to 1.5.2.
...
* gnu/packages/man.scm (libpipeline): Update to 1.5.2.
2020-03-13 22:57:03 +01:00
Tobias Geerinckx-Rice
84f19b1d05
gnu: libsmpeg: Use HTTPS home page.
...
* gnu/packages/video.scm (libsmpeg)[home-page]: Use HTTPS.
2020-03-13 22:57:03 +01:00
Leo Famulari
3c9d89b5e2
gnu: WebKitGTK: Update to 2.28.0 [fixes CVE-2020-10018].
...
* gnu/packages/webkit.scm (webkitgtk): Update to 2.28.0.
2020-03-13 17:45:09 -04:00
Vagrant Cascadian
f08d654af6
gnu: Add python-capablerobot-usbhub.
...
* gnu/packages/libusb (python-capablerobot-usbhub): New variable.
2020-03-13 13:44:19 -07:00
Alberto Eleuterio Flores Guerrero
79a4803857
gnu: Add barrage.
...
* gnu/packages/games.scm (barrage): New variable.
2020-03-13 21:31:40 +01:00
Ludovic Courtès
f292c50191
maint: Add 'etc/release-manifest.scm'.
...
* etc/release-manifest.scm: New file.
* gnu/ci.scm (%cross-targets): Export.
* build-aux/check-available-binaries.scm: Remove.
* Makefile.am (EXTRA_DIST): Add 'etc/release-manifest.scm' and remove
'build-aux/check-available-binaries.scm'.
(assert-binaries-available): Rewrite using 'guix weather -m'.
2020-03-13 17:33:38 +01:00
Ludovic Courtès
24fb0dc0ab
pack: Do not create a squashfs "recovery file".
...
Reported by Josh Marshall <Josh.Marshall@jax.org >.
* guix/scripts/pack.scm (squashfs-image)[build](mksquashfs): Always pass
"-no-recovery".
2020-03-13 17:33:38 +01:00
Ludovic Courtès
b829864d74
pack: Make bit-reproducible squashfs images.
...
Reported by Josh Marshall <Josh.Marshall@jax.org >.
* guix/scripts/pack.scm (squashfs-image)[build](mksquashfs): Always pass
"-all-time", "-mkfs-time", "-force-uid", and "-force-gid" to 'mksquashfs'.
2020-03-13 17:33:37 +01:00
Ludovic Courtès
b24ec85451
pack: Factorize 'mksquashfs' invocations.
...
* guix/scripts/pack.scm (squashfs-image)[build](mksquashfs): New
procedure.
Replace instances of (invoke "mksquashfs" ...) with (mksquashfs ...).
2020-03-13 17:33:37 +01:00
Ludovic Courtès
a0feabdfdb
weather: '--coverage' filters out non-package objects.
...
This is a followup to d37b5a1b58 .
* guix/scripts/weather.scm (guix-weather): Filter PACKAGES passed to
'report-package-coverage'.
2020-03-13 17:33:37 +01:00
Ludovic Courtès
be764b47ad
weather: Exit with non-zero when coverage is below 100%.
...
* guix/scripts/weather.scm (report-server-coverage): Return the coverage ratio.
(guix-weather): Exit if and only if each server's coverage is 1.
2020-03-13 17:33:37 +01:00
Efraim Flashner
10b99ddf45
gnu: cadaver: Satisfy 'guix lint'.
...
* gnu/packages/web.scm (cadaver)[home-page]: Follow redirect.
[description]: Always use two spaces.
2020-03-13 14:26:22 +02:00
Efraim Flashner
e80d1c1992
gnu: httrack: Use texi markup in description.
...
* gnu/packages/web.scm (httrack)[description]: Use texi markup.
2020-03-13 14:19:44 +02:00
Arun Isaac
d5b0aa99f8
gnu: uim: Use emacs-substitute-variables instead of substitute*.
...
* gnu/packages/xorg.scm (uim)[arguments]: In the configure-uim-el phase, use
emacs-substitute-variables instead of substitute*.
2020-03-13 13:43:06 +05:30
Arun Isaac
acf6168b5d
gnu: uim: Do not install elisp files in guix.d.
...
* gnu/packages/xorg.scm (uim)[arguments]: Pass %output/share/emacs to the
--with-lispdir configure flag. Add fix-install-path phase after install phase.
2020-03-13 13:43:06 +05:30
Tobias Geerinckx-Rice
d1548cb09f
gnu: fltk: Use HTTPS home page.
...
* gnu/packages/fltk.scm (fltk)[home-page]: Use HTTPS.
2020-03-13 05:39:33 +01:00
Tobias Geerinckx-Rice
f50ef3493e
gnu: unqlite: Use HTTPS home page.
...
* gnu/packages/databases.scm (unqlite)[home-page]: Use HTTPS.
2020-03-13 05:36:09 +01:00
Tobias Geerinckx-Rice
b7afc63f0f
gnu: sdparm: Update to 1.11.
...
* gnu/packages/disk.scm (sdparm): Update to 1.11.
[source]: Hard-code name.
2020-03-13 05:36:09 +01:00
Tobias Geerinckx-Rice
16b84f54bd
gnu: bastet: Use HTTPS home page.
...
* gnu/packages/games.scm (bastet)[home-page]: Use HTTPS.
2020-03-13 05:36:09 +01:00
Tobias Geerinckx-Rice
287e3d3124
gnu: java-iq80-snappy: Don't use unstable tarball.
...
* gnu/packages/java-compression.scm (java-iq80-snappy)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
2020-03-13 05:36:09 +01:00
Tobias Geerinckx-Rice
e2528a3cc1
gnu: java-snappy@1.0: Don't use unstable tarball.
...
* gnu/packages/java-compression.scm (java-snappy-1)[name]: Restate.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
2020-03-13 05:36:09 +01:00
Tobias Geerinckx-Rice
2eed6813b6
gnu: autobuild: Use HTTPS home page.
...
* gnu/packages/autotools.scm (autobuild)[home-page]: Use HTTPS.
2020-03-13 05:36:09 +01:00
Tobias Geerinckx-Rice
1bc64532b7
gnu: libwebsockets: Use HTTPS home page.
...
* gnu/packages/web.scm (libwebsockets)[home-page]: Use HTTPS.
2020-03-13 05:36:09 +01:00
Tobias Geerinckx-Rice
136070022b
gnu: catdoc: Use HTTPS home page.
...
* gnu/packages/textutils.scm (catdoc)[home-page]: Use HTTPS.
2020-03-13 05:36:09 +01:00
Alex Griffin
63299f2840
gnu: Add browserpass-native.
...
* gnu/packages/password-utils.scm (browserpass-native): New variable.
2020-03-12 21:12:05 -05:00
Alex Griffin
42c6503d37
gnu: Add go-github-com-mattn-go-zglob.
...
* gnu/packages/golang.scm (go-github-com-mattn-go-zglob): New variable.
2020-03-12 21:12:04 -05:00
Alex Griffin
aff9576811
gnu: Add go-github-com-rifflock-lfshook.
...
* gnu/packages/golang.scm (go-github-com-rifflock-lfshook): New variable.
2020-03-12 21:12:03 -05:00
Alex Griffin
8320c72587
gnu: go-github-com-sirupsen-logrus: Propagate inputs.
...
* gnu/packages/golang.scm (go-github-com-sirupsen-logrus): Propagate inputs.
2020-03-12 21:12:02 -05:00
Mark H Weaver
ebbe8adc3f
gnu: linux-libre: Update to 5.4.25.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.25.
(linux-libre-5.4-pristine-source): Update hash.
2020-03-12 20:51:59 -04:00
Mark H Weaver
2a2bef35b8
gnu: linux-libre@4.19: Update to 4.19.109.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.109.
(linux-libre-4.19-pristine-source): Update hash.
2020-03-12 20:51:25 -04:00
Mark H Weaver
230a59d418
gnu: linux-libre@4.14: Update to 4.14.173.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.173.
(linux-libre-4.14-pristine-source): Update hash.
2020-03-12 20:50:52 -04:00
Mark H Weaver
e0d5a43e51
gnu: linux-libre@4.9: Update to 4.9.216.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.216.
(linux-libre-4.9-pristine-source): Update hash.
2020-03-12 20:50:24 -04:00
Mark H Weaver
dcd7a97b8c
gnu: linux-libre@4.4: Update to 4.4.216.
...
* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.216.
(linux-libre-4.4-pristine-source): Update hash.
2020-03-12 20:49:19 -04:00
Carl Dong
0f864175dc
gnu: mingw-w64-*: Update to 7.0.0.
...
* gnu/packages/mingw.scm (make-mingw-w64): Update to 7.0.0.
2020-03-12 15:45:28 -04:00
Alexandru-Sergiu Marton
b431f6c9cc
gnu: ghc-extra: Update to 1.7.1.
...
* gnu/packages/haskell-xyz.scm (ghc-extra): Update to 1.7.1.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-12 14:10:41 -04:00
Ludovic Courtès
2843fed0e9
weather: Allow for multiple '--manifest' options.
...
* guix/scripts/weather.scm (guix-weather)[package-list]: Account for all
the 'manifest entries in OPTS.
* doc/guix.texi (Invoking guix weather): Document it.
2020-03-12 18:32:16 +01:00
Ludovic Courtès
71bb485541
weather: Add '--display-missing'.
...
* guix/scripts/weather.scm (report-server-coverage): Add
#:display-missing? and honor it.
(show-help, %options): Add "--display-missing".
(guix-weather): Pass #:display-missing? to 'report-server-coverage'.
* doc/guix.texi (Invoking guix weather): Document it.
2020-03-12 18:32:16 +01:00
Ludovic Courtès
e0dbed64c5
gnu: singularity: Do not use the "errors=remount-ro" squashfs option.
...
This mount option stopped being supported with Linux-libre 5.4.5:
http://ci.guix.gnu.org/build/2056359/details
* gnu/packages/linux.scm (singularity)[source]: Remove
"errors=remount-ro" mount option from source code.
2020-03-12 18:32:16 +01:00
Ludovic Courtès
22464cf32a
gnu: singularity: Wrap programs so they find Coreutils.
...
* gnu/packages/linux.scm (singularity)[arguments]: Add 'set-PATH' phase.
2020-03-12 18:32:16 +01:00
Ludovic Courtès
cf2ac04f13
gexp: Add 'with-parameters'.
...
* guix/gexp.scm (<parameterized>): New record type.
(with-parameters): New macro.
(compile-parameterized): New gexp compiler.
* tests/gexp.scm ("with-parameters for %current-system")
("with-parameters for %current-target-system")
("with-parameters + file-append"): New tests.
* doc/guix.texi (G-Expressions): Document it.
2020-03-12 18:32:15 +01:00
Amar Singh
be78906592
gnu: Add guile-torrent.
...
* gnu/packages/guile-xyz.scm (guile-torrent): New variable.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com >
2020-03-12 15:52:41 +01:00
Efraim Flashner
0c08e4bfa1
gnu: edirect: Update to 13.3.20200128.
...
* gnu/packages/bioinformatics.scm (edirect): Update to 13.3.20200128.
[source]: Remove bundled certificate authority tarball.
2020-03-12 16:50:23 +02:00
Ricardo Wurmus
72e76113f7
gnu: r-car: Update to 3.0-7.
...
* gnu/packages/statistics.scm (r-car): Update to 3.0-7.
[native-inputs]: Add r-knitr.
2020-03-12 15:15:04 +01:00
Ricardo Wurmus
92d6c94a16
gnu: r-nloptr: Update to 1.2.2.1.
...
* gnu/packages/statistics.scm (r-nloptr): Update to 1.2.2.1.
2020-03-12 15:15:04 +01:00
Ricardo Wurmus
66f1fead63
gnu: r-roxygen2: Update to 7.1.0.
...
* gnu/packages/statistics.scm (r-roxygen2): Update to 7.1.0.
[native-inputs]: Move r-knitr from here...
[propagated-inputs]: ...to here.
2020-03-12 15:15:04 +01:00
Ricardo Wurmus
09583a0f79
gnu: r-xml2: Update to 1.2.5.
...
* gnu/packages/statistics.scm (r-xml2): Update to 1.2.5.
[native-inputs]: Add r-knitr.
2020-03-12 15:15:04 +01:00
Ricardo Wurmus
defbaab3f8
gnu: r-tam: Update to 3.4-26.
...
* gnu/packages/cran.scm (r-tam): Update to 3.4-26.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
4dab179de2
gnu: r-cdm: Update to 7.5-15.
...
* gnu/packages/cran.scm (r-cdm): Update to 7.5-15.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
ca29e40dac
gnu: r-parameters: Update to 0.6.0.
...
* gnu/packages/cran.scm (r-parameters): Update to 0.6.0.
[native-inputs]: Add r-knitr.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
40ac3dc394
gnu: r-graphlayouts: Update to 0.6.0.
...
* gnu/packages/cran.scm (r-graphlayouts): Update to 0.6.0.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
9d3d3d1bd5
gnu: r-ggfortify: Update to 0.4.9.
...
* gnu/packages/cran.scm (r-ggfortify): Update to 0.4.9.
[native-inputs]: Add r-knitr.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
0cc0e7e370
gnu: r-ggplotify: Update to 0.0.5.
...
* gnu/packages/cran.scm (r-ggplotify): Update to 0.0.5.
[native-inputs]: Add r-knitr.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
f718c28cc6
gnu: r-pegas: Update to 0.13.
...
* gnu/packages/cran.scm (r-pegas): Update to 0.13.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
a85aef2d75
gnu: r-spatialextremes: Update to 2.0-8.
...
* gnu/packages/cran.scm (r-spatialextremes): Update to 2.0-8.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
dca5a8143f
gnu: r-tidytree: Update to 0.3.2.
...
* gnu/packages/cran.scm (r-tidytree): Update to 0.3.2.
[native-inputs]: Add r-knitr.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
d520e4c942
gnu: r-rcppparallel: Update to 5.0.0.
...
* gnu/packages/cran.scm (r-rcppparallel): Update to 5.0.0.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
69a3c4ce51
gnu: r-sjplot: Update to 2.8.3.
...
* gnu/packages/cran.scm (r-sjplot): Update to 2.8.3.
[propagated-inputs]: Remove r-forcats.
[native-inputs]: Remove r-knitr.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
cd26e5dee8
gnu: r-catdap: Update to 1.3.5.
...
* gnu/packages/cran.scm (r-catdap): Update to 1.3.5.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
f7306e465e
gnu: r-vim: Update to 5.1.1.
...
* gnu/packages/cran.scm (r-vim): Update to 5.1.1.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
117270fb51
gnu: r-vctrs: Update to 0.2.4.
...
* gnu/packages/cran.scm (r-vctrs): Update to 0.2.4.
[native-inputs]: Add r-knitr.
2020-03-12 15:15:03 +01:00
Ricardo Wurmus
6bd6097ed5
gnu: r-cicero: Update to 1.4.4.
...
* gnu/packages/bioconductor.scm (r-cicero): Update to 1.4.4.
[native-inputs]: Add r-knitr.
2020-03-12 15:15:02 +01:00
Ricardo Wurmus
0754fefb75
gnu: r-ggcyto: Update to 1.14.1.
...
* gnu/packages/bioconductor.scm (r-ggcyto): Update to 1.14.1.
[native-inputs]: Add r-knitr.
2020-03-12 15:15:02 +01:00
Ricardo Wurmus
e0061f5125
gnu: r-mlinterfaces: Update to 1.66.5.
...
* gnu/packages/bioconductor.scm (r-mlinterfaces): Update to 1.66.5.
2020-03-12 15:15:02 +01:00
Ricardo Wurmus
0b692ef2c6
gnu: r-qtl: Update to 1.46-2.
...
* gnu/packages/bioinformatics.scm (r-qtl): Update to 1.46-2.
2020-03-12 15:15:02 +01:00
Pierre Neidhardt
04ff192ec4
gnu: Add hyperledger-iroha.
...
This package was co-authored with Efraim Flashner <efraim@flashner.co.il >
* gnu/packages/hyperledger.scm (hyperledger-iroha): New variable.
2020-03-12 15:34:28 +02:00
Efraim Flashner
f204d155e3
gnu: Add boost-1.69.
...
* gnu/packages/boost.scm (boost-1.69): New hidden package.
2020-03-12 15:34:28 +02:00
Pierre Neidhardt
37109658a5
gnu: Add hyperledger-iroha-ed25519.
...
* gnu/packages/hyperledger.scm (hyperledger-iroha-ed25519): New variable.
2020-03-12 15:34:28 +02:00
Efraim Flashner
d56d3ae704
gnu: grpc: Build shared libraries.
...
* gnu/packages/machine-learning.scm (grpc)[outputs]: Add static.
[arguments]: Copy configure-flags from cmake-build-system. Add custom
phases 'configure-shared, 'install-shared-libraries and 'move-static-libs
to build shared libs and move static libs to their own output.
(tensorflow)[native-inputs]: Add grpc:static.
2020-03-12 15:34:28 +02:00
Efraim Flashner
b0aa58d8f1
gnu: python2-jupyter-console: Build with python2.
...
* gnu/packages/python-xyz.scm (python2-jupyter-console)[arguments]: Add
python keyword, set to python-2.
2020-03-12 15:34:28 +02:00
Efraim Flashner
e8588a7847
gnu: python-jupyter-console: Specify python2 variant.
...
* gnu/packages/python-xyz.scm (python-jupyter-console)[properties]: New
field. Specify python2-jupyter-console as python2 variant.
2020-03-12 15:34:27 +02:00
Ricardo Wurmus
a595399230
services: mumi-service-type: Update to latest version of mumi.
...
* gnu/services/web.scm (%mumi-activation): Create /var/mumi/db.
(mumi-shepherd-services): Add service for mumi worker.
2020-03-12 12:47:45 +01:00
Ricardo Wurmus
c107e50a0e
gnu: mumi: Update to 0.0.0-7.6653e2d.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.0-7.6653e2d.
[inputs]: Add guile-sqlite3.
2020-03-12 12:47:45 +01:00
Ricardo Wurmus
e4cdadc18d
gnu: r-cairo: Update to 1.5-11.
...
* gnu/packages/statistics.scm (r-cairo): Update to 1.5-11.
2020-03-12 12:47:45 +01:00
Felix Gruber
0a703c0486
gnu: dune-istl: Build with suitesparse
...
* gnu/packages/maths.scm (dune-istl)[inputs]: Add suitesparse to build
additional solvers in dune-istl.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-12 11:52:38 +01:00
Felix Gruber
f1f9466e33
gnu: Add dune-subgrid
...
* gnu/packages/maths.scm (dune-subgrid): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-12 11:52:38 +01:00
Felix Gruber
07ebb75d17
gnu: Add dune-uggrid.
...
* gnu/packages/maths.scm (dune-uggrid): New variable.
(dune-grid)[propagated-inputs]: Add dune-uggrid dependency, so
that the UGGrid class in dune-grid can be used by packages that
have dune-grid as input.
(dune-functions)[arguments]: Enable tests that previously weren't
built as they require dune-uggrid.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-12 11:52:38 +01:00
Felix Gruber
a669f6e27b
gnu: dune-*: set up MPI for tests
...
* gnu/packages/maths.scm (dune-common, dune-grid, dune-istl,
dune-alugrid): [arguments]: correctly set up MPI instead of disabling
tests that require MPI.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-12 11:52:38 +01:00
Ludovic Courtès
f7537e30b8
inferior: Distinguish inferior exceptions.
...
This avoids ambiguities when looking at a backtrace where the exception
was actually thrown by an inferior in a very different context.
* guix/inferior.scm (&inferior-exception): New condition type.
(read-repl-response): Add optional 'inferior' parameter. Raise
'&inferior-exception' instead of rethrowing to KEY when receiving an
'exception' message.
(read-inferior-response): Pass INFERIOR to 'read-repl-response'.
* tests/inferior.scm ("&inferior-exception"): New test.
2020-03-12 11:52:38 +01:00
Ludovic Courtès
c00ae79cca
import: cpan: Gracefully handle missing projects.
...
* guix/import/cpan.scm (cpan-fetch): Check whether 'json-fetch' returns #f.
2020-03-12 11:52:38 +01:00
Ludovic Courtès
2d0409a4a2
import: utils: Remove 'assoc-ref*'.
...
* guix/import/utils.scm (assoc-ref*): Remove.
2020-03-12 11:52:37 +01:00
Ludovic Courtès
7657e61d6b
import: pypi: Rewrite to use 'define-json-mapping'.
...
* guix/import/pypi.scm (non-empty-string-or-false): New procedure.
(<pypi-project>, <project-info>, <distribution>): New record types.
(pypi-fetch): Call 'json->pypi-project'.
(latest-source-release, latest-wheel-release): Use the new record
accessors instead of 'assoc-ref*'.
(pypi->guix-package, latest-release): Likewise.
* tests/pypi.scm (test-json): Add mandatory fields.
2020-03-12 11:52:37 +01:00
Ludovic Courtès
a20cfe71e9
gnu: guile-next: Enable JIT on ARMv7.
...
JIT support on ARMv7 is fixed by "guile-3.0-crash.patch".
* gnu/packages/guile.scm (guile-3.0)[arguments]: Remove.
2020-03-12 11:52:21 +01:00
Guillaume Le Vaillant
ec73c90ee3
gnu: Add virtualpg.
...
* gnu/packages/geo.scm (virtualpg): New variable.
2020-03-12 10:08:45 +01:00
Guillaume Le Vaillant
69b03ecd95
gnu: jgmenu: Update to 4.1.0.
...
* gnu/packages/xdisorg.scm (jgmenu): Update to 4.1.0.
2020-03-12 10:08:45 +01:00
Guillaume Le Vaillant
034d9544e2
gnu: udiskie: Update to 2.1.0.
...
* gnu/packages/freedesktop.scm (udiskie): Update to 2.1.0.
2020-03-12 10:08:45 +01:00
Guillaume Le Vaillant
0aedcf4bc3
gnu: txr: Update to 233.
...
* gnu/packages/lisp.scm (txr): Update to 233.
2020-03-12 10:08:45 +01:00
Danny Milosavljevic
04b4c43232
doc: Fix description for "guix package -A".
...
* doc/guix.texi (Invoking guix package): Fix description for "guix package -A".
2020-03-12 09:55:20 +01:00
Efraim Flashner
d8ba1135eb
gnu: python2-ipython: Fix build.
...
* gnu/packages/python-xyz.scm (python2-ipython)[arguments]: Adjust
skipped tests.
2020-03-12 10:25:42 +02:00
Tobias Geerinckx-Rice
bf8ee1c504
gnu: xlockmore: Update to 5.62.
...
* gnu/packages/xdisorg.scm (xlockmore): Update to 5.62.
2020-03-12 05:10:21 +01:00
Tobias Geerinckx-Rice
81166ee488
gnu: xlockmore: Use HTTPS home page.
...
* gnu/packages/xdisorg.scm (xlockmore)[home-page]: Use HTTPS.
2020-03-12 04:57:46 +01:00
Tobias Geerinckx-Rice
cf580e5ebf
gnu: mame: Use HTTPS home page.
...
* gnu/packages/emulators.scm (mame)[home-page]: Use HTTPS.
2020-03-12 04:57:44 +01:00
Tobias Geerinckx-Rice
a30f20d49c
gnu: dosbox: Use HTTPS home page.
...
* gnu/packages/emulators.scm (dosbox)[home-page]: Use HTTPS.
2020-03-12 04:57:43 +01:00
Tobias Geerinckx-Rice
f930814afa
gnu: Add gitless.
...
* gnu/packages/version-control.scm (gitless): New public variable.
Co-authored-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-03-12 04:57:42 +01:00
Tobias Geerinckx-Rice
62f6f9d99f
gnu: faust: Use HTTPS home page.
...
* gnu/packages/audio.scm (faust)[home-page]: Use HTTPS.
2020-03-12 04:57:42 +01:00
Tobias Geerinckx-Rice
286ab9d3f5
gnu: rsound: Use HTTPS home page.
...
* gnu/packages/audio.scm (rsound)[home-page]: Use HTTPS.
2020-03-12 04:57:42 +01:00
Tobias Geerinckx-Rice
dd42a2f391
gnu: libgme: Update to 0.6.3.
...
* gnu/packages/music.scm (libgme): Update to 0.6.3.
2020-03-12 04:57:41 +01:00
Tobias Geerinckx-Rice
b5d32fb9dd
gnu: xmobar: Update to 0.33.
...
* gnu/packages/wm.scm (xmobar): Update to 0.33.
2020-03-12 04:57:41 +01:00
Tobias Geerinckx-Rice
094afc97c6
gnu: gptfdisk: Use HTTPS home page.
...
* gnu/packages/disk.scm (gptfdisk)[home-page]: Use HTTPS.
2020-03-12 04:57:41 +01:00
Tobias Geerinckx-Rice
7247b84195
gnu: ephoto: Update source and home page URIs.
...
* gnu/packages/enlightenment.scm (ephoto)[source]: Remove dead URI.
[home-page]: Follow (HTTPS) redirection.
2020-03-12 04:57:41 +01:00
Tobias Geerinckx-Rice
32df41beef
gnu: s6: Update to 2.9.1.0.
...
* gnu/packages/skarnet.scm (s6): Update to 2.9.1.0.
2020-03-12 04:57:41 +01:00
Tobias Geerinckx-Rice
fe6cfa9943
gnu: simple-scan: Update to 3.36.0.
...
* gnu/packages/gnome.scm (simple-scan): Update to 3.36.0.
2020-03-12 04:57:40 +01:00
Tobias Geerinckx-Rice
dd8cf0097e
gnu: picprog: Use HTTPS home page.
...
* gnu/packages/embedded.scm (picprog)[home-page]: Use HTTPS.
2020-03-12 04:57:40 +01:00
Tobias Geerinckx-Rice
0308944ab0
gnu: java-snappy: Don't use unstable tarball.
...
* gnu/packages/java-compression.scm (java-snappy)[source]: Use GIT-FETCH
and GIT-FILE-NAME.
[arguments]: Add ‘make-git-checkout-writable’ phase.
2020-03-12 04:57:40 +01:00
Tobias Geerinckx-Rice
ca0fe294d6
gnu: java-snappy: Update to 1.1.7.3.
...
* gnu/packages/java-compression.scm (java-snappy): Update to 1.1.7.3.
2020-03-12 04:57:39 +01:00
Leo Famulari
d7af0202a4
gnu: Borg: Update to 1.1.11.
...
* gnu/packages/backup.scm (borg): Update to 1.1.11.
2020-03-11 21:39:23 -04:00
Leo Famulari
4b5a0c0540
gnu: xxHash: Update to 0.7.3.
...
* gnu/packages/digest.scm (xxhash): Update to 0.7.3.
2020-03-11 21:39:16 -04:00
Marius Bakke
41c6e4f2b4
Merge branch 'master' into staging
2020-03-11 22:58:11 +01:00
Marius Bakke
58363ee500
gnu: Remove year range from copyright header.
...
* gnu/packages/python-xyz.scm: List years explicitly instead of range in
copyright line.
2020-03-11 22:56:51 +01:00
Marius Bakke
0a8655e6dc
gnu: Remove duplicate copyright line.
...
* gnu/packages/python-xyz.scm: Remove duplicate copyright.
2020-03-11 22:56:27 +01:00
Marius Bakke
cb18f2bf31
gnu: python-cookies: Use the correct version of pytest.
...
* gnu/packages/python-web.scm (python-cookies)[native-inputs]: Change
PYTHON2-PYTEST to PYTHON-PYTEST.
2020-03-11 22:43:45 +01:00
Marius Bakke
6bd7d4cb74
gnu: python2-radon: Fix build.
...
* gnu/packages/python-xyz.scm (python-radon)[properties]: New field.
* gnu/packages/python-xyz.scm (python2-radon)[propagated-inputs]: Add
PYTHON2-CONFIGPARSER and PYTHON2-FUTURE.
2020-03-11 22:43:45 +01:00
Marius Bakke
6006727974
gnu: python-virtualenv: Update to 20.0.10.
...
* gnu/packages/python-xyz.scm (python-virtualenv): Update to 20.0.10.
2020-03-11 22:43:44 +01:00
Marius Bakke
7815afc958
gnu: python2-virtualenv: Fix build.
...
* gnu/packages/python-xyz.scm (python-virtualenv)[properties]: New field.
(python2-virtualenv)[propagated-inputs]: Add PYTHON2-CONTEXTLIB2.
[arguments]: New field.
2020-03-11 22:43:44 +01:00
Marius Bakke
ebd4c25178
gnu: python-contextlib2: Update to 0.6.0.post1.
...
* gnu/packages/python-xyz.scm (python-contextlib2): Update to 0.6.0.post1.
2020-03-11 22:43:44 +01:00
Leo Famulari
c03fc422b9
gnu: lpd8editor: Remove package.
...
This package has not built successfully in several months.
* gnu/packages/music.scm (lpd8editor): Remove variable.
2020-03-11 15:27:17 -04:00
Christopher Lemmer Webber
dfe15d9919
gnu: Add xa.
...
* gnu/packages/assembly.scm (xa): New variable.
2020-03-11 15:13:30 -04:00
Guillaume Le Vaillant
f7f67495ba
gnu: spatialite-gui: Fix GUI not showing up.
...
* gnu/packages/geo.scm (spatialite-gui)[arguments]: Add 'fix-gui' phase.
2020-03-11 19:33:25 +01:00
Marius Bakke
f8cbe98e65
gnu: isc-dhcp: Fix cross-compilation.
...
* gnu/packages/admin.scm (isc-dhcp)[arguments]: Set BUILD_CC in
'fix-bind-cross-compilation' phase. While at it, make the phase conditional
on %CURRENT-TARGET-SYSTEM.
2020-03-11 19:02:46 +01:00
Marius Bakke
805ac43c94
gnu: zile: Fix cross-compilation.
...
* gnu/packages/zile.scm (zile)[native-inputs]: Add THIS-PACKAGE when
cross-compiling.
[arguments]: Add phase when cross-compiling.
2020-03-11 18:58:48 +01:00
Marius Bakke
1ed3b845f7
gnu: python-multidict: Update to 4.7.5.
...
* gnu/packages/python-xyz.scm (python-multidict): Update to 4.7.5.
[arguments]: New field.
[native-inputs]: Remove PYTHON-PYTEST-RUNNER. Add PYTHON-PYTEST-COV.
2020-03-11 18:56:46 +01:00
Damien Cassou
ad2c0f5b09
gnu: Add clipmenu.
...
* gnu/packages/xdisorg.scm (clipmenu): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-11 18:42:09 +01:00
Damien Cassou
51f187bee5
gnu: Add clipnotify.
...
* gnu/packages/xdisorg.scm (clipnotify): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-11 18:42:09 +01:00
Ludovic Courtès
d8a822f462
download: Remove (web http) workarounds no longer relevant.
...
* guix/build/download.scm <top level>: Remove workarounds for
<https://bugs.gnu.org/23421 > and for
<https://lists.gnu.org/archive/html/guix-devel/2017-11/msg00070.html >.
2020-03-11 18:42:09 +01:00
Ludovic Courtès
e688c2df39
build: Require Guile 2.2.3 or later.
...
* configure.ac: For 2.2.x, require 2.2.3 or later.
2020-03-11 18:42:09 +01:00
Ludovic Courtès
3c1ea8dcef
ui: Restore line wrapping for 'package->recutils'.
...
Fixes a regression introduced when switching to Guile 3.0.0 whereby
monkey-patching 'wrap*' wouldn't have any effects due to inlining.
* guix/ui.scm (%text-width): Define in terms of the '*line-width*' fluid
when it's defined.
<top level>: Set (@@ (texinfo plain-text) wrap*) only when
'*line-width*' is undefined.
2020-03-11 18:42:08 +01:00
Mădălin Ionel Patrașcu
10c2ca9e4a
gnu: Add r-hrbrthemes.
...
* gnu/packages/cran.scm (r-hrbrthemes): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2020-03-11 18:00:36 +01:00
Marius Bakke
4510aeb91c
gnu: python2-sphinx: Build with python-docutils@0.14.
...
* gnu/packages/python-xyz.scm (python2-docutils-0.14): New public variable.
* gnu/packages/sphinx.scm (python2-sphinx)[propagated-inputs]: Change from
PYTHON2-DOCUTILS to PYTHON2-DOCUTILS-0.14.
2020-03-11 17:46:04 +01:00
Marius Bakke
e8df88003d
gnu: gnutls@3.6.10: Add dependency on datefudge and util-linux.
...
* gnu/packages/tls.scm (gnutls-3.6.10)[native-inputs]: New field.
2020-03-11 17:44:06 +01:00
Carl Dong
cdf00cf75d
gnu: nsis: Update to 3.05.
...
* gnu/packages/installers.scm (nsis): Update to 3.05.
2020-03-11 11:42:22 -04:00
Raghav Gururajan
e05ce17dbc
gnu: Add phodav.
...
* gnu/packages/gnome.scm (phodav): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-03-11 16:12:45 +01:00
Efraim Flashner
d9a2a255f9
gnu: python-pybedtools: Update to 0.8.1.
...
* gnu/packages/bioinformatics.scm (python-pybedtools): Update to 0.8.1.
[arguments]: Add another test to the 'disable-broken-tests phase.
(python2-pybedtools)[native-inputs]: Add python2-pathlib.
2020-03-11 16:31:33 +02:00
Efraim Flashner
afb877847b
gnu: Add python2-pygraphviz.
...
* gnu/packages/graphviz.scm (python2-pygraphviz): New variable.
2020-03-11 16:23:52 +02:00
Efraim Flashner
173053790c
gnu: python-pyfaidx: Update to 0.5.8.
...
* gnu/packages/bioinformatics.scm (python-pyfaidx): Update to 0.5.8.
2020-03-11 15:45:33 +02:00
Efraim Flashner
ea2822d7d6
gnu: Add python2-pyfaidx.
...
* gnu/packages/bioinformatics.scm (python2-pyfaidx): New variable.
2020-03-11 15:43:50 +02:00
Efraim Flashner
578e4cf465
gnu: python2-ipykernel: Downgrade to 4.10.1.
...
This is the last version actually supported by ipykernel.
* gnu/packages/python-xyz.scm (python2-ipython): Downgrade to 4.10.1.
[arguments]: Remove custom 'check phase.
[propagated-inputs]: Add python2-tornado, python2-traitlets.
[native-inputs]: Add python2-mock, python2-pytest-cov.
(python-ipykernel)[properties): Declare python2-ipykernel as the
python2- variant.
2020-03-11 15:19:54 +02:00
Efraim Flashner
2bc5d5d57e
gnu: python-ipython: Declare python2 variant.
...
* gnu/packages/python-xyz.scm (python-ipython)[properties]: Declare
python2-ipython as the python2- variant.
2020-03-11 15:07:27 +02:00
Danny Milosavljevic
f255a193be
gnu: docker: Update to 19.03.7.
...
* gnu/packages/docker.scm (docker): Update to 19.03.7.
(docker-cli): Update to 19.03.7.
2020-03-11 12:07:19 +01:00
Roel Janssen
e4b5bdf799
gnu: r-ggsignif: Fix build.
...
* gnu/packages/cran.scm (r-ggsignif): Add knitr to native-inputs in order to
build the vignette.
2020-03-11 09:31:26 +01:00
Tobias Geerinckx-Rice
d716a4742a
gnu: t1lib: Use HTTPS home page.
...
* gnu/packages/fontutils.scm (t1lib)[home-page]: Use HTTPS.
2020-03-11 03:52:12 +01:00
Tobias Geerinckx-Rice
8b6d893d17
gnu: desktop-file-utils: Update to 0.24.
...
* gnu/packages/freedesktop.scm (desktop-file-utils): Update to 0.24.
2020-03-11 03:52:12 +01:00
Tobias Geerinckx-Rice
d4c09245ec
gnu: desktop-file-utils: Don't use NAME in source URI.
...
* gnu/packages/freedesktop.scm (desktop-file-utils)[source]: Hard-code NAME.
2020-03-11 03:52:12 +01:00
Tobias Geerinckx-Rice
ec63b5a4c7
gnu: you-get: Update to 0.4.1410.
...
* gnu/packages/video.scm (you-get): Update to 0.4.1410.
2020-03-11 03:24:14 +01:00
Tobias Geerinckx-Rice
6ef143ef6e
gnu: fortune-mod: Use HTTPS home page.
...
* gnu/packages/games.scm (fortune-mod)[home-page]: Use HTTPS.
2020-03-11 03:01:45 +01:00
Tobias Geerinckx-Rice
6c82576e6d
gnu: grue-hunter: Use HTTPS home page.
...
* gnu/packages/games.scm (grue-hunter)[home-page]: Use HTTPS.
2020-03-11 03:01:45 +01:00
Tobias Geerinckx-Rice
76dc85e48c
gnu: emulation-station: Use HTTPS home page.
...
* gnu/packages/emulators.scm (emulation-station)[home-page]: Use HTTPS.
2020-03-11 03:01:45 +01:00
Tobias Geerinckx-Rice
68ad2a785e
gnu: dfu-programmer: Use HTTPS home page.
...
* gnu/packages/flashing-tools.scm (dfu-programmer)[home-page]: Use HTTPS.
2020-03-11 03:01:45 +01:00
Tobias Geerinckx-Rice
0087a2506f
gnu: rocksdb: Use HTTPS home page.
...
* gnu/packages/databases.scm (rocksdb)[home-page]: Use HTTPS.
2020-03-11 03:01:45 +01:00
Tobias Geerinckx-Rice
e42399e80e
gnu: soundconverter: Use HTTPS home page.
...
* gnu/packages/gnome.scm (soundconverter)[home-page]: Use HTTPS.
2020-03-11 03:01:45 +01:00
Tobias Geerinckx-Rice
44184f3356
gnu: gd: Use HTTPS home page.
...
* gnu/packages/gd.scm (gd)[home-page]: Use HTTPS.
2020-03-11 03:01:45 +01:00
Tobias Geerinckx-Rice
2d3da18613
gnu: python-tomlkit: Fix typos in descriptions.
...
* gnu/packages/python-xyz.scm (python-tomlkit)[synopsis, description]:
Fix typos.
2020-03-11 03:01:45 +01:00
Tobias Geerinckx-Rice
f4b6ce2155
gnu: python-tomlkit: Update to 0.5.11.
...
* gnu/packages/python-xyz.scm (python-tomlkit): Update to 0.5.11.
2020-03-11 03:01:44 +01:00
Tobias Geerinckx-Rice
cebfc26986
gnu: gpxsee: Extend description.
...
* gnu/packages/gps.scm (gpxsee)[description]: Extend.
2020-03-11 03:01:44 +01:00
Tobias Geerinckx-Rice
3437fe1fb7
gnu: gpxsee: Update to 7.25.
...
* gnu/packages/gps.scm (gpxsee): Update to 7.25.
2020-03-11 02:55:15 +01:00
Tobias Geerinckx-Rice
49bb3a56e4
gnu: batctl: Update to 2020.0.
...
* gnu/packages/networking.scm (batctl): Update to 2020.0.
2020-03-11 02:55:15 +01:00
Danny Milosavljevic
fe60ef998f
guix-install.sh: Install SysV init script.
...
* etc/guix-install.sh (sys_enable_guix_daemon): Install SysV init script.
2020-03-11 02:45:49 +01:00
Danny Milosavljevic
73fbe04107
Add system start-up files for guix-daemon.
...
* etc/init.d/guix-daemon.in: New file.
* nix/local.mk (etc/init.d/guix-daemon): New rule.
(nodist_sysvinitservice_DATA): Add etc/init.d/guix-daemon.in .
(CLEANFILES): Add etc/init.d/guix-daemon .
* .gitignore: Add etc/init.d/guix-daemon .
2020-03-11 02:45:33 +01:00
Tobias Geerinckx-Rice
57f85eef46
gnu: gimp: Update to 2.10.18.
...
* gnu/packages/gimp.scm (gimp): Update to 2.10.18.
2020-03-11 00:13:56 +01:00
Tobias Geerinckx-Rice
b3ca0ee1bb
gnu: gegl: Update to 0.4.22.
...
* gnu/packages/gimp.scm (gegl): Update to 0.4.22.
2020-03-11 00:13:56 +01:00
Tobias Geerinckx-Rice
06271fe3ce
gnu: armagetronad: Update to 0.2.8.3.5.
...
* gnu/packages/games.scm (armagetronad): Update to 0.2.8.3.5.
2020-03-11 00:13:56 +01:00
Tobias Geerinckx-Rice
d64d8abb5b
gnu: gx: Update to 0.14.3.
...
* gnu/packages/ipfs.scm (gx): Update to 0.14.3.
2020-03-11 00:13:56 +01:00
Tobias Geerinckx-Rice
9d9da65f15
gnu: nethack: Update to 3.6.6.
...
* gnu/packages/games.scm (nethack): Update to 3.6.6.
2020-03-11 00:13:56 +01:00
Tobias Geerinckx-Rice
806b0c2c6e
gnu: graphene: Use HTTPS home page.
...
* gnu/packages/gtk.scm (graphene)[home-page]: Use HTTPS.
2020-03-11 00:13:56 +01:00
Tobias Geerinckx-Rice
519dc88c75
gnu: signify: Update to 29.
...
* gnu/packages/crypto.scm (signify): Update to 29.
2020-03-11 00:13:56 +01:00
Tobias Geerinckx-Rice
1fc2a81ef9
gnu: execline: Update to 2.6.0.0.
...
* gnu/packages/skarnet.scm (execline): Update to 2.6.0.0.
2020-03-11 00:13:56 +01:00
Tobias Geerinckx-Rice
aeca60707a
gnu: freealut: Use HTTPS home page.
...
* gnu/packages/audio.scm (freealut)[home-page]: Use HTTPS.
2020-03-11 00:13:56 +01:00
Tobias Geerinckx-Rice
8173e7a02a
gnu: git-flow: Use HTTPS home page.
...
* gnu/packages/version-control.scm (git-flow)[home-page]: Use HTTPS.
2020-03-11 00:13:56 +01:00
Tobias Geerinckx-Rice
d518851710
gnu: Use HTTPS for archive.xfce.org sources.
...
* gnu/packages/xfce.scm (gtk-xfce-engine, xfce4-xkb-plugin)
(xfce4-settings, thunar, ristretto, orage, xfburn, mousepad)
(xfce4-screenshooter, xfce4-screensaver, xfce4-cpugraph-plugin)
(xfce4-eyes-plugin, xfce4-equake-plugin, xfce4-datetime-plugin)
(xfce4-calculator-plugin, xfce4-cpufreq-plugin, xfce4-diskperf-plugin)
(xfce4-embed-plugin, xfce4-fsguard-plugin, xfce4-genmon-plugin)
(xfce4-kbdleds-plugin, xfce4-mailwatch-plugin, xfce4-mpc-plugin)
(xfce4-mount-plugin, xfce4-netload-plugin, xfce4-places-plugin)
(xfce4-smartbookmark-plugin, xfce4-statusnotifier-plugin)
(xfce4-stopwatch-plugin, xfce4-systemload-plugin)
(xfce4-time-out-plugin, xfce4-timer-plugin, xfce4-verve-plugin)
(xfce4-wavelan-plugin, xfce4-weather-plugin))[source]: Use HTTPS.
2020-03-11 00:13:56 +01:00
Tobias Geerinckx-Rice
19153f2915
gnu: xfce4-statusnotifier-plugin: Update to 0.2.2.
...
* gnu/packages/xfce.scm (xfce4-statusnotifier-plugin): Update to 0.2.2.
2020-03-11 00:13:55 +01:00
Tobias Geerinckx-Rice
c9cd6d2fb2
gnu: Use HTTPS for skarnet.org sources.
...
* gnu/packages/skarnet.scm (skalibs, execline, s6, s6-dns)
(s6-networking, s6-rc, s6-portable-utils, s6-linux-init, s6-linux-utils)
[source]: Use HTTPS.
2020-03-11 00:13:55 +01:00
Tobias Geerinckx-Rice
b486bf7811
gnu: skalibs: Update to 2.9.2.0.
...
* gnu/packages/skarnet.scm (skalibs): Update to 2.9.2.0.
2020-03-11 00:13:55 +01:00
Tobias Geerinckx-Rice
92a4f18f07
gnu: s6-dns: Update to 2.3.2.0.
...
* gnu/packages/skarnet.scm (s6-dns): Update to 2.3.2.0.
2020-03-11 00:13:55 +01:00
Leo Famulari
7cfcc38f41
gnu: Certbot, python-acme: Update to 1.3.0.
...
* gnu/packages/tls.scm (certbot, python-acme): Update to 1.3.0.
2020-03-10 18:35:57 -04:00
Björn Höfling
60f5ab0bb6
gnu: java-osgi-namespace-contract: Update source URI.
...
* gnu/packages/java.scm (java-osgi-namespace-contract)[source]: Update URI.
2020-03-10 23:35:13 +01:00
Björn Höfling
ec11dcfe69
gnu: java-forester-1.005: Update source URI.
...
* gnu/packages/bioinformatics.scm (java-forester-1.005)[source]: Update URI.
[native-inputs]: Wrap long line.
2020-03-10 23:35:13 +01:00
Björn Höfling
9f5eeb879f
gnu: java-jlargearrays: Update source URI.
...
* gnu/packages/algebra.scm (java-jlargearrays)[source]: Update URI.
2020-03-10 23:35:12 +01:00
Björn Höfling
4c87770442
gnu: java-jtransforms: Update source URI.
...
* gnu/packages/algebra.scm (java-jtransforms)[source]: Update URI.
2020-03-10 23:35:12 +01:00
Tobias Geerinckx-Rice
f613a338d0
gnu: hplip: Update to 3.20.3.
...
* gnu/packages/cups.scm (hplip): Update to 3.20.3.
2020-03-10 22:23:12 +01:00
Tobias Geerinckx-Rice
8e486e808c
gnu: ruby-minitest-rg: Use HTTPS home page.
...
* gnu/packages/ruby.scm (ruby-minitest-rg)[home-page]: Use HTTPS.
2020-03-10 22:23:12 +01:00
Tobias Geerinckx-Rice
2bc8143f6c
gnu: python-wxpython: Use HTTPS home page.
...
* gnu/packages/wxwidgets.scm (python-wxpython)[home-page]: Use HTTPS.
2020-03-10 22:23:12 +01:00
Tobias Geerinckx-Rice
1e4ae5511a
gnu: java-asm: Use HTTPS home page.
...
* gnu/packages/java.scm (java-asm)[home-page]: Use HTTPS.
2020-03-10 22:23:11 +01:00
Tobias Geerinckx-Rice
a8a8a3df30
gnu: bash-tap: Use HTTPS home page.
...
* gnu/packages/bash.scm (bash-tap)[home-page]: Use HTTPS.
2020-03-10 22:23:11 +01:00
Tobias Geerinckx-Rice
e4c60dcfb2
gnu: tlp: Use HTTPS home page.
...
* gnu/packages/linux.scm (tlp)[home-page]: Use HTTPS.
2020-03-10 22:23:11 +01:00
Tobias Geerinckx-Rice
6048241f10
gnu: hplip: Update source hash.
...
The tarball was modified in-place.
See <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=40017 >.
* gnu/packages/cups.scm (hplip)[source]: Update tarball hash.
Reported-by: Mark H Weaver <mhw@netris.org >
2020-03-10 22:02:19 +01:00
Tobias Geerinckx-Rice
f9a69e9bae
gnu: openmpi: Use HTTPS home page.
...
* gnu/packages/mpi.scm (openmpi)[home-page]: Use HTTPS.
2020-03-10 22:02:19 +01:00
Tobias Geerinckx-Rice
9dd7082c48
gnu: openmpi: Update to 4.0.3.
...
* gnu/packages/mpi.scm (openmpi): Update to 4.0.3.
2020-03-10 22:02:19 +01:00
Nicolas Goaziou
c3945380d9
gnu: asymptote: Update to 2.64.
...
* gnu/packages/plotutils.scm (asymptote): Update to 2.64.
2020-03-10 22:01:00 +01:00
Marius Bakke
2d421c4f19
Merge branch 'master' into staging
2020-03-10 20:45:24 +01:00
Carl Dong
90799c35bd
gnu: bitcoin-core: Update to 0.19.1.
...
* gnu/packages/finance.scm (bitcoin-core): Update to 0.19.1.
Co-Authored-By: fanquake <fanquake@gmail.com >
2020-03-10 15:27:53 -04:00
Vitaliy Shatrov
21656ffa3b
doc: Use HTTPS for external links.
...
* doc/contributing.texi
(14.1 Building from Git,
14.3 The Perfect Setup,
14.4.1 Software Freedom,
14.4.4 Synopses and Descriptions,
14.5.4 Formatting Code):
Use HTTPS for @uref{}s and @url{}s that support it.
* doc/fdl-1.3.texi
(Appendix A GNU Free Documentation License):
Use HTTPS for @uref{}s and @url{}s that support it.
* doc/guix.texi
(6.3 Build Systems,
8.8.4 Networking Services,
8.8.8 Sound Services,
8.8.16 Web Services,
8.11 Name Service Switch,
12.2 Preparing to Use the Bootstrap Binaries);
Use HTTPS for @uref{}s and @url{}s that support it.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-03-10 20:26:52 +01:00
Marius Bakke
944e3502b1
gnu: mercurial: Enable more tests.
...
* gnu/packages/version-control.scm (mercurial)[arguments]: Add phase
'patch-tests'. Do not remove patched tests in the 'check' phase.
2020-03-10 20:26:17 +01:00
Ludovic Courtès
79093034b9
gnu: guix: Update to 0984481.
...
* gnu/packages/package-management.scm (guix): Update to 0984481 .
2020-03-10 19:48:24 +01:00
Mark H Weaver
c90c0bd538
gnu: icecat: Update to 68.6.0-guix0-preview1 [security fixes].
...
Includes fixes for CVE-2019-20503, CVE-2020-6805, CVE-2020-6806,
CVE-2020-6807, CVE-2020-6811, CVE-2020-6812, and CVE-2020-6814.
* 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.
2020-03-10 13:45:43 -04:00
Ludovic Courtès
09844816c7
vm: Compute UUIDs truly deterministically.
...
This is a followup to 1540075c79 .
The mistake had no effect on prior Guile versions but it's visible since
Guile 3.0.1 and the fix for <https://bugs.gnu.org/39634 >.
* gnu/system/vm.scm (operating-system-uuid): Hash a list of
'file-system-digest' values, not the 'file-system-type' procedure.
2020-03-10 18:16:39 +01:00
Ludovic Courtès
98619142b8
gnu: guile-next: Update to 3.0.1 with bug-fix for crash.
...
* gnu/packages/guile.scm (guile-3.0): Update to 3.0.1 with
"guile-3.0-crash.patch".
* gnu/packages/patches/guile-3.0-crash.patch: New file.
* gnu/local.mk (dist_patch_DATA): Use it.
2020-03-10 18:16:39 +01:00
Nicolas Goaziou
0e20e2c387
gnu: emacs-xr: Update to 1.18.
...
* gnu/packages/emacs-xyz.scm (emacs-xr): Update to 1.18.
2020-03-10 16:20:02 +01:00
Ricardo Wurmus
49a221151c
gnu: Add r-ppcor.
...
* gnu/packages/cran.scm (r-ppcor): New variable.
2020-03-10 15:15:02 +01:00
Guillaume Le Vaillant
06c8638830
gnu: monero-gui: Update to 0.15.0.4.
...
* gnu/packages/finance.scm (monero-gui): Update to 0.15.0.4.
2020-03-10 13:55:20 +01:00
Guillaume Le Vaillant
fc3aa11385
gnu: monero: Update to 0.15.0.5.
...
* gnu/packages/finance.scm (monero): Update to 0.15.0.5.
2020-03-10 13:55:20 +01:00
Tobias Geerinckx-Rice
75c33c888a
gnu: mars: Fix home page.
...
* gnu/packages/games.scm (mars)[home-page]: Use working domain & HTTPS.
2020-03-10 12:06:51 +01:00
Tobias Geerinckx-Rice
76fcbb7887
gnu: ode: Use HTTPS home page.
...
* gnu/packages/game-development.scm (ode)[home-page]: Use HTTPS.
2020-03-10 12:06:51 +01:00
Tobias Geerinckx-Rice
680e803d66
gnu: xmobar: Use HTTPS home page.
...
* gnu/packages/wm.scm (xmobar)[home-page]: Use HTTPS.
2020-03-10 12:06:51 +01:00
Tobias Geerinckx-Rice
fdfe65b74c
gnu: gitolite: Use HTTPS home page.
...
* gnu/packages/version-control.scm (gitolite)[home-page]: Use HTTPS.
2020-03-10 12:06:50 +01:00
Tobias Geerinckx-Rice
e48ae0bcf9
gnu: font-dosis: Use archive.org'd URIs.
...
* gnu/packages/fonts.scm (font-dosis)[source, home-page]: Use snapshots.
2020-03-10 12:06:50 +01:00
Tobias Geerinckx-Rice
828996bb8a
gnu: python-virtualenv: Propagate inputs.
...
* gnu/packages/python-xyz.scm (python-virtualenv)[inputs]: Make…
[propagated-inputs]: …this.
2020-03-10 12:06:50 +01:00
Kyle Meyer
80b2825d95
gnu: git-annex: Update to 8.20200309.
...
* gnu/packages/haskell-apps.scm (git-annex): Update to 8.20200309.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-03-10 10:56:45 +02:00
Michael Rohleder
ba726ebc2d
gnu: mumble: Disable statistic gathering by default.
...
Fixes <https://bugs.gnu.org/25201 >
* gnu/packages/telephone.scm (mumble)[arguments]: Add phase to disable
statistic gathering by default.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-03-10 10:54:48 +02:00
Tobias Geerinckx-Rice
43d4eb8fc4
gnu: r-sparselda: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-sparselda)[home-page]: Use HTTPS.
2020-03-10 00:12:10 +01:00
Tobias Geerinckx-Rice
369e4e9660
gnu: r-spams: Use HTTPS home page.
...
Well, it currently redirects back to HTTP…
* gnu/packages/statistics.scm (r-spams)[home-page]: Use ‘HTTPS’.
2020-03-10 00:12:10 +01:00
Tobias Geerinckx-Rice
57a2a5015b
gnu: r-fda: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-fda)[home-page]: Use HTTPS.
2020-03-10 00:12:09 +01:00
Tobias Geerinckx-Rice
b0c62de87f
gnu: r-mcmc: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-mcmc)[home-page]: Use HTTPS.
2020-03-10 00:12:08 +01:00
Tobias Geerinckx-Rice
b32a3e1dbf
gnu: r-varselrf: Update home page.
...
* gnu/packages/cran.scm (r-varselrf)[home-page]: Follow (HTTPS)
redirection.
2020-03-10 00:12:08 +01:00
Tobias Geerinckx-Rice
3a18b1cc2e
gnu: r-knitr: Update home page.
...
* gnu/packages/statistics.scm (r-knitr)[home-page]: Follow (HTTPS)
redirection.
2020-03-10 00:12:07 +01:00
Tobias Geerinckx-Rice
b1d3e63bc2
gnu: r-ouch: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-ouch)[home-page]: Use HTTPS.
2020-03-10 00:12:07 +01:00
Tobias Geerinckx-Rice
56451c7894
gnu: libinput: Note libinput-minimal inheritance.
...
* gnu/packages/freedesktop.scm (libinput): Add a warning comment.
2020-03-10 00:12:06 +01:00
Tobias Geerinckx-Rice
ef617dedd2
gnu: csvkit: Update to 1.0.5.
...
* gnu/packages/wireservice.scm (csvkit): Update to 1.0.5.
[source]: Remove upstreamed patch.
* gnu/packages/patches/csvkit-fix-tests.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2020-03-09 23:55:42 +01:00
Tobias Geerinckx-Rice
77dbc1c537
gnu: slang: Use HTTPS home page.
...
* gnu/packages/slang.scm (slang)[home-page]: Use HTTPS.
2020-03-09 23:55:42 +01:00
Tobias Geerinckx-Rice
59e884a211
gnu: polipo: Use HTTPS home page.
...
* gnu/packages/web.scm (polipo)[home-page]: Use HTTPS.
2020-03-09 23:55:42 +01:00
Tobias Geerinckx-Rice
1bcf4ba44b
gnu: iperf: Use HTTPS home page.
...
* gnu/packages/networking.scm (iperf)[home-page]: Use HTTPS.
2020-03-09 23:55:42 +01:00
Tobias Geerinckx-Rice
91fa58c739
gnu: xdotool: Use HTTPS home page.
...
* gnu/packages/xdisorg.scm (xdotool)[home-page]: Use HTTPS.
2020-03-09 23:55:41 +01:00
Tobias Geerinckx-Rice
0622403d35
gnu: compface: Update home page.
...
* gnu/packages/mail.scm (compface)[home-page]: Follow (HTTPS)
redirection.
2020-03-09 23:55:41 +01:00
Tobias Geerinckx-Rice
f30444b9da
gnu: compface: Don't use NAME in source URI.
...
* gnu/packages/mail.scm (compface)[source]: Hard-code NAME.
2020-03-09 23:55:41 +01:00
Tobias Geerinckx-Rice
88c6a1812c
gnu: Use HTTPS for rstudio.github.io home pages.
...
* gnu/packages/cran.scm (r-shinydashboard, r-shinythemes, r-dt)
[home-page]: Use HTTPS.
2020-03-09 23:55:41 +01:00
Ludovic Courtès
a1363a363e
git-authenticate: Add roelj's new key.
...
This is a followup to cc51c03ff8 .
* build-aux/git-authenticate.scm (%committers): Add roelj's new key.
2020-03-09 23:52:07 +01:00
Ludovic Courtès
827abd5deb
tests: getmail: Provide a pre-initialized user account password.
...
* gnu/tests/mail.scm (%getmail-os): Rewrite so that the "alice" account
has a password.
(run-getmail-test)[test]("set password for alice"): Remove. This would
not work since commit 8b9cad01e9 since
'passwd' would no longer be in $PATH.
2020-03-09 23:46:36 +01:00
Ludovic Courtès
0e42a1643e
tests: docker-system: Increase memory requirement.
...
The system image would no longer fit in memory, starting from commit
8c7eb58453 .
* gnu/tests/docker.scm (run-docker-system-test): Set 'memory-size' to 3500.
2020-03-09 23:46:36 +01:00
Ludovic Courtès
7e5f016cdb
tests: zabbix: Set 'PATH' before running the scripts.
...
This is a followup to 8b9cad01e9 .
* gnu/tests/monitoring.scm (run-zabbix-server-test)[test]: Set 'PATH' in
MARIONETTE.
2020-03-09 23:46:36 +01:00
Ludovic Courtès
8a49e63b2d
gnu: Add rr.
...
* gnu/packages/debug.scm (rr): New variable.
2020-03-09 23:46:36 +01:00
Marius Bakke
b3b5714fa7
Merge branch 'master' into staging
2020-03-09 21:45:32 +01:00
Tobias Geerinckx-Rice
51f30d4fdf
Revert "gnu: libinput: Update to 1.15.3."
...
This reverts commit 1fad0b8674 .
It rebuilds the world through libinput-minimal.
2020-03-09 21:26:58 +01:00
Tobias Geerinckx-Rice
18d59640e1
gnu: python-sphinxcontrib-websupport: Update to 1.2.0.
...
* gnu/packages/sphinx.scm (python-sphinxcontrib-websupport): Update to
1.2.0.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
11be15730c
gnu: python-sphinxcontrib-serializinghtml: Update to 1.1.4.
...
* gnu/packages/sphinx.scm (python-sphinxcontrib-serializinghtml): Update
to 1.1.4.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
99533bebac
gnu: python-sphinxcontrib-qthelp: Update to 1.0.3.
...
* gnu/packages/sphinx.scm (python-sphinxcontrib-qthelp): Update to 1.0.3.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
25b576a9db
gnu: python-sphinxcontrib-htmlhelp: Update to 1.0.3.
...
* gnu/packages/sphinx.scm (python-sphinxcontrib-htmlhelp): Update to 1.0.3.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
ccac5118f7
gnu: python-sphinxcontrib-devhelp: Update to 1.0.2.
...
* gnu/packages/sphinx.scm (python-sphinxcontrib-devhelp): Update to 1.0.2.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
f49b8c14fb
gnu: python-sphinxcontrib-applehelp: Update to 1.0.2.
...
* gnu/packages/sphinx.scm (python-sphinxcontrib-applehelp): Update to 1.0.2.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
a0093a71c5
gnu: youtube-dl: Update to 2020.03.08.
...
* gnu/packages/video.scm (youtube-dl): Update to 2020.03.08.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
9d7a3562c2
gnu: perl-catalyst-devel: Update to 1.40.
...
* gnu/packages/web.scm (perl-catalyst-devel): Update to 1.40.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
99e8ce528c
gnu: spice-protocol: Update to 0.14.1.
...
* gnu/packages/spice.scm (spice-protocol): Update to 0.14.1.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
e4e44f24bd
gnu: perl-timedate: Update to 2.32.
...
* gnu/packages/perl.scm (perl-timedate): Update to 2.32.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
0e591daa81
gnu: perl-xs-object-magic: Update to 0.05.
...
* gnu/packages/perl.scm (perl-xs-object-magic): Update to 0.05.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
2317f330e8
gnu: perl-datetime-format-strptime: Update to 1.77.
...
* gnu/packages/perl.scm (perl-datetime-format-strptime): Update to 1.77.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
940f9c75a6
gnu: perl-datetime: Update to 1.52.
...
* gnu/packages/perl.scm (perl-datetime): Update to 1.52.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
3a83862db0
gnu: man-db: Update to 2.9.1.
...
* gnu/packages/man.scm (man-db): Update to 2.9.1.
2020-03-09 16:01:19 +01:00
Tobias Geerinckx-Rice
c3bde0b7af
gnu: libseccomp: Update to 2.4.3.
...
* gnu/packages/linux.scm (libseccomp): Update to 2.4.3.
[source]: Remove upstreamed patch.
* gnu/packages/patches/libseccomp-open-aarch64.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
1fad0b8674
gnu: libinput: Update to 1.15.3.
...
* gnu/packages/freedesktop.scm (libinput): Update to 1.15.3.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
4227a73189
gnu: libostree: Update to 2020.2.
...
* gnu/packages/package-management.scm (libostree): Update to 2020.2.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
cf566106b6
gnu: tcsh: Use HTTPS home page.
...
* gnu/packages/shells.scm (tcsh)[home-page]: Use HTTPS.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
a0087cf58d
gnu: mit-krb5: Use HTTPS home page.
...
* gnu/packages/kerberos.scm (mit-krb5)[home-page]: Use HTTPS.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
80fafdba1c
gnu: speedcrunch: Use HTTPS home page.
...
* gnu/packages/maths.scm (speedcrunch)[home-page]: Use HTTPS.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
ef752646aa
gnu: ding: Use HTTPS home page.
...
* gnu/packages/dictionaries.scm (ding)[home-page]: Use HTTPS.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
b3851745f1
gnu: plotutils: Use HTTPS home page.
...
* gnu/packages/plotutils.scm (plotutils)[home-page]: Use HTTPS.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
17dea2e279
gnu: idris: Use HTTPS home page.
...
* gnu/packages/idris.scm (idris)[home-page]: Use HTTPS.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
8a34536f00
gnu: xfce4-power-manager: Update to 1.7.0.
...
* gnu/packages/xfce.scm (xfce4-power-manager): Update to 1.7.0.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
0babcd9d83
gnu: xfce4-power-manager: Don't use NAME in source URI.
...
* gnu/packages/xfce.scm (xfce4-power-manager)[source]: Hard-code NAME.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
d4e8859ba5
gnu: xfburn: Update to 0.6.2.
...
* gnu/packages/xfce.scm (xfburn): Update to 0.6.2.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
7ae397ac14
gnu: claws-mail: Update to 3.17.5.
...
* gnu/packages/mail.scm (claws-mail): Update to 3.17.5.
2020-03-09 16:01:18 +01:00
Tobias Geerinckx-Rice
633c32fbd9
gnu: s6: Update to 2.9.0.1.
...
* gnu/packages/skarnet.scm (s6): Update to 2.9.0.1.
2020-03-09 16:01:17 +01:00
Tobias Geerinckx-Rice
bead506555
gnu: s6-linux-init: Update to 1.0.4.0.
...
* gnu/packages/skarnet.scm (s6-linux-init): Update to 1.0.4.0.
2020-03-09 16:01:17 +01:00
Tobias Geerinckx-Rice
df0bb509c2
download: Remove misbehaving kvin.lv mirror.
...
It issues bogus redirections instead of returning 404.
* guix/download.scm (%mirrors): Remove kvin.lv from CPAN.
2020-03-09 16:01:17 +01:00
Guillaume Le Vaillant
0ccc138517
gnu: Add spatialite-tools.
...
* gnu/packages/geo.scm (spatialite-tools): New variable.
2020-03-09 15:21:46 +01:00
Guillaume Le Vaillant
133de9ab38
gnu: Add readosm.
...
* gnu/packages/geo.scm (readosm): New variable.
2020-03-09 15:21:46 +01:00
Guillaume Le Vaillant
e8906d86ee
gnu: spatialite-gui: Add missing input.
...
* gnu/packages/geo.scm (spatialite-gui)[inputs]: Add libjpeg-turbo.
2020-03-09 15:21:46 +01:00
Guillaume Le Vaillant
3cf0a5dc53
gnu: gdal: Update to 3.0.4.
...
* gnu/packages/geo.scm (gdal): Update to 3.0.4.
2020-03-09 15:21:46 +01:00
Guillaume Le Vaillant
9147d1216e
gnu: proj: Update to 6.3.1.
...
* gnu/packages/geo.scm (proj): Update to 6.3.1.
2020-03-09 15:21:45 +01:00
Roel Janssen
4960c03d1d
gnu: Add perl-math-vecstat.
...
* gnu/packages/perl.scm (perl-math-vecstat): New variable.
2020-03-09 15:18:13 +01:00
Roel Janssen
b4e1ca0675
gnu: python-semver: Fix build.
...
* gnu/packages/python-xyz.scm: Add python-appdirs, python-distlib,
python-importlib-metadata, python-filelock, and python-six to native-inputs
in order to run the test suite.
2020-03-09 14:50:35 +01:00
Roel Janssen
c0f6446579
gnu: Fix build of python-velocyto.
...
* gnu/packages/bioinformatics.scm (python-velocyto): Add python-joblib to
native-inputs to make the test suite run succesfully.
2020-03-09 14:34:41 +01:00
Efraim Flashner
fb29d7d70c
gnu: Add vim-asyncrun.
...
* gnu/packages/vim.scm (vim-asyncrun): New variable.
2020-03-09 14:45:38 +02:00
Efraim Flashner
61daf2dbc9
gnu: Add nyancat.
...
* gnu/packages/toys.scm (nyancat): New variable.
2020-03-09 14:31:25 +02:00
Roel Janssen
b6574660e3
gnu: Update python-statsmodels to 0.11.1.
...
* gnu/packages/statistics.scm (python-statsmodels): Update to 0.11.1.
2020-03-09 13:01:27 +01:00
Pierre Neidhardt
6dfc981a98
gnu: Add sycamore.
...
* gnu/packages/lisp-xyz.scm (cl-sycamore, sbcl-sycamore): New variables.
2020-03-09 10:55:46 +01:00
Pierre Neidhardt
698a34482a
gnu: emacs-sly: Update to 20200228.
...
* gnu/packages/emacs-xyz.scm (emacs-sly): Update to 20200228.
2020-03-09 09:42:04 +01:00
Jakub Kądziołka
478af02863
doc: Use an https link for Contributor Covenant.
...
* doc/contributing.texi: Switch to https for the link to
contributor-covenant.org
Reported-By: guix-vits on IRC
2020-03-09 09:34:39 +01:00
Ricardo Wurmus
c3b6d61df3
gnu: r-desolve: Update to 1.28.
...
* gnu/packages/cran.scm (r-desolve): Update to 1.28.
2020-03-09 08:51:40 +01:00
Ricardo Wurmus
103de43c67
gnu: r-umap: Update to 0.2.5.0.
...
* gnu/packages/cran.scm (r-umap): Update to 0.2.5.0.
[native-inputs]: Add r-knitr.
2020-03-09 08:51:40 +01:00
Ricardo Wurmus
ea20989d87
gnu: r-rcppannoy: Update to 0.0.16.
...
* gnu/packages/cran.scm (r-rcppannoy): Update to 0.0.16.
[native-inputs]: Remove r-knitr.
2020-03-09 08:51:40 +01:00
Ricardo Wurmus
207ba868a3
gnu: r-quantmod: Update to 0.4-16.
...
* gnu/packages/cran.scm (r-quantmod): Update to 0.4-16.
2020-03-09 08:51:40 +01:00
Ricardo Wurmus
bcbcd17d45
gnu: r-vcd: Update to 1.4-6.
...
* gnu/packages/cran.scm (r-vcd): Update to 1.4-6.
2020-03-09 08:51:40 +01:00
Ricardo Wurmus
fec7f576b4
gnu: r-ggrepel: Update to 0.8.2.
...
* gnu/packages/cran.scm (r-ggrepel): Update to 0.8.2.
2020-03-09 08:51:36 +01:00
Christopher Baines
af96c1e0e4
services: cuirass: Allow passing extra command line options.
...
This is so that the options supported by the service configuration don't have
to always be changed. Generally though all options should be explicitly
supported and documented, so this is mostly to facilitate experimentation.
* gnu/services/cuirass.scm (<cuirass-configuration>): Add an extra-options
field.
(cuirass-shepherd-service): Pass the extra options to the shepherd servvices.
* doc/guix.texi (Continuous Integration): Document it.
2020-03-08 23:46:11 +00:00
Christopher Baines
d8ab68b929
services: guix-data-service: Allow passing extra options.
...
This is so that the options supported by the service configuration don't have
to always be changed. Generally though all options should be explicitly
supported and documented, so this is mostly to facilitate experimentation.
* gnu/services/guix.scm (<guix-data-service-configuration>): Add extra-options
and extra-process-jobs-options to the record type.
(guix-data-service-shepherd-services): Handle these new configuration record
fields.
* doc/guix.texi (Guix Data Service): Document these new options.
2020-03-08 23:35:03 +00:00
Christopher Baines
67d21e2b08
gnu: guix-data-service: Update to 0.0.1-18.18eb9df.
...
* gnu/packages/web.scm (guix-data-service): Update to 0.0.1-18.18eb9df.
(inputs, native-inputs): Switch to using the Guile 3 package variants where
applicable.
2020-03-08 23:35:00 +00:00
Jakub Kądziołka
94d57ba339
gnu: python-virtualenv: Update to 20.0.8.
...
* gnu/packages/python-xyz.scm (python-virtualenv): Update to 20.0.8.
[arguments]: Remove the now-redundant 'disable-failing-test phase.
[native-inputs]: Add python-setuptools and python-setuptools-scm.
[inputs]: Add python-{appdirs, distlib, filelock, six,
importlib-metadata}.
2020-03-09 00:20:49 +01:00
Jakub Kądziołka
6e79208954
gnu: python-xyz: Add python-filelock.
...
* gnu/packages/python-xyz.scm (python-filelock): New variable.
2020-03-09 00:20:47 +01:00
Jakub Kądziołka
f2a6483084
gnu: python-xyz: Add python-distlib.
...
* gnu/packages/python-xyz.scm (python-distlib): New variable.
2020-03-09 00:20:46 +01:00
Ricardo Wurmus
830eac9c27
gnu: ngless: Update to 1.1.0.
...
* gnu/packages/bioinformatics.scm (ngless): Update to 1.1.0.
2020-03-08 23:37:09 +01:00
Ricardo Wurmus
3f68f76eaf
gnu: Add jack-select.
...
* gnu/packages/music.scm (jack-select): New variable.
2020-03-08 23:13:11 +01:00
Ricardo Wurmus
46a864e7c1
gnu: taxtastic: Update to 0.8.11.
...
* gnu/packages/bioinformatics.scm (taxtastic): Update to 0.8.11.
[source]: Fetch from Github.
[arguments]: Build with default Python; add phases 'prepare-directory,
'python37-compatibility, and update 'check phase.
[propagated-inputs]: Replace Python 2 variants with Python 3 variants.
2020-03-08 22:50:16 +01:00
Ludovic Courtès
d6d0e10b3d
gnu: guile-next: Revert to 3.0.0.
...
Guile 3.0.1 segfaults while building guix-system-tests.drv on
and "guile3.0-guix" on x86_64-linux.
* gnu/packages/guile.scm (guile-next): Revert to 3.0.0.
(guile-3.0):
2020-03-08 22:15:54 +01:00
Roel Janssen
3d33ca27b2
gnu: Add perl-config-inifiles.
...
* gnu/packages/perl.scm (perl-config-inifiles): New variable.
2020-03-08 21:50:44 +01:00
Roel Janssen
d0ca79e53d
gnu: Add perl-attribute-util.
...
* gnu/packages/perl.scm (perl-attribute-util): New variable.
2020-03-08 21:50:32 +01:00
Efraim Flashner
30acf2f959
gnu: Add font-opendyslexic.
...
* gnu/packages/fonts.scm (font-opendyslexic): New variable.
(font-open-dyslexic): Mark as deprecated package.
2020-03-08 22:42:33 +02:00
Ludovic Courtès
e5059c95aa
gnu: beep: Remove dependency on GCC 8.
...
* gnu/packages/terminals.scm (beep)[native-inputs]: Remove.
2020-03-08 21:21:57 +01:00
Vincent Legoll
1d91680c84
gnu: beep: Update to 1.4.9.
...
* gnu/packages/terminals.scm (beep): Update to 1.4.9.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-08 21:21:57 +01:00
Jack Hill
f6713b55a1
services: certbot: Add server option.
...
* gnu/services/certbot.scm (certbot-configuration): Add server option.
(certbot-command): Use server option.
(certbot-actication): Use server option.
(certbot-nginx-server-configurations): Use server option.
* doc/guix.texi (Certificate Services): Document server option.
Co-authored-by: Tobias Geerinckx-Rice <me@tobias.gr >
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-08 21:21:57 +01:00
Brice Waegeneire
9ef37e81d6
system: Export 'operating-system' missing fields.
...
* gnu/system.scm: Export 'operating-system-firmware',
'operating-system-keyboard-layout',
'operating-system-name-service-switch', 'operating-system-pam-services',
'operating-system-setuid-programs', 'operating-system-skeletons',
'operating-system-sudoers-file', 'operating-system-swap-devices'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-08 21:21:57 +01:00
Ludovic Courtès
1a30351bf3
gnu: guile-next: Update to 3.0.1.
...
* gnu/packages/guile.scm (guile-3.0): Update to 3.0.1. Use "mirror://" URL.
2020-03-08 21:21:57 +01:00
Mathieu Othacehe
9a2f99f42f
gexp: Default to current target.
...
* guix/gexp.scm (lower-object): Set target argument to 'current by default and
look for the current target system at bind time if needed,
(gexp->file): ditto,
(gexp->script): ditto,
(lower-gexp): make sure lowered extensions are not cross-compiled.
* tests/gexp.scm: Add cross-compilation test-cases for gexp->script and
gexp->file with a target passed explicitely and with a default target.
2020-03-08 20:28:31 +01:00
Mathieu Othacehe
5d52d10661
store: Add set-current-target procedure.
...
* guix/store.scm (set-current-target): New exported procedure.
2020-03-08 20:28:31 +01:00
Ricardo Wurmus
c32897b6e4
gnu: r-robust: Update to 0.5-0.0.
...
* gnu/packages/statistics.scm (r-robust): Update to 0.5-0.0.
2020-03-08 16:02:04 +01:00
Ricardo Wurmus
7b2acf1508
gnu: r-rapidjsonr: Update to 1.2.0.
...
* gnu/packages/cran.scm (r-rapidjsonr): Update to 1.2.0.
2020-03-08 16:02:04 +01:00
Ricardo Wurmus
dc30cc0300
gnu: r-atacseqqc: Update to 1.10.3.
...
* gnu/packages/bioconductor.scm (r-atacseqqc): Update to 1.10.3.
[native-inputs]: Add r-knitr.
2020-03-08 16:02:04 +01:00
Hartmut Goebel
6434f9b634
gnu: Reword and extend descriptions for some KDE packages.
...
* gnu/packages/kde-multimedia.scm (libkcompatdisc)[description]: Extend.
* gnu/packages/kde-pim.scm (akonadi-search, kalarmcal, kdemailimporter,
kdepim-apps-libs, kidentitymanagement, kldap, kmailtransport, kmbox, kmime,
kontactinterface, kpimtextedit)[description]: Reword and extend.
(ktnef, kpimcommon, libkdepim)[synopsis, description]: Reword and extend.
(kmailtransport)[synopsis]: Fix space.
* gnu/packages/kde-systemtools.scm (khelpcenter)[description]: Extend.
2020-03-08 14:06:00 +01:00
Martin Becze
1eb3b2b666
gnu: Add emacs-org-journal.
...
* gnu/packages/emacs-xyz.scm (emacs-org-journal): New Variable.
2020-03-08 11:19:16 +01:00
Roel Janssen
e2ca10a46f
gnu: python-umap-learn: Fix build.
...
* gnu/packages/machine-learning.scm (python-umap-learn): Add python-joblib to
run the test suite.
2020-03-08 10:20:22 +01:00
Maxim Cournoyer
5fdc5b2d57
services: nfs: Run rpc.mountd in foreground.
...
Fixes <https://bugs.gnu.org/39708 >.
Shepherd doesn't keep track of processes that fork themselves and would
disable the process after restarting it a couple times.
* gnu/services/nfs.scm (nfs-shepherd-services): Invoke rpc.mountd with the
'--foreground' option.
2020-03-08 00:26:02 -05:00
Leo Famulari
be3908fa14
gnu: QEMU: Fix CVE-2020-8608.
...
* gnu/packages/patches/qemu-CVE-2020-8608.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/virtualization.scm (qemu)[source]: Use it.
2020-03-07 16:37:25 -05:00
Lars-Dominik Braun
83ac7cb42b
gnu: brotli: Remove package
...
Same package is provided by google-brotli.
* gnu/packages/compression.scm (brotli): Redefine as a deprecated alias
for "google-brotli".
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2020-03-07 22:30:06 +01:00
Lars-Dominik Braun
d9476a3700
gnu: woff2: Update to 1.0.2
...
* gnu/packages/fontutils.scm (woff2): Update to 1.0.2 and switch to cmake
* gnu/packages/patches/woff2-libbrotli.patch: Remove
* gnu/local.mk (dist_patch_DATA): Remove patch
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-07 22:30:06 +01:00
Vincent Legoll
74ff08e6b8
gnu: ccache: Fix indentation
...
* gnu/packages/ccache.scm (ccache): Fix indentation
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-07 22:30:06 +01:00
Vincent Legoll
9eb456b8c7
gnu: ccache: Update to 3.7.7.
...
gnu/packages/ccache.scm (ccache): Update to 3.7.7, update homepage
to ccache.dev, get source code from github, remove fortran 77 from
description.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-03-07 22:30:06 +01:00
Ludovic Courtès
24a4a635fd
gnu: eudev: Add variant with corrected Btrfs rules.
...
Discussed at <https://bugs.gnu.org/39926 >.
* gnu/packages/linux.scm (eudev/btrfs-fix): New variable.
* gnu/services/base.scm (<udev-configuration>)[udev]: Default to it.
(udev-service): Likewise for #:udev.
2020-03-07 22:30:00 +01:00
Ludovic Courtès
8ab060b68b
gnu: guile: Add 2.2.7.
...
* gnu/packages/guile.scm (guile-2.2.7): New variable.
(guile-2.2/bug-fix): Redefine as a deprecated alias for GUILE-2.2.7.
* gnu/packages/admin.scm (shepherd)[native-inputs, inputs]: Use GUILE-2.2.7.
* gnu/packages/patches/guile-finalization-crash.patch: Remove.
* gnu/local.mk (dist_patch_DATA): Remove it.
2020-03-07 22:29:44 +01:00
Nicolas Goaziou
2519e4cba8
gnu: emacs-xr: Update to 1.17.
...
* gnu/packages/emacs-xyz.scm (emacs-xr): Update to 1.17.
2020-03-07 21:42:45 +01:00
Nicolas Goaziou
f61b980f5d
gnu: emacs-relint: Update to 1.15.
...
* gnu/packages/emacs-xyz.scm (emacs-relint): Update to 1.15.
2020-03-07 21:41:06 +01:00
Ricardo Wurmus
1c9e3e9f36
gnu: r-dplyr: Update to 0.8.5.
...
* gnu/packages/statistics.scm (r-dplyr): Update to 0.8.5.
[native-inputs]: Add r-knitr.
2020-03-07 20:03:55 +01:00
Ricardo Wurmus
667f799641
gnu: r-survival: Update to 3.1-11.
...
* gnu/packages/statistics.scm (r-survival): Update to 3.1-11.
2020-03-07 20:03:43 +01:00
Ricardo Wurmus
d8545835bd
gnu: r-lifecycle: Update to 0.2.0.
...
* gnu/packages/cran.scm (r-lifecycle): Update to 0.2.0.
[native-inputs]: Add r-knitr.
2020-03-07 20:03:32 +01:00
Ricardo Wurmus
a97c648c61
gnu: r-covr: Update to 3.5.0.
...
* gnu/packages/cran.scm (r-covr): Update to 3.5.0.
[native-inputs]: Add r-knitr.
2020-03-07 20:03:21 +01:00
Ricardo Wurmus
4882fcd292
gnu: r-pscl: Update to 1.5.5.
...
* gnu/packages/cran.scm (r-pscl): Update to 1.5.5.
2020-03-07 20:03:11 +01:00
Ricardo Wurmus
15d3ac75ce
gnu: r-mosaic: Add r-knitr.
...
* gnu/packages/cran.scm (r-mosaic)[native-inputs]: Add r-knitr.
2020-03-07 20:02:52 +01:00
Ricardo Wurmus
c68c7e2fbf
gnu: r-insight: Update to 0.8.2.
...
* gnu/packages/cran.scm (r-insight): Update to 0.8.2.
[native-inputs]: Add r-knitr.
2020-03-07 20:02:35 +01:00
Ricardo Wurmus
491ce4f083
gnu: r-heatmaply: Add r-knitr.
...
* gnu/packages/cran.scm (r-heatmaply)[native-inputs]: Add r-knitr.
2020-03-07 20:02:14 +01:00
Ricardo Wurmus
d56553edc3
gnu: r-methylkit: Add r-knitr.
...
* gnu/packages/bioinformatics.scm (r-methylkit)[native-inputs]: Add r-knitr.
2020-03-07 19:42:34 +01:00
Ricardo Wurmus
06fc1882f2
gnu: r-ggrepel: Add r-knitr.
...
* gnu/packages/cran.scm (r-ggrepel)[native-inputs]: Add r-knitr.
2020-03-07 19:38:31 +01:00
Ricardo Wurmus
c363722e81
import/cran: Add vignette builder to native inputs.
...
* guix/import/cran.scm (needs-knitr?): New procedure.
(description->package): Use it.
2020-03-07 19:31:47 +01:00
Ricardo Wurmus
67133278ec
gnu: r-multiassayexperiment: Update to 1.12.4.
...
* gnu/packages/bioconductor.scm (r-multiassayexperiment): Update to 1.12.4.
2020-03-07 19:31:47 +01:00
Ricardo Wurmus
bf3722f9db
gnu: r-depecher: Update to 1.2.2.
...
* gnu/packages/bioconductor.scm (r-depecher): Update to 1.2.2.
[native-inputs]: Add r-knitr.
2020-03-07 19:31:47 +01:00
Ricardo Wurmus
a2512e436b
gnu: r-xcms: Update to 3.8.2.
...
* gnu/packages/bioconductor.scm (r-xcms): Update to 3.8.2.
2020-03-07 19:31:47 +01:00
Ricardo Wurmus
f0aaa4482a
gnu: r-yamss: Update to 1.12.1.
...
* gnu/packages/bioconductor.scm (r-yamss): Update to 1.12.1.
2020-03-07 19:31:47 +01:00
Ricardo Wurmus
56bf00b94e
gnu: r-viridis: Add r-knitr.
...
* gnu/packages/statistics.scm (r-viridis)[native-inputs]: Add r-knitr.
2020-03-07 19:31:46 +01:00
Ricardo Wurmus
3b7c644569
gnu: r-vsn: Add r-knitr.
...
* gnu/packages/bioinformatics.scm (r-vsn)[native-inputs]: Add r-knitr.
2020-03-07 19:31:46 +01:00
Michael Rohleder
9eed0a74f9
fd: Install bash completion properly.
...
* gnu/packages/rust-apps.scm (fd)[arguments]: Replace
the dash in "bash-completion.d" with an underscore.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-03-07 18:32:27 +01:00
Robert Smith
880a316591
gnu: anki: Fix mpv audio playback
...
* gnu/packages/patches/anki-mpv-args.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/education.scm (anki): Adjust accordingly, wrap anki's
PATH to include mpv executable.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-03-07 17:29:34 +01:00
Pierre Neidhardt
262d6ed465
gnu: next: Fix build with SBCL 2.0.2.
...
* gnu/packages/web-browsers.scm (next)[arguments]: Fix lambda-list type error
on SBCL 2.0.2.
2020-03-07 17:12:35 +01:00
Tobias Geerinckx-Rice
322ea25c56
gnu: s6-rc: Update to 0.5.1.2.
...
* gnu/packages/skarnet.scm (s6-rc): Update to 0.5.1.2.
2020-03-07 16:04:20 +01:00
Tobias Geerinckx-Rice
072102f651
gnu: s6-portable-utils: Update to 2.2.2.2.
...
* gnu/packages/skarnet.scm (s6-portable-utils): Update to 2.2.2.2.
2020-03-07 16:04:20 +01:00
Tobias Geerinckx-Rice
82853fbf8c
gnu: s6-networking: Update to 2.3.1.2.
...
* gnu/packages/skarnet.scm (s6-networking): Update to 2.3.1.2.
2020-03-07 16:04:20 +01:00
Tobias Geerinckx-Rice
5cecf3f4e2
gnu: s6-linux-utils: Update to 2.5.1.2.
...
* gnu/packages/skarnet.scm (s6-linux-utils): Update to 2.5.1.2.
2020-03-07 16:04:20 +01:00
Tobias Geerinckx-Rice
1d57075049
gnu: scm: Update to 5f3.
...
* gnu/packages/scheme.scm (scm): Update to 5f3.
2020-03-07 16:04:20 +01:00
Tobias Geerinckx-Rice
db34ab7350
gnu: ntp: Update to 4.2.8p14 [fixes Sec 3610, Sec 3596, Sec 3592].
...
https://support.ntp.org/bin/view/Main/SecurityNotice#Recent_Vulnerabilities
* gnu/packages/ntp.scm (ntp): Update to 4.2.8p14.
2020-03-07 16:04:20 +01:00
Tobias Geerinckx-Rice
e4a9f135f7
gnu: ntp: Use HTTPS in metadata URIs
...
* gnu/packages/ntp.scm (ntp)[home-page, license]: Use HTTPS.
2020-03-07 16:04:20 +01:00
Vincent Legoll
e7ba60ddce
gnu: unbound: Update to 1.10.0.
...
* gnu/packages/dns.scm (unbound): Update to 1.10.0.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-03-07 14:51:37 +01:00
Vincent Legoll
4c8b874f95
gnu: ppp: Update to 2.4.8-1.8d45443 [fixes CVE-2020-8597].
...
* gnu/packages/samba.scm (ppp): Update to 2.4.8-1.8d45443.
Use GIT-FETCH and GIT-FILE-NAME.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-03-07 14:27:06 +01:00
Tobias Geerinckx-Rice
4f236f84a9
gnu: Use HTTPS for commons.apache.org home pages.
...
* gnu/packages/java.scm (java-commons-io, java-commons-logging-minimal)
(java-commons-math3, java-commons-jxpath, java-commons-daemon)
(java-commons-net, java-commons-vfs, java-commons-beanutils)
(java-commons-lang, java-commons-lang3)[home-page]:Use HTTPS.
2020-03-07 12:48:19 +01:00
Tobias Geerinckx-Rice
c82ddf3360
gnu: java-joda-convert: Use HTTPS home page.
...
* gnu/packages/java.scm (java-joda-convert)[home-page]: Use HTTPS.
2020-03-07 12:48:19 +01:00
Tobias Geerinckx-Rice
4d1ddb5156
gnu: java-log4j-1.2-api: Use HTTPS home page.
...
* gnu/packages/java.scm (java-log4j-1.2-api)[home-page]: Use HTTPS.
2020-03-07 12:48:19 +01:00
Tobias Geerinckx-Rice
c901060547
gnu: java-testng: Use HTTPS home page.
...
* gnu/packages/java.scm (java-testng)[home-page]: Use HTTPS.
2020-03-07 12:48:19 +01:00
Tobias Geerinckx-Rice
b93a0c1e6d
gnu: java-junit: Use HTTPS home page.
...
* gnu/packages/java.scm (java-junit)[home-page]: Use HTTPS.
2020-03-07 12:48:19 +01:00
Tobias Geerinckx-Rice
a809d63252
gnu: java-openchart2: Use HTTPS home page.
...
* gnu/packages/java.scm (java-openchart2)[home-page]: Use HTTPS.
2020-03-07 12:48:19 +01:00
Tobias Geerinckx-Rice
a15b45290d
gnu: raincat: Update home page.
...
* gnu/packages/haskell-apps.scm (raincat)[home-page]: Update.
2020-03-07 12:48:18 +01:00
Tobias Geerinckx-Rice
f23365fa2c
gnu: instantmusic: Update home page.
...
* gnu/packages/music.scm (instantmusic)[home-page]: Update.
2020-03-07 12:48:18 +01:00
Tobias Geerinckx-Rice
5969598149
gnu: openblas: Use HTTPS home page.
...
* gnu/packages/maths.scm (openblas)[home-page]: Use HTTPS.
2020-03-07 12:48:18 +01:00
Tobias Geerinckx-Rice
14a5146f3a
gnu: python-execnet: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-execnet)[home-page]: Use HTTPS.
2020-03-07 12:48:18 +01:00
Tobias Geerinckx-Rice
cc31d17263
gnu: emacs-ffap-rfc-space: Use HTTPS home page.
...
* gnu/packages/emacs-xyz.scm (emacs-ffap-rfc-space)[home-page]: Use HTTPS.
2020-03-07 12:48:18 +01:00
Tobias Geerinckx-Rice
6a0d1bd390
gnu: librecad: Use HTTPS home page.
...
* gnu/packages/engineering.scm (librecad)[home-page]: Use HTTPS.
2020-03-07 12:48:18 +01:00
Tobias Geerinckx-Rice
c0dc417909
gnu: spice: Update to 0.14.3.
...
* gnu/packages/spice.scm (spice): Update to 0.14.3.
[source]: Remove obsolete patch.
* gnu/packages/patches/spice-fix-test-armhf.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2020-03-07 12:48:18 +01:00
Tobias Geerinckx-Rice
beecf815db
gnu: xfce4-weather-plugin: Update to 0.10.1.
...
* gnu/packages/xfce.scm (xfce4-weather-plugin): Update to 0.10.1.
2020-03-07 12:48:18 +01:00
Tobias Geerinckx-Rice
3a5557a4d2
gnu: xfce4-clipman-plugin: Update to 1.4.4.
...
* gnu/packages/xfce.scm (xfce4-clipman-plugin): Update to 1.4.4.
2020-03-07 12:48:18 +01:00
Tobias Geerinckx-Rice
0bbf14ce93
gnu: xfce4-clipman-plugin: Don't use NAME in source URI.
...
* gnu/packages/xfce.scm (xfce4-clipman-plugin)[source]: Hard-code NAME.
2020-03-07 12:48:17 +01:00
Pierre Neidhardt
ece22a25b6
gnu: fmt: Switch back to url-fetch.
...
* gnu/packages/pretty-print.scm (fmt)[source]: Use url-fetch instead of
git-fetch since upstream uploads releases. Both approaches produce the
same package, but git-fetch requires more bandwidth.
2020-03-07 12:37:14 +01:00
Pierre Neidhardt
0bc557fd70
gnu: cl-dbus: Remove unneeded inputs.
...
* gnu/packages/lisp-xyz.scm (cl-dbus)[propagated-inputs]: Remove iolib
subpackages now that iolib properly references them.
2020-03-07 11:30:11 +01:00
Pierre Neidhardt
af5c4efff6
gnu: sbcl-iolib: Fix build to refer to its subpackages properly.
...
* gnu/packages/lisp-xyz.scm (sbcl-iolib): Inherit from its subpackages instead
of the other way around, so that they are automatically referenced in the
generated .asd.
2020-03-07 11:28:32 +01:00
Vagrant Cascadian
5fb3c00256
gnu: go-golang.org-x-sync-errgroup: Fix spelling of "cancellation".
...
* gnu/packages/golang (go-golang.org-x-sync-errgroup)[synopsis]: Fix typo.
2020-03-06 20:13:30 -08:00
Vagrant Cascadian
52c733124a
gnu: rust-named-pipe-0.4: Fix spelling of "asynchronous"
...
* gnu/packages/crates-io (rust-named-pipe-0.4)[synopsis]: Fix typo.
[description]: Fix typo.
2020-03-06 20:13:28 -08:00
Vagrant Cascadian
92f4583208
gnu: r-d3network: Fix typo "This package".
...
* gnu/packages/cran (r-d3network)[description]: Fix typo.
2020-03-06 20:13:25 -08:00
Vagrant Cascadian
5b309c6242
gnu: ksystemlog: Fix spelling of "occurring".
...
* gnu/packages/kde-sytemtools (ksystemlog)[description]: Fix typo.
2020-03-06 20:13:23 -08:00
Vagrant Cascadian
adca9882be
gnu: unicode-cldr-common: Fix spelling of "information".
...
* gnu/packages/unicode (unicode-cldr-common)[description]: Fix typo.
2020-03-06 20:13:19 -08:00
Vagrant Cascadian
374540ff65
gnu: sdl-pango: Rename patch to fix guix lint warning about patch filename size.
...
* gnu/packages/patches/sdl-pango-fix-explicit-SDLPango_CopyFTBitmapToSurface.patch:
Rename to ...
* gnu/packages/patches/sdl-pango-fix-explicit-SDLPango_CopyFTBitmapTo.patch:
... this.
* gnu/local.mk: Update accordingly.
* gnu/packages/sdl.scm: Update accordingly.
2020-03-06 17:34:00 -08:00
Vagrant Cascadian
789c02478a
gnu: akonadi: Rename patch to fix guix lint warning about patch filename size.
...
* gnu/packages/patches/akonadi-Revert-Make-installation-properly-relocatabl.patch:
Rename to ...
* gnu/packages/patches/akonadi-Revert-Make-installation-properly-relo.patch:
... this.
* gnu/packages/kde-pim (akonadi) Update accordingly.
* gnu/local.mk: Update accordingly.
2020-03-06 17:33:56 -08:00
Tobias Geerinckx-Rice
b2ce10e3a9
gnu: yasm: Use HTTPS home page.
...
* gnu/packages/assembly.scm (yasm)[home-page]: Use HTTPS.
2020-03-07 01:42:51 +01:00
Tobias Geerinckx-Rice
a4fdde47cc
gnu: jq: Use HTTPS home page.
...
* gnu/packages/web.scm (jq)[home-page]: Use HTTPS.
2020-03-07 01:42:51 +01:00
Tobias Geerinckx-Rice
c61bfa08ed
gnu: xerces-c: Use HTTPS home page.
...
* gnu/packages/xml.scm (xerces-c)[home-page]: Use HTTPS.
2020-03-07 01:42:51 +01:00
Tobias Geerinckx-Rice
898dc4947f
gnu: ytalk: Use HTTPS home page.
...
* gnu/packages/messaging.scm (ytalk)[home-page]: Use HTTPS.
2020-03-07 01:42:51 +01:00
Tobias Geerinckx-Rice
1d7be5938b
gnu: re2c: Use HTTPS home page.
...
* gnu/packages/re2c.scm (re2c)[home-page]: Use HTTPS.
2020-03-07 01:42:51 +01:00
Tobias Geerinckx-Rice
fc10386909
gnu: zimg: Update to 2.9.3.
...
* gnu/packages/image.scm (zimg): Update to 2.9.3.
2020-03-07 01:41:24 +01:00
Tobias Geerinckx-Rice
290fe81ddc
gnu: bluefish: Update to 2.2.11.
...
* gnu/packages/gnome.scm (bluefish): Update to 2.2.11.
[inputs]: Replace python-2 with python-wrapper.
2020-03-07 01:41:23 +01:00
Tobias Geerinckx-Rice
99aa7a2d6f
gnu: bluefish: Don't use NAME in source URI.
...
* gnu/packages/gnome.scm (bluefish)[source]: Hard-code NAME.
2020-03-07 01:41:23 +01:00
Tobias Geerinckx-Rice
eda580c079
gnu: rhythmbox: Update to 3.4.4.
...
* gnu/packages/gnome.scm (rhythmbox): Update to 3.4.4.
2020-03-07 01:41:23 +01:00
Tobias Geerinckx-Rice
2588693df1
gnu: rhythmbox: Don't use NAME in source URI.
...
* gnu/packages/gnome.scm (rhythmbox)[source]: Hard-code NAME.
2020-03-07 01:41:23 +01:00
Tobias Geerinckx-Rice
d748843312
gnu: knot: Update to 2.9.3.
...
* gnu/packages/dns.scm (knot): Update to 2.9.3.
2020-03-07 01:41:23 +01:00
Tobias Geerinckx-Rice
ed2d015d29
gnu: hplip: Update to 3.20.2.
...
* gnu/packages/cups.scm (hplip): Update to 3.20.2.
2020-03-07 01:41:23 +01:00
Tobias Geerinckx-Rice
64df1416c2
gnu: gkrellm: Update to 2.3.11.
...
* gnu/packages/gkrellm.scm (gkrellm): Update to 2.3.11.
2020-03-07 01:41:23 +01:00
Florian Pelz
895e6e8af6
doc: Fix build of German Cookbook translation.
...
This is a follow-up to f98e83a17f .
See <https://lists.gnu.org/archive/html/guix-devel/2020-03/msg00095.html >.
Reported there by Vagrant Cascadian <vagrant@debian.org >.
* po/doc/local.mk (DOC_COOKBOOK_PO_FILES): Use correct file name.
(doc-po-update-cookbook-%): Use correct PO file name.
2020-03-06 20:50:18 +00:00
Kei Kebreau
1d3c6a31b5
gnu: wxmaxima: Update to 20.02.4.
...
* gnu/packages/maths.scm (wxmaxima): Update to 20.02.4.
[arguments]: Enable tests and set #:test-target to "test".
[native-inputs]: Add xorg-server-for-tests.
2020-03-06 15:04:34 -05:00
Mark H Weaver
c2f41cb3e8
gnu: linux-libre: Update to 5.4.24.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.24.
(linux-libre-5.4-pristine-source): Update hash.
2020-03-06 14:20:30 -05:00
Mark H Weaver
5d01cc3673
gnu: linux-libre@4.19: Update to 4.19.108.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.108.
(linux-libre-4.19-pristine-source): Update hash.
2020-03-06 14:19:34 -05:00
Marius Bakke
a009a3eead
gnu: ungoogled-chromium: Increase max-silent-time.
...
* gnu/packages/chromium.scm (ungoogled-chromium)[properties]: Add
'max-silent-time'.
2020-03-06 18:42:36 +01:00
Marius Bakke
a125397a4b
gnu: mercurial: Update to 5.3.1.
...
* gnu/packages/version-control.scm (mercurial): Update to 5.3.1.
[native-inputs]: Add WHICH.
2020-03-06 18:42:36 +01:00
Vagrant Cascadian
87bf568022
Do not record store file name in cpp.scm.
...
* gnu/packages/cpp.scm (abseil-cpp): Replace full store file name with '...'
2020-03-06 08:24:45 -08:00
Tobias Geerinckx-Rice
1ab58a3d90
gnu: carla: Fix start-up.
...
This fixes <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=39942 >,
properly.
* gnu/packages/audio.scm (carla)[arguments]: Add ‘wrap-executables’ phase.
[inputs]: Add guile-2.2.
2020-03-06 16:29:16 +01:00
Tobias Geerinckx-Rice
366c2c8f48
gnu: fmt: Fix home page.
...
* gnu/packages/pretty-print.scm (fmt)[home-page]: Update.
2020-03-06 16:23:49 +01:00
Tobias Geerinckx-Rice
522ec708bc
gnu: Order module imports in (gnu packages audio).
...
* gnu/packages/audio.scm: Order module imports alphabetically.
2020-03-06 16:23:49 +01:00
Tobias Geerinckx-Rice
5424e680b8
gnu: carla: Partially fix start-up.
...
This fixes <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=39942 > but
carla still fails to start.
Reported by Nathan Dehnel <ncdehnel@gmail.com >.
* gnu/packages/audio.scm (carla)[arguments]: Add ‘make-carla-executable’ phase.
2020-03-06 15:02:33 +01:00
Tobias Geerinckx-Rice
462ca0bbb7
gnu: dovecot: Update to 2.3.10.
...
* gnu/packages/mail.scm (dovecot): Update to 2.3.10.
2020-03-06 13:01:29 +01:00
Pierre Neidhardt
59d4c8c2bf
gnu: Add gnome-boxes.
...
* gnu/packages/gnome.scm (gnome-boxes): New variable.
2020-03-06 12:46:26 +01:00
Pierre Neidhardt
852fa6050e
gnu: tracker-miners: Update to 2.3.2.
...
* gnu/packages/gnome.scm (tracker-miners): Update to 2.3.2.
2020-03-06 12:46:26 +01:00
Pierre Neidhardt
63db190a52
gnu: tracker: Update to 2.3.2.
...
* gnu/packages/gnome.scm (tracker): Update to 2.3.2.
[arguments]: Fix tests properly.
[native-inputs]: Remove unneeded native-inputs.
[inputs]: Remove unneeded inputs.
[description]: Replace unclear description with more down to earth use cases.
[license]: Replace lgpl2.0+ with bsd-3 to reflect update.
2020-03-06 12:46:26 +01:00
Pierre Neidhardt
a9838ee00a
gnu: libvirt-glib: Update to 3.0.0.
...
* gnu/packages/virtualization.scm (libvirt-glib): Update to 3.0.0.
2020-03-06 12:46:26 +01:00
Marius Bakke
7154f5ef4b
gnu: python-pygit2: Update to 1.1.0.
...
* gnu/packages/python-xyz.scm (python-pygit2): Update to 1.1.0.
[propagated-inputs]: Remove PYTHON-SIX and PYTHON-TOX. Add PYTHON-CACHED-PROPERTY.
(python2-pygit2): Remove variable (Python 2 is no longer supported).
2020-03-06 12:31:08 +01:00
Marius Bakke
5358950259
gnu: gitg: Remove redundant input.
...
* gnu/packages/gnome.scm (gitg)[inputs]: Remove LIBGIT2.
2020-03-06 12:31:07 +01:00
Marius Bakke
8c6aae4636
gnu: libgit2-glib: Adjust inputs.
...
* gnu/packages/gnome.scm (libgit2-glib)[native-inputs]: Move LIBSSH2 ...
[inputs]: ... here. Move LIBGIT2 ...
[propagated-inputs]: ... here. New field.
2020-03-06 12:31:07 +01:00
Marius Bakke
6448c2e156
gnu: libgit2-glib: Update to 0.99.0.1.
...
* gnu/packages/gnome.scm (libgit2-glib): Update to 0.99.0.1.
[native-inputs]: Remove INTLTOOL.
2020-03-06 12:31:07 +01:00
Ricardo Wurmus
dd386dd74f
gnu: r-modeltools: Update to 0.2-23.
...
* gnu/packages/statistics.scm (r-modeltools): Update to 0.2-23.
2020-03-06 12:15:51 +01:00
Ricardo Wurmus
87aa4d6245
gnu: r-ggplot2: Update to 3.3.0.
...
* gnu/packages/statistics.scm (r-ggplot2): Update to 3.3.0.
[propagated-inputs]: Remove r-lazyeval, r-reshape2, and r-viridislite; add
r-glue and r-isoband.
2020-03-06 12:15:51 +01:00
Ricardo Wurmus
bafedbc362
gnu: Add r-isoband.
...
* gnu/packages/cran.scm (r-isoband): New variable.
2020-03-06 12:15:51 +01:00
Ricardo Wurmus
858d5d7037
gnu: r-bookdown: Update to 0.18.
...
* gnu/packages/cran.scm (r-bookdown): Update to 0.18.
2020-03-06 12:15:51 +01:00
Ricardo Wurmus
099adcf81f
gnu: r-fs: Update to 1.3.2.
...
* gnu/packages/cran.scm (r-fs): Update to 1.3.2.
2020-03-06 12:15:51 +01:00
Ricardo Wurmus
36488596b4
gnu: r-flextable: Update to 0.5.9.
...
* gnu/packages/cran.scm (r-flextable): Update to 0.5.9.
2020-03-06 12:15:51 +01:00
Ricardo Wurmus
be01767cb9
gnu: r-lava: Update to 1.6.7.
...
* gnu/packages/cran.scm (r-lava): Update to 1.6.7.
2020-03-06 12:15:50 +01:00
Roel Janssen
83a483aac7
gnu: Update python-scikit-learn to 0.22.1.
...
* gnu/packages/machine-learning.scm (python-scikit-learn): Update to 0.22.1;
Add python-joblib to native-inputs to run the test suite.
2020-03-06 10:45:51 +01:00
Pierre Neidhardt
6d26ee3b67
gnu: Add soci.
...
* gnu/packages/databases.scm (soci): New variable.
2020-03-06 10:20:55 +01:00
Pierre Neidhardt
8be782c713
gnu: fmt: Update to 6.1.2.
...
* gnu/packages/pretty-print.scm (fmt): Update to 6.1.2.
2020-03-06 10:15:19 +01:00
Pierre Neidhardt
744f445c92
gnu: fmt: Use HTTPS and git-fetch.
...
* gnu/packages/pretty-print.scm (fmt)[source]: Use git-fetch.
[home-page]: Use HTTPS.
2020-03-06 10:15:19 +01:00
Ricardo Wurmus
fecd32501f
gnu: python-aiohttp: Update to 3.6.2.
...
* gnu/packages/python-web.scm (python-aiohttp): Update to 3.6.2.
2020-03-06 09:16:48 +01:00
Ricardo Wurmus
858e642e4c
gnu: python-scanpy: Update to 1.4.5.1.
...
* gnu/packages/bioinformatics.scm (python-scanpy): Update to 1.4.5.1.
[source]: Fetch from pypi.
[propagated-inputs]: Add python-legacy-api-wrap, python-packaging,
python-patsy, and python-umap-learn.
[native-inputs]: Add python-setuptools-scm.
2020-03-06 09:16:48 +01:00
Ricardo Wurmus
053ab825be
gnu: Add python-legacy-api-wrap.
...
* gnu/packages/python-xyz.scm (python-legacy-api-wrap): New variable.
2020-03-06 09:16:48 +01:00
Ricardo Wurmus
2ceff35f07
gnu: Add python-get-version.
...
* gnu/packages/python-xyz.scm (python-get-version): New variable.
2020-03-06 09:16:48 +01:00
Ricardo Wurmus
cc2c2850ce
gnu: Add python-pytest-black.
...
* gnu/packages/python-xyz.scm (python-pytest-black): New variable.
2020-03-06 09:16:48 +01:00
Ricardo Wurmus
5f603fab23
gnu: python-black: Update to 19.10b0.
...
* gnu/packages/python-xyz.scm (python-black): Update to 19.10b0.
[arguments]: Patch tests.
[propagated-inputs]: Add python-pathspec, python-regex, and python-typed-ast.
[native-inputs]: Add python-setuptools-scm.
2020-03-06 09:16:48 +01:00
Ricardo Wurmus
c777ecb372
gnu: Add python-pathspec.
...
* gnu/packages/python-xyz.scm (python-pathspec): New variable.
2020-03-06 09:16:48 +01:00
Ricardo Wurmus
538c1a024a
gnu: python-tables: Use later hdf5 version.
...
* gnu/packages/python-xyz.scm (python-tables)[inputs]: Replace hdf5 with
hdf5-1.10.
2020-03-06 09:16:47 +01:00
Ricardo Wurmus
70b74663b6
gnu: python-tables: Do not detect CPU features.
...
* gnu/packages/python-xyz.scm (python-tables)[arguments]: Add phase
"disable-tuning".
2020-03-06 09:16:47 +01:00
Pierre Neidhardt
1d24cc6de6
scripts: Show disk-space warning when under the min of the thresholds.
...
Follow-up to 71c3c3df92 which got the logic
wrong.
* guix/scripts.scm (warn-about-disk-space): Compare AVAILABLE to the min of
RELATIVE-THRESHOLD-IN-BYTES and ABSOLUTE-THRESHOLD-IN-BYTES, not the max.
2020-03-06 08:32:01 +01:00
Marius Bakke
b6f946f039
Merge branch 'master' into staging
2020-03-06 00:17:50 +01:00
Ludovic Courtès
bc8b2ffdac
ci: Adjust 'channel-build-system' for when the source is a file name.
...
Fixes an evaluation error introduced in
dd1ee160be : when invoked via
'build-aux/cuirass/gnu-system.scm', SOURCE is a store file name, not a
<local-file> as it is when invoked via 'etc/system-tests.scm'.
* gnu/ci.scm (channel-build-system)[build]: Call 'lower-object' only
when SOURCE is not a string.
2020-03-05 23:40:24 +01:00
Ludovic Courtès
530e31b824
hydra: Remove uses of _IOLBF.
...
_IOLBF & co. were deprecated in Guile 2.2 and removed in 3.0.
* build-aux/hydra/gnu-system.scm: Pass 'line instead of _IOLBF to 'setvbuf'.
* build-aux/hydra/guix-modular.scm: Likewise.
2020-03-05 23:40:24 +01:00
Mathieu Othacehe
e666a92344
tests: install: Add %test-gui-installed-os-encrypted.
...
* gnu/tests/install.scm (%test-gui-installed-os-encrypted): New variable,
(guided-installation-test): set a swap-device only if there is no encryption.
2020-03-05 23:40:24 +01:00
Mathieu Othacehe
64704be417
installer: Fix cow-store umount.
...
This fixes <https://bugs.gnu.org/39712 >.
The guix-daemon was preventing the cow-store umount, so restart it. Some
udevd workers, using cow-store files might also still be around, so have some
umount retries.
* gnu/installer/final.scm (kill-cow-users): New procedure,
(umount-cow-store): restart guix-daemon and kill all processes started from
within the cow-store before trying to umount the store overlay. Also try 5
times to umount the overlay in case it is still busy.
2020-03-05 23:40:24 +01:00
Ludovic Courtès
ccb1a8c437
tests: install: Add "gui-installed-os".
...
* gnu/installer/tests.scm: New file.
* gnu/local.mk (INSTALLER_MODULES): Add it.
* gnu/tests/install.scm (run-install): Add #:gui-test. Add (gnu
installer tests) to the marionette imported modules. Honor GUI-TEST.
Check whether SCRIPT is true.
(%root-password, %syslog-conf): New variable.
(operating-system-with-console-syslog, gui-test-program)
(guided-installation-test): New procedures.
(%extra-packages, installation-os-for-gui-tests)
(%test-gui-installed-os): New variable.
2020-03-05 23:40:23 +01:00
Ludovic Courtès
e458726ab4
installer: Honor /tmp/installer-system-init-options.
...
* gnu/installer/final.scm (install-system): Honor
"/tmp/installer-system-init-options".
2020-03-05 23:40:23 +01:00
Ludovic Courtès
8a4b11c6a9
installer: Run commands without hopping through the shell.
...
* gnu/installer/utils.scm (run-shell-command): Rename to...
(run-command): Remove call to 'call-with-temporary-output-file' and hop
through Bash. Expect COMMAND to be a list of strings rather than a
string.
* gnu/installer/final.scm (install-system): Turn INSTALL-COMMAND into a
list of strings and pass it to 'run-command'.
* gnu/installer/newt/page.scm (edit-file): Likewise.
2020-03-05 23:40:23 +01:00
Ludovic Courtès
f901f5d2bc
installer: Bypass connectivity check when /tmp/installer-assume-online exists.
...
This is useful for automated tests.
* gnu/installer/newt/network.scm (wait-service-online)[online?]: New
procedure. Check for /tmp/installer-assume-online.
Use it instead of 'connman-online?'.
2020-03-05 23:40:22 +01:00
Ludovic Courtès
63b8c089c1
installer: Implement a dialog on /var/guix/installer-socket.
...
This will allow us to automate testing of the installer.
* gnu/installer/utils.scm (%client-socket-file)
(current-server-socket, current-clients): New variables.
(open-server-socket, call-with-server-socket): New procedure.
(with-server-socket): New macro.
(run-shell-command): Add call to 'send-to-clients'. Select on both
current-input-port and current-clients.
* gnu/installer/steps.scm (run-installer-steps): Wrap 'call-with-prompt'
in 'with-socket-server'. Call 'sigaction' for SIGPIPE.
* gnu/installer/newt/page.scm (watch-clients!, close-port-and-reuse-fd)
(run-form-with-clients, send-to-clients): New procedures.
(draw-info-page): Add call to 'run-form-with-clients'.
(run-input-page): Likewise. Handle EXIT-REASON equal to 'exit-fd-ready.
(run-confirmation-page): Likewise.
(run-listbox-selection-page): Likewise. Define 'choice->item' and use it.
(run-checkbox-tree-page): Likewise.
(run-file-textbox-page): Add call to 'run-form-with-clients'. Handle
'exit-fd-ready'.
* gnu/installer/newt/partition.scm (run-disk-page): Pass
#:client-callback-procedure to 'run-listbox-selection-page'.
* gnu/installer/newt/user.scm (run-user-page): Call
'run-form-with-clients'. Handle 'exit-fd-ready'.
* gnu/installer/newt/welcome.scm (run-menu-page): Define
'choice->item' and use it. Call 'run-form-with-clients'.
* gnu/installer/newt/final.scm (run-install-success-page)
(run-install-failed-page): When (current-clients) is non-empty, call
'send-to-clients' without displaying a choice window.
2020-03-05 23:40:22 +01:00
Ludovic Courtès
5ce84b1713
installer: Use a Guile-Newt snapshot that supports 'form-watch-fd'.
...
* gnu/installer.scm (guile-newt): New variable.
2020-03-05 23:40:22 +01:00
Ludovic Courtès
91ba90c18b
tests: 'run-basic-test' can enter a root password.
...
* gnu/tests/base.scm (run-basic-test): Add #:root-password and honor it.
2020-03-05 23:40:22 +01:00
Björn Höfling
2c2b1ef854
gnu: java-openjfx-build: Add snippet.
...
* gnu/packages/java.scm (java-openjfx-build)[source]: Add snippet to remove
bundled gradle.
2020-03-05 22:10:17 +01:00
Ricardo Wurmus
a098b34980
gnu: python-anndata: Update to 0.7.1.
...
* gnu/packages/python-xyz.scm (python-anndata): Update to 0.7.1.
[arguments]: Move check phase after install phase; delete one test.
[propagated-inputs]: Add python-importlib-metadata, python-numcodecs,
python-packaging, and python-zarr.
[native-inputs]: Add python-joblib, python-pytest, and python-setuptools-scm.
2020-03-05 21:46:12 +01:00
Ricardo Wurmus
7032c1cc60
gnu: Add python-zarr.
...
* gnu/packages/python-xyz.scm (python-zarr): New variable.
2020-03-05 21:46:05 +01:00
Ricardo Wurmus
8e04b233f1
gnu: Add python-asciitree.
...
* gnu/packages/python-xyz.scm (python-asciitree): New variable.
2020-03-05 21:45:55 +01:00
Ricardo Wurmus
241409cd8a
gnu: Add python-numcodecs.
...
* gnu/packages/python-xyz.scm (python-numcodecs): New variable.
2020-03-05 21:45:46 +01:00
Ricardo Wurmus
24ce64216e
gnu: python-h5py: Update to 2.10.0.
...
* gnu/packages/python-xyz.scm (python-h5py): Update to 2.10.0.
[inputs]: Use hdf5-1.10.
[native-inputs]: Add pkg-config.
2020-03-05 21:45:14 +01:00
Masaya Tojo
5d0f33c2ab
gnu: Add emacs-ddskk.
...
* gnu/packages/emacs-xyz.scm (emacs-ddskk): New variable.
2020-03-05 19:22:42 +01:00
Nicolas Goaziou
67c525035f
gnu: libraqm: Parametrize version.
...
* gnu/packages/fontutils.scm (libraqm)[source]: Parametrize version.
2020-03-05 18:43:09 +01:00
Nicolas Goaziou
a1797f3244
gnu: Add libraqm.
...
* gnu/packages/fontutils.scm (libraqm): New variable.
2020-03-05 18:42:02 +01:00
Ludovic Courtès
5ec4156bbc
tests: Add a manifest for system tests.
...
The manifest can be passed to 'guix build -m', 'guix weather -m', and so
on. It can also be passed to an installed 'guix' (without
./pre-inst-env), with the exception so far of installation tests.
* build-aux/run-system-tests.scm: Remove. Move interesting bits move
to...
* etc/system-tests.scm: ... here. New file.
* Makefile.am (EXTRA_DIST): Remove 'build-aux/run-system-tests.scm' and
add 'etc/system-tests.scm'.
(check-system): Rewrite to run 'guix build -m etc/system-tests.scm'.
2020-03-05 16:33:38 +01:00
Ludovic Courtès
c0b726c211
tests: Add <system-test> gexp compiler.
...
* gnu/tests.scm (compile-system-test): New gexp compiler.
2020-03-05 16:33:37 +01:00
Ludovic Courtès
e7671685a8
weather: Parameterize '%graft?' upfront.
...
* guix/scripts/weather.scm (guix-weather): Parameterize %GRAFT? upfront.
2020-03-05 16:33:37 +01:00
Ludovic Courtès
f42f39ad68
guix build: Parameterize '%graft?' upfront.
...
* guix/scripts/build.scm (guix-build): Add 'graft?' variable and
parameterize %GRAFT?.
2020-03-05 16:33:37 +01:00
Ludovic Courtès
c5a3d8f646
tests: "make check-system" includes the current commit ID, if any.
...
* build-aux/run-system-tests.scm (source-commit): New procedure.
(tests-for-current-guix): Add 'commit' parameter and pass it to
'channel-source->package'.
(run-system-tests): Call 'source-commit' and pass the result to
'tests-for-current-guix'.
2020-03-05 16:33:37 +01:00
Ludovic Courtès
dd1ee160be
tests: "make check-system" no longer interns source upfront.
...
* gnu/ci.scm (channel-build-system)[build, lower]: Honor #:source.
(channel-source->package): New procedure.
(system-test-jobs): Remove 'instance' and call to
'checkout->channel-instance'. Use 'channel-source->package'.
* build-aux/run-system-tests.scm (tests-for-channel-instance): Rename to...
(tests-for-current-guix): ... this. Change 'instance' to 'source'.
(run-system-tests): Use 'local-file' instead of 'interned-file' for
SOURCE.
2020-03-05 16:33:37 +01:00
Ludovic Courtès
d37b5a1b58
weather: Allow non-package objects in manifest.
...
* guix/scripts/weather.scm (package-outputs)[lower-object/no-grafts]:
New procedure.
Use it instead of 'package->derivation'.
2020-03-05 16:33:37 +01:00
Ludovic Courtès
5a675b2c67
guix build: Allow non-package objects in manifest.
...
* guix/scripts/build.scm (options->things-to-build)[manifest->packages]:
Remove.
Inline map of 'manifest-entry-item'.
* tests/guix-build.sh: Add test for "guix build -m" with non-package object.
2020-03-05 16:33:37 +01:00
Ludovic Courtès
3046e73b4c
ci: Move 'cross-jobs' procedure to the top level.
...
* gnu/ci.scm (cross-jobs): New procedure. Moved from...
(hydra-jobs): ... here.
2020-03-05 16:33:37 +01:00
Pierre Neidhardt
94aab844c6
gnu: sbcl-cl-webkit: Update to 20200227.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-webkit): Update to 20200227.
2020-03-05 15:57:18 +01:00
Arun Isaac
69bb61f128
gnu: Add guile-xapian.
...
* gnu/packages/guile-xyz.scm (guile-xapian, guile3.0-xapian): New variables.
2020-03-05 19:59:46 +05:30
Arun Isaac
85c3a49a67
gnu: emacs-tldr: Update to 0-1.7203d1b.
...
* gnu/packages/emacs-xyz.scm (emacs-tldr): Update to 0-1.7203d1b.
[propagated-inputs]: Add emacs-request.
2020-03-05 15:56:32 +05:30
Björn Höfling
6656123d26
gnu: coq-mathcomp: Update home page URI.
...
* gnu/packages/coq.scm (coq-mathcomp)[home-page]: Update URI.
2020-03-05 10:11:34 +01:00
Björn Höfling
c5bb55a844
gnu: squashfs-tools: Update home page URI.
...
* gnu/packages/compression.scm (squashfs-tools)[home-page]: Update URI.
2020-03-05 10:11:34 +01:00
Björn Höfling
1ac624cd5b
gnu: pbzip2: Use archived home-page.
...
* gnu/packages/compression.scm (pbzip2)[home-page]: Load from archive.org
2020-03-05 10:11:33 +01:00
Björn Höfling
7f489c5655
gnu: domainfinder: Update home page URI.
...
* gnu/packages/chemistry.scm (domainfinder)[home-page]: Update URI.
2020-03-05 10:11:33 +01:00
Björn Höfling
357328d2a9
gnu: nmoldyn: Upate home page URI.
...
* gnu/packages/chemistry.scm (nmoldyn)[home-page]: Update URI.
2020-03-05 10:11:32 +01:00
Felix Gruber
aac148a87b
gnu: SuiteSparse: Update to 5.7.1.
...
* gnu/packages/maths.scm (suitesparse): Update to 5.7.1.
[source]: The latest releases of SuiteSparse have only been published on GitHub.
Fetch from git tag as GitHub releases page only contains autogenerated tarballs
that guix lint complains about. Apply new patch for Mongoose's CMakeList.txt to
find SuiteSparse_config.
[arguments]: Add CMake flags used by new components GraphBLAS and Mongoose.
[native-inputs]: Add CMake and m4 needed to build GraphBLAS and Mongoose.
* gnu/packages/patches/suitesparse-mongoose-cmake.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-04 18:08:13 -05:00
Marius Bakke
c2d7e800e6
gnu: ceph: Update to 14.2.8.
...
* gnu/packages/patches/ceph-boost-compat.patch,
gnu/packages/patches/ceph-volume-respect-PATH.patch: Delete files.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/storage.scm (ceph): Update to 14.2.8.
[source](patches): Remove obsolete.
2020-03-04 22:06:24 +01:00
Marius Bakke
d3c1e9272d
gnu: i3-wm: Update to 4.18.
...
* gnu/packages/wm.scm (i3-wm): Update to 4.18.
2020-03-04 22:06:23 +01:00
Marius Bakke
75545401cd
gnu: kodi: Update to 18.6.
...
* gnu/packages/kodi.scm (kodi): Update to 18.6.
2020-03-04 22:06:23 +01:00
Marius Bakke
0a7aa6922b
gnu: libgit2: Update to 0.99.0.
...
* gnu/packages/patches/libgit2-avoid-python.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/version-control.scm (libgit2): Update to 0.99.0.
[source](patches): Remove 'libgit2-avoid-python.patch'.
[source](snippet): Preserve bundled copy of http-parser.
[arguments]: Remove "-DUSE_SHA1DC" from #:configure-flags, which is no longer
optional and enabled by default. Add "-DUSE_NTLMCLIENT=OFF" and
"-DREGEX_BACKEND=pcre2". Add phase 'fix-pcre2-reference'.
[inputs]: Remove HTTP-PARSER.
[propagated-inputs]: Add PCRE2.
[native-inputs]: Remove GUILE-2.2. Add PYTHON.
2020-03-04 22:06:23 +01:00
Marius Bakke
2f894cbc6a
gnu: enchant: Update to 2.2.8.
...
* gnu/packages/enchant.scm (enchant): Update to 2.2.8.
2020-03-04 22:06:23 +01:00
Marius Bakke
3f03643219
gnu: wpebackend-fdo: Update to 1.4.2.
...
* gnu/packages/webkit.scm (wpebackend-fdo): Update to 1.4.2.
2020-03-04 22:06:23 +01:00
Marius Bakke
e26c4a7e4e
gnu: re2: Update to 2020-03-03.
...
* gnu/packages/regex.scm (re2): Update to 2020-03-03.
2020-03-04 22:06:23 +01:00
Marius Bakke
bd65a4cf01
gnu: ibus: Update to 1.5.22.
...
* gnu/packages/ibus.scm (ibus): Update to 1.5.22.
2020-03-04 22:06:22 +01:00
Marius Bakke
16af0dd907
gnu: libsoup: Update to 2.68.4.
...
* gnu/packages/gnome.scm (libsoup): Update to 2.68.4.
2020-03-04 22:06:22 +01:00
Marius Bakke
c1a86b666f
gnu: appstream-glib: Update to 0.7.17.
...
* gnu/packages/patches/appstream-glib-2020.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/glib.scm (appstream-glib): Update to 0.7.17.
[source](patches): Remove.
2020-03-04 22:06:22 +01:00
Efraim Flashner
60ce496ad8
gnu: gcc-8: Update to 8.4.0.
...
* gnu/packages/gcc.scm (gcc-8): Update to 8.4.0.
2020-03-04 23:05:22 +02:00
Efraim Flashner
9cedae2aaf
gnu: libgee: Update to 0.20.3.
...
* gnu/packages/gnome.scm (libgee): Update to 0.20.3.
2020-03-04 23:05:22 +02:00
Tobias Geerinckx-Rice
5ba94aa702
gnu: ardour: Use HTTPS home page.
...
* gnu/packages/audio.scm (ardour)[home-page]: Use HTTPS.
2020-03-04 21:37:07 +01:00
Tobias Geerinckx-Rice
e85af13724
gnu: Update pypi.python.org home pages & use HTTPS.
...
* gnu/packages/check.scm (python-unittest2, python-pytest-localserver)
(python-discover)[home-page]: Follow (HTTPS) redirections.
* gnu/packages/fontutils.scm (python2-defcon)[home-page]: Likewise.
* gnu/packages/glib.scm (python2-pygobject-2)[home-page]: Likewise.
* gnu/packages/graph.scm (python-igraph)[home-page]: Likewise.
* gnu/packages/graphviz.scm (xdot)[home-page]: Likewise.
* gnu/packages/pdf.scm (python-poppler-qt5)[home-page]: Likewise.
* gnu/packages/python-web.scm (python-zope-event, python-zope-testing)
(python-zope-testrunner, python-zope-i18nmessageid, python-zope-schema)
(python-zope-configuration, python-zope-proxy, python-zope-location)
(python-zope-security))[home-page]: Likewise.
* gnu/packages/python-xyz.scm (python-setuptools,python-six)
(python2-dogtail, python2-enum, python-enum34, python-unidecode)
(python-numpydoc, python-decorator, python-drmaa, python-pathlib2)
(python-ly, python-msgpack, python-termcolor, python-colorama)
(python-pluggy, python2-pathlib2, python-rfc3987)[home-page]: Likewise.
2020-03-04 21:30:57 +01:00
Tobias Geerinckx-Rice
dbc8a6e750
gnu: python-pyodbc: Update to 4.0.30.
...
* gnu/packages/databases.scm (python-pyodbc): Update to 4.0.30.
2020-03-04 20:59:53 +01:00
Tobias Geerinckx-Rice
e884c20533
gnu: crispy-doom: Update to 5.7.1.
...
* gnu/packages/games.scm (crispy-doom): Update to 5.7.1.
2020-03-04 20:59:53 +01:00
Tobias Geerinckx-Rice
95858abb62
gnu: sg3-utils: Update to 1.45.
...
* gnu/packages/scsi.scm (sg3-utils): Update to 1.45.
2020-03-04 20:59:52 +01:00
Tobias Geerinckx-Rice
8863477245
gnu: girara: Update to 0.3.4.
...
* gnu/packages/gtk.scm (girara): Update to 0.3.4.
2020-03-04 20:59:52 +01:00
Tobias Geerinckx-Rice
13d872234b
gnu: zathura-pdf-poppler: Update to 0.3.0.
...
* gnu/packages/pdf.scm (zathura-pdf-poppler): Update to 0.3.0.
2020-03-04 20:59:52 +01:00
Tobias Geerinckx-Rice
01ebd8617f
gnu: zathura: Update to 0.4.5.
...
* gnu/packages/pdf.scm (zathura): Update to 0.4.5.
2020-03-04 20:59:52 +01:00
Tobias Geerinckx-Rice
c0ba02379e
gnu: weasyprint: Update to 51.
...
* gnu/packages/pdf.scm (weasyprint): Update to 51.
2020-03-04 20:59:52 +01:00
Tobias Geerinckx-Rice
8b5185c6a6
gnu: zathura-djvu: Update to 0.2.9.
...
* gnu/packages/pdf.scm (zathura-djvu): Update to 0.2.9.
2020-03-04 20:59:52 +01:00
Tobias Geerinckx-Rice
8f55136a6a
gnu: meld: Update to 3.20.2.
...
* gnu/packages/patchutils.scm (meld): Update to 3.20.2.
2020-03-04 20:59:52 +01:00
Tobias Geerinckx-Rice
b5544cb4d4
gnu: python-invoke: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-invoke)[home-page]: Use HTTPS.
2020-03-04 20:59:52 +01:00
Tobias Geerinckx-Rice
b07e73a2bc
gnu: python-zope-exceptions: Update home page.
...
* gnu/packages/python-web.scm (python-zope-exceptions)[home-page]:
Follow (HTTPS) redirection.
2020-03-04 20:59:52 +01:00
Tobias Geerinckx-Rice
58d4e9498f
gnu: python-pbr: Update home page.
...
* gnu/packages/python-xyz.scm (python-pbr)[home-page]: Follow (HTTPS)
redirection.
2020-03-04 20:59:52 +01:00
Tobias Geerinckx-Rice
7509f34fab
gnu: python-pyyaml: Update home page.
...
* gnu/packages/python-xyz.scm (python-pyyaml)[home-page]: Link to
the (HTTPS) front page.
2020-03-04 20:59:52 +01:00
Tobias Geerinckx-Rice
16c896e888
gnu: python-pytest-django: Use HTTPS home page.
...
* gnu/packages/django.scm (python-pytest-django)[home-page]: Use HTTPS.
2020-03-04 20:59:52 +01:00
Lars-Dominik Braun
c8abbe1468
import: pypi: Add more licenses
...
* guix/import/pypi.scm (string->license): Add the BSD 2-clause and MPL 2.0
licenses, and add more strings for BSD 3-clause and Expat license.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-03-04 14:56:38 -05:00
Efraim Flashner
39d93ce2be
gnu: ddrescue: Update to 1.25.
...
* gnu/packages/disk.scm (ddrescue): Update to 1.25.
2020-03-04 21:48:30 +02:00
Ricardo Wurmus
6f6c73773d
gnu: r-plyr: Update to 1.8.6.
...
* gnu/packages/statistics.scm (r-plyr): Update to 1.8.6.
2020-03-04 20:19:27 +01:00
Ricardo Wurmus
555f227398
gnu: r-nlme: Update to 3.1-145.
...
* gnu/packages/statistics.scm (r-nlme): Update to 3.1-145.
2020-03-04 20:19:27 +01:00
Ricardo Wurmus
d797d24fe2
gnu: r-foreign: Update to 0.8-76.
...
* gnu/packages/statistics.scm (r-foreign): Update to 0.8-76.
2020-03-04 20:19:27 +01:00
Ricardo Wurmus
d7d8af8bdc
gnu: r-erm: Update to 1.0-1.
...
* gnu/packages/cran.scm (r-erm): Update to 1.0-1.
[propagated-inputs]: Add r-colorspace and r-psych.
2020-03-04 20:19:27 +01:00
Ricardo Wurmus
3afdf6e440
gnu: r-spacyr: Update to 1.2.1.
...
* gnu/packages/cran.scm (r-spacyr): Update to 1.2.1.
2020-03-04 20:19:27 +01:00
Ricardo Wurmus
f4c105d44e
gnu: r-compositions: Update to 1.40-4.
...
* gnu/packages/cran.scm (r-compositions): Update to 1.40-4.
2020-03-04 20:19:27 +01:00
Ricardo Wurmus
8e19a9a031
gnu: r-emmeans: Update to 1.4.5.
...
* gnu/packages/cran.scm (r-emmeans): Update to 1.4.5.
2020-03-04 20:19:27 +01:00
Ricardo Wurmus
6f501b7e84
gnu: r-ggformula: Update to 0.9.4.
...
* gnu/packages/cran.scm (r-ggformula): Update to 0.9.4.
[propagated-inputs]: Remove r-tidyr.
2020-03-04 20:19:26 +01:00
Guillaume Le Vaillant
74c65c9d68
gnu: Add gpsd.
...
* gnu/packages/gps.scm (gpsd): New variable.
2020-03-04 18:27:22 +01:00
Roel Janssen
33aa372eec
gnu: Add abseil-cpp.
...
* gnu/packages/cpp.scm (abseil-cpp): New variable.
Signed-off-by: Pierre Neidhardt <mail@ambrevar.xyz >
2020-03-04 15:04:12 +01:00
Nicolas Goaziou
f19d0b1b3f
gnu: emacs-amx: Update to 3.3.
...
* gnu/packages/emacs-xyz.scm (emacs-amx): Update to 3.3.
[synopsis]: Improve wording.
2020-03-04 14:37:03 +01:00
Marius Bakke
e32aea5472
Merge branch 'master' into staging
2020-03-04 12:04:42 +01:00
Marius Bakke
d46f9f833b
gnu: ungoogled-chromium: Update to 80.0.3987.132-0.7e68f18 [fixes CVE-2020-6420].
...
* gnu/packages/chromium.scm (%chromium-version): Set to 80.0.3987.132.
(%ungoogled-revision): Set to 7e68f18f1d16a132fe7d913a176daf79897eaa58.
(%chromium-origin): Update hash.
(%ungoogled-origin): Change back to canonical upstream. Update hash.
2020-03-04 11:20:41 +01:00
Efraim Flashner
12fe38a1d6
gnu: vim-guix-vim: Use copy-build-system.
...
* gnu/packages/vim.scm (vim-guix-vim)[build-system]: Switch to
copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 12:04:52 +02:00
Efraim Flashner
94d53fbb07
gnu: editorconfig-vim: Use copy-build-system.
...
* gnu/packages/vim.scm (editorconfig-vim)[build-system]: Switch to
copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 12:00:09 +02:00
Efraim Flashner
8e38ed1f04
gnu: vim-syntastic: Use copy-build-system.
...
* gnu/packages/vim.scm (vim-syntastic)[build-system]: Switch to
copy-build-system.
[arguments]: Adjust accordingly.
(neovim-syntastic): Same.
2020-03-04 11:56:02 +02:00
Efraim Flashner
e114aa2060
gnu: vim-airline-themes: Use copy-build-system.
...
* gnu/packages/vim.scm (vim-airline-themes)[build-system]: Switch to
copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 11:50:33 +02:00
Efraim Flashner
8423c6f3b2
gnu: vim-airline: Use copy-build-system.
...
* gnu/packages/vim.scm (vim-airline)[build-system]: Switch to
copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 11:48:07 +02:00
Efraim Flashner
b274d2a6cb
gnu: vim-fugitive: Use copy-build-system.
...
* gnu/packages/vim.scm (vim-fugitive)[build-system]: Switch to
copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 11:43:38 +02:00
Efraim Flashner
0b350f73fe
gnu: vim-context-filetype: Use copy-build-system.
...
* gnu/packages/vim.scm (vim-context-filetype)[build-system]: Switch to
copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 11:41:11 +02:00
Efraim Flashner
84ec7b7009
gnu: vim-luna: Use copy-build-system.
...
* gnu/packages/vim.scm (vim-luna)[build-system]: Switch to
copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 11:39:05 +02:00
Efraim Flashner
0db06e7da9
gnu: vim-scheme: Use copy-build-system.
...
* gnu/packages/vim.scm (vim-scheme)[build-system]: Switch to
copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 11:36:24 +02:00
Efraim Flashner
f19e539c3e
gnu: vim-neosnippet: Use copy-build-system.
...
* gnu/packages/vim.scm (vim-neosnippet)[build-system]: Switch to
copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 11:10:11 +02:00
Efraim Flashner
90d64d9ca9
gnu: vim-neosnippet-snippets: Use copy-build-system.
...
* gnu/packages/vim.scm (vim-neosnippet-snippets)[build-system]: Switch
to copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 11:00:13 +02:00
Efraim Flashner
72194753d9
gnu: vim-neocomplete: Use copy-build-system.
...
* gnu/packages/vim.scm (vim-neocomplete)[build-system]: Switch to
copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 10:56:47 +02:00
Efraim Flashner
4beac3a898
gnu: unicode-cldr-common: Use copy-build-system.
...
* gnu/packages/unicode.scm (unicode-cldr-common)[build-system]: Switch
to copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 10:52:53 +02:00
Efraim Flashner
a18ed1711f
gnu: ucd: Use copy-build-system.
...
* gnu/packages/unicode.scm (ucd)[build-system]: Switch to
copy-build-system.
[arguments]: Adjust accordingly.
2020-03-04 10:52:52 +02:00
Efraim Flashner
790b66e34f
gnu: zziplib: Fix CVE-2018-16548.
...
* gnu/packages/compression.scm (zziplib)[replacement]: New field.
(zziplib/fixed): New private variable.
* gnu/packages/patches/zziplib-CVE-2018-16548.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
2020-03-04 10:52:52 +02:00
Roel Janssen
cc51c03ff8
gnu: Add fntsample.
...
* gnu/packages/fontutils.scm (fntsample): New variable.
2020-03-04 09:05:43 +01:00
Roel Janssen
5e860b6062
gnu: Add perl-pdf-api2.
...
* gnu/packages/perl.scm (perl-pdf-api2): New variable.
2020-03-04 09:05:39 +01:00
Julien Lepiller
4b759d3c54
gnu: josm: Update to 15937.
...
* gnu/packages/geo.scm (josm): Update to 15937.
2020-03-04 03:07:56 +01:00
Julien Lepiller
8c8c0c63ec
gnu: java-jmapviewer: Update ot 2.13.
...
* gnu/packages/geo.scm (java-jmapviewer): Update to 2.13.
2020-03-04 03:07:52 +01:00
Julien Lepiller
83c4c5027b
gnu: java-jsonp-api: Update to 1.1.6.
...
* gnu/packages/java.scm (java-jsonp-api, java-jsonp-impl): Update to
1.1.6.
2020-03-04 03:07:23 +01:00
Nicolas Goaziou
be54abc61d
gnu: wine-staging: Update to 5.3.
...
* gnu/packages/wine.scm (wine-staging-patchset-data): Update to 5.3.
(wine-staging): Update hash.
2020-03-03 19:23:17 +01:00
Nicolas Goaziou
3b11122f39
gnu: emacs-solarized-theme: Update to 1.3.1.
...
* gnu/packages/emacs-xyz.scm (emacs-solarized-theme): Update to 1.3.1.
2020-03-03 19:20:17 +01:00
Nicolas Goaziou
53b48447a7
gnu: wine: Fix typo.
...
* gnu/packages/wine.scm (wine): Fix typo.
This is a followup to d8104034bc .
2020-03-03 17:33:28 +01:00
Nicolas Goaziou
d8104034bc
gnu: wine: Update to 5.3.
...
* gnu/packages/wine.scm (wine): Update to 5.3.
[native-inputs]: Re-order inputs alphabetically.
2020-03-03 17:26:37 +01:00
Vincent Legoll
c06c7a3aec
gnu: linux: Add lsscsi.
...
* gnu/packages/linux.scm (lsscsi): New variable.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-03-03 17:22:18 +01:00
Ricardo Wurmus
7dffb5bace
gnu: git: Remove Python 2 from the package closure.
...
* gnu/packages/version-control.scm (git)[native-inputs]: Replace asciidoc with
asciidoc-py3.
2020-03-03 15:18:30 +01:00
Ricardo Wurmus
7138257892
gnu: git: Build with Python 3.
...
* gnu/packages/version-control.scm (git)[inputs]: Replace python-2 with
python.
[arguments]: Replace /usr/bin/python with python3.
2020-03-03 15:18:30 +01:00
Mathieu Othacehe
8f5a0a97b1
services: herd: Add restart-service.
...
* gnu/services/herd.scm (restart-service): New exported procedure.
2020-03-03 15:00:32 +01:00
Paul Garlick
1e8fef19b6
gnu: emacs-auctex: Compile Reference Card.
...
* gnu/packages/emacs-xyz.scm (emacs-auctex)[arguments]: Add
'install-doc' phase.
[inputs]: New field.
2020-03-03 13:44:58 +00:00
Chris Marusich
dedbdacf27
gnu: Add kexec-tools.
...
* gnu/packages/linux.scm (kexec-tools): New variable.
Co-authored-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-03-03 05:06:06 -08:00
Pierre Neidhardt
dadd5cba2e
gnu: sbcl: Update to 2.0.2.
...
* gnu/packages/lisp.scm (sbcl): Update to 2.0.2.
2020-03-03 13:31:29 +01:00
Lars-Dominik Braun
8c8eb07985
gnu: erlang: Update to 21.3.8.13
...
* gnu/packages/erlang.scm (erlang): Update to 21.3.8.13
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-03-03 14:08:25 +02:00
Ricardo Wurmus
013a0bc05f
gnu: Add asciidoc-py3.
...
* gnu/packages/documentation.scm (asciidoc-py3): New variable.
2020-03-03 12:52:46 +01:00
Ricardo Wurmus
f27de2f909
gnu: r-servr: Update to 0.16.
...
* gnu/packages/cran.scm (r-servr): Update to 0.16.
2020-03-03 12:15:21 +01:00
Ricardo Wurmus
4d5d07f75c
gnu: gess: Use WRAP-SCRIPT.
...
* gnu/packages/bioinformatics.scm (gess)[arguments]: Use WRAP-SCRIPT.
[inputs]: Add guile-3.0 for wrapper.
2020-03-03 11:33:58 +01:00
Ricardo Wurmus
9309fe355e
gnu: gess: Override PYTHONPATH.
...
* gnu/packages/bioinformatics.scm (gess)[arguments]: Override PYTHONPATH
instead of augmenting it.
2020-03-03 11:33:58 +01:00
Oskar Köök
197582da6a
gnu: elixir: Update to 1.10.2.
...
* gnu/packages/elixir.scm (elixir): Update to 1.10.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-03-03 11:43:34 +02:00
Evan Hanson
be0c3ac772
gnu: chicken: Update to 5.2.0.
...
* gnu/packages/chicken.scm (chicken): Update to 5.2.0.
[home-page]: Use https.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-03-03 11:43:05 +02:00
Pierre Neidhardt
cfe1000bc6
gnu: Add emacs-csv.
...
* gnu/packages/emacs-xyz.scm (emacs-csv): New variable.
2020-03-03 10:35:58 +01:00
Pierre Neidhardt
adb1e3b6cf
gnu: dxvk: Update to 1.5.5.
...
* gnu/packages/wine.scm (dxvk): Update to 1.5.5.
2020-03-03 10:27:16 +01:00
Pierre Neidhardt
3842baa077
gnu: dxvk: Return #t in install-32 phase.
...
* gnu/packages/wine.scm (dxvk)[arguments]: Return #t in install-32 phase.
2020-03-03 10:27:16 +01:00
Nicolas Goaziou
72fdf85fad
gnu: Add emacs-spacemacs-theme.
...
* gnu/packages/emacs-xyz.scm (emacs-spacemacs-theme): New variable.
2020-03-03 09:57:36 +01:00
Christopher Baines
2197c08428
gnu: python-django: Update to 1.11.28.
...
* gnu/packages/django.scm (python-django): Update to 1.11.28.
2020-03-03 08:11:35 +00:00
Efraim Flashner
35b256f55f
gnu: librsvg: Fix typo.
...
This is a follow-up to 23f33de151 .
* gnu/packages/gnome.scm (librsvg)[replacement]: Refer to package, not
to a string.
2020-03-03 09:27:08 +02:00
Efraim Flashner
23f33de151
gnu: librsvg: Fix CVE-2019-20446.
...
* gnu/packages/gnome.scm (librsvg)[replacement]: New field.
(librsvg/fixed): New private variable.
2020-03-03 09:21:17 +02:00
Efraim Flashner
3276e12392
gnu: librsvg-next: Fix version string.
...
This is a follow-up to 8d6f9168cc .
* gnu/packages/gnome.scm (librsvg-next)[version]: Update to 2.46.4.
2020-03-03 09:06:43 +02:00
Efraim Flashner
8d6f9168cc
gnu: librsvg-2.46: Update to 2.46.4.
...
* gnu/packages/gnome.scm (librsvg-2.46): Update to 2.46.4.
[source]: Replace more crates.
2020-03-03 08:52:17 +02:00
Efraim Flashner
3181eb4491
gnu: Add rust-locale-config-0.3.
...
* gnu/packages/crates-io.scm (rust-locale-config-0.3): New variable.
2020-03-03 08:52:10 +02:00
Efraim Flashner
4b47476b91
gnu: Add rust-gio-sys-0.9.
...
* gnu/packages/crates-io.scm (rust-gio-sys-0.9): New variable.
2020-03-03 08:51:53 +02:00
Efraim Flashner
e87b3bdaa7
gnu: Add rust-gobject-sys-0.9.
...
* gnu/packages/crates-io.scm (rust-gobject-sys-0.9): New variable.
2020-03-03 08:51:53 +02:00
Efraim Flashner
92c6315afb
gnu: Add rust-glib-sys-0.9.
...
* gnu/packages/crates-io.scm (rust-glib-sys-0.9): New variable.
2020-03-03 08:51:52 +02:00
Efraim Flashner
659ece59ff
gnu: Add rust-shell-words-0.1.
...
* gnu/packages/crates-io.scm (rust-shell-words-0.1): New variable.
2020-03-03 08:51:52 +02:00
Leo Famulari
19781930b7
gnu: wireguard-tools: Explain why we skip the test suite.
...
* gnu/packages/vpn.scm (wireguard-tools): Add comment.
2020-03-03 00:37:46 -05:00
Leo Famulari
c1005113a3
gnu: WireGuard: Simplify package definitions.
...
* gnu/packages/vpn.scm (wireguard-tools, wireguard)[arguments]: Set --directory
in #:make-flags and remove the 'chdir', 'enter-source-directory' and 'reset-cwd'
phases.
2020-03-03 00:37:41 -05:00
Maxim Cournoyer
85a7466e22
build: file-systems: Do not warn about file system check for NFS.
...
* gnu/build/file-systems.scm (check-file-system): Define a dummy checker
procedure for NFS that always passes to prevent a warning from being emitted.
2020-03-02 23:59:45 -05:00
Maxim Cournoyer
99e676db43
file-systems: Add a 'file-system-device->string' procedure.
...
* gnu/system/file-systems.scm (file-system-device->string): New procedure.
* gnu/system.scm (bootable-kernel-arguments): Use it.
* gnu/system/vm.scm (operating-system-uuid): Likewise.
* guix/scripts/system.scm (display-system-generation): Likewise.
2020-03-02 23:24:47 -05:00
Maxim Cournoyer
cc9b889e8f
linux-boot: Ensure volatile root is mounted read-only.
...
* gnu/build/linux-boot.scm (mount-root-file-system): Ensure MS_RDONLY is
present among the root file system flags when VOLATILE-ROOT? is #t.
2020-03-02 23:24:47 -05:00
Tobias Geerinckx-Rice
754c12041d
gnu: mu: Use HTTPS home page.
...
* gnu/packages/mail.scm (mu)[home-page]: Use HTTPS.
2020-03-03 05:06:48 +01:00
Tobias Geerinckx-Rice
9f733172cb
gnu: yadifa: Use HTTPS home page.
...
* gnu/packages/dns.scm (yadifa)[home-page]: Use HTTPS.
2020-03-03 05:06:48 +01:00
Tobias Geerinckx-Rice
1084e86b59
gnu: python2-py2neo: Use HTTPS home page.
...
* gnu/packages/databases.scm (python2-py2neo)[home-page]: Use HTTPS.
2020-03-03 05:06:48 +01:00
Tobias Geerinckx-Rice
a0fdade220
gnu: python-contextlib2: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-contextlib2)[home-page]: Use HTTPS.
2020-03-03 05:06:48 +01:00
Tobias Geerinckx-Rice
02510c6c9a
gnu: python-flask-principal: Update home page.
...
* gnu/packages/python-web.scm (python-flask-principal)[home-page]:
Follow (HTTPS) redirection.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
fd3ae040cf
gnu: python-gipc: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-gipc)[home-page]: Use HTTPS.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
d3d73bd650
gnu: python-seaborn: Update & use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-seaborn)[home-page]: Follow
redirection, but use HTTPS.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
5d6e7106e1
gnu: python-vobject: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-vobject)[home-page]: Use HTTPS.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
26827dfe36
gnu: python-activepapers: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-activepapers)[home-page]:
Use HTTPS.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
f894ffd867
gnu: tome4: Update to 1.6.7.
...
* gnu/packages/games.scm (tome4): Update to 1.6.7.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
bcea20cc90
gnu: shotwell: Update to 0.30.8.
...
* gnu/packages/gnome.scm (shotwell): Update to 0.30.8.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
5decb16015
gnu: gmime: Update to 3.2.6.
...
* gnu/packages/mail.scm (gmime): Update to 3.2.6.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
363fe78af1
gnu: liblo: Update to 0.31.
...
* gnu/packages/audio.scm (liblo): Update to 0.31.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
46b39ce835
gnu: fish: Don't use NAME in source URI.
...
* gnu/packages/shells.scm (fish)[source]: Hard-code NAME.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
848be51c88
gnu: gptfdisk: Update to 1.0.5.
...
* gnu/packages/disk.scm (gptfdisk): Update to 1.0.5.
[source]: Hard-code NAME.
[arguments]: Add ‘fix-include-directory’ phase.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
0e08ca1454
gnu: amtk: Update to 5.0.2.
...
* gnu/packages/gnome.scm (amtk): Update to 5.0.2.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
e82cf6c687
gnu: notmuch: Extend test time-out.
...
* gnu/packages/mail.scm (notmuch)[arguments]:
Add NOTMUCH_TEST_TIMEOUT=1h make flag.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
5815531202
gnu: oil-shell: Update to 0.7.0.
...
* gnu/packages/shells.scm (oil-shell): Update to 0.7.0.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
efebdf3a66
gnu: serd: Update to 0.30.2.
...
* gnu/packages/rdf.scm (serd): Update to 0.30.2.
2020-03-03 05:06:47 +01:00
Tobias Geerinckx-Rice
78fca23163
gnu: python-pyudev: Update to 0.22.0.
...
* gnu/packages/admin.scm (python-pyudev): Update to 0.22.0.
2020-03-03 05:05:47 +01:00
Leo Famulari
6ce0865500
gnu: Go: Update to 1.13.8.
...
* gnu/packages/golang.scm (go-1.13): Update to 1.13.8.
2020-03-02 19:30:26 -05:00
Marius Bakke
fb98351621
Merge branch 'master' into staging
2020-03-02 23:49:10 +01:00
Marius Bakke
15a6805751
gnu: Add system test for CUPS.
...
* gnu/tests/cups.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
2020-03-02 23:39:44 +01:00
Marius Bakke
1f8838d1f6
gnu: libgc: Fix replacement inheritance.
...
* gnu/packages/bdw-gc.scm (libgc-8.0): Do not use PACKAGE/INHERIT, because it
does not make sense to inherit any replacements of LIBGC.
(libgc/back-pointers): Use PACKAGE/INHERIT.
2020-03-02 23:39:44 +01:00
Ricardo Wurmus
1e07875b57
gnu: Add r-zseq.
...
* gnu/packages/cran.scm (r-zseq): New variable.
2020-03-02 23:05:49 +01:00
Ricardo Wurmus
02366a12d0
gnu: Add r-ztype.
...
* gnu/packages/cran.scm (r-ztype): New variable.
2020-03-02 23:05:49 +01:00
Ricardo Wurmus
11ab52888d
gnu: Add r-zvcv.
...
* gnu/packages/cran.scm (r-zvcv): New variable.
2020-03-02 23:05:49 +01:00
Ricardo Wurmus
505d6716d0
gnu: Add r-zyp.
...
* gnu/packages/cran.scm (r-zyp): New variable.
2020-03-02 23:05:49 +01:00
Ricardo Wurmus
7316f137dc
gnu: Add r-kendall.
...
* gnu/packages/cran.scm (r-kendall): New variable.
2020-03-02 23:05:49 +01:00
Maxim Cournoyer
1639e0b7b6
gnu: python-smmap: Update to version 3.0.1, deprecate python-smmap2.
...
* gnu/packages/python-xyz.scm (python-smmap): Rename from python-smmap2, and
update to version 3.0.1.
(python-smmap2, python2-smmap2): Preserve original bindings, marked as
deprecated.
* gnu/packages/version-control.scm (python-gitdb)[propagated-inputs]: Depend
on the new python-smmap package.
2020-03-02 17:03:03 -05:00
Maxim Cournoyer
166dbbb012
gnu: python-gitpython: Update to 3.1.0.
...
* gnu/packages/version-control.scm (python-gitpython): Update to 3.1.0.
2020-03-02 17:03:03 -05:00
Maxim Cournoyer
cbe4272e6f
gnu: python-gitdb: Update to 4.0.2.
...
* gnu/packages/version-control.scm (python-gitdb): Update to 4.0.2.
[source]: Correct the PyPI URL to refer to the actual gitdb package, not a
mirror. This mirror had a problematic setup.py install requirement that
required gitdb>=4.0.1, which would cause run time errors when using snakemake.
2020-03-02 17:03:03 -05:00
Maxim Cournoyer
357af7f283
gnu: python-pyyaml: Update to 5.3.
...
* gnu/packages/python-xyz.scm (python-pyyaml): Update to 5.3.
2020-03-02 17:03:02 -05:00
Maxim Cournoyer
8c06d6d8ce
gnu: python-xenon: Update to 0.7.0.
...
* gnu/packages/python-xyz.scm (python-xenon): Update to 0.7.0.
[arguments]: Set #:tests? to #f to disable test suite.
2020-03-02 17:03:02 -05:00
Maxim Cournoyer
f675ab4faf
gnu: python-radon: Update to 4.1.0.
...
* gnu/packages/python-xyz.scm (python-radon): Update to 4.1.0.
2020-03-02 17:03:02 -05:00
Maxim Cournoyer
bd13705540
gnu: python-colorama: Update to 0.4.3.
...
* gnu/packages/python-xyz.scm (python-colorama): Update to 0.4.3.
2020-03-02 17:03:02 -05:00
Maxim Cournoyer
9c9704a9d7
gnu: Add python-wget.
...
* gnu/packages/python-xyz.scm (python-wget): New variable.
2020-03-02 17:03:02 -05:00
Nicolas Goaziou
1eee899617
gnu: emacs-windower: Fix description.
...
* gnu/packages/emacs-xyz.scm (emacs-windower): Fix Texinfo code for lists in
description.
2020-03-02 22:59:57 +01:00
Ricardo Wurmus
7a4b2da48f
gnu: r-forcats: Update to 0.5.0.
...
* gnu/packages/statistics.scm (r-forcats): Update to 0.5.0.
2020-03-02 21:53:49 +01:00
Ricardo Wurmus
3f809fe875
gnu: r-testthat: Update to 2.3.2.
...
* gnu/packages/statistics.scm (r-testthat): Update to 2.3.2.
2020-03-02 21:53:48 +01:00
Ricardo Wurmus
d82a17ebaa
gnu: r-openmx: Update to 2.17.3.
...
* gnu/packages/cran.scm (r-openmx): Update to 2.17.3.
2020-03-02 21:53:48 +01:00
Ricardo Wurmus
2d063d4535
gnu: r-summarytools: Update to 0.9.6.
...
* gnu/packages/cran.scm (r-summarytools): Update to 0.9.6.
2020-03-02 21:53:48 +01:00
Ricardo Wurmus
bbba65e269
gnu: r-officer: Update to 0.3.7.
...
* gnu/packages/cran.scm (r-officer): Update to 0.3.7.
[propagated-inputs]: Remove r-base64enc, r-htmltools, r-rcpp, and r-rlang.
2020-03-02 21:53:48 +01:00
Ricardo Wurmus
1284df4ef6
gnu: r-seqminer: Update to 8.0.
...
* gnu/packages/bioinformatics.scm (r-seqminer): Update to 8.0.
2020-03-02 21:53:48 +01:00
Tobias Geerinckx-Rice
b4034d1bc4
gnu: ecl-clunit: Use HTTPS home page.
...
* gnu/packages/lisp-xyz.scm (ecl-clunit)[home-page]: Use HTTPS.
2020-03-02 21:46:27 +01:00
Tobias Geerinckx-Rice
711ebe771e
gnu: mapnik: Use HTTPS home page.
...
* gnu/packages/geo.scm (mapnik)[home-page]: Use HTTPS.
2020-03-02 21:46:27 +01:00
Tobias Geerinckx-Rice
4e5ad79e4d
gnu: python-rq: Use HTTPS home page.
...
* gnu/packages/databases.scm (python-rq)[home-page]: Use HTTPS.
2020-03-02 21:46:27 +01:00
Tobias Geerinckx-Rice
35e74723b5
gnu: java-plexus-interpolation: Use HTTPS home page.
...
* gnu/packages/java.scm (java-plexus-interpolation)[home-page]: Use HTTPS.
2020-03-02 21:46:27 +01:00
Tobias Geerinckx-Rice
c99f0e5780
gnu: amsynth: Use HTTPS home page.
...
* gnu/packages/music.scm (amsynth)[home-page]: Use HTTPS.
2020-03-02 21:46:27 +01:00
Tobias Geerinckx-Rice
a369682826
gnu: pootle: Use HTTPS home page.
...
* gnu/packages/django.scm (pootle)[home-page]: Use HTTPS.
2020-03-02 21:46:27 +01:00
Tobias Geerinckx-Rice
9bbb492042
gnu: muse-sequencer: Update home page.
...
* gnu/packages/music.scm (muse-sequencer)[home-page]: Follow (HTTPS)
redirection.
2020-03-02 21:46:27 +01:00
Tobias Geerinckx-Rice
ba6b48b84f
gnu: opensmtpd: Support ECDSA certificates.
...
The required libressl version is now stable and more featureful than
openssl.
* gnu/packages/mail.scm (opensmtpd)[inputs]: Replace openssl with libressl.
2020-03-02 21:46:27 +01:00
Tobias Geerinckx-Rice
0250672b97
gnu: libressl: Update to 3.0.2.
...
* gnu/packages/tls.scm (libressl): Update to 3.0.2.
2020-03-02 21:46:27 +01:00
Tobias Geerinckx-Rice
b69c770305
gnu: r-txdb-mmusculus-ucsc-mm10-knowngene: Update to 3.10.0.
...
* gnu/packages/bioconductor.scm (r-txdb-mmusculus-ucsc-mm10-knowngene): Update to 3.10.0.
2020-03-02 21:46:27 +01:00
Nicolas Goaziou
45a2636a0b
gnu: emacs-modus-themes: Update to 0.6.0.
...
* gnu/packages/emacs-xyz.scm (emacs-modus-themes): Update to 0.6.0.
2020-03-02 21:37:15 +01:00
Leo Famulari
8e1f5aaba2
gnu: Syncthing: Fix installation of the 'util' package output.
...
* gnu/packages/syncthing.scm (syncthing)[arguments]: Adjust the 'install' phase.
2020-03-02 15:36:21 -05:00
Efraim Flashner
7b1ba1e4fc
gnu: librsvg-next: Fix cargo dependency.
...
* gnu/packages/gnome.scm (librsvg-next-source): Don't hardcode patch
version of cargo inputs.
2020-03-02 22:11:16 +02:00
Efraim Flashner
597f41ca49
gnu: rust-diff-0.1: Update to 0.1.12.
...
* gnu/packages/crates-io.scm (rust-diff-0.1): Update to 0.1.12.
[arguments]: Replace rust-quickcheck-0.8 with 0.9 in
cargo-development-inputs.
2020-03-02 22:09:04 +02:00
Efraim Flashner
4b309aad04
gnu: rust-defmac-0.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-defmac-0.2)[arguments]: Don't skip
build.
2020-03-02 21:58:22 +02:00
Efraim Flashner
64a28fd6e1
gnu: rust-datetime-0.4: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-datetime-0.4)[arguments]: Don't skip
build. Add rust-regex-0.1 to cargo-development-inputs.
2020-03-02 21:56:54 +02:00
Efraim Flashner
49877d9fd6
gnu: rust-constant-time-eq-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-constant-time-eq-0.1)[arguments]:
Don't skip build.
2020-03-02 21:48:02 +02:00
Vincent Legoll
bdcec7028c
gnu: debootstrap: Update to 1.0.119.
...
* gnu/packages/debian.scm (debootstrap): Update to 1.0.119.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-03-02 21:33:28 +02:00
Efraim Flashner
c1febbbf94
gnu: vim: Update to 8.2.0343.
...
* gnu/packages/vim.scm (vim): Update to 8.2.0343.
2020-03-02 10:40:34 +02:00
Ricardo Wurmus
5f5e0830f6
gnu: r-multiassayexperiment: Update to 1.12.3.
...
* gnu/packages/bioconductor.scm (r-multiassayexperiment): Update to 1.12.3.
2020-03-01 23:38:33 +01:00
Ricardo Wurmus
e766ba9a52
gnu: r-cicero: Update to 1.4.2.
...
* gnu/packages/bioconductor.scm (r-cicero): Update to 1.4.2.
2020-03-01 23:38:26 +01:00
Ricardo Wurmus
0a30342def
gnu: r-mlinterfaces: Update to 1.66.4.
...
* gnu/packages/bioconductor.scm (r-mlinterfaces): Update to 1.66.4.
2020-03-01 23:38:19 +01:00
Ricardo Wurmus
aece78fe2f
gnu: r-biocneighbors: Update to 1.4.2.
...
* gnu/packages/bioconductor.scm (r-biocneighbors): Update to 1.4.2.
2020-03-01 23:38:12 +01:00
Ricardo Wurmus
8351faae8a
gnu: r-chippeakanno: Update to 3.20.1.
...
* gnu/packages/bioconductor.scm (r-chippeakanno): Update to 3.20.1.
2020-03-01 23:38:06 +01:00
Ricardo Wurmus
f73b75e00c
gnu: r-hdf5array: Update to 1.14.3.
...
* gnu/packages/bioinformatics.scm (r-hdf5array): Update to 1.14.3.
2020-03-01 23:37:58 +01:00
Ricardo Wurmus
6c1f5a1b7e
gnu: r-rsamtools: Update to 2.2.3.
...
* gnu/packages/bioinformatics.scm (r-rsamtools): Update to 2.2.3.
2020-03-01 23:37:52 +01:00
Ricardo Wurmus
9bbf3f9de2
gnu: r-edger: Update to 3.28.1.
...
* gnu/packages/bioinformatics.scm (r-edger): Update to 3.28.1.
2020-03-01 23:37:40 +01:00
Ricardo Wurmus
efb98dd09d
gnu: gwl: Update to 0.2.1.
...
* gnu/packages/package-management.scm (gwl): Update to 0.2.1.
[arguments]: Add phase "fix-tests".
2020-03-01 23:21:18 +01:00
Ricardo Wurmus
42c7f6e748
gnu: r-nloptr: Update to 1.2.2.
...
* gnu/packages/statistics.scm (r-nloptr): Update to 1.2.2.
2020-03-01 23:21:18 +01:00
Ricardo Wurmus
b3be560e23
gnu: r-gplots: Update to 3.0.3.
...
* gnu/packages/statistics.scm (r-gplots): Update to 3.0.3.
2020-03-01 23:21:18 +01:00
Ricardo Wurmus
8bcbb67c17
gnu: r-mvtnorm: Update to 1.1-0.
...
* gnu/packages/statistics.scm (r-mvtnorm): Update to 1.1-0.
2020-03-01 23:21:18 +01:00
Ricardo Wurmus
2589dc4b50
gnu: r-rlang: Update to 0.4.5.
...
* gnu/packages/statistics.scm (r-rlang): Update to 0.4.5.
2020-03-01 23:21:18 +01:00
Ricardo Wurmus
fb93e2f539
gnu: r-digest: Update to 0.6.25.
...
* gnu/packages/statistics.scm (r-digest): Update to 0.6.25.
2020-03-01 23:21:18 +01:00
Ricardo Wurmus
51d36a12b7
gnu: r-nnet: Update to 7.3-13.
...
* gnu/packages/statistics.scm (r-nnet): Update to 7.3-13.
2020-03-01 23:21:18 +01:00
Ricardo Wurmus
e3eb7ee474
gnu: r-seurat: Update to 3.1.4.
...
* gnu/packages/bioinformatics.scm (r-seurat): Update to 3.1.4.
[propagated-inputs]: Add r-patchwork.
2020-03-01 23:21:17 +01:00
Ricardo Wurmus
339fa00a98
gnu: r-wgcna: Update to 1.69.
...
* gnu/packages/cran.scm (r-wgcna): Update to 1.69.
[propagated-inputs]: Remove r-robust.
2020-03-01 23:21:17 +01:00
Ricardo Wurmus
78acab4818
gnu: r-quanteda: Update to 2.0.0.
...
* gnu/packages/cran.scm (r-quanteda): Update to 2.0.0.
[propagated-inputs]: Remove r-lubridate, r-rspectra, and r-spacyr; add
r-jsonlite.
2020-03-01 23:21:17 +01:00
Ricardo Wurmus
2fc3575608
gnu: r-gdina: Update to 2.7.9.
...
* gnu/packages/cran.scm (r-gdina): Update to 2.7.9.
2020-03-01 23:21:17 +01:00
Ricardo Wurmus
0c51197b3c
gnu: r-subplex: Update to 1.6.
...
* gnu/packages/cran.scm (r-subplex): Update to 1.6.
2020-03-01 23:21:17 +01:00
Ricardo Wurmus
ecbae383d8
gnu: r-rpf: Update to 1.0.3.
...
* gnu/packages/cran.scm (r-rpf): Update to 1.0.3.
2020-03-01 23:21:17 +01:00
Ricardo Wurmus
2a216f5a5f
gnu: r-dalex: Update to 1.0.1.
...
* gnu/packages/cran.scm (r-dalex): Update to 1.0.1.
2020-03-01 23:21:17 +01:00
Ricardo Wurmus
79f7e127ea
gnu: r-styler: Update to 1.3.2.
...
* gnu/packages/cran.scm (r-styler): Update to 1.3.2.
2020-03-01 23:21:17 +01:00
Ricardo Wurmus
cd4a4eafcc
gnu: r-gridgraphics: Update to 0.5-0.
...
* gnu/packages/cran.scm (r-gridgraphics): Update to 0.5-0.
2020-03-01 23:21:17 +01:00
Ricardo Wurmus
851e576213
gnu: r-protviz: Update to 0.6.3.
...
* gnu/packages/cran.scm (r-protviz): Update to 0.6.3.
2020-03-01 23:21:17 +01:00
Ricardo Wurmus
5144de4b1d
gnu: r-rvcheck: Update to 0.1.8.
...
* gnu/packages/cran.scm (r-rvcheck): Update to 0.1.8.
2020-03-01 23:21:17 +01:00
Ricardo Wurmus
d41528b093
gnu: r-rcppannoy: Update to 0.0.15.
...
* gnu/packages/cran.scm (r-rcppannoy): Update to 0.0.15.
2020-03-01 23:21:17 +01:00
Ricardo Wurmus
19b0b54ed1
gnu: r-mvabund: Update to 4.1.3.
...
* gnu/packages/cran.scm (r-mvabund): Update to 4.1.3.
2020-03-01 23:21:16 +01:00
Ricardo Wurmus
a0077446a1
gnu: r-manipulatewidget: Update to 0.10.1.
...
* gnu/packages/cran.scm (r-manipulatewidget): Update to 0.10.1.
2020-03-01 23:21:16 +01:00
Ricardo Wurmus
0fab5a4769
gnu: r-effectsize: Update to 0.2.0.
...
* gnu/packages/cran.scm (r-effectsize): Update to 0.2.0.
2020-03-01 23:21:16 +01:00
Ricardo Wurmus
1bd8563322
gnu: r-factominer: Update to 2.3.
...
* gnu/packages/cran.scm (r-factominer): Update to 2.3.
2020-03-01 23:21:16 +01:00
Ricardo Wurmus
a670564929
gnu: r-tinytex: Update to 0.20.
...
* gnu/packages/cran.scm (r-tinytex): Update to 0.20.
2020-03-01 23:21:16 +01:00
Ricardo Wurmus
f7dc4f7bfd
gnu: r-uuid: Update to 0.1-4.
...
* gnu/packages/cran.scm (r-uuid): Update to 0.1-4.
2020-03-01 23:21:16 +01:00
Ricardo Wurmus
d67f83072c
gnu: r-broom: Update to 0.5.5.
...
* gnu/packages/cran.scm (r-broom): Update to 0.5.5.
2020-03-01 23:21:16 +01:00
Ricardo Wurmus
353b3515a6
gnu: r-cli: Update to 2.0.2.
...
* gnu/packages/cran.scm (r-cli): Update to 2.0.2.
2020-03-01 23:21:16 +01:00
Ricardo Wurmus
8a9d551c8d
gnu: r-sp: Update to 1.4-1.
...
* gnu/packages/cran.scm (r-sp): Update to 1.4-1.
2020-03-01 23:21:16 +01:00
Ricardo Wurmus
9e3a089b44
gnu: r-dendextend: Update to 1.13.4.
...
* gnu/packages/cran.scm (r-dendextend): Update to 1.13.4.
2020-03-01 23:21:16 +01:00
Ricardo Wurmus
dfa052726a
gnu: r-modelr: Update to 0.1.6.
...
* gnu/packages/cran.scm (r-modelr): Update to 0.1.6.
[propagated-inputs]: Add r-tidyselect.
2020-03-01 23:21:15 +01:00
Ricardo Wurmus
ade9158b62
gnu: r-matrix-utils: Update to 0.9.8.
...
* gnu/packages/cran.scm (r-matrix-utils): Update to 0.9.8.
2020-03-01 23:21:15 +01:00
Ricardo Wurmus
975cfe26e1
gnu: r-gkmsvm: Update to 0.80.0.
...
* gnu/packages/bioconductor.scm (r-gkmsvm): Update to 0.80.0.
[propagated-inputs]: Remove r-biocgenerics, r-biostrings, r-genomeinfodb,
r-iranges, r-rtracklayer, and r-s4vectors.
2020-03-01 23:21:15 +01:00
Nicolas Goaziou
d4388c0bf6
gnu: emacs-relint: Update to 1.14.
...
* gnu/packages/emacs-xyz.scm (emacs-relint): Update to 1.14.
2020-03-01 22:55:41 +01:00
Nicolas Goaziou
55db5a50e2
gnu: emacs-xr: Update to 1.16.
...
* gnu/packages/emacs-xyz.scm (emacs-xr): Update to 1.16.
2020-03-01 22:54:46 +01:00
Jan Nieuwenhuizen
2d79250d1a
gnu: qemu-minimal-2.10: Use minimal dependencies from qemu-minimal.
...
Without this patch qemu-minimal-2.10 is not really minimal; it depends on
cups, ffmpeg, ghostscript, gstreamer, gtk, spice, ...
* gnu/packages/virtualization.scm (qemu-minimal-2.10)
[native-inputs]: Inherit from QEMU-MINIMAL instead of QEMU.
[inputs]: Likewise.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-03-01 21:51:53 +01:00
Christopher Baines
cfe3581426
gnu: guile-squee: Fix the "guile3.0-squee" variant.
...
* gnu/packages/guile-xyz.scm (guile3.0-squee): Switch inputs to native-inputs.
2020-03-01 20:50:33 +00:00
Christopher Baines
63a847cb11
gnu: guile-email: Add "guile3.0-email" variant.
...
* gnu/packages/guile-xyz.scm (guile3.0-email): New variable.
2020-03-01 20:10:21 +00:00
Christopher Baines
945a73d82d
gnu: guile-squee: Add "guile3.0-squee" variant.
...
* gnu/packages/guile-xyz.scm (guile3.0-squee): New variable.
2020-03-01 20:10:21 +00:00
Tobias Geerinckx-Rice
aabc895402
gnu: python-construct: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-construct)[home-page]: Use HTTPS.
2020-03-01 20:47:54 +01:00
Tobias Geerinckx-Rice
d3eae3f1ec
gnu: warzone2100: Use HTTPS home page.
...
* gnu/packages/games.scm (warzone2100)[home-page]: Use HTTPS.
2020-03-01 20:47:54 +01:00
Tobias Geerinckx-Rice
555f3d15b1
gnu: python-sphinx: Use HTTPS home page.
...
* gnu/packages/sphinx.scm (python-sphinx)[home-page]: Use HTTPS.
2020-03-01 20:47:54 +01:00
Tobias Geerinckx-Rice
f4eee79db2
gnu: libgc: Use HTTPS home page.
...
* gnu/packages/bdw-gc.scm (libgc)[home-page]: Use HTTPS.
2020-03-01 20:47:54 +01:00
Tobias Geerinckx-Rice
5adaeb3618
gnu: python-pyalsaaudio: Use HTTPS home page.
...
* gnu/packages/audio.scm (python-pyalsaaudio)[home-page]: Use HTTPS.
2020-03-01 20:47:54 +01:00
Tobias Geerinckx-Rice
41181b7696
gnu: ruby-markaby: Use HTTPS home page.
...
* gnu/packages/ruby.scm (ruby-markaby)[home-page]: Use HTTPS.
2020-03-01 20:47:54 +01:00
Tobias Geerinckx-Rice
efc0a5878a
gnu: python-h5py: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-h5py)[home-page]: Use HTTPS.
2020-03-01 20:47:54 +01:00
Tobias Geerinckx-Rice
3a066fbe23
gnu: wordnet: Use HTTPS home page.
...
* gnu/packages/wordnet.scm (wordnet)[home-page]: Use HTTPS.
2020-03-01 20:47:54 +01:00
Tobias Geerinckx-Rice
c150d6378d
gnu: dehydrated: Install documentation.
...
* gnu/packages/tls.scm (dehydrated)[arguments]: Install compressed man
page and other basic documentation.
2020-03-01 20:47:54 +01:00
Eric Bavier
bcfacecd3b
doc: Fix some typos.
...
* doc/guix.texi: Various typo fixes.
2020-03-01 12:11:29 -06:00
Nicolas Goaziou
c4f197d5e4
gnu: ode: Update to 0.16.1.
...
* gnu/packages/game-development.scm (ode): Update to 0.16.1.
2020-03-01 16:26:21 +01:00
Tobias Geerinckx-Rice
3dd74c8dc5
gnu: python-graphene: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-graphene)[home-page]: Use HTTPS.
2020-03-01 14:41:38 +01:00
Tobias Geerinckx-Rice
203475e430
gnu: anthy: Use HTTPS home page.
...
* gnu/packages/anthy.scm (anthy)[home-page]: Use HTTPS.
2020-03-01 14:41:38 +01:00
Tobias Geerinckx-Rice
1b3a603837
gnu: java-commons-cli: Use HTTPS home page.
...
* gnu/packages/java.scm (java-commons-cli)[home-page]: Use HTTPS.
2020-03-01 14:41:38 +01:00
Tobias Geerinckx-Rice
1e30dff38b
gnu: lrcalc: Use HTTPS home page.
...
* gnu/packages/algebra.scm (lrcalc)[home-page]: Use HTTPS.
2020-03-01 14:41:38 +01:00
Tobias Geerinckx-Rice
21e207d285
gnu: java-commons-collections4: Use HTTPS home page.
...
* gnu/packages/java.scm (java-commons-collections4)[home-page]: Use HTTPS.
2020-03-01 14:41:38 +01:00
Damien Cassou
87eeeeb04a
gnu: mozjs@17, mozjs@24: Fix build.
...
* gnu/packages/gnuzilla.scm (mozjs): Add ‘-fpermissive’ to CXXFLAGS.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-03-01 14:41:38 +01:00
Tobias Geerinckx-Rice
bb5ab9bfab
gnu: dehydrated: Update source URI.
...
* gnu/packages/tls.scm (dehydrated)[source]: Update URI.
2020-03-01 14:41:37 +01:00
Ricardo Wurmus
77cf666b00
gnu: cogserver: Update to 0-2.ec5f3b9.
...
* gnu/packages/opencog.scm (cogserver): Update to 0-2.ec5f3b9.
[arguments]: Enable tests.
2020-03-01 14:21:54 +01:00
Jakub Kądziołka
50be0da7bf
services: set-xorg-configuration: handle slim and sddm
...
* gnu/services/xorg.scm (handle-xorg-configuration): New syntax.
(gdm-service-type, slim-service-type): Use handle-xorg-configuration.
* gnu/services/sddm.scm (sddm-service-type): Likewise.
2020-03-01 14:13:27 +01:00
Jakub Kądziołka
9b9ab657cc
gnu: python-binwalk: Switch to a release.
...
When the package was last modified, the version wasn't released; an
unreleased commit was used. This is no longer necessary. The tag only
differs in the version number from the commit that was being used
before.
* gnu/packages/python-xyz.scm (python-binwalk): Use a released tag
(v2.2.0).
Co-authored-by: Vincent Legoll <vincent.legoll@gmail.com >
2020-03-01 14:09:56 +01:00
Danny Milosavljevic
2f3515f736
gnu: avr-gcc: Fix compiler lookup paths.
...
* gnu/packages/avr.scm (avr-gcc-4.9): Use CROSS_C*_INCLUDE_PATH (like
cross-base does).
(avr-gcc-5)[source]: Apply patch "gcc-cross-environment-variables.patch".
2020-03-01 12:52:43 +01:00
Nicolas Goaziou
dad3645b67
gnu: wireshark: Update to 3.2.2.
...
* gnu/packages/networking.scm (wireshark): Update to 3.2.2.
2020-03-01 11:18:36 +01:00
Nicolas Goaziou
4a5e7edce2
gnu: fet: Update to 5.43.2.
...
* gnu/packages/education.scm (fet): Update to 5.43.2.
2020-03-01 11:11:47 +01:00
Nicolas Goaziou
a733253b5c
gnu: giac: Update to 1.5.0-87.
...
* gnu/packages/algebra.scm (giac): Update to 1.5.0-87.
2020-03-01 10:48:12 +01:00
Nicolas Goaziou
bc490e070a
gnu: mame: Update to 0.219.
...
* gnu/packages/emulators.scm (mame): Update to 0.219.
2020-03-01 09:51:40 +01:00
Efraim Flashner
1d9b4664e3
gnu: rust-bitflags-1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-bitflags-1)[arguments]: Don't skip
build.
(rust-bitflags-0.8, rust-bitflags-0.7)[arguments]: Same.
2020-03-01 10:40:05 +02:00
Efraim Flashner
c9f32328d4
gnu: rust-bencher-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-bencher-0.1)[arguments]: Don't skip
build.
2020-03-01 10:37:35 +02:00
Efraim Flashner
23e71f5d34
gnu: rust-antidote-1.0: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-antidote-1.0)[arguments]: Don't skip
build.
2020-03-01 10:35:40 +02:00
Efraim Flashner
0b3848f00e
gnu: rust-winapi-build-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-winapi-build-0.1)[arguments]: Don't
skip build.
2020-03-01 10:34:43 +02:00
Efraim Flashner
3201503d3c
gnu: rust-string-cache-0.7: Upgrade to 0.7.5.
...
* gnu/packages/crates-io.scm (rust-string-cache-0.7): Upgrade to 0.7.5.
[arguments]: Don't skip build.
2020-03-01 10:29:41 +02:00
Efraim Flashner
c9f97083f0
gnu: rust-string-cache-shared-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-string-cache-shared-0.3)[arguments]:
Don't skip build.
2020-03-01 10:24:11 +02:00
Efraim Flashner
bb5bc8270e
gnu: rust-string-cache-codegen-0.4: Upgrade to 0.4.4.
...
* gnu/packages/crates-io.scm (rust-string-cache-codegen-0.4): Upgrade to 0.4.4.
[arguments]: Don't skip build. Replace rust-proc-macro2-0.4 with 1.0 in
cargo-inputs.
2020-03-01 10:18:55 +02:00
Efraim Flashner
ddba2afe53
gnu: rust-synstructure-0.10: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-synstructure-0.10)[arguments]: Don't
skip build. Replace rust-quote-1.0 with 0.6 in cargo-inputs.
2020-03-01 10:11:42 +02:00
Efraim Flashner
eb5eb9bb8d
gnu: crates-io.scm: Sort alphabetically.
...
* gnu/packages/crates-io.scm: Sort packages alphabetically.
2020-03-01 10:07:04 +02:00
Efraim Flashner
3fd8d20e56
gnu: rust-seahash-3.0: Upgrade to 3.0.7.
...
* gnu/packages/crates-io.scm (rust-seahash-3.0): Upgrade to 3.0.7.
[arguments]: Don't skip build.
2020-02-29 22:46:12 +02:00
Efraim Flashner
af4bf10c1a
gnu: rust-scroll-derive-0.9: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-scroll-derive-0.9)[arguments]: Don't
skip build. Replace rust-quote-1.0 with 0.6 in cargo-inputs.
2020-02-29 22:46:11 +02:00
Efraim Flashner
b24510dcaa
gnu: rust-scroll-0.9: Fix inputs.
...
* gnu/packages/crates-io.scm (rust-scroll-0.9)[arguments]: Move
rust-rustc-version-0.2 from cargo-development-inputs to cargo-inputs.
2020-02-29 22:46:11 +02:00
Efraim Flashner
bc249a10eb
gnu: rust-html5ever-0.23: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-html5ever-0.23)[arguments]: Don't
skip build. Replace rust-quote-1.0 with 0.6. Move rust-proc-macro2-0.4,
rust-quote-0.6, rust-syn-0.15 from cargo-development-inputs to
cargo-inputs.
2020-02-29 22:46:11 +02:00
Efraim Flashner
8758953924
gnu: rust-markup5ever-0.8: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-markup5ever-0.8)[arguments]: Don't
skip build. Move all crates in cargo-development-inputs to cargo-inputs
where build dependencies are located.
2020-02-29 22:46:11 +02:00
Efraim Flashner
7fd3484686
gnu: rust-futures-select-macro-preview-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-futures-select-macro-preview-0.3)
[arguments]: Don't skip build. Replace rust-quote-1.0 with 0.6 in
cargo-inputs.
2020-02-29 22:46:11 +02:00
Efraim Flashner
0e327e339b
gnu: rust-flamer-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-flamer-0.3)[arguments]: Don't skip
build. Skip tests. Replace rust-quote-1.0 with 0.6 in cargo-inputs.
2020-02-29 22:46:10 +02:00
Efraim Flashner
7239682f5a
gnu: rust-flame-0.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-flame-0.2)[arguments]: Don't skip
build. Replace rust-lazy-static-1 with 0.2 in cargo-inputs.
2020-02-29 22:46:10 +02:00
Efraim Flashner
107afd67a2
gnu: rust-demo-hack-0.0: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-demo-hack-0.0)[arguments]: Don't skip
build.
2020-02-29 22:46:10 +02:00
Efraim Flashner
573f299a94
gnu: rust-demo-hack-impl-0.0: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-demo-hack-impl-0.0)[arguments]: Don't
skip build. Replace rust-quote-1.0 with 0.6 in cargo-inputs.
2020-02-29 22:46:10 +02:00
Efraim Flashner
014e85493d
gnu: rust-trybuild-1.0: Upgrade to 1.0.23.
...
* gnu/packages/crates-io.scm (rust-trybuild-1.0): Upgrade to 1.0.23.
[arguments]: Don't skip build. Add rust-dissimilar-1.0 to cargo-inputs.
2020-02-29 22:46:09 +02:00
Efraim Flashner
c9e8a73372
gnu: Add rust-dissimilar-1.0.
...
* gnu/packages/crates-io.scm (rust-dissimilar-1.0): New variable.
2020-02-29 22:46:09 +02:00
Efraim Flashner
ec395e70cb
gnu: rust-ref-cast-0.2: Upgrade to 0.2.7.
...
* gnu/packages/crates-io.scm (rust-ref-cast-0.2): Upgrade to 0.2.7.
[arguments]: Don't skip build. Add rust-rustversion-0.1,
rust-trybuild-1.0 to cargo-development-inputs.
(rust-ref-cast-impl-0.2): Upgrade to 0.2.7.
[arguments]: Inherit from rust-ref-cat-impl-1.0.
2020-02-29 22:46:09 +02:00
Efraim Flashner
dd19668e31
gnu: rust-hex-literal-0.2: Upgrade to 0.2.1.
...
* gnu/packages/crates-io.scm (rust-hex-literal-0.2): Upgrade to 0.2.1.
[arguments]: Don't skip build.
(rust-hex-literal-impl-0.2): Upgrade to 0.2.1.
[arguments]: Don't skip build.
2020-02-29 22:46:09 +02:00
Efraim Flashner
25aaf93bf7
gnu: rust-paste-0.1: Upgrade to 0.1.7.
...
* gnu/packages/crates-io.scm (rust-paste-0.1): Upgrade to 0.1.7.
[arguments]: Don't skip build.
(rust-paste-impl-0.1): Upgrade to 0.1.7.
[arguments]: Don't skip build. Replace rust-proc-macro2-0.4 with 1.0,
rust-syn-0.15 with 1.0 in cargo-inputs.
2020-02-29 22:46:09 +02:00
Efraim Flashner
134aaeafd7
gnu: rust-lock-api-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-lock-api-0.3)[arguments]: Don't skip
build.
2020-02-29 22:46:08 +02:00
Efraim Flashner
03b5f8b124
gnu: rust-lock-api-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-lock-api-0.1)[arguments]: Don't skip
build.
2020-02-29 22:46:08 +02:00
Efraim Flashner
4b7e3ba020
gnu: rust-loom-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-loom-0.1)[arguments]: Don't skip
build. Replace rust-scoped-tls-1.0 with 0.1 in cargo-inputs.
2020-02-29 22:46:08 +02:00
Efraim Flashner
5666f1f784
gnu: rust-generator-0.6: Update to 0.6.20.
...
* gnu/packages/crates-io.scm (rust-generator-0.6): Upgrade to 0.6.20.
[arguments]: Don't skip build. Move rust-cc-1.0 and rust-rustc-version-0.2
from cargo-development-inputs to cargo-inputs.
2020-02-29 22:46:08 +02:00
Efraim Flashner
55d0d24f2e
gnu: rust-bindgen-0.50: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-bindgen-0.50)[arguments]: Don't skip
build.
2020-02-29 22:46:08 +02:00
Efraim Flashner
2f9182b6b7
gnu: rust-rand-chacha-0.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-chacha-0.2)[arguments]: Don't
skip build.
2020-02-29 22:46:07 +02:00
Efraim Flashner
31b99b51a2
gnu: rust-rand-chacha-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-chacha-0.1)[arguments]: Don't
skip build.
2020-02-29 22:46:07 +02:00
Efraim Flashner
2d83102ca0
gnu: rust-rand-core-0.5: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-core-0.5)[arguments]: Don't skip
build.
2020-02-29 22:46:07 +02:00
Efraim Flashner
e6daf515ed
gnu: python-bleach: Update to 3.1.1 [fixes CVE-2020-6802].
...
* gnu/packages/python-xyz.scm (python-bleach): Update to 3.1.1.
2020-02-29 22:46:07 +02:00
Efraim Flashner
3a399a241a
gnu: rust-rand-core-0.4: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-core-0.4)[arguments]: Don't skip
build.
2020-02-29 22:46:06 +02:00
Efraim Flashner
b4240b2d9e
gnu: rust-rand-hc-0.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-hc-0.2)[arguments]: Don't skip
build.
2020-02-29 22:46:06 +02:00
Efraim Flashner
ace2340cf3
gnu: rust-rand-hc-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-hc-0.1)[arguments]: Don't skip
build.
2020-02-29 22:46:06 +02:00
Efraim Flashner
e01b0e9609
gnu: rust-rand-os-0.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-os-0.2)[arguments]: Don't skip
build.
2020-02-29 22:46:06 +02:00
Efraim Flashner
166fd432e8
gnu: rust-rand-os-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-os-0.1)[arguments]: Don't skip
build.
2020-02-29 22:46:06 +02:00
Efraim Flashner
f95b5871ed
gnu: rust-rand-pcg-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-pcg-0.1)[arguments]: Don't skip
build.
2020-02-29 22:46:05 +02:00
Efraim Flashner
315b734090
gnu: rust-rand-pcg-0.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-pcg-0.2)[arguments]: Don't skip
build.
2020-02-29 22:46:05 +02:00
Efraim Flashner
396b6871e9
gnu: rust-memchr-2.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-memchr-2.2)[arguments]: Don't skip
build.
2020-02-29 22:46:05 +02:00
Efraim Flashner
4978fff1be
gnu: rust-base64-0.10: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-base64-0.10)[arguments]: Don't skip
build.
2020-02-29 22:46:05 +02:00
Efraim Flashner
634bb72292
gnu: rust-opaque-debug-0.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-opaque-debug-0.2)[arguments]: Don't
skip build.
2020-02-29 22:46:05 +02:00
Efraim Flashner
02940899ef
gnu: rust-docopt-1.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-docopt-1.1)[arguments]: Don't skip
build.
2020-02-29 22:46:04 +02:00
Efraim Flashner
4d7acb4da0
gnu: rust-csv-core-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-csv-core-0.1)[arguments]: Don't skip
build.
2020-02-29 22:46:04 +02:00
Efraim Flashner
1b21a1ed55
gnu: rust-winapi-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-winapi-0.3)[arguments]: Don't skip
build.
2020-02-29 22:46:04 +02:00
Efraim Flashner
14c6e181a0
gnu: rust-winapi-util-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-winapi-util-0.1)[arguments]: Don't
skip build.
2020-02-29 22:46:04 +02:00
Efraim Flashner
04deb31d19
gnu: rust-wincolor-1.0: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-wincolor-1.0)[arguments]: Don't skip
build.
2020-02-29 22:46:03 +02:00
Efraim Flashner
37ec8b987e
gnu: rust-web-sys-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-web-sys-0.3)[arguments]: Don't skip
build.
2020-02-29 22:46:03 +02:00
Efraim Flashner
a396f9c68f
gnu: rust-xdg-2.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-xdg-2.2)[arguments]: Don't skip build.
2020-02-29 22:46:03 +02:00
Efraim Flashner
e9a589c8a7
gnu: rust-winit-0.20: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-winit-0.20)[arguments]: Don't skip
build.
2020-02-29 22:46:03 +02:00
Leo Famulari
fecd608f37
gnu: Add libavif.
...
* gnu/packages/image.scm (libavif): New variable.
2020-02-29 14:47:39 -05:00
Leo Famulari
08cc13974f
gnu: libaom: Add AVIF support.
...
* gnu/packages/video.scm (libaom): Update to 1.0.0-errata1-avif.
2020-02-29 14:47:39 -05:00
Vincent Legoll
b5aa17adea
gnu: vim: Update to 8.2.0332.
...
* gnu/packages/vim.scm (vim): Update to 8.2.0332.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-29 14:17:52 -05:00
Vincent Legoll
ce50480b5b
gnu: youtube-dl: Update to 2020.02.16.
...
* gnu/packages/video.scm (youtube-dl): Update to 2020.02.16.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-29 13:59:47 -05:00
Vincent Legoll
f37d089b3e
gnu: zsh: Update to 5.8.
...
* gnu/packages/shells.scm (zsh): Update to 5.8.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-29 13:53:29 -05:00
Vincent Legoll
55cd9da635
gnu: ansible: Update to 2.9.5.
...
* gnu/packages/admin.scm (ansible): Update to 2.9.5.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-29 13:38:52 -05:00
Ricardo Wurmus
0c0da96ab5
gnu: r-with-tests: Update to 3.6.3.
...
* gnu/packages/statistics.scm (r-with-tests): Update to 3.6.3.
2020-02-29 19:19:49 +01:00
Tobias Geerinckx-Rice
91c19e76a5
gnu: ocaml-mccs: Use HTTPS home page.
...
* gnu/packages/ocaml.scm (ocaml-mccs)[home-page]: Use HTTPS.
2020-02-29 15:21:45 +01:00
Tobias Geerinckx-Rice
ba11a8bdf4
gnu: java-stringtemplate: Use HTTPS home page.
...
* gnu/packages/java.scm (java-stringtemplate)[home-page]: Use HTTPS.
2020-02-29 15:21:45 +01:00
Tobias Geerinckx-Rice
72314cc3f9
gnu: higan: Update home page.
...
* gnu/packages/emulators.scm (higan)[home-page]: Follow (HTTPS)
redirection.
2020-02-29 15:21:45 +01:00
Tobias Geerinckx-Rice
28191bdcde
gnu: python2-numpy-documentation: Update home page.
...
* gnu/packages/python-xyz.scm (python2-numpy-documentation)[home-page]:
Follow (HTTPS) redirection.
2020-02-29 15:21:45 +01:00
Vincent Legoll
ec09abc6ac
gnu: acpica: Update to 20200214.
...
* gnu/packages/admin.scm (acpica): Update to 20200214.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-02-29 15:21:45 +01:00
Björn Höfling
f76c16d220
gnu: di: Update home page URI.
...
* gnu/packages/admin.scm (di)[home-page]: Update URI.
2020-02-29 12:21:40 +01:00
Björn Höfling
56cb6f1d56
gnu: pies: Update home page URI.
...
* gnu/packages/admin.scm (pies)[home-page]: Update URI.
2020-02-29 12:21:40 +01:00
Björn Höfling
b8eeaaa263
gnu: fabric: Update to 1.14.1.
...
* gnu/packages/admin.scm (fabric): Update to 1.14.1.
2020-02-29 12:21:40 +01:00
Björn Höfling
a06faea965
gnu: fabric: Use HTTPS home page URI.
...
* gnu/packages/admin.scm (fabric)[home-page]: Use HTTPS URI.
2020-02-29 12:21:40 +01:00
Björn Höfling
1977e857ae
gnu: direvent: Update home page URI.
...
* gnu/packages/admin.scm (direvent)[home-page]: Update URI.
2020-02-29 12:21:40 +01:00
Björn Höfling
a20ede329d
gnu: python-pyudev: Use HTTPS home page URI, update home page.
...
* gnu/packages/admin.scm (python-pyudev)[home-page]: Use HTTPS URI, update URI.
2020-02-29 12:21:40 +01:00
Björn Höfling
c8b10f9b3c
gnu: acct: Update home page URI.
...
* gnu/packages/acct.scm (acct)[home-page]: Update URI.
2020-02-29 12:21:39 +01:00
Björn Höfling
7593e5d0f8
gnu: abduco: Use HTTPS home page and source URI.
...
* gnu/packages/abduco.scm (abduco)[home-page]: Use HTTPS URI.
[source]: Likewise.
2020-02-29 12:21:36 +01:00
Hartmut Goebel
1413891250
gnu: Add icoutils.
...
* gnu/packages/image.scm (icoutils): New variable.
2020-02-29 11:03:16 +01:00
Ricardo Wurmus
170c6b0344
gnu: mumi: Update to 0.0.0-6.a933a62.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.0-6.a933a62.
[inputs]: Remove guile-fibers; replace guile-json-1 with guile-json-3.
[source]: Remove snippet.
2020-02-29 08:54:03 +01:00
Ricardo Wurmus
2fe3072ebf
gnu: mumimu: Update to 1.2.0-2.6b42431.
...
* gnu/packages/mail.scm (mumimu): Update to 1.2.0-2.6b42431.
[arguments]: Do not patch Makefile.am or configure.ac.
[version]: Inherit from mu.
2020-02-29 08:54:02 +01:00
Guillaume Le Vaillant
079ee3b5ea
gnu: Add sbcl-clsql-mysql.
...
* gnu/packages/lisp-xyz.scm (sbcl-clsql-mysql): New variable.
2020-02-28 23:38:38 +01:00
Guillaume Le Vaillant
f9680d5230
gnu: Add sbcl-clsql-postgresql-socket3.
...
* gnu/packages/lisp-xyz.scm (sbcl-clsql-postgresql-socket3): New variable.
2020-02-28 23:38:38 +01:00
Guillaume Le Vaillant
cd53df62c9
gnu: Add sbcl-clsql-postgresql.
...
* gnu/packages/lisp-xyz.scm (sbcl-clsql-postgresql): New variable.
2020-02-28 23:38:38 +01:00
Guillaume Le Vaillant
5ad8d7aa12
gnu: Add sbcl-clsql-sqlite3.
...
* gnu/packages/lisp-xyz.scm (sbcl-clsql-sqlite3): New variable.
2020-02-28 23:38:38 +01:00
Guillaume Le Vaillant
a5f4428770
gnu: Add sbcl-clsql-uffi.
...
* gnu/packages/lisp-xyz.scm (sbcl-clsql-uffi): New variable.
2020-02-28 23:38:37 +01:00
Guillaume Le Vaillant
5ae56f681b
gnu: Add cl-clsql.
...
* gnu/packages/lisp-xyz.scm (sbcl-clsql, cl-clsql): New variables.
2020-02-28 23:38:37 +01:00
Guillaume Le Vaillant
1aa7ad1ffb
gnu: Add cl-uffi.
...
* gnu/packages/lisp-xyz.scm (sbcl-uffi, cl-uffi): New variables.
2020-02-28 23:38:37 +01:00
Guillaume Le Vaillant
25cefc87bc
gnu: Add cl-cffi-uffi-compat.
...
* gnu/packages/lisp-xyz.scm (sbcl-cffi-uffi-compat, cl-cffi-uffi-compat): New
variables.
2020-02-28 23:38:37 +01:00
Mark H Weaver
512068a44f
gnu: linux-libre: Update to 5.4.23.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.23.
(linux-libre-5.4-pristine-source): Update hash.
2020-02-28 13:11:21 -05:00
Mark H Weaver
87b35007ce
gnu: linux-libre@4.19: Update to 4.19.107.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.107.
(linux-libre-4.19-pristine-source): Update hash.
2020-02-28 13:10:48 -05:00
Mark H Weaver
f9059c7a0b
gnu: linux-libre@4.14: Update to 4.14.172.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.172.
(linux-libre-4.14-pristine-source): Update hash.
2020-02-28 13:10:10 -05:00
Mark H Weaver
f989f94750
gnu: linux-libre@4.9: Update to 4.9.215.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.215.
(linux-libre-4.9-pristine-source): Update hash.
2020-02-28 13:09:42 -05:00
Mark H Weaver
8ba4c3eab1
gnu: linux-libre@4.4: Update to 4.4.215.
...
* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.215.
(linux-libre-4.4-pristine-source): Update hash.
2020-02-28 13:08:45 -05:00
Marius Bakke
d614f0bba9
Merge branch 'master' into staging
2020-02-28 19:07:46 +01:00
Marius Bakke
20c87138a9
gnu: elogind: Enable tests again.
...
* gnu/packages/freedesktop.scm (elogind)[arguments]: Remove "-Dtests" from
#:configure-flags. Add phase 'adjust-tests'.
2020-02-28 18:54:49 +01:00
Maxim Cournoyer
9f7a441def
gnu: earlyoom: Update to 1.3.1.
...
* gnu/packages/linux.scm (earlyoom): Update to 1.3.1.
2020-02-28 10:55:52 -05:00
Efraim Flashner
93f351c72f
gnu: rust-yaml-rust-0.4: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-yaml-rust-0.4)[arguments]: Don't skip
build. Replace rust-quickcheck-0.8 with 0.7 in cargo-development-inputs.
2020-02-28 16:10:07 +02:00
Ricardo Wurmus
9b17c4f7b8
gnu: Add lighttpd.
...
* gnu/packages/web.scm (lighttpd): New variable.
2020-02-28 13:55:08 +01:00
Ludovic Courtès
6813cb3fb3
gnu: guix: Update to c2f9ea2.
...
* gnu/packages/package-management.scm (guix): Update to c2f9ea2 .
2020-02-28 11:23:20 +01:00
Ricardo Wurmus
a954dc57f2
gnu: Remove guile-debbugs-next.
...
* gnu/packages/guile-xyz.scm (guile-debbugs-next): Remove variable.
* gnu/packages/mail.scm (mumi)[inputs]: Replace guile-debbugs-next with
guile-debbugs.
2020-02-28 10:09:21 +01:00
Ricardo Wurmus
5144f5425a
gnu: guile-debbugs: Update to 0.0.3.
...
* gnu/packages/guile-xyz.scm (guile-debbugs): Update to 0.0.3.
[source]: Remove snippet.
[propagated-inputs]: Add guile-email.
2020-02-28 10:09:21 +01:00
Leo Prikler
28c06217fb
gnu: delft-icon-theme: Update to 1.11.
...
* gnu/packages/gnome-xyz.scm (delft-icon-theme): Update to 1.11.
Signed-off-by: Pierre Neidhardt <mail@ambrevar.xyz >
2020-02-28 09:40:03 +01:00
Leo Prikler
3282137d0e
gnu: delft-icon-theme: Use the copy-build-system.
...
* gnu/packages/gnome-xyz.scm (delft-icon-theme): Use the copy-build-system.
Signed-off-by: Pierre Neidhardt <mail@ambrevar.xyz >
2020-02-28 09:39:55 +01:00
Leo Prikler
a3b1f878df
build-system: copy-build-system: Keep symlinks symbolic.
...
guix/build/copy-build-system.scm (install)[install-file]:
Read symlinks as is done in install-simple through copy-recursively.
Signed-off-by: Pierre Neidhardt <mail@ambrevar.xyz >
2020-02-28 09:39:31 +01:00
Marius Bakke
2e76ddd67f
gnu: OpenSSL: Do not inherit grafts on replacement package.
...
* gnu/packages/tls.scm (openssl-1.1.1d): Use INHERIT instead of PACKAGE/INHERIT.
2020-02-28 01:36:34 +01:00
Marius Bakke
a64cef121a
gnu: nghttp2@1.40: Do not inherit the replacement field.
...
* gnu/packages/web.scm (nghttp2-1.40): Use INHERIT instead of PACKAGE/INHERIT.
2020-02-28 01:36:34 +01:00
Ludovic Courtès
c2f9ea2b50
Revert "ui: Only display link in capable terminals."
...
This reverts commit d7545a6b53 .
The commit led to a test failure in 'tests/guix-package-net.sh'. It
also led to disagreements discussed here:
https://lists.gnu.org/archive/html/guix-devel/2020-02/msg00353.html
Reverting until these are addressed.
2020-02-28 00:03:34 +01:00
Ludovic Courtès
71c3c3df92
scripts: Adjust disk-space warning functionality.
...
This is a followup to fb7eec3a84 .
* guix/scripts.scm (warn-about-disk-space): Do not multiply
ABSOLUTE-THRESHOLD-IN-BYTES by 2^30. Compare AVAILABLE to the max of
RELATIVE-THRESHOLD-IN-BYTES and ABSOLUTE-THRESHOLD-IN-BYTES, not the
min. Display AVAILABLE divided by 2^30.
2020-02-27 23:56:14 +01:00
Ludovic Courtès
6b0653e7ec
guix package: Don't error out when failing to create ~/.guix-profile.
...
This is a followup to 7842ddcbc1 , which
broke tests when 'HOME' is unset.
* guix/scripts/package.scm (ensure-default-profile): Silently ignore
'symlink' exceptions.
2020-02-27 23:29:30 +01:00
Ludovic Courtès
749b958206
swh: Adjust 'origin' test.
...
This is a followup to 3d2f29382d .
* tests/swh.scm (%origin): Remove "id".
("lookup-origin"): Remove use of 'origin-id'.
2020-02-27 23:29:30 +01:00
Maxim Cournoyer
10a6b85969
gnu: emacs-sly-named-readtables: Disable byte compilation of its autoload file.
...
*gnu/packages/emacs-xyz.scm (emacs-sly-named-readtables)[phases]
{enable-autoloads-compilation}: Delete.
2020-02-27 16:59:08 -05:00
Maxim Cournoyer
cc09ad9115
gnu: emacs-sly-quicklisp: Remove the enable-autoloads-compilation phase.
...
* gnu/packages/emacs-xyz.scm (emacs-sly-quicklisp)[phases]
{enable-autoloads-compilation}: Remove.
2020-02-27 16:59:08 -05:00
Maxim Cournoyer
70d86540ed
gnu: emacs-sly-macrostep: Remove the enable-autoloads-compilation phase.
...
* gnu/packages/emacs-xyz.scm (emacs-sly-macrostep)[phases]
{enable-autoloads-compilation}: Remove.
2020-02-27 16:59:08 -05:00
Maxim Cournoyer
67dc3cdf9b
gnu: emacs-cl-generic: Disable byte compilation of its autoload file.
...
*gnu/packages/emacs-xyz.scm (emacs-cl-generic)[phases]
{enable-autoloads-compilation}: Delete.
2020-02-27 16:59:07 -05:00
Maxim Cournoyer
c6a91adabf
gnu: emacs: Fix comment.
...
* gnu/packages/emacs.scm (emacs): Fix comment.
2020-02-27 16:59:07 -05:00
Maxim Cournoyer
9659459f06
emacs-build-system: Byte compile the autoload files.
...
* guix/build/emacs-build-system.scm (enable-autoloads-compilation)
(validate-compiled-autoloads): Add procedures.
(%standard-phases): Register the new procedures.
* gnu/packages/aux-files/emacs/guix-emacs.el (guix-emacs-find-autoloads):
Remove duplicates in the list of autoload files found.
* guix/build/emacs-utils.scm (expr->string): Add procedure.
(emacs-batch-eval, emacs-batch-edit-file): Use it.
2020-02-27 16:59:07 -05:00
Maxim Cournoyer
4714d0fc1a
gnu: emacs: Byte compile the site-lisp directory.
...
* gnu/packages/emacs.scm (emacs): Use the (gnu build emacs-utils) module.
Byte compile the site-lisp directory as part of the 'install-site-start'
phase.
(emacs-minimal, emacs-xwidgets, emacs-no-x, emacs-no-x-toolkit): Reset modules
to those of the gnu-build-system.
2020-02-27 16:59:07 -05:00
Efraim Flashner
579235562d
gnu: emacs-flycheck-grammalecte: Fix build.
...
* gnu/packages/emacs-xyz.scm (emacs-flycheck-grammalecte)[arguments]:
Fix emacs install directory.
2020-02-27 21:35:45 +02:00
Efraim Flashner
ba8992d28b
gnu: emacs-edbi: Fix build.
...
* gnu/packages/emacs-xyz.scm (emacs-edbi)[arguments]: Fix emacs install
directory.
2020-02-27 21:29:32 +02:00
Valentin Ignatev
22e928003d
gnu: Add alacritty.
...
* gnu/packages/terminals.scm (alacritty): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:53 +02:00
Valentin Ignatev
d082ffe2c3
gnu: Add rust-http-req-0.5.
...
* gnu/packages/crates-io.scm (rust-http-req-0.5): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:53 +02:00
Valentin Ignatev
7cb8191cce
gnu: Add rust-native-tls-0.2.
...
* gnu/packages/crates-io.scm (rust-native-tls-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:53 +02:00
Valentin Ignatev
293334468b
gnu: Add rust-smithay-clipboard-0.3.
...
* gnu/packages/crates-io.scm (rust-smithay-clipboard-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:53 +02:00
Valentin Ignatev
46f8949163
gnu: Add rust-instant-0.1.
...
* gnu/packages/crates-io.scm (rust-instant-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:53 +02:00
Valentin Ignatev
e4c27df85b
gnu: Add rust-simd-0.1.
...
* gnu/packages/crates-io.scm (rust-simd-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:52 +02:00
Valentin Ignatev
337b4212e6
gnu: Add rust-security-framework-0.3.
...
* gnu/packages/crates-io.scm (rust-security-framework-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:52 +02:00
Valentin Ignatev
fbbd94bec9
gnu: Add rust-andrew-0.2.
...
* gnu/packages/crates-io.scm (rust-andrew-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:52 +02:00
Valentin Ignatev
eadeca1f6b
gnu: Add rust-rusttype-0.7.
...
* gnu/packages/crates-io.scm (rust-rusttype-0.7): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:52 +02:00
Valentin Ignatev
a9e090cba0
gnu: Add rust-glium-0.25.
...
* gnu/packages/crates-io.scm (rust-glium-0.25): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:52 +02:00
Valentin Ignatev
da9c2c1bc4
gnu: Add rust-glutin-0.21.
...
* gnu/packages/crates-io.scm (rust-glutin-0.21): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:51 +02:00
Valentin Ignatev
61de013c24
gnu: Add rust-core-video-sys-0.1.
...
* gnu/packages/crates-io.scm (rust-core-video-sys-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:51 +02:00
Valentin Ignatev
b4d0afdfbd
gnu: Add rust-metal-0.14.
...
* gnu/packages/crates-io.scm (rust-metal-0.14): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:51 +02:00
Valentin Ignatev
b6bbd9f248
gnu: Add rust-winit-0.19.
...
* gnu/packages/crates-io.scm (rust-winit-0.19): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:51 +02:00
Valentin Ignatev
78afc9a1bf
gnu: Add rust-smithay-client-toolkit-0.4.
...
* gnu/packages/crates-io.scm (rust-smithay-client-toolkit-0.4):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:50 +02:00
Valentin Ignatev
bef4454850
gnu: Add rust-wayland-protocols-0.21.
...
* gnu/packages/crates-io.scm (rust-wayland-protocols-0.21):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:50 +02:00
Valentin Ignatev
4bf64e891c
gnu: Add rust-wayland-server-0.21.
...
* gnu/packages/crates-io.scm (rust-wayland-server-0.21): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:50 +02:00
Valentin Ignatev
77f099aa5f
gnu: Add rust-wayland-client-0.21.
...
* gnu/packages/crates-io.scm (rust-wayland-client-0.21): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:50 +02:00
Valentin Ignatev
7592c7c3e4
gnu: Add rust-wayland-commons-0.21.
...
* gnu/packages/crates-io.scm (rust-wayland-commons-0.21): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:50 +02:00
Valentin Ignatev
75e4ad6713
gnu: Add rust-wayland-scanner-0.21.
...
* gnu/packages/crates-io.scm (rust-wayland-scanner-0.21): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:49 +02:00
Valentin Ignatev
d78c798bd7
gnu: Add rust-wayland-sys-0.21.
...
* gnu/packages/crates-io.scm (rust-wayland-sys-0.21): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:49 +02:00
Valentin Ignatev
41c4270724
gnu: Add rust-glutin-0.22.
...
* gnu/packages/crates-io.scm (rust-glutin-0.22): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:49 +02:00
Valentin Ignatev
97d8c6cd15
gnu: Add rust-winit-0.20.
...
* gnu/packages/crates-io.scm (rust-winit-0.20): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:49 +02:00
Efraim Flashner
3571af3e0f
gnu: Add rust-console-log-0.1.
...
* gnu/packages/crates-io.scm (rust-console-log-0.1): New variable.
2020-02-27 20:59:49 +02:00
Valentin Ignatev
abd2e421d0
gnu: Add rust-smithay-client-toolkit-0.6.
...
* gnu/packages/crates-io.scm (rust-smithay-client-toolkit-0.6):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:48 +02:00
Valentin Ignatev
07a7f722e6
gnu: Add rust-wayland-protocols-0.23.
...
* gnu/packages/crates-io.scm (rust-wayland-protocols-0.23): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:48 +02:00
Valentin Ignatev
895bb1f7d2
gnu: Add rust-wayland-server-0.23.
...
* gnu/packages/crates-io.scm (rust-wayland-server-0.23): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:48 +02:00
Valentin Ignatev
63f1301935
gnu: Add rust-wayland-client-0.23.
...
* gnu/packages/crates-io.scm (rust-wayland-client-0.23): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:48 +02:00
Valentin Ignatev
7d28b64dd9
gnu: Add rust-wayland-scanner-0.23.
...
* gnu/packages/crates-io.scm (rust-wayland-scanner-0.23): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:47 +02:00
Valentin Ignatev
36908ef9f0
gnu: Add rust-wayland-commons-0.23.
...
* gnu/packages/crates-io.scm (rust-wayland-commons-0.23): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:47 +02:00
Valentin Ignatev
d5eee77850
gnu: Add rust-wayland-sys-0.23.
...
* gnu/packages/crates-io.scm (rust-wayland-sys-0.23): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:47 +02:00
Valentin Ignatev
b8dbebdd73
gnu: rust-wasm-bindgen-0.2: Update to 0.2.58.
...
* gnu/packages/crates-io.scm (rust-wasm-bindgen-0.2,
(rust-wasm-bindgen-backend-0.2, rust-wasm-bindgen-macro-0.2
rust-wasm-bindgen-macro-support-0.2, rust-wasm-bindgen-shared-0.2):
Update to 0.2.58.
They all update at the same time.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:47 +02:00
Valentin Ignatev
bf7ac9dc55
gnu: rust-js-sys-0.3: Update to 0.3.35.
...
* gnu/packages/crates-io.scm (rust-js-sys-0.3): Update to 0.3.35.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:47 +02:00
Valentin Ignatev
bed6f02e51
gnu: Add rust-wasm-bindgen-test-crate-b-0.1.
...
* gnu/packages/crates-io.scm (rust-wasm-bindgen-test-crate-b-0.1):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:46 +02:00
Valentin Ignatev
c6ce1477ea
gnu: Add rust-wasm-bindgen-test-crate-a-0.1.
...
* gnu/packages/crates-io.scm (rust-wasm-bindgen-test-crate-a-0.1):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:46 +02:00
Valentin Ignatev
0f71a6a750
gnu: rust-wasm-bindgen-futures-0.3: Inherit from rust-wasm-bindgen-futures-0.4.
...
* gnu/packages/crates-io.scm (rust-wasm-bindgen-futures-0.3):
Inherit rust-wasm-bindgen-futures-0.4.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:46 +02:00
Valentin Ignatev
deeedc269b
gnu: rust-wasm-bindgen-test-0.2: Inherit from rust-wasm-bindgen-test-0.3.
...
* gnu/packages/crates-io.scm (rust-wasm-bindgen-test-0.2):
Inherit from rust-wasm-bindgen-test-0.3.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:46 +02:00
Valentin Ignatev
ede4cbc0ba
gnu: Add rust-wasm-bindgen-futures-0.4 and its dependencies.
...
* gnu/packages/crates-io.scm (rust-wasm-bindgen-futures-0.4): New variable.
* gnu/packages/crates-io.scm (rust-wasm-bindgen-test-0.3): New variable.
* gnu/packages/crates-io.scm (rust-web-sys-0.3): New variable.
Added in one commit because they have cyclic dependencies on each other.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:45 +02:00
Valentin Ignatev
d125c4f428
gnu: Add rust-wasm-bindgen-test-macro-0.3.
...
* gnu/packages/crates-io.scm (rust-wasm-bindgen-test-macro-0.3):
New variable.
(rust-wasm-bindgen-test-macro-0.2): Inherit from
rust-wasm-bindgen-test-macro-0.3.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:45 +02:00
Efraim Flashner
7c13962360
gnu: rust-wasm-bindgen-test-macro-0.2: Update to 0.2.50.
...
* gnu/packages/crates-io.scm (rust-wasm-bindgen-test-macro-0.2): Update
to 0.2.50.
[arguments]: Don't skip build.
2020-02-27 20:59:45 +02:00
Valentin Ignatev
11b8038d6f
gnu: Add rust-wasm-bindgen-webidl-0.2.
...
* gnu/packages/crates-io.scm (rust-wasm-bindgen-webidl-0.2):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:45 +02:00
Valentin Ignatev
c4f37fc1e0
gnu: Add rust-weedle-0.10.
...
* gnu/packages/crates-io.scm (rust-weedle-0.10): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:45 +02:00
Valentin Ignatev
8d715e6e75
gnu: Add rust-glutin-wgl-sys-0.1.
...
* gnu/packages/crates-io.scm (rust-glutin-wgl-sys-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:44 +02:00
Valentin Ignatev
4bf45749b8
gnu: Add rust-glutin-glx-sys-0.1.
...
* gnu/packages/crates-io.scm (rust-glutin-glx-sys-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:44 +02:00
Valentin Ignatev
0d35d89220
gnu: Add rust-glutin-gles2-sys-0.1.
...
* gnu/packages/crates-io.scm (rust-glutin-gles2-sys-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:44 +02:00
Valentin Ignatev
4199ee1050
gnu: Add rust-glutin-egl-sys-0.1.
...
* gnu/packages/crates-io.scm (rust-glutin-egl-sys-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:44 +02:00
Valentin Ignatev
f78f0d7ffe
gnu: Add rust-cocoa-0.18.
...
* gnu/packages/crates-io.scm (rust-cocoa-0.18): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:44 +02:00
Valentin Ignatev
db8da4de98
gnu: Add rust-cocoa-0.19.
...
* gnu/packages/crates-io.scm (rust-cocoa-0.19): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:43 +02:00
Valentin Ignatev
b5bda2cda4
gnu: Add rust-core-text-13.
...
* gnu/packages/crates-io.scm (rust-core-text-13): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:43 +02:00
Valentin Ignatev
67aee1c046
gnu: Add rust-core-graphics-0.17.
...
* gnu/packages/crates-io.scm (rust-core-graphics-0.17): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:43 +02:00
Valentin Ignatev
4b6f844ec2
gnu: Add rust-core-foundation-0.6.
...
* gnu/packages/crates-io.scm (rust-core-foundation-0.6): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:43 +02:00
Valentin Ignatev
355658ee60
gnu: Add rust-uuid-0.5.
...
* gnu/packages/crates-io.scm (rust-uuid-0.5): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:42 +02:00
Valentin Ignatev
e3249fe2ce
gnu: Add rust-sha1-0.2.
...
* gnu/packages/crates-io.scm (rust-sha1-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:42 +02:00
Valentin Ignatev
b090c2fd80
gnu: Add rust-openssl-0.7.
...
* gnu/packages/crates-io.scm (rust-openssl-0.7): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:42 +02:00
Valentin Ignatev
f1e4f87e77
gnu: Add rust-openssl-sys-extras-0.7.
...
* gnu/packages/crates-io.scm (rust-openssl-sys-extras-0.7):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:42 +02:00
Efraim Flashner
7c4e3488ff
Revert "gnu: Add rust-libressl-pnacl-sys-2."
...
This crate includes a vendored copy of libressl.
This reverts commit a86fc40dc3 .
2020-02-27 20:59:42 +02:00
Efraim Flashner
1240782c99
gnu: rust-gdi31-sys-0.2: Fix inputs.
...
* gnu/packages/crates-io.scm (rust-gdi32-sys-0.2)[arguments]: Move
rust-winapi-build-0.1 from cargo-development-inputs to cargo-inputs.
2020-02-27 20:59:41 +02:00
Valentin Ignatev
ad9e129f1e
gnu: Add rust-openssl-sys-0.7.
...
* gnu/packages/crates-io.scm (rust-openssl-sys-0.7): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:41 +02:00
Valentin Ignatev
1f38bd3394
gnu: Add rust-urlocator-0.1.
...
* gnu/packages/crates-io.scm (rust-urlocator-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:41 +02:00
Valentin Ignatev
af5271b275
gnu: Add rust-user32-sys-0.2.
...
* gnu/packages/crates-io.scm (rust-user32-sys-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-27 20:59:41 +02:00
Ricardo Wurmus
643d90bf74
gnu: infernal: Update to 1.1.3.
...
* gnu/packages/bioinformatics.scm (infernal): Update to 1.1.3.
[native-inputs]: Add python.
2020-02-27 18:18:34 +01:00
Ricardo Wurmus
e6cc426fbb
gnu: vcftools: Update to 0.1.16.
...
* gnu/packages/bioinformatics.scm (vcftools): Update to 0.1.16.
2020-02-27 18:18:34 +01:00
Kyle Meyer
0b61e1a096
gnu: git-annex: Update to 8.20200226.
...
* gnu/packages/haskell-apps.scm (git-annex): Update to 8.20200226.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-02-27 17:41:54 +01:00
Ricardo Wurmus
6c32e9b4dc
gnu: bedtools: Update to 2.29.2.
...
* gnu/packages/bioinformatics.scm (bedtools): Update to 2.29.2.
[native-inputs]: Replace python-2 with python-wrapper.
[license]: Change to Expat.
2020-02-27 17:38:17 +01:00
Ricardo Wurmus
d24b3b0213
gnu: rseqc: Update to 3.0.1.
...
* gnu/packages/bioinformatics.scm (rseqc): Update to 3.0.1.
[source]: Remove snippet.
[arguments]: Remove to build with Python 3.
[inputs]: Replace python2-cython, python2-pysam, and python2-numpy with
python-cython, python-pysam, and python-numpy, respectively; add
python-bx-python and python-pybigwig.
[native-inputs]: Replace python2-nose with python-nose.
2020-02-27 17:38:17 +01:00
Maxim Cournoyer
faa0fa3978
gnu: earlyoom: Update to latest commit to resolve a test failure.
...
* gnu/packages/linux.scm (earlyoom): Update to commit
7bd4b2c9a285d2b9a4ef6e7a080e83ab95fcdeea.
2020-02-27 09:34:46 -05:00
Maxim Cournoyer
e64c5a8fe4
gnu: git-repo: Really disable self update.
...
* gnu/packages/android.scm (git-repo)[phases]{do-not-self-update}: Rename
phase from 'do-not-clone-this-source. Rework the patching done to prevent
repo from self updating.
{set-executable-paths}: Do not patch the reference to GnuPG, as it is only
necessary for the self update mechanism, which is disabled.
[inputs]: Remove gnupg.
2020-02-27 09:34:46 -05:00
Maxim Cournoyer
0c0156089c
gnu: git-repo: Update to 2.4.1.
...
* gnu/packages/android.scm (git-repo): Update to 2.4.1.
2020-02-27 09:34:46 -05:00
Brice Waegeneire
e7075353e0
gnu: kicad: Add translations and search paths.
...
* gnu/packages/engineering.scm (kicad)[arguments]<#:phases>[install-translations]: New phase.
[native-search-paths]: Add specification for KICAD_TEMPLATE_DIR,
KICAD_SYMBOL_DIR, KISYSMOD and KISYS3DMOD.
[native-inputs]: Add desktop-file-utils and kicad-i18l.
[inputs]: Remove desktop-file-utils. Replace python by
python-wrapper.
(kicad-i18l): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-02-27 14:31:26 +01:00
Brice Waegeneire
badc3c6783
gnu: kicad-symbols: Update synopsis and description.
...
* gnu/packages/engineering.scm (kicad-symbols)[synopsis]: Update.
[description]: Update.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-02-27 14:31:26 +01:00
Brice Waegeneire
0528474223
gnu: Remove kicad-library.
...
* gnu/packages/engineering.scm (kicad-library): Remove variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-02-27 14:31:26 +01:00
Brice Waegeneire
ca839f3c18
gnu: Add kicad-templates.
...
* gnu/packages/engineering.scm (kicad-templates): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-02-27 14:31:26 +01:00
Brice Waegeneire
c595150709
gnu: Add kicad-packages3d.
...
* gnu/packages/engineering.scm (kicad-packages3d): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-02-27 14:31:26 +01:00
Brice Waegeneire
259e65aac1
gnu: Add kicad-footprints.
...
* gnu/packages/engineering.scm (kicad-footprints): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-02-27 14:31:23 +01:00
Pierre Neidhardt
a69bc7386f
gnu: Add lttng-ust.
...
* gnu/packages/linux.scm (lttng-ust): New variable.
2020-02-27 14:06:57 +01:00
Pierre Neidhardt
e10587c5a5
gnu: gnome-shell-extension-noannoyance: Fix synopsis and description.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-noannoyance)[synopsis]:
Use imperative form.
[description]: Remove spurious comma.
2020-02-27 11:33:49 +01:00
Leo Prikler
c456d18b50
gnu: gnome-shell-extension-noannoyance: Use the copy-build-system.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-noannoyance):
Use the copy-build-system.
2020-02-27 11:31:19 +01:00
Leo Prikler
f6a151cdc6
gnu: gnome-shell-extension-appindicator: Use the copy-build-system.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator):
Use the copy-build-system.
2020-02-27 11:29:03 +01:00
Alex Griffin
fdd4813547
gnu: Add gnome-shell-extension-gsconnect.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-gsconnect): New variable.
2020-02-27 10:58:46 +01:00
Pierre Neidhardt
b7d0590bb2
gnu: emacs-evil-collection: Update to 20200219.
...
* gnu/packages/emacs-xyz.scm (emacs-evil-collection): Update to 20200219.
2020-02-27 10:57:57 +01:00
Arun Isaac
83ee1e91b0
gnu: Add emacs-password-generator.
...
* gnu/packages/emacs-xyz.scm (emacs-password-generator): New variable.
2020-02-27 10:45:47 +01:00
Arun Isaac
b4e0f0dc37
gnu: Add emacs-exiftool.
...
* gnu/packages/emacs-xyz.scm (emacs-exiftool): New variable.
2020-02-27 10:42:14 +01:00
Vagrant Cascadian
2d9b05817d
gnu: opensbi-qemu-sifive-u: Mark as deprecated.
...
* gnu/packages/firmware (opensbi-qemu-sifive-u): Deprecated by
opensbi-sifive-fu540.
2020-02-26 23:48:06 -08:00
Vagrant Cascadian
5eeb70a709
gnu: opensbi: Update to 0.6.
...
* gnu/packages/firmware (make-opensbi-package): Update to 0.6.
2020-02-26 23:47:49 -08:00
Vagrant Cascadian
d854ab1595
gnu: python-construct: Update to 2.10.56.
...
* gnu/packages/python-xyz (python-construct): Update to 2.10.56.
2020-02-26 22:24:31 -08:00
Vagrant Cascadian
760dfc67cd
gnu: u-boot-pinebook: Fix LCD video output.
...
* gnu/packages/bootloaders (u-boot-pinebook): Add phase applying patch
submitted upstream.
2020-02-26 22:23:17 -08:00
Nicolas Goaziou
c3435e2e60
gnu: Add emacs-org-superstar.
...
* gnu/packages/emacs-xyz.scm (emacs-org-superstar): New variable.
2020-02-26 22:31:46 +01:00
Jakub Kądziołka
37db2370db
gnu: icecat: Remove about:buildconfig store references.
...
* gnu/packages/gnuzilla.scm (icecat)[arguments]:
New ‘neutralise-store-references’ phase.
Co-authored-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-02-26 22:29:22 +01:00
Marius Bakke
7fe962788a
Merge branch 'master' into staging
2020-02-26 22:13:11 +01:00
Ludovic Courtès
2e4011465b
git-authenticate: Remove duplicate entry.
...
* build-aux/git-authenticate.scm (%committers): Remove duplicate of snape.
2020-02-26 22:11:19 +01:00
Ludovic Courtès
a73a530df2
git-authenticate: Add sub-key for thomasd.
...
This is a followup to commit 7dc0f1d5a8 ,
signed with sub-key "3D2C DA58 819C 08C2 A649 D43D 5C3B 064C 724A 5726".
* build-aux/git-authenticate.scm (%committers): Provide fingerprint of
subkey for thomasd.
2020-02-26 22:09:44 +01:00
Pierre Neidhardt
fb7eec3a84
scripts: Emit GC hint if free space is lower than absolute and relative threshold.
...
* guix/scripts.scm (%disk-space-warning-absolute): New variable.
(warn-about-disk-space): Test against %disk-space-warning-absolute.
Fix error in display-hint due to extraneous 'profile' argument.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-26 22:05:56 +01:00
Ludovic Courtès
513c0a0f46
daemon: Drop 'AT_STATX_DONT_SYNC' flag upon EINVAL.
...
Fixes <https://bugs.gnu.org/39727 >.
Reported by Paul Garlick <pgarlick@tourbillion-technology.com >.
* nix/libstore/gc.cc (LocalStore::removeUnusedLinks) [HAVE_STATX]: Add
'statx_flags' static variables. Clear 'AT_STATX_DONT_SYNC' flag from
'statx_flags' when 'statx' returns EINVAL.
2020-02-26 22:05:56 +01:00
Evan Straw
e524b57740
gnu: awscli: Update to 1.18.6.
...
* gnu/packages/python-web.scm (awscli): Update to 1.18.6.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-26 21:52:48 +01:00
Jack Hill
cae3b3774e
gnu: vim-full: Describe differences from vim.
...
* gnu/packages/vim.scm (vim-full)[description]: New field. Explain what
vim-full provides over vim.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-26 21:52:48 +01:00
Vincent Legoll
233332c2e9
gnu: musl: Update to 1.2.0.
...
* gnu/packages/musl (musl): Update to 1.2.0.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-26 21:52:48 +01:00
Vincent Legoll
176dd26b38
gnu: benchmark: Add bonnie++.
...
* gnu/packages/benchmark.scm (bonnie++): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-26 21:52:48 +01:00
Kyle Meyer
b18d3c5268
gnu: emacs-eacl: Fix typo in description.
...
* gnu/packages/emacs-xyz.scm (emacs-eacl)[description]: Correct misspelling of
"commands".
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-26 21:52:47 +01:00
Kyle Meyer
66ed570a05
gnu: emacs-elixir-mode: Fix capitalization in description.
...
* gnu/packages/emacs-xyz.scm (emacs-elixir-mode)[description]: Downcase
incorrectly capitalized word.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-26 21:52:47 +01:00
Marius Bakke
5041cc28cb
gnu: clang: Move version conditionals out of the builder.
...
* gnu/packages/llvm.scm (clang-from-llvm)[arguments]: Rewrite phase
'set-glibc-file-names' to use VERSION>=? from (guix utils) and splice in the
relevant build code, instead of doing the comparison at build time.
2020-02-26 21:52:47 +01:00
Marius Bakke
f5cc5de8b6
gnu: clang: Fix C++ search path handling on non-x86_64.
...
* gnu/packages/llvm.scm (clang-from-llvm)[arguments]: Add phase
'add-missing-triplets'.
2020-02-26 21:52:47 +01:00
Marius Bakke
5cfc6a88e9
gnu: node: Disable failing tests on armhf-linux.
...
* gnu/packages/node.scm (node)[arguments]: When building on
armhf-linux, disable several zlib tests.
2020-02-26 21:52:47 +01:00
Marius Bakke
458c3ff552
gnu: node: Update to 10.19.0.
...
* gnu/packages/node.scm (node): Update to 10.19.0.
[inputs]: Remove LIBUV and NGHTTP2:LIB. Add LIBUV/LATEST and
NGHTTP2-1.40:LIB.
2020-02-26 21:52:47 +01:00
Marius Bakke
bbd804b29b
gnu: nghttp2: Add version 1.40.0.
...
* gnu/packages/web.scm (nghttp2-1.40): New public variable.
2020-02-26 21:52:46 +01:00
Marius Bakke
ae9cfc647d
gnu: LibUV: Add version 1.34.2.
...
* gnu/packages/libevent.scm (libuv/latest): New public variable.
2020-02-26 21:52:46 +01:00
Marius Bakke
6fda3a6cb4
gnu: pocl: Build with LLVM@9.
...
* gnu/packages/opencl.scm (pocl)[inputs]: Change from LLVM-8 to LLVM.
2020-02-26 21:52:46 +01:00
Evan Straw
b68f5a68f8
gnu: Add emacs-company-emoji.
...
[[PGP Signed Part:No public key for F530C3B4A2A9F06D created at 2020-02-23T04:48:54+0100 using RSA]]
From 6c23c5966a3c7ed01c784874e410d5fe3009bfc5 Mon Sep 17 00:00:00 2001
From: Evan Straw <evan.straw99@gmail.com >
Date: Sat, 22 Feb 2020 19:47:19 -0800
Subject: [PATCH] gnu: Add emacs-company-emoji.
* gnu/packages/emacs-xyz.scm (emacs-company-emoji): New variable.
2020-02-26 15:44:28 +01:00
Ricardo Wurmus
146430ea0e
gnu: proteinortho: Update to 6.0.14.
...
* gnu/packages/bioinformatics.scm (proteinortho): Update to 6.0.14.
[source]: Fetch from git; remove pre-built scripts.
[arguments]: Set make-flags; update wrap-programs phase to wrap all scripts.
[inputs]: Add guile-3.0, diamond, python-wrapper, lapack, and openblas; remove
python-2.
[native-inputs]: Add which.
[license]: Update to GPLv3+
2020-02-26 14:07:32 +01:00
Ricardo Wurmus
9207575669
gnu: diamond: Update to 0.9.30.
...
* gnu/packages/bioinformatics.scm (diamond): Update to 0.9.30.
2020-02-26 14:07:32 +01:00
Ricardo Wurmus
b38dd34f40
gnu: crossmap: Update to 0.3.8.
...
* gnu/packages/bioinformatics.scm (crossmap): Update to 0.3.8.
[arguments]: Remove to build with default Python.
[inputs]: Add python-pybigwig; replace python2-bx-python, python2-numpy, and
python2-pysam with their Python 3 variants.
[native-inputs]: Replace python2-cython and python2-nose with their Python 3
variants.
2020-02-26 14:07:32 +01:00
Valentin Ignatev
a86fc40dc3
gnu: Add rust-libressl-pnacl-sys-2.
...
* gnu/packages/crates-io.scm (rust-libressl-pnacl-sys-2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:55 +02:00
Valentin Ignatev
754917c903
gnu: Add rust-pnacl-build-helper-1.4.
...
* gnu/packages/crates-io.scm (rust-pnacl-build-helper-1.4):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:55 +02:00
Valentin Ignatev
b7c40a9713
gnu: Add rust-zip-0.5.
...
* gnu/packages/crates-io.scm (rust-zip-0.5): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:55 +02:00
Valentin Ignatev
f4b8c27297
gnu: Add rust-bzip2-0.3.
...
* gnu/packages/crates-io.scm (rust-bzip2-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:55 +02:00
Valentin Ignatev
66d27f5d77
gnu: Add rust-partial-io-0.2.
...
* gnu/packages/crates-io.scm (rust-partial-io-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:55 +02:00
Valentin Ignatev
63502072bd
gnu: Add rust-winpty-sys-0.4.
...
* gnu/packages/crates-io.scm (rust-winpty-sys-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:54 +02:00
Valentin Ignatev
bb088feeff
gnu: Add rust-bindgen-0.33.
...
* gnu/packages/crates-io.scm (rust-bindgen-0.33): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:54 +02:00
Valentin Ignatev
d1e647e363
gnu: Add rust-cexpr-0.2.
...
* gnu/packages/crates-io.scm (rust-cexpr-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:54 +02:00
Valentin Ignatev
389f9ab6ab
gnu: Add rust-clang-sys-0.11.
...
* gnu/packages/crates-io.scm (rust-clang-sys-0.11): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:54 +02:00
Valentin Ignatev
a83d31ef84
gnu: Add rust-libloading-0.3.
...
* gnu/packages/crates-io.scm (rust-libloading-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:54 +02:00
Valentin Ignatev
f6a57eecbe
gnu: Add rust-target-build-utils-0.3.
...
* gnu/packages/crates-io.scm (rust-target-build-utils-0.3):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:53 +02:00
Valentin Ignatev
c7d5b98dd9
gnu: Add rust-serde-json-0.9.
...
* gnu/packages/crates-io.scm (rust-serde-json-0.9): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:53 +02:00
Valentin Ignatev
6b11c1e401
gnu: Add rust-linked-hash-map-0.4.
...
* gnu/packages/crates-io.scm (rust-linked-hash-map-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:53 +02:00
Valentin Ignatev
537f998be7
gnu: Add rust-serde-macros-0.4.
...
* gnu/packages/crates-io.scm (rust-serde-macros-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:53 +02:00
Valentin Ignatev
be9655d96d
gnu: Add rust-serde-test-0.9.
...
* gnu/packages/crates-io.scm (rust-serde-test-0.9): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:52 +02:00
Valentin Ignatev
87c1e7f5c9
gnu: Add rust-serde-0.4.
...
* gnu/packages/crates-io.scm (rust-serde-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:52 +02:00
Valentin Ignatev
1516f20a27
gnu: Add rust-serde-0.9.
...
* gnu/packages/crates-io.scm (rust-serde-0.9): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:52 +02:00
Valentin Ignatev
7881fc114e
gnu: Add rust-serde-derive-0.9.
...
* gnu/packages/crates-io.scm (rust-serde-derive-0.9): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:52 +02:00
Valentin Ignatev
8119352ffa
gnu: Add rust-serde-codegen-internals-0.14.
...
* gnu/packages/crates-io.scm (rust-serde-codegen-internals-0.14):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-26 14:00:52 +02:00
Ricardo Wurmus
640d910427
gnu: macs: Update to 2.2.6.
...
* gnu/packages/bioinformatics.scm (macs): Update to 2.2.6.
[source]: Fetch from git.
[arguments]: Enable tests, build with default Python.
[inputs]: Replace python2-numpy with python-numpy.
[native-inputs]: Add python-pytest.
2020-02-26 12:53:23 +01:00
Guillaume Le Vaillant
0e9fc3d61f
gnu: Add cl-dbd-sqlite3.
...
* gnu/packages/lisp-xyz.scm (sbcl-dbd-sqlite3, cl-dbd-sqlite3): New variables.
2020-02-26 11:29:28 +01:00
Guillaume Le Vaillant
af469826e2
gnu: Add cl-dbd-postgres.
...
* gnu/packages/lisp-xyz.scm (sbcl-dbd-postgres, cl-dbd-postgres): New
variables.
2020-02-26 11:29:28 +01:00
Guillaume Le Vaillant
903d0e81a1
gnu: Add cl-dbd-mysql.
...
* gnu/packages/lisp-xyz.scm (sbcl-dbd-mysql, cl-dbd-mysql): New variables.
2020-02-26 11:29:28 +01:00
Guillaume Le Vaillant
47a6cde09c
gnu: Add cl-dbi.
...
* gnu/packages/lisp-xyz.scm (sbcl-dbi, cl-dbi): New variables.
2020-02-26 11:29:28 +01:00
Guillaume Le Vaillant
add1a3561f
gnu: Add cl-postmodern.
...
* gnu/packages/lisp-xyz.scm (sbcl-postmodern, cl-postmodern): New variables.
2020-02-26 11:29:27 +01:00
Guillaume Le Vaillant
88dbe39b16
gnu: Add cl-s-sql.
...
* gnu/packages/lisp-xyz.scm (sbcl-s-sql, cl-s-sql): New variables.
2020-02-26 11:29:27 +01:00
Guillaume Le Vaillant
acba62d9bd
gnu: Add cl-simple-date-postgres-glue.
...
* gnu/packages/lisp-xyz.scm (sbcl-simple-date-postgres-glue,
cl-simple-date-postgres-glue): New variables.
2020-02-26 11:29:27 +01:00
Guillaume Le Vaillant
f5203d2584
gnu: Add cl-postgres.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-postgres, cl-postgres): New variables.
2020-02-26 11:29:27 +01:00
Guillaume Le Vaillant
c79ea1a217
gnu: Add cl-simple-date.
...
* gnu/packages/lisp-xyz.scm (sbcl-simple-date, cl-simple-date,
ecl-simple-date): New variables.
2020-02-26 11:29:27 +01:00
Guillaume Le Vaillant
8a6c0f5515
gnu: Add cl-mysql.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-mysql, cl-mysql): New variables.
2020-02-26 11:29:27 +01:00
Ricardo Wurmus
849f6bc20b
gnu: Add r-rstanarm.
...
* gnu/packages/cran.scm (r-rstanarm): New variable.
2020-02-26 10:12:36 +01:00
Ricardo Wurmus
f3de8b6c8a
gnu: Add r-rstan.
...
* gnu/packages/cran.scm (r-rstan): New variable.
2020-02-26 10:12:28 +01:00
Ricardo Wurmus
762d3ca3dd
gnu: Add r-loo.
...
* gnu/packages/cran.scm (r-loo): New variable.
2020-02-26 10:12:14 +01:00
Ricardo Wurmus
70af390f62
gnu: Add r-rstantools.
...
* gnu/packages/cran.scm (r-rstantools): New variable.
2020-02-26 10:12:02 +01:00
Ricardo Wurmus
410cfa78be
gnu: Add r-shinystan.
...
* gnu/packages/cran.scm (r-shinystan): New variable.
2020-02-26 10:11:51 +01:00
Ricardo Wurmus
0ecb3a8bb4
gnu: Add r-dygraphs.
...
* gnu/packages/cran.scm (r-dygraphs): New variable.
2020-02-26 09:18:17 +01:00
Ricardo Wurmus
59c5f85d06
gnu: Remove python-loompy-for-pigx-scrnaseq.
...
* gnu/packages/bioinformatics.scm (python-loompy-for-pigx-scrnaseq): Remove
variable.
2020-02-26 08:59:11 +01:00
Ricardo Wurmus
4f19106770
gnu: pigx-scrnaseq: Update to 1.1.3.
...
* gnu/packages/bioinformatics.scm (pigx-scrnaseq): Update to 1.1.3.
[arguments]: Remove.
[inputs]: Remove dropseq-tools and java-picard; add flexbar, jellyfish, and
r-seurat; replace python-loompy-for-pigx-scrnaseq with python-loompy.
2020-02-26 08:58:06 +01:00
Ricardo Wurmus
290b55c55a
gnu: clang-runtime-3.5: Fix build.
...
* gnu/packages/llvm.scm (clang-runtime-3.5)
[inputs]: Add libtirpc.
[arguments]: Add phase to find rpc headers.
2020-02-25 22:49:20 +01:00
Ricardo Wurmus
d2ebdb795d
gnu: Add r-rsconnect.
...
* gnu/packages/cran.scm (r-rsconnect): New variable.
2020-02-25 22:49:20 +01:00
Ricardo Wurmus
91f242357d
gnu: Add r-packrat.
...
* gnu/packages/cran.scm (r-packrat): New variable.
2020-02-25 22:49:20 +01:00
Alexandros Theodotou
6616b22b12
gnu: zrythm: Update to 0.7.573.
...
* gnu/packages/music.scm (zrythm): Update to 0.7.573.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-02-25 20:16:55 +01:00
Marius Bakke
dcc3f21586
gnu: libzip: Update to 1.6.1.
...
* gnu/packages/compression.scm (libzip): Update to 1.6.1.
[inputs]: Add XZ.
2020-02-25 18:35:34 +01:00
Marius Bakke
93f71b29a5
gnu: python-xmlschema: Update to 1.1.1.
...
* gnu/packages/xml.scm (python-xmlschema): Update to 1.1.1.
2020-02-25 18:35:34 +01:00
Marius Bakke
cce5903672
gnu: xapian: Update to 1.4.15.
...
* gnu/packages/search.scm (xapian, python-xapian-bindings): Update to 1.4.15.
2020-02-25 18:35:34 +01:00
Marius Bakke
cbd8d8a879
gnu: libgphoto2: Update to 2.5.24.
...
* gnu/packages/photo.scm (libgphoto2): Update to 2.5.24.
2020-02-25 18:35:34 +01:00
Marius Bakke
eab27d2277
gnu: fluidsynth: Update to 2.1.1.
...
* gnu/packages/audio.scm (fluidsynth): Update to 2.1.1.
2020-02-25 18:35:33 +01:00
Marius Bakke
1b01c103db
gnu: mbedtls-apache: Update to 2.16.5.
...
* gnu/packages/tls.scm (mbedtls-apache): Update to 2.16.5.
2020-02-25 18:35:33 +01:00
Marius Bakke
adf323e0d7
gnu: ungoogled-chromium: Update to 80.0.3987.122-0.bb952f1 [security fixes].
...
This release fixes CVE-2020-6407 and CVE-2020-6418.
* gnu/packages/chromium.scm (%chromium-version): Set to 80.0.3987.122.
(%ungoogled-revision): Update to 6056988937eb.
(%chromium-origin): Update hash.
(%ungoogled-origin): Download from pull request, update hash.
2020-02-25 18:35:33 +01:00
Marius Bakke
bfce33cdff
gnu: ungoogled-chromium-wayland: Fix build.
...
* gnu/packages/chromium.scm (ungoogled-chromium/wayland)[arguments]: Add #:phases.
2020-02-25 18:35:33 +01:00
Marius Bakke
d64584cfb3
gnu: ungoogled-chromium: Add license information about preserved files.
...
This is a follow-up to commit f613d459be .
* gnu/packages/chromium.scm (%preserved-third-party-files): Annotate newly
added entries with license information.
2020-02-25 18:35:33 +01:00
Pierre Neidhardt
f5520827b5
gnu: emacs-geiser: Update to 0.11.2.
...
* gnu/packages/emacs-xyz.scm (emacs-geiser): Update to 0.11.2.
2020-02-25 15:52:38 +01:00
Valentin Ignatev
f93a13c44a
gnu: Add rust-syn-0.11 and rust-synom-0.11.
...
* gnu/packages/crates-io.scm (rust-syn-0.11, rust-synom-0.11):
New variables.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:59 +02:00
Valentin Ignatev
d489351cf8
gnu: Add rust-walkdir-1.0.
...
* gnu/packages/crates-io.scm (rust-walkdir-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:59 +02:00
Efraim Flashner
40b4b6dfee
gnu: rust-regex-syntax-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-regex-syntax-0.3)[arguments]: Don't
skip build.
2020-02-25 16:48:59 +02:00
Valentin Ignatev
8d90f2c786
gnu: Add rust-quickcheck-0.4.
...
* gnu/packages/crates-io.scm (rust-quickcheck-0.4): New variable.
(rust-quickcheck-0.2): Inherit from rust-quickcheck-0.4.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:59 +02:00
Efraim Flashner
ba8984cf3d
gnu: rust-conv-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-conv-0.3)[source]: Add snippet to
relax version requirements.
[arguments]: Don't skip build.
2020-02-25 16:48:58 +02:00
Valentin Ignatev
d3237cd302
gnu: Add rust-regex-0.1 and its cyclic dependencies.
...
* gnu/packages/crates-io.scm (rust-regex-0.1, rust-aho-corasick-0.5,
rust-byteorder-0.5, rust-csv-0.14, rust-docopt-0.6, rust-memchr-0.1,
rust-utf8-ranges-0.1): New variables.
(rust-env-logger-0.3)[arguments]: Add missing input.
(rust-quickcheck-0.2)[arguments]: Don't skip build.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:58 +02:00
Valentin Ignatev
2a75243042
gnu: Add rust-obj-0.9.
...
* gnu/packages/crates-io.scm (rust-obj-0.9): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:58 +02:00
Valentin Ignatev
341069bac6
gnu: Add rust-genmesh-0.6.
...
* gnu/packages/crates-io.scm (rust-genmesh-0.6): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:58 +02:00
Valentin Ignatev
ef6242415b
gnu: Add rust-cgmath-0.16.
...
* gnu/packages/crates-io.scm (rust-cgmath-0.16): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:57 +02:00
Valentin Ignatev
a836f50b46
gnu: Add rust-cgmath-0.17.
...
* gnu/packages/crates-io.scm (rust-cgmath-0.17): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:57 +02:00
Valentin Ignatev
b2ebcacd2d
gnu: Add rust-rusttype-0.8.
...
* gnu/packages/crates-io.scm (rust-rusttype-0.8): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:57 +02:00
Valentin Ignatev
a36b06561f
gnu: Add rust-line-drawing-0.7.
...
* gnu/packages/crates-io.scm (rust-line-drawing-0.7): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:57 +02:00
Valentin Ignatev
d899e93052
gnu: Add rust-image-0.20.
...
* gnu/packages/crates-io.scm (rust-image-0.20): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:57 +02:00
Valentin Ignatev
4e832827e2
gnu: Add rust-image-0.21.
...
* gnu/packages/crates-io.scm (rust-image-0.21): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:56 +02:00
Valentin Ignatev
4aaa7e13d9
gnu: Add rust-image-0.22.
...
* gnu/packages/crates-io.scm (rust-image-0.22): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:56 +02:00
Valentin Ignatev
9fba0256cb
gnu: Add rust-tiff-0.2.
...
* gnu/packages/crates-io.scm (rust-tiff-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:56 +02:00
Valentin Ignatev
48748d53de
gnu: Add rust-tiff-0.3.
...
* gnu/packages/crates-io.scm (rust-tiff-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:56 +02:00
Valentin Ignatev
def0676b0b
gnu: Add rust-jpeg-decoder-0.1.
...
* gnu/packages/crates-io.scm (rust-jpeg-decoder-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 16:48:56 +02:00
Ricardo Wurmus
788de3aec8
gnu: jamm: Update to 1.0.7.6.
...
* gnu/packages/bioinformatics.scm (jamm): Update to 1.0.7.6.
2020-02-25 15:37:27 +01:00
Mădălin Ionel Patrașcu
c51c0033d0
gnu: Add r-bsgenome-hsapiens-ncbi-grch38.
...
* gnu/packages/bioconductor.scm (r-bsgenome-hsapiens-ncbi-grch38): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2020-02-25 15:37:27 +01:00
Jelle Licht
1fc47a9b49
gnu: plantuml: Update to 1.2020.1.
...
* gnu/packages/uml.scm (plantuml): Update to 1.2020.1.
[arguments]<#:phases>[delete-extra-from-classpath]: Modify.
2020-02-25 13:47:40 +01:00
Danny Milosavljevic
12f0aefd14
build-system/linux-module: Disable depmod.
...
* guix/build/linux-module-build-system.scm (install): Disable depmod.
2020-02-25 10:22:19 +01:00
Valentin Ignatev
2a9521f7cc
gnu: Add rust-png-0.12.
...
* gnu/packages/crates-io.scm (rust-png-0.12): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 10:41:42 +02:00
Valentin Ignatev
b043a3404b
gnu: Add rust-png-0.14.
...
* gnu/packages/crates-io.scm (rust-png-0.14): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 10:41:37 +02:00
Valentin Ignatev
c67c3a676c
gnu: Add rust-png-0.15.
...
* gnu/packages/crates-io.scm (rust-png-0.15): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 10:41:08 +02:00
Valentin Ignatev
753a43c2e8
gnu: Add rust-servo-fontconfig-0.4.
...
* gnu/packages/crates-io.scm (rust-servo-fontconfig-0.4):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 10:36:17 +02:00
Valentin Ignatev
935cfbae63
gnu: Add rust-servo-fontconfig-sys-4.
...
* gnu/packages/crates-io.scm (rust-servo-fontconfig-sys-4):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 10:31:07 +02:00
Valentin Ignatev
448a63ee41
gnu: Add rust-servo-freetype-sys-4.
...
* gnu/packages/crates-io.scm (rust-servo-freetype-sys-4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 10:17:26 +02:00
Efraim Flashner
2a7940e83e
gnu: rust-nix-0.15: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-nix-0.15)[arguments]: Don't skip
build. Skip tests. Move rust-cc-1.0 from cargo-development-inputs to
cargo-inputs. Replace rust-rand-0.4 with 0.6, rust-sysctl-0.4 with 0.1
in cargo-development-inputs.
2020-02-25 10:03:47 +02:00
Valentin Ignatev
3800d492ca
gnu: Add rust-sema-0.1.
...
* gnu/packages/crates-io.scm (rust-sema-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 09:51:58 +02:00
Valentin Ignatev
8b2708a566
gnu: Add rust-expat-sys-2.1.
...
* gnu/packages/crates-io.scm (rust-expat-sys-2.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 09:44:21 +02:00
Valentin Ignatev
519c7d056c
gnu: Add rust-gif-0.10.
...
* gnu/packages/crates-io.scm (rust-gif-0.10): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 09:38:24 +02:00
Valentin Ignatev
c6f876c889
gnu: Add rust-memmap-0.2.
...
* gnu/packages/crates-io.scm (rust-memmap-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 09:36:51 +02:00
Valentin Ignatev
54a9682583
gnu: Add rust-color-quant-1.0.
...
* gnu/packages/crates-io.scm (rust-color-quant-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-25 09:35:20 +02:00
Efraim Flashner
d70e74ce0e
gnu: datamash: Update to 1.6.
...
* gnu/packages/datamash.scm (datamash): Update to 1.6.
2020-02-25 08:53:50 +02:00
Tobias Geerinckx-Rice
0d197a63d1
gnu: font-fantasque-sans: Update to 1.8.0.
...
* gnu/packages/fonts.scm (font-fantasque-sans): Update to 1.8.0.
[native-inputs]: Remove ttf2eot.
[arguments]: Rename the ‘xrange->range’ phase to ‘support-python@3’. Patch another Python twoism.
2020-02-25 02:00:05 +01:00
Tobias Geerinckx-Rice
679d41b440
Revert "gnu: vim: Fix build on CoW file systems."
...
This reverts commit b947ba77e6 .
2020-02-25 02:00:05 +01:00
Julien Lepiller
c23b42dd55
guix: node-build-system: Do not symlink /bin.
...
* guix/build/node-build-system.scm (install): Do not add a symlink for
/bin.
2020-02-25 00:27:09 +01:00
Marius Bakke
f613d459be
gnu: ungoogled-chromium: Update to 80.0.3987.116-0.bb952f1.
...
* gnu/packages/chromium.scm (%preserved-third-party-files): Adjust for
Chromium 80.
(%chromium-version): Set to 80.0.3987.116.
(%ungoogled-revision): Set to bb952f18c8c80c569583edd8dbb0b54443f49043.
(%debian-revision): Set to debian/80.0.3987.116-1.
(%chromium-origin, %ungoogled-origin, %debian-origin): Update hashes.
(ungoogled-chromium)[arguments]: In #:configure-flags, add "is_cfi=false".
Remove "is_clang", "enable_iterator_debugging", "exclude_unwind_tables",
"use_jumbo_build", "jumbo_file_merge_limit". Adjust environment for building
with Clang.
[native-inputs]: Remove GCC-8. Add CLANG-9 and LD-WRAPPER-NEXT.
2020-02-24 22:56:30 +01:00
Marius Bakke
25590118ad
gnu: Add ld wrapper variant that supports quotes in response files.
...
* gnu/packages/ld-wrapper-next.in: New file.
* gnu/local.mk (MISC_DISTRO_FILES): Adjust accordingly.
* gnu/packages/chromium.scm (ld-wrapper-next): New variable.
2020-02-24 22:47:15 +01:00
Giacomo Leidi
2e0787a575
gnu: Add libtcod.
...
* gnu/packages/game-development.scm (libtcod): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-24 21:50:55 +01:00
Giacomo Leidi
7eed584507
gnu: Add lodepng.
...
* gnu/packages/image.scm (lodepng): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-24 21:50:55 +01:00
Brice Waegeneire
9844848b23
gnu: bluez: Update to 5.53.
...
* gnu/packages/linux.scm (bluez): Update to 5.53.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-24 19:41:35 +01:00
Marius Bakke
30ea79c655
gnu: pciutils: Update to 3.6.4.
...
* gnu/packages/pciutils.scm (pciutils): Update to 3.6.4.
2020-02-24 19:41:35 +01:00
Marius Bakke
06eb5e4322
gnu: cups-filters: Update to 1.27.1.
...
* gnu/packages/cups.scm (cups-filters): Update to 1.27.1.
2020-02-24 19:41:35 +01:00
Marius Bakke
bb618a0f78
gnu: gtk+: Update to 3.24.14.
...
* gnu/packages/gtk.scm (gtk+): Update to 3.24.14.
2020-02-24 19:41:34 +01:00
Marius Bakke
690160f648
gnu: ImageMagick: Update to 6.9.10-95.
...
* gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.10-95.
2020-02-24 19:41:34 +01:00
Marius Bakke
e86620d76d
gnu: libinput: Update to 1.15.2.
...
* gnu/packages/freedesktop.scm (libinput): Update to 1.15.2.
2020-02-24 19:41:34 +01:00
Marius Bakke
c494e899db
gnu: ALSA: Update to 1.2.2.
...
* gnu/packages/linux.scm (alsa-lib, alsa-utils, alsa-plugins): Update to 1.2.2.
2020-02-24 19:41:34 +01:00
Marius Bakke
132c1915a5
gnu: qtbase: Remove custom 'qtbase-patched' variant.
...
* gnu/packages/qt.scm (qtbase)[source](patches): Add 'qtbase-QTBUG-81715.patch.
(qtbase-patched): Remove variable.
* gnu/packages/engineering.scm (freecad)[inputs]: Change from QTBASE-PATCHED to QTBASE.
2020-02-24 19:39:17 +01:00
Marius Bakke
cf4fdbcb0b
gnu: mesa: Build with LLVM 9.
...
* gnu/packages/gl.scm (mesa)[inputs]: Change from LLVM-8 to LLVM-9.
2020-02-24 19:37:45 +01:00
Marius Bakke
3941af527d
Merge branch 'master' into staging
2020-02-24 19:37:03 +01:00
Ricardo Wurmus
7daae3c9d0
gnu: python-igraph: Update to 0.8.0.
...
* gnu/packages/graph.scm (python-igraph): Update to 0.8.0.
[arguments]: Replace build phase; move check phase after install phase; pass
"--use-pkg-config" to avoid rebuilding igraph.
[propagated-inputs]: Add python-texttable.
[native-inputs]: Add python-pytest.
2020-02-24 19:29:43 +01:00
Ricardo Wurmus
02422b3b66
gnu: python-texttable: Update to 1.6.2.
...
* gnu/packages/python-xyz.scm (python-texttable): Update to 1.6.2.
[arguments]: Replace check phase.
[native-inputs]: Add python-pytest.
[license]: Change to Expat.
2020-02-24 19:29:43 +01:00
Ricardo Wurmus
06b13f51f8
gnu: igraph: Update to 0.8.0.
...
* gnu/packages/graph.scm (igraph): Update to 0.8.0.
2020-02-24 19:29:43 +01:00
Tobias Geerinckx-Rice
f7abd6fef1
gnu: opensmtpd: Update to 6.6.4p1 [security fixes].
...
See <https://www.mail-archive.com/misc@opensmtpd.org/msg04888.html >.
* gnu/packages/mail.scm (opensmtpd): Update to 6.6.4p1.
2020-02-24 18:40:43 +01:00
Marius Bakke
c9677ce5f7
gnu: mesa-opencl: Build with clang@8.
...
* gnu/packages/gl.scm (mesa-opencl)[native-inputs]: Change from CLANG to CLANG-8.
2020-02-24 17:10:23 +01:00
Marius Bakke
00ede15708
gnu: LLVM: Promote LLVM 9 to the default 'llvm' package.
...
* gnu/packages/llvm.scm (llvm-8): Rename to ...
(llvm): ... this. Update to 9.0.1.
[license]: Change to ASL2.0.
(clang-runtime-from-llvm)[license]: Inherit from LLVM.
(clang-from-llvm)[license]: Conditionally choose license based on version.
(llvm-9, clang-runtime-8, clang-8, clang-toolchain-8): New public variables.
(llvm-7): Inherit from LLVM-8 (for the license change).
(llvm-6): Inherit from LLVM-7.
(llvm-3.9.1): Inherit from LLVM-6.
(llvm-3.8): Inherit from LLVM-3.9.1.
(llvm-3.7): Inherit from LLVM-3.8.
(llvm-3.6): Inherit from LLVM-3.7.
(llvm-3.5): Inherit from LLVM-3.6.
(libcxx, libclc, libomp): Update to 9.0.1.
2020-02-24 17:10:23 +01:00
Marius Bakke
b77a901e06
gnu: mesa: Build with llvm@8 explicitly.
...
* gnu/packages/gl.scm (mesa)[inputs]: Change from LLVM to LLVM-8.
2020-02-24 17:10:23 +01:00
Marius Bakke
501672d754
gnu: clang: Use the correct CLANG-RUNTIME for versions 6 and 7.
...
* gnu/packages/llvm.scm (clang-7): Use CLANG-RUNTIME-7.
(clang-6): Use CLANG-RUNTIME-6.
2020-02-24 17:10:23 +01:00
Marius Bakke
52f9c3b88a
gnu: Reorganize llvm.scm.
...
* gnu/packages/llvm.scm (libcxx, libclc, libomp, libcxx-6): Move package
definitions below the various LLVM/Clang variants.
2020-02-24 17:10:22 +01:00
John Soo
25b9992181
gnu: freecad. Use qt-build-system.
...
* gnu/packages/engineering.scm (freecad)[build-system]: Use qt-build-system.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-24 17:10:22 +01:00
John Soo
3c60d85f31
gnu: freecad. Fix build failure.
...
* gnu/packages/engineering.scm (freecad)[inputs]: Use qtbase-patched instead
of qtbase.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-24 17:10:22 +01:00
John Soo
e2546bb472
gnu: qtbase: Add variant that fixes file name handling in CMake macros.
...
* gnu/packages/patches/qtbase-QTBUG-81715.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/qt.scm (qtbase-patched): New public variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-24 17:10:22 +01:00
Marius Bakke
dbf15d86e9
gnu: clang@9: Update to 9.0.1.
...
* gnu/packages/llvm.scm (llvm-9): Update to 9.0.1.
clang-runtime-9, clang-9): Update hashes.
2020-02-24 17:10:22 +01:00
Marius Bakke
cd16014f7c
gnu: llvm: Add helper procedure for constructing download URLs.
...
...in preparation for LLVM 9.0.1 which is no longer hosted on llvm.org.
* gnu/packages/llvm.scm (llvm-download-uri): New procedure.
(llvm-8, clang-runtime-from-llvm, clang-from-llvm, libcxx, libomp, llvm-9,
llvm-7, llvm-6, libcxx-6, llvm-3.9.1, llvm-3.8, llvm-3.7, llvm-3.6,
llvm-3.5)[source](uri): Use it.
2020-02-24 17:10:22 +01:00
Marius Bakke
233deb82f3
gnu: clang@9: Fix search path handling.
...
* gnu/packages/patches/clang-9.0-libc-search-path.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/llvm.scm (clang-9): Add #:patches.
2020-02-24 17:10:22 +01:00
Marius Bakke
b4481f2df1
gnu: node: Increase build timeouts.
...
* gnu/packages/node.scm (node)[properties]: Add MAX-SILENT-TIME. Increase
TIMEOUT from 3600 seconds to 14400.
2020-02-24 17:10:22 +01:00
Marius Bakke
f175fa4987
gnu: espeak-ng: Update to 1.50.
...
* gnu/packages/speech.scm (espeak-ng): Update to 1.50.
[source]: Change to GIT-FETCH.
[native-inputs]: Add AUTOCONF, AUTOMAKE, LIBTOOL, and WHICH.
2020-02-24 17:10:21 +01:00
Marius Bakke
0375adac22
gnu: libgme: Remove obsolete workaround.
...
* gnu/packages/music.scm (libgme)[native-inputs]: Remove.
2020-02-24 17:10:21 +01:00
Marius Bakke
f2774824d4
gnu: python-libarchive-c: Update to 2.9.
...
* gnu/packages/python-xyz.scm (python-libarchive-c): Update to 2.9.
2020-02-24 17:10:21 +01:00
Maxim Cournoyer
af52ba64fa
gnu: git-repo: Update to 2.3.
...
* gnu/packages/android.scm (git-repo): Update to 2.3.
[arguments]: Remove the #:python argument. git-repo v2.x is now compatible
with Python 3.
[phases]{configure-git}: New phase.
{set-executable-paths}: Adapt the substitution rule for the GIT command.
{check}: Use the "run_tests" script to launch tests.
[native-inputs]: Replace python2-nose by python-test.
2020-02-24 10:54:04 -05:00
Efraim Flashner
eab07e78b6
gnu: rust-cbindgen: Update to 0.13.1.
...
* gnu/packages/rust-apps.scm (rust-cbindgen): Update to 0.13.1.
2020-02-24 13:29:30 +02:00
Efraim Flashner
103e05654f
gnu: rust-encoding-rs-io-0.1: Upgrade to 0.1.7.
...
* gnu/packages/crates-io.scm (rust-encoding-rs-io-0.1): Upgrade to 0.1.7.
[arguments]: Don't skip build.
2020-02-24 12:31:35 +02:00
Efraim Flashner
fbf983c013
gnu: Add rust-serde-cbor-0.11.
...
* gnu/packages/crates-io.scm (rust-serde-cbor-0.11): New variable.
(rust-serde-cbor-0.10): Inherit from rust-serde-cbor-0.11.
2020-02-24 12:31:31 +02:00
Pierre Neidhardt
9ea458c57a
build-system: Fix copy-build-system default install plan.
...
* guix/build-system/copy.scm (copy-build): Set install-plan default value
to copy everything from source to the output.
2020-02-24 11:22:02 +01:00
Pierre Neidhardt
9b7f9e6f9b
ui: Don't truncate search output when inside Emacs.
...
* guix/ui.scm (display-search-results): Loop over all results when
INSIDE_EMACS is set.
2020-02-24 11:01:52 +01:00
Pierre Neidhardt
672d3d4a87
ui: Don't disable colors when INSIDE_EMACS is set.
...
* guix/colors.scm (color-output?): Remove INSIDE_EMACS condition.
2020-02-24 11:01:52 +01:00
zimoun
d7545a6b53
ui: Only display link in capable terminals.
...
* guix/ui.scm (display-generation): Display generation path on new line.
* guix/scripts/describe.scm (channel-commit-hyperlink): Add TRANSFORMER argument.
(display-profile-content): Use TRANSFORMER argument to display URL explicitly
when terminal does not support hyperlinks.
2020-02-24 11:01:52 +01:00
Ricardo Wurmus
0aa0e1f8f4
gnu: wxwidgets-2: Fix build.
...
* gnu/packages/wxwidgets.scm (wxwidgets-2)[arguments]: Add phase
ignore-narrowing-errors to patch "configure" script.
2020-02-24 10:44:00 +01:00
Valentin Ignatev
3d916a115b
gnu: Add rust-euclid-0.20.
...
* gnu/packages/crates-io.scm (rust-euclid-0.20): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:55 +02:00
Valentin Ignatev
9e24643d67
gnu: Add rust-dlib-0.4.
...
* gnu/packages/crates-io.scm (rust-dlib-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:55 +02:00
Valentin Ignatev
7c1ad5dd85
gnu: Add rust-deflate-0.7.
...
* gnu/packages/crates-io.scm (rust-deflate-0.7): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:55 +02:00
Valentin Ignatev
56042d790a
gnu: Add rust-gzip-header-0.3.
...
* gnu/packages/crates-io.scm (rust-gzip-header-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:55 +02:00
Valentin Ignatev
e78e3be3e5
gnu: Add rust-bzip2-sys-0.1.
...
* gnu/packages/crates-io.scm (rust-bzip2-sys-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:54 +02:00
Valentin Ignatev
873c37b7e7
gnu: rust-bumpalo-2.5: Inherit from rust-bumpalo-3.
...
* gnu/packages/crates-io.scm (rust-bumpalo-2.5):
Inherit from from rust-bumpalo-3.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:54 +02:00
Valentin Ignatev
8d2576a8aa
gnu: Add rust-bumpalo-3.
...
* gnu/packages/crates-io.scm (rust-bumpalo-3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:54 +02:00
Valentin Ignatev
074f9ad441
gnu: Add rust-simd-0.2.
...
* gnu/packages/crates-io.scm (rust-simd-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:54 +02:00
Efraim Flashner
86234fb6d4
gnu: rust-siphasher-0.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-siphasher-0.2)[arguments]: Don't skip
build.
2020-02-24 11:05:54 +02:00
Valentin Ignatev
f9a796c36b
gnu: rust-signal-hook-registry-1.0: Inherit from rust-signal-hook-registry-1.2.
...
* gnu/packages/crates-io.scm (rust-signal-hook-registry-1.0):
Inherit from from rust-signal-hook-registry-1.2.
[arguments]: Don't skip build.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:53 +02:00
Valentin Ignatev
b2843488d9
gnu: rust-signal-hook-0.1: Update to 0.1.13.
...
* gnu/packages/crates-io.scm (rust-signal-hook-0.1):
Update to 0.1.13.
[arguments]: Don't skip build. Replace rust-signal-hook-registry-1.0
with 1.2 in cargo-inputs.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:53 +02:00
Valentin Ignatev
7b656f0ef5
gnu: Add rust-signal-hook-registry-1.2.
...
* gnu/packages/crates-io.scm (rust-signal-hook-registry-1.2):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:53 +02:00
Valentin Ignatev
b7fce0bf18
gnu: Add rust-gl-generator-0.11.
...
* gnu/packages/crates-io.scm (rust-gl-generator-0.11): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:53 +02:00
Valentin Ignatev
23b1519e90
gnu: Add rust-cgl-0.2.
...
* gnu/packages/crates-io.scm (rust-cgl-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:52 +02:00
Valentin Ignatev
0389f288d6
gnu: Add rust-gleam-0.6.
...
* gnu/packages/crates-io.scm (rust-gleam-0.6): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:52 +02:00
Valentin Ignatev
056be0d2fc
gnu: Add rust-gl-generator-0.13.
...
* gnu/packages/crates-io.scm (rust-gl-generator-0.13): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:52 +02:00
Valentin Ignatev
2eddc2a251
gnu: Add rust-gl-generator-0.14.
...
* gnu/packages/crates-io.scm (rust-gl-generator-0.14): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:52 +02:00
Valentin Ignatev
c916b87ce9
gnu: Add rust-clang-sys-0.22.
...
* gnu/packages/crates-io.scm (rust-clang-sys-0.22): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:52 +02:00
Valentin Ignatev
84ab590cc0
gnu: Add rust-cgl-0.3.
...
* gnu/packages/crates-io.scm (rust-cgl-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:51 +02:00
Valentin Ignatev
b6d435dacb
gnu: Add rust-calloop-0.4.
...
* gnu/packages/crates-io.scm (rust-calloop-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:51 +02:00
Valentin Ignatev
a4a82cda20
gnu: Add rust-thread-local-0.2.
...
* gnu/packages/crates-io.scm (rust-thread-local-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:51 +02:00
Valentin Ignatev
dd44f126bd
gnu: Add rust-thread-id-2.0.
...
* gnu/packages/crates-io.scm (rust-thread-id-2.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-24 11:05:51 +02:00
Efraim Flashner
5213b6975a
gnu: librsvg-next: Update dependencies.
...
* gnu/packages/gnome.scm (librsvg-next-source): Update rust dependencies.
2020-02-24 11:05:51 +02:00
Ricardo Wurmus
08048ce994
gnu: Add r-iheatmapr.
...
* gnu/packages/cran.scm (r-iheatmapr): New variable.
Co-authored-by: Marcel Schilling <marcel.schilling@mdc-berlin.de >
2020-02-24 09:45:45 +01:00
Ricardo Wurmus
84c86dcebe
gnu: emacs-slack: Update to 0.0.2-7.b7b9ead.
...
* gnu/packages/emacs-xyz.scm (emacs-slack): Update to 0.0.2-7.b7b9ead.
2020-02-24 09:45:45 +01:00
Mark H Weaver
73970fd2c8
gnu: linux-libre: Update to 5.4.22.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.22.
(linux-libre-5.4-pristine-source): Update hash.
2020-02-24 03:29:16 -05:00
Mark H Weaver
99fa3a2fc9
gnu: linux-libre@4.19: Update to 4.19.106.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.106.
(linux-libre-4.19-pristine-source): Update hash.
2020-02-24 03:28:01 -05:00
Kei Kebreau
98f790405c
gnu: roguebox-adventures: Update to 3.0.1.
...
* gnu/packages/games.scm (roguebox-adventures): Update to 3.0.1.
[arguments]: Adjust 'build' phase accordingly.
2020-02-23 20:31:32 -05:00
Vincent Legoll
08fee94d0f
gnu: cpuid: Update to 20200211.
...
* gnu/packages/linux.scm (cpuid): Update to 20200211.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-02-24 00:37:40 +01:00
Efraim Flashner
da6f1bf0a1
gnu: rust-phf-codegen-0.7: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-phf-codegen-0.7)[arguments]: Don't
skip build.
2020-02-23 22:23:17 +02:00
Efraim Flashner
666ec58fd3
gnu: rust-phf-macros-0.7: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-phf-macros-0.7)[arguments]: Don't
skip build. Skip tests. Replace rust-quote-1.0 with 0.6 in cargo-inputs.
2020-02-23 22:23:17 +02:00
Efraim Flashner
5cbb5cb450
gnu: rust-phf-shared-0.7: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-phf-shared-0.7)[arguments]: Don't
skip build. Replace rust-unicase-2.4 with 1 in cargo-inputs.
2020-02-23 22:23:17 +02:00
Efraim Flashner
3b8f797fe8
gnu: Add rust-unicase-1.
...
* gnu/packages/crates-io.scm (rust-unicase-1): New variable.
2020-02-23 22:23:16 +02:00
Efraim Flashner
c7690cc0ce
gnu: rust-phf-generator-0.7: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-phf-generator-0.7)[arguments]: Don't
skip build. Replace rust-rand-0.4 with 0.6 in cargo-inputs.
2020-02-23 22:23:16 +02:00
Valentin Ignatev
14bae8e720
gnu: Add rust-terminfo-0.6.
...
* gnu/packages/crates-io.scm (rust-terminfo-0.6): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:16 +02:00
Efraim Flashner
b5478ee6a5
gnu: rust-term-0.4: Inherit from rust-term-0.6.
...
* gnu/packages/crates-io.scm (rust-term-0.4): Inherit from rust-term-0.6.
[arguments]: Don't skip build.
2020-02-23 22:23:16 +02:00
Efraim Flashner
ba16a5641d
gnu: rust-term-0.5: Inherit from rust-term--0.6.
...
* gnu/packages/crates-io.scm (rust-term-0.5): Inherit from
rust-term-0.6.
[arguments]: Don't skip build.
2020-02-23 22:23:16 +02:00
Valentin Ignatev
343417b0b8
gnu: Add rust-term-0.6.
...
* gnu/packages/crates-io.scm (rust-term-0.6): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:15 +02:00
Valentin Ignatev
3ceb20988a
gnu: rust-arc-swap-0.3: Inherit from rust-arc-swap-0.4.
...
* gnu/packages/crates-io.scm (rust-arc-swap-0.3):
Inherit from rust-arc-swap-0.4.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:15 +02:00
Valentin Ignatev
fa2fd513ab
gnu: Add rust-arc-swap-0.4.
...
* gnu/packages/crates-io.scm (rust-arc-swap-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:15 +02:00
Valentin Ignatev
ce0d84d174
gnu: Add rust-proptest-0.8.
...
* gnu/packages/crates-io.scm (rust-proptest-0.8): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:15 +02:00
Valentin Ignatev
fecf61d2ac
gnu: Add rust-blake2-0.8.
...
* gnu/packages/crates-io.scm (rust-blake2-0.8): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:15 +02:00
Valentin Ignatev
dd6e098281
gnu: Add rust-hex-literal-0.1.
...
* gnu/packages/crates-io.scm (rust-hex-literal-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:14 +02:00
Valentin Ignatev
87786e13ba
gnu: Add rust-hex-literal-impl-0.1.
...
* gnu/packages/crates-io.scm (rust-hex-literal-impl-0.1):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:14 +02:00
Valentin Ignatev
b3857bd0e4
gnu: Add rust-proc-macro-hack-0.4.
...
* gnu/packages/crates-io.scm (rust-proc-macro-hack-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:14 +02:00
Valentin Ignatev
9c754174f1
gnu: Add rust-crypto-mac-0.7.
...
* gnu/packages/crates-io.scm (rust-crypto-mac-0.7): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:14 +02:00
Valentin Ignatev
9068ccbadd
gnu: rust-parking-lot-0.9: Inherit from rust-parking-lot-0.10.
...
* gnu/packages/crates-io.scm (rust-parking-lot-0.9):
Inherit from rust-parking-lot-0.10.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:13 +02:00
Valentin Ignatev
85f90a96f1
gnu: Add rust-parking-lot-0.10.
...
* gnu/packages/crates-io.scm (rust-parking-lot-0.10): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:13 +02:00
Valentin Ignatev
c6c87f4b79
gnu: rust-parking-lot-core-0.6: Inherit from rust-parking-lot-core-0.7.
...
* gnu/packages/crates-io.scm (rust-parking-lot-core-0.6):
Inherit from rust-parking-lot-core-0.7.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:13 +02:00
Valentin Ignatev
f291ce184d
gnu: Add rust-parking-lot-core-0.7.
...
* gnu/packages/crates-io.scm (rust-parking-lot-core-0.7): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:13 +02:00
Efraim Flashner
d9d4d4f9fa
gnu: rust-smallvec-0.6: Update to 0.6.13.
...
* gnu/packages/crates-io.scm (rust-smallvec-0.6): Upgrade to 0.6.13.
[arguments]: Add rust-maybe-uninit-2.0 to cargo-inputs.
2020-02-23 22:23:13 +02:00
Valentin Ignatev
f628bf4952
gnu: rust-smallvec-0.6: Inherit from rust-smallvec-1.0.
...
* gnu/packages/crates-io.scm (rust-smallvec-0.6):
Inherit from rust-smallvec-1.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:12 +02:00
Valentin Ignatev
30ceaf3700
gnu: Add rust-smallvec-1.
...
* gnu/packages/crates-io.scm (rust-smallvec-1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:12 +02:00
Valentin Ignatev
b950135eb7
gnu: Add rust-ordered-float-1.0.
...
* gnu/packages/crates-io.scm (rust-ordered-float-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:12 +02:00
Valentin Ignatev
d39efce8bc
gnu: Add rust-num-derive-0.2.
...
* gnu/packages/crates-io.scm (rust-num-derive-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:12 +02:00
Efraim Flashner
d4cbecc02f
gnu: rust-complex-0.2: Upgrade to 0.2.4.
...
* gnu/packages/crates-io.scm (rust-num-complex-0.2): Update to 0.2.4.
[arguments]: Don't skip build. Replace rust-rand-0.4 with 0.5 in
cargo-inputs. Add rust-autocfg-1.0 to cargo-inputs. Remove
rust-autocfg-0.1 from cargo-development-inputs.
2020-02-23 22:23:12 +02:00
Valentin Ignatev
d47514d970
gnu: Add rust-num-0.2.
...
* gnu/packages/crates-io.scm (rust-num-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:11 +02:00
Valentin Ignatev
8ac3903bba
gnu: Add rust-num-rational-0.2.
...
* gnu/packages/crates-io.scm (rust-num-rational-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:11 +02:00
Valentin Ignatev
c2b63428f6
gnu: Add rust-stb-truetype-0.3.
...
* gnu/packages/crates-io.scm (rust-stb-truetype-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:11 +02:00
Valentin Ignatev
881bb73355
gnu: Add rust-num-bigint-0.2.
...
* gnu/packages/crates-io.scm (rust-num-bigint-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:11 +02:00
Valentin Ignatev
69ecc4495b
gnu: Add rust-quickcheck-macros-0.8.
...
* gnu/packages/crates-io.scm (rust-quickcheck-macros-0.8):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:11 +02:00
Valentin Ignatev
4bc4189c5d
gnu: Add rust-notify-4.
...
* gnu/packages/crates-io.scm (rust-notify-4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:10 +02:00
Valentin Ignatev
85725ed7b8
gnu: Add rust-inotify-0.6.
...
* gnu/packages/crates-io.scm (rust-inotify-0.6): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:10 +02:00
Valentin Ignatev
c0312f9475
gnu: Add rust-embed-resource-1.3.
...
* gnu/packages/crates-io.scm (rust-embed-resource-1.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:10 +02:00
Valentin Ignatev
e47ea56918
gnu: Add rust-vswhom-0.1.
...
* gnu/packages/crates-io.scm (rust-vswhom-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:10 +02:00
Valentin Ignatev
94ddb94acc
gnu: Add rust-vswhom-sys-0.1.
...
* gnu/packages/crates-io.scm (rust-vswhom-sys-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:10 +02:00
Valentin Ignatev
791a8e5331
gnu: Add rust-vte-0.3.
...
* gnu/packages/crates-io.scm (rust-vte-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:09 +02:00
Valentin Ignatev
64bb237eb8
gnu: Add rust-anyhow-1.0 and rust-thiserror-1.0.
...
* gnu/packages/crates-io.scm (rust-anyhow-1.0, rust-thiserror-1.0):
New variables. Add them together because they have cyclic dependencies
on each other.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 22:23:09 +02:00
John Soo
1063dea4ff
gnu: cedille: Update to 1.1.2.
...
* gnu/packages/cedille.scm (cedille): Update to 1.1.2.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-02-23 19:01:22 +01:00
raingloom
f267420707
gnu: desmume: fix build on new GCC versions
...
* gnu/packages/emulation.scm (desmume): add patches
* gnu/packages/patches/desmume-gcc6-fixes.patch: new file
* gnu/packages/patches/desmume-gcc7-fixes.patch: new file
* gnu/local.mk (dist_patch_DATA): register the above
Note: desmume-gcc6-fixes.patch contains some CRLF line endings.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-02-23 18:14:44 +01:00
Jakub Kądziołka
f6b4d395fd
gnu: z3: Build the Python bindings
...
* gnu/packages/maths.scm (z3)[arguments]: Add the --python and
--pypkgdir flags to configure. To facilitate the latter, add
(guix build python-build-system) to #:modules and #:imported-modules.
2020-02-23 17:58:38 +01:00
Tobias Geerinckx-Rice
4fed945280
gnu: font-google-material-design-icons: Use HTTPS home page.
...
* gnu/packages/fonts.scm (font-google-material-design-icons)[home-page]: Use HTTPS.
2020-02-23 17:55:05 +01:00
Tobias Geerinckx-Rice
faa8dfd141
gnu: radicale: Use HTTPS home page.
...
* gnu/packages/dav.scm (radicale)[home-page]: Use HTTPS.
2020-02-23 17:55:05 +01:00
Tobias Geerinckx-Rice
62290cd45d
gnu: libsvm: Use HTTPS home page.
...
* gnu/packages/machine-learning.scm (libsvm)[home-page]: Use HTTPS.
2020-02-23 17:55:05 +01:00
Tobias Geerinckx-Rice
aec92d0be4
gnu: ecl-trivial-features: Use HTTPS home page.
...
* gnu/packages/lisp-xyz.scm (ecl-trivial-features)[home-page]: Use HTTPS.
2020-02-23 17:55:05 +01:00
Tobias Geerinckx-Rice
8be58b487c
gnu: python-prettytable: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-prettytable)[home-page]: Follow
permanent redirection using HTTPS.
2020-02-23 17:55:05 +01:00
Tobias Geerinckx-Rice
b947ba77e6
gnu: vim: Fix build on CoW file systems.
...
* gnu/packages/vim.scm (vim)[arguments]: Add disable-CoW phase.
2020-02-23 17:55:05 +01:00
Tobias Geerinckx-Rice
c917c23e72
gnu: hevea: Update to 2.33.
...
* gnu/packages/ocaml.scm (hevea): Update to 2.33.
2020-02-23 17:55:05 +01:00
Tobias Geerinckx-Rice
ab99ef659b
gnu: libostree: Update to 2020.1.
...
* gnu/packages/package-management.scm (libostree): Update to 2020.1.
2020-02-23 17:55:05 +01:00
Tobias Geerinckx-Rice
31d647478c
gnu: diffoscope: Update to 137.
...
* gnu/packages/diffoscope.scm (diffoscope): Update to 137.
2020-02-23 17:55:04 +01:00
Valentin Ignatev
73c59b3f51
gnu: Add rust-ref-cast-1.0.
...
* gnu/packages/crates-io.scm (rust-ref-cast-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 17:32:28 +02:00
Valentin Ignatev
afa0a59eb0
gnu: rust-ref-cast-impl-0.2: Inherit from rust-ref-cast-impl-1.0.
...
* gnu/packages/crates-io.scm (rust-ref-cast-impl-0.2):
Inherit from rust-ref-cast-impl-1.0.
[arugments]: Skip build. Replace rust-quote-1.0 with 0.6 in
cargo-inputs.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 17:25:58 +02:00
Valentin Ignatev
9e12b6373c
gnu: Add rust-ref-cast-impl-1.0.
...
* gnu/packages/crates-io.scm (rust-ref-cast-impl-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 17:23:29 +02:00
Valentin Ignatev
8b4f3d7fb6
gnu: Add rust-thiserror-impl-1.0.
...
* gnu/packages/crates-io.scm (rust-thiserror-impl-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 17:21:05 +02:00
Valentin Ignatev
b148b5fa98
gnu: Add rust-futures-0.3.
...
* gnu/packages/crates-io.scm (rust-futures-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 17:19:48 +02:00
Valentin Ignatev
ee24071f5e
gnu: Add rust-rustversion-1.0.
...
* gnu/packages/crates-io.scm (rust-rustversion-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 17:13:17 +02:00
Valentin Ignatev
b85417d972
gnu: Add rust-futures-executor-0.3.
...
* gnu/packages/crates-io.scm (rust-futures-executor-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 17:08:40 +02:00
Efraim Flashner
40cae204b9
gnu: vim: Update to 8.2.0303.
...
* gnu/packages/vim.scm (vim): Update to 8.2.0303.
2020-02-23 16:42:53 +02:00
Jakub Kądziołka
1d0e8ec19e
gnu: mgba: Update to 0.8.1.
...
* gnu/packages/emulators.scm (mgba): Update to 0.8.1.
[inputs, native-inputs]: Move qttools to native-inputs as per guix
lint (guix size says it's not used at runtime).
[license]: Add expat for src/third-party/discord-rpc.
2020-02-23 13:45:45 +01:00
Efraim Flashner
7da1e8f9b4
gnu: jetring: Update to 0.29.
...
* gnu/packages/gnupg.scm (jetring): Update to 0.29.
[source]: Download using git-fetch.
2020-02-23 14:18:49 +02:00
Vincent Legoll
3d314a5642
gnu: debootstrap: Update to 1.0.118
...
The attached patch has been tested by creating
arm64, mipsel & amd64 chroots and the amd64
one has been actually run.
--
Vincent Legoll
From a23b962c21e20c72f425675e6ea6e11cd0f944d0 Mon Sep 17 00:00:00 2001
From: Vincent Legoll <vincent.legoll@gmail.com >
Date: Fri, 21 Feb 2020 23:34:40 +0100
Subject: [PATCH] gnu: debootstrap: Update to 1.0.118. *
gnu/packages/debian.scm (debootstrap): Update to 1.0.118.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 14:07:17 +02:00
Ludovic Courtès
fa99c4bbc7
ui: (size->number "1.M") is correctly parsed.
...
Reported by Pierre Neidhardt <mail@ambrevar.xyz >.
* guix/ui.scm (size->number)[unit-pos]: Add #\. to CHAR-SET:DIGIT.
* tests/ui.scm ("size->number, 1.M"): New test.
2020-02-23 12:47:13 +01:00
Ludovic Courtès
9f2fef4fb1
gnu: gnome: Re-add key propagated inputs.
...
Fixes <https://bugs.gnu.org/39646 >.
Reported by Andy Wingo <wingo@pobox.com >.
* gnu/packages/gnome.scm (gnome)[propagated-inputs]: Re-add packages
inadvertently removed in a8cda7f579 .
2020-02-23 12:47:13 +01:00
Jakub Kądziołka
6a3911b88f
swh: Handle absolute URLs being returned by the API.
...
* guix/swh.scm (swh-url): Don't prepend (%swh-base-url) if a domain is
already present.
This fixes the "guix lint: warning: while connecting to Software Heritage:
host lookup failure: Name or service not known" error message.
2020-02-23 12:30:18 +01:00
LaFreniere, Joseph
5ce67a1c20
gnu: Add emacs-rg.
...
* gnu/packages/emacs-xyz.scm (emacs-rg): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-23 11:41:14 +02:00
Efraim Flashner
6634b29f50
gnu: weechat: Sort inputs alphabetically.
...
* gnu/packages/irc.scm (weechat)[inputs]: Sort alphabetically.
2020-02-23 11:30:17 +02:00
Efraim Flashner
bee2c1a918
gnu: weechat: Update to 2.7.1.
...
* gnu/packages/irc.scm (weechat): Update to 2.7.1.
2020-02-23 11:29:04 +02:00
nixo
b40f405289
gnu: Add nheko.
...
* gnu/packages/messaging.scm (nheko): New variable.
2020-02-23 00:44:55 +01:00
nixo
659bc4362d
gnu: Add lmdbxx.
...
* gnu/packages/databases.scm (lmdbxx): New variable.
2020-02-23 00:44:55 +01:00
nixo
999f1f0bb4
gnu: Add tweeny.
...
* gnu/packages/cpp.scm (tweeny): New variable.
2020-02-23 00:44:54 +01:00
nixo
57163f91cf
gnu: Add mtxclient.
...
* gnu/packages/messaging.scm (mtxclient): New variable.
2020-02-23 00:44:54 +01:00
Tobias Geerinckx-Rice
77e1fe31b3
gnu: java-commons-codec: Use HTTPS home page.
...
* gnu/packages/java.scm (java-commons-codec)[home-page]: Use HTTPS.
2020-02-22 23:51:54 +01:00
Tobias Geerinckx-Rice
8680eff30d
gnu: python-singledispatch: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-singledispatch)[home-page]: Use HTTPS.
2020-02-22 23:51:54 +01:00
Tobias Geerinckx-Rice
414b8d9e49
gnu: python2-wxpython: Use HTTPS home page.
...
* gnu/packages/wxwidgets.scm (python2-wxpython)[home-page]: Use HTTPS.
2020-02-22 23:51:54 +01:00
Tobias Geerinckx-Rice
90d192b2f7
gnu: wslay: Fix build.
...
* gnu/packages/web.scm (wslay)[arguments]: Don't build in parallel.
2020-02-22 23:51:54 +01:00
Timothy Sample
85ced6651f
gnu: guile-semver: Update to 0.1.1.
...
* gnu/packages/guile-xyz.scm (guile-semver): Update to 0.1.1.
[native-inputs]: Remove srfi-64-driver.
2020-02-22 17:47:17 -05:00
Ricardo Wurmus
5bf7102265
gnu: r-genomicinteractions: Update to 1.20.1.
...
* gnu/packages/bioconductor.scm (r-genomicinteractions): Update to 1.20.1.
2020-02-22 23:39:27 +01:00
Ricardo Wurmus
5ea4f604ab
gnu: r-cicero: Update to 1.4.1.
...
* gnu/packages/bioconductor.scm (r-cicero): Update to 1.4.1.
[propagated-inputs]: Add r-tidyr.
2020-02-22 23:39:20 +01:00
Valentin Ignatev
25f9fa17d1
gnu: Add rust-futures-util-0.3.
...
* gnu/packages/crates-io.scm (rust-futures-util-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:32 +02:00
Efraim Flashner
abc226f2c2
gnu: rust-proc-macro2-1.0: Update to 1.0.8.
...
* gnu/packages/crates-io.scm (rust-proc-macro2-1.0): Update to 1.0.8.
[arguments]: Don't skip build.
2020-02-22 23:39:32 +02:00
Efraim Flashner
edf11836cb
gnu: rust-proc-macro-hack-0.5: Update to 0.5.11.
...
* gnu/packages/crates-io.scm (rust-proc-macro-hack-0.5): Upgrade to 0.5.11.
[arguments]: Don't skip build. Replace rust-proc-macro2-0.4 with 1.0,
rust-syn-0.15 with 1.0 in cargo-inputs.
2020-02-22 23:39:32 +02:00
Valentin Ignatev
c5ac44e659
gnu: Add rust-futures-macro-0.3.
...
* gnu/packages/crates-io.scm (rust-futures-macro-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:32 +02:00
Valentin Ignatev
e8f03c5059
gnu: Add rust-inotify-sys-0.1.
...
* gnu/packages/crates-io.scm (rust-inotify-sys-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:32 +02:00
Valentin Ignatev
a9a279b6af
gnu: Add rust-inflate-0.4.
...
* gnu/packages/crates-io.scm (rust-inflate-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:31 +02:00
Valentin Ignatev
7473d73ed0
gnu: Add rust-fsevent-0.4.
...
* gnu/packages/crates-io.scm (rust-fsevent-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:31 +02:00
Efraim Flashner
f13ddb46b5
gnu: rust-byteorder-1.3: Upgrade to 1.3.4.
...
* gnu/packages/crates-io.scm (rust-byteorder-1.3): Upgrade to 1.3.4.
[arguments]: Don't skip build. Replace rust-rand-0.4 with 0.6 in
cargo-development-inputs.
2020-02-22 23:39:31 +02:00
Valentin Ignatev
16e151a69a
gnu: Add rust-fsevent-sys-2.
...
* gnu/packages/crates-io.scm (rust-fsevent-sys-2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:31 +02:00
Valentin Ignatev
5ccc095b83
gnu: Add rust-fs2-0.2.
...
* gnu/packages/crates-io.scm (rust-fs2-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:31 +02:00
Valentin Ignatev
6be9107582
gnu: Add rust-freetype-rs-0.23.
...
* gnu/packages/crates-io.scm (rust-freetype-rs-0.23): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:30 +02:00
Valentin Ignatev
1ed6022287
gnu: Add rust-freetype-sys-0.9.
...
* gnu/packages/crates-io.scm (rust-freetype-sys-0.9): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:30 +02:00
Valentin Ignatev
fb194747e9
gnu: Add rust-mio-extras-2.
...
* gnu/packages/crates-io.scm (rust-mio-extras-2):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:30 +02:00
Valentin Ignatev
0cc8248bb6
gnu: Add rust-mio-anonymous-pipes-0.1.
...
* gnu/packages/crates-io.scm (rust-mio-anonymous-pipes-0.1):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:30 +02:00
Valentin Ignatev
8be94795c9
gnu: Add rust-spsc-buffer-0.1.
...
* gnu/packages/crates-io.scm (rust-spsc-buffer-0.1):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:30 +02:00
Valentin Ignatev
10975d5ce7
gnu: Add rust-raw-window-handle-0.3.
...
* gnu/packages/crates-io.scm (rust-raw-window-handle-0.3):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:29 +02:00
Valentin Ignatev
2cb32a3afe
gnu: Add rust-winreg-0.6.
...
* gnu/packages/crates-io.scm (rust-winreg-0.6): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:29 +02:00
Valentin Ignatev
73a51ad01d
gnu: Add rust-which-1.0.
...
* gnu/packages/crates-io.scm (rust-which-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:29 +02:00
Valentin Ignatev
f039fbabad
gnu: Add rust-gdi32-sys-0.2.
...
* gnu/packages/crates-io.scm (rust-gdi32-sys-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:29 +02:00
Valentin Ignatev
7abd6eecbb
gnu: Add rust-same-file-0.1.
...
* gnu/packages/crates-io.scm (rust-same-file-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:28 +02:00
Efraim Flashner
9376960957
gnu: rust-criterion-0.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-criterion-0.2)[arguments]: Don't skip
build. Replace rust-rand-core-0.5 with 0.3, rust-rand-os-0.2 with 0.1,
rust-rand-xoshiro-0.3 with 0.1 in cargo-inputs. Replace rust-rand-0.4
with 0.6 in cargo-development-inputs.
2020-02-22 23:39:28 +02:00
Valentin Ignatev
3c1290026b
gnu: Add rust-docopt-0.7.
...
* gnu/packages/crates-io.scm (rust-docopt-0.7): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:28 +02:00
Valentin Ignatev
4f3fd61031
gnu: rust-base64-0.10: Inherit from rust-base64-0.11.
...
* gnu/packages/crates-io.scm (rust-base64-0.10): Inherit from
rust-base64-0.11.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:28 +02:00
Valentin Ignatev
aba73899e3
gnu: Add rust-base64-0.11.
...
* gnu/packages/crates-io.scm (rust-base64-0.11): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:28 +02:00
Valentin Ignatev
eb60b03a6d
gnu: rust-criterion-0.2: Inherit from rust-criterion-0.3.
...
* gnu/packages/crates-io.scm (rust-criterion-0.2): Inherit from
rust-criterion-0.3.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:27 +02:00
Valentin Ignatev
537f2401e3
gnu: Add rust-criterion-0.3.
...
* gnu/packages/crates-io.scm (rust-criterion-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:27 +02:00
Efraim Flashner
46aa0825e7
gnu: rust-criterion-plot-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-criterion-plot-0.3)[arguments]: Don't
skip build.
2020-02-22 23:39:27 +02:00
Valentin Ignatev
48b4a2f9d0
gnu: rust-criterion-plot-0.3: Inherit from rust-criterion-plot-0.4.
...
* gnu/packages/crates-io.scm (rust-criterion-plot-0.3): Inherit from
rust-criterion-plot-0.4.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:27 +02:00
Valentin Ignatev
722e5f8476
gnu: Add rust-criterion-plot-0.4.
...
* gnu/packages/crates-io.scm (rust-criterion-plot-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:27 +02:00
Efraim Flashner
ab5c5e625b
gnu: rust-foreign-types-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-foreign-types-0.3)[arguments]: Don't
skip build.
2020-02-22 23:39:26 +02:00
Valentin Ignatev
d2d0cb8c1e
gnu: rust-foreign-types-0.3: Inherit from rust-foreign-types-0.5.
...
* gnu/packages/crates-io.scm (rust-foreign-types-0.3): Inherit from
rust-foreign-types-0.5.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:26 +02:00
Valentin Ignatev
079c2aaf49
gnu: Add rust-foreign-types-0.5.
...
* gnu/packages/crates-io.scm (rust-foreign-types-0.5):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:26 +02:00
Valentin Ignatev
166ba78af0
gnu: rust-foreign-types-shared-0.2: Inherit from rust-foreign-types-shared-0.3.
...
* gnu/packages/crates-io.scm (rust-foreign-types-shared-0.2): Inherit from
rust-foreign-types-shared-0.3.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:26 +02:00
Valentin Ignatev
e7a5b8ebfb
gnu: Add rust-foreign-types-shared-0.3.
...
* gnu/packages/crates-io.scm (rust-foreign-types-shared-0.3):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:26 +02:00
Efraim Flashner
2243f19720
gnu: rust-foreign-types-macros-0.1: Upgrade to 0.1.1.
...
* gnu/packages/crates-io.scm (rust-foreign-types-macros-0.1): Upgrade to
0.1.1.
[arguments]: Inherit from rust-foreign-types-macros-0.2.
2020-02-22 23:39:25 +02:00
Valentin Ignatev
d12bb31d9a
gnu: rust-foreign-types-macros-0.1: Inherit from rust-foreign-types-macros-0.2.
...
* gnu/packages/crates-io.scm (rust-foreign-types-macros-0.1): Inherit from
rust-foreign-types-macros-0.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:25 +02:00
Valentin Ignatev
93e0ae08a8
gnu: Add rust-foreign-types-macros-0.2.
...
* gnu/packages/crates-io.scm (rust-foreign-types-macros-0.2):
New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-22 23:39:22 +02:00
Wiktor Żelazny
24719e8a0d
gnu: Add aha.
...
* gnu/packages/textutils.scm (aha): new variable.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-02-22 22:14:41 +01:00
Ricardo Wurmus
8017eb0ae8
gnu: r-ggm: Move to (gnu packages bioconductor).
...
* gnu/packages/cran.scm (r-ggm): Move this variable from here...
* gnu/packages/bioconductor.scm (r-ggm): ...to here.
2020-02-22 20:42:15 +01:00
Ricardo Wurmus
ae55cd9630
gnu: r-pbkrtest: Update to 0.4-8.6.
...
* gnu/packages/statistics.scm (r-pbkrtest): Update to 0.4-8.6.
[propagated-inputs]: Add r-magrittr.
2020-02-22 20:42:15 +01:00
Ricardo Wurmus
36633217c3
gnu: r-rpf: Update to 1.0.2.
...
* gnu/packages/cran.scm (r-rpf): Update to 1.0.2.
[propagated-inputs]: Add r-lifecycle and r-rcpp.
2020-02-22 20:42:14 +01:00
Ricardo Wurmus
051d8f439e
gnu: r-mice: Update to 3.8.0.
...
* gnu/packages/cran.scm (r-mice): Update to 3.8.0.
[propagated-inputs]: Remove r-mass, r-mitml, r-nnet, r-rlang, r-rpart, and
r-survival; add r-tidyr.
2020-02-22 20:42:14 +01:00
Ricardo Wurmus
5d947fab43
gnu: r-qgraph: Update to 1.6.5.
...
* gnu/packages/cran.scm (r-qgraph): Update to 1.6.5.
[propagated-inputs]: Remove r-ggm.
2020-02-22 20:42:14 +01:00
Ricardo Wurmus
20639438e3
gnu: r-ggm: Update to 2.5.
...
* gnu/packages/cran.scm (r-ggm): Update to 2.5.
[propagated-inputs]: Add r-graph.
2020-02-22 20:42:14 +01:00
Ricardo Wurmus
01d34f1a50
gnu: r-openmx: Update to 2.17.2.
...
* gnu/packages/cran.scm (r-openmx): Update to 2.17.2.
2020-02-22 20:42:14 +01:00
Ricardo Wurmus
1381743bbe
gnu: r-stanheaders: Update to 2.19.2.
...
* gnu/packages/cran.scm (r-stanheaders): Update to 2.19.2.
[native-inputs]: Add r-knitr.
2020-02-22 20:42:14 +01:00
Ricardo Wurmus
7c138b1149
gnu: r-regsem: Update to 1.5.2.
...
* gnu/packages/cran.scm (r-regsem): Update to 1.5.2.
2020-02-22 20:42:14 +01:00
Ricardo Wurmus
970d813937
gnu: r-forecast: Update to 8.11.
...
* gnu/packages/cran.scm (r-forecast): Update to 8.11.
2020-02-22 20:42:14 +01:00
Ricardo Wurmus
3df9f357ec
gnu: r-fda: Update to 2.4.8.1.
...
* gnu/packages/cran.scm (r-fda): Update to 2.4.8.1.
2020-02-22 20:42:14 +01:00
Ricardo Wurmus
f2bb1ae03c
gnu: r-acebayes: Update to 1.9.
...
* gnu/packages/cran.scm (r-acebayes): Update to 1.9.
2020-02-22 20:42:14 +01:00
Ricardo Wurmus
f4c2914531
gnu: r-dalex: Update to 1.0.
...
* gnu/packages/cran.scm (r-dalex): Update to 1.0.
2020-02-22 20:42:14 +01:00
Ricardo Wurmus
17c98b536c
gnu: r-rgl: Update to 0.100.50.
...
* gnu/packages/cran.scm (r-rgl): Update to 0.100.50.
2020-02-22 20:42:14 +01:00
Ricardo Wurmus
f069fba9df
gnu: r-doby: Update to 4.6.5.
...
* gnu/packages/cran.scm (r-doby): Update to 4.6.5.
2020-02-22 20:42:13 +01:00
Ricardo Wurmus
a7b7fba0e2
gnu: r-vctrs: Update to 0.2.3.
...
* gnu/packages/cran.scm (r-vctrs): Update to 0.2.3.
2020-02-22 20:42:13 +01:00
Ricardo Wurmus
5fe7834417
gnu: r-tsp: Update to 1.1-9.
...
* gnu/packages/cran.scm (r-tsp): Update to 1.1-9.
2020-02-22 20:42:13 +01:00
Ricardo Wurmus
b47b08fc47
gnu: r-squarem: Update to 2020.2.
...
* gnu/packages/cran.scm (r-squarem): Update to 2020.2.
2020-02-22 20:42:13 +01:00
Ricardo Wurmus
0a7a363492
gnu: r-sp: Update to 1.4-0.
...
* gnu/packages/cran.scm (r-sp): Update to 1.4-0.
2020-02-22 20:42:13 +01:00
Lars-Dominik Braun
4b9bb70fa5
gnu: Add r-irtoys.
...
* gnu/packages/cran.scm (r-irtoys): New variable.
2020-02-22 20:42:13 +01:00
Lars-Dominik Braun
a21ff0724b
gnu: Add r-erm.
...
* gnu/packages/cran.scm (r-erm): New variable.
2020-02-22 20:42:13 +01:00
Lars-Dominik Braun
9cc3cfcbe8
gnu: Add r-tam.
...
* gnu/packages/cran.scm (r-tam): New variable.
2020-02-22 20:42:13 +01:00
Lars-Dominik Braun
55c067a309
gnu: Add r-cdm.
...
* gnu/packages/cran.scm (r-cdm): New variable.
2020-02-22 20:42:13 +01:00
Lars-Dominik Braun
fbf76ad583
gnu: Add r-semplot.
...
* gnu/packages/cran.scm (r-semplot): New variable.
2020-02-22 20:42:13 +01:00
Lars-Dominik Braun
50de6fde50
gnu: Add r-qgraph.
...
* gnu/packages/cran.scm (r-qgraph): New variable.
2020-02-22 20:42:13 +01:00
Lars-Dominik Braun
d74e9f8fe9
gnu: Add r-d3network.
...
* gnu/packages/cran.scm (r-d3network): New variable.
2020-02-22 20:42:12 +01:00
Lars-Dominik Braun
2919b3ce40
gnu: Add r-ggm.
...
* gnu/packages/cran.scm (r-ggm): New variable.
2020-02-22 20:42:12 +01:00
Lars-Dominik Braun
1c9089d2fc
gnu: Add r-bdgraph.
...
* gnu/packages/cran.scm (r-bdgraph): New variable.
2020-02-22 20:42:12 +01:00
Lars-Dominik Braun
6998b6f7aa
gnu: Add r-lisreltor.
...
* gnu/packages/cran.scm (r-lisreltor): New variable.
2020-02-22 20:42:12 +01:00
Lars-Dominik Braun
c86473c228
gnu: Add r-rockchalk.
...
* gnu/packages/cran.scm (r-rockchalk): New variable.
2020-02-22 20:42:12 +01:00
Lars-Dominik Braun
fe0020609a
gnu: Add r-kutils.
...
* gnu/packages/cran.scm (r-kutils): New variable.
2020-02-22 20:42:12 +01:00
Lars-Dominik Braun
3be13aa8ca
gnu: Add r-openmx.
...
* gnu/packages/cran.scm (r-openmx): New variable.
2020-02-22 20:42:12 +01:00
Lars-Dominik Braun
da9f63eeea
gnu: Add r-rpf.
...
* gnu/packages/cran.scm (r-rpf): New variable.
2020-02-22 20:42:12 +01:00
Lars-Dominik Braun
d228795210
gnu: Add r-stanheaders.
...
* gnu/packages/cran.scm (r-stanheaders): New variable.
2020-02-22 20:42:12 +01:00
Lars-Dominik Braun
8b217feb3b
gnu: Add r-regsem.
...
* gnu/packages/cran.scm (r-regsem): New variable.
2020-02-22 20:42:12 +01:00
Lars-Dominik Braun
27d9764d06
gnu: Add r-semtools.
...
* gnu/packages/cran.scm (r-semtools): New variable.
2020-02-22 20:42:12 +01:00
Lars-Dominik Braun
3d7115398f
gnu: Add r-sem.
...
* gnu/packages/cran.scm (r-sem): New variable.
2020-02-22 20:42:11 +01:00
Lars-Dominik Braun
247bd124db
gnu: Add r-matrixcalc.
...
* gnu/packages/cran.scm (r-matrixcalc): New variable.
2020-02-22 20:42:11 +01:00
Lars-Dominik Braun
8ef53c2255
gnu: Add r-mi.
...
* gnu/packages/cran.scm (r-mi): New variable.
2020-02-22 20:42:11 +01:00
Lars-Dominik Braun
07f3e9b93c
gnu: Add r-ltm.
...
* gnu/packages/cran.scm (r-ltm): New variable.
2020-02-22 20:42:11 +01:00
Lars-Dominik Braun
3385908e6b
gnu: Add r-msm.
...
* gnu/packages/cran.scm (r-msm): New variable.
2020-02-22 20:42:11 +01:00
Lars-Dominik Braun
c56a244004
gnu: Add r-polycor.
...
* gnu/packages/cran.scm (r-polycor): New variable.
2020-02-22 20:42:11 +01:00
Lars-Dominik Braun
7a19c76f00
gnu: Add r-stm.
...
* gnu/packages/cran.scm (r-stm): New variable.
2020-02-22 20:42:11 +01:00
Lars-Dominik Braun
d94d34c4a5
gnu: Add r-topicmodels.
...
* gnu/packages/cran.scm (r-topicmodels): New variable.
2020-02-22 20:42:11 +01:00
Lars-Dominik Braun
09df4c2aa2
gnu: Add r-quanteda.
...
* gnu/packages/cran.scm (r-quanteda): New variable.
2020-02-22 20:42:11 +01:00
Lars-Dominik Braun
e525c866d3
gnu: Add r-snowballc.
...
* gnu/packages/cran.scm (r-snowballc): New variable.
2020-02-22 20:42:11 +01:00
Lars-Dominik Braun
982a9fb6c6
gnu: Add r-spacyr.
...
* gnu/packages/cran.scm (r-spacyr): New variable.
2020-02-22 20:42:11 +01:00
Lars-Dominik Braun
6daed861a6
gnu: Add r-stopwords.
...
* gnu/packages/cran.scm (r-stopwords): New variable.
2020-02-22 20:42:11 +01:00
Lars-Dominik Braun
4f53ac4b9b
gnu: Add r-isocodes.
...
* gnu/packages/cran.scm (r-isocodes): New variable.
2020-02-22 20:42:10 +01:00
Lars-Dominik Braun
38339c4cab
gnu: Add r-proxyc.
...
* gnu/packages/cran.scm (r-proxyc): New variable.
2020-02-22 20:42:10 +01:00
Lars-Dominik Braun
532b318020
gnu: Add r-xmisc.
...
* gnu/packages/cran.scm (r-xmisc): New variable.
2020-02-22 20:42:10 +01:00
Lars-Dominik Braun
dfecd5598e
gnu: Add r-forecast.
...
* gnu/packages/cran.scm (r-forecast): New variable.
2020-02-22 20:42:10 +01:00
Lars-Dominik Braun
3ec74f9de9
gnu: Add r-fracdiff.
...
* gnu/packages/cran.scm (r-fracdiff): New variable.
2020-02-22 20:42:03 +01:00
Brian Leung
5508d9a8d7
gnu: Add emacs-persp-mode.
...
* gnu/packages/emacs-xyz.scm (emacs-persp-mode): New variable.
2020-02-22 10:53:49 -08:00
Thomas Danckaert
7dc0f1d5a8
gnu: qdbm: Fix segfault during tests.
...
gnu/packages/databses.scm (qdbm): Add "CFLAGS=-fPIC" to make-flags.
2020-02-22 17:38:29 +01:00
Oleg Pykhalov
9a39711438
etc: Add copyright.
...
* etc/copyright.el: New file.
* doc/contributing.texi (The Perfect Setup): Document this.
2020-02-22 17:56:31 +03:00
Tobias Geerinckx-Rice
582a79d3a9
gnu: Add unoconv.
...
* gnu/packages/libreoffice.scm (unoconv): New public variable.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-02-22 15:31:01 +01:00
Jean-Baptiste Note
e36826b2ba
gnu: emacs-gnuplot: Install to site-lisp instead of guix.d.
...
Fixes <https://bugs.gnu.org/39536 >.
This is a followup to 65a7dd2950 .
* gnu/packages/emacs-xyz.scm (emacs-gnuplot)[arguments]: Change ELISP-DIR.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-22 12:17:35 +01:00
Matt Wette
3d1e42321f
import: github: Use HTTP "Authorization" header for access tokens.
...
Fixes <https://bugs.gnu.org/39511 >.
The "access_token" query parameter is now deprecated:
https://developer.github.com/changes/2019-11-05-deprecated-passwords-and-authorizations-api/#authenticating-using-query-parameters
* guix/import/github.scm (fetch-releases-or-tags)[headers]: Add
"Authorization" header when (%github-token) is true.
[decorate]: Remove, and remove callers.
2020-02-22 12:17:35 +01:00
Dimakakos Dimos
eb85995738
gnu: Add cl-lquery.
...
* gnu/packages/lisp-xyz.scm (sbcl-lquery, cl-lquery, ecl-lquery): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-22 10:40:36 +01:00
Dimakakos Dimos
cfc9004e3f
gnu: Add cl-clss.
...
* gnu/packages/lisp-xyz.scm (cl-clss, sbcl-clss, ecl-clss): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-22 10:31:12 +01:00
Ludovic Courtès
447f834263
git-authenticate: Store the sub-key fingerprint of mab.
...
This is a followup to 76a8dc3ee2 , signed
with this sub-key.
* build-aux/git-authenticate.scm (%committers): Store the sub-key
fingerprint of mab.
2020-02-22 00:48:27 +01:00
Ludovic Courtès
4cb63a564d
deduplication: Use nix-base32 encoding for link names.
...
Fixes <https://bugs.gnu.org/39725 >.
* guix/store/deduplication.scm (deduplicate): Use
'bytevector->nix-base32-string' instead of 'bytevector->base16-string'.
2020-02-22 00:46:06 +01:00
Lars-Dominik Braun
3789187252
build: Depend on guile-ssh 0.12.0
...
This is a followup to 35f3511167 .
* m4/guix.m4 (GUIX_CHECK_GUILE_SSH): Check for userauth-gssapi!
* doc/guix.texi: Document version requirement
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-22 00:45:58 +01:00
Ludovic Courtès
43e282accc
tests: Factorize LUKS passphrase.
...
* gnu/tests/install.scm (%luks-passphrase): New variable.
(%encrypted-root-installation-script): Use it.
(enter-luks-passphrase): Use it.
2020-02-22 00:45:42 +01:00
Ludovic Courtès
5c04b00cf4
installer: Log important bits to syslog.
...
* gnu/installer.scm (installer-program): Log crashes with 'syslog'.
* gnu/installer/parted.scm (luks-format-and-open, luks-close)
(mount-user-partitions, umount-user-partitions): Add 'syslog' calls.
* gnu/installer/steps.scm (run-installer-steps): Log the running step
with 'syslog'.
* gnu/installer/utils.scm (run-shell-command): Add calls to 'syslog'.
2020-02-22 00:45:42 +01:00
Ludovic Courtès
2cf65e1d54
installer: Add 'syslog' macro to write to syslog.
...
* gnu/installer/utils.scm (open-syslog-port, syslog-port): New
procedures.
(syslog): New macro.
2020-02-22 00:45:42 +01:00
Ludovic Courtès
b6ec284fe8
marionette: Provide portable US-layout keystrokes for "<" and ">".
...
* gnu/build/marionette.scm (%qwerty-us-keystrokes): Use shit-comma and
shift-dot for #\< and #\> because the "less" key doesn't work the same
in "US intl." layouts.
2020-02-22 00:45:42 +01:00
Ludovic Courtès
1708ed6e9d
marionette: 'wait-for' procedures no longer leak a port.
...
* gnu/build/marionette.scm (wait-for-tcp-port): Close SOCK upon
success.
(wait-for-unix-socket): Likewise.
2020-02-22 00:45:42 +01:00
Tobias Geerinckx-Rice
3c4c60fa79
gnu: bind: Update to 9.16.0.
...
* gnu/packages/dns.scm (isc-bind): Update to 9.16.0.
[inputs]: Add libuv.
[native-inputs]: Add pkg-config. Remove net-tools.
[arguments]: Remove obsolete --with-openssl= from #:configure-flags.
2020-02-22 00:16:15 +01:00
Tobias Geerinckx-Rice
3ef91e1534
gnu: Use HTTPS for hackage.haskell.org home pages.
...
* gnu/packages/haskell-xyz.scm (ghc-network-byte-order)
(ghc-base-compat-batteries, ghc-regex-tdfa-text, ghc-sdl2-image)
(ghc-language-glsl, ghc-sop-core, ghc-libffi, ghc-path, ghc-io-streams)
(ghc-openssl-streams, ghc-haskell-lexer, ghc-prettyclass, ghc-ifelse)
(ghc-sdl2-mixer, ghc-errorcall-eq-instance, ghc-filepath-bytestring)
(ghc-refact, ghc-pointedlist, ghc-string-qq, ghc-tls-session-manager)
(ghc-magic, ghc-exactprint, ghc-inline-c, ghc-infer-license)
(ghc-unagi-chan)[home-page]: Use HTTPS.
2020-02-22 00:16:15 +01:00
Tobias Geerinckx-Rice
d5840fec16
gnu: emacs-recent-addresses: Use HTTPS home page.
...
* gnu/packages/emacs-xyz.scm (emacs-recent-addresses)[home-page]: Use HTTPS.
2020-02-22 00:16:15 +01:00
Tobias Geerinckx-Rice
f0db77796b
gnu: ecl-clx: Use HTTPS home page.
...
* gnu/packages/lisp-xyz.scm (ecl-clx)[home-page]: Use HTTPS.
2020-02-22 00:16:15 +01:00
Tobias Geerinckx-Rice
1b4d40cf7b
gnu: java-plexus-utils: Use HTTPS home page.
...
* gnu/packages/java.scm (java-plexus-utils)[home-page]: Use HTTPS.
2020-02-22 00:16:15 +01:00
Tobias Geerinckx-Rice
2b62f5d0f7
gnu: ghc-xml: Update home page.
...
Before code.galois.com vanished, it redirected here.
* gnu/packages/haskell-xyz.scm (ghc-xml)[home-page]: Use new (HTTPS) URI.
2020-02-22 00:16:15 +01:00
Tobias Geerinckx-Rice
60783303ed
gnu: ruby-thin: Update home page.
...
* gnu/packages/ruby.scm (ruby-thin)[home-page]: Use new (HTTPS) URI.
2020-02-22 00:16:15 +01:00
Tobias Geerinckx-Rice
9137e66ba9
gnu: ghc-tagsoup: Update home page.
...
* gnu/packages/haskell-web.scm (ghc-tagsoup)[home-page]: Use new (HTTPS)
URI
2020-02-22 00:16:14 +01:00
Jakub Kądziołka
c080beb9c7
gnu: choqok: Update to 1.7.0.
...
* gnu/packages/kde-internet.scm (choqok): Update to 1.7.0.
(inputs): Add purpose, qtnetworkauth.
(source): Don't apply patch.
* gnu/packages/patches/choqok-Fix-building-under-Qt-5.13.patch: Remove
(no longer needed).
2020-02-22 00:11:41 +01:00
Amin Bandali
76a8dc3ee2
gnu: Add font-vazir.
...
* gnu/packages/fonts.scm (font-vazir): New variable.
2020-02-21 16:24:08 -05:00
Jack Hill
fd62167464
gnu: gnome-shell-extension-paperwm: Install compiled gschemas.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-paperwm)[arguments]:
Install compiled gschemas.
Signed-off-by: Alex Griffin <a@ajgrf.com >
2020-02-21 12:45:32 -06:00
Tanguy Le Carrour
d2b5cdfef7
gnu: profanity: Update to 0.8.1.
...
* gnu/packages/messaging.scm (profanity): Update to 0.8.1.
2020-02-21 19:34:18 +01:00
Nicolas Goaziou
371a647e8b
gnu: chroma: Fix description.
...
* gnu/packages/games.scm (chroma)[descrption]: Add missing space and fix
indentation.
2020-02-21 19:25:52 +01:00
Tobias Geerinckx-Rice
239d3e9cef
gnu: libfprint, fprintd: Update to 1.90.1.
...
* gnu/packages/freedesktop.scm (libfprint): Update to 1.90.1.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
[build-system]: Use Meson.
[arguments]: Adapt #:configure-flags.
[native-inputs]: Add eudev, glib:bin, gobject-introspection,
and gtk-doc.
[inputs]: Replace libusb with gusb.
(fprintd): Update to 1.90.1.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
[build-system]: Use Meson.
[arguments]: Add directory #:configure-flags.
Work around many exciting new Meson features.
[native-inputs]: Replace intltool with gettext-minimal.
Add glib:bin, libxslt, and perl.
[inputs]: Add elogind and polkit, as well as gusb, nss, and pixman.
2020-02-21 18:33:40 +01:00
Tobias Geerinckx-Rice
50f02ced92
gnu: Update fprintd home pages.
...
* gnu/packages/freedesktop.scm (libfprint, fprintd)[home-page]: Update.
2020-02-21 18:33:40 +01:00
Tobias Geerinckx-Rice
d5f344c987
gnu: libreoffice: Fix ‘soffice’ in a pure environment.
...
* gnu/packages/libreoffice.scm (libreoffice)[arguments]: Refer to grep
and coreutils by absolute file name in the soffice launcher script.
2020-02-21 18:33:40 +01:00
Tobias Geerinckx-Rice
dd6114dfc5
gnu: containerd: Use HTTPS home page.
...
* gnu/packages/docker.scm (containerd)[home-page]: Use HTTPS.
2020-02-21 18:33:40 +01:00
Tobias Geerinckx-Rice
e11639f385
gnu: openh264: Use HTTPS home page.
...
* gnu/packages/video.scm (openh264)[home-page]: Use HTTPS.
2020-02-21 18:33:40 +01:00
Tobias Geerinckx-Rice
3602de332b
gnu: scons: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (scons)[home-page]: Use HTTPS.
2020-02-21 18:33:39 +01:00
Tobias Geerinckx-Rice
52888f52e8
gnu: python-pycrypto: Update home page.
...
* gnu/packages/python-crypto.scm (python-pycrypto)[home-page]: Follow
(HTTPS) redirection.
2020-02-21 18:33:39 +01:00
Tobias Geerinckx-Rice
3fbb7bec1c
gnu: proj: Update home page.
...
* gnu/packages/geo.scm (proj)[home-page]: Use new (HTTPS) domain.
2020-02-21 18:33:39 +01:00
Tobias Geerinckx-Rice
92a79fee20
gnu: ghc-splitmix: Use HTTPS home page.
...
* gnu/packages/haskell-xyz.scm (ghc-splitmix)[home-page]: Use HTTPS.
2020-02-21 18:33:38 +01:00
Tobias Geerinckx-Rice
018b72d724
gnu: rust-tempfile: Use HTTPS home page.
...
* gnu/packages/crates-io.scm (rust-tempfile)[home-page]: Use HTTPS.
2020-02-21 18:33:37 +01:00
Tobias Geerinckx-Rice
2f35985c77
gnu: python-sympy: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-sympy)[home-page]: Use HTTPS.
2020-02-21 18:33:37 +01:00
Tobias Geerinckx-Rice
4b17f71de4
gnu: emacs-rotate-text: Use HTTPS home page.
...
* gnu/packages/emacs-xyz.scm (emacs-rotate-text)[home-page]: Use HTTPS.
2020-02-21 18:33:37 +01:00
Tobias Geerinckx-Rice
059aa850e9
gnu: rust-yaml-rust: Use HTTPS home page.
...
* gnu/packages/crates-io.scm (rust-yaml-rust)[home-page]: Use HTTPS.
2020-02-21 18:33:37 +01:00
Tobias Geerinckx-Rice
9c99cb2276
gnu: grisbi: Use HTTPS home page.
...
* gnu/packages/finance.scm (grisbi)[home-page]: Use HTTPS.
2020-02-21 18:33:36 +01:00
Tobias Geerinckx-Rice
2ea6d49913
gnu: calibre: Use HTTPS home page.
...
* gnu/packages/ebook.scm (calibre)[home-page]: Use HTTPS.
2020-02-21 18:33:35 +01:00
Tanguy Le Carrour
536cc4aae5
gnu: nim: Update to 1.0.6.
...
* gnu/packages/nim.scm (nim): Update to 1.0.6.
2020-02-21 17:40:41 +01:00
Jack Hill
60d5ad8087
gnu: gnome-shell-extension-paperwm: Recompile schemas.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-paperwm)
[source]: Remove gschemas.compiled in a snippet.
[arguments]: Add compile-schemas phase.
[native-inputs]: Add glib.
Signed-off-by: Alex Griffin <a@ajgrf.com >
2020-02-21 08:25:45 -06:00
Guillaume Le Vaillant
a3f6c41067
gnu: Add cl-pzmq.
...
* gnu/packages/lisp-xyz.scm (sbcl-pzmq, cl-pzmq, ecl-pzmq): New variables.
2020-02-21 15:00:58 +01:00
Paul Garlick
b24d523e74
gnu: highlight: Build perl bindings.
...
* gnu/packages/pretty-print.scm (highlight)[native-inputs]: Add swig.
[inputs]: Add perl.
[arguments]: Specify lua version for pkg-config command, add
'install-perl-bindings' phase.
2020-02-21 13:09:28 +00:00
Andreas Enge
b457f3cc16
gnu: Add vinci.
...
* gnu/packages/maths.scm (vinci): New variable.
2020-02-21 13:30:25 +01:00
Pierre Neidhardt
dd2876aabc
doc: Fix copy-build-system specification.
...
* doc/guix.texi (Build Systems): Files must match one or more filters, not
exactly one.
2020-02-21 13:09:29 +01:00
Tobias Geerinckx-Rice
af51d01a8a
doc: Fix indentation.
...
This follows up on commit e90e64049c ,
which broke ‘guix pull’.
* doc/guix.texi (Build Systems): Un-indent.
2020-02-21 12:28:02 +01:00
Nicolas Goaziou
2cf6366fec
doc: Fix typos.
...
* doc/guix.texi (Build Systems): Add missing hash to "#:exclude", and a comma
after "e.g.". Use @file and @var appropriately.
2020-02-21 11:35:57 +01:00
Alex Griffin
fb18f32e5a
gnu: Add gnome-shell-extension-paperwm.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-paperwm): New variable.
2020-02-21 10:53:12 +01:00
Pierre Neidhardt
11386e1801
gnu: gcide: Use the copy-build-system.
...
* gnu/packages/dictionaries.scm (gcide2)[build-system]: Use the
copy-build-system.
2020-02-21 10:53:12 +01:00
Pierre Neidhardt
e90e64049c
build-system: Add copy-build-system.
...
* guix/build-system/copy.scm: New file.
* guix/build/copy-build-system.scm: New file.
* Makefile.am (MODULES): Add them.
* doc/guix.texi (Build Systems): Document 'copy-build-system'.
2020-02-21 10:53:11 +01:00
Efraim Flashner
6ca4e98c56
gnu: tilda: Update to 1.5.0.
...
* gnu/packages/terminals.scm (tilda): Update to 1.5.0.
2020-02-21 09:15:23 +02:00
Efraim Flashner
fa9f5df7c4
gnu: subversion: Don't build static libraries.
...
This drops the size of the package by about 27%.
* gnu/packages/version-control.scm (subversion)[arguments]: Add
configure-flag to not build static libraries.
2020-02-21 08:50:48 +02:00
Alex Sassmannshausen
2940b3e16c
gnu: php: Update to 7.4.3.
...
* gnu/packages/php.scm (php): Update to 7.4.3.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2020-02-21 02:44:25 +01:00
Florian Pelz
00500449b0
services: udev: Do not rely on shepherd inheriting environment variables.
...
Fixes <https://bugs.gnu.org/39671 >.
* gnu/services/base.scm (udev-shepherd-service)[start] Move or copy
environment variables to 'fork+exec-command' instead of 'setenv'.
2020-02-20 22:34:06 +00:00
Jakub Kądziołka
bb90beb5bf
gnu: corrode: Use git-file-name.
...
* gnu/packages/haskell-apps.scm (corrode): Use git-file-name.
2020-02-20 22:46:40 +01:00
Jakub Kądziołka
779ce96faf
gnu: libjit: Use git-file-name
...
* gnu/packages/assembly.scm (libjit): Use git-file-name.
2020-02-20 22:45:33 +01:00
Jakub Kądziołka
d47f96307b
gnu: guile-gcrypt: Use git-file-name
...
* gnu/packages/gnupg.scm (guile-gcrypt): Use git-file-name.
2020-02-20 22:45:33 +01:00
Jakub Kądziołka
123334fadd
gnu: ath9k-htc-firmware, b43-tools: Use git-file-name.
...
* gnu/packages/firmware.scm (ath9k-htc-firmware): Use git-file-name.
(b43-tools): Likewise.
2020-02-20 22:45:33 +01:00
Jakub Kądziołka
ec299312a0
gnu: fpga.scm: Use git-version and git-file-name where appropriate.
...
* gnu/packages/fpga.scm (abc): Use git-version. The uri is using an
autogenerated commit package, it would ideally use git-fetch. The
canonical repository is now on GitHub, but the old commit ID is not
present. This means that changing the origin is best done together
with an update.
(icestorm): Use git-version, git-file-name.
(arachne-pnr): Use git-file-name.
2020-02-20 22:45:33 +01:00
Jakub Kądziołka
fb36ac61d4
gnu: ntk: Use git-file-name.
...
* gnu/packages/fltk.scm (ntk): Use git-file-name.
2020-02-20 22:45:32 +01:00
Kyle Meyer
d4160848a0
gnu: git-annex: Update to 7.20200219.
...
* gnu/packages/haskell-apps.scm (git-annex): Update to 7.20200219.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-20 16:30:29 -05:00
Leo Famulari
cbfa8bb313
gnu: perl-image-exiftool: Update to 11.85.
...
* gnu/packages/photo.scm (perl-image-exiftool): Update to 11.85.
2020-02-20 16:30:22 -05:00
Leo Famulari
0dc1f651a8
gnu: RawTherapee: Update to 5.8.
...
* gnu/packages/photo.scm (rawtherapee): Update to 5.8.
2020-02-20 15:00:28 -05:00
Nicolas Goaziou
bf8dfe3df0
doc: Use two spaces after full stops.
...
* doc/guix.texi (The Store): Use two spaces after full stops.
2020-02-20 14:06:44 +01:00
Lars-Dominik Braun
35f3511167
ssh: Add Kerberos-support to ssh:// daemon URLs
...
* guix/ssh.scm (open-ssh-session): Fall back to GSSAPI if public key
authentication does not work
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-20 11:14:44 +01:00
Lars-Dominik Braun
ef30ddb2c2
gnu: Add Kerberos support to libssh
...
* gnu/packages/ssh.scm (libssh)[inputs]: Depend on mit-krb5
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-20 11:14:39 +01:00
Ludovic Courtès
7ff86ecae1
build-self: Show wider backtraces.
...
* build-aux/build-self.scm (build): Add 'setenv' call for "COLUMNS".
2020-02-20 11:12:33 +01:00
Leo Famulari
9b2310a0b4
gnu: certbot, python-acme: Update to 1.2.0.
...
* gnu/packages/tls.scm (certbot, python-acme): Update to 1.2.0.
2020-02-19 22:51:57 -05:00
Mark H Weaver
3be96aa9d9
gnu: linux-libre: Update to 5.4.21.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.21.
(linux-libre-5.4-pristine-source): Update hash.
2020-02-19 22:32:39 -05:00
Mark H Weaver
bfab5ce9c4
gnu: linux-libre@4.19: Update to 4.19.105.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.105.
(linux-libre-4.19-pristine-source): Update hash.
2020-02-19 22:31:21 -05:00
Julien Lepiller
6dde98c3d9
gnu: libevent: Split into two outputs.
...
This removes python and its dependencies from the libevent closure,
reducing it from 180MB to 70MB.
* gnu/packages/libevent.scm (libevent): Add bin output.
2020-02-20 02:09:56 +01:00
Tobias Geerinckx-Rice
00c967f6a4
gnu: js-selectize: Use HTTPS home page.
...
* gnu/packages/javascript.scm (js-selectize)[home-page]: Use HTTPS.
2020-02-19 23:48:26 +01:00
Tobias Geerinckx-Rice
082c733c1d
gnu: python-scikit-image: Use HTTPS home page.
...
* gnu/packages/python-science.scm (python-scikit-image)[home-page]: Use HTTPS.
2020-02-19 23:48:15 +01:00
Tobias Geerinckx-Rice
1dc184b441
gnu: transset-df: Use HTTPS home page.
...
* gnu/packages/xorg.scm (transset-df)[home-page]: Use HTTPS.
2020-02-19 23:43:40 +01:00
Tobias Geerinckx-Rice
5ee0e01320
gnu: munge: Update to 0.5.14.
...
* gnu/packages/admin.scm (munge): Update to 0.5.14.
[source]: Expand snippet.
[arguments]: Continue installing pkg-config file.
Add new ‘skip-failing-tests’ for the new test suite.
2020-02-19 23:43:40 +01:00
Tobias Geerinckx-Rice
7039b199a2
gnu: crypto++: Update to 8.2.0.
...
* gnu/packages/crypto.scm (crypto++): Update to 8.2.0.
2020-02-19 23:43:40 +01:00
Tobias Geerinckx-Rice
e54b381dd4
gnu: crypto++: Returt #t from all phases.
...
* gnu/packages/crypto.scm (crypto++)[arguments]: Return #t from
‘install-pkg-config’.
2020-02-19 23:43:39 +01:00
Tobias Geerinckx-Rice
bfa3caa2fb
gnu: crypto++: Build in parallel.
...
* gnu/packages/crypto.scm (crypto++)[arguments]: Make ‘build-shared’
the main ‘build’ phase. Respect MAKE-FLAGS and PARALLEL-JOB-COUNT.
2020-02-19 23:43:39 +01:00
Tobias Geerinckx-Rice
3ca6c1a720
gnu: crypto++: Don't hard-code VERSION.
...
* gnu/packages/crypto.scm (crypto++)[arguments]: Use package VERSION.
2020-02-19 23:43:39 +01:00
Tobias Geerinckx-Rice
e48390cb20
gnu: libbytesize: Update to 2.2.
...
* gnu/packages/c.scm (libbytesize): Update to 2.2.
2020-02-19 23:43:39 +01:00
Ricardo Wurmus
f55084b782
gnu: r-scran: Update to 1.14.6.
...
* gnu/packages/bioinformatics.scm (r-scran): Update to 1.14.6.
2020-02-19 23:00:58 +01:00
Ricardo Wurmus
9374f550e6
gnu: r-hdf5array: Update to 1.14.2.
...
* gnu/packages/bioinformatics.scm (r-hdf5array): Update to 1.14.2.
2020-02-19 23:00:53 +01:00
Ricardo Wurmus
f2b9f41234
gnu: r-gviz: Update to 1.30.3.
...
* gnu/packages/bioinformatics.scm (r-gviz): Update to 1.30.3.
2020-02-19 23:00:48 +01:00
Ricardo Wurmus
3f4f3a7822
gnu: r-rhtslib: Update to 1.18.1.
...
* gnu/packages/bioinformatics.scm (r-rhtslib): Update to 1.18.1.
2020-02-19 23:00:42 +01:00
Ricardo Wurmus
f0e330d68b
gnu: r-genomicfeatures: Update to 1.38.2.
...
* gnu/packages/bioinformatics.scm (r-genomicfeatures): Update to 1.38.2.
2020-02-19 23:00:36 +01:00
Ricardo Wurmus
154babb9c4
gnu: r-rsamtools: Update to 2.2.2.
...
* gnu/packages/bioinformatics.scm (r-rsamtools): Update to 2.2.2.
2020-02-19 23:00:31 +01:00
Ricardo Wurmus
e0ca7b3a14
gnu: r-limma: Update to 3.42.2.
...
* gnu/packages/bioinformatics.scm (r-limma): Update to 3.42.2.
2020-02-19 23:00:25 +01:00
Ricardo Wurmus
0f72b7abd8
gnu: r-shortread: Update to 1.44.3.
...
* gnu/packages/bioinformatics.scm (r-shortread): Update to 1.44.3.
2020-02-19 23:00:20 +01:00
Ricardo Wurmus
d66901e2c3
gnu: r-depecher: Update to 1.2.1.
...
* gnu/packages/bioconductor.scm (r-depecher): Update to 1.2.1.
2020-02-19 23:00:13 +01:00
Ricardo Wurmus
f607098f05
gnu: r-mixomics: Update to 6.10.8.
...
* gnu/packages/bioconductor.scm (r-mixomics): Update to 6.10.8.
2020-02-19 23:00:08 +01:00
Ricardo Wurmus
e01fa33baa
gnu: r-rsubread: Update to 2.0.1.
...
* gnu/packages/bioconductor.scm (r-rsubread): Update to 2.0.1.
2020-02-19 23:00:02 +01:00
Ricardo Wurmus
f86549cbb6
gnu: r-atacseqqc: Update to 1.10.2.
...
* gnu/packages/bioconductor.scm (r-atacseqqc): Update to 1.10.2.
2020-02-19 22:59:56 +01:00
Ricardo Wurmus
776e98fe05
gnu: r-heatplus: Update to 2.32.1.
...
* gnu/packages/bioconductor.scm (r-heatplus): Update to 2.32.1.
2020-02-19 22:59:49 +01:00
Ricardo Wurmus
effbf7d986
gnu: r-biocsingular: Update to 1.2.2.
...
* gnu/packages/bioconductor.scm (r-biocsingular): Update to 1.2.2.
2020-02-19 22:59:44 +01:00
Ricardo Wurmus
b7e86efd3b
gnu: r-inspect: Update to 1.16.3.
...
* gnu/packages/bioconductor.scm (r-inspect): Update to 1.16.3.
2020-02-19 22:59:35 +01:00
Ricardo Wurmus
e40d6c4c7a
gnu: r-biclust: Update to 2.0.2.
...
* gnu/packages/cran.scm (r-biclust): Update to 2.0.2.
2020-02-19 21:19:55 +01:00
Ricardo Wurmus
1a060eabf8
gnu: r-tolerance: Update to 2.0.0.
...
* gnu/packages/cran.scm (r-tolerance): Update to 2.0.0.
[propagated-inputs]: Add r-mass.
2020-02-19 21:19:39 +01:00
Ricardo Wurmus
a3d80e6212
gnu: r-imager: Update to 0.42.1.
...
* gnu/packages/cran.scm (r-imager): Update to 0.42.1.
[propagated-inputs]: Remove r-cairo and r-plyr.
2020-02-19 21:19:04 +01:00
Ricardo Wurmus
90d499782e
gnu: r-actigraphy: Update to 1.4.0.
...
* gnu/packages/cran.scm (r-actigraphy): Update to 1.4.0.
[propagated-inputs]: Remove r-sdmtools.
2020-02-19 21:18:30 +01:00
Ricardo Wurmus
46d833ef98
gnu: r-actfrag: Update to 0.1.1.
...
* gnu/packages/cran.scm (r-actfrag): Update to 0.1.1.
2020-02-19 21:18:22 +01:00
Ricardo Wurmus
fd483cb370
gnu: r-gamlss: Update to 5.1-6.
...
* gnu/packages/cran.scm (r-gamlss): Update to 5.1-6.
2020-02-19 21:18:14 +01:00
Ricardo Wurmus
1a3a1d66d6
gnu: r-randtoolbox: Update to 1.30.1.
...
* gnu/packages/cran.scm (r-randtoolbox): Update to 1.30.1.
2020-02-19 21:18:07 +01:00
Ricardo Wurmus
e7705bc267
gnu: r-showtext: Update to 0.7-1.
...
* gnu/packages/cran.scm (r-showtext): Update to 0.7-1.
2020-02-19 21:18:00 +01:00
Ricardo Wurmus
8343dcf1aa
gnu: r-abcrlda: Update to 1.0.2.
...
* gnu/packages/cran.scm (r-abcrlda): Update to 1.0.2.
2020-02-19 21:17:52 +01:00
Ricardo Wurmus
6abb66d1be
gnu: r-bios2cor: Update to 2.1.
...
* gnu/packages/cran.scm (r-bios2cor): Update to 2.1.
2020-02-19 21:17:43 +01:00
Ricardo Wurmus
5130dd52eb
gnu: r-parameters: Update to 0.5.0.
...
* gnu/packages/cran.scm (r-parameters): Update to 0.5.0.
2020-02-19 21:17:35 +01:00
Ricardo Wurmus
469c484afc
gnu: r-assertr: Update to 2.7.
...
* gnu/packages/cran.scm (r-assertr): Update to 2.7.
2020-02-19 21:17:27 +01:00
Ricardo Wurmus
16703ceaea
gnu: r-leiden: Update to 0.3.3.
...
* gnu/packages/cran.scm (r-leiden): Update to 0.3.3.
2020-02-19 21:17:18 +01:00
Ricardo Wurmus
0f303adfe5
gnu: r-styler: Update to 1.3.1.
...
* gnu/packages/cran.scm (r-styler): Update to 1.3.1.
[propagated-inputs]: Add r-r-cache.
2020-02-19 21:17:02 +01:00
Ricardo Wurmus
ff92cd1de4
gnu: r-lintr: Update to 2.0.1.
...
* gnu/packages/cran.scm (r-lintr): Update to 2.0.1.
[propagated-inputs]: Remove r-stringdist.
2020-02-19 21:16:38 +01:00
Ricardo Wurmus
6e94ba488c
gnu: r-ggraph: Update to 2.0.1.
...
* gnu/packages/cran.scm (r-ggraph): Update to 2.0.1.
2020-02-19 21:16:27 +01:00
Ricardo Wurmus
2d1788f48d
gnu: r-rmetasim: Update to 3.1.14.
...
* gnu/packages/cran.scm (r-rmetasim): Update to 3.1.14.
2020-02-19 21:16:20 +01:00
Ricardo Wurmus
886cd33460
gnu: r-sf: Update to 0.8-1.
...
* gnu/packages/cran.scm (r-sf): Update to 0.8-1.
2020-02-19 21:16:11 +01:00
Ricardo Wurmus
ffe45e0aa0
gnu: r-deldir: Update to 0.1-25.
...
* gnu/packages/cran.scm (r-deldir): Update to 0.1-25.
2020-02-19 21:16:03 +01:00
Ricardo Wurmus
7227fd4388
gnu: r-spdata: Update to 0.3.3.
...
* gnu/packages/cran.scm (r-spdata): Update to 0.3.3.
[propagated-inputs]: Add r-raster and r-sp.
2020-02-19 21:15:46 +01:00
Ricardo Wurmus
3f1c75ee3a
gnu: r-picante: Update to 1.8.1.
...
* gnu/packages/cran.scm (r-picante): Update to 1.8.1.
2020-02-19 21:15:37 +01:00
Ricardo Wurmus
5e1c84e5f0
gnu: r-repr: Update to 1.1.0.
...
* gnu/packages/cran.scm (r-repr): Update to 1.1.0.
2020-02-19 21:15:30 +01:00
Ricardo Wurmus
50c0f22fad
gnu: r-gamlss-dist: Update to 5.1-6.
...
* gnu/packages/cran.scm (r-gamlss-dist): Update to 5.1-6.
2020-02-19 21:15:20 +01:00
Ricardo Wurmus
2d5c38f500
gnu: r-blockmodeling: Update to 0.3.6.
...
* gnu/packages/cran.scm (r-blockmodeling): Update to 0.3.6.
[propagated-inputs]: Remove r-doparallel, r-dorng, and r-foreach.
2020-02-19 21:14:52 +01:00
Ricardo Wurmus
8150ebedb8
gnu: r-rsvd: Update to 1.0.3.
...
* gnu/packages/cran.scm (r-rsvd): Update to 1.0.3.
2020-02-19 21:14:45 +01:00
Ricardo Wurmus
ecf7477b6e
gnu: r-mcmc: Update to 0.9-6.1.
...
* gnu/packages/cran.scm (r-mcmc): Update to 0.9-6.1.
2020-02-19 21:14:36 +01:00
Ricardo Wurmus
8f5468e7e7
gnu: r-etm: Update to 1.0.5.1.
...
* gnu/packages/cran.scm (r-etm): Update to 1.0.5.1.
2020-02-19 21:14:24 +01:00
Ricardo Wurmus
dbfbef8729
gnu: r-protviz: Update to 0.6.0.
...
* gnu/packages/cran.scm (r-protviz): Update to 0.6.0.
2020-02-19 21:14:16 +01:00
Ricardo Wurmus
4e977a9bf2
gnu: r-genenet: Update to 1.2.14.
...
* gnu/packages/cran.scm (r-genenet): Update to 1.2.14.
2020-02-19 21:14:08 +01:00
Ricardo Wurmus
30ef5e8205
gnu: r-fields: Update to 10.3.
...
* gnu/packages/cran.scm (r-fields): Update to 10.3.
2020-02-19 21:13:59 +01:00
Ricardo Wurmus
fb413fff5c
gnu: r-rnifti: Update to 1.1.0.
...
* gnu/packages/cran.scm (r-rnifti): Update to 1.1.0.
2020-02-19 21:13:48 +01:00
Ricardo Wurmus
846ec72241
gnu: r-waveslim: Update to 1.7.5.2.
...
* gnu/packages/cran.scm (r-waveslim): Update to 1.7.5.2.
2020-02-19 21:13:39 +01:00
Ricardo Wurmus
0c13ce8c72
gnu: r-ks: Update to 1.11.7.
...
* gnu/packages/cran.scm (r-ks): Update to 1.11.7.
2020-02-19 21:13:31 +01:00
Ricardo Wurmus
0227947fbf
gnu: r-rgl: Update to 0.100.47.
...
* gnu/packages/cran.scm (r-rgl): Update to 0.100.47.
2020-02-19 21:13:20 +01:00
Ricardo Wurmus
969c933fb9
gnu: r-weights: Update to 1.0.1.
...
* gnu/packages/cran.scm (r-weights): Update to 1.0.1.
2020-02-19 21:13:07 +01:00
Ricardo Wurmus
7bc252902d
gnu: r-summarytools: Update to 0.9.5.
...
* gnu/packages/cran.scm (r-summarytools): Update to 0.9.5.
[propagated-inputs]: Add r-base64enc; remove r-rcurl.
2020-02-19 21:12:39 +01:00
Ricardo Wurmus
a8a261b0f1
gnu: r-remotes: Update to 2.1.1.
...
* gnu/packages/cran.scm (r-remotes): Update to 2.1.1.
2020-02-19 21:12:26 +01:00
Ricardo Wurmus
1f4ec0d578
gnu: r-ggeffects: Update to 0.14.1.
...
* gnu/packages/cran.scm (r-ggeffects): Update to 0.14.1.
[propagated-inputs]: Remove r-magrittr, r-purrr, and r-sjmisc.
2020-02-19 21:11:50 +01:00
Ricardo Wurmus
155f188634
gnu: r-performance: Update to 0.4.4.
...
* gnu/packages/cran.scm (r-performance): Update to 0.4.4.
2020-02-19 21:11:40 +01:00
Ricardo Wurmus
e9f6089744
gnu: r-bayestestr: Update to 0.5.2.
...
* gnu/packages/cran.scm (r-bayestestr): Update to 0.5.2.
2020-02-19 21:11:17 +01:00
Ricardo Wurmus
0fb7f0acca
gnu: r-glmmtmb: Update to 1.0.0.
...
* gnu/packages/cran.scm (r-glmmtmb): Update to 1.0.0.
2020-02-19 21:11:02 +01:00
Ricardo Wurmus
f09351f4c5
gnu: r-sjstats: Update to 0.17.9.
...
* gnu/packages/cran.scm (r-sjstats): Update to 0.17.9.
2020-02-19 21:10:45 +01:00
Ricardo Wurmus
2be78b58a4
gnu: r-emmeans: Update to 1.4.4.
...
* gnu/packages/cran.scm (r-emmeans): Update to 1.4.4.
2020-02-19 21:10:36 +01:00
Ricardo Wurmus
59987505c0
gnu: r-raster: Update to 3.0-12.
...
* gnu/packages/cran.scm (r-raster): Update to 3.0-12.
2020-02-19 21:10:20 +01:00
Ricardo Wurmus
f0e83d6856
gnu: r-ggformula: Update to 0.9.3.
...
* gnu/packages/cran.scm (r-ggformula): Update to 0.9.3.
[propagated-inputs]: Add r-ggforce.
2020-02-19 21:09:53 +01:00
Ricardo Wurmus
0048894f33
gnu: r-doby: Update to 4.6-4.1.
...
* gnu/packages/cran.scm (r-doby): Update to 4.6-4.1.
2020-02-19 21:09:42 +01:00
Ricardo Wurmus
bfbb33e8f8
gnu: r-flextable: Update to 0.5.8.
...
* gnu/packages/cran.scm (r-flextable): Update to 0.5.8.
2020-02-19 21:09:30 +01:00
Ricardo Wurmus
544366842b
gnu: r-sjlabelled: Update to 1.1.3.
...
* gnu/packages/cran.scm (r-sjlabelled): Update to 1.1.3.
2020-02-19 21:09:20 +01:00
Ricardo Wurmus
cedf4aa48c
gnu: r-insight: Update to 0.8.1.
...
* gnu/packages/cran.scm (r-insight): Update to 0.8.1.
2020-02-19 21:09:10 +01:00
Ricardo Wurmus
8151a35812
gnu: r-factominer: Update to 2.2.
...
* gnu/packages/cran.scm (r-factominer): Update to 2.2.
2020-02-19 21:08:59 +01:00
Ricardo Wurmus
d99a211d2d
gnu: r-ggpubr: Update to 0.2.5.
...
* gnu/packages/cran.scm (r-ggpubr): Update to 0.2.5.
2020-02-19 21:08:47 +01:00
Ricardo Wurmus
398c8be0a2
gnu: r-learnr: Update to 0.10.1.
...
* gnu/packages/cran.scm (r-learnr): Update to 0.10.1.
2020-02-19 21:08:36 +01:00
Ricardo Wurmus
ab06092c5e
gnu: r-renv: Update to 0.9.3.
...
* gnu/packages/cran.scm (r-renv): Update to 0.9.3.
2020-02-19 21:08:24 +01:00
Ricardo Wurmus
de20b0f271
gnu: r-vim: Update to 5.1.0.
...
* gnu/packages/cran.scm (r-vim): Update to 5.1.0.
[propagated-inputs]: Add r-magrittr.
2020-02-19 21:08:00 +01:00
Ricardo Wurmus
2d37face53
gnu: r-np: Update to 0.60-10.
...
* gnu/packages/cran.scm (r-np): Update to 0.60-10.
2020-02-19 21:07:43 +01:00
Ricardo Wurmus
2097da3e8c
gnu: r-processx: Update to 3.4.2.
...
* gnu/packages/cran.scm (r-processx): Update to 3.4.2.
2020-02-19 21:07:28 +01:00
Ricardo Wurmus
fa27e4d2ba
gnu: r-laeken: Update to 0.5.1.
...
* gnu/packages/cran.scm (r-laeken): Update to 0.5.1.
2020-02-19 21:07:18 +01:00
Ricardo Wurmus
42e45862ea
gnu: r-performanceanalytics: Update to 2.0.4.
...
* gnu/packages/cran.scm (r-performanceanalytics): Update to 2.0.4.
2020-02-19 21:07:07 +01:00
Ricardo Wurmus
aed2fe3f77
gnu: r-rmysql: Update to 0.10.19.
...
* gnu/packages/cran.scm (r-rmysql): Update to 0.10.19.
2020-02-19 21:06:54 +01:00
Ricardo Wurmus
e92370a10e
gnu: r-drr: Update to 0.0.4.
...
* gnu/packages/cran.scm (r-drr): Update to 0.0.4.
2020-02-19 21:06:43 +01:00
Ricardo Wurmus
30e1fff333
gnu: r-emdbook: Update to 1.3.12.
...
* gnu/packages/cran.scm (r-emdbook): Update to 1.3.12.
[propagated-inputs]: Remove r-rcpp.
2020-02-19 21:06:18 +01:00
Ricardo Wurmus
d05c224c3b
gnu: r-bbmle: Update to 1.0.23.1.
...
* gnu/packages/cran.scm (r-bbmle): Update to 1.0.23.1.
2020-02-19 21:06:04 +01:00
Ricardo Wurmus
4332a46ca7
gnu: r-dendextend: Update to 1.13.3.
...
* gnu/packages/cran.scm (r-dendextend): Update to 1.13.3.
2020-02-19 21:05:48 +01:00
Ricardo Wurmus
01fb586285
gnu: r-ps: Update to 1.3.2.
...
* gnu/packages/cran.scm (r-ps): Update to 1.3.2.
2020-02-19 21:05:32 +01:00
Ricardo Wurmus
a7474115bf
gnu: r-rgooglemaps: Update to 1.4.5.3.
...
* gnu/packages/cran.scm (r-rgooglemaps): Update to 1.4.5.3.
[propagated-inputs]: Add r-sp.
2020-02-19 21:04:51 +01:00
Ricardo Wurmus
437825dd0a
gnu: r-mapproj: Update to 1.2.7.
...
* gnu/packages/cran.scm (r-mapproj): Update to 1.2.7.
2020-02-19 21:04:29 +01:00
Ricardo Wurmus
256761021c
gnu: r-jsonlite: Update to 1.6.1.
...
* gnu/packages/cran.scm (r-jsonlite): Update to 1.6.1.
2020-02-19 21:03:05 +01:00
Ricardo Wurmus
ed5e514dff
gnu: r-callr: Update to 3.4.2.
...
* gnu/packages/cran.scm (r-callr): Update to 3.4.2.
2020-02-19 21:02:52 +01:00
Ricardo Wurmus
ca61ca930d
gnu: r-mixtools: Update to 1.2.0.
...
* gnu/packages/statistics.scm (r-mixtools): Update to 1.2.0.
[propagated-inputs]: Add r-kernlab.
2020-02-19 21:02:31 +01:00
Ricardo Wurmus
c06d6ebdad
gnu: r-hexbin: Update to 1.28.1.
...
* gnu/packages/statistics.scm (r-hexbin): Update to 1.28.1.
[native-inputs]: Add r-knitr.
2020-02-19 21:02:04 +01:00
Ricardo Wurmus
d6d08891f4
gnu: r-tidyselect: Update to 1.0.0.
...
* gnu/packages/statistics.scm (r-tidyselect): Update to 1.0.0.
[propagated-inputs]: Add r-ellipsis and r-vctrs; remove r-rcpp.
2020-02-19 21:01:33 +01:00
Ricardo Wurmus
98319975bf
gnu: r-ade4: Update to 1.7-15.
...
* gnu/packages/statistics.scm (r-ade4): Update to 1.7-15.
[propagated-inputs]: Add r-pixmap and r-sp.
2020-02-19 21:01:17 +01:00
Ricardo Wurmus
9970c25eb9
gnu: r-dplyr: Update to 0.8.4.
...
* gnu/packages/statistics.scm (r-dplyr): Update to 0.8.4.
[propagated-inputs]: Add r-ellipsis.
2020-02-19 21:00:57 +01:00
Ricardo Wurmus
b8fc0678e7
gnu: r-directlabels: Update to 2020.1.31.
...
* gnu/packages/statistics.scm (r-directlabels): Update to 2020.1.31.
2020-02-19 21:00:29 +01:00
Ricardo Wurmus
0394d994b5
gnu: r-sn: Update to 1.5-5.
...
* gnu/packages/statistics.scm (r-sn): Update to 1.5-5.
2020-02-19 21:00:19 +01:00
Ricardo Wurmus
1f029f7f11
gnu: r-mnormt: Update to 1.5-6.
...
* gnu/packages/statistics.scm (r-mnormt): Update to 1.5-6.
2020-02-19 21:00:08 +01:00
Ricardo Wurmus
c0d106acab
gnu: r-rcppprogress: Update to 0.4.2.
...
* gnu/packages/statistics.scm (r-rcppprogress): Update to 0.4.2.
[propagated-inputs]: Remove r-devtools and r-rcpp.
2020-02-19 20:59:46 +01:00
Ricardo Wurmus
c4c3dfdabb
gnu: r-fpc: Update to 2.2-5.
...
* gnu/packages/statistics.scm (r-fpc): Update to 2.2-5.
2020-02-19 20:59:33 +01:00
Ricardo Wurmus
fdfcde2a49
gnu: r-trimcluster: Update to 0.1-5.
...
* gnu/packages/statistics.scm (r-trimcluster): Update to 0.1-5.
2020-02-19 20:59:25 +01:00
Ricardo Wurmus
9227b59d0d
gnu: r-statmod: Update to 1.4.34.
...
* gnu/packages/statistics.scm (r-statmod): Update to 1.4.34.
2020-02-19 20:59:12 +01:00
Ricardo Wurmus
31a0be58d2
gnu: r-sfsmisc: Update to 1.1-5.
...
* gnu/packages/statistics.scm (r-sfsmisc): Update to 1.1-5.
2020-02-19 20:59:01 +01:00
Ricardo Wurmus
f1c7e1960c
gnu: r-hmisc: Update to 4.3-1.
...
* gnu/packages/statistics.scm (r-hmisc): Update to 4.3-1.
2020-02-19 20:58:52 +01:00
Ricardo Wurmus
a9f21dd9d4
gnu: r-plotly: Update to 4.9.2.
...
* gnu/packages/statistics.scm (r-plotly): Update to 4.9.2.
2020-02-19 20:58:44 +01:00
Ricardo Wurmus
460ff75a88
gnu: r-r-methodss3: Update to 1.8.0.
...
* gnu/packages/statistics.scm (r-r-methodss3): Update to 1.8.0.
2020-02-19 20:58:31 +01:00
Ricardo Wurmus
f5d0d7e0d7
gnu: r-dt: Update to 0.12.
...
* gnu/packages/statistics.scm (r-dt): Update to 0.12.
2020-02-19 20:58:23 +01:00
Ricardo Wurmus
ff8b5e852e
gnu: r-foreach: Update to 1.4.8.
...
* gnu/packages/statistics.scm (r-foreach): Update to 1.4.8.
2020-02-19 20:58:14 +01:00
Ricardo Wurmus
0c740489f9
gnu: r-rcpparmadillo: Update to 0.9.850.1.0.
...
* gnu/packages/statistics.scm (r-rcpparmadillo): Update to 0.9.850.1.0.
2020-02-19 20:58:05 +01:00
Ricardo Wurmus
2d4c4651c5
gnu: r-devtools: Update to 2.2.2.
...
* gnu/packages/statistics.scm (r-devtools): Update to 2.2.2.
2020-02-19 20:57:56 +01:00
Ricardo Wurmus
f5afee1050
gnu: r-rstudioapi: Update to 0.11.
...
* gnu/packages/statistics.scm (r-rstudioapi): Update to 0.11.
2020-02-19 20:57:05 +01:00
Ricardo Wurmus
eea33597e0
gnu: r-checkmate: Update to 2.0.0.
...
* gnu/packages/statistics.scm (r-checkmate): Update to 2.0.0.
2020-02-19 20:56:57 +01:00
Ricardo Wurmus
26e41929c0
gnu: r-chron: Update to 2.3-55.
...
* gnu/packages/statistics.scm (r-chron): Update to 2.3-55.
2020-02-19 20:56:44 +01:00
Ricardo Wurmus
3681b1c333
gnu: r-rlang: Update to 0.4.4.
...
* gnu/packages/statistics.scm (r-rlang): Update to 0.4.4.
2020-02-19 20:56:31 +01:00
Ricardo Wurmus
738f3e0bba
gnu: r-knitr: Update to 1.28.
...
* gnu/packages/statistics.scm (r-knitr): Update to 1.28.
2020-02-19 20:56:23 +01:00
Ricardo Wurmus
67c6d5d000
gnu: r-yaml: Update to 2.2.1.
...
* gnu/packages/statistics.scm (r-yaml): Update to 2.2.1.
2020-02-19 20:56:16 +01:00
Ricardo Wurmus
ebbed19baf
gnu: r-mime: Update to 0.9.
...
* gnu/packages/statistics.scm (r-mime): Update to 0.9.
2020-02-19 20:56:08 +01:00
Ricardo Wurmus
8bf717ed36
gnu: r-svglite: Update to 1.2.3.
...
* gnu/packages/statistics.scm (r-svglite): Update to 1.2.3.
2020-02-19 20:55:59 +01:00
Ricardo Wurmus
0f86093cad
gnu: r-stringi: Update to 1.4.6.
...
* gnu/packages/statistics.scm (r-stringi): Update to 1.4.6.
2020-02-19 20:55:50 +01:00
Ricardo Wurmus
26162b8be9
gnu: r-digest: Update to 0.6.24.
...
* gnu/packages/statistics.scm (r-digest): Update to 0.6.24.
2020-02-19 20:55:42 +01:00
Ricardo Wurmus
7069e6c2d6
gnu: r-bit: Update to 1.1-15.2.
...
* gnu/packages/statistics.scm (r-bit): Update to 1.1-15.2.
2020-02-19 20:55:35 +01:00
Ricardo Wurmus
304ea861c3
gnu: r-nlme: Update to 3.1-144.
...
* gnu/packages/statistics.scm (r-nlme): Update to 3.1-144.
2020-02-19 20:55:26 +01:00
Ricardo Wurmus
74fa293245
gnu: r-lattice: Update to 0.20-40.
...
* gnu/packages/statistics.scm (r-lattice): Update to 0.20-40.
2020-02-19 20:55:18 +01:00
Ricardo Wurmus
f45ada0fc8
gnu: r-seurat: Update to 3.1.3.
...
* gnu/packages/bioinformatics.scm (r-seurat): Update to 3.1.3.
[propagated-inputs]: Remove r-sdmtools.
2020-02-19 20:55:00 +01:00
Ricardo Wurmus
db092c2a90
gnu: r-qtl: Update to 1.45-11.
...
* gnu/packages/bioinformatics.scm (r-qtl): Update to 1.45-11.
2020-02-19 20:54:45 +01:00
Ricardo Wurmus
be1042b326
gnu: r-nmf: Update to 0.22.0.
...
* gnu/packages/bioconductor.scm (r-nmf): Update to 0.22.0.
[propagated-inputs]: Add r-biobase and r-biocmanager.
2020-02-19 18:57:31 +01:00
Ricardo Wurmus
7c9d8a5d58
gnu: r-nmf: Move to (gnu packages bioconductor).
...
* gnu/packages/statistics.scm (r-nmf): Move this variable from here...
* gnu/packages/bioconductor.scm (r-nmf): ...to here.
2020-02-19 18:46:22 +01:00
Ricardo Wurmus
bfb6c393b9
gnu: gwl: Build with Guile 3.
...
* gnu/packages/package-management.scm (gwl)[inputs]: Replace guile-2.2 with
guile-3.0.
[propagated-inputs]: Replace guix, guile-commonmark, guile-gcrypt, guile-pfds,
guile-syntax-highlight, and guile-wisp with their Guile 3.0 variants.
2020-02-19 17:30:29 +01:00
Ricardo Wurmus
5479cef8ef
gnu: Add guile-lens.
...
* gnu/packages/guile-xyz.scm (guile-lens): New variable.
2020-02-19 17:30:26 +01:00
Pierre Neidhardt
08c7853518
gnu: Add libgdiplus.
...
* gnu/packages/mono.scm (libgdiplus): New variable.
2020-02-19 17:11:10 +01:00
Valentin Ignatev
ba7ead2b50
gnu: Add rust-nom-3.
...
* gnu/packages/crates-io.scm (rust-nom-3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-19 09:58:47 +02:00
Valentin Ignatev
d20c6d3d01
gnu: Add rust-lazy-static-0.1.
...
* gnu/packages/crates-io.scm (rust-lazy-static-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-19 09:54:52 +02:00
Valentin Ignatev
192363333d
gnu: Add rust-lazy-static-0.2.
...
* gnu/packages/crates-io.scm (rust-lazy-static-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-19 09:53:24 +02:00
Valentin Ignatev
f8d773f433
gnu: rust-nom-4.2: Fix dependencies
...
* gnu/packages/crates-io.scm (rust-nom-4.2)[arguments]: Remove
rust-lexical-core-0.4, add rust-version-check-0.1 to cargo-inputs.
Remove rust-doc-comment-0.3, rust-version-check-0.9 from
cargo-development-inputs.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-19 09:49:28 +02:00
Efraim Flashner
84eb24b68a
gnu: Add rust-jemallocator-0.1.
...
* gnu/packages/crates-io.scm (rust-jemallocator-0.1): New variable.
2020-02-19 09:40:07 +02:00
Efraim Flashner
b08b29879d
gnu: Add rust-jemalloc-sys-0.1.
...
* gnu/packages/crates-io.scm (rust-jemalloc-sys-0.1): New variable.
2020-02-19 09:39:22 +02:00
Valentin Ignatev
f8bf241c93
gnu: Add rust-osmesa-sys-0.1.
...
* gnu/packages/crates-io.scm (rust-osmesa-sys-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-19 09:26:01 +02:00
Julien Lepiller
c6c447701c
gnu: services: Add openvpn options.
...
* gnu/services/vpn.scm (openvpn-client-configuration)
(openvpn-server-configuration): Add fast-io? and auth-user-pass options.
2020-02-19 04:08:55 +01:00
Julien Lepiller
0372dd1a1e
gnu: services: Fix openvpn boolean fields.
...
* gnu/services/vpn.scm (serialize-boolean): Do not print #t to the file.
2020-02-19 04:08:40 +01:00
Pierre Neidhardt
97c6670ef7
gnu: emacs-racket-mode: Update to 20200115.
...
* gnu/packages/emacs-xyz.scm (emacs-racket-mode): Update to 20200115.
2020-02-18 19:54:13 +01:00
Tobias Geerinckx-Rice
e46aacacdf
gnu: mplayer: Fix dvdnav support.
...
* gnu/packages/video.scm (mplayer)[inputs]: Add libdvdread.
2020-02-18 18:25:29 +01:00
Tobias Geerinckx-Rice
8480bdd32e
gnu: mplayer: Enable GIF support.
...
* gnu/packages/video.scm (mplayer)[inputs]: Add giflib.
2020-02-18 18:25:29 +01:00
Tobias Geerinckx-Rice
858b68e491
gnu: mplayer: Don't follow home page browser redirection.
...
* gnu/packages/video.scm (mplayer)[home-page]: Let the browser eat
HTML.
2020-02-18 18:25:29 +01:00
Tobias Geerinckx-Rice
59ed95d6b8
gnu: mplayer: Update to 1.4.
...
* gnu/packages/video.scm (mplayer): Update to 1.4.
[inputs]: Use default ffmpeg version.
2020-02-18 18:25:29 +01:00
Tobias Geerinckx-Rice
a894ca327b
gnu: cvs-fast-export: Use non-native Python 3.
...
* gnu/packages/version-control.scm (cvs-fast-export)[native-inputs]:
Remove python-2.
[inputs]: Add python-wrapper.
2020-02-18 18:25:29 +01:00
Tobias Geerinckx-Rice
d462bf0e49
gnu: cvs-fast-export: Update to 1.51.
...
* gnu/packages/version-control.scm (cvs-fast-export): Update to 1.51.
[arguments]: Remove obsolete ‘remove-optimizations’ phase.
2020-02-18 18:25:29 +01:00
Tobias Geerinckx-Rice
8cc1fdcee7
gnu: pianobar: Update to 2019.02.14.
...
* gnu/packages/music.scm (pianobar): Update to 2019.02.14.
[inputs]: Use current ffmpeg.
2020-02-18 18:25:29 +01:00
Tobias Geerinckx-Rice
c298063545
gnu: Use HTTPS for www.dockapps.net home pages.
...
* gnu/packages/gnustep.scm (wmbattery, wmcpuload, wmclock)[home-page]:
Use HTTPS.
2020-02-18 18:25:29 +01:00
Tobias Geerinckx-Rice
a76e49addf
gnu: nfs-utils: Use HTTPS home page.
...
* gnu/packages/nfs.scm (nfs-utils)[home-page]: Use HTTPS.
2020-02-18 18:25:29 +01:00
Tobias Geerinckx-Rice
a4e8a9e0f0
gnu: Use HTTPS for elephly.net home pages.
...
* gnu/packages/audio.scm (lv2-mda-epiano, lv2-mda-piano)[home-page]:
Use HTTPS.
2020-02-18 18:25:29 +01:00
Maxim Cournoyer
adbdf188c2
scripts: system: Do not validate network file systems.
...
Fixes <https://bugs.gnu.org/39551 >.
* guix/scripts/system.scm (check-file-system-availability): Ignore file
systems of the NFS type.
2020-02-18 12:20:17 -05:00
Mathieu Othacehe
a0d19554cb
gnu: guile-ssh: Fix cross-compilation.
...
* gnu/packages/ssh.scm (guile-ssh)[native-inputs]: Add guile.
2020-02-18 17:11:43 +01:00
Mathieu Othacehe
38655d7b88
gnu: guile-ssh: Update to 0.12.0.
...
* gnu/packages/ssh.scm (guile-ssh): Update to 0.12.0,
[source]: remove snippet that were integrated upstream,
[arguments]: Add a fix-guile-path phase to fix tests.
(guile3.0-ssh)[arguments]: Remove as this is fixed upstream.
2020-02-18 17:11:43 +01:00
Pierre Neidhardt
4b8450c07e
gnu: Add racket-minimal.
...
* gnu/packages/scheme.scm (racket-minimal): New variable.
(racket-minimal)[arguments]: Split 'pre-configure phase so that the
non-minimal part can be easily removed in racket-minimal.
2020-02-18 17:04:16 +01:00
Pierre Neidhardt
fb9832436a
gnu: racket: Update to 7.6.
...
* gnu/packages/scheme.scm (racket): Update to 7.6.
[home-page]: Use HTTPS.
* gnu/packages/patches/racket-store-checksum-override.patch: Adjust for 7.6.
2020-02-18 17:03:09 +01:00
Timotej Lazar
45cf3c3019
gnu: julius: Update to 1.3.0.
...
* gnu/packages/games.scm (julius): Update to 1.3.0.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-02-18 16:38:05 +01:00
Tobias Geerinckx-Rice
e2f28609de
gnu: mrrescue: Use HTTPS home page.
...
* gnu/packages/games.scm (mrrescue)[home-page]: Use HTTPS.
2020-02-18 16:18:23 +01:00
Tobias Geerinckx-Rice
3e97cf4731
gnu: pianobar: Update home page.
...
* gnu/packages/music.scm (pianobar)[home-page]: Update & use HTTPS.
2020-02-18 16:18:01 +01:00
Tobias Geerinckx-Rice
7858de3e95
gnu: key-mon: Use HTTPS home page.
...
* gnu/packages/key-mon.scm (key-mon)[home-page]: Use HTTPS.
2020-02-18 16:18:01 +01:00
Tobias Geerinckx-Rice
df71892b21
gnu: libfakekey: Update to 0.3.
...
* gnu/packages/xdisorg.scm (libfakekey): Update to 0.3.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
[arguments]: Bootstrap manually.
[native-inputs]: Add autoconf, automake, and libtool.
2020-02-18 16:01:37 +01:00
Tobias Geerinckx-Rice
e031806277
gnu: Always use HTTPS for orthecreedence.github.io.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-async-future, sbcl-blackbird)[home-page]: Use HTTPS.
2020-02-18 15:49:11 +01:00
Tobias Geerinckx-Rice
10650b89f1
gnu: Add wireguard-tools.
...
The ‘wireguard’ repository that included both tools and kernel patch is
no longer maintained. I will add this to its description once kernel
5.6 hits Guix.
* gnu/packages/linux.scm (wireguard-tools): New public variable.
2020-02-18 15:49:11 +01:00
Tobias Geerinckx-Rice
8c20508f48
gnu: rust-nodrop-union-0.1: Fix typo.
...
This follows up on commit 028b0deebb .
* gnu/packages/crates-io.scm (rust-nodrop-union-0.1)[arguments]: Quote.
2020-02-18 15:48:23 +01:00
Pierre Neidhardt
676e21e4d2
gnu: next: Update to 1.5.0.
...
* gnu/packages/web-browsers.scm (next): Update to 1.5.0.
[synopsis]: Remove marketing.
[description]: Remove marketing.
2020-02-18 15:38:33 +01:00
Pierre Neidhardt
08d341003e
gnu: Add gnome-arcade.
...
* gnu/packages/emulators.scm (gnome-arcade): New variable.
2020-02-18 15:38:33 +01:00
Mathieu Othacehe
fde46843ec
Revert "gnu: guile-ssh: Fix cross-compilation."
...
This reverts commit 10cdf14080 .
./guix/store.scm:1224:15: Throw to key `srfi-34' with args `(#<condition &store-protocol-error [message: "build of `/gnu/store/gj4pk7zn0wrvf5c9rl9x8gnd3719l98d-guile3.0-ssh-0.12.0.drv' failed" status: 100] 7fa4df090120>)'.
guix pull: error: You found a bug: the program '/gnu/store/0nbcv4jkhf73qlvc6dsy05iamj6l662c-compute-guix-derivation'
2020-02-18 14:45:59 +01:00
Mathieu Othacehe
3db8833b46
Revert "gnu: guile-ssh: Update to 0.12.0."
...
This reverts commit 668740cc05 .
This causes the following error when running guix pull:
./guix/store.scm:1224:15: Throw to key `srfi-34' with args `(#<condition &store-protocol-error [message: "build of `/gnu/store/gj4pk7zn0wrvf5c9rl9x8gnd3719l98d-guile3.0-ssh-0.12.0.drv' failed" status: 100] 7fa4df090120>)'.
guix pull: error: You found a bug: the program '/gnu/store/0nbcv4jkhf73qlvc6dsy05iamj6l662c-compute-guix-derivation'
2020-02-18 14:43:43 +01:00
Valentin Ignatev
815d3ac4c3
gnu: rust-mio-0.6: Update to 0.6.21.
...
* gnu/packages/crates-io.scm (rust-mio-0.6): Update to 0.6.21.
[arguments]: Don't skip build. Skip tests. Add rust-cfg-if-0.1 to
cargo-inputs. Replce rust-winapi-0.3 with 0.2 in cargo-inputs.
Replace rust-bytes-0.4 with 0.3, rust-env-logger-0.6 with 0.4 in
cargo-development-inputs.
2020-02-18 14:11:33 +02:00
Efraim Flashner
2ebb82cae3
gnu: Add rust-bytes-0.3.
...
* gnu/packages/crates-io.scm (rust-bytes-0.3): New variable.
2020-02-18 14:11:33 +02:00
Valentin Ignatev
15b6bb4198
gnu: Add rust-shared-library-0.1.
...
* gnu/packages/crates-io.scm (rust-shared-library-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-18 14:00:54 +02:00
Valentin Ignatev
49380a3a86
gnu: Add rust-named-pipe-0.4.
...
* gnu/packages/crates-io.scm (rust-named-pipe-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-18 13:47:25 +02:00
Efraim Flashner
01005f4269
gn: edirect: Update to 12.1.20190829.
...
The previous version has disappeared upstream.
* gnu/packages/bioinformatics.scm (edirect): Update to 12.1.20190829.
2020-02-18 13:34:20 +02:00
Mathieu Othacehe
85e887ddc7
gnu: guile-git: Fix cross-compilation.
...
* gnu/packages/guile.scm (guile-git)[native-inputs]: Add guile and
guile-bytestructures.
2020-02-18 11:47:32 +01:00
Mathieu Othacehe
10cdf14080
gnu: guile-ssh: Fix cross-compilation.
...
* gnu/packages/ssh.scm (guile-ssh)[native-inputs]: Add guile.
2020-02-18 11:44:16 +01:00
Mathieu Othacehe
668740cc05
gnu: guile-ssh: Update to 0.12.0.
...
* gnu/packages/ssh.scm (guile-ssh): Update to 0.12.0,
[source]: remove snippet that were integrated upstream,
[arguments]: Add a fix-guile-path phase to fix tests.
(guile3.0-ssh)[arguments]: Remove as this is fixed upstream.
2020-02-18 11:34:45 +01:00
Efraim Flashner
b1d617baea
gnu: rust-futures-sink-preview-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-futures-sink-preview-0.3)[arguments]:
Add rust-futures-core-preview-0.3 to cargo-inputs.
[properties]: Remove field.
2020-02-18 11:26:00 +02:00
Efraim Flashner
c70f056428
gnu: rust-futures-core-io-preview-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-futures-io-preview-0.3)
[properties]: Remove field.
2020-02-18 11:24:19 +02:00
Efraim Flashner
d7eff648ba
gnu: rust-futures-core-preview-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-futures-core-preview-0.3)[arguments]:
Skip tests.
[properties]: Remove field.
2020-02-18 11:22:57 +02:00
Efraim Flashner
028b0deebb
gnu: rust-nodrop-union-0.1: Upgrade to 0.1.11.
...
* gnu/packages/crates-io.scm (rust-nodrop-union-0.1): Upgrade to 0.1.11.
[arguments]: Skip build.
[properties]: Remove field.
2020-02-18 11:17:41 +02:00
Efraim Flashner
a4c4b47b12
gnu: rust-owning-ref-0.4: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-owning-ref-0.4)[arguments]: Add
rust-stable-deref-trait-1.1 to cargo-inputs.
[properties]: Remove field.
2020-02-18 11:15:11 +02:00
Efraim Flashner
4fe024bea4
gnu: rust-synstructure-test-traits-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-synstructure-test-traits-0.1)
[properties]: Remove field.
2020-02-18 11:10:45 +02:00
Efraim Flashner
25b4a363e1
gnu: rust-tar-0.4: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-tar-0.4)[arguments]: Skip tests. Add
rust-filetime-0.2, rust-libc-0.2, rust-redox-syscall-0.1, rust-xattr-0.2
to cargo-inputs. Add rust-tempdir-0.3 to cargo-development-inputs.
[properties]: Remove field.
2020-02-18 11:09:48 +02:00
Efraim Flashner
96737ce3be
gnu: rust-termion-1.5: Upgrade to 1.5.5.
...
* gnu/packages/crates-io.scm (rust-termion-1.5): Upgrade to 1.5.5.
[arguments]: Skip tests. Add rust-libc-0.2, rust-numtoa-0.1,
rust-redox-syscall-0.1, rust-redox-termios-0.1 to cargo-inputs.
[properties]: Remove field.
2020-02-18 11:03:46 +02:00
Efraim Flashner
71e932df85
gnu: rust-termios-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-termios-0.3)[arguments]: Add
rust-libc-0.2 to cargo-inputs.
[properties]: Remove field.
2020-02-18 10:58:20 +02:00
Efraim Flashner
9e6ba02cd7
gnu: rust-thread-id-3.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-thread-id-3.3)[arguments]: Add
rust-libc-0.2, rust-redox-syscall-0.1, rust-winapi-0.3 to cargo-inputs.
[properties]: Remove field.
2020-02-18 10:53:51 +02:00
Efraim Flashner
23b9d9271a
gnu: rust-threadpool-1.7: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-threadpool-1.7)[arguments]: Add
rust-num-cpus-1.11 to cargo-inputs.
[properties]: Remove field.
2020-02-18 10:50:10 +02:00
Efraim Flashner
d4bcf89519
gnu: rust-tokio-mock-task-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-tokio-mock-task-0.1)[arguments]: Add
rust-futures-0.1 to cargo-inputs.
[properties]: Remove field.
2020-02-18 10:48:36 +02:00
Efraim Flashner
5584bf569a
gnu: rust-tracing-core-0.1: Upgrade to 0.1.9.
...
* gnu/packages/crates-io.scm (rust-tracing-core-0.1): Update to 0.1.9.
[arguments]: Add rust-lazy-static-1 to cargo-inputs.
[properties]: Remove field.
2020-02-18 10:46:28 +02:00
Efraim Flashner
d6aa45aa80
gnu: rust-try-from-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-try-from-0.3)[arguments]: Add
rust-cfg-if-0.1 to cargo-inputs.
[properties]: Remove field.
2020-02-18 10:44:06 +02:00
Efraim Flashner
9dbe9948b5
gnu: rust-try-lock-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-try-lock-0.2)[properties]: Remove
field.
2020-02-18 10:41:41 +02:00
Efraim Flashner
4479f8270b
gnu: rust-typeable-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-typeable-0.1)[properties]: Remove
field.
2020-02-18 10:41:03 +02:00
Efraim Flashner
24b105ce5f
gnu: rust-typenum-1.10: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-typenum-1.10)[properties]: Remove
field.
2020-02-18 10:39:25 +02:00
Efraim Flashner
dea8c812e6
gnu: rust-ucd-trie-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-ucd-trie-0.1)[arguments]: Add
rust-lazy-static-1 to cargo-development-inputs.
[properties]: Remove field.
2020-02-18 10:38:24 +02:00
Efraim Flashner
545c7a4e4a
gnu: rust-ucd-util-0.1: Update to 0.1.7.
...
* gnu/packages/crates-io.scm (rust-ucd-util-0.1): Update to 0.1.7.
[properties]: Remove field.
2020-02-18 10:36:16 +02:00
Efraim Flashner
f4fc57db62
gnu: rust-unicode-width-0.1: Upgrade to 0.1.7.
...
* gnu/packages/crates-io.scm (rust-unicode-width-0.1)[arguments]: Add
rust-compiler-builtins-0.1, rust-rustc-std-workspace-core-1.0,
rust-rustc-std-workspace-std-1.0 to cargo-inputs.
[properties]: Remove field.
2020-02-18 10:09:26 +02:00
Efraim Flashner
983935ced0
gnu: rust-unindent-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-unindent-0.1)[properties]: Remove
field.
2020-02-18 10:06:29 +02:00
Efraim Flashner
00dcd11d8a
gnu: rust-unreachable-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-unreachable-1.0)[arguments]: Add
rust-void-1.0 to cargo-inputs.
[properties]: Remove field.
2020-02-18 10:05:26 +02:00
Efraim Flashner
8d1b22b27f
doc: Document packaging guidelines for Rust crates.
...
* doc/contributing.texi (Rust Crates): New section.
2020-02-18 09:51:44 +02:00
Brice Waegeneire
da6f9aceb4
gnu: libosinfo: Include operating systems list.
...
* gnu/packages/virtualization.scm (libosinfo)[inputs]: Add osinfo-db and
remove gobject-introspection.
[native-inputs]: Add gobject-introspection.
[arguments]: Add phase patch.
squash! gnu: virt-manager: Include operating systems list.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-02-18 08:22:12 +01:00
Brice Waegeneire
a838fa282c
gnu: osinfo-db: Add osinfo-db.
...
* gnu/packages/virtualization.scm (osinfo-db): New variable.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-02-18 08:22:12 +01:00
Brice Waegeneire
e912638157
gnu: osinfo-db-tools: Add osinfo-db-tools.
...
* gnu/packages/virtualization.scm (osinfo-db-tools): New variable.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-02-18 08:22:04 +01:00
Timotej Lazar
a02ca03318
gnu: Add opensurge.
...
* gnu/packages/games.scm (opensurge): New variable.
2020-02-18 02:21:31 +01:00
Timotej Lazar
540d41d8d9
gnu: Add surgescript.
...
* gnu/packages/game-development.scm (surgescript): New variable.
2020-02-18 02:08:47 +01:00
Leo Famulari
fb31d11b91
gnu: MPD: Update to 0.21.20.
...
* gnu/packages/mpd.scm (mpd): Update to 0.21.20.
2020-02-17 19:51:32 -05:00
Tobias Geerinckx-Rice
b6f1c6bb94
gnu: wesnoth: Update to 1.14.11.
...
* gnu/packages/games.scm (wesnoth): Update to 1.14.11.
2020-02-18 01:26:07 +01:00
Tobias Geerinckx-Rice
4445b3a7f4
gnu: freeciv: Update to 2.6.2.
...
* gnu/packages/games.scm (freeciv): Update to 2.6.2.
2020-02-18 01:26:07 +01:00
Tobias Geerinckx-Rice
88a4ec2ce6
gnu: emacs-sml-mode: Update to 6.10.
...
* gnu/packages/emacs-xyz.scm (emacs-sml-mode): Update to 6.10.
2020-02-18 01:26:07 +01:00
Tobias Geerinckx-Rice
f4db0a7b20
gnu: dovecot: Update to 2.3.9.3 [fixes CVE-2020-7046 & CVE-2020-7957].
...
* gnu/packages/mail.scm (dovecot): Update to 2.3.9.3.
2020-02-18 01:26:07 +01:00
Tobias Geerinckx-Rice
0724b73d83
gnu: btrfs-progs: Update to 5.4.1.
...
* gnu/packages/linux.scm (btrfs-progs): Update to 5.4.1.
2020-02-18 01:26:07 +01:00
Tobias Geerinckx-Rice
ecc8c5d434
gnu: aspell-dict-da: Update to 1.6.36-11-0.
...
* gnu/packages/aspell.scm (aspell-dict-da): Update to 1.6.36-11-0.
2020-02-18 01:26:07 +01:00
Tobias Geerinckx-Rice
ba0b9d410f
gnu: packagekit: Update to 1.1.13.
...
* gnu/packages/freedesktop.scm (packagekit): Update to 1.1.13.
2020-02-18 01:26:06 +01:00
Tobias Geerinckx-Rice
f6516d7954
gnu: uefitool: Update to 0.27.0.
...
* gnu/packages/flashing-tools.scm (uefitool): Update to 0.27.0.
2020-02-18 01:26:06 +01:00
Tobias Geerinckx-Rice
1943a258bb
gnu: connman: Update to 1.38.
...
* gnu/packages/connman.scm (connman): Update to 1.38.
[inputs]: Add libmnl.
2020-02-18 01:26:06 +01:00
Tobias Geerinckx-Rice
949e214509
gnu: brial: Update to 1.2.7.
...
* gnu/packages/sagemath.scm (brial): Update to 1.2.7.
2020-02-18 01:26:06 +01:00
Tobias Geerinckx-Rice
da567fc8bc
gnu: bear: Update to 2.4.3.
...
* gnu/packages/build-tools.scm (bear): Update to 2.4.3.
2020-02-18 01:26:06 +01:00
Efraim Flashner
76a891c9a2
gnu: rust-untrusted-0.7: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-untrusted-0.7)[properties]: Remove
field.
2020-02-17 23:07:46 +02:00
Efraim Flashner
91105ccf12
gnu: rust-vcpkg-0.2: Update to 0.2.8.
...
* gnu/packages/crates-io.scm (rust-vcpkg-0.2): Update to 0.2.8.
[arguments]: Skip tests. Add rust-lazy-static-1, rust-tempdir-0.3
to cargo-development-inputs.
[properties]: Remove field.
2020-02-17 23:07:46 +02:00
Efraim Flashner
8a1a681fc6
gnu: rust-vec-map-0.8: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-vec-map-0.8)[arguments]: Add
rust-serde-1.0 to cargo-inputs.
[properties]: Remove field.
2020-02-17 23:07:46 +02:00
Efraim Flashner
12a56e93a8
gnu: rust-version-check-0.9: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-version-check-0.9)[properties]:
Remove field.
2020-02-17 23:07:46 +02:00
Efraim Flashner
80fde95df6
gnu: rust-version-check-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-version-check-0.1)[properties]: Don't
inherit field.
2020-02-17 23:07:46 +02:00
Efraim Flashner
1d6b9dc850
gnu: rust-void-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-void-1.0)[properties]: Remove field.
2020-02-17 23:07:45 +02:00
Efraim Flashner
d9fa136965
gnu: rust-wasi-0.5: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-wasi-0.5)[properties]: Remove field.
2020-02-17 23:07:45 +02:00
Efraim Flashner
718d529822
gnu: rust-winapi-i686-pc-windows-gnu-0.4: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-winapi-i686-pc-windows-gnu-0.4)
[properties]: Remove field.
2020-02-17 23:07:45 +02:00
Efraim Flashner
62327ddb9c
gnu: rust-winapi-x86-64-pc-windows-gnu-0.4: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-winapi-x86-64-pc-windows-gnu-0.4)
[properties]: Remove field.
2020-02-17 23:07:45 +02:00
Efraim Flashner
c2c7256cfa
gnu: rust-security-framework-sys-0.3: Update to 0.3.
...
* gnu/packages/crates-io.scm (rust-security-framework-sys-0.3): Update
to 0.3.3.
[arguments]: Add rust-core-foundation-sys-0.6 to cargo-inputs.
[properties]: Remove field.
2020-02-17 23:07:45 +02:00
Efraim Flashner
aeeb7017a5
gnu: rust-quickcheck-0.5: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-quickcheck-0.5)[arguments]: Don't
skip build.
2020-02-17 23:07:44 +02:00
Efraim Flashner
3e374e8d54
gnu: rust-quickcheck-0.6: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-quickcheck-0.6)[arguments]: Don't
skip build.
2020-02-17 23:07:44 +02:00
Efraim Flashner
767a26bd43
gnu: rust-quickcheck-0.7: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-quickcheck-0.7)[arguments]: Don't
skip build.
2020-02-17 23:07:44 +02:00
Valentin Ignatev
a9c713786c
gnu: Add rust-quickcheck-0.9.
...
* gnu/packages/crates-io.scm (rust-quickcheck-0.9): New variable.
(rust-quickcheck-0.8, rust-quickcheck-0.7, rust-quickcheck-0.6,
rust-quickcheck-0.5, rust-quickcheck-0.2): Inherit from
rust-quickcheck-0.9.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:44 +02:00
Valentin Ignatev
eacadcab7a
gnu: Add rust-quasi-macros-0.32.
...
* gnu/packages/crates-io.scm (rust-quasi-macros-0.32): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:44 +02:00
Valentin Ignatev
0ad5b6814c
gnu: Add rust-serde-codegen-0.4.
...
* gnu/packages/crates-io.scm (rust-serde-codegen-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:43 +02:00
Valentin Ignatev
5057a20335
gnu: Add rust-quasi-codegen-0.32.
...
* gnu/packages/crates-io.scm (rust-quasi-codegen-0.32): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:43 +02:00
Valentin Ignatev
9dd8e3e6f8
gnu: Add rust-aster-0.41.
...
* gnu/packages/crates-io.scm (rust-aster-0.41): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:43 +02:00
Valentin Ignatev
b4e0166e2d
gnu: Add rust-quasi-0.32.
...
* gnu/packages/crates-io.scm (rust-quasi-0.32): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:43 +02:00
Efraim Flashner
b18c509694
gnu: rust-stdweb-internal-macros-0.2: Update to 0.2.9.
...
* gnu/packages/crates-io.scm (rust-stdweb-internal-macros-0.2): Update
to 0.2.9.
[arguments]: Don't skip build. Replace rust-proc-macro2-0.4 with 1.0,
rust-syn-0.15 with 1.0 in cargo-inputs.
[description]: Texify.
2020-02-17 23:07:43 +02:00
Efraim Flashner
91aee318a4
gnu: rust-stdweb-derive-0.5: Update to 0.5.3.
...
* gnu/packages/crates-io.scm (rust-stdweb-derive-0.5): Update to 0.5.3.
[arguments]: Don't skip build. Skip tests. Replace rust-proc-macro2-0.4
with 1.0, rust-syn-0.15 with 1.0 in cargo-inputs.
[description]: Update.
2020-02-17 23:07:42 +02:00
Valentin Ignatev
863726d9cd
gnu: rust-stdweb-0.4: Update to 0.4.20.
...
* gnu/packages/crates-io.scm (rust-stdweb-0.4): Update to 0.4.20
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:42 +02:00
Efraim Flashner
bafc0a04f5
gnu: rust-rand-xoshiro-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-xoshiro-0.1)[arguments]: Don't
skip build.
2020-02-17 23:07:42 +02:00
Efraim Flashner
2e87855bc3
gnu: rust-rand-xoshiro-0.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-xoshiro-0.3)[arguments]: Don't
skip build.
2020-02-17 23:07:42 +02:00
Valentin Ignatev
e2936c7db8
gnu: Add rust-rand-xoshiro-0.4.
...
* gnu/packages/crates-io.scm (rust-rand-xoshiro-0.4): New variable.
(rust-rand-xoshiro-0.3, rust-rand-xoshrio-0.1): Inherit from
rust-rand-xoshiro-0.4.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:42 +02:00
Valentin Ignatev
72270d7886
gnu: Add rust-rand-isaac-0.2.
...
* gnu/packages/crates-io.scm (rust-rand-isaac-0.2): New variable.
(rust-rand-isaac-0.1): Inherit from rust-rand-isaac-0.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:41 +02:00
Valentin Ignatev
7ff032f1bf
gnu: Add rust-syntex-syntax-0.58.
...
* gnu/packages/crates-io.scm (rust-syntex-syntax-0.58): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:41 +02:00
Valentin Ignatev
aeb04be332
gnu: Add rust-syntex-errors-0.58.
...
* gnu/packages/crates-io.scm (rust-syntex-errors-0.58): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:41 +02:00
Valentin Ignatev
1244ed1a5d
gnu: Add rust-syntex-0.58.
...
* gnu/packages/crates-io.scm (rust-syntex-0.58): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:41 +02:00
Valentin Ignatev
e8166e7954
gnu: Add rust-syntex-pos-0.58.
...
* gnu/packages/crates-io.scm (rust-syntex-pos-0.58): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:41 +02:00
Valentin Ignatev
8a062f6767
gnu: Add rust-objc-foundation-0.1.
...
* gnu/packages/crates-io.scm (rust-objc-foundation-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:40 +02:00
Valentin Ignatev
16e08820de
gnu: Add rust-block-0.1.
...
* gnu/packages/crates-io.scm (rust-block-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-17 23:07:40 +02:00
Tobias Geerinckx-Rice
1f634b8159
gnu: nginx: Update to 1.17.8.
...
* gnu/packages/web.scm (nginx): Update to 1.17.8.
2020-02-17 21:56:58 +01:00
Tobias Geerinckx-Rice
e19268020f
gnu: socat: Update to 1.7.3.4.
...
* gnu/packages/networking.scm (socat): Update to 1.7.3.4.
2020-02-17 21:56:58 +01:00
Tobias Geerinckx-Rice
41e9104dba
gnu: nethack: Update to 3.6.5.
...
* gnu/packages/games.scm (nethack): Update to 3.6.5.
2020-02-17 21:56:58 +01:00
Tobias Geerinckx-Rice
aa77734023
gnu: ncdu: Update to 1.14.2.
...
* gnu/packages/ncdu.scm (ncdu): Update to 1.14.2.
2020-02-17 21:56:57 +01:00
Tobias Geerinckx-Rice
e9759457cf
gnu: ncmpc: Update to 0.37.
...
* gnu/packages/mpd.scm (ncmpc): Update to 0.37.
2020-02-17 21:56:57 +01:00
Tobias Geerinckx-Rice
dd70960767
gnu: mpd: Update to 0.21.19.
...
* gnu/packages/mpd.scm (mpd): Update to 0.21.19.
2020-02-17 21:56:57 +01:00
Tobias Geerinckx-Rice
79d1550fd4
gnu: Follow multiprecision.org subdomain redirections.
...
* gnu/packages/algebra.scm (mpfrcx, cm)[home-page]: Follow permanent redirections.
2020-02-17 21:56:57 +01:00
Tobias Geerinckx-Rice
b81789df73
gnu: libmpdclient: Update to 2.18.
...
* gnu/packages/mpd.scm (libmpdclient): Update to 2.18.
2020-02-17 21:56:57 +01:00
Tobias Geerinckx-Rice
cd5b85c3f8
gnu: mpc: Fix home page domain.
...
* gnu/packages/multiprecision.scm (mpc)[home-page]: Add www.
2020-02-17 21:56:57 +01:00
Tobias Geerinckx-Rice
3fc0b54eec
gnu: yapet: Update home page.
...
* gnu/packages/password-utils.scm (yapet)[home-page]: Update.
2020-02-17 21:56:57 +01:00
Tobias Geerinckx-Rice
72d9a14435
gnu: librevenge: Don't use NAME in source URI.
...
* gnu/packages/libreoffice.scm (librevenge)[source]: Hard-code NAME.
2020-02-17 21:56:57 +01:00
Tobias Geerinckx-Rice
42d42b2ca7
gnu: orcus: Don't use NAME in source URI.
...
* gnu/packages/libreoffice.scm (orcus)[source]: Hard-code NAME.
2020-02-17 21:56:57 +01:00
Efraim Flashner
15e62623cc
gnu: mpi.scm: Use 'license:' prefix.
...
* gnu/packages/mpi.scm: Import (guix licenses) with the 'license:'
prefix.
2020-02-17 20:53:16 +02:00
Maurice Brémond
c70261bfb9
gnu: Add MPICH.
...
* gnu/packages/mpi.scm (mpich): New variable.
Co-authored-by: Ludovic Courtès <ludovic.courtes@inria.fr >
2020-02-17 18:22:06 +01:00
Tobias Geerinckx-Rice
7046106ef9
gnu: upx: Clean up.
...
* gnu/packages/compression.scm (upx)[arguments]: Combine duplicate
substitutions. Replace ‘install’ phase. Fix indentation.
2020-02-17 17:12:57 +01:00
Tobias Geerinckx-Rice
b614a22393
gnu: ebtables: Update to 2.0.11.
...
* gnu/packages/linux.scm (ebtables): Update to 2.0.11.
[arguments]: Remove them all.
2020-02-17 17:12:56 +01:00
Tobias Geerinckx-Rice
5bcf4d4c35
gnu: haveged: Update to 1.9.8.
...
* gnu/packages/linux.scm (haveged): Update to 1.9.8.
2020-02-17 17:12:54 +01:00
Tobias Geerinckx-Rice
85df46d306
gnu: liblangtag: Update to 0.6.3.
...
* gnu/packages/libreoffice.scm (liblangtag): Update to 0.6.3.
2020-02-17 17:12:52 +01:00
Tobias Geerinckx-Rice
a277655f2a
gnu: liblangtag: Don't use NAME in source URI.
...
* gnu/packages/libreoffice.scm (liblangtag)[source]: Hard-code NAME.
2020-02-17 17:12:51 +01:00
Tobias Geerinckx-Rice
70e9d7ebf7
gnu: weechat: Update to 2.7.
...
* gnu/packages/irc.scm (weechat): Update to 2.7.
[inputs]: Use guile-2.2.
[arguments]: Explicitly disable languages for which auto-detection broke.
2020-02-17 17:12:49 +01:00
Tobias Geerinckx-Rice
6420cab341
gnu: sxiv: Update to 26.
...
* gnu/packages/image-viewers.scm (sxiv): Update to 26.
2020-02-17 17:12:48 +01:00
Tobias Geerinckx-Rice
7969789efe
gnu: rsnapshot: Use HTTPS home page.
...
* gnu/packages/backup.scm (rsnapshot)[home-page]: Use HTTPS.
2020-02-17 17:12:47 +01:00
Tobias Geerinckx-Rice
e04dd2d6d1
gnu: slib: Use HTTPS home page.
...
* gnu/packages/scheme.scm (slib)[home-page]: Use HTTPS.
2020-02-17 17:12:46 +01:00
Tobias Geerinckx-Rice
364873b508
gnu: git: Update to 2.25.1.
...
* gnu/packages/version-control.scm (git): Update to 2.25.1.
2020-02-17 17:12:45 +01:00
Tobias Geerinckx-Rice
04761fcc1a
gnu: xpdf: Update to 4.02.
...
* gnu/packages/pdf.scm (xpdf): Update to 4.02.
2020-02-17 17:12:44 +01:00
Tobias Geerinckx-Rice
9900eb1cbb
gnu: xpdf: Update home page.
...
* gnu/packages/pdf.scm (xpdf)[home-page]: Use new (HTTPS) domain.
2020-02-17 17:12:43 +01:00
Tobias Geerinckx-Rice
3dd311e3a0
bootstrap: Fix typo.
...
* bootstrap: Substitute ‘guix-cookbook’ for copy/pasted ‘guix-manual’.
Reported-by: jetomit on #guix
2020-02-17 11:49:08 +01:00
Robert Smith
db9979e7f9
gnu: Add emacs-persist.
...
* gnu/packages/emacs-xyz.scm (emacs-persist): New variable.
2020-02-17 10:11:18 +01:00
Florian Pelz
f98e83a17f
doc: Add German Cookbook translation.
...
* doc/local.mk (info_TEXINFOS): Add guix-cookbook.de.texi.
(TRANSLATED_INFO): Add guix-cookbook.de.texi.
* po/doc/guix-cookbook.de.po: New file.
* po/doc/local.mk (DOC_COOKBOOK_PO_FILES): Add guix-cookbook.de.po.
2020-02-17 06:52:11 +00:00
Tobias Geerinckx-Rice
52beda0da7
gnu: simple-scan: Update to 3.34.4.
...
* gnu/packages/gnome.scm (simple-scan): Update to 3.34.4.
2020-02-17 05:14:30 +01:00
Tobias Geerinckx-Rice
a5215f1793
gnu: gcompris-qt: Update to 0.98.
...
* gnu/packages/education.scm (gcompris-qt): Update to 0.98.
2020-02-17 05:14:30 +01:00
Tobias Geerinckx-Rice
f5255ed3d3
gnu: upx: Update to 3.96.
...
* gnu/packages/compression.scm (upx): Update to 3.96.
[source]: Remove patch.
[arguments]: Remove CHECK_WHITESPACE work-around.
[properties]: Remove obsolete hidden CVE.
* gnu/packages/patches/upx-fix-CVE-2017-15056.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2020-02-17 05:14:29 +01:00
Tobias Geerinckx-Rice
de5bc83cd3
gnu: upx: Don't use NAME in source URI.
...
* gnu/packages/compression.scm (upx)[source]: Hard-code NAME.
2020-02-17 05:10:51 +01:00
Tobias Geerinckx-Rice
2196e3cc23
gnu: newlib: Use HTTPS home page.
...
* gnu/packages/embedded.scm (newlib)[home-page]: Use HTTPS.
2020-02-17 03:21:45 +01:00
Tobias Geerinckx-Rice
2c051312b5
gnu: libgig: Use HTTPS home page.
...
* gnu/packages/music.scm (libgig)[home-page]: Use HTTPS.
2020-02-17 03:21:45 +01:00
Tobias Geerinckx-Rice
31b8576175
gnu: java-commons-exec: Use HTTPS home page.
...
* gnu/packages/java.scm (java-commons-exec)[home-page]: Use HTTPS.
2020-02-17 03:21:45 +01:00
Tobias Geerinckx-Rice
35f985cb52
gnu: guile-present: Use HTTPS home page.
...
* gnu/packages/gtk.scm (guile-present)[home-page]: Use HTTPS.
2020-02-17 03:21:45 +01:00
Tobias Geerinckx-Rice
0eecc9eba8
gnu: sbcl-trivial-gray-streams: Use HTTPS home page.
...
* gnu/packages/lisp-xyz.scm (sbcl-trivial-gray-streams)[home-page]: Use HTTPS.
2020-02-17 03:21:45 +01:00
Tobias Geerinckx-Rice
78f8780e9f
gnu: python2-munkres: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python2-munkres)[home-page]: Use HTTPS.
2020-02-17 03:21:45 +01:00
Tobias Geerinckx-Rice
d46646d9c7
gnu: python-blinker: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-blinker)[home-page]: Use HTTPS.
2020-02-17 03:21:45 +01:00
Tobias Geerinckx-Rice
1911513825
gnu: hlint: Update home page.
...
* gnu/packages/haskell-apps.scm (hlint)[home-page]: Use source
repository.
2020-02-17 03:21:06 +01:00
Tobias Geerinckx-Rice
6db6bcf715
gnu: openssh: Update to 8.2p1.
...
* gnu/packages/ssh.scm (openssh): Update to 8.2p1.
[arguments]: Adjust ‘patch-tests’ phase.
2020-02-17 03:20:20 +01:00
Tobias Geerinckx-Rice
21f5de6d32
gnu: openssh: Don't use NAME in source URI.
...
* gnu/packages/ssh.scm (openssh)[source]: Hard-code NAME.
2020-02-17 03:20:19 +01:00
Tobias Geerinckx-Rice
63b148f70f
gnu: endlessh: Update to 1.1.
...
* gnu/packages/ssh.scm (endlessh): Update to 1.1.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
2020-02-17 03:20:16 +01:00
Ludovic Courtès
8b9cad01e9
services: shepherd: Spawn services with nothing but the PATH variable.
...
Previously, services spawned with 'make-forkexec-constructor' &
co. would all inherit the environment variables of PID 1, which includes
things like 'BOOT_IMAGE'. This change resets it to the bare minimum.
* gnu/services/shepherd.scm (shepherd-configuration-file): Add call to
'default-environment-variables'. Remove 'setenv' call.
2020-02-16 23:31:08 +01:00
Ludovic Courtès
139a988784
gnu: shepherd: Add "guile3.0-shepherd" variant.
...
* gnu/packages/admin.scm (guile3.0-shepherd): New variable.
2020-02-16 23:31:08 +01:00
Ludovic Courtès
205c1e04e0
gnu: shepherd: Update to 0.7.0.
...
* gnu/packages/admin.scm (shepherd): Update to 0.7.0.
2020-02-16 23:31:08 +01:00
Tobias Geerinckx-Rice
d39885a8a9
gnu: python-reno: Update home page.
...
* gnu/packages/openstack.scm (python-reno)[home-page]: Follow (HTTPS)
redirection.
2020-02-16 22:54:47 +01:00
Tobias Geerinckx-Rice
25ee4a4745
gnu: autoconf: Use HTTPS home page.
...
* gnu/packages/autotools.scm (autoconf)[home-page]: Use HTTPS.
2020-02-16 22:54:47 +01:00
Tobias Geerinckx-Rice
a1b867e4fa
gnu: python2-enum: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python2-enum)[home-page]: Use HTTPS.
2020-02-16 22:46:39 +01:00
Tobias Geerinckx-Rice
eef6623e4c
gnu: r-sdmtools: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-sdmtools)[home-page]: Use HTTPS.
2020-02-16 22:46:39 +01:00
Tobias Geerinckx-Rice
177e3dfe88
gnu: r-tcltk2: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-tcltk2)[home-page]: Use HTTPS.
2020-02-16 22:46:39 +01:00
Tobias Geerinckx-Rice
41e7be78a1
gnu: r-rocr: Use HTTPS home page.
...
* gnu/packages/statistics.scm (r-rocr)[home-page]: Use HTTPS.
2020-02-16 22:46:39 +01:00
Tobias Geerinckx-Rice
3603f5536e
gnu: wabt: Use Texinfo mark-up.
...
* gnu/packages/web.scm (wabt)[description]: Mark up more better.
2020-02-16 22:46:39 +01:00
Tobias Geerinckx-Rice
2392e589c3
gnu: libmicrohttpd: Update to 0.9.70.
...
* gnu/packages/gnunet.scm (libmicrohttpd): Update to 0.9.70.
2020-02-16 22:46:39 +01:00
Tobias Geerinckx-Rice
f6fdbb053e
gnu: freeorion: Update to 0.4.9.
...
* gnu/packages/games.scm (freeorion): Update to 0.4.9.
[source]: Use release tarball.
2020-02-16 22:46:39 +01:00
Tobias Geerinckx-Rice
99ed3a1f0b
gnu: openscenegraph: Fix typo in description.
...
* gnu/packages/graphics.scm (openscenegraph)[synopsis, description]: Add missing hyphen.
2020-02-16 22:46:39 +01:00
Tobias Geerinckx-Rice
1788bb9016
gnu: openscenegraph: Update to 3.6.5.
...
* gnu/packages/graphics.scm (openscenegraph): Update to 3.6.5.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
ccea06cc5a
gnu: flashrom: Update to 1.2.
...
* gnu/packages/flashing-tools.scm (flashrom): Update to 1.2.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
c6f582b545
gnu: fio: Update to 3.18.
...
* gnu/packages/benchmark.scm (fio): Update to 3.18.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
6cd3f4106c
gnu: fasm: Update to 1.73.22.
...
* gnu/packages/assembly.scm (fasm): Update to 1.73.22.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
bc6c06b0bf
gnu: sbsigntools: Update to 0.9.3.
...
* gnu/packages/efi.scm (sbsigntools): Update to 0.9.3.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
4bf26153e7
gnu: libasr: Update to 1.0.4.
...
* gnu/packages/dns.scm (libasr): Update to 1.0.4.
[arguments]: Remove obsolete ‘bootstrap’ phase replacement.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
9c478cbd64
gnu: lttoolbox: Remove redundant FILE-NAME.
...
* gnu/packages/dictionaries.scm (lttoolbox)[source]: Remove FILE-NAME field.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
fbc2c04e20
gnu: lttoolbox: Update to 3.5.1.
...
* gnu/packages/dictionaries.scm (lttoolbox): Update to 3.5.1.
[arguments]: Replace ‘bootstrap’ phase.
[native-inputs]: Add autoconf, automake, and libtool.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
338ae8eb36
gnu: camlp5: Update to 7.11.
...
* gnu/packages/ocaml.scm (camlp5): Update to 7.11.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
9469ab532f
gnu: ddclient: Update home page.
...
* gnu/packages/dns.scm (ddclient)[home-page]: Update.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
8bb9f9971c
gnu: ddclient: Update to 3.9.1.
...
* gnu/packages/dns.scm (ddclient): Update to 3.9.1.
[source]: Use GIT-FETCH and add a FILE-NAME.
[native-inputs]: Remove gzip and tar.
[arguments]: Adapt to git checkout source.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
3bc39f0c5d
gnu: boinc-client: Trim synopsis.
...
* gnu/packages/distributed.scm (boinc-client)[synopsis]: Remove package name.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
bcd3c48538
gnu: boinc-client: Update to 7.16.4.
...
* gnu/packages/distributed.scm (boinc-client): Update to 7.16.4.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
f6c8ba3172
gnu: noise-repellent: Update to 0.1.5.
...
* gnu/packages/audio.scm (noise-repellent): Update to 0.1.5.
[build-system]: Switch to meson-build-system.
[arguments]: Remove GNU build system flags & set installation prefix.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
1f14453eed
gnu: Remove blender@2.79b.
...
As discussed on #guix with lfam and raingloom, it no longer builds and
users with hardware that requires it can use ‘guix time-machine’.
* gnu/packages/graphics.scm (blender-2.79): Remove variable.
2020-02-16 22:46:38 +01:00
Tobias Geerinckx-Rice
8db20f2ddd
gnu: blender: Update to 2.82.
...
* gnu/packages/graphics.scm (blender): Update to 2.82.
[arguments]: Uncomment ‘fix-broken-import’ phase.
2020-02-16 22:46:37 +01:00
Tobias Geerinckx-Rice
ce5af131d8
gnu: Add rtl8812au-aircrack-ng-linux-module.
...
* gnu/packages/linux.scm (rtl8812au-aircrack-ng-linux-module):
New public variable.
2020-02-16 22:46:37 +01:00
Jakub Kądziołka
f468df9f4d
gnu: virt-manager: Move gobject-introspection to native-inputs
...
* gnu/packages/virtualization.scm (virt-manager): Move
gobject-introspection from inputs to native-inputs.
2020-02-16 20:27:05 +01:00
Jakub Kądziołka
b905ebed0c
gnu: libvirt, virt-manager: Don't use tabs for indentation
...
* gnu/packages/virtualization.scm: Replace tabs with spaces.
2020-02-16 20:17:06 +01:00
Jakub Kądziołka
92cd55fa68
gnu: rust-same-file-1.0: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-same-file-1.0)[arguments]: Don't skip build.
2020-02-16 19:26:58 +01:00
Jakub Kądziołka
92b99cabd6
gnu: rust-ignore-0.4: Add rust-winapi-util-0.1 to inputs.
...
This is a followup to 5669972364 . At the
time, it seemed like the input is only used on Windows and therefore
unnecessary. However, the package kept building only because the crate
was still being used transitively, through rust-same-file-1.0.
* gnu/packages/crates-io.scm (rust-ignore-0.4)[arguments](cargo-inputs):
Add rust-winapi-util-0.1.
2020-02-16 19:15:42 +01:00
Rene Saavedra
c9aadd0749
gnu: accountsservice: 'Add patch-/bin/cat' phase.
...
* gnu/packages/freedesktop.scm (accountsservice)[arguments]: Add 'patch-/bin/cat'
phase.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-16 16:28:02 +01:00
Oskar Köök
b3e992e984
gnu: elixir: Update to 1.10.0.
...
* gnu/packages/elixir.scm (elixir): Update to 1.10.0.
* gnu/packages/patches/elixir-path-length.patch: Update patch so it can
be applied to v1.10.0 source
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-16 16:26:20 +01:00
Marius Bakke
efd9742b24
gnu: whois: Update to 5.5.6.
...
* gnu/packages/networking.scm (whois): Update to 5.5.6.
2020-02-16 16:26:20 +01:00
Ricardo Wurmus
598ea80f84
gnu: gwl: Update to 0.2.0.
...
* gnu/packages/package-management.scm (gwl): Update to 0.2.0.
[source]: Fetch from gnu.org.
[native-inputs]: Add texinfo and graphviz.
[propagated-inputs]: Add guile-gcrypt, guile-pfds, guile-syntax-highlight, and
guile-wisp.
[home-page]: Use workflows.guix.info.
[description]: Use official project description.
2020-02-16 14:09:22 +01:00
Efraim Flashner
3c6aca4232
doc: Fix typo.
...
* doc/guix.texi (X Window)[sddm-service-type]: SSDM -> SDDM typo fix.
[sddm-configuration]: Also list 'maya' theme.
* gnu/services/sddm.scm (sddm-service): Fix typo in doc string.
(sddm-configuration): Also list 'maya' theme.
2020-02-16 09:25:00 +02:00
Jakub Kądziołka
4530fe8ecc
gnu: emulation-station: Fix build.
...
* gnu/packages/emulators.scm (emulation-station): Switch to an
unreleased git commit.
2020-02-16 00:53:16 +01:00
shtwzrd
779d96c9b0
services: xorg: Filter modules based on system
...
Fixes <https://bugs.gnu.org/39402 >.
Reported by shtwzrd <shtwzrd@protonmail.com >.
* gnu/services/xorg.scm (xorg-configuration):
Apply a filter over %default-xorg-modules packages, excluding
those for which the %current-system is not among the package's
supported-systems.
This patch makes it possible to use xorg-configuration on systems
other than x86_64 and i686, as without it, xf86-video-intel would
be pulled in on the unsupported architecture and fail.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-02-16 00:02:10 +01:00
Jakub Kądziołka
c66f3b3bec
gnu: higan: Explain why v106, and not v107, is being packaged
...
* gnu/packages/emulators.scm (higan): Add a comment.
2020-02-16 00:02:10 +01:00
Jakub Kądziołka
f3686999a2
gnu: higan: Don't use auto-generated tarball.
...
* gnu/packages/emulators.scm (higan)[source]: Don't use autogenerated
tarball. Fetch from the new location for the repository.
2020-02-16 00:02:09 +01:00
Jakub Kądziołka
6d34d3f80b
gnu: higan: End phases with #t
...
* gnu/packages/emulators.scm (higan)[arguments]: End all phases with #t.
2020-02-16 00:02:03 +01:00
Nicolas Goaziou
038497db18
gnu: emacs-org-contrib: Update to 20200213.
...
* gnu/packages/emacs-xyz.scm (emacs-org-contrib): Update to 20200213.
2020-02-15 22:32:53 +01:00
Nicolas Goaziou
b4ded9e78e
gnu: emacs-org: Update to 9.3.6.
...
* gnu/packages/emacs-xyz.scm (emacs-org): Update to 9.3.6.
2020-02-15 22:32:49 +01:00
Marius Bakke
d85f8e46db
gnu: eudev: Build and install the static library.
...
'lvm2-static' requires the static libudev.a. This is a follow-up to commit
7b83cd720f .
* gnu/packages/linux.scm (eudev)[arguments]: Remove "--disable-static" from
#:configure-flags. Add phase 'move-static-library.
[outputs]: New field.
(lvm2-static)[inputs]: Remove.
[propagated-inputs]: Remove EUDEV and add EUDEV:STATIC.
2020-02-15 20:59:17 +01:00
Marius Bakke
21bdf383d7
Revert "gnu: libaio: Do not install the static library."
...
This change breaks 'lvm2-static' which cannot easily be made to work with a
separate libaio.a due to missing symbols.
This reverts commit d60458d77c .
2020-02-15 20:59:17 +01:00
Marius Bakke
71949dac8b
gnu: nss: Add comment about deleted libraries.
...
* gnu/packages/nss.scm (source)[snippet]: Add comment. While at it, add
missing copyright information for Marius Bakke.
2020-02-15 20:59:16 +01:00
Marius Bakke
0d1d0a6e71
gnu: python-markdown: Update to 3.2.1.
...
* gnu/packages/python-xyz.scm (python-markdown): Update to 3.2.1.
2020-02-15 17:25:43 +01:00
Marius Bakke
9a23212571
gnu: libtorrent-rasterbar: Update to 1.1.14.
...
* gnu/packages/bittorrent.scm (libtorrent-rasterbar): Update to 1.1.14.
2020-02-15 17:25:43 +01:00
Tobias Geerinckx-Rice
505b2631a9
gnu: le-certs: Update input hashes.
...
These unversioned files were modified upstream. The result of
$ openssl x509 -in <FILE> -text
for each old/new pair remains the same, however.
* gnu/packages/certs.scm (le-certs)[inputs]: Update hash for
isrgrootx1.pem, letsencryptauthorityx3.pem, and
letsencryptauthorityx4.pem.
2020-02-15 17:07:03 +01:00
Tobias Geerinckx-Rice
96636e4910
gnu: Add fbset.
...
* gnu/packages/linux.scm (fbset): New public variable.
2020-02-15 17:07:03 +01:00
Tobias Geerinckx-Rice
977617ac5e
gnu: thunar: Update to 1.8.12.
...
* gnu/packages/xfce.scm (thunar): Update to 1.8.12.
2020-02-15 17:07:03 +01:00
Tobias Geerinckx-Rice
8aaeabf9ec
gnu: unbound: Update to 1.9.6 [security improvements].
...
* gnu/packages/dns.scm (unbound): Update to 1.9.6.
2020-02-15 17:07:03 +01:00
Tobias Geerinckx-Rice
41db3463a6
gnu: you-get: Update to 0.4.1403.
...
* gnu/packages/video.scm (you-get): Update to 0.4.1403.
2020-02-15 17:07:03 +01:00
Tobias Geerinckx-Rice
2a42629f2b
gnu: xvid: Update to 1.3.7.
...
* gnu/packages/video.scm (xvid): Update to 1.3.7.
2020-02-15 17:07:03 +01:00
Tobias Geerinckx-Rice
6c0ad0bc63
gnu: tumbler: Update to 0.2.8.
...
* gnu/packages/xfce.scm (tumbler): Update to 0.2.8.
2020-02-15 17:07:03 +01:00
Tobias Geerinckx-Rice
ec93777e89
gnu: diction: Update to 1.14.
...
* gnu/packages/dictionaries.scm (diction): Update to 1.14.
2020-02-15 17:07:02 +01:00
Tobias Geerinckx-Rice
53ddc6a71f
gnu: emacs-markdown-mode: Use HTTPS home page.
...
* gnu/packages/emacs-xyz.scm (emacs-markdown-mode)[home-page]: Use HTTPS.
2020-02-15 17:07:02 +01:00
Tobias Geerinckx-Rice
82c89ead38
gnu: ebtables: Use HTTPS home page.
...
* gnu/packages/linux.scm (ebtables)[home-page]: Use HTTPS.
2020-02-15 17:07:02 +01:00
Tobias Geerinckx-Rice
f13695ec3e
gnu: sbcl-ningle: Use HTTPS home page.
...
* gnu/packages/lisp-xyz.scm (sbcl-ningle)[home-page]: Use HTTPS.
2020-02-15 17:07:02 +01:00
Tobias Geerinckx-Rice
917c28d2ab
gnu: cl-trivial-mimes: Use HTTPS home page.
...
* gnu/packages/lisp-xyz.scm (cl-trivial-mimes)[home-page]: Use HTTPS.
2020-02-15 17:07:02 +01:00
Tobias Geerinckx-Rice
3bc9f9e77a
gnu: abc: Use HTTPS home page.
...
* gnu/packages/fpga.scm (abc)[home-page]: Use HTTPS.
2020-02-15 17:07:02 +01:00
Guillaume Le Vaillant
2e5044cfe4
gnu: monero: Disable core tests.
...
Core tests sometimes fail at least on i686-linux.
Let's disable them for now and just try hash tests and unit tests.
* gnu/packages/finance.scm (monero)[arguments]: Don't run 'core_tests' in
'check' phase.
2020-02-15 14:43:30 +01:00
Jack Hill
13c8e747e8
gnu: containerd: Fix test failure with Go 1.13.
...
* gnu/packages/docker.scm (containerd)[source]: Add patch.
* gnu/packages/patches/containerd-test-with-go1.13.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add patch.
2020-02-15 14:31:33 +01:00
Jakub Kądziołka
7d9f8db2a8
gnu: python-fuzzywuzzy: Capitalize Python in synopsis
...
Follow-up to commit da8ca4c3fc
* gnu/packages/python-xyz.scm (python-fuzzywuzzy)[synopsis]:
python -> Python
2020-02-15 14:20:24 +01:00
Tobias Geerinckx-Rice
74281436c5
gnu: radare2: Improve description.
...
* gnu/packages/engineering.scm (radare2)[synopsis, description]: Re-write.
2020-02-15 14:11:07 +01:00
Guillaume Le Vaillant
0f46c5f504
gnu: sbcl-fare-quasiquote-extras: Fix build.
...
* gnu/packages/lisp-xyz.scm (sbcl-fare-quasiquote-extras)[arguments]: Fix
'build' phase.
2020-02-15 11:59:47 +01:00
Guillaume Le Vaillant
639b47e665
gnu: sbcl-fare-quasiquote: Fix source and home-page.
...
* gnu/packages/lisp-xyz.scm (sbcl-fare-quasiquote)[source]: Use main
repository instead of Quicklisp archive.
[home-page]: Fix URL.
[synopsis]: Shorten it.
2020-02-15 11:38:34 +01:00
Guillaume Le Vaillant
1fce78c452
gnu: sbcl-parse-declarations: Fix source.
...
* gnu/packages/lisp-xyz.scm (sbcl-parse-declarations)[source]: Use main
repository instead of Quicklisp archive.
2020-02-15 11:16:49 +01:00
Guillaume Le Vaillant
ff6cf9faa7
gnu: sbcl-puri: Fix source and license.
...
* gnu/packages/lisp-xyz.scm (sbcl-puri)[source]: Use main repository instead
of Quicklisp archive.
[description]: Fix typo.
[license]: Source code indicates LLGPL license.
2020-02-15 11:05:43 +01:00
Guillaume Le Vaillant
d9d8e3c22c
gnu: sbcl-ptester: Fix source and license.
...
* gnu/packages/lisp-xyz.scm (sbcl-ptester)[source]: Use main repository
instead of Quicklisp archive.
[license]: Source code indicates LLGPL license.
2020-02-15 10:48:02 +01:00
Guillaume Le Vaillant
e81b0719fc
gnu: sbcl-rt: Fix source, home-page and license.
...
* gnu/packages/lisp-xyz.scm (sbcl-rt)[source]: Use main repository instead of
Quicklisp archive.
[home-page]: Link to CLiki page.
[license]: Source code indicates MIT license.
2020-02-15 10:27:25 +01:00
Guillaume Le Vaillant
f36ec871d2
gnu: sbcl-iterate: Update to 1.5.
...
* gnu/packages/lisp-xyz.scm (sbcl-iterate): Update to 1.5.
[source]: Fetch from official project URL instead of Quicklisp archive.
2020-02-15 09:54:16 +01:00
Mark H Weaver
cab611d9d5
gnu: linux-libre: Update to 5.4.20.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.20.
(linux-libre-5.4-pristine-source): Update hash.
2020-02-14 22:11:33 -05:00
Mark H Weaver
c829faacef
gnu: linux-libre@4.19: Update to 4.19.104.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.104.
(linux-libre-4.19-pristine-source): Update hash.
2020-02-14 22:11:31 -05:00
Mark H Weaver
d498aa8862
gnu: linux-libre@4.14: Update to 4.14.171.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.171.
(linux-libre-4.14-pristine-source): Update hash.
2020-02-14 22:11:28 -05:00
Mark H Weaver
96100c0da9
gnu: linux-libre@4.9: Update to 4.9.214.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.214.
(linux-libre-4.9-pristine-source): Update hash.
2020-02-14 22:11:26 -05:00
Mark H Weaver
6a9db45259
gnu: linux-libre@4.4: Update to 4.4.214.
...
* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.214.
(linux-libre-4.4-pristine-source): Update hash.
2020-02-14 22:11:23 -05:00
Mark H Weaver
856650d9c1
gnu: linux-libre: Update deblob scripts.
...
* gnu/packages/linux.scm (deblob-scripts-5.4): Update to 5.4.19.
(deblob-scripts-4.19, deblob-scripts-4.14, deblob-scripts-4.9)
(deblob-scripts-4.4): Update versions, although the scripts are unchanged.
2020-02-14 22:11:21 -05:00
Ricardo Wurmus
ef2b1d2c8b
gnu: Add guile-webutils.
...
* gnu/packages/guile-xyz.scm (guile-webutils): New variable.
2020-02-14 23:46:14 +01:00
sirgazil
da8ca4c3fc
gnu: Add python-fuzzywuzzy.
...
* gnu/packages/python-xyz.scm (python-fuzzywuzzy, python2-fuzzywuzzy):
New variables.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-02-14 23:24:32 +01:00
Leo Famulari
9e89b41966
gnu: VIGRA: Try to fix a build failure on the build farm.
...
* gnu/packages/image.scm (vigra)[properties]: Set the maximum silent time to
7200 seconds.
2020-02-14 17:06:09 -05:00
Ludovic Courtès
117d8467be
doc: Use @itemx as needed.
...
This is a followup to 459e096770 .
* doc/guix.texi (Invoking guix environment): Use @itemx for '--share'.
2020-02-14 23:03:36 +01:00
Brice Waegeneire
0c26e43eca
gnu: btrfs-progs: Install udev-rules.
...
* gnu/packages/linux.scm (btrfs-progs)[arguments]: Add phase
patch-makefile.
[native-inputs]: Add lvm2, eudev.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-14 23:01:47 +01:00
Maurice Bremond
8cd2a395c7
gnu: mumps: Change "5.1.2" to "5.2.1" in library file names.
...
* gnu/packages/patches/mumps-shared-libseq.patch,
gnu/packages/patches/mumps-shared-mumps.patch,
gnu/packages/patches/mumps-shared-pord.patch: Replace "5.1.2" with
"5.2.1" in file names.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2020-02-14 23:01:47 +01:00
Damien Cassou
459e096770
doc: Clarify documentation of guix environment --expose vs. --share
...
The documentation for --expose and --share parameters are so similar that the
reader has to read both descriptions in parallel to find the difference.
* doc/guix.texi (Invoking guix environment)[--expose, --share]: Merge the two
descriptions into one.
Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net >
2020-02-14 22:55:52 +01:00
Jack Hill
cc0cc9651a
gnu: go-ipfs: Update to 0.4.23
...
* gnu/packages/ipfs.scm (go-ipfs): Update to 0.4.23
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-14 16:47:47 -05:00
Jakub Kądziołka
6a7f4d89b2
doc: Clarify how sudo and guix interact when updating
...
* doc/guix.texi (After System Installation): Explicitly explain the
mechanics of how sudo differs from a login shell.
Some recent discussions on IRC suggest that the existing wording wasn't
entirely clear.
2020-02-14 19:05:59 +01:00
Marius Bakke
5edad6c75a
gnu: mesa: Update to 19.3.4.
...
* gnu/packages/gl.scm (mesa): Update to 19.3.4.
(mesa-19.3.3): Remove variable.
* gnu/packages/graphics.scm (opensubdiv)[inputs]: Remove MESA-19.3.3.
2020-02-14 18:34:02 +01:00
Marius Bakke
7f8c5111fc
gnu: xkeyboard-config: Update to 2.29.
...
* gnu/packages/xorg.scm (xkeyboard-config): Update to 2.29.
[inputs]: Move GETTEXT-MINIMAL ...
[native-inputs]: ... here. Add PERL and PYTHON. Remove INTLTOOL.
2020-02-14 18:34:02 +01:00
Marius Bakke
b280b9c3f2
gnu: postgresql@10: Update to 10.12.
...
* gnu/packages/databases.scm (postgresql): Update to 10.12.
2020-02-14 18:34:02 +01:00
Marius Bakke
21d0b64494
gnu: nss: Delete bundled SQLite and Zlib.
...
* gnu/packages/nss.scm (nss)[source](modules, snippet): New fields.
2020-02-14 18:34:02 +01:00
Marius Bakke
8ff645f338
gnu: nss, nss-certs: Update to 3.50.
...
* gnu/packages/nss.scm (nss): Update to 3.50.
* gnu/packages/certs.scm (nss-certs): Likewise.
2020-02-14 18:34:02 +01:00
Marius Bakke
dabd2fc3d5
gnu: nspr: Update to 4.25.
...
* gnu/packages/nss.scm (nspr): Update to 4.25.
2020-02-14 18:34:02 +01:00
Marius Bakke
759883ab51
gnu: Remove gdb@8.3.
...
* gnu/packages/gdb.scm (gdb-8.3): Rename to ...
(gdb-9.1): ... this. Update to 9.1.
[properties]: Remove.
[inputs]: Add SOURCE-HIGHLIGHT.
[arguments]: Add #:out-of-source?.
(gdb-8.2): Inherit from GDB-9.1.
(gdb): Set to GDB-9.1.
2020-02-14 18:34:01 +01:00
Marius Bakke
318c6a5aa9
gnu: python-imagesize: Update to 1.2.0.
...
* gnu/packages/python-xyz.scm (python-imagesize): Update to 1.2.0.
2020-02-14 18:34:01 +01:00
Marius Bakke
dce9b8b52c
gnu: python-jinja2: Run the tests.
...
* gnu/packages/python-xyz.scm (python-jinja2)[native-inputs]: Add PYTHON-PYTEST.
[arguments]: New field.
2020-02-14 18:34:01 +01:00
Marius Bakke
3c8ad0876c
gnu: python-jinja2: Update to 2.11.1.
...
* gnu/packages/python-xyz.scm (python-jinja2): Update to 2.11.1.
2020-02-14 18:34:01 +01:00
Marius Bakke
8cf5c9fabf
gnu: python-docutils: Run the tests.
...
* gnu/packages/python-xyz.scm (python-docutils)[arguments]: Remove #:tests?.
Add #:phases.
2020-02-14 18:34:01 +01:00
Marius Bakke
da8e8dc644
gnu: python-docutils: Update to 0.16.
...
* gnu/packages/python-xyz.scm (python-docutils): Update to 0.16.
2020-02-14 18:34:00 +01:00
Marius Bakke
9b54d319e1
gnu: python-snowballstemmer: Update to 2.0.0.
...
* gnu/packages/python-xyz.scm (python-snowballstemmer): Update to 2.0.0.
2020-02-14 18:34:00 +01:00
Marius Bakke
dab3c841b3
gnu: python-babel: Update to 2.8.0.
...
* gnu/packages/python-xyz.scm (python-babel): Update to 2.8.0.
2020-02-14 18:34:00 +01:00
Marius Bakke
3220e44f16
gnu: python-cython: Update to 0.29.15.
...
* gnu/packages/python-xyz.scm (python-cython): Update to 0.29.15.
[arguments]: Remove obsolete phase.
2020-02-14 18:34:00 +01:00
Marius Bakke
34e9aa7332
gnu: mtdev: Do not build the static library.
...
* gnu/packages/xdisorg.scm (mtdev)[arguments]: New field.
2020-02-14 18:34:00 +01:00
Marius Bakke
964a556dc5
gnu: mtdev: Update to 1.1.6.
...
* gnu/packages/xdisorg.scm (mtdev): Update to 1.1.6.
2020-02-14 18:33:59 +01:00
Marius Bakke
d7bede8bf1
gnu: qpdf: Update to 9.1.1.
...
* gnu/packages/pdf.scm (qpdf): Update to 9.1.1.
[source](modules, snippet): Remove.
2020-02-14 18:33:59 +01:00
Marius Bakke
4d3c2cb79f
gnu: python-mako: Update to 1.1.1.
...
* gnu/packages/python-xyz.scm (python-mako): Update to 1.1.1.
2020-02-14 18:33:59 +01:00
Marius Bakke
03bed9090f
gnu: cups-filters: Update to 1.27.0.
...
* gnu/packages/cups.scm (cups-filters): Update to 1.27.0.
2020-02-14 18:33:59 +01:00
Marius Bakke
e313327ee8
gnu: MariaDB: Update to 10.1.44.
...
* gnu/packages/databases.scm (mariadb): Update to 10.1.44.
[arguments]: Add substitution for hard coded file name. Disable test that
depends on the existence of 'root@hostname' user.
2020-02-14 18:33:59 +01:00
Marius Bakke
cf99239cee
gnu: check: Update to 0.14.0.
...
* gnu/packages/check.scm (check): Update to 0.14.0.
2020-02-14 18:33:58 +01:00
Marius Bakke
6ecb884683
gnu: ImageMagick: Update to 6.9.10-92.
...
* gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.10-92.
2020-02-14 18:33:58 +01:00
Marius Bakke
986dce4f85
gnu: lz4: Do not install liblz4.a.
...
* gnu/packages/compression.scm (lz4)[arguments]: Add phase
'delete-static-library'.
2020-02-14 18:33:58 +01:00
Marius Bakke
43f0cfcd0f
gnu: perl-test-trap: Remove obsolete input.
...
* gnu/packages/perl-check.scm (perl-test-trap)[propagated-inputs]: Remove
PERL-TEST-TESTER.
2020-02-14 18:33:58 +01:00
Marius Bakke
1f676329b6
gnu: perl-test-output: Remove obsolete input.
...
* gnu/packages/perl-check.scm (perl-test-output)[propagated-inputs]: Remove
PERL-TEST-TESTER.
2020-02-14 18:33:58 +01:00
Marius Bakke
17aa4699b9
gnu: perl-test-nowarnings: Remove obsolete input.
...
* gnu/packages/perl-check.scm (perl-test-nowarnings)[inputs]: Remove.
2020-02-14 18:33:58 +01:00
Marius Bakke
009b4b4341
gnu: perl-test-deep: Remove obsolete input.
...
* gnu/packages/perl-check.scm (perl-test-deep)[inputs]: Remove PERL-TEST-TESTER.
2020-02-14 18:33:57 +01:00
Marius Bakke
62d46da10e
gnu: perl-test-cleannamespaces: Remove obsolete input.
...
* gnu/packages/perl-check.scm (perl-test-cleannamespaces)[native-inputs]:
Remove PERL-TEST-TESTER.
2020-02-14 18:33:57 +01:00
Marius Bakke
22534556fe
gnu: perl-ipc-system-simple: Update to 1.26.
...
* gnu/packages/perl.scm (perl-ipc-system-simple): Update to 1.26.
2020-02-14 18:33:57 +01:00
Marius Bakke
bec7e21fa0
gnu: perl-cgi: Update to 4.46.
...
* gnu/packages/web.scm (perl-cgi): Update to 4.46.
2020-02-14 18:33:57 +01:00
Marius Bakke
871a2c2f67
gnu: perl-term-readkey: Update to 2.38.
...
* gnu/packages/perl.scm (perl-term-readkey): Update to 2.38.
2020-02-14 18:33:57 +01:00
Marius Bakke
80b26d6c83
gnu: perl-http-date: Update to 6.05.
...
* gnu/packages/web.scm (perl-http-date): Update to 6.05.
2020-02-14 18:33:56 +01:00
Marius Bakke
631d4dd44b
gnu: perl-lwp-mediatypes: Update to 6.04.
...
* gnu/packages/web.scm (perl-lwp-mediatypes): Update to 6.0.4.
[source](uri): Adjust accordingly.
[native-inputs]: Add PERL-TEST-FATAL.
2020-02-14 18:33:56 +01:00
Marius Bakke
bc2b7fe2cd
gnu: perl-test-simple: Update to 1.302171.
...
* gnu/packages/perl-check.scm (perl-test-simple): Update to 1.302171.
2020-02-14 18:33:56 +01:00
Marius Bakke
768164437a
gnu: libtirpc: Update to 1.2.5.
...
* gnu/packages/onc-rpc.scm (libtirpc): Update to 1.2.5.
2020-02-14 18:33:56 +01:00
Marius Bakke
b82464b361
gnu: libevdev: Update to 1.8.0.
...
* gnu/packages/xorg.scm (libevdev): Update to 1.8.0.
2020-02-14 18:33:56 +01:00
Marius Bakke
ac9cc329fc
gnu: libevdev: Do not build the static library.
...
* gnu/packages/xorg.scm (libevdev)[arguments]: Add #:configure-flags.
2020-02-14 18:33:55 +01:00
Marius Bakke
caf43fd31e
gnu: libffcall: Update to 2.2.
...
* gnu/packages/libffcall.scm (libffcall): Update to 2.2.
2020-02-14 18:33:55 +01:00
Marius Bakke
ac906f14bc
gnu: libffcall: Do not build the static libraries.
...
* gnu/packages/libffcall.scm (libffcall)[arguments]: Add #:configure-flags.
2020-02-14 18:33:55 +01:00
Marius Bakke
d60458d77c
gnu: libaio: Do not install the static library.
...
* gnu/packages/linux.scm (libaio)[arguments]: Add phase 'delete-static-library'.
2020-02-14 18:33:55 +01:00
Marius Bakke
2fabf398c1
gnu: libaio: Update to 0.3.112.
...
* gnu/packages/linux.scm (libaio): Update to 0.3.112.
2020-02-14 18:33:55 +01:00
Marius Bakke
ceb4b1d715
gnu: nspr: Do not build the static library.
...
* gnu/packages/nss.scm (nspr)[arguments]: Add "--disable-static" in
#:configure-flags.
2020-02-14 18:33:55 +01:00
Marius Bakke
e4db21bcf6
gnu: nss: Remove obsolete patch.
...
* gnu/packages/patches/nss-freebl-stubs.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/nss.scm (nss)[source](patches): Remove 'nss-freebl-stubs.patch'.
2020-02-14 18:33:54 +01:00
Marius Bakke
7b83cd720f
gnu: eudev: Do not build the static libraries.
...
* gnu/packages/linux.scm (eudev)[arguments]: Add "--disable-static" in
#:configure-flags.
2020-02-14 18:33:54 +01:00
Marius Bakke
55e51b6615
gnu: python-pyopenssl: Fix test failure.
...
* gnu/packages/python-crypto.scm (python-pyopenssl)[native-inputs]: Add LIBFAKETIME.
[arguments]: Use it to run tests with a fixed date.
(cherry picked from commit 84f1e12b8b )
2020-02-14 18:33:54 +01:00
Leo Prikler
64fc4f3705
gnu: Add gst-editing-services.
...
* gnu/packages/gstreamer.scm (gst-editing-services): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-14 17:49:26 +01:00
Andrius Štikonas via Guix-patches via
7af0f2156c
gnu: mrustc: Fix typo in description.
...
* gnu/packages/rust.scm (mrustc) [synopsis]: Fix a typo
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-14 17:49:26 +01:00
Marius Bakke
acadc0c584
gnu: WebKitGTK: Update to 2.26.4 [security fixes].
...
This fixes CVE-2020-3862, CVE-2020-3864, CVE-2020-3865, CVE-2020-3867, and
CVE-2020-3868.
* gnu/packages/webkit.scm (webkitgtk): Update to 2.26.4.
2020-02-14 17:49:26 +01:00
Marius Bakke
e20e069b99
gnu: LVM2: Update to 2.03.08.
...
* gnu/packages/linux.scm (lvm2): Update to 2.03.08.
2020-02-14 17:49:26 +01:00
Marius Bakke
11415d3506
guix build: Add '--manifest' option.
...
* guix/scripts/build.scm (show-help): Document --manifest argument.
(options->things-to-build): When given a manifest, evaluate all the entries.
* tests/guix-build.sh: Add test for --manifest.
* doc/guix.texi (Additional Build Options): Mention --manifest.
* etc/completion/bash/guix: Complete file name if 'guix build' argument is
-m.
2020-02-14 17:49:26 +01:00
Pierre Neidhardt
a74e23188f
gnu: Add librocket.
...
* gnu/packages/web.scm (librocket): New variable.
2020-02-14 17:45:47 +01:00
Jelle Licht
53e7e3d7ca
gnu: emacs-ess: Do not install files in "guix.d".
...
* gnu/packages/statistics.scm (emacs-ess)[arguments]: Move the etc and
lisp directories out of "guix.d".
2020-02-14 16:55:18 +01:00
Brice Waegeneire
96945cabe0
gnu: Add haproxy.
...
* gnu/packages/networking.scm (haproxy): New variable.
2020-02-14 16:33:17 +01:00
Pierre Neidhardt
98e3953e96
gnu: dxvk: Update to 1.5.4.
...
* gnu/packages/wine.scm (dxvk): Update to 1.5.4.
2020-02-14 10:08:15 +01:00
Christopher Baines
57718bdf68
Revert "nls: Update 'es' translation of the manual."
...
I believe this change breaks guix pull:
./guix.es.texi:20971: @samp missing closing brace
This reverts commit d156e3fbcd .
2020-02-14 09:01:29 +00:00
Pierre Neidhardt
e659fa7112
gnu: emacs-sly-asdf: Update to 20200214.
...
* gnu/packages/emacs-xyz.scm (emacs-sly-asdf): Update to 20200214.
2020-02-14 09:42:05 +01:00
Eric Bavier
341976e561
gnu: netsurf: Fix .desktop exec reference.
...
* gnu/packages/web.scm (netsurf)[arguments]: Update name of binary referenced
in .desktop file to "netsurf-gtk3".
2020-02-13 22:09:56 -06:00
Julien Lepiller
7bdb1988ae
nls: Update 'fr' translation.
2020-02-14 04:45:59 +01:00
Julien Lepiller
561185d279
nls: Update 'de' translation of the manual.
2020-02-14 04:45:56 +01:00
Julien Lepiller
d156e3fbcd
nls: Update 'es' translation of the manual.
2020-02-14 04:45:53 +01:00
Julien Lepiller
ade16123dc
nls: Update 'pt_BR' translation.
2020-02-14 04:45:36 +01:00
Leo Famulari
1ce2467fd6
gnu: LibreOffice: Update to 6.4.0.3.
...
* gnu/packages/libreoffice.scm (libreoffice): Update to 6.4.0.3.
[inputs]: Add qrcodegen-cpp.
[source]: Remove obsolete patches and substitutions.
* gnu/packages/patches/libreoffice-glm.patch,
gnu/packages/patches/libreoffice-icu.patch: Delete files.
* gnu/local.mk (dist_patch_DATA): Remove them.
2020-02-13 20:13:10 -05:00
Leo Famulari
b96aca9255
gnu: libetonyek: Update MDDS requirement.
...
* gnu/packages/libreoffice.scm (libetonyek): Put '--with-mdds-1.5'
in #:configure-flags.
2020-02-13 20:13:10 -05:00
Leo Famulari
80f29b83db
gnu: orcus: Update to 0.15.3.
...
* gnu/packages/libreoffice.scm (orcus): Update to 0.15.3.
2020-02-13 20:13:10 -05:00
Leo Famulari
dbbe244851
gnu: ixion: Update to 0.15.0.
...
* gnu/packages/libreoffice.scm (ixion): Update to 0.15.0.
[inputs]: Add spdlog.
2020-02-13 20:13:10 -05:00
Leo Famulari
ec2fdbf6c1
gnu: mdds: Update to 1.5.0.
...
* gnu/packages/boost.scm (mdds): Update to 1.5.0.
2020-02-13 20:13:09 -05:00
Leo Famulari
d41e25c058
gnu: Add qrcodegen-cpp.
...
* gnu/packages/aidc.scm (qrcodegen-cpp): New variable.
* gnu/packages/patches/qrcodegen-cpp-make-install.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
2020-02-13 20:13:09 -05:00
Leo Famulari
3dbab6824d
gnu: Syncthing: Update to 1.3.4.
...
* gnu/packages/syncthing.scm (syncthing): Update to 1.3.4.
[arguments]: Adjust to changes in the upstream build tooling in the 'build'
and 'install' phases.
[inputs]: Add go-github-com-cespare-xxhash.
2020-02-13 19:44:31 -05:00
Leo Famulari
9c2eb9622d
gnu: Add go-github-com-cespare-xxhash.
...
* gnu/packages/syncthing.scm (go-github-com-cespare-xxhash): New variable.
2020-02-13 19:44:31 -05:00
Leo Famulari
05b8096dd2
gnu: go-github-com-lucas-clemente-quic-go: Update to 0.12.1.
...
* gnu/packages/golang.scm (go-github-com-lucas-clemente-quic-go): Update
to 0.12.1.
[propagated-inputs]: Add go-github-com-golang-protobuf-proto.
2020-02-13 19:44:31 -05:00
Leo Famulari
199f1be3a3
gnu: go-github-com-marten-seemann-qtls: Update to 0.3.2.
...
* gnu/packages/golang.scm (go-github-com-marten-seemann-qtls): Update to 0.3.2.
2020-02-13 19:44:30 -05:00
Leo Famulari
e4d8efe98f
gnu: go-github-com-minio-sha256-simd: Update to 0.1.1.
...
* gnu/packages/golang.scm (go-github-com-minio-sha256-simd): Update to 0.1.1.
2020-02-13 19:44:30 -05:00
Leo Famulari
fe7e7ac120
gnu: go-github-com-syndtr-goleveldb: Update to 1.0.1-4.7581283.
...
* gnu/packages/syncthing.scm (go-github-com-syndtr-goleveldb): Update to
1.0.1-4.7581283.
2020-02-13 19:44:30 -05:00
Leo Famulari
d8b681fb5c
gnu: go-github-com-prometheus-client-golang: Update to 1.2.1.
...
* gnu/packages/syncthing.scm (go-github-com-prometheus-client-golang):
Update to 1.2.1.
2020-02-13 19:44:30 -05:00
Leo Famulari
5d9515d880
gnu: go-github-com-urfave-cli: Update to 1.22.2.
...
* gnu/packages/golang.scm (go-github-com-urfave-cli): Update to 1.22.2.
[propagated-inputs]: Add go-github-com-go-md2man.
2020-02-13 19:44:30 -05:00
Leo Famulari
2c0bc073f2
gnu: Add go-github-com-go-md2man.
...
* gnu/packages/golang.scm (go-github-com-go-md2man): New variable.
2020-02-13 19:44:29 -05:00
Leo Famulari
0ca8bc01a1
gnu: Add go-github-com-russross-blackfriday.
...
* gnu/packages/golang.scm (go-github-com-russross-blackfriday): New variable.
2020-02-13 19:44:29 -05:00
Leo Famulari
47a4a6da5e
gnu: Add go-github-com-shurcool-sanitized-anchor-name.
...
* gnu/packages/golang.scm (go-github-com-shurcool-sanitized-anchor-name): New
variable.
2020-02-13 19:44:29 -05:00
Leo Famulari
3c06b06034
gnu: Add go-github-com-pmezard-go-difflib.
...
* gnu/packages/golang.scm (go-github-com-pmezard-go-difflib): New variable.
2020-02-13 19:44:29 -05:00
Leo Famulari
df14a8b67d
gnu: go-github-com-mattn-go-isatty: Update to 0.0.11.
...
* gnu/packages/golang.scm (go-github-com-mattn-go-isatty): Update to 0.0.11.
2020-02-13 19:44:29 -05:00
Leo Famulari
6ac3b835d1
gnu: Change upstream for the go-nat-pmp Go NAT-PMP client.
...
* gnu/packages/syncthing.scm
(go-github-com-audriusbutkevicius-go-nat-pmp): Replace with ...
(go-github-com-jackpal-go-nat-pmp): ... new package.
(syncthing)[inputs]: Adjust accordingly.
2020-02-13 19:44:28 -05:00
Leo Famulari
726727e163
gnu: go-github-com-pkg-errors: Update to 0.9.0.
...
* gnu/packages/golang.scm (go-github-com-pkg-errors): Update to 0.9.0.
2020-02-13 19:44:28 -05:00
Leo Famulari
195960737c
gnu: go-github-com-oschwald-geoip2-golang: Update to 1.4.0.
...
* gnu/packages/syncthing.scm (go-github-com-oschwald-geoip2-golang):
Update to 1.4.0.
2020-02-13 19:44:28 -05:00
Leo Famulari
a2c885b31c
gnu: go-github-com-gogo-protobuf: Update to 1.3.1.
...
* gnu/packages/golang.scm (go-github-com-gogo-protobuf): Update to 1.3.1.
2020-02-13 19:44:28 -05:00
Leo Famulari
a726d91d0c
gnu: Move go-github-com-golang-protobuf-proto to the Golang module.
...
* gnu/packages/syncthing.scm (go-github-com-golang-protobuf-proto): Move
variable ...
gnu/packages/golang.scm (go-github-com-golang-protobuf-proto): ... to here.
2020-02-13 19:44:27 -05:00
Leo Famulari
3170d75466
gnu: go-github-com-rcrowley-go-metrics: Update to 0.0.0-2.cac0b30.
...
* gnu/packages/syncthing.scm (go-github-com-rcrowley-go-metrics): Update
to 0.0.0-2.cac0b30.
2020-02-13 19:44:27 -05:00
Leo Famulari
191e4df083
gnu: go-github-com-prometheus-client-golang: Update 1.1.0.
...
* gnu/packages/syncthing.scm (go-github-com-prometheus-client-golang):
Update to 1.1.0.
2020-02-13 19:44:27 -05:00
Leo Famulari
be47a83abb
gnu: go-github-com-minio-sha256-simd: Update to 0.1.0.
...
* gnu/packages/golang.scm (go-github-com-minio-sha256-simd): Update to
0.1.0.
2020-02-13 19:44:26 -05:00
Leo Famulari
17436233f6
gnu: go-gopkg.in-asn1-ber.v1: Update to 1.3.
...
* gnu/packages/syncthing.scm (go-gopkg.in-asn1-ber.v1): Update to 1.3.
2020-02-13 19:44:26 -05:00
Leo Famulari
720420e38e
gnu: go-golang-org-x-time: Update to 0.0.0-2.9d24e82.
...
* gnu/packages/golang.scm (go-golang-org-x-time): Update to 0.0.0-2.9d24e82.
2020-02-13 19:44:26 -05:00
Leo Famulari
9ef07337fd
gnu: go-golang-org-x-sys: Update to 0.0.0-5.749cb33.
...
* gnu/packages/golang.scm (go-golang-org-x-sys): Update to 0.0.0-5.749cb33.
2020-02-13 19:44:26 -05:00
Leo Famulari
7cb90f229f
gnu: go-golang-org-x-net: Update to 0.0.0-4.ba9fcec.
...
* gnu/packages/golang.scm (go-golang-org-x-net): Update to 0.0.0-4.ba9fcec.
2020-02-13 19:44:26 -05:00
Leo Famulari
75f36ad6d2
gnu: go-github-com-prometheus-procfs: Update to 0.0.4.
...
* gnu/packages/syncthing.scm (go-github-com-prometheus-procfs): Update
to 0.0.4.
2020-02-13 19:44:26 -05:00
Leo Famulari
0d793a59cf
gnu: go-github-com-prometheus-client-model: Update to 0.0.2-2.14fe0d1.
...
* gnu/packages/syncthing.scm (go-github-com-prometheus-client-model):
Update to 0.0.2-2.14fe0d1.
2020-02-13 19:44:25 -05:00
Leo Famulari
adc6ae9a85
gnu: go-github-com-petermattis-goid: Update to 0.0.0-1.b0b1615
...
* gnu/packages/syncthing.scm (go-github-com-petermattis-goid): Update to
0.0.0-1.b0b1615.
2020-02-13 19:44:25 -05:00
Leo Famulari
8e7e2dbc43
gnu: go-github-com-oschwald-maxminddb-golang: Update to 1.4.0.
...
* gnu/packages/syncthing.scm (go-github-com-oschwald-maxminddb-golang):
Update to 1.4.0.
2020-02-13 19:44:25 -05:00
Leo Famulari
e268d0bbd6
gnu: go-github-com-kballard-go-shellquote: Update to 0.0.0-1.95032a8
...
* gnu/packages/syncthing.scm (go-github-com-kballard-go-shellquote):
Update to 0.0.0-1.95032a8.
2020-02-13 19:44:25 -05:00
Leo Famulari
a427d7353f
gnu: go-github-com-jackpal-gateway: Update to 1.0.5.
...
* gnu/packages/syncthing.scm (go-github-com-jackpal-gateway): Update to
1.0.5.
2020-02-13 19:44:24 -05:00
Leo Famulari
87abee4e53
gnu: go-github-com-golang-groupcache-lru: Update to 0.0.0-2.869f871
...
* gnu/packages/syncthing.scm (go-github-com-golang-groupcache-lru):
Update to 0.0.0-2.869f871.
2020-02-13 19:44:24 -05:00
Leo Famulari
a9546f8bb1
gnu: go-github-com-certifi-gocertifi: Update to 2018.01.18-1.a5e0173
...
* gnu/packages/tls.scm (go-github-com-certifi-gocertifi): Update to
2018.01.18-1.a5e0173.
2020-02-13 19:44:24 -05:00
Leo Famulari
c32e70a8ba
gnu: go-github-com-gobwas-glob: Update to 0.2.3.
...
* gnu/packages/syncthing.scm (go-github-com-gobwas-glob): Update to 0.2.3.
2020-02-13 19:44:24 -05:00
Leo Famulari
cdf409e817
gnu: go-golang-org-x-crypto: Update to 0.0.0-4.9756ffd.
...
* gnu/packages/golang.scm (go-golang-org-x-crypto): Update to 0.0.0-4.9756ffd.
2020-02-13 19:44:23 -05:00
Leo Prikler
5f6ce90a90
gnu: sane-backends: Disable genesys_unit_tests.
...
Fixes <https://bugs.gnu.org/39449 >.
* gnu/packages/scanner.scm (sane-backends)[arguments]<#:phases>:
Add disable-failing-backend-tests.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-13 23:32:19 +01:00
Tanguy Le Carrour
0a193d321b
gnu: python-pip: Update to 20.0.2.
...
* gnu/packages/python-xyz.scm (python-pip): Update to 20.0.2.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-13 23:32:19 +01:00
Ludovic Courtès
56893b9bbf
git-authenticate: Add niedzejkob to the list of committers.
...
* build-aux/git-authenticate.scm (%committers): Add niedzejkob.
2020-02-13 23:32:19 +01:00
Jan Nieuwenhuizen
ee8d86ff47
gnu: Add gash-utils.
...
* gnu/packages/shells.scm (gash-utils): New variable.
2020-02-13 22:09:53 +01:00
Marius Bakke
40bea7f9b2
gnu: IlmBase, OpenEXR: Update to 2.4.1.
...
* gnu/packages/graphics.scm (ilmbase): Update to 2.4.1.
2020-02-13 16:47:23 +01:00
Marius Bakke
f6abff7bd4
gnu: wpebackend-fdo: Update to 1.4.1.
...
* gnu/packages/webkit.scm (wpebackend-fdo): Update to 1.4.1.
2020-02-13 16:47:23 +01:00
Marius Bakke
a866dd184d
gnu: libsecret: Update to 0.20.1.
...
* gnu/packages/gnome.scm (libsecret): Update to 0.20.1.
2020-02-13 16:47:23 +01:00
Marius Bakke
bf71edd3df
gnu: python2-pbcore: Remove python2-sphinx dependency.
...
* gnu/packages/bioinformatics.scm (python2-pbcore)[arguments]: Add #:phases.
[native-inputs]: Remove PYTHON2-SPHINX.
2020-02-13 16:47:22 +01:00
Marius Bakke
2537ce68b0
gnu: python-markdown: Update to 3.2.
...
* gnu/packages/python-xyz.scm (python-markdown): Update to 3.2.
[properties]: New field.
(python2-markdown): Stay on 3.1.1.
2020-02-13 16:47:22 +01:00
Marius Bakke
8ae17933e2
gnu: opensubdiv: Build with a newer version of Mesa.
...
* gnu/packages/gl.scm (mesa-19.3.3): New public variable.
* gnu/packages/graphics.scm (opensubdiv)[inputs]: Add it.
2020-02-13 16:47:22 +01:00
Tobias Geerinckx-Rice
d81fb2ae94
gnu: python-tox: Update home page.
...
* gnu/packages/python-xyz.scm (python-tox)[home-page]: Use new (HTTPS)
URI.
2020-02-13 00:40:32 +01:00
Tobias Geerinckx-Rice
68e30b8de6
gnu: brdf-explorer: Use HTTPS home page.
...
* gnu/packages/graphics.scm (brdf-explorer)[home-page]: Use HTTPS.
2020-02-13 00:24:32 +01:00
Tobias Geerinckx-Rice
96d580a647
gnu: s-tui: Update to 1.0.0.
...
* gnu/packages/admin.scm (s-tui): Update to 1.0.0.
2020-02-13 00:24:32 +01:00
Tobias Geerinckx-Rice
c3843b4611
gnu: choqok: Fix typo in description.
...
This fixes ‘guix show choqok’ and friends.
* gnu/packages/kde-internet.scm (choqok)[description]: Escape ‘@’.
2020-02-13 00:24:32 +01:00
Alexandros Theodotou
eb642f3d24
gnu: Add libcyaml.
...
* gnu/packages/web.scm (libcyaml): New variable.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-02-13 00:24:32 +01:00
Tobias Geerinckx-Rice
2e9ec5fb9e
gnu: foo2zjs: Update to 20200207.
...
* gnu/packages/cups.scm (foo2zjs): Update to 20200207.
2020-02-13 00:24:32 +01:00
Tobias Geerinckx-Rice
98e61365fb
gnu: r-bayesplot: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-bayesplot)[home-page]: Use HTTPS.
2020-02-13 00:24:32 +01:00
Nicolas Goaziou
8b660be1c1
gnu: quaternion: Fix typo in description.
...
* gnu/packages/messaging.scm (quaternion)[description]: Fix typo.
2020-02-12 23:38:15 +01:00
Nicolas Goaziou
436dd1de55
gnu: musescore: Update to 3.4.2.
...
* gnu/packages/music.scm (musescore): Update to 3.4.2.
[inputs]: Add qtquickcontrols2.
2020-02-12 23:36:32 +01:00
Nicolas Goaziou
0d4e780e77
gnu: tlp: Update to 1.3.1.
...
* gnu/packages/linux.scm (tlp): Update to 1.3.1.
2020-02-12 23:03:05 +01:00
Nicolas Goaziou
eeb372b562
gnu: grammalecte: Update to 1.7.0.
...
* gnu/packages/dictionaries.scm (grammalecte): Update to 1.7.0.
2020-02-12 22:53:56 +01:00
Valentin Ignatev
9b97d73ced
gnu: Add rust-objc-id-0.1.
...
* gnu/packages/crates-io.scm (rust-objc-id-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:41:24 +02:00
Valentin Ignatev
55086c2e37
gnu: Add rust-objc-0.2.
...
* gnu/packages/crates-io.scm (rust-objc-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:35:05 +02:00
Valentin Ignatev
cf20f8a582
gnu: Add rust-malloc-buf-0.
...
* gnu/packages/crates-io.scm (rust-malloc-buf-0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:32:19 +02:00
Valentin Ignatev
897a409af2
gnu: Add rust-objc-exception-0.1.
...
* gnu/packages/crates-io.scm (rust-objc-exception-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:29:25 +02:00
Valentin Ignatev
06d197ea9d
gnu: Add rust-compiletest-rs-0.2.
...
* gnu/packages/crates-io.scm (rust-compiletest-rs-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:23:46 +02:00
Valentin Ignatev
d4a6fb3b42
gnu: Add rust-objc-test-utils-0.0.
...
* gnu/packages/crates-io.scm (rust-objc-test-utils-0.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:23:27 +02:00
Valentin Ignatev
77c4aa0fd8
gnu: Add rust-dwrote-0.9.
...
* gnu/packages/crates-io.scm (rust-dwrote-0.9): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:19:53 +02:00
Valentin Ignatev
583b1648e4
gnu: Add rust-clipboard-win-2.1.
...
* gnu/packages/crates-io.scm (rust-clipboard-win-2.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:14:23 +02:00
Efraim Flashner
68b1a5eada
gnu: rust-md5-0.6: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-md5-0.6)[arguments]: Don't skip build.
2020-02-12 21:12:46 +02:00
Valentin Ignatev
f4adb13aed
gnu: Add rust-md5-0.3.
...
* gnu/packages/crates-io.scm (rust-md5-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:10:15 +02:00
Valentin Ignatev
72ca512c94
gnu: Add rust-lzw-0.10.
...
* gnu/packages/crates-io.scm (rust-lzw-0.10): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:08:47 +02:00
Valentin Ignatev
c736983ab7
gnu: Add rust-khronos-api-3.
...
* gnu/packages/crates-io.scm (rust-khronos-api-3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:07:55 +02:00
Valentin Ignatev
e9c291a619
gnu: Add rust-glutin-emscripten-sys-0.1.
...
* gnu/packages/crates-io.scm (rust-glutin-emscripten-sys-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:06:32 +02:00
Valentin Ignatev
959b93a660
gnu: Add rust-downcast-rs-1.1.
...
* gnu/packages/crates-io.scm (rust-downcast-rs-1.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:05:43 +02:00
Valentin Ignatev
a09dad21f3
gnu: Add rust-dispatch-0.1.
...
* gnu/packages/crates-io.scm (rust-dispatch-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:04:37 +02:00
Valentin Ignatev
f193fdea53
gnu: Add rust-bitflags-0.7.
...
* gnu/packages/crates-io.scm (rust-bitflags-0.7): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:02:32 +02:00
Valentin Ignatev
2eac2078be
gnu: Add rust-bitflags-0.8.
...
* gnu/packages/crates-io.scm (rust-bitflags-0.8): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:01:56 +02:00
Valentin Ignatev
3d02da9fb2
gnu: Add rust-x11-dl-2.
...
* gnu/packages/crates-io.scm (rust-x11-dl-2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 21:00:57 +02:00
Valentin Ignatev
84273bbde4
gnu: Add rust-maybe-uninit-2.0.
...
* gnu/packages/crates-io.scm (rust-maybe-uninit-2.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 20:57:43 +02:00
Valentin Ignatev
045cb382de
gnu: Add rust-x11-clipboard-0.4.
...
* gnu/packages/crates-io.scm (rust-x11-clipboard-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-12 20:56:50 +02:00
Nicolas Goaziou
403d9fae79
gnu: Add sky.
...
* gnu/packages/games.scm (sky): New variable.
2020-02-12 15:34:13 +01:00
Nicolas Goaziou
39604beba8
gnu: cataclysm-dda: Fix home-page.
...
* gnu/packages/games.scm (cataclysm-dda): Fix home-page.
2020-02-12 15:30:06 +01:00
Paul Garlick
971cc1b533
gnu: emacs-helm-bibtex: Update to 2.0.0-2.d447123.
...
* gnu/packages/emacs-xyz.scm (emacs-helm-bibtex): Update to 2.0.0-2.d447123.
2020-02-12 14:12:36 +00:00
Mathieu Othacehe
d008352bfb
installer: Fix installer restart dialog.
...
* gnu/installer/newt/final.scm (run-install-failed-page): Propose between
installer resume or restart. Do actually resume the installation by raising an
&installer-step-abort condition if "Resume" button is pressed. Otherwise, keep
going as the installer will be restarted by login.
* gnu/installer.scm (installer-program): Remove the associated TODO comment.
2020-02-12 10:52:17 +01:00
Mathieu Othacehe
1d02052067
installer: Remove the cow-store overlay after system installation.
...
Fixes <https://issues.guix.info/issue/39217 >.
Fixes <https://issues.guix.info/issue/38447 >.
* gnu/installer/final.scm (umount-cow-store): New procedure ...,
(install-system): ... used here, to remove the store overlay so that the
target device is not seen as busy during further umount calls.
2020-02-12 10:49:48 +01:00
Christopher Baines
cd820bf788
gnu: subversion: Disable parallel tests.
...
These seem to work fine on x86_64-linux, but on i686-linux some tests fail
when running in parallel.
FAIL: fs-fs-pack-test 4: commit to a packed FSFS filesystem
FAIL: fs-test: Unknown test failure; see tests.log.
FAIL: io-test: Unknown test failure; see tests.log.
FAIL: op-depth-test: Unknown test failure; see tests.log.
FAIL: wc-test: Unknown test failure; see tests.log.
Summary of test results:
2243 tests PASSED
96 tests SKIPPED
43 tests XFAILED
5 tests FAILED
SUMMARY: Some tests failed.
* gnu/packages/version-control.scm (subversion)[arguments]: Add
#:parallel-tests? #f and use this in the 'set-PARALLEL phase.
2020-02-12 09:32:23 +00:00
Konrad Hinsen
7ad122007d
gnu: Add cl-numcl.
...
* gnu/packages/lisp-xyz.scm (sbcl-numcl, cl-numcl): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-12 09:55:44 +01:00
Konrad Hinsen
5ce7d1861a
gnu: Add cl-gtype.
...
* gnu/packages/lisp-xyz.scm (sbcl-gtype, cl-gtype): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-12 09:51:44 +01:00
Konrad Hinsen
6e0f2b959a
gnu: Add cl-constantfold.
...
* gnu/packages/lisp-xyz.scm (sbcl-constantfold, cl-constantfold): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-12 09:47:05 +01:00
Konrad Hinsen
ca6c5c7fdf
gnu: Add cl-specialized-function.
...
* gnu/packages/lisp-xyz.scm (sbcl-specialized-function,
cl-specialized-function): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-12 09:38:10 +01:00
Konrad Hinsen
8926866ef7
gnu: Add cl-trivialib-type-unify.
...
* gnu/packages/lisp-xyz.scm (sbcl-trivialib-type-unify,
cl-trivialib-type-unify): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-12 09:36:09 +01:00
Efraim Flashner
6e6ee5c1de
gnu: emacs-geiser: Declare a source file-name.
...
* gnu/packages/emacs-xyz.scm (emacs-geiser)[source]: Use file-name.
2020-02-12 09:28:39 +02:00
Eric Bavier
ec8194a067
gnu: youtube-viewer: Update to 3.7.4.
...
Contains compatibility fix for recent mpv.
* gnu/packages/video.scm (youtube-viewer): Update to 3.7.4.
2020-02-12 00:18:35 -06:00
Tobias Geerinckx-Rice
8dc9437599
gnu: gource: Update to 0.51.
...
* gnu/packages/version-control.scm (gource): Update to 0.51.
2020-02-12 05:00:45 +01:00
Tobias Geerinckx-Rice
a322891780
gnu: gource: Use HTTPS home page.
...
* gnu/packages/version-control.scm (gource)[home-page]: Use HTTPS.
2020-02-12 05:00:45 +01:00
Tobias Geerinckx-Rice
e60969d54c
gnu: Fix copyright header typo.
...
* gnu/packages/gimp.scm: Fix typo.
2020-02-12 05:00:45 +01:00
Tobias Geerinckx-Rice
c57c648bfd
gnu: rsnapshot: Update to 1.4.3.
...
* gnu/packages/backup.scm (rsnapshot): Update to 1.4.3.
[arguments]: Disable broken test.
2020-02-12 05:00:45 +01:00
Tobias Geerinckx-Rice
330e2796be
gnu: man-pages: Update to 5.05.
...
* gnu/packages/man.scm (man-pages): Update to 5.05.
2020-02-12 05:00:45 +01:00
Tobias Geerinckx-Rice
84877c8aa0
gnu: gimp-fourier: Update home page.
...
* gnu/packages/gimp.scm (gimp-fourier)[home-page]: Use new (HTTPS) URI.
2020-02-12 05:00:45 +01:00
Tobias Geerinckx-Rice
eb38239df2
gnu: cereal: Use HTTPS home page.
...
* gnu/packages/serialization.scm (cereal)[home-page]: Use HTTPS.
2020-02-12 05:00:44 +01:00
Tobias Geerinckx-Rice
b3ee0c642a
gnu: milkytracker: Use HTTPS home page.
...
* gnu/packages/music.scm (milkytracker)[home-page]: Use HTTPS.
2020-02-12 05:00:44 +01:00
Tobias Geerinckx-Rice
44ff40c288
gnu: ttfautohint: Use HTTPS home page.
...
* gnu/packages/fontutils.scm (ttfautohint)[home-page]: Use HTTPS.
2020-02-12 05:00:44 +01:00
Tobias Geerinckx-Rice
28ee711152
gnu: spacefm: Use HTTPS home page.
...
* gnu/packages/lxde.scm (spacefm)[home-page]: Use HTTPS.
2020-02-12 04:44:22 +01:00
Mark H Weaver
ce02727bc8
gnu: icecat: Update to 68.5.0-guix0-preview1.
...
* 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.
2020-02-11 21:33:12 -05:00
Jack Hill
48f57932a7
gnu: go: Update to 1.13.7.
...
* gnu/packages/golang.scm (go-1.12): Rename to go-1.13.
(go-1.13)[version, source]: Update to 1.13.7.
(go-1.13)[arguments]: Don't delete ../pkg/bootstrap, as the file is no longer
generated during build.
(go): Update to go-1.13.
Signed-off-by: Alex Griffin <a@ajgrf.com >
2020-02-11 16:52:18 -06:00
Jack Hill
46c5c917ba
build: go-build-system: Disable Go module support.
...
This allows for upgrading the Go compiler without overhauling
go-build-system first.
* guix/build/go-build-system.scm (setup-go-environment): Set GO111MODULE to
off.
Signed-off-by: Alex Griffin <a@ajgrf.com >
2020-02-11 16:52:17 -06:00
Mark H Weaver
77189a3864
gnu: linux-libre: Update to 5.4.19.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.19.
(linux-libre-5.4-pristine-source): Update hash.
2020-02-11 17:13:34 -05:00
Mark H Weaver
f92440ebd5
gnu: linux-libre@4.19: Update to 4.19.103.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.103.
(linux-libre-4.19-pristine-source): Update hash.
2020-02-11 17:12:34 -05:00
Efraim Flashner
3886150cd8
gnu: rust-xcb-0.9: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-xbc-0.9)[arguments]: Don't skip
build. Skip test phase. Use cargo-build-flags to build debug features.
[inputs]: Add libx11, libxcb, xcb-proto.
[native-inputs]: Add pkg-config, python.
2020-02-11 22:28:12 +02:00
Valentin Ignatev
24783bd622
gnu: Add rust-xcb-0.9.
...
* gnu/packages/crates-io.scm (rust-xcb-0.9): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 22:28:12 +02:00
Valentin Ignatev
d506aabcb8
gnu: Add rust-x11-2.
...
* gnu/packages/crates-io.scm (rust-x11-2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 22:28:11 +02:00
Valentin Ignatev
e30c38c227
gnu: Add rust-futures-channel-0.3.
...
* gnu/packages/crates-io.scm (rust-futures-channel-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:54:16 +02:00
Valentin Ignatev
ff0c3862d0
gnu: Add rust-futures-core-0.3.
...
* gnu/packages/crates-io.scm (rust-futures-core-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:52:44 +02:00
Efraim Flashner
ded7d58646
gnu: rust-unicode-xid-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-unicode-xid-0.2)[properties]: Remove
field.
(rust-unicode-xid-0.1, rust-unicode-xid-0.0): Same.
2020-02-11 21:51:16 +02:00
Valentin Ignatev
200dd52bf7
gnu: Add rust-unicode-xid-0.0.
...
* gnu/packages/crates-io.scm (rust-unicode-xid-0.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:50:15 +02:00
Valentin Ignatev
dcd721d08d
gnu: Add rust-takeable-option-0.4.
...
* gnu/packages/crates-io.scm (rust-takeable-option-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:47:56 +02:00
Valentin Ignatev
0e074cc22d
gnu: Add rust-spin-0.4.
...
* gnu/packages/crates-io.scm (rust-spin-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:45:14 +02:00
Valentin Ignatev
fcbb77490c
gnu: Add rust-subtle-1.0.
...
* gnu/packages/crates-io.scm (rust-subtle-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:43:35 +02:00
Valentin Ignatev
a3e4d7f4a8
gnu: Add rust-strsim-0.5.
...
* gnu/packages/crates-io.scm (rust-strsim-0.5): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:41:25 +02:00
Valentin Ignatev
21aefa9a58
gnu: Add rust-strsim-0.6.
...
* gnu/packages/crates-io.scm (rust-strsim-0.6): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:40:42 +02:00
Valentin Ignatev
0ab109a2b5
gnu: Add rust-futures-task-0.3.
...
* gnu/packages/crates-io.scm (rust-futures-task-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:38:09 +02:00
Valentin Ignatev
e6cb6c35f0
gnu: Add rust-futures-sink-0.3.
...
* gnu/packages/crates-io.scm (rust-futures-sink-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:36:37 +02:00
Valentin Ignatev
953297c271
gnu: Add rust-futures-io-0.3.
...
* gnu/packages/crates-io.scm (rust-futures-io-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:35:21 +02:00
Efraim Flashner
8940cfa211
gnu: rust-quickcheck-0.8: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-quichcheck-0.8)[arguments]: Don't
skip build. Replace rust-rand-0.4 with 0.6, rust-rand-core-0.5 with 0.4
in cargo-inputs.
2020-02-11 21:31:22 +02:00
Valentin Ignatev
e351bfa882
gnu: Add rust-rustc-tools-util-0.2.
...
* gnu/packages/crates-io.scm (rust-rustc-tools-util-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:26:05 +02:00
Valentin Ignatev
5ead32ddf1
gnu: Add rust-proc-macro-hack-impl-0.4.
...
* gnu/packages/crates-io.scm (rust-proc-macro-hack-impl-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:25:59 +02:00
Valentin Ignatev
b5965c8969
gnu: Add rust-podio-0.1.
...
* gnu/packages/crates-io.scm (rust-podio-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 21:23:29 +02:00
Jakub Kądziołka
d883e791b7
gnu: ripgrep: Enable the 'pcre2' feature.
...
* gnu/packages/rust-apps.scm (ripgrep)[arguments]: Add
'#:cargo-build-flags' to specify the feature. Replace 'install phase.
[native-inputs]: Add pcre2, pkg-config.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 20:23:19 +02:00
Jakub Kądziołka
6e18b41eb7
gnu: ripgrep: Install the manpage.
...
* gnu/packages/rust-apps.scm (ripgrep)[native-inputs]: Add asciidoc.
[arguments]: Add 'install-manpage phase. Import (ice-9 match).
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 20:23:19 +02:00
Efraim Flashner
113afb4990
gnu: rust-strsim-0.9: Upgrade to 0.9.3.
...
* gnu/packages/crates-io.scm (rust-strsim-0.9): Update to 0.9.3.
[properties]: Remove field.
(rust-strsim-0.8)[properties]: Same.
2020-02-11 20:23:19 +02:00
Efraim Flashner
41f7daa7e2
gnu: rust-streaming-stats-0.2: Update to 0.2.3.
...
* gnu/packages/crates-io.scm (rust-streaming-stats-0.2): Update to 0.2.3.
[arguments]: Add rust-num-traits-0.2 to cargo-inputs.
[properties]: Remove field.
2020-02-11 20:23:19 +02:00
Efraim Flashner
7f9e0380eb
gnu: rust-stdweb-internal-test-macro-0.1: Update to 0.1.1.
...
* gnu/packages/crates-io.scm (rust-stdweb-internal-test-macro): Update
to 0.1.1.
[arguments]: Add rust-proc-macro2-1.0, rust-quote-1.0 to cargo-inputs.
[properties]: Remove field.
2020-02-11 20:23:19 +02:00
Efraim Flashner
59e84ce34b
gnu: rust-stdweb-internal-runtime-0.1: Update to 0.1.5.
...
* gnu/packages/crates-io.scm (rust-stdweb-internal-runtime-0.1): Update
to 0.1.5.
[properties]: Remove field.
2020-02-11 20:23:18 +02:00
Efraim Flashner
480f265e09
gnu: rust-static-assertions-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-static-assertions-0.3)[properties]:
Remove field.
2020-02-11 20:23:18 +02:00
Efraim Flashner
f33cb1af08
gnu: rust-stacker-0.1: Update to 0.1.6.
...
* gnu/packages/crates-io.scm (rust-stacker-0.1): Update to 0.1.6.
[arguments]: Add rust-cfg-if-0.1, rust-libc-0.2, rust-psm-0.1,
rust-winapi-0.3 to cargo-inputs. Add rust-cc-1.0 to
cargo-development-inputs.
[properties]: Remove field.
2020-02-11 20:23:18 +02:00
Efraim Flashner
ff1baf1c86
gnu: Add rust-psm-0.1.
...
* gnu/packages/crates-io.scm (rust-psm-0.1): New variable.
2020-02-11 20:23:18 +02:00
Efraim Flashner
5c34a8e464
gnu: rust-stable-deref-trait-1.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-stable-deref-trait-1.1)[properties]:
Remove field.
2020-02-11 20:23:18 +02:00
Efraim Flashner
26e69756fe
gnu: rust-spin-0.5: Update to 0.5.2.
...
* gnu/packages/crates-io.scm (rust-spin-0.5): Update to 0.5.2.
[properties]: Remove field.
2020-02-11 20:23:17 +02:00
Efraim Flashner
240de43186
gnu: rust-sourcefile-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-sourcefile-0.1)[arguments]: Add
rust-tempfile-3.1 to cargo-development-inputs.
[properties]: Remove field.
2020-02-11 20:23:17 +02:00
Efraim Flashner
ec88cbbf52
gnu: rust-socket2-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-socket2-0.3)[arguments]: Skip tests.
Add rust-cfg-if-0.1, rust-libc-0.2, rust-redox-syscall-0.1,
rust-winapi-0.3 to cargo-inputs. Add rust-tempdir-0.3 to
cargo-development-inputs.
[properties]: Remove field.
2020-02-11 20:23:17 +02:00
Efraim Flashner
1ceb84e57f
gnu: rust-slab-0.4: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-slab-0.4)[properties]: Remove field.
2020-02-11 20:23:17 +02:00
Efraim Flashner
675f65ee7b
gnu: rust-shlex-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-shlex-0.1)[properties]: Remove field.
2020-02-11 20:23:17 +02:00
Efraim Flashner
a3b61d2192
gnu: rust-semver-parser-0.9: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-semver-parser-0.9)[properties]:
Remove field.
(rust-semver-parser-0.7)[properties]: Same.
2020-02-11 20:23:16 +02:00
Efraim Flashner
cd422b4f6a
gnu: rust-ryu-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-ryu-1.0)[arguments]: Add
rust-no-panic-0.1 to cargo-inputs. Add rust-num-cpus-1.11, rust-rand-0.5
to cargo-development-inputs.
[description]: Fill out.
[properties]: Remove field.
2020-02-11 20:23:16 +02:00
Efraim Flashner
71b0ce6492
gnu: rust-rand-xorshift-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-rand-xorshift-0.1)[arguments]: Add
rust-rand-core-0.3, rust-serde-1.0, rust-serde-derive-1.0 to
cargo-inputs. Add rust-bincode-1.1 to cargo-development-inputs.
[properties]: Remove field.
2020-02-11 20:23:16 +02:00
Efraim Flashner
82d3b69e92
gnu: rust-rand-jitter-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-rand-jitter-0.1)[arguments]: Add
rust-libc-0.2, rust-rand-core-0.4, rust-winapi-0.3, rust-log-0.4 to
cargo-inputs.
[description]: Fill out.
[properties]: Remove field.
2020-02-11 20:23:16 +02:00
Efraim Flashner
3f15d290dd
gnu: rust-rand-isaac-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-rand-isaac-0.1)[arguments]: Add
rust-rand-core-0.3, rust-serde-1.0, rust-serde-derive-1.0 to
cargo-inputs. Add rust-bincode-1.1 to cargo-development-inputs.
[description]: Fill out.
[properties]: Remove field.
2020-02-11 20:23:16 +02:00
Efraim Flashner
62c240ef08
gnu: rust-quote-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-quote-1.0)[arguments]: Add
rust-proc-macro2-1.0 to cargo-inputs. Add rust-rustversion-0.1,
rust-trybuild-1.0 to cargo-development-inputs.
[properties]: Remove field.
2020-02-11 20:23:15 +02:00
Efraim Flashner
f273a4ff53
gnu: Add rust-rustversion-0.1.
...
* gnu/packages/crates-io.scm (rust-rustversion-0.1): New variable.
2020-02-11 20:23:15 +02:00
Efraim Flashner
2707841ff3
gnu: rust-ppv-lite86-0.2: Upgrade to 0.2.6.
...
* gnu/packages/crates-io.scm (rust-ppv-lite86-0.2): Update to 0.2.6.
[properties]: Remove field.
2020-02-11 20:23:15 +02:00
Efraim Flashner
b49c6541da
gnu: rust-pocket-resources-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-pocket-resources-0.3)[properties]:
Remove field.
2020-02-11 20:23:15 +02:00
Efraim Flashner
375bff1940
gnu: rust-plugin-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-plugin-0.2)[arguments]: Add
rust-typemap-0.3 to cargo-inputs. Add rust-void-1.0 to
cargo-development-inputs.
[properties]: Remove field.
2020-02-11 20:23:15 +02:00
Efraim Flashner
ff5a070244
gnu: rust-typemap-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-typemap-0.3)[arguments]: Add
rust-unsafe-any-0.4 to cargo-inputs.
[properties]: Remove field.
2020-02-11 20:23:14 +02:00
Efraim Flashner
a07110ee48
gnu: rust-unsafe-any-0.4: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-unsafe-any-0.4)[arguments]: Add
rust-traitobject-0.1 to cargo-inputs.
[properties]: Remove field.
2020-02-11 20:23:14 +02:00
Efraim Flashner
233e27c1ff
gnu: rust-traitobject-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-traitobject-0.1)[properties]: Remove
field.
2020-02-11 20:23:14 +02:00
Efraim Flashner
c19e1b1fc8
gnu: rust-plain-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-plain-0.2)[properties]: Remove field.
2020-02-11 20:23:14 +02:00
Efraim Flashner
e7db83efe9
gnu: rust-pkg-config-0.3: Update to 0.3.17.
...
* gnu/packages/crates-io.scm (rust-pkg-config-0.3): Update to 0.3.17.
[arguments]: Add rust-lazy-static-1 to cargo-development-inputs.
[native-inputs]: Add pkg-config.
[properties]: Remove field.
2020-02-11 20:23:14 +02:00
Efraim Flashner
7584246471
gnu: rust-pin-utils-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-pin-utils-0.1)[properties]: Remove field.
2020-02-11 20:23:13 +02:00
Efraim Flashner
0cbe153bf4
gnu: rust-percent-encoding-2.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-percent-encoding-2.1)[properties]:
Remove field.
(rust-percent-encoding-1.0)[properties]: Same.
2020-02-11 20:23:13 +02:00
Efraim Flashner
ea077a8f10
gnu: rust-peeking-take-while-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-peeking-take-while-0.1)[properties]:
Remove field.
2020-02-11 20:23:13 +02:00
Efraim Flashner
8ab47363c9
gnu: rust-parity-wasm-0.40: Update to 0.40.3.
...
* gnu/packages/crates-io.scm (rust-parity-wasm-0.40): Update to 0.40.3.
[arguments]: Skip tests. Add rust-time-0.1 to cargo-development-inputs.
[properties]: Remove field.
2020-02-11 20:23:13 +02:00
Efraim Flashner
d24cfb24c5
gnu: rust-openssl-probe-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-openssl-probe-0.1)[properties]:
Remove field.
2020-02-11 20:23:13 +02:00
Efraim Flashner
449f25a258
gnu: rust-numtoa-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-numtoa-0.1)[arguments]: Skip tests.
[properties]: Remove field.
2020-02-11 20:23:12 +02:00
Efraim Flashner
a177e6d0b5
gnu: rust-num-iter-0.1: Upgrade to 0.1.40.
...
* gnu/packages/crates-io.scm (rust-num-iter-0.1): Update to 0.1.40.
[arguments]: Add rust-num-integer-0.1, rust-num-traits-0.2,
rust-autocfg-1.0 to cargo-inputs.
[properties]: Remove field.
2020-02-11 20:23:12 +02:00
Efraim Flashner
464a85f3bd
gnu: rust-futures-cpupool-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-futures-cpupool-0.1)[arguments]: Add
rust-futures-0.1, rust-num-cpus-1.11 to cargo-inputs.
[properties]: Remove field.
2020-02-11 20:23:12 +02:00
Efraim Flashner
47fdc51adb
gnu: rust-clang-sys-0.28: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-clang-sys-0.28)[arguments]: Add
rust-glob-0.3, rust-libc-0.2, rust-libloading-0.5 to cargo-inputs. Add
custom phase to find libclang.
[native-inputs]: Add clang.
[properties]: Remove field.
2020-02-11 20:23:12 +02:00
Efraim Flashner
15630854fa
gnu: rust-clang-0.26: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-clang-0.26)[arguments]: Add
rust-glob-0.2, rust-libc-0.2, rust-libloading-0.5 to cargo-inputs. Add
custom phase to find libclang.
[native-inputs]: Add clang.
[properties]: Don't inherit.
2020-02-11 20:23:12 +02:00
Efraim Flashner
a7b3ed2804
gnu: rust-libloading-0.5: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-libloading-0.5)[arguments]: Don't
skip build. Move rust-cc-1.0 from cargo-development-inputs to
cargo-inputs.
2020-02-11 20:23:08 +02:00
Brice Waegeneire
81565d23df
gnu: dunst: Build dunstify.
...
* gnu/packages/dunst.scm (dunst)[arguments]: Add phase install-dunstify.
[inputs]: Add libnotify.
2020-02-11 19:17:06 +01:00
Alexander Krotov
56973172c9
gnu: Add mscgen.
...
* gnu/packages/graph.scm (mscgen): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-11 12:19:27 -05:00
Ludovic Courtès
ab42204fbc
gnu: gdb: Update to 9.1.
...
* gnu/packages/gdb.scm (gdb/next): Update to 9.1.
2020-02-11 17:42:10 +01:00
Ludovic Courtès
a65ffbea50
ui: Fix typo in comment.
...
Reported by Vincent Legoll <vincent.legoll@gmail.com >.
* guix/ui.scm (call-with-error-handling): Remove "come" in comment.
2020-02-11 17:42:10 +01:00
Mathieu Othacehe
4835f86292
gnu: Add emacs-auto-dictionary-mode.
...
* gnu/packages/emacs-xyz.scm (emacs-auto-dictionary-mode): New variable.
2020-02-11 16:46:56 +01:00
Eric Bavier
89d3869b94
gnu: ghostwriter: Update to 1.8.0.
...
* gnu/packages/text-editors.scm (ghostwriter): Update to 1.8.0.
[inputs]: Add qtdeclarative, qtquickcontrols, and qtwebchannel.
[propagated-inputs]: New field.
2020-02-11 08:53:23 -06:00
Jakub Kądziołka
d0f31aeeb7
gnu: vim: Update to 8.2.0236.
...
* gnu/packages/vim.scm (vim): Update to 8.2.0236.
(vim-full)[arguments]: Add a -lexpat linker argument through
#:make-flags. Add a new phase to skip a test (see comment).
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-11 16:14:44 +02:00
Konrad Hinsen
463fb58fa1
gnu: cl-trivia: Update to 0.0.0-1.574901a.
...
* gnu/packages/lisp-xyz.scm (sbcl-trivia, cl-trivia): Update to commit 574901ac.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-11 14:25:43 +01:00
Konrad Hinsen
e4f7ef8721
gnu: Add cl-type-r.
...
* gnu/packages/lisp-xyz.scm (sbcl-type-r, cl-type-r): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-11 14:09:33 +01:00
Konrad Hinsen
06327c3035
gnu: Add cl-function-cache.
...
* gnu/packages/lisp-xyz.scm (sbcl-function-cache,
cl-function-cache, ecl-function-cache): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-11 14:02:49 +01:00
Ludovic Courtès
d5a9641413
git-authenticate: Add mab to the list of committers.
...
* build-aux/git-authenticate.scm (%committers): Add mab.
2020-02-11 12:33:35 +01:00
Ludovic Courtès
1d88470e10
describe: Remove dependency on (guix scripts pull).
...
Until now, 'guix describe' would perform ~3K stat calls and ~1K openat
calls because it was pulling (guix scripts pull), which in turn pulls in
many (gnu packages …) modules.
* guix/scripts/pull.scm (display-profile-content, %vcs-web-views)
(channel-commit-hyperlink): Move to...
* guix/scripts/describe.scm: ... here. Remove import of (guix scripts
pull).
2020-02-11 12:33:35 +01:00
Ludovic Courtès
1deca767be
syscalls: Re-enable 'pivot-root' test.
...
Fixes <https://bugs.gnu.org/25476 >.
Reported by Paul Garlick <pgarlick@tourbillion-technology.com >.
* tests/syscalls.scm ("pivot-root"): Skip only when
PERFORM-CONTAINER-TESTS? is true. Rewrite to use a socket pair instead
of a pipe. Synchronize parent and child so that the parent can
initialize the child's UID and GID mappings before continuing.
2020-02-11 12:33:35 +01:00
Ludovic Courtès
3d2f29382d
swh: Remove 'id' field from <origin>.
...
The "id" field has been removed upstream:
https://sympa.inria.fr/sympa/arc/swh-devel/2020-02/msg00005.html
* guix/swh.scm (<origin>)[id]: Remove.
2020-02-11 12:33:35 +01:00
Christopher Baines
59796dfd63
gnu: subversion: Support running the tests in parallel.
...
This drops the time to build the package on my machine from ~14 minutes to ~5
minutes.
* gnu/packages/version-control.scm (subversion)[arguments]: Add set-PARALLEL
phase to set the PARALLEL environment variable.
2020-02-11 08:40:32 +00:00
Konrad Hinsen
41884bfa5b
gnu: Add cl-float-features.
...
* gnu/packages/lisp-xyz.scm (sbcl-float-features,
cl-float-features, ecl-float-features): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-11 09:25:59 +01:00
Guillaume Le Vaillant
281537f47b
gnu: Add ecl-documentation-utils.
...
* gnu/packages/lisp-xyz.scm (ecl-documentation-utils): New variable.
2020-02-11 09:25:59 +01:00
Konrad Hinsen
c6e6254a05
gnu: Add cl-randist.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-randist, cl-randist, ecl-cl-randist): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-11 09:25:59 +01:00
Tobias Geerinckx-Rice
2dbfd8eec4
gnu: opensmtpd: Update to 6.6.3p1 [security mitigations].
...
* gnu/packages/mail.scm (opensmtpd): Update to 6.6.3p1.
2020-02-11 07:10:32 +01:00
Tobias Geerinckx-Rice
4bcc39081a
gnu: isc-bind: Update to 4.4.2.
...
* gnu/packages/admin.scm (isc-bind): Update to 4.4.2.
[arguments]: Remove patch application.
[native-inputs]: Remove patch and patch file.
* gnu/packages/patches/isc-dhcp-4.4.1-fixes-for-newer-bind.patch:
Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2020-02-11 07:10:32 +01:00
Tobias Geerinckx-Rice
762b2af6c6
gnu: acpica: Update to 20200110.
...
* gnu/packages/admin.scm (acpica): Update to 20200110.
2020-02-11 07:10:32 +01:00
Tobias Geerinckx-Rice
7be261546a
gnu: r-abn: Fix home page.
...
* gnu/packages/cran.scm (r-abn)[home-page]: Update and use HTTPS.
2020-02-11 07:10:32 +01:00
Tobias Geerinckx-Rice
6a8715ce68
gnu: r-rglpk: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-rglpk)[home-page]: Use HTTPS.
2020-02-11 07:10:31 +01:00
Tobias Geerinckx-Rice
40a0734ca8
gnu: r-smoother: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-smoother)[home-page]: Use HTTPS.
2020-02-11 07:10:31 +01:00
Tobias Geerinckx-Rice
7219193ad9
gnu: r-formatr: Use HTTPS home page.
...
* gnu/packages/statistics.scm (r-formatr)[home-page]: Use HTTPS.
2020-02-11 07:10:31 +01:00
Tobias Geerinckx-Rice
f762d327c3
gnu: r-jsonlite: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-jsonlite)[home-page]: Use HTTPS.
2020-02-11 07:10:31 +01:00
Tobias Geerinckx-Rice
c756328e66
gnu: r-lpsymphony: Use HTTPS home page.
...
* gnu/packages/bioconductor.scm (r-lpsymphony)[home-page]: Use HTTPS.
2020-02-11 07:10:31 +01:00
Tobias Geerinckx-Rice
5e1f2362c1
gnu: r-codedepends: Use HTTPS home page.
...
* gnu/packages/bioconductor.scm (r-codedepends)[home-page]: Use HTTPS.
2020-02-11 07:10:31 +01:00
Tobias Geerinckx-Rice
f6b4425aab
gnu: r-glmnet: Update home page and use HTTPS.
...
* gnu/packages/statistics.scm (r-glmnet)[home-page]: Follow redirection using
HTTPS.
2020-02-11 07:10:30 +01:00
Tobias Geerinckx-Rice
5b9cebb2f1
gnu: r-glasso: Update home page and use HTTPS.
...
* gnu/packages/cran.scm (r-glasso)[home-page]: Follow redirection using
HTTPS.
2020-02-11 07:10:30 +01:00
Tobias Geerinckx-Rice
b3cac53393
gnu: r-cairo: Use HTTPS home page.
...
* gnu/packages/statistics.scm (r-cairo)[home-page]: Use HTTPS.
2020-02-11 07:10:30 +01:00
Tobias Geerinckx-Rice
08eefe29e6
gnu: r-png: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-png)[home-page]: Use HTTPS.
2020-02-11 07:10:30 +01:00
Tobias Geerinckx-Rice
798ca8d08e
gnu: r-multiassayexperiment: Use HTTPS home page.
...
* gnu/packages/bioconductor.scm (r-multiassayexperiment)[home-page]: Use HTTPS.
2020-02-11 07:10:29 +01:00
Tobias Geerinckx-Rice
c8fa172e44
gnu: r-squarem: Update home page and use HTTPS.
...
* gnu/packages/cran.scm (r-squarem)[home-page]: Follow redirection using
HTTPS.
2020-02-11 07:10:29 +01:00
Tobias Geerinckx-Rice
b74429788e
gnu: r-seriation: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-seriation)[home-page]: Use HTTPS.
2020-02-11 07:10:28 +01:00
Eric Bavier
8f33b76e0a
gnu: pioneer: Update to 20200203.
...
* gnu/packages/games.scm (pioneer): Update to 20200203.
2020-02-11 00:09:35 -06:00
Eric Bavier
a89ea0b34d
gnu: clamav: Update to 0.102.2.
...
* gnu/packages/antivirus.scm (clamav): Update to 0.102.2.
[native-inputs]: Use latest check package.
2020-02-10 23:36:28 -06:00
Eric Bavier
0e77a62dc2
gnu: check: Use check@0.12.
...
Tests fail to compile with check@0.13 .
* gnu/packages/check.scm (clamav)[native-inputs]: 'check' -> 'check-0.12'.
2020-02-10 23:08:54 -06:00
Nicolas Goaziou
35cb2ac56c
gnu: Add queen.
...
* gnu/packages/games.scm (make-queen-package): New variable.
(queen, queen-de, queen-fr, queen-it): New variables.
2020-02-11 00:11:09 +01:00
Marius Bakke
57bd483f67
gnu: lvm2: Update to 2.03.07.
...
* gnu/packages/linux.scm (lvm2): Update to 2.03.07.
[source](snippet): Adjust confdir regex.
[inputs]: Add LIBAIO.
[arguments]: Add phase 'patch-configure.
(lvm2-static)[arguments]: Don't build dmeventd. Add phase 'adjust-Makefile'.
2020-02-11 00:05:16 +01:00
Marius Bakke
c0d1f923ca
gnu: elogind: Update to 243.4.
...
* gnu/packages/freedesktop.scm (elogind): Update to 243.4.
[arguments]: Add "-Dman=true" and "-Dnologin-path" to #:configure-flags. Add
phase to fix D-Bus socket location.
[inputs]: Add SHADOW.
2020-02-11 00:05:16 +01:00
Marius Bakke
1c78a291a0
gnu: shadow: Update to 4.8.1.
...
* gnu/packages/admin.scm (shadow): Update to 4.8.1.
2020-02-11 00:05:16 +01:00
Marius Bakke
c44ba52534
gnu: libextractor: Build with the latest ffmpeg.
...
* gnu/packages/gnunet.scm (libextractor)[inputs]: Change from FFMPEG-3.4 to
FFMPEG.
2020-02-11 00:05:16 +01:00
Martin Becze
50e96d25b7
gnu: geoclue: Update to 2.5.5
...
* gnu/packages/gnome.scm (geoclue): Update to 2.5.5
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-10 23:31:59 +01:00
Ludovic Courtès
01dce79fa4
gnu: Add python-pyopencl.
...
* gnu/packages/opencl.scm (python-pyopencl): New variable.
2020-02-10 23:31:59 +01:00
Ludovic Courtès
3f1a0f1684
gnu: Add python-pytools.
...
* gnu/packages/opencl.scm (python-pytools): New variable.
2020-02-10 23:31:58 +01:00
Ludovic Courtès
3cf579e9c2
gnu: pybind11: Install .py files.
...
* gnu/packages/python-xyz.scm (pybind11)[native-inputs]: Change PYTHON
to PYTHON-WRAPPER.
[arguments]: Add 'install-python' phase.
2020-02-10 23:31:58 +01:00
Ludovic Courtès
ab17297a4d
gnu: pybind11: Tweak description.
...
* gnu/packages/python-xyz.scm (pybind11)[description]: Tweak.
2020-02-10 23:31:58 +01:00
Ludovic Courtès
ae8db9ce32
gnu: pybind11: Add dependency on Catch and Eigen.
...
* gnu/packages/python-xyz.scm (pybind11)[inputs]: Add CATCH-FRAMEWORK2-1
and EIGEN.
[arguments]: Add #:configure-flags.
2020-02-10 23:31:58 +01:00
Ludovic Courtès
0690f3244e
gnu: pybind11: Update to 2.4.3.
...
* gnu/packages/python-xyz.scm (pybind11): Update to 2.4.3.
2020-02-10 23:31:58 +01:00
Ludovic Courtès
65eada58a0
gnu: pybind11: Change 'license' field to BSD-3.
...
* gnu/packages/python-xyz.scm (pybind11)[license]: Change to BSD-3.
2020-02-10 23:31:58 +01:00
Ludovic Courtès
a063bac618
git: Add missing exports for <git-checkout>.
...
* guix/git.scm (<git-checkout>): Export 'git-checkout-commit' and
'git-checkout-recursive?'.
2020-02-10 23:31:58 +01:00
Kei Kebreau
8a0dd289c5
gnu: octave, octave-cli: Update to 5.2.0.
...
* gnu/packages/maths.scm (octave, octave-cli): Update to 5.2.0.
[inputs]: Add bdb.
2020-02-10 14:43:06 -05:00
Marius Bakke
e7ce4ef997
gnu: unbound: Remove redundant input.
...
* gnu/packages/dns.scm (unbound)[inputs]: Remove PYTHON-3.
2020-02-10 20:18:05 +01:00
Marius Bakke
5158326539
gnu: node: Disable flaky test.
...
* gnu/packages/node.scm (node)[arguments]: Delete test that fails sporadically.
2020-02-10 20:18:05 +01:00
Marius Bakke
307feca4e6
gnu: python-protobuf: Update to 3.11.3.
...
* gnu/packages/protobuf.scm (python-protobuf): Update to 3.11.3.
2020-02-10 20:18:05 +01:00
Marius Bakke
1d5261dacc
gnu: protobuf: Update to 3.11.3.
...
* gnu/packages/protobuf.scm (protobuf): Update to 3.11.3.
2020-02-10 20:18:04 +01:00
Marius Bakke
34e4fb4f11
gnu: ceph: Update to 14.2.7.
...
* gnu/packages/storage.scm (ceph): Update to 14.2.7.
2020-02-10 20:18:04 +01:00
Marius Bakke
710a729605
gnu: rocksdb: Update to 6.6.4.
...
* gnu/packages/databases.scm (rocksdb): Update to 6.6.4.
2020-02-10 20:18:04 +01:00
Marius Bakke
d8bdda1e9a
gnu: http-parser: Update to 2.9.3.
...
* gnu/packages/web.scm (http-parser): Update to 2.9.3.
2020-02-10 20:18:04 +01:00
Marius Bakke
922fc9cb75
gnu: strace: Update to 5.5.
...
* gnu/packages/linux.scm (strace): Update to 5.5.
2020-02-10 20:18:04 +01:00
Marius Bakke
2296e63019
gnu: signify: Update to 28.
...
* gnu/packages/crypto.scm (signify): Update to 28.
[arguments]: Remove #:tests?.
2020-02-10 20:18:03 +01:00
Marius Bakke
03f40ce6d3
gnu: sway: Remove unused input.
...
* gnu/packages/wm.scm (sway)[native-inputs]: Remove GIT.
2020-02-10 20:18:03 +01:00
Marius Bakke
bc552a0c9c
gnu: swaylock: Remove unused input.
...
* gnu/packages/wm.scm (swaylock)[native-inputs]: Remove GIT.
2020-02-10 20:18:03 +01:00
Marius Bakke
3e295e8d5e
gnu: swaybg: Remove unused input.
...
* gnu/packages/wm.scm (swaybg)[native-inputs]: Remove GIT.
2020-02-10 20:18:03 +01:00
Marius Bakke
4cac557911
gnu: chromium.scm: Remove use of CADR.
...
...as per the style guidelines.
* gnu/packages/chromium.scm (%debian-origin)[file-name]: Use MATCH instead of
IF and CADR to compute the name.
2020-02-10 20:18:03 +01:00
Marius Bakke
2cbccf7f65
Merge branch 'staging'
2020-02-10 20:11:26 +01:00
Carl Dong
4730878b81
* gnu/packages/finance.scm (bitcoin-core): Update to 0.19.0.1.
...
Co-authored-by: fanquake <fanquake@gmail.com >
2020-02-10 13:11:59 -05:00
Danny Milosavljevic
eef2027928
gnu: docker: Remove failing tests.
...
* gnu/packages/docker.scm (docker)[arguments]<#:phases>[delete-failing-tests]:
Modify.
2020-02-10 18:59:49 +01:00
Danny Milosavljevic
5b050bc259
gnu: docker: Remove failing test.
...
* gnu/packages/docker.scm (docker)[arguments]<#:phases>[delete-failing-tests]:
Modify.
2020-02-10 17:25:35 +01:00
Danny Milosavljevic
2d1232e071
gnu: go-gotest-tools-package: Add comment.
...
* gnu/packages/golang.scm (go-gotest-tools-package): Add comment.
2020-02-10 17:02:37 +01:00
Danny Milosavljevic
8c7eb58453
gnu: docker: Update to 19.03.5.
...
* gnu/packages/docker.scm (docker-cli): Update to 19.03.5.
(docker)[source]: Remove patches.
[arguments]<#:phases>[patch-paths]: Modify.
[native-inputs]: Add gotestsum.
* gnu/packages/patches/docker-adjust-tests-for-changes-in-go.patch: Delete
file.
* gnu/packages/patches/docker-engine-test-noinstall.patch: Delete file.
* gnu/packages/patches/docker-use-fewer-modprobes.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove them.
2020-02-10 17:00:24 +01:00
Danny Milosavljevic
d78178fa48
gnu: gotestsum: Fix test failure.
...
* gnu/packages/golang.scm (gotestsum)[native-inputs]: Add
go-github-com-google-go-cmp-cmp, go-gotest-tools-internal-format,
go-gotest-tools-internal-difflib, go-gotest-tools-internal-source.
2020-02-10 16:59:49 +01:00
Danny Milosavljevic
1e18d0733c
gnu: Add go-gotest-tools-internal-source.
...
* gnu/packages/golang.scm (go-gotest-tools-internal-source): New variable.
2020-02-10 16:59:49 +01:00
Danny Milosavljevic
67d84852d9
gnu: Add go-gotest-tools-internal-difflib.
...
* gnu/packages/golang.scm (go-gotest-tools-internal-difflib): New variable.
2020-02-10 16:59:49 +01:00
Danny Milosavljevic
d19e096ac8
gnu: Add go-gotest-tools-internal-format.
...
* gnu/packages/golang.scm (go-gotest-tools-internal-format): New variable.
2020-02-10 16:59:49 +01:00
Danny Milosavljevic
944f370b55
gnu: go-gotest-tools: Factor out go-gotest-tools-package.
...
* gnu/packages/golang.scm (go-gotest-tools-package): New procedure.
(go-gotest-tools-assert): Use it.
[arguments]<#:phases>[install-more]: Delete phase.
2020-02-10 16:59:49 +01:00
Danny Milosavljevic
90bce15998
gnu: go-gotest-tools: Factor out go-gotest-tools-source.
...
* gnu/packages/golang.scm (go-gotest-tools-source): New procedure.
(go-gotest-tools-assert)[source]: Use it.
2020-02-10 16:59:48 +01:00
Guillaume Le Vaillant
814091efe2
gnu: Add stockfish.
...
* gnu/packages/games.scm (stockfish): New variable.
2020-02-10 15:05:55 +01:00
Guillaume Le Vaillant
d8cae6cf82
gnu: Add chessx.
...
* gnu/packages/games.scm (chessx): New variable.
2020-02-10 15:05:55 +01:00
Guillaume Le Vaillant
2035134bff
gnu: txr: Update to 232.
...
* gnu/packages/lisp.scm (txr): Update to 232.
2020-02-10 15:05:55 +01:00
Danny Milosavljevic
639371c6d2
gnu: Add gotestsum.
...
* gnu/packages/golang.scm (gotestsum): New variable.
2020-02-10 14:58:48 +01:00
Danny Milosavljevic
9d64d1509c
gnu: Add go-gotest-tools-assert.
...
* gnu/packages/golang.scm (go-gotest-tools-assert): New variable.
2020-02-10 14:58:26 +01:00
Danny Milosavljevic
cb2555e28f
gnu: Add go-golang.org-x-sync-errgroup.
...
* gnu/packages/golang.scm (go-golang.org-x-sync-errgroup): New variable.
2020-02-10 14:57:50 +01:00
Nicolas Goaziou
eca528cca9
gnu: make-lure-package: Fix data and documentation location.
...
* gnu/packages/games.scm (make-lure-package)[arguments]: Make data and
documentation location dependent on localization.
[native-inputs]: Move bash...
[inputs]: here.
2020-02-10 14:03:15 +01:00
Nicolas Goaziou
e7db97db63
gnu: Add lure.
...
* gnu/packages/games.scm (make-lure-package): New variable.
(lure, lure-de, lure-es, lure-fr, lure-it): New variables.
2020-02-10 10:43:14 +01:00
Brice Waegeneire
df931ac39c
gnu: password-store: Install fish and zsh completions.
...
* gnu/packages/password-utils.scm (password-store)[arguments]: Remove
phase install-shell-completions. Adjust make-flags.
2020-02-10 01:07:36 +01:00
Nicolas Goaziou
24d9354c80
gnu: tunctl: Fix source URI.
...
* gnu/packages/networking.scm (tunctl)[source]: Fix URI.
2020-02-10 01:00:42 +01:00
Vincent Legoll
b51863d240
gnu: Add tunctl.
...
* gnu/packages/networking.scm (tunctl): New variable.
2020-02-10 00:56:30 +01:00
Brice Waegeneire
ddc5e74684
gnu: git-crypt: Install man page.
...
* gnu/packages/version-control.scm (git-crypt)[native-inputs]: Add
dockbook-xsl, libxslt.
[arguments]: Add phase patch-makefile.
2020-02-10 00:49:50 +01:00
Brice Waegeneire
57f90b2a24
gnu: git-crypt: Update to 0.6.0.
...
* gnu/packages/version-control.scm (git-crypt): Update to 0.6.0.
2020-02-10 00:49:45 +01:00
Brice Waegeneire
81bc911838
gnu: zsh: Enable maildir.
...
* gnu/packages/shells.scm (zsh)[arguments]: Add configure flag for
maildir.
2020-02-10 00:46:41 +01:00
Brice Waegeneire
718a6458df
gnu: zsh: Update to 5.7.1.
...
* gnu/packages/shells.scm (zsh): Update to 5.7.1.
2020-02-10 00:46:36 +01:00
Brice Waegeneire
cde4cb4dd2
gnu: autorandr: Update to 1.9.
...
* gnu/packages/xdisorg.scm (autorandr): Update to 1.9.
[native-inputs]: Remove man-db.
[arguments]: Install XDG autostart config.
2020-02-10 00:41:14 +01:00
Nicolas Goaziou
e2684594f6
gnu: polybar: Add comment about build specificity.
...
* gnu/packages/wm.scm (polybar): Add comment about order of native inputs.
2020-02-10 00:33:06 +01:00
Brice Waegeneire
47560aa29f
gnu: polybar: Install man page.
...
* gnu/packages/wm.scm (polybar)[native-inputs]: Add python-sphinx.
2020-02-10 00:31:51 +01:00
Nicolas Goaziou
5d94702efe
gnu: Add copyright line.
...
Add missing copyright line for commit
200514cd8f .
2020-02-10 00:17:52 +01:00
Damien Cassou
200514cd8f
gnu: Add font-jetbrains-mono.
...
* gnu/packages/fonts.scm (font-jetbrains-mono): New variable.
2020-02-10 00:13:56 +01:00
Vincent Legoll
1c8b70c875
gnu: Add perl-config-grammar.
...
* gnu/packages/perl.scm (perl-config-grammar): New variable.
2020-02-10 00:08:37 +01:00
Tobias Geerinckx-Rice
e813444287
Update e-mail address for Jakob L. Kreuze.
...
As requested here:
<https://lists.gnu.org/archive/html/guix-devel/2020-02/msg00128.html >.
* .mailmap: Add an entry for Jakob.
* gnu/machine.scm, gnu/machine/digital-ocean.scm, gnu/machine/ssh.scm,
gnu/packages/admin.scm, gnu/packages/i2p.scm, gnu/packages/music.scm,
gnu/packages/web.scm, gnu/tests/reconfigure.scm, guix/scripts/deploy.scm,
guix/scripts/system/reconfigure.scm: Update their e-mail address.
2020-02-09 23:16:45 +01:00
Ekaitz Zarraga
7f6cb6bbac
gnu: chicken: Update to 5.1.0.
...
* gnu/packages/chicken.scm (chicken): Update to 5.1.0.
[propagated-inputs]: Add gcc-toolchain.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2020-02-09 21:00:37 +01:00
Ekaitz Zarraga
2846aec2f7
gnu: chicken: Move to a separate module.
...
* gnu/packages/scheme.scm (chicken): Move to chicken.scm.
* gnu/packages/chicken.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2020-02-09 21:00:11 +01:00
Vincent Legoll
13c6f9c988
gnu: musl: Update home page.
...
* gnu/packages/musl.scm (musl)[home-page]: Update.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-02-09 20:31:18 +01:00
Tobias Geerinckx-Rice
27b09f3ab1
gnu: ghc-text-conversions: Fix typo.
...
This follows up on commit 5cd9a4103e .
* gnu/packages/haskell-xyz.scm (ghc-text-conversions)[native-inputs]:
Use hspec-discover instead of ghc-hspec-discover.
2020-02-09 18:36:50 +01:00
Nicolas Goaziou
ebbd30ff39
gnu: Add xournalpp.
...
* gnu/packages/pdf.scm (xournalpp): New variable.
2020-02-09 17:29:46 +01:00
Nicolas Goaziou
5cd9a4103e
Revert "gnu: Add ghc-hspec-discover."
...
This reverts commit a60448edcc .
The package already exists, as "hspec-discover".
2020-02-09 17:28:51 +01:00
Nicolas Goaziou
0d79e82acc
gnu: djview: Fix home-page.
...
* gnu/packages/djvu.scm (djview)[home-page]: Point specifically to the project
home-page.
2020-02-09 17:22:26 +01:00
Guillaume Le Vaillant
371ca8ca86
gnu: Add eboard.
...
* gnu/packages/games.scm (eboard): New variable.
2020-02-09 15:35:12 +01:00
Efraim Flashner
6ffe72bbd2
gnu: rust-stdweb-0.4: Fix inputs.
...
* gnu/packages/crates-io.scm (rust-stdweb-0.4)[arguments]: Move
rust-rustc-version-0.2 from cargo-development-inputs to cargo-inputs.
2020-02-09 16:08:55 +02:00
Efraim Flashner
c4fed726e9
gnu: rust-rand-0.6: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-rand-0.6)[arguments]: Don't skip
build. Add rust-average-0.9 to cargo-development-inputs.
2020-02-09 16:08:55 +02:00
Efraim Flashner
11aec1687b
gnu: Add rust-average-0.9.
...
* gnu/packages/crates-io.scm (rust-average-0.9): New variable.
2020-02-09 16:08:55 +02:00
Efraim Flashner
40f41b56e1
gnu: Add rust-conv-0.3.
...
* gnu/packages/crates-io.scm (rust-conv-0.3): New variable.
2020-02-09 16:08:55 +02:00
Efraim Flashner
03455f9c0e
gnu: Add rust-custom-derive-0.1.
...
* gnu/packages/crates-io.scm (rust-custom-derive-0.1): New variable.
2020-02-09 16:08:55 +02:00
Efraim Flashner
e0d529bacc
gnu: Add rust-float-ord-0.2.
...
* gnu/packages/crates-io.scm (rust-float-ord-0.2): New variable.
2020-02-09 16:08:54 +02:00
Efraim Flashner
3230371e06
gnu: Add rust-serde-big-array-0.1.
...
* gnu/packages/crates-io.scm (rust-serde-big-array-0.1): New variable.
2020-02-09 16:08:54 +02:00
Efraim Flashner
c83dcf24ba
gnu: Add rust-quantiles-0.7.
...
* gnu/packages/crates-io.scm (rust-quantiles-0.7): New variable.
2020-02-09 16:08:54 +02:00
Efraim Flashner
7cbbea1456
gnu: Add rust-regex-syntax-0.3.
...
* gnu/packages/crates-io.scm (rust-regex-syntax-0.3): New variable.
2020-02-09 16:08:54 +02:00
Efraim Flashner
20104fdda6
gnu: Add rust-env-logger-0.3.
...
* gnu/packages/crates-io.scm (rust-env-logger-0.3): New variable.
2020-02-09 16:08:54 +02:00
Efraim Flashner
3fece9a75b
gnu: Add rust-quickcheck-0.2.
...
* gnu/packages/crates-io.scm (rust-quickcheck-0.2): New variable.
2020-02-09 16:08:53 +02:00
Nicolas Goaziou
f8c2d32461
gnu: djview: Fix executable's name in desktop file.
...
* gnu/packages/djvu.scm (djview)[inputs]: Re-order inputs alphabetically.
[arguments]: Add a phase to fix executable's name in desktop file.
2020-02-09 14:55:25 +01:00
Nicolas Goaziou
794ebb6b74
gnu: Add djview.
...
* gnu/packages/djvu.scm (djview): New variable.
2020-02-09 13:29:30 +01:00
Christopher Baines
a961e7ff0c
gnu: patchwork: Update to 2.1.5.
...
* gnu/packages/patchutils.scm (patchwork): Update to 2.1.5.
2020-02-09 11:18:03 +00:00
Christopher Baines
f325a33e16
services: web: Use the Patchwork default-from-email.
...
Previously this wasn't used, but it should have been.
* gnu/services/web.scm (patchwork-settings-module-compiler): Use the
default-from-email.
2020-02-09 11:17:13 +00:00
Efraim Flashner
5998ac14f3
gnu: rust-modifier-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-modifier-0.1)[properties]: Remove field.
2020-02-09 12:10:26 +02:00
Efraim Flashner
f882e8efe9
gnu: Add rust-unicode-segmentation-1.6.
...
* gnu/packages/crates-io.scm (rust-unicode-segmentation-1.6): New variable.
(rust-unicode-segmentation-1.3)[inherit]: Inherit from
rust-unicode-segmentation-1.6.
2020-02-09 12:04:14 +02:00
Efraim Flashner
6901f6cdc8
gnu: rust-num-integer-0.1: Update to 0.1.42.
...
* gnu/packages/crates-io.scm (rust-num-integer-0.1): Update to 0.1.42.
[arguments]: Add rust-num-traits-0.2, rust-autocfg-1.0 to cargo-inputs.
[properties]: Remove field.
2020-02-09 11:57:19 +02:00
Efraim Flashner
f010cd54a5
gnu: rust-nodrop-0.1: Update to 0.1.14.
...
* gnu/packages/crates-io.scm (rust-nodrop-0.1): Update to 0.1.14.
[arguments]: Add rust-nodrop-union-0.1 to cargo-inputs.
[properties]: Remove field.
2020-02-09 11:53:21 +02:00
Efraim Flashner
d8886fcc48
gnu: Add rust-structopt-0.2.
...
* gnu/packages/crates-io.scm (rust-structopt-0.2): New variable.
2020-02-09 11:39:42 +02:00
Efraim Flashner
243603c888
gnu: Add rust-structopt-derive-0.2.
...
* gnu/packages/crates-io.scm (rust-structopt-derive-0.2): New variable.
2020-02-09 11:33:00 +02:00
Efraim Flashner
c6b806228a
gnu: Add rust-itertools-0.7.
...
* gnu/packages/crates-io.scm (rust-itertools-0.7): New variable.
2020-02-09 11:29:41 +02:00
Valentin Ignatev
fef9de551d
gnu: Add rust-mint-0.5.
...
* gnu/packages/crates-io.scm (rust-mint-0.5): New variable.
2020-02-09 11:18:41 +02:00
Valentin Ignatev
8e1337fd3d
gnu: Add rust-make-cmd-0.1.
...
* gnu/packages/crates-io.scm (rust-make-cmd-0.1): New variable.
2020-02-09 11:17:17 +02:00
Valentin Ignatev
043cf489f7
gnu: Add rust-itoa-0.3.
...
* gnu/packages/crates-io.scm (rust-itoa-0.3): New variable.
2020-02-09 11:16:13 +02:00
Valentin Ignatev
7dc8a3a553
gnu: Add rust-bresenham-0.1.
...
* gnu/packages/crates-io.scm (rust-bresenham-0.1): New variable.
2020-02-09 11:14:56 +02:00
Valentin Ignatev
ccdc86338d
gnu: Add rust-assert-matches-1.3.
...
* gnu/packages/crates-io.scm (rust-assert-matches-1.3): New variable.
2020-02-09 11:13:44 +02:00
Valentin Ignatev
835c854b5d
gnu: Add rust-approx-0.1.
...
* gnu/packages/crates-io.scm (rust-approx-0.1): New variable.
2020-02-09 11:12:39 +02:00
Valentin Ignatev
c9c5b87559
gnu: Add rust-quote-0.3.
...
* gnu/packages/crates-io.scm (rust-quote-0.3): New variable.
2020-02-09 11:11:15 +02:00
Valentin Ignatev
57f6e23c4c
gnu: Add rust-android-glue-0.2.
...
* gnu/packages/crates-io.scm (rust-android-glue-0.2): New variable.
2020-02-09 11:08:54 +02:00
Valentin Ignatev
5ea15d03e5
gnu: Add rust-utf8parse-0.1.
...
* gnu/packages/crates-io.scm (rust-utf8parse-0.1): New variable.
2020-02-09 11:07:01 +02:00
Valentin Ignatev
97fb5b53fd
gnu: Add rust-xml-rs-0.8.
...
* gnu/packages/crates-io.scm (rust-xml-rs-0.8): New variable.
2020-02-09 11:05:57 +02:00
Valentin Ignatev
6dd06d9656
gnu: Add rust-compiler-error-0.1.
...
* gnu/packages/crates-io.scm (rust-compiler-error-0.1): New variable.
2020-02-09 11:03:57 +02:00
Nicolas Goaziou
5467e34418
gnu: Add emacs-djvu.
...
* gnu/packages/emacs-xyz.scm (emacs-djvu): New variable.
2020-02-09 00:02:04 +01:00
Efraim Flashner
bf36e8c174
gnu: rust-tokio-process-0.2: Fix typo.
...
This is a follow-up to 21c8ec75de .
* gnu/packages/crates-io.scm (rust-tokio-process-0.2)[arguments]:
Replace rust-lazy-static-13 with rust-lazy-static-1.
2020-02-08 23:29:59 +02:00
Efraim Flashner
21c8ec75de
gnu: rust-lazy-static-1: Set as reference to rust-lazy-static-1.4.
...
* gnu/packages/crates-io.scm (rust-lazy-static-1): New variable.
(rust-arc-swap-0.3, rust-bindgen-0.50, rust-bstr-0.2,
rust-c2-chacha-0.2, rust-clap-2, rust-clicolors-control-1.0,
rust-console-0.7, rust-criterion-0.2, rust-crossbeam-epoch-0.8,
rust-crossbeam-epoch-0.7, rust-crossbeam-utils-0.7,
rust-crossbeam-utils-0.6, rust-docopt-1.1, rust-encode-unicode-0.3,
rust-findshlibs-0.5, rust-flame-0.2, rust-getrandom-0.1,
rust-grep-cli-0.1, rust-hashbrown-0.5, rust-ignore-0.4,
rust-indexmap-1.0, rust-insta-0.8, rust-nix-0.15, rust-nix-0.14,
rust-nom-4.2, rust-odds-0.3, rust-once-cell-1.2, rust-openssl-0.10,
rust-ordermap-0.3, rust-parking-lot-0.9, rust-parking-lot-0.8,
rust-parking-lot-0.7, rust-proptest-0.9, rust-pulldown-cmark-0.4,
rust-rayon-1.3, rust-rayon-1.1, rust-rayon-core-1.7,
rust-rayon-core-1.5, rust-regex-1.3, rust-regex-1.1, rust-regex-0.2,
rust-regex-automata-0.1, rust-schannel-0.1, rust-scoped-threadpool-0.1,
rust-string-cache-0.7, rust-thread-local-1.0, rust-thread-local-0.3,
rust-tokio-process-0.2, rust-tokio-reactor-0.1,
rust-tokio-trace-core-0.2, rust-try-build-1.0, rust-ucd-parse-0.1,
rust-wasm-bindegen-backend-0.2, rust-wasm-bindgen-futures-0.3): Use
rust-lazy-static-1.
* gnu/packages/rust-apps.scm (exa, fd, ripgrep, tokei): Same.
* gnu/packages/gnome.scm (librsvg-next-source): Same.
2020-02-08 23:19:14 +02:00
Efraim Flashner
0f43866e9e
gnu: nano: Update to 4.8.
...
* gnu/packages/nano.scm (nano): Update to 4.8.
2020-02-08 22:55:55 +02:00
Jakub Kądziołka
16ffc3b604
gnu: ripgrep: Update to 11.0.2.
...
* gnu/packages/rust-apps.scm (ripgrep): Update to 11.0.2.
[arguments]: Use rust-bstr-0.2 instead of rust-bstr-0.1. Add
rust-jemallocator-0.3 to inputs. Remove unnecessary
development-inputs.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-08 22:48:51 +02:00
Efraim Flashner
5669972364
gnu: rust-ignore-0.4: Update to 0.4.11.
...
* gnu/packages/crates-io.scm (rust-ignore-0.4): Update to 0.4.11.
[arguments]: Don't skip build. In cargo-inputs replace
rust-crossbeam-channel-0.3 with 0.4, rust-thread-local-0.3 with 1.0.
Remove rust-winapi-util-0.1. Remove rust-tempfile-3.0 from
cargo-development-inputs.
2020-02-08 22:48:51 +02:00
Jakub Kądziołka
4574847cca
gnu: rust-grep-regex: Update to 0.1.4.
...
* gnu/packages/crates-io.scm (rust-grep-regex-0.1): Update to 0.1.4.
[arguments]: Don't skip build.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-08 22:28:23 +02:00
Jakub Kądziołka
2e1d4c873b
gnu: rust-grep-matcher: Update to 0.1.3.
...
* gnu/packages/crates-io.scm (rust-grep-matcher-0.1): Update to 0.1.3.
[arguments]: Don't skip build.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-08 22:25:33 +02:00
Jakub Kądziołka
fa832a434e
gnu: rust-aho-corasick: Update to 0.7.8.
...
* gnu/packages/crates-io.scm (rust-aho-corasick-0.7): Update to 0.7.8.
[arguments]: Don't skip build.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-08 22:23:08 +02:00
Jakub Kądziołka
e5b8c522f2
gnu: rust-regex: Update to 1.3.4.
...
* gnu/packages/crates-io.scm (rust-regex-1.3): Update to 1.3.4.
[arguments]: Don't skip build.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-08 21:44:28 +02:00
Jakub Kądziołka
2f841254c5
gnu: rust-regex-syntax: Update to 0.6.14.
...
* gnu/packages/crates-io.scm (rust-regex-syntax-0.6): Update to 0.6.14.
[arguments]: Don't skip build.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-08 21:41:40 +02:00
Efraim Flashner
728aa0f546
gnu: rust-lazy-static-1.4: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-lazy-static-1.4)[arguments]: Don't
skip build.
2020-02-08 21:33:20 +02:00
Efraim Flashner
7e25e54cb2
gnu: rust-lazy-static-1.3: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-lazy-static-1.3)[arguments]: Don't
skip build.
2020-02-08 21:32:47 +02:00
Efraim Flashner
08a29ff201
gnu: rust-jobserver-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-jobserver-0.1)[arguments]: Don't skip
build.
2020-02-08 21:22:33 +02:00
Efraim Flashner
8b0e09d260
gnu: rust-itoa-0.4: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-itoa-0.4)[arguments]: Don't skip build.
2020-02-08 21:17:38 +02:00
Efraim Flashner
c5ee55d347
gnu: rust-itoa-0.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-itoa-0.1)[arguments]: Don't inherit.
2020-02-08 21:16:45 +02:00
John Soo
0f7720d1b0
gnu: Add fd.
...
* gnu/packages/crates-io.scm (fd): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-08 21:11:30 +02:00
Efraim Flashner
e45242abe2
gnu: rust-regex-1.1: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-regex-1.1)[arguments]: Don't skip build.
2020-02-08 21:11:29 +02:00
John Soo
af51fb8e4d
gnu: rust-regex-1.1: Update to 1.1.9.
...
* gnu/packages/crates-io.scm (rust-regex-1.1): Update it.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-08 21:11:29 +02:00
John Soo
2484eea58c
gnu: Add rust-lscolors-0.6.
...
* gnu/packages/crates-io.scm (rust-lscolors-0.6): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-08 21:11:29 +02:00
John Soo
167d786812
gnu: Add rust-ctrlc-3.1.
...
* gnu/packages/crates-io.scm (rust-ctrlc-3.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-08 21:11:29 +02:00
John Soo
4f105bbcd1
gnu: Add rust-nix-0.14.
...
* gnu/packages/crates-io.scm (rust-nix-0.14): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-08 21:11:29 +02:00
Efraim Flashner
751d6a8b8a
gnu: Add rust-sysctl-0.1.
...
* gnu/packages/crates-io.scm (rust-sysctl-0.1): New variable.
2020-02-08 21:11:28 +02:00
Efraim Flashner
5b37b6d9d0
gnu: rust-error-chain-0.12: Fix dependencies.
...
* gnu/packages/crates-io.scm (rust-error-chain-0.12)[arguments]: Remove
rust-version-check-0.9 from cargo-development-inputs. Add
rust-version-check-0.1 to cargo-inputs.
2020-02-08 21:11:28 +02:00
Ekaitz Zarraga
56bae7f380
gnu: kitty: Update ot 0.16.0.
...
* gnu/packages/terminals.scm (kitty): Update to 0.16.0.
2020-02-08 19:07:57 +01:00
Tobias Geerinckx-Rice
6b40dbff7d
gnu: sbcl-static-vectors: Change dubious home page.
...
* gnu/packages/lisp-xyz.scm (sbcl-static-vectors)[home-page]: Disbelieve
copy-pasted GitHub blurb, which never even worked due to a typo.
2020-02-08 18:20:25 +01:00
Tobias Geerinckx-Rice
2c5874e3ed
news: Add ‘nl’ translation.
...
* etc/news.scm: Add an ‘nl’ translation.
2020-02-08 18:18:00 +01:00
Nicolas Goaziou
a60448edcc
gnu: Add ghc-hspec-discover.
...
* gnu/packages/haskell-check.scm (ghc-hspec-discover): New variable.
2020-02-08 15:39:55 +01:00
Nicolas Goaziou
e90a06fcc5
gnu: Add ghc-text-conversions.
...
* gnu/packages/haskell-xyz.scm (ghc-text-conversions): New variable.
2020-02-08 15:39:55 +01:00
Nicolas Goaziou
d56c812027
gnu: Add ghc-jira-wiki-markup.
...
* gnu/packages/haskell-xyz.scm (ghc-jira-wiki-markup): New variable.
2020-02-08 15:39:54 +01:00
Nicolas Goaziou
206907719d
gnu: Add ghc-emojis.
...
* gnu/packages/haskell-xyz.scm (ghc-emojis): New variable.
2020-02-08 15:39:54 +01:00
Nicolas Goaziou
ba7cbae308
gnu: Add ghc-doclayout.
...
* gnu/packages/haskell-xyz.scm (ghc-doclayout): New variable.
2020-02-08 15:39:54 +01:00
Julien Lepiller
ea4f34d4e0
news: Fix typos in 'fr' translation.
...
* etc/news.scm: Update 'fr' translation.
2020-02-08 15:22:41 +01:00
Julien Lepiller
726edfd6bd
news: Add 'fr' translations.
...
* etc/news.scm: Add 'fr' translations.
2020-02-08 13:57:50 +01:00
Florian Pelz
6646798bf0
news: Add 'de' translation.
...
* etc/news.scm: Add 'de' translation.
2020-02-08 11:26:09 +00:00
Eric Bavier
da09cd16a2
gnu: parallel: Update to 20200122.
...
* gnu/packages/parallel.scm (parallel): Update to 20200122.
2020-02-07 23:48:37 -06:00
Eric Bavier
f6a2a5cc9c
gnu: git-flow: Update to 1.12.3.
...
* gnu/packages/version-control.scm (git-flow): Update to 1.12.3.
[source]: Use maintained fork.
2020-02-07 23:00:33 -06:00
Vagrant Cascadian
c526ddf482
gnu: Add reprotest.
...
Added to diffoscope, to avoid triggering #37346 .
* gnu/packages/diffoscope (reprotest): New variable.
* gnu/packages/patches/reprotest-support-guix.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add patch.
2020-02-07 16:06:17 -08:00
Amin Bandali
d9e2f7b284
gnu: Add pasystray.
...
* gnu/packages/pulseaudio.scm (pasystray): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-07 18:40:51 -05:00
Leo Famulari
3c32ef7ae1
doc: Add missing copyright notice for Damien Cassou.
...
This is a followup to commit ea9cc4ef21 .
* doc/guix.texi: Add copyright line.
2020-02-07 18:40:44 -05:00
Nicolas Goaziou
c0c1811f71
gnu: awesome: Update to 4.3.
...
* gnu/packages/wm.scm (awesome): Update to 4.3.
[native-inputs]: Add "lua-ldoc". Re-indent code.
[arguments]: Remove now unnecessary phase.
2020-02-08 00:18:07 +01:00
Nicolas Goaziou
4898e06abc
gnu: Add lua-ldoc.
...
* gnu/packages/lua.scm (lua-ldoc): New variable.
2020-02-08 00:16:04 +01:00
Nicolas Goaziou
1fd4b99ea8
gnu: Add lua-penlight.
...
* gnu/packages/lua.scm (lua-penlight): New variable.
2020-02-08 00:16:03 +01:00
Nicolas Goaziou
1c58aa6f0d
gnu: lua-lgi: Use current lua package.
...
* gnu/packages/lua.scm (make-lua-lgi): New function.
(lua-lgi):
(lua5.1-lgi):
(lua5.2-lgi): New variables.
* gnu/packages/wm.scm (awesome)[arguments]: Update LUA_PATH and LUA_CPATH.
2020-02-08 00:16:03 +01:00
Efraim Flashner
232f344f9b
gnu: rust-quote-0.6: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-quote-0.6)[properties]: Don't inherit.
2020-02-07 16:08:39 +02:00
Efraim Flashner
6e32296e8a
gnu: rust-quote-0.6: Update to 0.6.13.
...
* gnu/packages/crates-io.scm (rust-quote-0.6): Update to 0.6.13.
[arguments]: Add rust-proc-macro2-0.4 to cargo-inputs.
2020-02-07 16:08:39 +02:00
Efraim Flashner
72b94ebf1c
gnu: rust-proc-macro2-0.4: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-proc-macro2-0.4)[arguments]: Don't
skip build.
2020-02-07 16:08:39 +02:00
Pierre Neidhardt
78cb6c3420
gnu: next: Remove fare-quasiquote-extras from inputs.
...
* gnu/packages/web-browsers.scm (next): Remove fare-quasiquote-extras from
inputs now that our serapeum package has been fixed.
2020-02-07 15:00:32 +01:00
Guillaume Le Vaillant
8137983adf
gnu: sbcl-serapeum: Fix loading the library.
...
* gnu/packages/lisp-xyz.scm (sbcl-serapeum)[inputs]: Use
sbcl-fare-quasiquote-extras instead of cl-fare-quasiquote-extras.
2020-02-07 12:11:31 +01:00
Guillaume Le Vaillant
a526320076
gnu: Add sbcl-fare-quasiquote-extras.
...
* gnu/packages/lisp-xyz.scm (sbcl-fare-quasiquote-extras): New variable.
2020-02-07 12:11:30 +01:00
Mathieu Othacehe
ac70fc6aa3
news: Add entry for "guix pull" ssh authenticated repositories support.
...
* etc/news.scm: Add entry for "guix pull" ssh authenticated repositories support.
2020-02-07 09:52:25 +01:00
Tim Gesthuizen
daec54f062
services: inputattach: Fix broken baud rate option.
...
* gnu/services/desktop.scm (inputattach-shepherd-service): Use "--baud" for
setting the baud-rate.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2020-02-07 11:51:02 +08:00
Vagrant Cascadian
f83d07f777
gnu: diffoscope: Update description.
...
* gnu/packages/diffoscope (diffoscope)[description]: Mention optional
dependencies.
2020-02-06 13:51:55 -08:00
Vagrant Cascadian
06d41d8d49
gnu: Add python-jsondiff.
...
Thanks to bavier for help with the description!
* gnu/packages/python-xyz (python-jsondiff): New varaible.
2020-02-06 13:25:27 -08:00
Efraim Flashner
0773d779bb
gnu: rust-clap-2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-clap-2)[arguments]: Don't skip
build. Add rust-term-size-0.3 to cargo-inputs. Replace
rust-yaml-rust-0.4 with 0.3.
2020-02-06 23:16:38 +02:00
Efraim Flashner
1203fbcf0a
gnu: rust-unicase-2.4: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-unicase-2.4)[arguments]: Add
rust-version-check-0.1 to cargo-inputs.
[properties]: Remove field.
2020-02-06 23:16:38 +02:00
Efraim Flashner
5ca35cc07f
gnu: rust-syn-0.15: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-syn-0.15)[arguments]: Don't skip
build. Add cargo-test-flags. In cargo-inputs replace rust-quote-1.0
with 0.6, rust-unicode-xid-0.2 with 0.1.
2020-02-06 23:16:17 +02:00
Efraim Flashner
2d03c6a4f9
gnu: rust-crossbeam-deque-0.6: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-crossbeam-deque-0.6)[arguments]:
Don't skip build. Replace rust-crossbeam-epoch-0.8 with 0.7. Replace
rust-crossbeam-utils-0.7 with 0.6.
2020-02-06 23:16:17 +02:00
Efraim Flashner
9eda3ea2ee
gnu: rust-walkdir-2.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-walkdir-2.2)[arguments]: Add
rust-same-file-1.0, rust-winapi-0.3, rust-winapi-util-0.1 to
cargo-inputs. Add rust-doc-comment-0.3 to cargo-development-inputs.
[properties]: Remove field.
2020-02-06 23:16:17 +02:00
Efraim Flashner
80f45ee5ae
gnu: Add rust-linked-hash-map-0.3.
...
* gnu/packages/crates-io.scm (rust-linked-hash-map-0.3): New variable.
2020-02-06 23:16:17 +02:00
Efraim Flashner
af4deee6ce
gnu: Add rust-yaml-rust-0.3.
...
* gnu/packages/crates-io.scm (rust-yaml-rust-0.3): New variable.
2020-02-06 23:16:16 +02:00
Efraim Flashner
b45bcc709b
gnu: Add rust-serde-test-0.8.
...
* gnu/packages/crates-io.scm (rust-serde-test-0.8): New variable.
2020-02-06 23:16:16 +02:00
Efraim Flashner
d47c989baf
gnu: Add rust-serde-0.8.
...
* gnu/packages/crates-io.scm (rust-serde-0.8): New variable.
2020-02-06 23:16:16 +02:00
Vagrant Cascadian
e68321a641
gnu: Add python-nose-random.
...
* gnu/packages/check (python-nose-random): New variable.
2020-02-06 13:14:13 -08:00
Vagrant Cascadian
b1daba942e
gnu: Add python-rstr.
...
* gnu/packages/python-xyz (python-rstr): New variable.
2020-02-06 13:01:31 -08:00
Amin Bandali
57f06234c7
gnu: Add emacs-gnus-harvest.
...
* gnu/packages/emacs-xyz.scm (emacs-gnus-harvest): New variable.
2020-02-06 19:18:29 +01:00
Mathieu Othacehe
e3e1a7ba08
git: Remove leftover pk call.
...
* guix/git.scm (update-cached-checkout): Remove leftover pk call.
2020-02-06 17:14:39 +01:00
Mathieu Othacehe
c357474994
git: Add ssh authentication support.
...
If Guile-Git revision is >= 0.3.0, use SSH agent authentication method for
both clone and fetch calls.
* guix/git.scm (auth-supported?): New variable,
(clone*): set auth-method to ssh-agent if the variable above is true,
(update-cached-checkout): ditto.
2020-02-06 16:10:31 +01:00
Pierre Neidhardt
8d9317e1f0
gnu: emacs-geiser: Update to 0.11.
...
* gnu/packages/emacs-xyz.scm (emacs-geiser): Update to 0.11.
2020-02-06 11:38:28 +01:00
Efraim Flashner
c153010bf9
gnu: rust-cbindgen: Update to 0.13.0.
...
* gnu/packages/crates-io.scm (rust-cbindgen): Update to 0.13.0.
2020-02-06 10:48:18 +02:00
Efraim Flashner
45088584ac
gnu: screen: Update to 4.8.0.
...
* gnu/packages/screen.scm (screen): Update to 4.8.0.
2020-02-06 10:48:18 +02:00
Efraim Flashner
28d72f8684
gnu: rust-libgit2-0.11: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-libgit2-0.11)[arguments]: Don't skip
build.
[native-inputs]: Add libgit2, libssh2, openssl, pkg-config, zlib.
2020-02-06 10:48:17 +02:00
Efraim Flashner
b76473ecfd
gnu: exa: Install extras.
...
* gnu/packages/rust-apps.scm (exa)[arguments]: Add phase to install man
page and shell completions.
2020-02-06 10:48:17 +02:00
John Soo
d42cbbba37
gnu: Add exa.
...
* gnu/packages/rust-apps.scm (exa): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-06 10:48:17 +02:00
Efraim Flashner
69c577bc07
gnu: rust-libgit2-0.9: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-libgit2-0.9)[arguments]: Don't skip
build.
[native-inputs]: Add libgit2, libssh2, openssl, pkg-config, zlib.
2020-02-06 10:48:17 +02:00
Efraim Flashner
832bd82b13
gnu: rust-tempdir-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-tempdir-0.3)[arguments]: Add
rust-rand-0.4, rust-remove-dir-all-0.5 to cargo-inputs.
[properties]: Remove field.
2020-02-06 10:48:17 +02:00
Efraim Flashner
b392230109
gnu: rust-libssh2-sys-0.2: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-libssh2-sys-0.2)[arguments]: Don't
skip build.
2020-02-06 10:48:16 +02:00
Efraim Flashner
3cc77ace22
gnu: Remove rust-openssl-src-111.
...
* gnu/packages/crates-io.scm (rust-openssl-src-111): Remove variable.
2020-02-06 10:48:16 +02:00
Efraim Flashner
6030b76570
gnu: rust-openssl-sys-0.9: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-openssl-sys-0.9)[source]: Add patch.
[arguments]: Don't skip build.
* gnu/packages/patches/rust-openssl-sys-no-vendor.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
2020-02-06 10:48:16 +02:00
John Soo
494fc97cd4
gnu: Add rust-zoneinfo-compiled-0.4.
...
* gnu/packages/crates-io.scm (rust-zoneinfo-compiled-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-06 10:48:16 +02:00
John Soo
5ccd167c01
gnu: Add rust-users-0.9.
...
* gnu/packages/crates-io.scm (rust-users-0.9): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-06 10:48:16 +02:00
Efraim Flashner
d28ddc2b87
gnu: rust-libgit2-sys-0.8: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-libgit2-sys-0.8)[properties]: Remove
field.
2020-02-06 10:48:15 +02:00
Efraim Flashner
dbc0c7950f
gnu: libgit2-sys-0.8: Unbundle vendored code.
...
* gnu/packages/crates-io.scm (rust-libgit2-sys-0.8)[source]: Add snippet
to remove bundled code.
2020-02-06 10:48:15 +02:00
John Soo
329d5aad0e
gnu: rust-libgit2-sys-0.8: Inherit arguments.
...
* gnu/packages/crates-io.scm (rust-libgit2-sys-0.8):[arguments] Remove field.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-06 10:48:15 +02:00
John Soo
b8597582a4
gnu: Add rust-term-grid-0.1.
...
* gnu/packages/crates-io.scm (rust-term-grid-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-06 10:48:15 +02:00
John Soo
a3c072c77a
gnu: Add rust-ansi-term-0.12.
...
* gnu/packages/crates-io.scm (rust-ansi-term-0.12): New variable.
(rust-ansi-term-0.11)[inherit]: New field, inherit from rust-ansi-term-0.12.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-06 10:48:14 +02:00
John Soo
a1add81e63
gnu: Add rust-number-prefix-0.3.
...
* gnu/packages/crates-io.scm (rust-number-prefix-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-06 10:48:14 +02:00
Efraim Flashner
9ce26f2d49
gnu: rust-num-cpus-1.10: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-num-cpus-1.10)[arguments]: Don't skip
build.
2020-02-06 10:48:14 +02:00
John Soo
1b81f2c78c
gnu: Add rust-num-cpus-1.11.
...
* gnu/packages/crates-io.scm (rust-num-cpus-1.11): New variable.
(rust-num-cpus-1.10)[inherit]: New field.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-06 10:48:14 +02:00
John Soo
d57000cf43
gnu: Add rust-natord-1.0.
...
* gnu/packages/crates-io.scm (rust-natord-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-06 10:48:14 +02:00
John Soo
53bf4857a4
gnu: Add rust-hermit-abi-0.1.
...
* gnu/packages/crates-io.scm (rust-hermit-abi-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-06 10:48:13 +02:00
John Soo
5d0fff83dc
gnu: Add rust-datetime-0.4.
...
* gnu/packages/crates-io.scm (rust-datetime-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-06 10:48:05 +02:00
Nicolas Goaziou
7a1de45298
gnu: emacs-org-contrib: Update to 20200206.
...
* gnu/packages/emacs-xyz.scm (emacs-org-contrib): Update to 20200206.
2020-02-06 09:04:33 +01:00
Nicolas Goaziou
3137e0e55c
gnu: emacs-org: Update to 9.3.3.
...
* gnu/packages/emacs-xyz.scm (emacs-org): Update to 9.3.3.
2020-02-06 09:04:16 +01:00
Vagrant Cascadian
9b478eb734
gnu: disoderfs: Update to 0.5.8.
...
* gnu/packages/file-systems (disorderfs): Update to 0.5.8.
[home-page]: Update.
2020-02-05 23:21:09 -08:00
Mark H Weaver
d94e5dffcb
gnu: linux-libre: Update to 5.4.18.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.18.
(linux-libre-5.4-pristine-source): Update hash.
2020-02-05 20:20:55 -05:00
Mark H Weaver
55b1eab64f
gnu: linux-libre@4.19: Update to 4.19.102.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.102.
(linux-libre-4.19-pristine-source): Update hash.
2020-02-05 20:20:18 -05:00
Mark H Weaver
5d0d21dc3a
gnu: linux-libre@4.14: Update to 4.14.170.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.170.
(linux-libre-4.14-pristine-source): Update hash.
2020-02-05 20:19:28 -05:00
Mark H Weaver
7abac36258
gnu: linux-libre@4.9: Update to 4.9.213.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.213.
(linux-libre-4.9-pristine-source): Update hash.
2020-02-05 20:18:58 -05:00
Mark H Weaver
80b9f3efe7
gnu: linux-libre@4.4: Update to 4.4.213.
...
* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.213.
(linux-libre-4.4-pristine-source): Update hash.
2020-02-05 20:17:58 -05:00
Marius Bakke
f10921c5ad
Merge branch 'master' into staging
2020-02-05 22:08:06 +01:00
Jakub Kądziołka
9d0dfd9a9a
import: pypi: Support exporting packages with .zip source.
...
* guix/import/pypi.scm (make-pypi-sexp): Rename test-inputs to
native-inputs. Restructure the way pypi-uri parameters are generated.
Use pypi-uri's extension parameter when required. Add "unzip" to
native inputs when the package source is a zip file.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-05 22:03:35 +01:00
Tanguy Le Carrour
0c101a04f0
gnu: python-cleo: Update to 0.7.6.
...
* gnu/packages/python-xyz.scm (python-cleo): Update to 0.7.6.
[propagated-inputs]: Add python-clikit.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-05 22:03:35 +01:00
Tanguy Le Carrour
4573b94d9d
gnu: python-clikit: Update to 0.4.1.
...
* gnu/packages/python-xyz.scm (python-clikit): Update to 0.4.1.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-05 22:03:34 +01:00
Tanguy Le Carrour
20c9914eab
gnu: python-tomlkit: Update to 0.5.8.
...
* gnu/packages/python-xyz.scm (python-tomlkit): Update to 0.5.8.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-05 22:03:34 +01:00
Fakhri Sajadi
6cd07787ab
gnu: lxqt-config: Fixing keyboard layout.
...
* gnu/packages/lxqt.scm (lxqt-config)[inputs]: Add xkeyboard-config.
[arguments]: Add phase to substitute xkb rule file.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-05 22:03:34 +01:00
Josh Holland
567a145368
gnu: streamlink: Update to 1.3.1.
...
* gnu/packages/video.scm (streamlink): Update to 1.3.1.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-05 22:03:34 +01:00
Pierre Langlois
6bd561b8c8
gnu: gpodder: Update to 3.10.13.
...
* gnu/packages/gpodder.scm (gpodder): Update to 3.10.13.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-05 22:03:34 +01:00
Alexandros Theodotou
6a428d455e
gnu: zrythm: Update to 0.7.474.
...
* gnu/packages/music.scm (zrythm): Update to 0.7.474.
[arguments](phases): Patch xdg-open.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-05 22:03:34 +01:00
Mark Wielaard
e5fcff3190
gnu: elfutils: Update synopsis and description
...
* gnu/packages/elf.scm (elfutils): Update summaries.
[synopsis]: Updated.
[description]: Updated.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-02-05 22:03:34 +01:00
Marius Bakke
e71ef4c138
gnu: libmtp: Update to 1.1.17.
...
* gnu/packages/libusb.scm (libmtp): Update to 1.1.17.
2020-02-05 22:03:33 +01:00
Marius Bakke
34a3566f40
gnu: libmtp: Do not build the static library.
...
* gnu/packages/libusb.scm (libmtp)[arguments]: Add "--disable-static" in
#:configure-flags.
2020-02-05 22:03:33 +01:00
Marius Bakke
fa72d1897a
gnu: libmtp: Remove unnecessary propagation.
...
* gnu/packages/libusb.scm (libmtp)[propagated-inputs]: Move LIBGCRYPT ...
[inputs]: ... here. New field.
2020-02-05 22:03:33 +01:00
Marius Bakke
c7ceac8c3d
gnu: lftp: Update to 4.9.1.
...
* gnu/packages/ftp.scm (lftp): Update to 4.9.1.
2020-02-05 22:03:33 +01:00
Marius Bakke
2fa980a50d
gnu: libcdr: Update to 0.1.6.
...
* gnu/packages/libreoffice.scm (libcdr): Update to 0.1.6.
2020-02-05 22:03:33 +01:00
Marius Bakke
d8d25bb8f5
gnu: varnish: Update to 6.3.2.
...
* gnu/packages/web.scm (varnish): Update to 6.3.2.
2020-02-05 22:03:33 +01:00
Marius Bakke
dfe5beb27d
gnu: ppp: Update to 2.4.8.
...
* gnu/packages/samba.scm (ppp): Update to 2.4.8.
[source]: Change to GIT-FETCH.
2020-02-05 22:03:33 +01:00
Damien Cassou
ea9cc4ef21
doc: Clarify documentation of Substitute Server Authorization.
...
* doc/guix.texi (Substitute Server Authorization): Highlight the salient part of
the example.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-05 15:07:50 -05:00
Kei Kebreau
70b6b23848
gnu: hyperrogue: Update to 11.2q.
...
* gnu/packages/games.scm (hyperrogue): Update to 11.2q.
2020-02-05 14:56:08 -05:00
Nicolas Goaziou
668307c0d4
gnu: gcompris-qt: Update to 0.97.
...
* gnu/packages/education.scm (gcompris-qt): Update to 0.97.
[arguments]: Skip failing test.
[native-inputs]: Add kdoctools.
2020-02-05 16:21:30 +01:00
Ludovic Courtès
c24fe4a520
import: gem: Deal with unavailable licensing info.
...
Fixes <https://bugs.gnu.org/39404 >.
Reported by Seth <lee.seth@tuta.io >.
* guix/import/gem.scm (<gem>)[licenses]: Adjust for non-vector
licenses.
* tests/gem.scm (test-bar-json): Change "licenses" to 'null'.
("gem-recursive-import"): Adjust accordingly.
2020-02-05 16:18:58 +01:00
Ludovic Courtès
23db833335
import: gem: Rewrite to use a JSON mapping to records.
...
* guix/import/gem.scm (<gem>, <gem-dependencies>, <gem-dependency>): New
record types with JSON mapping.
(json->gem-dependencies): New procedures.
(rubygems-fetch): Use it.
(hex-string->bytevector): Remove.
(make-gem-sexp): Expect HASH to be a bytevector.
(gem->guix-package): Adjust to use the new <gem> data type instead of an
alist.
(latest-release): Likewise.
2020-02-05 16:18:58 +01:00
Ludovic Courtès
312df1d40c
tests: Adjust reverse-bag graph test to recent OCaml changes.
...
This is a followup to 87858bc526 .
Partly fixes <https://bugs.gnu.org/39374 >.
Reported by Ellen Papsch <ellen.papsch@wine-logistix.de >.
* tests/graph.scm ("reverse bag DAG"): Adjust test to latest OCaml
changes.
2020-02-05 16:18:58 +01:00
Ludovic Courtès
895363e4cf
gnu: cat-avatar-generator: Remove imports for (srfi *).
...
This would import (srfi srfi-1) and (srfi srfi-26) from the host Guile,
leading to discrepancies among users, and in particular when the host
Guile is 3.0.
Reported by Julien Lepiller <julien@lepiller.eu >
in <https://bugs.gnu.org/39369 >.
* gnu/packages/web.scm (cat-avatar-generator): Remove (srfi *) from
#:modules.
2020-02-05 16:18:58 +01:00
Robert Smith
8534c9491d
gnu: Add anki.
...
* gnu/packages/education.scm (anki): New variable.
2020-02-05 14:59:50 +01:00
Efraim Flashner
fd0dd2b2dc
gnu: tor: Update to 0.4.2.6.
...
* gnu/packages/tor.scm (tor): Update to 0.4.2.6.
2020-02-05 14:03:47 +02:00
John Soo
91f0c79070
gnu: librsvg-next-source: Update dependencies.
...
* gnu/packages/gnome.scm (librsvg-next-source): Update dependencies.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-05 13:34:28 +02:00
John Soo
b059b0be1f
gnu: rust-num-traits-0.2: Upgrade to 0.2.11.
...
* gnu/packages/crates-io.scm (rust-num-traits-0.2): Upgrade to 0.2.11.
[arguments]: Remove rust-autocfg-0.1 from cargo-inputs. Add
rust-autocfg-1.0, rust-libm-0.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-05 13:34:27 +02:00
John Soo
d492a69e58
gnu: Add rust-libm-0.1.
...
* gnu/packages/crates-io.scm (rust-libm-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-05 13:34:27 +02:00
John Soo
059a79e416
gnu: Add rust-autocfg-1.0.
...
* gnu/packages/crates-io.scm (rust-autocfg-1.0): New variable.
(rust-autocfg-0.1): Inherit from rust-autocfg-1.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-05 13:34:27 +02:00
John Soo
bbeb6f11a4
gnu: rust-num-traits-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-num-traits-0.2):[arguments] Add
rust-autocfg-0.1 to cargo-inputs.
[properties] Remove field.
(rust-num-traits-0.1):[arguments] Add rust-num-traits-0.2 to
cargo-inputs.
[properties]: Remove field.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-05 13:34:26 +02:00
John Soo
7f34c33085
gnu: Add rust-libm-0.2.
...
* gnu/packages/crates-io.scm (rust-libm-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-05 13:34:26 +02:00
John Soo
743ead2b47
gnu: Add rust-nom-1.2.
...
* gnu/packages/crates-io.scm (rust-nom-1.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-05 13:34:26 +02:00
John Soo
db4dcf73ec
gnu: Add rust-iso8601-0.1.
...
* gnu/packages/crates-io.scm (rust-iso8601-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-05 13:34:25 +02:00
John Soo
57d9470466
gnu: Add rust-pad-0.1.
...
* gnu/packages/crates-io.scm (rust-pad-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-05 13:34:25 +02:00
John Soo
297bd74002
gnu: Add rust-no-panic-0.1.
...
* gnu/packages/crates-io.scm (rust-no-panic-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-05 13:34:25 +02:00
John Soo
96956ce8e2
gnu: Add rust-locale-0.2.
...
* gnu/packages/crates-io.scm (rust-locale-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-05 13:34:21 +02:00
Guillaume Le Vaillant
00a9a9365b
gnu: sbcl-chanl: Update to 0.4.1-1-56e90a1.
...
* gnu/packages/lisp-xyz.scm (sbcl-chanl): Update to 0.4.1-1-56e90a1.
(ecl-chanl)[arguments]: Remove disable-chanl-actors phase.
2020-02-05 11:34:26 +01:00
Konrad Hinsen
c6397e3e4c
gnu: Add cl-hdf5-cffi.
...
* gnu/packages/lisp-xyz.scm (sbcl-hdf5-cffi, cl-hdf5-cffi, ecl-hdf5-cffi): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-02-05 10:42:15 +01:00
Amin Bandali
b2a6a78400
gnu: Add pamixer.
...
* gnu/packages/pulseaudio.scm (pamixer): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-04 19:29:33 -05:00
Nicolas Goaziou
861bd91b9a
gnu: emacs-yasnippet-snippets: Update to 0.20.
...
* gnu/packages/emacs-xyz.scm (emacs-yasnippet-snippets): Update to 0.20.
[arguments]: Remove unnecessary modules.
[license]: Change to GPL3+.
Note: the new official release is "0.20" whereas previous package used
arbitrary "1-1". This may prevent users with this package already installed
from updating.
2020-02-05 00:39:57 +01:00
Ivan Vilata-i-Balaguer
892be267ee
gnu: mutt: Enable Autocrypt support.
...
* gnu/packages/mail.scm (mutt)[inputs]: Add libidn2 and sqlite.
[arguments]<#:configure-flags>: Add "--enable-autocrypt", "--with-sqlite3" and
"--with-idn2".
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-05 00:21:27 +01:00
Giacomo Leidi
e3d80f3c1c
gnu: Add gnome-shell-extension-appindicator.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-05 00:21:27 +01:00
Giacomo Leidi
6e43e1eee8
gnu: Add stb-truetype.
...
* gnu/packages/stb.scm (stb-truetype): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-05 00:21:27 +01:00
Giacomo Leidi
8a4c7be4c8
gnu: Add stb-sprintf.
...
* gnu/packages/stb.scm (stb-sprintf): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-05 00:21:27 +01:00
Evan Straw
c4f967062a
gnu: Add redsea.
...
* gnu/packages/ham-radio.scm (redsea): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-05 00:21:27 +01:00
Evan Straw
f08345225d
gnu: liquid-dsp: Remove unused module imports.
...
* gnu/packages/sdr.scm (liquid-dsp): Remove unused module imports.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-02-05 00:21:27 +01:00
Ludovic Courtès
65e15bd902
doc: Improve "guix pack -f docker" example.
...
* doc/guix.texi (Invoking guix pack): Provide more concrete instructions
for the "guix pack -f docker" example.
2020-02-05 00:21:27 +01:00
Ludovic Courtès
8b3dc5cf0e
doc: Fix typo in channel example.
...
* doc/guix.texi (Channels): Use 'commit' field instead of 'branch' in
example.
2020-02-05 00:21:27 +01:00
Nicolas Goaziou
da355a67a0
gnu: emacs-yasnippet: Update to 0.14.0.
...
* gnu/packages/emacs-xyz.scm (emacs-yasnippet): Update to 0.14.0.
2020-02-04 23:46:42 +01:00
Ricardo Wurmus
0d4b40593b
gnu: yoshimi: Update to 1.7.0.1.
...
* gnu/packages/music.scm (yoshimi): Update to 1.7.0.1.
2020-02-04 18:08:40 +01:00
Guillaume Le Vaillant
b23e6f5d9a
gnu: sbcl-usocket: Update to 0.8.3.
...
* gnu/packages/lisp-xyz.scm (sbcl-usocket-boot0): Update to 0.8.3 and don't
make this variable public.
(sbcl-usocket-server)[inputs]: Replace portable-threads by bordeaux-threads.
(ecl-socket): Rename variable to ecl-usocket.
2020-02-04 16:33:56 +01:00
Guillaume Le Vaillant
f6a6f085a4
gnu: Add ecl-static-vectors.
...
* gnu/packages/lisp-xyz.scm (ecl-static-vectors): New variable.
2020-02-04 16:33:56 +01:00
Guillaume Le Vaillant
ba55cbda75
gnu: sbcl-static-vectors: Update to 1.8.4.
...
* gnu/packages/lisp-xyz.scm (sbcl-static-vectors): Update to 1.8.4.
2020-02-04 16:33:56 +01:00
Guillaume Le Vaillant
dbf6de5881
gnu: sbcl-swap-bytes: Update to 1.2.
...
* gnu/packages/lisp-xyz.scm (sbcl-swap-bytes): Update to 1.2.
[arguments]: Don't ignore tests.
2020-02-04 16:33:55 +01:00
Guillaume Le Vaillant
92da05885c
gnu: sbcl-split-sequence: Update to 2.0.0.
...
* gnu/packages/lisp-xyz.scm (sbcl-split-sequence): Update to 2.0.0.
[native-inputs]: Add fiveam.
[arguments]: Don't ignore tests.
2020-02-04 16:33:55 +01:00
Guillaume Le Vaillant
54dc3ba2fb
gnu: Add ecl-cl-ppcre-unicode.
...
* gnu/packages/lisp-xyz.scm (ecl-cl-ppcre-unicode): New variable.
2020-02-04 16:33:55 +01:00
Guillaume Le Vaillant
6fdfef668a
gnu: sbcl-cl-unicode: Update to 0.1.6.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-unicode-base): Update to 0.1.6.
2020-02-04 16:33:55 +01:00
Guillaume Le Vaillant
6c87442548
gnu: sbcl-cl-ppcre: Update to 2.1.1.
...
* gnu/packages/lisp-xyz.scp (sbcl-cl-ppcre): Update to 2.1.1.
2020-02-04 16:33:55 +01:00
Guillaume Le Vaillant
6b0604fd43
gnu: sbcl-flexi-streams: Update to 1.0.18.
...
* gnu/packages/lisp-xyz.scm (sbcl-flexi-streams): Update to 1.0.18.
2020-02-04 16:33:55 +01:00
Guillaume Le Vaillant
10ac723ba7
gnu: Add ecl-drakma.
...
* gnu/packages/lisp-xyz (ecl-drakma): New variable.
2020-02-04 16:33:55 +01:00
Guillaume Le Vaillant
a2b6b97315
gnu: sbcl-drakma: Update to 2.0.7.
...
* gnu/packages/lisp-xyz.scm (sbcl-drakma): Update to 2.0.7.
2020-02-04 16:33:55 +01:00
Guillaume Le Vaillant
f0d9eaca69
gnu: sbcl-cl-fad: Update to 0.7.6.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-fad): Update to 0.7.6.
2020-02-04 16:33:55 +01:00
Guillaume Le Vaillant
5a64785019
gnu: sbcl-bordeaux-threads: Update to 0.8.7.
...
* gnu/packages/lisp-xyz.scm (sbcl-bordeaux-threads): Update to 0.8.7.
2020-02-04 16:33:54 +01:00
Efraim Flashner
cf10627bf2
gnu: netsurf: Use https.
...
* gnu/packages/web.scm (netsurf-buildsystem, libparserutils, hubbub,
libwapcaplet, libcss, libdom, libsvgtiny, libnsbmp, libnsgif, libnslog,
libnsutils, libnspsl, nsgenbind, netsurf, netsurf-buildsystem)
[source, home-page]: Use https.
2020-02-04 14:12:18 +02:00
Efraim Flashner
2038777833
gnu: netsurf: Build with gtk+-3.
...
* gnu/packages/web.scm (netsurf)[inputs]: Remove gtk+-2, add gtk+.
[arguments]: Add makeflag to target gtk3.
2020-02-04 14:09:33 +02:00
Kyle Meyer
bfd3473a45
gnu: git-annex: Update to 7.20200202.7.
...
* gnu/packages/haskell-apps.scm (git-annex): Update to 7.20200202.7.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-04 13:39:40 +02:00
Eric Bavier
f1452776ac
gnu: netsurf: Fix entity parsing.
...
Follow-up to commit 31afa654c5 .
* gnu/packages/web.scm (netsurf)[arguments]: In 'adjust-welcome' phase, ensure
html entities are parsed and find their way back to the output.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-02-04 12:30:32 +01:00
Jakub Kądziołka
52e7bcfd89
gnu: Add grip.
...
* gnu/packages/python-web.scm (grip): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-04 12:11:30 +02:00
Jakub Kądziołka
0021363d1b
gnu: Add python-path-and-address.
...
* gnu/packages/python-web.scm (python-path-and-address): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-04 12:09:24 +02:00
Pierre Neidhardt
e4a88925b4
gnu: emacs-wgrep: Update to 2.3.2.
...
* gnu/packages/emacs-xyz.scm (emacs-wgrep): Update to 2.3.2.
2020-02-04 10:55:01 +01:00
Brett Gilio
a42f14204a
gnu: python-language-server: Update to 0.31.7.
...
* gnu/packages/python-xyz.scm (python-language-server): Update to 0.31.7.
2020-02-03 15:24:51 -06:00
Leo Famulari
ca5e404f9a
gnu: QEMU: Fix CVE-2020-1711.
...
* gnu/packages/patches/qemu-CVE-2020-1711.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/virtualization.scm (qemu)[source]: Use it.
2020-02-03 12:04:17 -05:00
Jack Hill
692c4b3b44
gnu: qutebrowser: Update to 1.10.0
...
* gnu/packages/web-browsers.scm (qutebrowser): Update to 1.10.0.
2020-02-03 17:20:59 +01:00
Guillaume Le Vaillant
17c015c909
gnu: sbcl-graph: Fix build.
...
Rename the asd files so that they have the same name as the ASDF
system definitions.
* gnu/packages/lisp-xyz.scm (sbcl-graph)[arguments]: Use 'graph-test.asd'
instead of 'graph.test.asd' for test-asd-file.
(sbcl-graph-dot)[arguments]: Use 'graph-dot.asd' instead of 'graph.dot.asd'
for test-asd-file.
(sbcl-graph-json)[arguments]: Use 'graph-json.asd' instead of
'graph.json.asd' for test-asd-file.
* gnu/packages/patches/sbcl-graph-asdf-definitions.patch: Update accordingly.
2020-02-03 17:12:07 +01:00
Guillaume Le Vaillant
7e23dcc73e
gnu: sbcl-mgl-pax: Propagate the swank source package.
...
* gnu/packages/lisp-xyz.scm (sbcl-mgl-pax)[inputs]: Move swank to...
[propagated-inputs]: ... here.
2020-02-03 17:12:07 +01:00
Guillaume Le Vaillant
237d58c3e4
gnu: sbcl-cffi-bootstrap: Update to 0.21.0.
...
* gnu/packages/lisp-xyz.scm (sbcl-cffi-bootstrap): Update to 0.21.0.
2020-02-03 17:12:07 +01:00
Guillaume Le Vaillant
5d4d4c0179
gnu: Add cl-qrencode.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-qrencode, cl-qrencode, ecl-cl-qrencode):
New variables.
2020-02-03 17:12:07 +01:00
Guillaume Le Vaillant
7b875e4efd
gnu: Add cl-zpng.
...
* gnu/packages/lisp-xyz.scm (sbcl-zpng, cl-zpng, ecl-zpng): New variables.
2020-02-03 17:12:07 +01:00
Guillaume Le Vaillant
d165821ecc
gnu: Add cl-png-read.
...
* gnu/packages/lisp-xyz.scm (sbcl-png-read, cl-png-read, ecl-png-read): New
variables.
2020-02-03 17:12:07 +01:00
Guillaume Le Vaillant
46cc2a38bc
gnu: Add cl-salza2.
...
* gnu/packages/lisp-xyz.scm (sbcl-salza2, cl-salza2, ecl-salza2): New
variables.
2020-02-03 17:12:07 +01:00
Leo Prikler
a9e5e6497a
gnu: ibus: Use new ucd package.
...
* gnu/packages/ibus.scm (ibus)[native-inputs]: Add ucd;
remove unicode-nameslist and unicode-blocks.
[arguments]: Update configure flags and remove prepare-ucd-dir phase.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2020-02-03 17:01:51 +01:00
Leo Prikler
5a2ef79db2
gnu: Add ucd.
...
* gnu/packages/unicode.scm (ucd): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2020-02-03 17:00:18 +01:00
Leo Prikler
933bb1acdb
gnu: ibus: Disable parallel build.
...
* gnu/packages/ibus.scm (ibus)[arguments]: Disable parallel build.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2020-02-03 16:32:39 +01:00
Leo Prikler
0873cce16e
gnu: ibus: Build with emoji support.
...
* gnu/packages/ibus.scm (ibus)[native-inputs]: Add unicode-emoji and
unicode-cldr-common.
[arguments]<configure-flags>: Use list instead of quote.
Add flags for unicode-emoji-dir and emoji-annotation-dir.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2020-02-03 16:32:39 +01:00
Leo Prikler
1a9f666b1d
gnu: Add unicode-cldr-common.
...
* gnu/packages/unicode.scm (unicode-cldr-commmon): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
Co-authored-by: Ricardo Wurmus <rekado@elephly.net >
2020-02-03 16:32:39 +01:00
Leo Prikler
b7f0a55a9a
gnu: Add unicode-emoji.
...
* gnu/packages/unicode.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2020-02-03 16:32:39 +01:00
Leo Prikler
cb9cb2e89a
licenses: Add Unicode license.
...
* guix/licenses.scm (unicode): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2020-02-03 16:32:39 +01:00
Marius Bakke
0a83339bb1
Merge branch 'master' into staging
2020-02-03 15:35:51 +01:00
Marius Bakke
20fe3cd761
gnu: libical: Add upstream patch to preserve API compatibility.
...
* gnu/packages/calendar.scm (libical)[source](patches): New field.
2020-02-03 15:22:43 +01:00
Marius Bakke
146d0483b0
gnu: Qt: Update to 5.12.7 [fixes CVE-2020-0569, CVE-2020-0570].
...
* gnu/packages/qt.scm (qtbase, qtsvg, qtimageformats, qtx11extras,
qtxmlpatterns, qtdeclarative, qtconnectivity, qtwebsockets, qtsensors,
qtmultimedia, qtwayland, qtserialport, qtserialbus, qtwebchannel,
qtwebglplugin, qtwebview, qtlocation, qttools, qtscript, qtquickcontrols,
qtquickcontrols2, qtgraphicaleffects, qtgamepad, qtscxml, qtpurchasing,
qtcanvas3d, qtcharts, qtdatavis3d, qtnetworkauth, qtremoteobjects, qtspeech,
qtwebengine): Update to 5.12.7.
2020-02-03 15:22:43 +01:00
Hartmut Goebel
cf256651ac
gnu: Add libgravatar.
...
* gnu/packages/kde-internet.scm (libgravatar): New variable.
2020-02-03 14:28:12 +01:00
Hartmut Goebel
da0ef4dd9f
gnu: libktorrent: Base source-code URL on version of ktorrent.
...
* gnu/packages/kde-internet.scm (libktorrent)[source]: Base
path in URL on version of ktorrent.
2020-02-03 14:28:12 +01:00
Hartmut Goebel
3588ac9c10
gnu: Add ktorrent.
...
* gnu/packages/kde-internet.scm (ktorrent): New variable.
2020-02-03 14:28:11 +01:00
Hartmut Goebel
724bd81d54
gnu: Add libktorrent.
...
* gnu/packages/kde-internet.scm (libktorrent): New variable.
2020-02-03 14:28:11 +01:00
Hartmut Goebel
ff9b471013
gnu: Add krdc.
...
VNC support is yet missing since I did not find the required VNC packages.
* gnu/packages/kde-internet.scm (krdc): New variable.
2020-02-03 14:28:10 +01:00
Hartmut Goebel
cbcf4cb482
gnu: Add kopete.
...
Not all optional packages are enabled yet.
* gnu/packages/kde-internet.scm (kopete): New variable.
2020-02-03 14:28:10 +01:00
Hartmut Goebel
579aa350ed
gnu: Add konversation.
...
* gnu/packages/kde-internet.scm (konversation): New variable.
* gnu/packages/patches/konversation-Fix-build-with-Qt-5.11.patch: New file.
* gnu/lokal.mk: Add it.
2020-02-03 14:28:09 +01:00
Hartmut Goebel
e21713270c
gnu: Add kget.
...
* gnu/packages/kde-internet.scm (kget): New variable.
2020-02-03 14:28:09 +01:00
Hartmut Goebel
533c95bc17
gnu: Add choqok.
...
* gnu/packages/kde-internet.scm: New file.
* gnu/packages/patches/choqok-Fix-building-under-Qt-5.13.patch: New file.
* gnu/lokal.mk: Add them.
2020-02-03 14:28:08 +01:00
Hartmut Goebel
565df8a267
gnu: Add qoauth.
...
* gnu/packages/web.scm (qoauth): New variable.
2020-02-03 14:28:08 +01:00
Hartmut Goebel
2dd5b1e8b3
gnu: Add kdepim-apps-libs.
...
* gnu/packages/kde-pim.scm (kdepim-apps-libs): New variable.
2020-02-03 14:27:32 +01:00
Hartmut Goebel
a8546f4682
gnu: Add kpimcommon.
...
* gnu/packages/kde-pim.scm (kpimcommon): New variable.
2020-02-03 14:27:31 +01:00
Hartmut Goebel
63d589626b
gnu: Add kmailimporter.
...
* gnu/packages/kde-pim.scm (kmailimporter): New variable.
2020-02-03 14:27:31 +01:00
Hartmut Goebel
4357222be3
gnu: Add libkdepim.
...
* gnu/packages/kde-pim.scm (libkdepim): New variable.
2020-02-03 14:27:31 +01:00
Hartmut Goebel
48d5d0ef1c
gnu: Add kgpg.
...
* gnu/packages/kde-utils.scm (kgpg): New variable.
2020-02-03 14:27:30 +01:00
Hartmut Goebel
ba4f9352c1
gnu: Add kleopatra.
...
* gnu/packages/kde-utils.scm (kleopatra): New variable.
2020-02-03 14:27:30 +01:00
Hartmut Goebel
25b620d967
gnu: Add libkleo.
...
* gnu/packages/kde-pim.scm (libkleo): New variable.
2020-02-03 14:27:29 +01:00
Hartmut Goebel
37ac66221c
gnu: Add akonadi-calendar.
...
* gnu/packages/kde-pim.scm (akonadi-calendar): New variable.
2020-02-03 14:27:29 +01:00
Hartmut Goebel
5a75e4448a
gnu: Add kmailtransport.
...
* gnu/packages/kde-pim.scm (kmailtransport): New variable.
2020-02-03 14:27:28 +01:00
Hartmut Goebel
0fcbdde77b
gnu: Add libkgapi.
...
* gnu/packages/kde-pim.scm (libkgapi): New variable.
2020-02-03 14:27:28 +01:00
Hartmut Goebel
789cf5c397
gnu: Add kontactinterface.
...
* gnu/packages/kde-pim.scm (kontactinterface): New variable.
2020-02-03 14:27:28 +01:00
Hartmut Goebel
29157edcd6
gnu: Add ksmtp.
...
* gnu/packages/kde-pim.scm (ksmtp): New variable.
2020-02-03 14:27:27 +01:00
Hartmut Goebel
ad80c7ef15
gnu: Add akonadi-contacts.
...
* gnu/packages/kde-pim.scm (akonadi-contacts): New variable.
2020-02-03 14:27:27 +01:00
Hartmut Goebel
a24fcdbdf4
gnu: Add akonadi-search.
...
* gnu/packages/kde-pim.scm (akonadi-search): New variable.
2020-02-03 14:27:27 +01:00
Hartmut Goebel
d03ad6cf77
gnu: Add akonadi-notes.
...
* gnu/packages/kde-pim.scm (akonadi-notes): New variable.
2020-02-03 14:27:26 +01:00
Hartmut Goebel
8d41c6a3b5
gnu: Add akonadi-mime.
...
* gnu/packages/kde-pim.scm (akonadi-mime): New variable.
2020-02-03 14:27:26 +01:00
Hartmut Goebel
2a876c1c1d
gnu: Add kalarmcal.
...
* gnu/packages/kde-pim.scm (kalarmcal): New variable.
2020-02-03 14:27:25 +01:00
Hartmut Goebel
ff6adc0aaa
gnu: Add ktnef.
...
* gnu/packages/kde-pim.scm (ktnef): New variable.
2020-02-03 14:27:25 +01:00
Hartmut Goebel
6e03dbea47
gnu: Add kldap.
...
* gnu/packages/kde-pim.scm (kldap): New variable.
2020-02-03 14:27:24 +01:00
Hartmut Goebel
037994df43
gnu: Add kimap.
...
* gnu/packages/kde-pim.scm (kimap): New variable.
2020-02-03 14:27:24 +01:00
Hartmut Goebel
0a0df84f0b
gnu: Add kidentitymanagement.
...
* gnu/packages/kde-pim.scm (kidentitymanagement): New variable.
2020-02-03 14:27:23 +01:00
Hartmut Goebel
8c71fd4363
gnu: Add kpimtextedit.
...
* gnu/packages/kde-pim.scm (kpimtextedit): New variable.
2020-02-03 14:27:23 +01:00
Hartmut Goebel
68b1d81d53
gnu: Add kcalutils.
...
* gnu/packages/kde-pim.scm (kcalutils): New variable.
2020-02-03 14:27:23 +01:00
Hartmut Goebel
962b288ad5
gnu: Add kmbox.
...
* gnu/packages/kde-pim.scm (kmbox): New variable.
2020-02-03 14:27:22 +01:00
Hartmut Goebel
7cfb118cbe
gnu: Add kmime.
...
* gnu/packages/kde-pim.scm (kmime): New variable.
2020-02-03 14:27:22 +01:00
Hartmut Goebel
e35b50ecdd
gnu: Add akonadi.
...
* gnu/packages/kde-pim.scm,
gnu/packages/patches/akonadi-paths.patch,
gnu/packages/patches/akonadi-Revert-Make-installation-properly-relocatabl.patch
gnu/packages/patches/akonadi-timestamps.patch: New files.
* gnu/local.mk (MODULES): Add kde-pim.scm. (dist_patch): Add the patches.
2020-02-03 14:27:22 +01:00
Marius Bakke
7538510534
gnu: python-pyfakefs: Update to 3.7.1.
...
* gnu/packages/check.scm (python-pyfakefs): Update to 3.7.1.
2020-02-03 12:34:32 +01:00
Marius Bakke
9bf02042ca
gnu: python-lz4: Remove bundled copy of lz4.
...
* gnu/packages/python-compression.scm (python-lz4)[source](modules, snippet):
New fields.
[native-inputs]: Add PKG-CONFIG.
[inputs]: Add LZ4.
2020-02-03 12:34:31 +01:00
Marius Bakke
c0fe2e1f03
gnu: libx264: Update to 159-0.1771b55.
...
* gnu/packages/video.scm (libx264): Update to 159-0.1771b55.
[source]: Change to GIT-FETCH.
[version]: Use GIT-VERSION, and change from date-based identifier to the
version defined in x264.h.
2020-02-03 12:34:31 +01:00
Marius Bakke
82ca7b2a3a
gnu: commencement: Remove unused module imports.
...
* gnu/packages/commencement.scm: Do not import (guix licenses),
(srfi srfi-26), and (ice-9 regex).
2020-02-03 12:34:31 +01:00
Marius Bakke
bf16482c8c
gnu: rsync: Fix cross-compilation.
...
* gnu/packages/rsync.scm (rsync)[inputs]: Move PERL ...
[native-inputs]: ... here.
2020-02-03 12:34:31 +01:00
Pkill -9
d441a64550
gnu: Add lf.
...
* gnu/packages/disk.scm (lf): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-02 16:18:48 -05:00
Tobias Geerinckx-Rice
127c519870
gnu: sane-backends-minimal: Update to 1.0.29.
...
* gnu/packages/scanner.scm (sane-backends-minimal): Update to 1.0.29.
2020-02-02 22:14:34 +01:00
Timotej Lazar
7b2ba609c3
gnu: godot: Add zenity for showing alerts.
...
* gnu/packages/game-development.scm (godot)[inputs]: Add zenity.
[arguments]: Wrap godot to look for it in the store.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-02 16:11:34 -05:00
Timotej Lazar
451e1075f0
gnu: godot: Update to 3.2.
...
* gnu/packages/game-development.scm (godot): Update to 3.2.
[source](snippet): Remove obsolete and unbundled (wslay) thirdparty files, and
add new ones.
[arguments](scons-flags): Disable the builtin wslay.
[inputs]: Add wslay.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-02 16:11:34 -05:00
Timotej Lazar
cda9824585
gnu: Add wslay.
...
* gnu/packages/web.scm (wslay): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-02-02 16:11:34 -05:00
Oleg Pykhalov
abfc2a9abd
gnu: Add emacs-ivy-clipmenu.
...
* gnu/packages/emacs-xyz.scm (emacs-ivy-clipmenu): New variable.
2020-02-02 23:32:46 +03:00
Timotej Lazar
5e8a7edce9
gnu: Add Slovenian Aspell dictionary.
...
* gnu/packages/aspell.scm (aspell-dict-sl): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-02-02 20:50:33 +02:00
Efraim Flashner
fb9d6f0f94
gnu: gnumach: Update to 1.8-1.097f9cf.
...
* gnu/packages/hurd.scm (gnumach-headers): Update to 1.8-1.097f9cf.
[arguments]: Add host flag to configure-flags.
[native-inputs]: Add autoconf, automake, texinfo-4.
2020-02-02 20:30:58 +02:00
Nicolas Goaziou
64e9d1280f
gnu: scummvm: Pacify linter.
...
* gnu/packages/emulators.scm (scummvm)[inputs]: Move "nasm"...
[native-inputs]: ... here.
2020-02-02 19:06:19 +01:00
Tobias Geerinckx-Rice
c3cfa2b182
gnu: Fix patch name typo.
...
This follows up on commit e1026ba701 .
Reported by NieDzejkob on #guix.
* gnu/local.mk (dist_patch_DATA): Fix typo.
2020-02-02 18:11:44 +01:00
Nicolas Goaziou
e1026ba701
gnu: t4k-common: Add missing patch.
...
* gnu/packages/patches/t4k-common-libpng16.patch: Add file.
* gnu/local.mk (dist_patch_DATA): Reference it here.
2020-02-02 17:46:37 +01:00
Guillaume Le Vaillant
227aeeb64c
gnu: Add cl-nodgui.
...
* gnu/packages/lisp-xyz.scm (sbcl-nodgui, cl-nodgui, ecl-nodgui): New
variables.
2020-02-02 15:31:01 +01:00
Guillaume Le Vaillant
d5f63a73d7
gnu: Add cl-jpeg.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-jpeg, cl-jpeg, ecl-cl-jpeg): New
variables.
2020-02-02 15:31:01 +01:00
Guillaume Le Vaillant
e9a36a74f3
gnu: Add cl-colors2.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-colors2, cl-colors2, ecl-cl-colors2): New
variables.
2020-02-02 15:31:01 +01:00
Guillaume Le Vaillant
21a519fac9
gnu: Add cl-clunit2.
...
* gnu/packages/lisp-xyz.scm (sbcl-clunit2, cl-clunit2, ecl-clunit2): New
variables.
2020-02-02 15:30:52 +01:00
Guillaume Le Vaillant
95abaafb74
gnu: Add cl-lex.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-lex, cl-lex, ecl-cl-lex): New variables.
2020-02-02 15:29:54 +01:00
Nicolas Goaziou
8baaf51f0a
gnu: Add tuxmath.
...
* gnu/packages/education.scm (tuxmath): New variable.
2020-02-02 15:23:37 +01:00
Nicolas Goaziou
34208bf51c
gnu: Add t4k-common.
...
* gnu/packages/education.scm (t4k-common): New variable.
2020-02-02 15:23:36 +01:00
Amin Bandali
1ec2c14372
gnu: Add emacs-erc-scrolltoplace.
...
* gnu/packages/emacs-xyz.scm (emacs-erc-scrolltoplace): New variable.
2020-02-02 15:19:33 +01:00
Amin Bandali
2cb9b0453d
gnu: Add emacs-switch-buffer-functions.
...
* gnu/packages/emacs-xyz.scm (emacs-switch-buffer-functions): New variable.
2020-02-02 15:16:49 +01:00
Amin Bandali
2b19087496
gnu: Add emacs-dmenu.
...
* gnu/packages/emacs-xyz.scm (emacs-dmenu): New variable.
2020-02-02 15:05:51 +01:00
Amin Bandali
6ba6ad4ca3
gnu: Add emacs-no-littering.
...
* gnu/packages/emacs-xyz.scm (emacs-no-littering): New variable.
2020-02-02 15:00:47 +01:00
Amin Bandali
9f2f969260
gnu: Add emacs-message-x.
...
* gnu/packages/emacs-xyz.scm (emacs-message-x): New variable.
2020-02-02 14:45:26 +01:00
Nicolas Goaziou
f389c65dbb
gnu: Add sdl-pango.
...
* gnu/packages/sdl.scm (sdl-pango): New variable.
* gnu/packages/patches/sdl-pango-api_additions.patch: New file.
* gnu/packages/patches/sdl-pango-blit_overflow.patch: New file.
* gnu/packages/patches/sdl-pango-fillrect_crash.patch: New file.
* gnu/packages/patches/sdl-pango-fix-explicit-SDLPango_CopyFTBitmapToSurface.patch:
New file.
* gnu/packages/patches/sdl-pango-matrix_declarations.patch: New file.
* gnu/packages/patches/sdl-pango-sans-serif.patch: New file.
* gnu/local.mk (sdl-pango): Reference patches.
add
2020-02-02 14:20:28 +01:00
Ivan Vilata-i-Balaguer
2a2da78326
gnu: Add xwrits.
...
* gnu/packages/xdisorg.scm (xwrits): New variable.
2020-02-02 14:13:27 +01:00
Nicolas Goaziou
0b15c11050
gnu: mame: Update to 0.218.
...
* gnu/packages/emulators.scm (mame): Update to 0.218.
2020-02-02 12:32:36 +01:00
Guillaume Le Vaillant
b72629eb24
gnu: Add cl-ltk-remote.
...
* gnu/packages/lisp-xyz.scm (sbcl-ltk-remote, cl-ltk-remote): New variables.
2020-02-02 12:03:05 +01:00
Guillaume Le Vaillant
811747f956
gnu: Add cl-ltk-mw.
...
* gnu/packages/lisp-xyz.scm (sbcl-ltk-mw, cl-ltk-mw, ecl-ltk-mw): New
variables.
2020-02-02 12:03:05 +01:00
Guillaume Le Vaillant
d3a2df680b
gnu: Add cl-ltk.
...
* gnu/packages/lisp-xyz.scm (sbcl-ltk, cl-ltk, ecl-ltk): New variables.
2020-02-02 12:03:05 +01:00
Nicolas Goaziou
7536321e4b
gnu: wireshark: Update to 3.2.1.
...
* gnu/packages/networking.scm (wireshark): Update to 3.2.1.
2020-02-02 10:58:54 +01:00
Nicolas Goaziou
8a890f3c40
gnu: tlp: Update to 1.3.0.
...
* gnu/packages/linux.scm (tlp): Update to 1.3.0.
[source]: Hard-code name in origin URI.
[native-inputs]: Add "shellcheck".
[arguments]: Activate some tests. Update environment variables. Ignore
tlp-rdw man pages.
* gnu/services/pm.scm (tlp-activation): Update configuration file name.
2020-02-02 10:42:16 +01:00
Brett Gilio
344619bbf6
gnu: emacs-telega: Update to 0.6.0.
...
* gnu/packages/emacs-xyz.scm (emacs-telega): Update to 0.6.0.
2020-02-02 00:54:22 -06:00
Vagrant Cascadian
1f9fae008d
gnu: u-boot-qemu-riscv64-smode: Patch to fix boot menu.
...
* gnu/packages/patches/u-boot-riscv64-fix-extlinux.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
* gnu/packages/bootloaders (u-boot-qemu-riscv64-smode): Add patch.
2020-02-01 18:14:13 -08:00
Vagrant Cascadian
b3d25e218a
gnu: Add linux-libre-riscv64-generic.
...
* gnu/packages/linux (linux-libre-riscv64-generic): New variable.
(linux-libre-5.4): Add riscv64-linux to supported architectures.
2020-02-01 17:39:39 -08:00
Vagrant Cascadian
3d0c79186c
services: virtualization: Add riscv32 and riscv64 to qemu platforms.
...
* gnu/services/virtualization (%riscv32): New variable.
(%riscv64): New variable.
(%qemu-platforms): Add riscv32 and riscv64.
2020-02-01 16:40:41 -08:00
Vagrant Cascadian
3d8fe3e276
gnu: diffoscope: Update to 136.
...
* gnu/packages/diffoscope (diffoscope): Update to 136.
2020-02-01 15:41:17 -08:00
Julien Lepiller
079901d7df
gnu: Add u-boot-cubietruck-bootloader.
...
* gnu/bootloader/u-boot.scm (u-boot-cubietrack-bootloader): New
variable.
2020-02-02 00:37:27 +01:00
Leo Famulari
5a8adc6dfc
gnu: GIMP: Add support for WebP images.
...
Suggested by Jorge P. de Morais Neto <jorge+list@disroot.org >.
* gnu/packages/gimp.scm (gimp): Add libwebp.
2020-02-01 14:14:52 -05:00
Mark H Weaver
f5fee80dad
gnu: linux-libre: Update to 5.4.17.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.17.
(linux-libre-5.4-pristine-source): Update hash.
2020-02-01 13:49:46 -05:00
Mark H Weaver
bfebf96253
gnu: linux-libre@4.19: Update to 4.19.101.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.101.
(linux-libre-4.19-pristine-source): Update hash.
2020-02-01 13:48:50 -05:00
Nicolas Goaziou
62ecae8367
gnu: snap: Update to 5.4.5.
...
* gnu/packages/education.scm (snap): Update to 5.4.5.
2020-02-01 17:07:47 +01:00
Nicolas Goaziou
3e6cb5839c
gnu: scintilla: Update to 4.3.0.
...
* gnu/packages/text-editors.scm (scintilla): Update to 4.3.0.
2020-02-01 17:01:36 +01:00
Nicolas Goaziou
ab7011f885
gnu: rclone: Update to 1.51.0.
...
* gnu/packages/sync.scm (rclone): Update to 1.51.0.
2020-02-01 16:05:31 +01:00
Nicolas Goaziou
3e4cf41ba7
gnu: fet: Update to 5.42.3.
...
* gnu/packages/education.scm (fet): Update to 5.42.3.
2020-02-01 16:00:34 +01:00
Nicolas Goaziou
24fedb55d6
gnu: emacs-relint: Update to 1.13.
...
* gnu/packages/emacs-xyz.scm (emacs-relint): Update to 1.13.
2020-02-01 15:56:20 +01:00
Nicolas Goaziou
4cb7c3d6a0
gnu: emacs-xr: Update to 1.15.
...
* gnu/packages/emacs-xyz.scm (emacs-xr): Update to 1.15.
2020-02-01 15:52:07 +01:00
Maxim Cournoyer
4690e3a4ec
gnu: arc-theme: Placate Inkscape.
...
This gets rid of Inkscape's warnings printed during the build when HOME is not
set to a writable directory.
* gnu/packages/gnome.scm (arc-theme)[phases]{set-home}: New phase.
2020-01-31 23:41:49 -05:00
Maxim Cournoyer
d3e439e355
gnu: Add earlyoom-service-type.
...
* gnu/services/linux.scm: New file.
* tests/services/linux.scm: Add test.
* Makefile.am (SCM_TESTS): Register test.
* doc/guix.texi (Linux Services): Add a new section and document the new
service and its configuration.
2020-01-31 23:37:13 -05:00
Maxim Cournoyer
76f5428bc6
gnu: Add earlyoom.
...
* gnu/packages/linux.scm (earlyoom): New variable.
2020-01-31 23:37:13 -05:00
Vagrant Cascadian
10f31af9e3
gnu: Add u-boot-qemu-riscv64.
...
* gnu/packages/bootloaders (u-boot-qemu-riscv64): New variable.
2020-01-31 20:22:32 -08:00
Vagrant Cascadian
7d06364563
gnu: Add u-boot-sifive-fu540.
...
* gnu/packages/bootloaders (u-boot-sifive-fu540): New variable.
2020-01-31 20:22:30 -08:00
Vagrant Cascadian
01501a308c
gnu: Add opensbi-sifive-fu540.
...
* gnu/packages/firmware (opensbi-sifive-fu540): New variable.
2020-01-31 20:22:27 -08:00
Vagrant Cascadian
cd63c2beb0
gnu: Add opensbi-qemu-sifive-u.
...
* gnu/packages/firmware (make-opensbi-package): Normalize package name.
(opensbi-qemu-sifive-u): New variable.
2020-01-31 20:22:23 -08:00
Vagrant Cascadian
454403f19a
gnu: Add opensbi.
...
* gnu/packages/firmware (make-opensbi): New function.
(opensbi-qemu-virt): New variable.
2020-01-31 19:05:00 -08:00
Vagrant Cascadian
7e954f674b
gnu: u-boot-qemu-riscv64-smode: Add package.
...
* gnu/packages/bootloaders (u-boot-qemu-riscv64-smode): New variable.
2020-01-31 19:04:40 -08:00
Brett Gilio
dcbfb3b8ea
gnu: tdlib: Update to 1.6.0.
...
* gnu/packages/messaging.scm (tdlib): Update to 1.6.0.
2020-01-31 19:41:13 -06:00
Ludovic Courtès
2032d8473d
ci: Cross-build for riscv64-linux-gnu.
...
* gnu/ci.scm (%cross-targets): Add "riscv64-linux-gnu".
2020-01-31 17:06:16 +01:00
Ludovic Courtès
69961ac3b9
gnu: libgc: Add version 8.0.4.
...
* gnu/packages/bdw-gc.scm (libgc-8.0): New variable.
2020-01-31 17:06:15 +01:00
Eric Bavier
aa2e83cce2
gnu: superlu-dist: Update to 6.2.0.
...
* gnu/packages/maths.scm (superlu-dist): Update to 6.2.0.
[source]: Update upstream url. Remove mpi deprecations patch.
* gnu/packages/patches/superlu-dist-fix-mpi-deprecations.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2020-01-31 09:17:16 -06:00
Eric Bavier
48fe5c36a2
gnu: superlu: Update upstream url.
...
* gnu/packages/maths.scm (superlu)[source,home-page]: Update url.
2020-01-31 09:13:57 -06:00
David Wilson
261d0e8e38
gnu: Add xsettingsd.
...
* gnu/packages/xdisorg.scm (xsettingsd): New variable.
2020-01-31 05:51:36 -08:00
Guillaume Le Vaillant
c5bbcb82d5
gnu: Add cl-z85.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-z85, cl-z85, ecl-cl-z85): New variables.
2020-01-31 11:44:15 +01:00
Guillaume Le Vaillant
3ac0e64d64
gnu: Add cl-base32.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-base32, cl-base32, ecl-cl-base32): New
variables.
2020-01-31 11:24:00 +01:00
Tobias Geerinckx-Rice
08b87d167b
gnu: sudo: Update to 1.8.31 [fixes CVE-2019-18634].
...
* gnu/packages/admin.scm (sudo): Update to 1.8.31.
2020-01-31 00:43:18 +01:00
Tobias Geerinckx-Rice
31afa654c5
gnu: netsurf: Curb overzealous substitution.
...
* gnu/packages/web.scm (netsurf)[arguments]: Don't enforce Americanisms.
2020-01-31 00:43:18 +01:00
Tobias Geerinckx-Rice
c3f146e79a
gnu: Update opensmtpd configuration grammar.
...
This follows up on commit 0d48690908 .
* gnu/services/mail.scm (%default-opensmtpd-config-file): Adapt to ‘new’
≥6.4 grammar.
* gnu/tests/mail.scm (%opensmtpd-os): Likewise.
2020-01-31 00:42:48 +01:00
Vagrant Cascadian
9ea68dd7be
services: getmail: Fix spelling of "address".
...
* gnu/services/getmail (getmail-retriever-configuration): Fix typo.
2020-01-30 15:27:31 -08:00
Vagrant Cascadian
8ccc77a4c4
gnu: bcachefs-tools: Fix spelling of "utilities".
...
* gnu/packages/file-systems (bcachefs-tools): Fix typo.
2020-01-30 15:27:29 -08:00
Marius Bakke
6610e847c0
gnu: gdb: Add separate variant with source highlighting support.
...
This partially reverts commit 480b3279fd in
order to prevent a huge rebuild.
* gnu/packages/gdb.scm (gdb-8.3)[properties]: New field.
[inputs]: Remove SOURCE-HIGHLIGHT.
* gnu/packages/gdb.scm (gdb-8.2)[inputs]: Remove.
(gdb/next): New public variable.
2020-01-30 22:16:07 +01:00
Alexandru-Sergiu Marton
9c3070ec38
gnu: Add ghc-scalpel.
...
* gnu/packages/haskell-web.scm (ghc-scalpel): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-30 22:54:01 +02:00
Alexandru-Sergiu Marton
a1c04f35ac
gnu: Add ghc-scalpel-core.
...
* gnu/packages/haskell-web.scm (ghc-scalpel-core): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-30 22:48:06 +02:00
Ludovic Courtès
480b3279fd
gnu: gdb: Add dependency on source-highlight.
...
* gnu/packages/gdb.scm (gdb-8.3)[inputs]: Add SOURCE-HIGHLIGHT.
(gdb-8.2)[inputs]: New field.
2020-01-30 19:08:07 +01:00
Efraim Flashner
954b4c7307
gnu: mpv: Update to 0.32.0.
...
* gnu/packages/video.scm (mpv): Update to 0.32.0.
2020-01-30 19:14:07 +02:00
Lars-Dominik Braun
e5d71802fc
gnu: Add python-bonsai.
...
* gnu/packages/openldap.scm (python-bonsai): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-30 17:46:48 +01:00
Marius Bakke
14db8f192e
gnu: ruby-unf-ext: Update to 0.0.7.6.
...
* gnu/packages/ruby.scm (ruby-unf-ext): Update to 0.0.7.6.
[arguments]: Add phase to avoid unnecessary dependency.
2020-01-30 17:46:48 +01:00
Marius Bakke
ba4084bb13
gnu: ruby-redcarpet: Update to 3.5.0.
...
* gnu/packages/ruby.scm (ruby-redcarpet): Update to 3.5.0.
2020-01-30 17:46:48 +01:00
Marius Bakke
93dfdec5ba
gnu: ruby-oj: Update to 3.10.1.
...
* gnu/packages/ruby.scm (ruby-oj): Update to 3.10.1.
2020-01-30 17:46:48 +01:00
Marius Bakke
bd39fcdf0f
gnu: samba: Update to 4.11.6.
...
* gnu/packages/samba.scm (samba): Update to 4.11.6.
2020-01-30 16:14:31 +01:00
Marius Bakke
8c98ef7d97
gnu: p11-kit: Update to 0.23.20.
...
* gnu/packages/tls.scm (p11-kit): Update to 0.23.20.
2020-01-30 16:14:31 +01:00
Marius Bakke
98bef018b8
gnu: tbb: Update to 2020.1.
...
* gnu/packages/tbb.scm (tbb): Update to 2020.1.
2020-01-30 16:14:31 +01:00
Christopher Baines
e7cdba61cf
gnu: ruby-sqlite3: Update to 1.4.2.
...
* gnu/packages/ruby.scm (ruby-sqlite3): Update to 1.4.2.
2020-01-30 15:10:21 +01:00
Christopher Baines
3e776b4426
gnu: ruby-sassc: Update to 2.2.1.
...
* gnu/packages/ruby.scm (ruby-sassc): Update to 2.2.1.
[arguments]: Fix using the included libsass copy.
[native-inputs]: Add ruby-rake-compiler.
2020-01-30 15:10:16 +01:00
Jakub Kądziołka
7037ffe11a
gnu: Go: Update to 1.12.16 [fixes CVE-2018-17075].
...
* gnu/packages/golang.scm (go-1.12): Update to 1.12.16.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-01-29 20:26:11 -05:00
Tobias Geerinckx-Rice
0d48690908
gnu: opensmtpd-next: Promote to opensmtpd [fixes CVE-2020-7247].
...
It's still unclear (to me) whether our opensmtpd package is affected,
but this change has been delayed for long enough in any case.
* gnu/packages/mail.scm (opensmtpd-next): Rename to…
(opensmtpd): …this.
* gnu/packages/patches/opensmtpd-fix-crash.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2020-01-29 22:47:00 +01:00
Leo Famulari
7c73da9907
gnu: GraphicsMagick: Update to 1.3.34.
...
* gnu/packages/imagemagick.scm (graphicsmagick): Update to 1.3.34.
2020-01-29 15:17:45 -05:00
Mark H Weaver
85ea215864
gnu: linux-libre: Update to 5.4.16.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.16.
(linux-libre-5.4-pristine-source): Update hash.
2020-01-29 12:52:27 -05:00
Mark H Weaver
0332012e10
gnu: linux-libre@4.19: Update to 4.19.100.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.100.
(linux-libre-4.19-pristine-source): Update hash.
2020-01-29 12:51:52 -05:00
Mark H Weaver
d7abd56d9c
gnu: linux-libre@4.14: Update to 4.14.169.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.169.
(linux-libre-4.14-pristine-source): Update hash.
2020-01-29 12:51:14 -05:00
Mark H Weaver
cf728b19c7
gnu: linux-libre@4.9: Update to 4.9.212.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.212.
(linux-libre-4.9-pristine-source): Update hash.
2020-01-29 12:50:42 -05:00
Mark H Weaver
dfda8129d3
gnu: linux-libre@4.4: Update to 4.4.212.
...
* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.212.
(linux-libre-4.4-pristine-source): Update hash.
2020-01-29 12:49:37 -05:00
Marius Bakke
0895002f68
Merge branch 'master' into staging
2020-01-29 11:12:49 +01:00
Jakub Kądziołka
602059e794
gnu: hexedit: Make F1 help more reliable.
...
* gnu/packages/hexedit.scm (hexedit)[arguments](patch-man-path): New
phase.
[inputs]: Add MAN-DB.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-29 11:03:10 +01:00
Marius Bakke
d5037890b4
gnu: OpenAL: Update to 1.20.1.
...
* gnu/packages/audio.scm (openal): Update to 1.20.1.
2020-01-29 11:03:10 +01:00
Marius Bakke
1256ac1857
gnu: whois: Update to 5.5.5.
...
* gnu/packages/networking.scm (whois): Update to 5.5.5.
2020-01-29 11:03:10 +01:00
Marius Bakke
eae94df612
gnu: p11-kit: Update to 0.23.19.
...
* gnu/packages/tls.scm (p11-kit): Update to 0.23.19.
[source](uri): Adjust tarball name.
2020-01-29 11:03:09 +01:00
Marius Bakke
92ebd8ede4
gnu: mbedtls-apache: Do not build the static libraries.
...
* gnu/packages/tls.scm (mbedtls-apache)[arguments]: Add
"-DUSE_STATIC_MBEDTLS_LIBRARY=OFF" in #:configure-flags.
2020-01-29 11:03:09 +01:00
Marius Bakke
4e8d1116ff
gnu: mbedtls-apache: Update to 2.16.4.
...
* gnu/packages/tls.scm (mbedtls-apache): Update to 2.16.4.
2020-01-29 11:03:09 +01:00
Timotej Lazar
18f8e935e8
gnu: godot: List which third party files to keep.
...
Remove everything else to catch added dependencies in new versions.
* gnu/packages/game-development.scm (godot)[source](snippet): Instead of
removing (only) the unbundled libs, remove everything except the listed files.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-01-29 07:57:09 +00:00
Timotej Lazar
c1bc92c0aa
gnu: godot: Unbundle some dependencies.
...
* gnu/packages/game-development.scm (godot)[inputs]: Add bullet, mbedtls-apache,
pcre2 and zstd.
[arguments](configure-flags): Use system libraries for the above.
[source](snippet): Remove bundled copies.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-01-29 07:57:03 +00:00
Timotej Lazar
d868261533
gnu: godot: Update to 3.1.2.
...
* gnu/packages/game-development.scm (godot): Update to 3.1.2.
[inputs]: Remove openssl, replaced by a bundled copy of mbedtls.
[arguments](configure-flags): Remove builtin_openssl flag.
[source]: Don’t try to remove the (now nonexistent) bundled openssl directory.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-01-29 07:56:32 +00:00
Tobias Geerinckx-Rice
e19e3430cd
gnu: opensmtpd-next: Update to 6.6.2p1 [security fixes].
...
Upstream[0] says “Qualys has found a critical vulnerability leading to
a possible privilege escalation” and will provide more information
later.
[0]: https://www.opensmtpd.org
* gnu/packages/mail.scm (opensmtpd-next): Update to 6.6.2p1.
2020-01-29 00:54:46 +01:00
Danny Milosavljevic
24882d3d9a
gnu: gnome: Re-add gnome-initial-setup.
...
* gnu/packages/gnome.scm (gnome)[propagated-inputs}: Add gnome-initial-setup.
2020-01-28 21:09:45 +01:00
Leo Prikler
9111f97500
services: gdm: Disable initial system setup in GDM.
...
* gnu/services/xorg.scm (gdm-configuration-file): Disable gnome-initial-setup.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-28 21:06:24 +01:00
Nicolas Goaziou
07a7cccbac
gnu: ode: Properly disable tests when cross-compiling.
...
* gnu/packages/game-development.scm (ode): Properly disable tests when
using (%current-target-system).
2020-01-28 20:23:41 +01:00
Amin Bandali
e7c938b2bf
gnu: Add emacs-unkillable-scratch.
...
* gnu/packages/emacs-xyz.scm (emacs-unkillable-scratch): New variable.
2020-01-28 20:19:25 +01:00
Tobias Geerinckx-Rice
4968ea2c92
Use HTTPS for liballeg.org.
...
* gnu/packages/game-development.scm (allegro-4, allegro)[home-page]:
Use HTTPS.
* guix/licenses.scm (giftware): Likewise.
2020-01-28 17:22:11 +01:00
Tobias Geerinckx-Rice
e572ec3cc3
gnu: iproute2: Update to 5.5.0.
...
* gnu/packages/linux.scm (iproute): Update to 5.5.0.
2020-01-28 17:22:11 +01:00
Tobias Geerinckx-Rice
cd328a7315
gnu: Add bcachefs-tools.
...
* gnu/packages/file-systems.scm (bcachefs-tools): New public variable.
2020-01-28 17:22:05 +01:00
Jonathan Brielmaier
87146f3116
gnu: lxqt: Correct home page.
...
* gnu/packages/lxqt.scm (lxqt)[home-page]: It's lxqt not lxde.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-28 15:44:11 +01:00
Efraim Flashner
333d15790c
gnu: kde-systemtools.scm: Adjust module imports.
...
* gnu/packages/kde-systemtools.scm: Remove libvnc, add vnc.
2020-01-28 15:39:18 +02:00
Guillaume Le Vaillant
d823fd96b5
gnu: Add bruteforce-luks.
...
* gnu/packages/password-utils.scm (bruteforce-luks): New variable.
2020-01-28 14:26:49 +01:00
Hartmut Goebel
7059b1a222
gnu: Add ksystemlog.
...
* gnu/packages/kde-systemtools.scm (ksystemlog): New variable.
2020-01-28 13:08:41 +01:00
Hartmut Goebel
9808d6c559
gnu: Add krfb.
...
* gnu/packages/kde-systemtools.scm (krfb): New variable.
2020-01-28 13:08:40 +01:00
Hartmut Goebel
c1827284e6
gnu: Add konsole.
...
* gnu/packages/kde-systemtools.scm (konsole): New variable.
2020-01-28 13:08:40 +01:00
Hartmut Goebel
05ddf22c44
gnu: Add khelpcenter.
...
* gnu/packages/kde-systemtools.scm (khelpcenter): New variable.
2020-01-28 13:08:39 +01:00
Hartmut Goebel
a4317df4c8
gnu: Add dolphin-plugins.
...
* gnu/packages/kde-systemtools.scm (dolphin-plugins): New variable.
2020-01-28 13:08:39 +01:00
Hartmut Goebel
af204f933f
gnu: Add dolphin.
...
* gnu/packages/kde-system.scm: New file.
* gnu/local.mk: Add it.
2020-01-28 13:08:39 +01:00
Hartmut Goebel
1562210516
gnu: Add baloo-widgets.
...
* gnu/packages/kde.scm (baloo-widgets): New variable.
2020-01-28 13:08:38 +01:00
Hartmut Goebel
cd165d105a
gnu: Cleanup KDE packages to use the update qt-build-system.
...
* gnu/packages/kde.scm (grantleetheme): [arguments] Remove.
(kdeconnect)[arguments]<phases>{check-setup}: Remove.
libkdegames: Use qt-build-system. [arguments]: Remove.
* gnu/packages/kde-frameworks.scm (kguiaddons, kitemmodels,
kitemviews, kplotting, sonnet, kcompletion, kcrash, kdesignerplugin,
kglobalaccel, kparts, ktextwidgets, khtml, kmediaplayer): Use
qt-build-system. [arguments]: Remove.
(kpeople): Use qt-build-system. [arguments]<phases>: Remove.
(kconfigwidgets, kwidgetsaddons) Use qt-build-system.
[arguments]<phases>{check-setup}: Remove.
* gnu/packages/kde-plasma.scm (kdecoration) Use qt-build-system.
[arguments]: Remove.
(libkscreen): Use qt-build-system. [arguments]<phases>: Remove.
(libksysguard): Use qt-build-system.
[arguments]<phases>{check-setup}: Remove.
* gnu/packages/kde-utils.scm (kronometer, rsibreak): [arguments]
Remove.
2020-01-28 13:03:08 +01:00
Hartmut Goebel
8377512e0c
guix: qt-build-system: Add phase check-setup.
...
* guix/build/qt-build-system.scm (check-setup): New function.
(%standard-phases): Add as new phase `check-setup before `check.
* doc/guix.texi (Build System)[qt-build-system]: Describe the new phase.
2020-01-28 13:03:08 +01:00
Nicolas Goaziou
f4167bdad7
gnu: education.scm: Update copyright line.
2020-01-28 10:34:24 +01:00
Nicolas Goaziou
3450bb81e2
gnu: Add omnitux.
...
* gnu/packages/education.scm (omnitux): New variable.
2020-01-28 10:33:30 +01:00
Amin Bandali
2fe83ce10f
gnu: Add emacs-delight.
...
* gnu/packages/emacs-xyz.scm (emacs-delight): New variable.
2020-01-28 10:28:04 +01:00
Efraim Flashner
c8f16c7f7e
gnu: ocaml-ctypes: Don't use unstable tarball.
...
* gnu/packages/ocaml.scm (ocaml-ctypes)[source]: Download using git-fetch.
[arguments]: Add phase to make files writable.
2020-01-28 11:25:17 +02:00
Efraim Flashner
4d85a7dd26
gnu: ocaml-ocplib-endian: Don't use unstable tarball.
...
* gnu/packages/ocaml.scm (ocaml-ocplib-endian)[source]: Download using
git-fetch.
2020-01-28 11:25:17 +02:00
Efraim Flashner
8684575a88
gnu: ocaml-lwt: Don't use unstable tarball.
...
* gnu/packages/ocaml.scm (ocaml-lwt)[source]: Download using git-fetch.
2020-01-28 11:25:14 +02:00
Amin Bandali
19568f9e79
gnu: Add emacs-mwim.
...
* gnu/packages/emacs-xyz.scm (emacs-mwim): New variable.
2020-01-28 10:15:41 +01:00
Jakub Kądziołka
479f401361
gnu: Add python-pypng.
...
* gnu/packages/python-xyz.scm (python-pypng): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2020-01-28 09:27:56 +01:00
Nicolas Goaziou
cfb065fcb9
gnu: Add emacs-boxquote.
...
* gnu/packages/emacs-xyz.scm (emacs-boxquote): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2020-01-28 09:23:56 +01:00
Efraim Flashner
84c10c3b22
gnu: gourmet: Adjust install phase.
...
* gnu/packages/nutrition.scm (gourmet)[arguments]: Adjust custom
'install phase.
2020-01-28 10:20:57 +02:00
Efraim Flashner
2545ab2a0c
gnu: gourmet: Don't use unstable tarball.
...
* gnu/packages/nutrition.scm (gourmet)[source]: Download using git-fetch.
2020-01-28 10:20:56 +02:00
Nicolas Goaziou
d5a08205eb
gnu: manuskript: Update to 0.11.0.
...
* gnu/packages/text-editors.scm (manuskript): Update to 0.11.0.
2020-01-28 09:18:01 +01:00
Nicolas Goaziou
a3cad594c0
gnu: emacs-xyz: Update copyright header.
2020-01-28 08:46:40 +01:00
Nicolas Goaziou
26d361b5cf
gnu: Add emacs-company-ebdb.
...
* gnu/packages/emacs-xyz.scm (emacs-company-ebdb): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2020-01-28 08:44:50 +01:00
Efraim Flashner
a947ade67d
gnu: Add vim-guix-vim.
...
* gnu/packages/vim.scm (vim-guix-vim): New variable.
2020-01-28 09:35:07 +02:00
Jakub Kądziołka
7ee8acbb76
gnu: Add bvi.
...
* gnu/packages/hexedit.scm (bvi): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-28 00:36:39 +01:00
Jakub Kądziołka
e53829be49
gnu: termite: Open links properly without xdg-utils in profile
...
* gnu/packages/terminals.scm (termite)[inputs]: Add XDG-UTILS.
[arguments](patch-xdg-open): New phase.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-28 00:36:39 +01:00
Gábor Boskovits
412622ad66
gnu: go-github-com-prometheus-node-exporter: Update to 0.18.1.
...
* gnu/packages/monitoring.scm
(go-github-com-prometheus-node-exporter): Update to 0.18.1.
2020-01-28 00:32:06 +01:00
Alexandros Theodotou
93f4511eb0
gnu: Add zrythm.
...
* gnu/packages/music.scm (zrythm): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-27 23:19:35 +01:00
Alexandros Theodotou
5d703da3f7
gnu: Add libaudec.
...
* gnu/packages/audio.scm (libaudec): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-27 23:14:20 +01:00
Ludovic Courtès
2d3a622d04
gnu: guile-charting: Add "guile3.0-charting" variant.
...
* gnu/packages/plotutils.scm (guile-charting)[source]: In 'snippet',
have 'configure' look for 3.0.
(guile3.0-charting): New variable.
2020-01-27 23:03:07 +01:00
Ludovic Courtès
cd903b0443
git-authenticate: Add roptat's new key.
...
This is a followup to 2cbede5935 .
* build-aux/git-authenticate.scm (%committers): Add roptat's new key.
2020-01-27 23:03:07 +01:00
Ludovic Courtès
150c38c2ed
gnu: sicp: Do not import module from the host Guile.
...
This is a followup to 4144eb195c
and 5e61de2421 .
* gnu/packages/scheme.scm (sicp)[arguments]: Remove (srfi srfi-26) from
#:modules.
2020-01-27 23:03:07 +01:00
Roel Janssen
a38bf7c843
gnu: Add r-deconstructsigs.
...
* gnu/packages/bioconductor.scm (r-deconstructsigs): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2020-01-27 22:31:19 +01:00
Danny Milosavljevic
4fc4e5fdd9
gnu: gnome: Remove gnome-initial-setup.
...
Fixes <https://bugs.gnu.org/39281 >
Reported by Jack Hill <jackhill@jackhill.us >.
* gnu/packages/gnome.scm (gnome)[propagated-inputs]: Remove
gnome-initial-setup.
2020-01-27 21:26:10 +01:00
Ricardo Wurmus
94600c3960
gnu: r-gviz: Update to 1.30.1.
...
* gnu/packages/bioinformatics.scm (r-gviz): Update to 1.30.1.
2020-01-27 20:48:36 +01:00
Ricardo Wurmus
c7b98a84d9
gnu: r-genomicfeatures: Update to 1.38.1.
...
* gnu/packages/bioinformatics.scm (r-genomicfeatures): Update to 1.38.1.
2020-01-27 20:48:36 +01:00
Ricardo Wurmus
caf4290bd8
gnu: r-s4vectors: Update to 0.24.3.
...
* gnu/packages/bioinformatics.scm (r-s4vectors): Update to 0.24.3.
2020-01-27 20:48:36 +01:00
Ricardo Wurmus
0dfaebfa2e
gnu: r-multiassayexperiment: Update to 1.12.2.
...
* gnu/packages/bioconductor.scm (r-multiassayexperiment): Update to 1.12.2.
2020-01-27 20:48:36 +01:00
Ricardo Wurmus
c5d75df366
gnu: r-ropls: Update to 1.18.8.
...
* gnu/packages/bioconductor.scm (r-ropls): Update to 1.18.8.
2020-01-27 20:48:36 +01:00
Ricardo Wurmus
062cbc4f2b
gnu: r-destiny: Update to 3.0.1.
...
* gnu/packages/bioconductor.scm (r-destiny): Update to 3.0.1.
2020-01-27 20:48:36 +01:00
Mark H Weaver
678f651e8d
gnu: linux-libre@4.19: Update to 4.19.99.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.99.
(linux-libre-4.19-pristine-source): Update hash.
2020-01-27 14:38:13 -05:00
Mark H Weaver
3c6332128a
gnu: linux-libre@4.14: Update to 4.14.168.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.168.
(linux-libre-4.14-pristine-source): Update hash.
2020-01-27 14:37:16 -05:00
Pierre Neidhardt
11f46dc9de
gnu: emacs-gif-screencast: Update to 1.1.
...
* gnu/packages/emacs-xyz.scm (emacs-gif-screencast): Update to 1.1.
2020-01-27 20:28:55 +01:00
Amin Bandali
fcb510c541
gnu: light: Install udev rules to allow sudo-less invocations.
...
* gnu/packages/linux.scm (light)[arguments]: Substitute the absolute paths
of chgrp and chmod in 90-backlight.rules and install the rules file to the
special lib/udev/rules.d/ directory of the out output. This allows for
any member of the video group to set brightness using light without sudo.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-27 19:58:21 +02:00
Efraim Flashner
61b95c15cf
build: cargo-build-system: Add pkg-config environment variables.
...
* guix/build/cargo-build-system.scm (configure): Add environment
variables to use system libgit2 and libssh2.
* gnu/packages/crates-io.scm (rust-libgit2-sys-0.10,
rust-libssh2-sys-0.2)[arguments]: Remove LIBGIT2 and LIBSSH2 environment
variable settings.
* gnu/packages/rust-apps.scm (tokei)[arguments]: Same.
2020-01-27 18:39:10 +02:00
Efraim Flashner
d0c4d1abfe
gnu: rust-pcre2-sys-0.2: Delete vendored code.
...
* gnu/packages/crates-io.scm (rust-pcre2-sys-0.2)[source]: Delete
vendored code.
[arguments]: Remove custom phase.
(rust-pcre2-0.2, rust-grep-pcre2-0.1)[arguments]: Enable build.
[native-inputs]: Add pkg-config, pcre2.
2020-01-27 18:36:12 +02:00
Efraim Flashner
d6dde77d7f
gnu: rust-libz-sys-1.0: Remove vendored code.
...
* gnu/packages/crates-io.scm (rust-libz-sys-1.0)[source]: Remove
vendored code.
[arguments]: Remove custom phase.
(rust-libgit2-sys-0.10)[arguments]: Don't unvendor missing code.
(rust-libssh2-sys-0.2)[arguments]: Same.
* gnu/packages/rust-apps.scm (tokei)[arguments]: Same.
2020-01-27 18:36:12 +02:00
Efraim Flashner
bba73d473a
gnu: rust-lzma-sys-0.1: Remove vendored code.
...
* gnu/packages/crates-io.scm (rust-lzma-sys-0.1)[source]: Remove
vendored code.
[arguments]: Remove custom phase.
2020-01-27 18:36:12 +02:00
Efraim Flashner
ad03f50fa8
gnu: rust-libssh2-sys-0.2: Remove vendored code.
...
* gnu/packages/crates-io.scm (rust-libssh2-sys-0.2)[source]: Remove
vendored code.
[arguments]: Don't remove missing vendored code.
(rust-libgit2-sys-0.10)[arguments]: Same.
* gnu/packages/rust-apps.scm (tokei)[arguments]: Same.
2020-01-27 18:36:11 +02:00
Efraim Flashner
e2302953d5
gnu: rust-jemalloc-sys-0.3: Remove vendored code.
...
* gnu/packages/crates-io.scm (rust-jemalloc-sys-0.3)[source]: Remove
vendored code.
[arguments]: Don't remove missing vendored code.
2020-01-27 18:36:11 +02:00
Efraim Flashner
0173e69f52
gnu: rust-libgit2-sys-0.10: Remove vendored code.
...
* gnu/packages/crates-io.scm (rust-libgit2-sys-0.10)[source]: Remove
vendored code.
[arguments]: Don't remove missing vendored code.
* gnu/packages/rust-apps.scm (tokei)[arguments]: Same.
2020-01-27 18:36:11 +02:00
Efraim Flashner
a13db7e2ab
build: cargo-build-system: Allow patched crates.
...
* guix/build/cargo-build-system.scm (crate-src?): Don't check for a
gzipped tarball, just make sure it's not a directory.
2020-01-27 18:36:11 +02:00
Ricardo Wurmus
2afae7fc9a
gnu: r-fpc: Update to 2.2-4.
...
* gnu/packages/statistics.scm (r-fpc): Update to 2.2-4.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
2c676da719
gnu: r-rrcov: Update to 1.5-2.
...
* gnu/packages/statistics.scm (r-rrcov): Update to 1.5-2.
[propagated-inputs]: Remove r-cluster.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
1003fd5142
gnu: r-tidyr: Update to 1.0.2.
...
* gnu/packages/statistics.scm (r-tidyr): Update to 1.0.2.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
68146b9605
gnu: r-rngtools: Update to 1.5.
...
* gnu/packages/statistics.scm (r-rngtools): Update to 1.5.
[propagated-inputs]: Remove r-pkgmaker and r-stringr.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
0d3d193476
gnu: r-pkgmaker: Update to 0.31.
...
* gnu/packages/statistics.scm (r-pkgmaker): Update to 0.31.
[propagated-inputs]: Add r-assertthat.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
b4a374ec99
gnu: r-xml: Update to 3.99-0.3.
...
* gnu/packages/statistics.scm (r-xml): Update to 3.99-0.3.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
1cc17e37ae
gnu: r-blob: Update to 1.2.1.
...
* gnu/packages/statistics.scm (r-blob): Update to 1.2.1.
[propagated-inputs]: Remove r-prettyunits.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
af837b9964
gnu: r-rmarkdown: Update to 2.1.
...
* gnu/packages/statistics.scm (r-rmarkdown): Update to 2.1.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
8d9e85221f
gnu: r-catools: Update to 1.18.0.
...
* gnu/packages/statistics.scm (r-catools): Update to 1.18.0.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
564c3330ed
gnu: r-rcpparmadillo: Update to 0.9.800.4.0.
...
* gnu/packages/statistics.scm (r-rcpparmadillo): Update to 0.9.800.4.0.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
c6d1b5dafb
gnu: r-rlang: Update to 0.4.3.
...
* gnu/packages/statistics.scm (r-rlang): Update to 0.4.3.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
545ebafe83
gnu: r-knitr: Update to 1.27.
...
* gnu/packages/statistics.scm (r-knitr): Update to 1.27.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
6748b6b458
gnu: r-foreign: Update to 0.8-75.
...
* gnu/packages/statistics.scm (r-foreign): Update to 0.8-75.
2020-01-27 16:33:30 +01:00
Ricardo Wurmus
7dd0af28f7
gnu: r-shinycssloaders: Update to 0.3.
...
* gnu/packages/cran.scm (r-shinycssloaders): Update to 0.3.
2020-01-27 16:33:29 +01:00
Ricardo Wurmus
ba6d9fdcf3
gnu: r-idpmisc: Update to 1.1.20.
...
* gnu/packages/cran.scm (r-idpmisc): Update to 1.1.20.
2020-01-27 16:33:29 +01:00
Ricardo Wurmus
05e2ed8b4f
gnu: r-rngwell: Update to 0.10-6.
...
* gnu/packages/cran.scm (r-rngwell): Update to 0.10-6.
2020-01-27 16:33:29 +01:00
Ricardo Wurmus
328b5dde4b
gnu: r-bio3d: Update to 2.4-1.
...
* gnu/packages/cran.scm (r-bio3d): Update to 2.4-1.
2020-01-27 16:33:29 +01:00
Ricardo Wurmus
5cda9ff27a
gnu: r-parameters: Update to 0.4.1.
...
* gnu/packages/cran.scm (r-parameters): Update to 0.4.1.
2020-01-27 16:33:29 +01:00
Ricardo Wurmus
394fb5f38e
gnu: r-leiden: Update to 0.3.2.
...
* gnu/packages/cran.scm (r-leiden): Update to 0.3.2.
2020-01-27 16:33:29 +01:00
Ricardo Wurmus
725086177a
gnu: r-rhpcblasctl: Update to 0.20-17.
...
* gnu/packages/cran.scm (r-rhpcblasctl): Update to 0.20-17.
2020-01-27 16:33:29 +01:00
Ricardo Wurmus
d3f58abbec
gnu: r-threejs: Update to 0.3.3.
...
* gnu/packages/cran.scm (r-threejs): Update to 0.3.3.
[native-inputs]: Use jquery 1.12.4 and threejs version r111.
[arguments]: Adjust.
2020-01-27 16:33:29 +01:00
Ricardo Wurmus
93e63562fb
gnu: r-farver: Update to 2.0.3.
...
* gnu/packages/cran.scm (r-farver): Update to 2.0.3.
2020-01-27 16:33:29 +01:00
Ricardo Wurmus
105639ce33
gnu: r-adegenet: Update to 2.1.2.
...
* gnu/packages/cran.scm (r-adegenet): Update to 2.1.2.
2020-01-27 16:33:29 +01:00
Ricardo Wurmus
107c14ba84
gnu: r-cobs: Update to 1.3-4.
...
* gnu/packages/cran.scm (r-cobs): Update to 1.3-4.
2020-01-27 16:33:29 +01:00
Ricardo Wurmus
88bdfd704b
gnu: r-dorng: Update to 1.8.2.
...
* gnu/packages/cran.scm (r-dorng): Update to 1.8.2.
[propagated-inputs]: Remove r-pkgmaker.
2020-01-27 16:33:29 +01:00
Ricardo Wurmus
9073c464e5
gnu: r-future: Update to 1.16.0.
...
* gnu/packages/cran.scm (r-future): Update to 1.16.0.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
6c6d051322
gnu: r-rmpfr: Update to 0.8-1.
...
* gnu/packages/cran.scm (r-rmpfr): Update to 0.8-1.
[inputs]: Add gmp.
[native-inputs]: Add pkg-config.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
6378827a71
gnu: r-gmp: Update to 0.5-13.6.
...
* gnu/packages/cran.scm (r-gmp): Update to 0.5-13.6.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
e99caf8a4c
gnu: r-afex: Update to 0.26-0.
...
* gnu/packages/cran.scm (r-afex): Update to 0.26-0.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
5b959414e0
gnu: r-gh: Update to 1.1.0.
...
* gnu/packages/cran.scm (r-gh): Update to 1.1.0.
[propagated-inputs]: Add r-cli.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
4a7e857617
gnu: r-sjplot: Update to 2.8.2.
...
* gnu/packages/cran.scm (r-sjplot): Update to 2.8.2.
[propagated-inputs]: Remove r-ggrepel, r-glmmtmb, r-lme4, r-magrittr,
r-modelr, and r-psych.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
a4bc993f7b
gnu: r-effectsize: Update to 0.1.1.
...
* gnu/packages/cran.scm (r-effectsize): Update to 0.1.1.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
d56026a85f
gnu: r-performance: Update to 0.4.3.
...
* gnu/packages/cran.scm (r-performance): Update to 0.4.3.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
5c61d3e5b5
gnu: r-bayestestr: Update to 0.5.1.
...
* gnu/packages/cran.scm (r-bayestestr): Update to 0.5.1.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
3575a16b7f
gnu: r-sjstats: Update to 0.17.8.
...
* gnu/packages/cran.scm (r-sjstats): Update to 0.17.8.
[propagated-inputs]: Add r-effectsize.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
6cdd12542a
gnu: r-survey: Update to 3.37.
...
* gnu/packages/cran.scm (r-survey): Update to 3.37.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
a6494403b3
gnu: r-magick: Update to 2.3.
...
* gnu/packages/cran.scm (r-magick): Update to 2.3.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
a82e617bf8
gnu: r-sjlabelled: Update to 1.1.2.
...
* gnu/packages/cran.scm (r-sjlabelled): Update to 1.1.2.
[propagated-inputs]: Remove r-magrittr, r-purrr, r-rlang, and r-tidyselect.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
8958b37eb8
gnu: r-factominer: Update to 2.1.
...
* gnu/packages/cran.scm (r-factominer): Update to 2.1.
2020-01-27 16:33:28 +01:00
Ricardo Wurmus
addf7bc2b1
gnu: r-leaps: Update to 3.1.
...
* gnu/packages/cran.scm (r-leaps): Update to 3.1.
2020-01-27 16:33:27 +01:00
Ricardo Wurmus
c23b40335d
gnu: r-vctrs: Update to 0.2.2.
...
* gnu/packages/cran.scm (r-vctrs): Update to 0.2.2.
[propagated-inputs]: Remove r-backports and r-zeallot.
2020-01-27 16:33:27 +01:00
Ricardo Wurmus
8a8e296406
gnu: r-tsp: Update to 1.1-8.
...
* gnu/packages/cran.scm (r-tsp): Update to 1.1-8.
2020-01-27 16:33:27 +01:00
Ricardo Wurmus
485b9cea5a
gnu: r-xts: Update to 0.12-0.
...
* gnu/packages/cran.scm (r-xts): Update to 0.12-0.
2020-01-27 16:33:27 +01:00
Ricardo Wurmus
e5b38da1cc
gnu: r-broom: Update to 0.5.4.
...
* gnu/packages/cran.scm (r-broom): Update to 0.5.4.
2020-01-27 16:33:27 +01:00
Ricardo Wurmus
fde9fc4871
gnu: r-lpsolve: Update to 5.6.15.
...
* gnu/packages/cran.scm (r-lpsolve): Update to 5.6.15.
2020-01-27 16:33:27 +01:00
Ricardo Wurmus
0be161720c
gnu: r-prettyunits: Update to 1.1.1.
...
* gnu/packages/cran.scm (r-prettyunits): Update to 1.1.1.
2020-01-27 16:33:27 +01:00
Ricardo Wurmus
6e27edda2c
gnu: r-rgooglemaps: Update to 1.4.5.2.
...
* gnu/packages/cran.scm (r-rgooglemaps): Update to 1.4.5.2.
2020-01-27 16:33:27 +01:00
Ricardo Wurmus
f0eecc6be9
gnu: r-callr: Update to 3.4.1.
...
* gnu/packages/cran.scm (r-callr): Update to 3.4.1.
2020-01-27 16:33:27 +01:00
Ricardo Wurmus
c6b4b4e719
gnu: r-diversitree: Update to 0.9-13.
...
* gnu/packages/bioinformatics.scm (r-diversitree): Update to 0.9-13.
2020-01-27 16:33:27 +01:00
Ricardo Wurmus
fd6412cd2c
gnu: r-metap: Update to 1.3.
...
* gnu/packages/bioconductor.scm (r-metap): Update to 1.3.
2020-01-27 16:33:27 +01:00
Ludovic Courtès
5e61de2421
gnu: python-testpath: Remove incorrect #:imported-modules.
...
Fixes <https://bugs.gnu.org/39298 >.
Reported by Clément Lassieur <clement@lassieur.org >
and Ricardo Wurmus <rekado@elephly.net >.
This pacakge would import (srfi srfi-1) from the host Guile, leading to
build failures when the host Guile is 3.0.
* gnu/packages/check.scm (python-testpath)[arguments]: Remove incorrect
#:imported-modules.
2020-01-27 14:18:12 +01:00
David Wilson
1f7f16dced
gnu: emacs-org-make-toc: Update to 0.4.
...
* gnu/packages/emacs-xyz.scm (emacs-org-make-toc): Update to 0.4
2020-01-27 04:42:14 -08:00
宋文武
4a0e49279d
gnu: public-inbox: Enable support for background HTTP/NNTP daemons.
...
* gnu/packages/mail.scm (public-inbox)[inputs]: Add perl-net-server.
2020-01-27 17:38:49 +08:00
Efraim Flashner
71ffa528ef
gnu: keepassxc: Update to 2.5.3.
...
* gnu/packages/password-utils.scm (keepassxc): Update to 2.5.3.
2020-01-27 10:37:35 +02:00
宋文武
47ea2ad196
gnu: s6: Install documentation.
...
* gnu/packages/skarnet.scm (s6)[arguments]: Add 'install-doc' phase.
2020-01-27 11:41:45 +08:00
Julien Lepiller
87858bc526
gnu: ocaml: Switch to ocaml 4.09 by default.
...
Bap and earley cannot be updated as they do not support 4.09 yet. Bap requires
the janestreet packages, which cannot be upgraded as no version supports
4.09 and 4.07 at the same time. Moreover, newer versions of the
janestreet packages have a different dependency graph, which will
require a whole new set of packages. We cannot simply use
package-with-ocaml4.07 on them.
* gnu/packages/ocaml.scm (ocaml-sqlite3, ocaml-ppx-tools, ocaml-gen)
(ocaml-sedlex, ocaml-pcre, ocaml-expect, ocaml-ezjsonm, ocaml-uri)
(ocaml-piqilib, ocaml-piqi, ocaml-charinfo-width, ocaml-zed)
(ocaml-lambda-term, ocaml-utop, ocaml-ppx-inline-test, ocaml-earley)
(ocaml-merlin, ocaml-gsl, ocaml-gsl-1, ocaml-sexplib0, ocaml-parsexp)
(ocaml-sexplib, ocaml-base, ocaml-stdio, ocaml-ppxlib, ocaml-ppx-compare)
(ocaml-fieldslib, ocaml-variantslib, ocaml-ppx-fields-conv)
(ocaml-ppx-sexp-conv, ocaml-ppx-variants-conv, ocaml-ppx-custom-printf)
(ocaml-bin-prot, ocaml-ppx-hash, ocaml-ppx-enumerate, ocaml-ppx-bench)
(ocaml-ppx-here, ocaml-ppx-typerep, ocaml-ppx-sexp-value)
(ocaml-ppx-sexp-message, ocaml-ppx-pipebang, ocaml-ppx-optional)
(ocaml-ppx-optcomp, ocaml-ppx-fail, ocaml-ppx-let, ocaml-ppx-assert)
(ocaml-ppx-expect, ocaml-ppx-js-style, ocaml-ppx-typerep-conv)
(ocaml-ppx-base, ocaml-ppx-bin-prot, ocaml-ppx-jane)
(ocaml-splittable-random, ocaml-configurator, ocaml-spawn, ocaml-core)
(ocaml-core-kernel, ocaml-odoc, ocaml-fftw3, ocaml-lacaml): Rename to ...
(ocaml4.07-sqlite3, ocaml4.07-ppx-tools, ocaml4.07-gen, ocaml4.07-sedlex)
(ocaml4.07-pcre, ocaml4.07-expect, ocaml4.07-ezjsonm, ocaml4.07-uri)
(ocaml4.07-piqilib, ocaml4.07-piqi, ocaml4.07-charinfo-width)
(ocaml4.07-zed, ocaml4.07-lambda-term, ocaml4.07-utop)
(ocaml4.07-ppx-inline-test, ocaml4.07-earley, ocaml4.07-merlin)
(ocaml4.07-gsl, ocaml4.07-gsl-1, ocaml4.07-sexplib0, ocaml4.07-parsexp)
(ocaml4.07-sexplib, ocaml4.07-base, ocaml4.07-stdio, ocaml4.07-ppxlib)
(ocaml4.07-ppx-compare, ocaml4.07-fieldslib, ocaml4.07-variantslib)
(ocaml4.07-ppx-fields-conv, ocaml4.07-ppx-sexp-conv)
(ocaml4.07-ppx-variants-conv, ocaml4.07-ppx-custom-printf)
(ocaml4.07-bin-prot, ocaml4.07-ppx-hash, ocaml4.07-ppx-enumerate)
(ocaml4.07-ppx-bench, ocaml4.07-ppx-here, ocaml4.07-ppx-typerep)
(ocaml4.07-ppx-sexp-value, ocaml4.07-ppx-sexp-message)
(ocaml4.07-ppx-pipebang, ocaml4.07-ppx-optional, ocaml4.07-ppx-optcomp)
(ocaml4.07-ppx-fail, ocaml4.07-ppx-let, ocaml4.07-ppx-assert)
(ocaml4.07-ppx-expect, ocaml4.07-ppx-js-style)
(ocaml4.07-ppx-typerep-conv, ocaml4.07-ppx-base, ocaml4.07-ppx-bin-prot)
(ocaml4.07-ppx-jane, ocaml4.07-splittable-random)
(ocaml4.07-configurator, ocaml4.07-spawn, ocaml4.07-core)
(ocaml4.07-core-kernel, ocaml4.07-odoc, ocaml4.07-fftw3)
(ocaml4.07-lacaml): ... to this and use ocaml 4.07.
(bap, unison): Use ocaml-4.07.
* gnu/packages/bioinformatics.scm (pplacer): Use ocaml-4.07.
2020-01-27 03:56:06 +01:00
Julien Lepiller
1e8da4cdef
guix: ocaml: Also replace dune when relevant in package-with-explicit-ocaml.
...
* guix/build-system/ocaml.scm (package-with-explicit-ocaml): Take a dune
argument and add it to transformed packages when relevant.
2020-01-27 03:55:52 +01:00
Julien Lepiller
0ccd9463ec
gnu: Add ocaml4.07-dune.
...
* gnu/packages/ocaml.scm (ocaml4.07-dune): New variable.
2020-01-27 03:55:42 +01:00
Julien Lepiller
73c26d5729
gnu: Add ocaml4.07-lablgtk.
...
* gnu/packages/ocaml.scm (ocaml4.07-lablgtk): New variable.
(lablgtk)[properties]: Add variant.
2020-01-27 03:55:27 +01:00
Julien Lepiller
7a4780ce9d
gnu: ocambuild: Update to 0.14.0.
...
* gnu/packages/ocaml.scm (ocamlbuild): Update to 0.14.0.
[build-system]: Use ocaml-build-system.
2020-01-27 03:54:52 +01:00
Kei Kebreau
1ef71f5225
gnu: pcsxr: Wrap with GSETTINGS_SCHEMA_DIR path variable.
...
Without setting this path variable, gtk+ must be installed in the user's
profile for pcsxr's GUI to work.
* gnu/packages/emulators.scm (pcsxr)[arguments]: Add 'wrap-program' phase and
return #t from 'cd-subdir' and 'fix-cdio-lookup' phases.
2020-01-26 19:12:22 -05:00
Marius Bakke
4144eb195c
gnu: sicp: Remove unused module import.
...
* gnu/packages/scheme.scm (sicp)[arguments]: Do not import (srfi srfi-1).
2020-01-27 00:47:57 +01:00
Nicolas Goaziou
2e4ea249a1
gnu: emacs-org-contrib: Update to 20200126.
...
* gnu/packages/emacs-xyz.scm (emacs-org-contrib): Update to 20200126.
2020-01-27 00:02:34 +01:00
Nicolas Goaziou
406c7bc6cd
gnu: emacs-org: Update to 9.3.2.
...
* gnu/packages/emacs-xyz.scm (emacs-org): Update to 9.3.2.
2020-01-26 23:58:23 +01:00
Nicolas Goaziou
753c9b7c19
gnu: emacs-modus-themes: Update to 0.4.0.
...
* gnu/packages/emacs-xyz.scm (emacs-modus-themes): Update to 0.4.0.
2020-01-26 23:56:25 +01:00
Marius Bakke
1d7051f82b
Merge branch 'master' into staging
2020-01-26 23:40:24 +01:00
Marius Bakke
435c2c39aa
Revert "gnu: Add python-pathtools."
...
This package was already in Guix since commit
dbcef44a0b .
This reverts commit 87435943d1 .
2020-01-26 23:39:35 +01:00
Marius Bakke
fed17bcad9
Revert "gnu: Add python-iocapture."
...
This package was already in Guix since commit
dbcef44a0b .
This reverts commit 2cb4ee2787 .
2020-01-26 23:39:35 +01:00
Marius Bakke
3293b1bce9
Revert "gnu: Add python-argh."
...
This package was already in Guix since commit
db6bd842aa .
This reverts commit fb4db07467 .
2020-01-26 23:39:35 +01:00
Alexander Krotov
7ff169d04f
guix-install.sh: Correctly treat empty or unset $XDG_DATA_DIRS
...
If $XDG_DATA_DIRS is unset, default value of "/usr/local/share:/usr/share"
is used according to XDG Base Directory Specification. However,
/etc/profile.d/guix.sh treats this value as empty list when appending its
own directory, so after installing Guix on the system, launchers such
as Rofi stop searching for .desktop files in /usr/share/applications/
and can't launch applications other than those installed with Guix.
This patch fixes the bug in generated /etc/profile.d/guix.sh
* etc/guix-install.sh (sys_create_init_profile): Use default value of
/usr/local/share:/usr/share/ before appending if $XDG_DATA_DIRS is not
set.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-26 23:21:39 +01:00
Prafulla Giri
29ba58c0ef
guix-install.sh: Create /etc/profile.d if it does not exist
...
* etc/guix-install.sh (sys_create_init_profile): Add code to create
/etc/profile.d if it somehow does not exist; the function still carries
on because it is possible that /etc/profile is still configured to read
the *.sh files from /etc/profile.d, if they exist.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-26 23:21:39 +01:00
Prafulla Giri
5c03516a6b
guix-install.sh: Export INFOPATH to contain updated guix info-pages
...
* etc/guix-install.sh (sys_create_init_profile): Export INFOPATH to include
the updated info-pages from ~/.config/guix/current/share/info. This also makes
sure that both /usr/bin/info and $GUIX_PROFILE/bin/info can read guix info pages
without throwing "no menu item 'guix' in node dir(Top)" error.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-26 23:21:39 +01:00
Ludovic Courtès
98dd9ff800
gnu: mailutils: Add "guile3.0-mailutils" variant.
...
* gnu/packages/mail.scm (mailutils)[arguments]: In #:configure-flags,
replace hard-coded "2.2" with the 'version-major+minor' of the "guile"
input.
(guile3.0-mailutils): New variable.
2020-01-26 23:21:38 +01:00
Joseph LaFreniere
3d11114d22
gnu: Add emacs-vterm.
...
* gnu/packages/emacs-xyz.scm (emacs-vterm): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-26 23:21:38 +01:00
Mark H Weaver
af46f6e40a
gnu: linux-libre: Update to 5.4.15.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.15.
(linux-libre-5.4-pristine-source): Update hash.
2020-01-26 13:33:49 -05:00
Nicolas Goaziou
fb85b967f6
gnu: Add missing modules.
...
* gnu/packages/text-editors.scm: Add missing modules.
2020-01-26 19:25:19 +01:00
Nicolas Goaziou
3fad9a6923
gnu: Add qemacs.
...
* gnu/packages/text-editors.scm (qemacs): New variable.
2020-01-26 19:24:38 +01:00
Julien Lepiller
2cbede5935
gnu: Add offlate.
...
* gnu/packages/python-xyz.scm (offlate): New variable.
2020-01-26 18:50:16 +01:00
Julien Lepiller
7dec888f4f
gnu: Add python-watchdog.
...
* gnu/packages/python-xyz.scm (python-watchdog): New variable.
2020-01-26 18:50:13 +01:00
Julien Lepiller
fb4db07467
gnu: Add python-argh.
...
* gnu/packages/python-xyz.scm (python-argh): New variable.
2020-01-26 18:50:11 +01:00
Julien Lepiller
2cb4ee2787
gnu: Add python-iocapture.
...
* gnu/packages/python-xyz.scm (python-iocapture): New variable.
2020-01-26 18:50:09 +01:00
Julien Lepiller
87435943d1
gnu: Add python-pathtools.
...
* gnu/packages/python-xyz.scm (python-pathtools): New variable.
2020-01-26 18:50:07 +01:00
Julien Lepiller
b487b7b5bb
gnu: Add python-android-stringslib.
...
* gnu/packages/python-xyz.scm (python-android-stringslib): New variable.
2020-01-26 18:50:05 +01:00
Julien Lepiller
ad429e0de7
gnu: Add python-gitlab.
...
* gnu/packages/python-web.scm (python-gitlab): New variable.
2020-01-26 18:50:04 +01:00
Julien Lepiller
63f76ab29e
gnu: add python-httmock.
...
* gnu/packages/python-check.scm (python-httmock): New variable.
2020-01-26 18:50:02 +01:00
Julien Lepiller
18d18ee139
gnu: Add python-translation-finder.
...
* gnu/packages/python-web.scm (python-translation-finder): New variable.
2020-01-26 18:50:00 +01:00
Julien Lepiller
9532c0bb17
gnu: Add python-codacy-coverage.
...
* gnu/packages/python-check.scm (python-codacy-coverage): New variable.
2020-01-26 18:49:58 +01:00
Julien Lepiller
7261bdca4e
gnu: Add python-check-manifest.
...
* gnu/packages/python-xyz.scm (python-check-manifest): New variable.
2020-01-26 18:49:56 +01:00
Julien Lepiller
43b4f936b9
gnu: Add python-pyenchant.
...
* gnu/packages/enchant.scm (python-pyenchant): New variable.
2020-01-26 18:49:51 +01:00
Damien Cassou
9a5edd0240
services: Fix typo in spice-vdagent-service.
...
* gnu/services/spice.scm (spice-vdagent-service): Fix typo.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-26 18:45:09 +01:00
Marius Bakke
3cb8cb6660
gnu: ghmm: Fix missing module import.
...
This is a follow-up to commit 9c2563a80b .
* gnu/packages/machine-learning.scm (ghmm)[arguments]: Add #:modules.
2020-01-26 16:30:25 +01:00
Marius Bakke
cf07ec200c
gnu: kobodeluxe: Provide missing dependency.
...
* gnu/packages/games.scm (kobodeluxe)[inputs]: Add GLU.
2020-01-26 16:30:25 +01:00
Marius Bakke
80921d298a
gnu: freeglut@2: Override inherited package arguments.
...
This is a follow-up to commit 5f61304737 .
* gnu/packages/gl.scm (freeglut-2.8)[arguments]: New field.
2020-01-26 15:47:04 +01:00
Ricardo Wurmus
6f85a9c45f
gnu: ir: Update to 1.3.4.
...
* gnu/packages/audio.scm (ir): Update to 1.3.4.
[source]: Fetch via git.
[home-page]: Update.
[arguments]: Pass INSTDIR.
2020-01-26 14:30:44 +01:00
Marius Bakke
c17fb65907
gnu: libofx: Disable parallel build.
...
* gnu/packages/finance.scm (libofx)[arguments]: Add #:parallel-build?.
2020-01-26 13:59:39 +01:00
Marius Bakke
f8a94609d3
gnu: python-xmlschema: Update to 1.1.0.
...
* gnu/packages/xml.scm (python-xmlschema): Update to 1.1.0.
[source]: Change to GIT-FETCH.
[arguments]: Adjust test invokation.
2020-01-26 13:59:39 +01:00
Marius Bakke
e272783bdb
gnu: python-elementpath: Update to 1.4.0.
...
* gnu/packages/xml.scm (python-elementpath): Update to 1.4.0.
2020-01-26 13:59:39 +01:00
Efraim Flashner
89c756012c
gnu: font-mathjax: Don't use unstable tarball.
...
* gnu/packages/javascript.scm (font-mathjax)[source]: Download using
git-fetch.
[arguments]: Adjust for change in source.
[native-inputs]: Remove gzip, tar.
(js-mathjax)[source]: Adjust for change in source.
2020-01-26 14:55:07 +02:00
Efraim Flashner
504b9ba7f9
gnu: vim-fugitive: Update to 3.2.
...
* gnu/packages/vim.scm (vim-fugitive): Update to 3.2.
2020-01-26 14:55:04 +02:00
Ricardo Wurmus
bfb51f5e5a
gnu: Add guile3.0-gi.
...
* gnu/packages/guile-xyz.scm (guile3.0-gi): New variable.
2020-01-26 13:09:35 +01:00
Ricardo Wurmus
195e1c1b08
gnu: guile-gi: Update to 0.2.2.
...
* gnu/packages/guile-xyz.scm (guile-gi): Update to 0.2.2.
2020-01-26 11:05:35 +01:00
Ricardo Wurmus
c67f2a7694
gnu: freehdl: Fix build.
...
* gnu/packages/engineering.scm (freehdl)[native-inputs]: Add gcc-5.
2020-01-26 10:32:39 +01:00
宋文武
99b23feeb9
gnu: public-inbox: Update to 1.2.0-0.05a06f3.
...
* gnu/packages/mail.scm (public-inbox): Update to 1.2.0-0.05a06f3.
2020-01-26 17:17:49 +08:00
Christopher Baines
7de4ea828c
gnu: cuirass: Update to 0.0.1-28.b9031db.
...
* gnu/packages/ci.scm (cuirass): Update to 0.0.1-28.b9031db.
2020-01-25 23:53:25 +00:00
Nicolas Goaziou
d63e0ee78d
gnu: mgba: Update to 0.8.0.
...
* gnu/packages/emulators.scm (mgba): Update to 0.8.0.
2020-01-25 23:49:07 +01:00
Nicolas Goaziou
3212b96491
gnu: musescore: Update to 3.4.1.
...
* gnu/packages/music.scm (musescore): Update to 3.4.1.
[source]: Remove unnecessary snippet.
[arguments]: Do not build telemetry module.
2020-01-25 23:38:52 +01:00
Nicolas Goaziou
293bc15d3b
gnu: silkaj: Update to 0.7.6.
...
* gnu/packages/finance.scm (silkaj): Update to 0.7.6.
[source]: Move to Pypi.
[home-page]: Update home page.
2020-01-25 23:03:19 +01:00
Nicolas Goaziou
c1d79b49d1
gnu: python-duniterpy: Update to 0.56.0.
...
* gnu/packages/finance.scm (python-duniterpy): Update to 0.56.0.
[source]: Move source to Pypi.
[arguments]: Add phase to work around a missing file. Remove phases building
documentation since they are not applicable anymore.
[native-inputs]: Remove it, since it is not applicable in Pypi package.
[inputs]: Replace "python-attr" with "python-attrs".
2020-01-25 23:03:18 +01:00
Brian Leung
704719edad
gnu: Add emacs-eshell-toggle.
...
* gnu/packages/emacs-xyz.scm (emacs-eshell-toggle): New variable.
2020-01-25 10:44:02 -08:00
Nicolas Goaziou
5b7fdc8289
gnu: ode: Selectively disable tests.
...
* gnu/packages/game-development.scm (ode)[arguments]: Run tests only on
x86_64.
2020-01-25 19:33:57 +01:00
Amin Bandali
df6ce9fcb4
gnu: youtube-dl: Update to 2020.01.24.
...
* gnu/packages/video.scm (youtube-dl): Update to 2020.01.24.
Signed-off-by: Arun Isaac <arunisaac@systemreboot.net >
2020-01-25 20:54:41 +05:30
Jan Nieuwenhuizen
f52fe7c3f2
bootloader: grub: Add gfxmode (resolution) override.
...
* gnu/bootloader/grub.scm (<grub-theme>): Add `gfxmode' entry.
(eye-candy): Use it.
* doc/guix.texi (Bootloader Configuration): Document it.
2020-01-25 16:09:12 +01:00
Marius Bakke
170d5844dd
gnu: python-parso: Update to 0.5.2.
...
* gnu/packages/python-xyz.scm (python-parso): Update to 0.5.2.
2020-01-25 14:56:28 +01:00
Marius Bakke
6469af6f89
gnu: python-pympler: Update to 0.8.
...
* gnu/packages/python-xyz.scm (python-pympler): Update to 0.8.
2020-01-25 14:56:28 +01:00
Marius Bakke
8fe54fa806
gnu: Remove python2-debian.
...
This trivial package fails to build and has no users in Guix.
* gnu/packages/python-xyz.scm (python2-debian): Remove variable.
2020-01-25 14:56:28 +01:00
Guillaume Le Vaillant
0edbb65d5c
gnu: Add bitcoin-unlimited.
...
* gnu/packages/finance.scm (bitcoin-unlimited): New variable.
2020-01-25 11:25:35 +01:00
Leo Famulari
f32ca55778
gnu: WebKitGTK: Update to 2.26.3.
...
* gnu/packages/webkit.scm (webkitgtk): Update to 2.26.3.
2020-01-24 21:09:33 -05:00
Leo Famulari
3778b3d9d0
gnu: QEMU: Update to 4.2.0.
...
* gnu/packages/virtualization.scm (qemu): Update to 4.2.0.
[source]: Use new patch.
* gnu/packages/patches/qemu-fix-documentation-build-failure.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
2020-01-24 21:09:33 -05:00
Leo Famulari
0411aca848
gnu: QEMU: Install the manual pages.
...
* gnu/packages/virtualization.scm (qemu)[arguments]: Add '--enable-docs'
to #:configure-flags.
[native-inputs]: Add python-sphinx.
(qemu-minimal-2.10)[native-inputs]: Remove python-sphinx.
2020-01-24 21:09:32 -05:00
Leo Famulari
f528df99f1
gnu: QEMU: Fix CVE-2020-{7039,7211}.
...
* gnu/packages/patches/qemu-CVE-2020-7039.patch,
gnu/packages/patches/qemu-CVE-2020-7211.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/virtualization.scm (qemu)[source]: Use them.
2020-01-24 21:09:28 -05:00
Josh Holland
0ef7e44439
gnu: httpie: Update to 2.0.0.
...
* gnu/packages/python-web.scm (httpie): Update to 2.0.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-25 00:14:37 +01:00
Josh Holland
69002b216e
gnu: python-pygments: Update to 2.5.2.
...
* gnu/packages/python-xyz.scm (python-pygments): Update to 2.5.2.
[home-page]: Follow redirect to https.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-25 00:01:29 +01:00
Ludovic Courtès
6713589d6b
gnu: guile-ics: Add "guile3.0-ics" variant.
...
* gnu/packages/guile-xyz.scm (guile-ics)[source]: Add 'modules' and 'snippet'.
(guile3.0-ics): New variable.
2020-01-24 23:56:43 +01:00
Ludovic Courtès
01e5d63c87
serialization: 'read-byte-string' makes a single read(2) call.
...
On "guix build libreoffice -nd", this reduces the number of read(2)
system calls from 10,434 to 8092.
* guix/serialization.scm (sub-bytevector): New procedure.
(read-byte-string): Make a single 'get-bytevector-n*' call and use
'sub-bytevector'.
2020-01-24 23:56:43 +01:00
Ludovic Courtès
09238d618a
guix build, archive, graph: Disable absolute file port name canonicalization.
...
This avoids an 'lstat' storm. Specifically:
./pre-inst-env strace -c guix build -nd libreoffice
goes from 1,711 to 214 'lstat' calls.
* guix/scripts/build.scm (options->things-to-build): When SPEC matches
'derivation-path?', call 'canonicalize-path'.
(guix-build): Remove 'with-fluids' for %FILE-PORT-NAME-CANONICALIZATION.
* guix/scripts/archive.scm (guix-archive): Remove 'with-fluids' for
%FILE-PORT-NAME-CANONICALIZATION.
* guix/scripts/graph.scm (guix-graph): Likewise.
2020-01-24 23:56:42 +01:00
Ludovic Courtès
a07d5e558b
ui: Do not display error messages with bare format strings.
...
On Guile 3, with, say, an error in ~/.guile, we'd get:
$ guix repl
guix repl: error: Unbound variable: ~S
* guix/ui.scm (call-with-error-handling): Add
'&exception-with-kind-and-args' case.
2020-01-24 23:56:42 +01:00
Brett Gilio
2aa1e76519
gnu: swi-prolog: Update to 8.1.21.
...
* gnu/packages/prolog.scm (swi-prolog): Update to 8.1.21.
2020-01-24 16:31:13 -06:00
Brett Gilio
efff7e19fa
gnu: emacs-telega: Update to 0.5.10.
...
* gnu/packages/emacs-xyz.scm (emacs-telega): Update to 0.5.10.
2020-01-24 16:19:05 -06:00
Brett Gilio
690f90857c
gnu: tdlib: Update to 1.5.5.
...
* gnu/packages/messaging.scm (tdlib): Update to 1.5.5.
2020-01-24 16:18:42 -06:00
Nicolas Goaziou
049bdae527
gnu: ode: Disable tests.
...
* gnu/packages/game-development.scm (ode): Tests are failing or other systems
than x86_64, so we disable them.
2020-01-24 22:48:49 +01:00
Nicolas Goaziou
b8088be058
gnu: wine-staging: Update to 5.0.
...
* gnu/packages/wine.scm (wine-staging-patchset-data): Update to 5.0.
(wine-staging): Update to 5.0.
[inputs]: Remove faudio, inherited from wine.
2020-01-24 22:37:32 +01:00
Nicolas Goaziou
ffa37422ac
gnu: wine: Add FAudio input.
...
* gnu/packages/wine.scm (wine)[inputs]: Add FAudio.
2020-01-24 22:37:32 +01:00
Nicolas Goaziou
4b506a3f2b
gnu: wine: Update to 5.0.
...
* gnu/packages/wine.scm (wine): Update to 5.0.
2020-01-24 22:37:26 +01:00
Jakub Kądziołka
3e67182fb1
gnu: Add megatools.
...
* gnu/packages/sync.scm (megatools): New variable.
(megacmd)[description]: Cross-reference the two packages in the description.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-01-24 21:30:58 +00:00
Jakub Kądziołka
1b02902553
gnu: Add megacmd.
...
* gnu/packages/sync.scm (megacmd): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2020-01-24 21:30:58 +00:00
Tobias Geerinckx-Rice
762867313c
news: Add ‘nl’ translation.
...
* * etc/news.scm: Add ‘nl’ translation.
2020-01-24 18:19:20 +01:00
Nicolas Goaziou
77c4ef1af9
gnu: emacs-xr: Update to 1.14.
...
* gnu/packages/emacs-xyz.scm (emacs-xr): Update to 1.14.
2020-01-24 18:06:02 +01:00
Florian Pelz
cd17ac4483
news: Add 'de' translation.
...
* etc/news.scm: Add 'de' translation.
2020-01-24 15:46:24 +00:00
Vagrant Cascadian
5b98473a1f
gnu: r-biocset: Fix spelling of "ability".
...
* gnu/packages/bioconductor (r-biocset)[description]: Fix typo.
2020-01-24 02:38:13 -08:00
Vagrant Cascadian
d16a1c9356
gnu: rust-serde-bytes-0.11: Fix spelling of "handle".
...
* gnu/packages/crates-io (rust-serde-bytes-0.11)[synopsis]: Fix typo.
2020-01-24 02:38:11 -08:00
Vagrant Cascadian
b36d132873
gnu: rust-rust-argon2-0.5: Fix spelling of "contains".
...
* gnu/packages/crates-io (rust-rust-argon2-0.5)[description]: Fix typo.
2020-01-24 02:38:09 -08:00
Vagrant Cascadian
57c844bea7
gnu: rust-which-2.0: Fix spelling of "executable".
...
* gnu/packages/crates-io (rust-which-2.0)[description]: Fix typo.
2020-01-24 02:38:06 -08:00
Vagrant Cascadian
41d06fff1f
gnu: emacs-helm-clojuredocs: Fix typo "This package".
...
* gnu/packages/emacs-xyz (emacs-helm-clojuredocs)[description]: Fix typo.
2020-01-24 02:38:02 -08:00
Vagrant Cascadian
a8d73e699e
gnu: ghc-time-compat: Fix typo "This package".
...
* gnu/packages/haskell-xyz (ghc-time-compat)[description]: Fix typo.
2020-01-24 02:38:00 -08:00
Vagrant Cascadian
a6d35eb455
gnu: ocaml-mmap: Fix spelling of "function".
...
* gnu/packages/ocaml (ocaml-mmap)[description]: Fix typo.
2020-01-24 02:37:57 -08:00
Vagrant Cascadian
4250a9638d
gnu: pinfo: Fix spelling of "additionally".
...
* gnu/packages/texinfo (pinfo)[description]: Fix typo.
2020-01-24 02:37:54 -08:00
Efraim Flashner
fd7ad89948
gnu: jimtcl: Update to 0.79.
...
* gnu/packages/embedded.scm (jimtcl): Update to 0.79.
[home-page]: Update home-page.
2020-01-24 10:31:29 +02:00
Efraim Flashner
cc17b07a02
gnu: jimtcl: Don't use unstable tarball.
...
* gnu/packages/embedded.scm (jimtcl)[source]: Download using git-fetch.
2020-01-24 10:26:53 +02:00
Efraim Flashner
fe1506a0ca
gnu: stlink: Don't use unstable tarball.
...
* gnu/packages/embedded.scm (stlink)[source]: Download using git-fetch.
2020-01-24 10:24:12 +02:00
Efraim Flashner
02aab3df21
gnu: spin2cpp: Don't use unstable tarball.
...
* gnu/packages/embedded.scm (spin2cpp)[source]: Download using git-fetch.
2020-01-24 10:16:07 +02:00
Efraim Flashner
9be1f2b77c
gnu: openspin: Don't use unstable tarball.
...
* gnu/packages/embedded.scm (openspin)[source]: Download using git-fetch.
2020-01-24 10:07:58 +02:00
Mark H Weaver
c4bdd78a6a
gnu: linux-libre: Update to 5.4.14.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.14.
(linux-libre-5.4-pristine-source): Update hash.
2020-01-23 23:16:58 -05:00
Mark H Weaver
e0376b60e1
gnu: linux-libre@4.19: Update to 4.19.98.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.98.
(linux-libre-4.19-pristine-source): Update hash.
2020-01-23 23:16:56 -05:00
Mark H Weaver
666581fd57
gnu: linux-libre@4.14: Update to 4.14.167.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.167.
(linux-libre-4.14-pristine-source): Update hash.
2020-01-23 23:16:54 -05:00
Mark H Weaver
fad00f1a75
gnu: linux-libre@4.9: Update to 4.9.211.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.211.
(linux-libre-4.9-pristine-source): Update hash.
2020-01-23 23:16:52 -05:00
Mark H Weaver
bbc87d09d0
gnu: linux-libre@4.4: Update to 4.4.211.
...
* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.211.
(linux-libre-4.4-pristine-source): Update hash.
2020-01-23 23:16:49 -05:00
Mark H Weaver
cf5c44a308
gnu: linux-libre: Update deblob scripts.
...
* gnu/packages/linux.scm (deblob-scripts-5.4, deblob-scripts-4.19)
(deblob-scripts-4.14, deblob-scripts-4.9, deblob-scripts-4.4): Update
to 5.4.14, 4.19.98, 4.14.167, 4.9.211, and 4.4.211, respectively, and
update hashes.
2020-01-23 23:16:47 -05:00
Mike Rosset
44e70dee18
gnu: tuxguitar: Build and install ALSA plugin.
...
* gnu/packages/music.scm (tuxguitar): Allows MIDI sound output when using
a synthesizer like TiMidity++.
[inputs]: Add alsa-lib.
[arguments]: No longer change build directory context between phases. Install
desktop, mime and manual files during the "install" phase.
Signed-off-by: Kei Kebreau <kkebreau@posteo.net >
2020-01-23 20:57:23 -05:00
Ludovic Courtès
039cb8e6b1
news: Add entry for Guile 3.0.
...
* etc/news.scm: Add entry for Guile 3.0.
2020-01-23 23:36:25 +01:00
Ludovic Courtès
8234fe653e
self: Build with Guile 3.0.
...
* guix/self.scm (specification->package): Return the "guile3.0-"
variants.
(guix-derivation): Change 'guile' to (specification->package "guile").
Pass "3.0" as #:guile-version.
2020-01-23 23:34:10 +01:00
Ludovic Courtès
370891d565
derivations: Inline 'find' in 'coalesce-duplicate-inputs'.
...
Previously the first argument to 'find' would show up high in profiles
of 'package-derivation'. This speeds things up a big, especially on
Guile 3.
* guix/derivations.scm (coalesce-duplicate-inputs)[find]: New
procedure.
2020-01-23 23:34:10 +01:00
Ludovic Courtès
4d52e0f667
compile: Remove incorrect exports.
...
This is a followup to fed3632812 .
* guix/build/compile.scm: Remove exports of '%lightweight-optimizations'
and '%default-optimizations'.
* guix/self.scm: Remove unused (guix build compile) module.
2020-01-23 23:34:09 +01:00
Marius Bakke
db0e9fe42c
Merge branch 'master' into staging
2020-01-23 22:57:16 +01:00
Marius Bakke
82a2bd3a4e
gnu: libqmi: Update to 1.24.4.
...
* gnu/packages/freedesktop.scm (libqmi): Update to 1.24.4.
2020-01-23 22:43:47 +01:00
Marius Bakke
10214fa9f6
gnu: gsasl: Do not build 'libgsasl.a'.
...
* gnu/packages/gsasl.scm (gsasl)[arguments]: Add "--disable-static" to
#:configure-flags.
2020-01-23 22:43:46 +01:00
Marius Bakke
df8a9c7496
gnu: gsasl: Update to 1.8.1.
...
* gnu/packages/gsasl.scm (gsasl): Update to 1.8.1.
[source](modules, snippet): Remove.
[inputs]: Add LIBGCRYPT.
2020-01-23 22:43:46 +01:00
JoJo
e3ee802379
gnu: Add ghc-llvm-hs.
...
* gnu/packages/haskell-xyz.scm (ghc-llvm-hs): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-01-23 16:42:13 -05:00
JoJo
84436be094
gnu: Add ghc-llvm-hs-pure.
...
* gnu/packages/haskell-xyz.scm (ghc-llvm-hs-pure): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name >
2020-01-23 16:42:13 -05:00
Marius Bakke
43190ac64c
gnu: evolution-data-server: Fix build with libical 3.0.7.
...
* gnu/packages/patches/evolution-data-server-libical-compat.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/gnome.scm (evolution-data-server)[source](patches): Add it.
2020-01-23 22:37:34 +01:00
Danny Milosavljevic
a78364e91c
gnu: Add ne.
...
* gnu/packages/text-editors.scm (ne): New variable.
2020-01-23 22:10:18 +01:00
Kei Kebreau
48446f0f94
gnu: wxmaxima: Update to 20.01.3.
...
* gnu/packages/maths.scm (wxmaxima): Update to 20.01.3.
[home-page]: Update URL.
2020-01-23 14:22:41 -05:00
Paul Garlick
37bb0d1eaf
gnu: fenics: Update to 2019.1.0.post0.
...
* gnu/packages/simulation.scm (fenics): Update to 2019.1.0.post0.
[arguments]: In the 'pre-check' phase, add three more demos to the
list of demos that are skipped.
2020-01-23 16:50:00 +00:00
Paul Garlick
09ecd9a794
gnu: fenics-dolfin: Update to 2019.1.0.post0.
...
* gnu/packages/simulation.scm (fenics-dolfin): Update to 2019.1.0.post0.
[source](snippet): Remove three substitutions that are no longer needed.
[native-inputs]: Use compatible version of CATCH.
[arguments]: Use CMAKE version 3.15.5 to avoid EXCLUDE_FROM_ALL
regression. See <https://issues.guix.gnu.org/issue/38060 >.
2020-01-23 16:49:59 +00:00
Paul Garlick
ec8dff8980
gnu: python-fenics-ffc: Update to 2019.1.0.post0.
...
* gnu/packages/simulation.scm (python-fenics-ffc): Update to 2019.1.0.post0.
2020-01-23 16:49:58 +00:00
Paul Garlick
4dfb22c1e3
gnu: python-fenics-fiat: Update to 2019.1.0.
...
* gnu/packages/simulation.scm (python-fenics-fiat): Update to 2019.1.0.
2020-01-23 16:49:58 +00:00
Paul Garlick
def588d250
gnu: python-fenics-ufl: Update to 2019.1.0.
...
* gnu/packages/simulation.scm (python-fenics-ufl): Update to 2019.1.0.
2020-01-23 16:49:57 +00:00
Paul Garlick
236861847f
gnu: python-fenics-dijitso: Update to 2019.1.0.
...
* gnu/packages/simulation.scm (python-fenics-dijitso): Update to 2019.1.0.
2020-01-23 16:49:41 +00:00
Guillaume Le Vaillant
8c5cde2546
gnu: jgmenu: Update to 4.0.1.
...
* gnu/packages/xdisorg.scm (jgmenu): Update to 4.0.1.
[native-inputs]: Add cppcheck.
[inputs]: Add glib and remove python.
[arguments]: Remove fix-paths phase, add fix-tests phase and update
configure phase.
2020-01-23 11:53:52 +01:00
Guillaume Le Vaillant
09e745185b
gnu: xsecurelock: Fix strange character in description.
...
* gnu/packages/xdisorg.scm (xsecurelock)[description]: Replace strange
character by a space.
2020-01-23 11:53:52 +01:00
Guillaume Le Vaillant
dc4fae11ab
gnu: udiskie: Update to 2.0.4.
...
* gnu/packages/freedesktop.scm (udiskie): Update to 2.0.4.
* gnu/packages/patches/udiskie-no-appindicator.patch: Update for 2.0.4.
2020-01-23 11:53:52 +01:00
Ludovic Courtès
2c9fd7636f
gnu: guile-present: Add "guile3.0-present".
...
* gnu/packages/gtk.scm (guile-present)[source](snippet): Add "3.0" to
the supported Guile versions.
(guile3.0-present): New variable.
2020-01-23 11:26:56 +01:00
Ludovic Courtès
897186c155
gnu: guile-present: Pass the right module directories in scripts.
...
* gnu/packages/gtk.scm (guile-present)[arguments]: In 'post-install'
phase, remove hard-coded "2.0" and replace it by a computed effective
version. Also, pass "/site-ccache" to -C.
2020-01-23 11:26:56 +01:00
Ludovic Courtès
b93cde3d8c
gnu: guile-present: Install .go files in /site-ccache.
...
* gnu/packages/gtk.scm (guile-present)[source]: Add 'modules' and 'snippet'.
2020-01-23 11:26:55 +01:00
Ludovic Courtès
46378df050
gnu: guile-rsvg: Add "guile3.0-rsvg" variant.
...
* gnu/packages/gtk.scm (guile3.0-rsvg): New variable.
2020-01-23 11:26:55 +01:00
Ludovic Courtès
e4dbe0cd2e
gnu: guile-cairo: Add "guile3.0-cairo" variant.
...
* gnu/packages/gtk.scm (guile-cairo)[source](snippet): Add #include
<string.h> everywhere #include <libguile.h> appears.
(guile3.0-cairo): New variable.
2020-01-23 11:26:55 +01:00
Ludovic Courtès
675f1940e9
gnu: guile-lib: Add "guile3.0-lib" variant.
...
* gnu/packages/guile-xyz.scm (guile-lib)[source]: Add 'modules' and
'snippet'.
(guile3.0-lib): New variable.
2020-01-23 11:26:55 +01:00
Ludovic Courtès
3de0d20b80
gnu: mcron: Add "guile3.0-mcron" variant.
...
* gnu/packages/guile-xyz.scm (mcron)[arguments]: In 'fix-finding-guile'
phase, add "3.0".
(guile3.0-mcron): New variable.
2020-01-23 11:26:55 +01:00
Ludovic Courtès
93d94134cc
gnu: haunt: Add "guile3.0-haunt" variant.
...
* gnu/packages/guile-xyz.scm (haunt)[source]: Add 'modules' and 'snippet'.
[arguments]: In 'wrap-haunt' phase, assume that INPUTS might lack
"guile-reader".
(guile3.0-haunt): New variable.
2020-01-23 11:26:55 +01:00
Ludovic Courtès
6e6aab0b6a
gnu: guile-next: Disable JIT on armhf-linux.
...
* gnu/packages/guile.scm (guile-3.0)[arguments]: New field.
2020-01-23 11:26:55 +01:00
Ludovic Courtès
f79313b387
tests: Fix typo in comment.
...
* gnu/tests.scm: Add missing word in commentary.
2020-01-23 11:26:55 +01:00
Ludovic Courtès
6bd072ff66
installer: Make "TRANSLATORS" comment visible.
...
* gnu/installer/newt/user.scm (run-root-password-page): Move
"TRANSLATORS" comment right above 'G_' call.
2020-01-23 11:26:54 +01:00
Tobias Geerinckx-Rice
52d9cad485
gnu: sassc/libsass-3.5: Hide.
...
This follows up on commit bed24ecfcd .
Reported-by: Christopher Baines <mail@cbaines.net >
* gnu/packages/web.scm (sassc/libsass-3.5)[properties]: Hide package.
2020-01-23 10:46:35 +01:00
Jan Nieuwenhuizen
6e5fc6c7ef
gnu: mes: Update to 0.22.
...
* gnu/packages/mes.scm (mes): Update to 0.22. Remove store name patch. Add
MES_PREFIX to native-search-paths.
* gnu/packages/patches/mes-remove-store-name.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
* gnu/packages/mes.scm (mes-rb5): Depend on gzip instead of xz; this enables
unpacking the now unpatched mes source. Update to check bin/mes-mescc-0.21.
2020-01-23 09:00:49 +01:00
Eric Bavier
7357b3d7a5
gnu: libnslog: Use check@0.12.
...
Tests fail with check@0.13 due to implementation changes.
* gnu/packages/web.scm (libnslog)[native-inputs]: 'check' -> 'check-0.12'.
2020-01-23 00:36:59 -06:00
Eric Bavier
30adc9e0e1
gnu: perl-term-readline-gnu: Fix library initialization.
...
* gnu/packages/perl.scm (perl-term-readline-gnu)[arguments]: Patch library
search directories into Makefile.PL so that the resulting Gnu.so library
contains expected DT_NEEDED entries for libreadline and libncurses.
2020-01-22 22:50:55 -06:00
Tobias Geerinckx-Rice
c356e65610
gnu: bind: Update to 9.14.10.
...
* gnu/packages/dns.scm (bind): Update to 9.14.10.
2020-01-23 04:57:50 +01:00
Raghav Gururajan
d36fa50fbf
gnu: gnome: Add missing inputs.
...
* gnu/packages/gnome.scm (gnome)[propagated-inputs]: Add gnome-color-manager,
gnome-initial-setup, gnome-user-share, rygel, sushi, gnome-weather.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-23 02:26:37 +01:00
Julien Lepiller
59fcf386f8
gnu: ocaml4.07-findlib: Fix building with ocaml 4.07.
...
* gnu/packages/ocaml.scm (ocaml4.07-findlib): rename inputs to
native-inputs.
2020-01-23 01:48:10 +01:00
Tobias Geerinckx-Rice
ee711c7c21
gnu: gparted: Update to 1.1.0.
...
* gnu/packages/disk.scm (gparted): Update to 1.1.0.
2020-01-23 00:10:49 +01:00
Tobias Geerinckx-Rice
737a3c12cd
gnu: libmemcached: Fix build.
...
* gnu/packages/databases.scm (libmemcached)[source]: Add patch.
* gnu/packages/patches/libmemcached-build-with-gcc7.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
2020-01-23 00:06:52 +01:00
Tobias Geerinckx-Rice
973218a374
gnu: memcached: Update to 1.5.20.
...
* gnu/packages/databases.scm (memcached): Update to 1.5.20.
2020-01-23 00:06:52 +01:00
Tobias Geerinckx-Rice
95f2071a32
gnu: keyutils: Update to 1.6.1.
...
* gnu/packages/crypto.scm (keyutils): Update to 1.6.1.
2020-01-23 00:06:52 +01:00
Tobias Geerinckx-Rice
9d3331fcc1
gnu: burp: Update to 2.3.20.
...
* gnu/packages/backup.scm (burp): Update to 2.3.20.
2020-01-23 00:06:51 +01:00
Tobias Geerinckx-Rice
bc0eb34759
gnu: alpine: Remove pre-built binaries from source.
...
* gnu/packages/mail.scm (alpine)[source]: Add a snippet to hunt down
and destroy pre-compiled objects.
2020-01-23 00:06:51 +01:00
Tobias Geerinckx-Rice
f17bd3c646
gnu: bochs: Update to 2.6.11.
...
* gnu/packages/virtualization.scm (bochs): Update to 2.6.11.
2020-01-23 00:06:51 +01:00
Tobias Geerinckx-Rice
31f41dbc1c
gnu: font-adobe-source-serif-pro: Don't use unstable tarball.
...
* gnu/packages/fonts.scm (font-adobe-source-serif-pro)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
2020-01-23 00:06:51 +01:00
Tobias Geerinckx-Rice
ed08e4ecae
gnu: font-adobe-source-sans-pro: Don't use unstable tarball.
...
* gnu/packages/fonts.scm (font-adobe-source-sans-pro)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
2020-01-23 00:06:51 +01:00
Tobias Geerinckx-Rice
9aee5c45c1
gnu: font-adobe-source-code-pro: Don't use unstable tarball.
...
* gnu/packages/fonts.scm (font-adobe-source-code-pro)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
2020-01-23 00:06:51 +01:00
Marius Bakke
c7dd15596f
gnu: perl-type-tiny: Update to 1.008003.
...
* gnu/packages/perl.scm (perl-type-tiny): Update to 1.008003.
2020-01-22 20:21:39 +01:00
Marius Bakke
a54dfcc063
gnu: perl-time-local: Update to 1.28.
...
* gnu/packages/perl.scm (perl-time-local): Update to 1.28.
2020-01-22 20:21:39 +01:00
Marius Bakke
9b0696d0e9
gnu: perl-timedate: Update to 2.31.
...
* gnu/packages/perl.scm (perl-timedate): Update to 2.31.
[source](uri): Adjust accordingly.
2020-01-22 20:21:39 +01:00
Marius Bakke
10b44448c9
gnu: perl-cpanel-json-xs: Update to 4.18.
...
* gnu/packages/perl.scm (perl-cpanel-json-xs): Update to 4.18.
2020-01-22 20:21:39 +01:00
Alex Kost
f975f82d05
gnu: guile-daemon: Update to 0.1.3.
...
* gnu/packages/guile-xyz.scm (guile-daemon): Update to 0.1.3.
2020-01-22 20:33:12 +03:00
Nicolas Goaziou
ca2045d6f9
gnu: emacs-company: Tiny fix in description.
...
* gnu/packages/emacs-xyz.scm (emacs-company)[description]: Add a comma after
"e.g." so Texinfo does not infer a full stop.
2020-01-22 14:02:38 +01:00
Nicolas Goaziou
115f6b9325
gnu: emacs-company: Update to 0.9.11.
...
* gnu/packages/emacs-xyz.scm (emacs-company): Update to 0.9.11.
2020-01-22 14:01:58 +01:00
宋文武
244db6bbc8
services: knot-resolver: Manage a root TA at /var/cache/knot-resolver.
...
* gnu/services/dns.scm (%kresd.conf): Add /var/cache/knot-resolver/root.keys
as the root TA.
2020-01-22 20:18:56 +08:00
宋文武
8a5c4384e0
gnu: knot-resolver: Install but disable the default managed root TA.
...
* gnu/packages/dns.scm (knot-resolver)[arguments]: Enable 'managed_ta', so
'icann-ca.pem' get installed. Add 'disable-default-ta' phase.
2020-01-22 20:18:56 +08:00
Efraim Flashner
fe109349d0
gnu: argon2: Update to 20190702.
...
* gnu/packages/password-utils.scm (argon2): Update to 20190702.
[arguments]: Adjust make-flags. Remove 'patch-Makefile phase.
2020-01-22 14:17:32 +02:00
Efraim Flashner
c600cf2a72
gnu: argon2: Don't use unstable tarball.
...
* gnu/packages/password-utils.scm (argon2)[source]: Download using
git-fetch.
2020-01-22 14:17:32 +02:00
Efraim Flashner
54bcc27fb5
gnu: pass-git-helper: Run test suite.
...
* gnu/packages/password-utils.scm (pass-git-helper)[arguments]: Adjust
custom 'patch-pass-path phase. Use custom 'check phase.
2020-01-22 14:17:31 +02:00
Efraim Flashner
b70f9ad165
gnu: pass-git-helper: Update to 1.1.0.
...
* gnu/packages/password-utils.scm (pass-git-helper): Update to 1.1.0.
[arguments]: Update 'patch-pass-path phase. Add 'pre-check phase.
[native-inputs]: Add python-pytest, python-pytest-mock.
2020-01-22 14:17:31 +02:00
Efraim Flashner
df58cc9c56
gnu: pass-git-helper: Don't use unstable tarball.
...
* gnu/packages/password-utils.scm (pass-git-helper)[source]: Download
using git-fetch.
2020-01-22 14:17:14 +02:00
Efraim Flashner
659204ff2c
gnu: pass-rotate: Update upstream location.
...
* gnu/packages/password-utils.scm (pass-rotate)[source]: Update to new
source uri.
[home-page]: Update to new home-page.
2020-01-22 14:17:14 +02:00
Efraim Flashner
e1a94fe09c
gnu: pass-rotate: Don't use unstable tarball.
...
* gnu/packages/password-utils.scm (pass-rotate)[source]: Download using
git-fetch. Reflow section.
2020-01-22 14:17:13 +02:00
Efraim Flashner
a4b4c1aa0b
gnu: pulsemixer: Update to 1.5.0.
...
* gnu/packages/pulseaudio.scm (pulsemixer): Update to 1.5.0.
2020-01-22 14:17:13 +02:00
Efraim Flashner
fa6abb0135
gnu: pulsemixer: Don't use unstable tarball.
...
* gnu/packages/pulseaudio.scm (pulsemixer)[source]: Download using
git-fetch.
2020-01-22 14:17:13 +02:00
Efraim Flashner
870b9ff95f
gnu: ponymix: Don't use unstable tarball.
...
* gnu/packages/pulseaudio.scm (ponymix)[source]: Download using
git-fetch.
2020-01-22 14:17:10 +02:00
Hartmut Goebel
a789f654a0
gnu: Add libvnc.
...
* gnu/packages/vnc.scm (libvnc): New variable.
gnu/packages/patches/libvnc-CVE-2018-20750.patch,
gnu/packages/patches/libvnc-CVE-2019-15681.patch: New files.
* gnu/local.mk: Add them.
2020-01-22 12:43:49 +01:00
Hartmut Goebel
94c7ef932a
gnu: Rename module gnutls to tls.
...
* gnu/packages/tigervnc.scm: Rename to...
* gnu/packages/vnc.scm: ... this. Change module name accordingly. Sort
used modules.
* gnu-system.am (GNU_SYSTEM_MODULES): Rename tigervnc module to vnc.
2020-01-22 12:43:48 +01:00
Efraim Flashner
0f654e63d6
gnu: ocaml-mmap: Use a source file-name.
...
* gnu/packages/ocaml.scm (ocaml-mmap)[source]: Add file-name field.
2020-01-22 11:28:29 +02:00
Efraim Flashner
cf7ca6fe9b
gnu: gnurl: Update to 7.67.0.
...
* gnu/packages/gnunet.scm (gnurl): Update to 7.67.0.
[inputs]: Remove libidn, add libidn2.
[native-inputs]: Remove groff, python2. Add python.
[arguments]: Remove unused 'test-target' and 'parallel-tests' flags.
Update configure-flags.
2020-01-22 11:28:26 +02:00
Tobias Geerinckx-Rice
9564967e99
gnu: gegl: Update to 0.4.20.
...
* gnu/packages/gimp.scm (gegl): Update to 0.4.20.
2020-01-22 06:20:01 +01:00
Tobias Geerinckx-Rice
e7472958c1
gnu: babl: Update to 0.1.74.
...
* gnu/packages/gimp.scm (babl): Update to 0.1.74.
2020-01-22 06:20:00 +01:00
Tobias Geerinckx-Rice
18a3f33ee6
gnu: gtkwave: Update to 3.3.103.
...
* gnu/packages/fpga.scm (gtkwave): Update to 3.3.103.
2020-01-22 06:20:00 +01:00
Tobias Geerinckx-Rice
82f81ffac6
gnu: gtkwave: Prefer mirror://sourceforge source URI.
...
* gnu/packages/fpga.scm (gtkwave)[source]: Add URI.
2020-01-22 06:20:00 +01:00
Tobias Geerinckx-Rice
542d64fd84
gnu: librepcb: Update to 0.1.3.
...
* gnu/packages/engineering.scm (librepcb): Update to 0.1.3.
2020-01-22 06:20:00 +01:00
Tobias Geerinckx-Rice
6677f33d36
gnu: font-public-sans: Update to 1.008.
...
* gnu/packages/fonts.scm (font-public-sans): Update to 1.008.
2020-01-22 06:20:00 +01:00
Leo Famulari
8a9d52c7e9
gnu: Go: Update to 1.12.15.
...
* gnu/packages/golang.scm (go-1.12): Update to 1.12.15.
[arguments]: Adjust the 'prebuild' phase.
2020-01-22 00:09:35 -05:00
Julien Lepiller
e3388d6361
gnu: Add ocaml4.07-findlib.
...
* gnu/packages/ocaml.scm (ocaml4.07-findlib): New variable.
2020-01-22 01:15:47 +01:00
Julien Lepiller
092f815799
guix: ocaml: Reuse package-with-ocaml4.01 with ocaml-4.07.
...
* guix/build-system/guix.scm (package-with-ocaml4.01)
(strip-ocaml4.01-variant): Rename to...
(package-with-ocaml4.07, strip-ocaml4.07-variant): ... this and rename
internal implementation.
2020-01-22 01:12:09 +01:00
Julien Lepiller
6c89e06626
gnu: ocaml-lambda-term: Add missing dependencies.
...
* gnu/packages/ocaml.scm (ocaml-lambda-term)[propagated-inputs]: Add
ocaml-lwt-react.
[inputs]: Add libev.
2020-01-22 01:10:27 +01:00
Julien Lepiller
d77310cc3f
nu: Add ocaml-lwt-react.
...
* gnu/packages/ocaml.scm (ocaml-lwt-react): New variable.
2020-01-22 01:08:45 +01:00
Ricardo Wurmus
0dd1e277b1
gnu: guile3.0-pfds: Do rename file extensions.
...
* gnu/packages/guile-xyz.scm (guile3.0-pfds)[arguments]: Inherit from
guile-pfds to include file extension renaming.
2020-01-21 22:57:23 +01:00
Marius Bakke
715110a8a2
Merge branch 'master' into staging
2020-01-21 21:34:41 +01:00
Marius Bakke
b3c2ebda5b
gnu: gst-plugins-good: Disable failing tests on armhf-linux.
...
* gnu/packages/gstreamer.scm (gst-plugins-good)[arguments]: Add phase when
building for armhf-linux.
2020-01-21 21:29:06 +01:00
Marius Bakke
e003b7591f
gnu: gst-plugins-bad: Disable failing test on armhf-linux.
...
* gnu/packages/gstreamer.scm (gst-plugins-bad)[arguments]: Add phase when
building for armhf-linux.
2020-01-21 21:29:06 +01:00
Marius Bakke
0025a1d31e
gnu: gstreamer: Disable two tests on i686.
...
* gnu/packages/gstreamer.scm (gstreamer)[arguments]: Add phase when building
for i686 systems.
2020-01-21 21:29:06 +01:00
Jakub Kądziołka
79e074ea10
gnu: nim: Fix /bin/sh substitution in C code.
...
* gnu/packages/nim.scm (nim)[arguments]: Patch the string length too.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-01-21 21:24:26 +01:00
Marius Bakke
a7d470e47d
gnu: ungoogled-chromium: Update to 79.0.3945.130-0.e2fae99.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 79.0.3945.130.
(%ungoogled-revision): Set to e2fae99.
(%debian-revision): Set to debian/79.0.3945.130-2.
(%chromium-origin, %ungoogled-origin, %debian-origin): Update hashes.
(ungoogled-chromium-source): Ignore comments in debian/patches/series.
(libvpx/chromium, gentoo-patch): Remove variables.
(ungoogled-chromium)[inputs]: Change from LIBVPX/CHROMIUM to LIBVPX.
(ungoogled-chromium/wayland): Add 'ozone_platform="wayland"' in #:configure-flags.
2020-01-21 21:18:11 +01:00
Danny Milosavljevic
5b600fcae6
gnu: mrustc: Update to 0.9.
...
* gnu/packages/rust.scm (mrustc): update to 0.9.
[arguments]<#:test-target]: Change to "test".
<#:phases>[unpack-target-compiler]: Modify.
[install]: Modify.
(rust-1.19)[arguments]<#:phases>[build]: Modify.
2020-01-21 20:33:55 +01:00
Efraim Flashner
f51fa60b16
gnu: rust-pcre2-sys-0.2: Unbundle vendored source.
...
* gnu/packages/crates-io.scm (rust-pcre2-sys-0.2)[arguments]: Don't skip
build. Add custom phase to delete vendored sources.
[native-inputs]: Add pcre2, pkg-config.
2020-01-21 18:49:10 +02:00
Danny Milosavljevic
b07384b564
gnu: mrustc: Clean up.
...
* gnu/packages/rust.scm (mrust)[native-inputs]: Remove zlib.
[inputs]: Remove llvm. Add zlib.
[arguments]<#:make-flags>: Remove LLVM_CONFIG. Add RUSTC_TARGET.
[patch-date]: Modify.
[unpack-target-compiler]: Modify.
[configure]: Add CXX.
[build-minicargo]: Modify.
[install]: Install run_rustc.
2020-01-21 17:42:26 +01:00
Efraim Flashner
5e2ce6afad
gnu: rust-jemalloc-sys-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-jemalloc-sys-0.3)[arguments]: Add
rust-libc-0.2, rust-cc-1.0, rust-fs-extra-1.1 to cargo-inputs. Add
custom phase to delete vendored sources.
[native-inputs]: Add jemalloc.
[properties]: Remove field.
2020-01-21 18:32:03 +02:00
Efraim Flashner
45ad04e721
gnu: rust-num-cpus-1.10: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-num-cpus-1.10)[arguments]: Skip
build. Add rust-libc-0.2 to cargo-inputs. Add rust-doc-comment-0.3 to
cargo-development-inputs.
[properties]: Remove field.
2020-01-21 18:19:39 +02:00
Efraim Flashner
904e8a4697
gnu: rust-libz-sys-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-libz-sys-1.0)[arguments]: Add
rust-libc-0.2, rust-cc-1.0, rust-pkg-config-0.3, rust-vcpkg-0.2 to
cargo-inputs. Add custom phase to delete vendored source.
[native-inputs]: Add pkg-config, zlib.
[properties]: Remove field.
2020-01-21 18:15:50 +02:00
Efraim Flashner
8bbf9d390f
gnu: rust-net2-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-net2-0.2)[arguments]: Skip build. Add
rust-cfg-if-0.1, rust-libc-0.2, rust-winapi-0.3 to cargo-inputs.
[properties]: Remove field.
2020-01-21 18:09:23 +02:00
Efraim Flashner
ae637969b6
gnu: rust-miow-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-miow-0.2)[arguments]: Skip build. Add
rust-kernel32-sys-0.2, rust-net2-0.2, rust-winapi-0.2, rust-ws2-32-sys-0.2
to cargo-inputs. Add rust-rand-0.3 to cargo-development-inputs.
[properties]: Remove field.
2020-01-21 18:07:11 +02:00
Efraim Flashner
af6655ed4d
gnu: rust-miow-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-miow-0.3)[arguments]: Skip build. Add
rust-socket2-0.3, rust-winapi-0.3 to cargo-inputs. Add rust-rand-0.4 to
cargo-development-inputs.
[properties]: Remove field.
2020-01-21 18:04:07 +02:00
Efraim Flashner
5660d292b3
gnu: rust-miniz-sys-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-miniz-sys-0.1)[arguments]: Add
rust-libc-0.2, rust-cc-1.0 to cargo-inputs.
[properties]: Remove field.
2020-01-21 18:00:18 +02:00
Efraim Flashner
acb9657a73
gnu: rust-mime-0.3: Update to 0.3.16.
...
* gnu/packages/crates-io.scm (rust-mime-0.3): Update to 0.3.16.
[arguments]: Remove rust-unicase-2.4 from cargo-inputs.
2020-01-21 17:57:40 +02:00
Efraim Flashner
4a2590f058
gnu: rust-mime-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-mime-0.3)[arguments]: Skip build. Add
rust-unicase-2.4 to cargo-inputs.
[properties]: Remove field.
2020-01-21 17:56:45 +02:00
Efraim Flashner
161095512c
gnu: rust-memmap-0.7: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-memmap-0.7)[arguments]: Skip build.
Add rust-libc-0.2, rust-winapi-0.3 to cargo-inputs. Add rust-tempdir-0.3
to cargo-development-inputs.
[properties]: Remove field.
2020-01-21 17:53:49 +02:00
Efraim Flashner
e61dc8d0d7
gnu: rust-md5-0.6: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-md5-0.6)[arguments]: Skip build.
[properties]: Remove field.
2020-01-21 17:51:01 +02:00
Danny Milosavljevic
6839095af7
gnu: mrustc: Update to 0.8.1.
...
* gnu/packages/patches/mrustc-0.8.0-fix-variable-length-integer-receiving.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
* gnu/packages/rust.scm (mrustc): Update to 0.8.1.
[source](patches): Remove it.
[native-inputs]: Add zlib.
2020-01-21 16:50:00 +01:00
Efraim Flashner
5b7856ecd0
gnu: rust-matches-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-matches-0.1)[arguments]: Skip build.
[properties]: Remove field.
2020-01-21 17:49:18 +02:00
Efraim Flashner
132c15ae9c
gnu: rust-maplit-1.0: Upgrade to 1.0.2.
...
* gnu/packages/crates-io.scm (rust-maplit-1.0): Upgrade to 1.0.2.
2020-01-21 17:46:33 +02:00
Efraim Flashner
3977728026
gnu: rust-maplit-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-maplit-1.0)[arguments]: Skip build.
[properties]: Remove field.
2020-01-21 17:45:53 +02:00
Efraim Flashner
328df292aa
gnu: rust-lzma-sys-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-lzma-sys-0.1)[arguments]: Add
rust-libc-0.2, rust-cc-1.0, rust-pkg-config-0.3 to cargo-inputs. Add
custom phase to delete vendored code.
[native-inputs]: Add pkg-config, xz.
[properties]: Remove field.
2020-01-21 17:44:37 +02:00
Efraim Flashner
af996d9086
gnu: rust-permutohedron-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-permutohedron-0.2)[arguments]: Skip
build.
[properties]: Remove field.
2020-01-21 17:28:18 +02:00
Efraim Flashner
2e1100f377
gnu: Add rust-matrixmultiply-0.1.
...
* gnu/packages/crates-io.scm (rust-matrixmultiply-0.1): New variable.
2020-01-21 17:26:30 +02:00
Efraim Flashner
a8a5cc6841
gnu: Add rust-heck-0.3.
...
* gnu/packages/crates-io.scm (rust-heck-0.3): New variable.
2020-01-21 17:24:31 +02:00
Efraim Flashner
b86409a76f
gnu: rust-unicode-segmentation-1.3: Fix inputs.
...
* gnu/packages/crates-io.scm (rust-unicode-segmentation-1.3)[arguments]:
Replace rust-quickcheck-0.8 with 0.7 in cargo-development-inputs.
2020-01-21 17:06:40 +02:00
Efraim Flashner
33d69d20ad
gnu: Add rust-quickcheck-0.5.
...
* gnu/packages/crates-io.scm (rust-quickcheck-0.5): New variable.
2020-01-21 17:04:07 +02:00
John Soo
393d721404
gnu: librsvg-next-source: Replace and update some dependencies.
...
* gnu/packages/gnome.scm (librsvg-next-source): Update vendored replacements.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:24:02 +02:00
Efraim Flashner
16a5dfdc3c
gnu: rust-libssh2-sys-0.2: Update to 0.2.14.
...
* gnu/packages/crates-io.scm (rust-libssh2-sys-0.2): Update to 0.2.14.
2020-01-21 16:24:02 +02:00
Efraim Flashner
128aa31fe6
gnu: rust-openssl-sys-0.9: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-openssl-sys-0.9)[arguments]: Add
rust-libc-0.2, rust-autocfg-0.1, rust-cc-1.0, rust-pkg-config-0.3,
rust-vcpkg-0.2 to cargo-inputs. Add custom phase to find packaged
openssl.
[native-inputs]: Add openssl, pkg-config.
[properties]: Remove field.
2020-01-21 16:24:02 +02:00
Efraim Flashner
d7364e85e0
gnu: rust-libssh2-sys-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-libssh2-sys-0.2)[arguments]: Add
rust-libc-0.2, rust-libz-sys-1.0, rust-openssl-sys-0.9, rust-cc-1.0,
rust-pkg-config-0.3, rust-vcpkg-0.2 to cargo-inputs. Add custom phase to
unbundle vendored sources and set environment variables.
[native-inputs]: Add libssh2, openssl, pkg-config, zlib.
[properties]: Remove field.
2020-01-21 16:24:01 +02:00
Efraim Flashner
0c85385450
gnu: rust-libgit2-sys-0.10: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-libgit2-sys-0.10)[arguments]: Add
rust-libc-0.2, rust-libz-sys-1.0, rust-libssh2-sys-0.2,
rust-openssl-sys-0.9, rust-cc-1.0, rust-pkg-config-0.3 to cargo-inputs.
Add custom phase to unbundle vendored sources and set environment
variables.
[native-inputs]: Add libgit2, openssl, pkg-config, zlib.
[properties]: Remove field.
2020-01-21 16:24:01 +02:00
Efraim Flashner
c40e3d0bad
gnu: tokei: Unbundle some dependencies.
...
* gnu/packages/rust-apps.scm (tokei)[arguments]: Add custom phase to
delete vendored sources and set environment variables. Remove
rust-cc-1.0, rust-pkg-config-0.3, rust-toml-0.5 from cargo-inputs.
[native-inputs]: Add libgit2, openssl, pkg-config, zlib.
2020-01-21 16:24:01 +02:00
Efraim Flashner
6dc67c2d11
gnu: rust-failure-derive-0.1: Fix inputs.
...
* gnu/packages/crates-io.scm (rust-failure-derive-0.1)[arguments]:
Replace rust-quote-1.0 with 0.6 in cargo-inputs.
2020-01-21 16:24:01 +02:00
John Soo
e29315b2d9
gnu: Add tokei.
...
* gnu/packages/rust-apps.scm (tokei): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:24:01 +02:00
John Soo
72803f5cd2
gnu: Add rust-rust-argon2-0.5.
...
* gnu/packages/crates-io.scm (rust-rust-argon2-0.5): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:24:00 +02:00
John Soo
f8607be8a8
gnu: Add rust-blake2b-simd-0.5.
...
* gnu/packages/crates-io.scm (rust-blake2b-simd-0.5): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:24:00 +02:00
John Soo
5624b4292d
gnu: Add rust-arrayvec-0.5.
...
* gnu/packages/crates-io.scm (rust-arrayvec-0.5): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:24:00 +02:00
Efraim Flashner
0f414f0da9
gnu: rust-thread-local-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-thread-local-1.0)[arguments]: Skip
build. Add rust-lazy-static-1.4 to cargo-inputs.
[properties]: Remove field.
2020-01-21 16:24:00 +02:00
John Soo
27b75426c5
gnu: rust-thread-local-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-thread-local-0.3)[arguments]: Skip build.
Add rust-lazy-static-1.4 to cargo-inputs.
[properties]: Don't inherit field.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:24:00 +02:00
John Soo
d9b2c855bf
gnu: Add rust-thread-local-1.0.
...
* gnu/packages/crates-io.scm (rust-thread-local-1.0): New variable.
(rust-thread-local-0.3): Inherit from rust-thread-local-1.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:59 +02:00
John Soo
8f414fa29d
gnu: Add rust-arrayref-0.3.
...
* gnu/packages/crates-io.scm (rust-arrayref-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:59 +02:00
John Soo
c8a2b343d3
gnu: rust-kernel32-sys-0.2: Update dependencies.
...
* gnu/packages/crates-io.scm (rust-kernel32-sys-0.2)[arguments]: Move
rust-winapi-build-0.1 from cargo-development-inputs to cargo-inputs.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:59 +02:00
John Soo
05f8588c2d
gnu: rust-pest-generator-2.1: Update to 2.1.1.
...
* gnu/packages/crates-io.scm (rust-pest-generator-2.1): Update to 2.1.1.
[arguments]: In cargo-inputs replace rust-proc-macro2-0.4 with 1.0,
rust-quote-0.6 with 1.0, rust-syn-0.15 with 1.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:59 +02:00
John Soo
699c454945
gnu: rust-pest-meta-2.1: Update to 2.1.2.
...
* gnu/packages/crates-io.scm (rust-pest-meta-2.1): Update to 2.1.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:59 +02:00
John Soo
2760345fe9
gnu: rust-pest-meta-2.1: Update dependencies.
...
* gnu/packages/crates-io.scm (rust-pest-meta-2.1)[arguments]: Move
rust-sha-1-0.8 from cargo-development-inputs to cargo-inputs.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:58 +02:00
John Soo
b94c6ac38e
gnu: rust-pest-generator-2.1: Update dependencies.
...
* gnu/packages/crates-io.scm (rust-pest-generator-2.1)[arguments]:
Replace rust-quote-1.0 with 0.6 in cargo-inputs.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:58 +02:00
John Soo
04d924db0c
gnu: Add rust-jobserver-0.1.
...
* gnu/packages/crates-io.scm (rust-jobserver-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:58 +02:00
John Soo
66d4d23a0d
gnu: Add rust-tokio-core-0.1.
...
* gnu/packages/crates-io.scm (rust-tokio-core-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:58 +02:00
Efraim Flashner
7353994bad
gnu: Add rust-quickcheck-0.6.
...
* gnu/packages/crates-io.scm (rust-quickcheck-0.6): New variable.
2020-01-21 16:23:58 +02:00
Efraim Flashner
010ea34f7d
gnu: Add rust-regex-syntax-0.5.
...
* gnu/packages/crates-io.scm (rust-regex-syntax-0.5): New variable.
2020-01-21 16:23:57 +02:00
Efraim Flashner
790c528525
gnu: Add rust-rand-core-0.2.
...
* gnu/packages/crates-io.scm (rust-rand-core-0.2): New variable.
2020-01-21 16:23:57 +02:00
Efraim Flashner
54af2e59e2
gnu: Add rust-env-logger-0.5.
...
* gnu/packages/crates-io.scm (rust-env-logger-0.5): New variable.
2020-01-21 16:23:57 +02:00
Efraim Flashner
efbfc7e86c
gnu: Add rust-quickcheck-0.7.
...
* gnu/packages/crates-io.scm (rust-quickcheck-0.7): New variable.
2020-01-21 16:23:57 +02:00
Efraim Flashner
d304015f22
gnu: Add rust-aho-corasick-0.6.
...
* gnu/packages/crates-io.scm (rust-aho-corasick-0.6.): New variable.
2020-01-21 16:23:57 +02:00
Efraim Flashner
5381d5c49f
gnu: Add rust-regex-0.2.
...
* gnu/packages/crates-io.scm (rust-regex-0.2): New variable.
2020-01-21 16:23:56 +02:00
Efraim Flashner
2f1fe591d1
gnu: Add rust-env-logger-0.4.
...
* gnu/packages/crates-io.scm (rust-env-logger-0.4): New variable.
2020-01-21 16:23:56 +02:00
John Soo
272004aee5
gnu: Add rust-mio-named-pipes-0.1.
...
* gnu/packages/crates-io.scm (rust-mio-named-pipes-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:56 +02:00
John Soo
7fcc421e8a
gnu: Add rust-tokio-process-0.2.
...
* gnu/packages/crates-io.scm (rust-tokio-process-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:56 +02:00
John Soo
874a5bc61d
gnu: Add rust-tokio-signal-0.2.
...
* gnu/packages/crates-io.scm (rust-tokio-signal-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:56 +02:00
John Soo
8eeb7794ba
gnu: rust-cc-1.0: Update to 1.0.50.
...
* gnu/packages/crates-io.scm (rust-cc-1.0): Update to 1.0.50.
[arguments]: Remove rust-rayon-1.1 from cargo-inputs, add
rust-jobserver-0.1. Remove rust-tempdir-0.3 from
cargo-development-inputs, add rust-tempfile-3.1.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:55 +02:00
John Soo
a62d3de704
gnu: rust-quick-error-1.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-quick-error-1.2)[arguments]: Skip build.
[properties] Remove field.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:55 +02:00
John Soo
b72648d7f5
gnu: rust-quick-error-1.2: Update to 1.2.3.
...
* gnu/packages/crates-io.scm (rust-quick-error-1.2): Update to 1.2.3.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:55 +02:00
Efraim Flashner
922b65d05e
gnu: Add rust-rand-0.5.
...
* gnu/packages/crates-io.scm (rust-rand-0.5): New variable.
2020-01-21 16:23:55 +02:00
John Soo
5e5ca33cd9
gnu: Add rust-hashbrown-0.5.
...
* gnu/packages/crates-io.scm (rust-hashbrown-0.5): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:55 +02:00
John Soo
c0e73f92ba
gnu: Add rust-rustc-std-workspace-alloc-1.0.
...
* gnu/packages/crates-io.scm (rust-rustc-std-workspace-alloc-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:54 +02:00
John Soo
ef2f6487d7
gnu: rust-regex-syntax-0.6: Update to 0.6.13.
...
* gnu/packages/crates-io.scm (rust-regex-syntax-0.6): Update to 0.6.13.
[arguments]: Remove rust-ucd-util-0.1 from cargo-inputs.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:54 +02:00
John Soo
21f887c355
gnu: rust-serde-derive-1.0: Update to 1.0.104.
...
* gnu/packages/crates-io.scm (rust-serde-derive-1.0): Update it.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:54 +02:00
John Soo
77a164a723
gnu: Add rust-argon2rs-0.2.
...
* gnu/packages/crates-io.scm (rust-argon2rs-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:54 +02:00
John Soo
7a7ff5d36c
gnu: Add rust-term-size-0.3.
...
* gnu/packages/crates-io.scm (rust-term-size-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:54 +02:00
John Soo
5a9e88c7d1
gnu: Add rust-term-size-1.0.
...
* gnu/packages/crates-io.scm (rust-term-size-1.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:53 +02:00
John Soo
b43885e9e2
gnu: Add rust-redox-users-0.3.
...
* gnu/packages/crates-io.scm (rust-redox-users-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:53 +02:00
John Soo
e320b20650
gnu: Add rust-blake2-rfc-0.2.
...
* gnu/packages/crates-io.scm (rust-blake2-rfc-0.2): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:53 +02:00
John Soo
cb806c7c63
gnu: Add rust-dirs-sys-0.3.
...
* gnu/packages/crates-io.scm (rust-dirs-sys-0.3): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:53 +02:00
John Soo
b6510b1a62
gnu: rust-serde-yaml-0.8: Update to 0.8.11.
...
* gnu/packages/crates-io.scm (rust-serde-yaml-0.8): Update to 0.8.11.
[arguments]: Remove rust-version-sync-0.8 from cargo-development-inputs.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:53 +02:00
John Soo
ea78979dd4
gnu: rust-serde-json-1.0: Update to 1.0.44.
...
* gnu/packages/crates-io.scm (rust-serde-json-1.0): Update to 1.0.44.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:52 +02:00
John Soo
ec438ab295
gnu: rust-serde-cbor-0.10: Update to 0.10.2.
...
* gnu/packages/crates-io.scm (rust-serde-cbor-0.10): Update 0.10.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:52 +02:00
John Soo
27f158ef23
gnu: rust-serde-1.0: Update to 1.0.104.
...
* gnu/packages/crates-io.scm (rust-serde-1.0): Update to 1.0.104.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:52 +02:00
John Soo
30b36e524a
gnu: Add rust-dirs-2.0.
...
* gnu/packages/crates-io.scm (rust-dirs-2.0): New variable.
(rust-dirs-1.0): Inherit from rust-dirs-2.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:52 +02:00
John Soo
39bb7b29d9
gnu: Add rust-regex-1.3.
...
* gnu/packages/crates-io.scm (rust-regex-1.3): New variable.
(rust-regex-1.1): Inherit from rust-regex-1.3.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:52 +02:00
John Soo
04020a73b3
gnu: Add rust-handlebars-2.0.
...
* gnu/packages/crates-io.scm (rust-handlebars-2.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-21 16:23:48 +02:00
Ludovic Courtès
b2f948be9f
services: sane: Create the "scanner" account.
...
* gnu/services/desktop.scm (%sane-accounts, sane-service-type): New
variables.
(%desktop-services): Use SANE-SERVICE-TYPE instead of 'simple-service'.
* doc/guix.texi (Desktop Services): Document 'sane-service-type'.
2020-01-21 15:01:46 +01:00
Ludovic Courtès
5dc6d5ce99
gnu: upower: Install 'dbus-1/system.d/org.freedesktop.UPower.conf' to etc/.
...
Fixes <https://bugs.gnu.org/39203 >.
Reported by Jesse Gibbons <jgibbons2357@gmail.com >.
* gnu/packages/gnome.scm (upower)[source]: Add 'modules' and 'snippet'.
2020-01-21 15:01:46 +01:00
Tobias Geerinckx-Rice
a19fb6a436
gnu: Use HTTPS for (gnu packages bioinformatics) home pages.
...
* gnu/packages/bioinformatics (bamm, ribodiff, python-biopython)
(discrover, hisat, hisat2, htseq, fastqc, htslib, python2-pbcore, roary)
(sortmerna, r-qtl, multiqc, r-deseq, r-fastseg, sambamba, trim-galore)
(gess, kentutils, bismark, kallisto, sailfish, python-hicexplorer)
(pplacer, python2-checkm-genome, r-velocyto)[home-page]: Use HTTPS.
2020-01-21 02:15:32 +01:00
Tobias Geerinckx-Rice
72607005e4
gnu: r-gage: Update home page.
...
* gnu/packages/bioinformatics.scm (r-gage)[home-page]: Update.
2020-01-21 02:15:32 +01:00
Tobias Geerinckx-Rice
0388046068
gnu: sra-tools: Update home page.
...
* gnu/packages/bioinformatics.scm (sra-tools)[home-page]: Update.
2020-01-21 02:15:31 +01:00
Tobias Geerinckx-Rice
0eeaf1ac3c
gnu: raxml: Update home page.
...
* gnu/packages/bioinformatics.scm (raxml)[home-page]: Update.
2020-01-21 02:15:31 +01:00
Tobias Geerinckx-Rice
5832b88c45
gnu: prodigal: Update home page.
...
* gnu/packages/bioinformatics.scm (prodigal)[home-page]: Use source code repository as home page.
2020-01-21 02:15:31 +01:00
Tobias Geerinckx-Rice
030fe2fb7e
gnu: miso: Update home page.
...
* gnu/packages/bioinformatics.scm (miso)[home-page]: Update.
2020-01-21 02:15:31 +01:00
Tobias Geerinckx-Rice
b725655fce
gnu: grit: Update home page.
...
* gnu/packages/bioinformatics.scm (grit)[home-page]: Use source code
repository as home page.
2020-01-21 02:15:31 +01:00
Tobias Geerinckx-Rice
b56f2b6366
gnu: express-beta-diversity: Update home page.
...
The original is not coming back:
<https://github.com/dparks1134/ExpressBetaDiversity/issues/11 >.
* gnu/packages/bioinformatics.scm (express-beta-diversity)[home-page]:
Use source code repository as home page.
2020-01-21 02:15:31 +01:00
Tobias Geerinckx-Rice
568bd2e382
gnu: dendropy: Update home page.
...
* gnu/packages/bioinformatics.scm (dendropy)[home-page]: Update.
2020-01-21 02:15:31 +01:00
Julien Lepiller
5aa573d8c7
gnu: ocaml-markup: Update to 0.8.2.
...
gnu/packages/ocaml.scm (ocaml-markup): Update to 0.8.2.
2020-01-21 01:12:26 +01:00
Julien Lepiller
16829d3b8a
gnu: ocaml-lwt: Update to 5.1.1.
...
* gnu/packages/ocaml.scm (ocaml-lwt): update to 5.1.1.
2020-01-21 01:12:05 +01:00
Julien Lepiller
2624921a64
gnu: Add ocaml-mmap.
...
* gnu/packages/ocaml.scm (ocaml-mmap): New variable.
2020-01-21 01:11:39 +01:00
Julien Lepiller
2e038f36f8
gnu: ocaml-bisect-ppx: Update to 1.4.2.
...
* gnu/packages/ocaml.scm (ocaml-bisect-ppx): Update to 1.4.2.
2020-01-21 01:11:35 +01:00
Julien Lepiller
73e01ae456
gnu: ocaml-qtest. Update to 2.10.1.
...
* gnu/packages/ocaml.scm (ocaml-qtest): Update to 2.10.1.
2020-01-21 01:11:31 +01:00
Julien Lepiller
795cf2a3b5
gnu: ocaml-qcheck: Update to 0.12.
...
* gnu/packages/ocaml.scm (ocaml-qcheck): Update to 0.12.
2020-01-21 01:11:20 +01:00
Julien Lepiller
c2eb8c7ef7
gnu: camlp5: Update to 7.10.
...
* gnu/packages/ocaml.scm (camlp5): Upadte to 7.10.
2020-01-21 01:10:49 +01:00
Julien Lepiller
efeda080ef
gnu: opam: Update to 2.0.6.
...
* gnu/pckages/ocaml.scm (opam): Update to 2.0.6.
2020-01-21 01:10:42 +01:00
Tobias Geerinckx-Rice
99db6db7be
gnu: Use HTTPS for bioconductor.org.
...
* gnu/packages/bioinformatics.scm (r-homo-sapiens)[source]: Use HTTPS.
* gnu/packages/bioconductor.scm (r-bsgenome-mmusculus-ucsc-mm9-masked,
r-cghcall, r-diffbind, r-cghbase, r-ripseeker, r-chippeakanno,
r-qdnaseq, r-marray, r-multtest)[home-page]: Likewise.
* gnu/packages/graph.scm (r-rgraphviz)[home-page]: Likewise.
2020-01-21 00:43:39 +01:00
Tobias Geerinckx-Rice
570b89f401
gnu: gzdoom: Update to 4.3.2.
...
* gnu/packages/games.scm (gzdoom): Update to 4.3.2.
[source]: Use GIT-FETCH and GIT-FILE-NAME. Apply system libgme patch.
Update snippet.
[arguments]: Allow system libgme. Update substitution file names.
[inputs]: Use fluidsynth@2.
* gnu/packages/patches/gzdoom-find-system-libgme.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
2020-01-21 00:43:24 +01:00
Tobias Geerinckx-Rice
21e733ce4e
gnu: supercollider: Update to 3.10.4.
...
* gnu/packages/audio.scm (supercollider): Update to 3.10.4.
[source]: Remove patch.
* gnu/packages/patches/supercollider-boost-1.70-build-fix.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2020-01-21 00:43:24 +01:00
Ricardo Wurmus
fa730a9780
Revert "gnu: Add guile3.0-commonmark."
...
This reverts commit 346386f3f7 .
A Guile 3.0 variant had already been added with commit
1fa3423236 .
2020-01-21 00:05:50 +01:00
Ricardo Wurmus
77c95ee60c
gnu: Add guile3.0-pfds.
...
* gnu/packages/guile-xyz.scm (guile3.0-pfds): New variable.
2020-01-20 23:49:53 +01:00
Ricardo Wurmus
b0b725ed40
gnu: Add guile3.0-wisp.
...
* gnu/packages/guile-xyz.scm (guile3.0-wisp): New variable.
2020-01-20 23:49:53 +01:00
Ricardo Wurmus
346386f3f7
gnu: Add guile3.0-commonmark.
...
* gnu/packages/guile-xyz.scm (guile3.0-commonmark): New variable.
(guile-commonmark)[arguments]: Patch configure file.
2020-01-20 23:49:52 +01:00
Ludovic Courtès
37eda8c044
installer: Disable F12 hot key.
...
Fixes <https://bugs.gnu.org/38562 >.
Reported by Brice Waegeneire <brice@waegenei.re >.
Previously, pressing F12 or shift-F2 in one of those forms would cause
it to exit, usually with the default value #t because the caller had not
provided a useful hotkey "callback".
* gnu/installer/newt/page.scm (run-input-page, run-confirmation-page)
(run-listbox-selection-page, run-checkbox-tree-page)
(run-file-textbox-page): Pass #:flags FLAG-NOF12 to 'make-form'.
2020-01-20 23:21:00 +01:00
Ludovic Courtès
48659aa221
installer: Makes sure the installer proceeds after hitting "Edit".
...
Fixes <https://bugs.gnu.org/39199 >.
Reported by Jonathan Brielmaier <jonathan.brielmaier@web.de >.
* gnu/installer/newt/page.scm (run-file-textbox-page): Move 'loop' to
the beginning of the body. Do not call 'loop' from the 'dynamic-wind'
exit handler as we would not return the value of the second call to
'loop'.
2020-01-20 23:20:59 +01:00
Marius Bakke
c450ee9755
gnu: python-gst: Build with Meson.
...
* gnu/packages/gstreamer.scm (python-gst)[build-system]: Change to MESON-BUILD-SYSTEM.
[arguments]: Adjust accordingly.
2020-01-20 23:18:49 +01:00
Marius Bakke
4bebd7e4e6
gnu: gst-libav: Build with Meson.
...
* gnu/packages/gstreamer.scm (gst-libav)[build-system]: Change to MESON-BUILD-SYSTEM.
[arguments]: Remove.
2020-01-20 23:18:49 +01:00
Marius Bakke
1bf1e32b01
gnu: gst-plugins-ugly: Build with Meson.
...
* gnu/packages/gstreamer.scm (gst-plugins-ugly)[build-system]: Change to
MESON-BUILD-SYSTEM.
2020-01-20 23:18:49 +01:00
Marius Bakke
2dc277dd99
gnu: gst-plugins-bad: Build with Meson.
...
* gnu/packages/gstreamer.scm (gst-plugins-bad)[outputs]: Remove.
[build-system]: Change to MESON-BUILD-SYSTEM.
[arguments]: Enable tests, except for one. Disable documentation generation.
2020-01-20 23:18:48 +01:00
Marius Bakke
321f47c25d
gnu: gst-plugins-good: Build with Meson.
...
* gnu/packages/gstreamer.scm (gst-plugins-good)[build-system]: Change to
MESON-BUILD-SYSTEM.
2020-01-20 23:18:48 +01:00
Marius Bakke
738923b6e3
gnu: gst-plugins-base: Build with Meson.
...
* gnu/packages/gstreamer.scm (gst-plugins-base)[build-system]: Change to
MESON-BUILD-SYSTEM.
[outputs]: Remove.
[arguments]: Enable parallel tests. Disable doc generation and Mesa dependency.
2020-01-20 23:18:48 +01:00
Marius Bakke
9792adaa61
gnu: gstreamer: Build with Meson.
...
The package fails to build with GNU Make 4.3, and upstream no longer supports
autotools.
* gnu/packages/gstreamer.scm (gstreamer)[build-system]: Change to
MESON-BUILD-SYSTEM.
[arguments]: Remove #:configure-flags. Add #:phases.
[native-inputs]: Add GTK-DOC.
2020-01-20 23:18:48 +01:00
Marius Bakke
25623647e9
gnu: guile-git: Update to 0.3.0.
...
* gnu/packages/guile.scm (guile-git): Update to 0.3.0.
[source]: Download tarball with URL-FETCH.
[source](file-name, modules, snippet): Remove.
[native-inputs]: Remove AUTOCONF, AUTOMAKE and TEXINFO.
2020-01-20 21:53:53 +01:00
Marius Bakke
89595f98d0
gnu: qt@4: Build with libjpeg-turbo.
...
* gnu/packages/qt.scm (qt-4)[inputs]: Change from LIBJPEG-8 to LIBJPEG-TURBO.
2020-01-20 21:53:52 +01:00
Marius Bakke
96738cb11f
gnu: stepmania: Build with libjpeg-turbo.
...
* gnu/packages/games.scm (stepmania)[inputs]: Change from LIBJPEG-8 to
LIBJPEG-TURBO.
2020-01-20 21:53:52 +01:00
Marius Bakke
7b24b76b98
gnu: mame: Build with libjpeg-turbo.
...
* gnu/packages/emulators.scm (mame)[inputs]: Change from LIBJPEG-8 to
LIBJPEG-TURBO.
2020-01-20 21:53:52 +01:00
Marius Bakke
43987c977c
gnu: mailutils: Update to 3.8.
...
* gnu/packages/mail.scm (mailutils): Update to 3.8.
[arguments]: Adjust substitutions.
2020-01-20 21:53:52 +01:00
Marius Bakke
37f4454734
gnu: xorg-server: Update to 1.20.7.
...
* gnu/packages/xorg.scm (xorg-server): Update to 1.20.7.
2020-01-20 21:53:52 +01:00
Marius Bakke
d18116d9b5
gnu: libsrtp: Build shared library.
...
* gnu/packages/telephony.scm (libsrtp)[arguments]: Add #:phases.
2020-01-20 21:53:52 +01:00
Marius Bakke
80af75abcf
gnu: libsrtp: Update to 2.3.0.
...
* gnu/packages/telephony.scm (libsrtp): Update to 2.3.0.
2020-01-20 21:53:52 +01:00
Marius Bakke
fd4b27e4e4
gnu: ffmpeg: Update to 4.2.2.
...
* gnu/packages/video.scm (ffmpeg): Update to 4.2.2.
2020-01-20 21:53:51 +01:00
Marius Bakke
0fd80a2556
gnu: libvpx: Update to 1.8.2.
...
* gnu/packages/video.scm (libvpx): Update to 1.8.2.
2020-01-20 21:53:51 +01:00
Marius Bakke
bb06336e81
gnu: re2: Update to 2020-01-01.
...
* gnu/packages/regex.scm (re2): Update to 2020-01-01.
2020-01-20 21:53:51 +01:00
Marius Bakke
07b1d40899
gnu: e2fsprogs: Update to 1.45.5.
...
* gnu/packages/linux.scm (e2fsprogs): Update to 1.45.5.
2020-01-20 21:53:51 +01:00
Marius Bakke
a5407c768d
gnu: snappy: Update to 1.1.8.
...
* gnu/packages/compression.scm (snappy): Update to 1.1.8.
2020-01-20 21:53:51 +01:00
Marius Bakke
ae3909eb4c
gnu: python-parameterized: Update to 0.7.1.
...
* gnu/packages/patches/python2-parameterized-docstring-test.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/check.scm (python-parameterized): Update to 0.7.1.
[arguments]: Remove #:tests?. Add #:phases to override 'check' phase.
[native-inputs]: Add PYTHON-MOCK and PYTHON-NOSE.
[properties]: New field.
(python2-parameterized)[source](patches): New field.
2020-01-20 21:53:51 +01:00
Marius Bakke
544ea9c2df
gnu: Add python-anytree.
...
* gnu/packages/python-xyz.scm (python-anytree): New public variable.
2020-01-20 21:53:51 +01:00
Marius Bakke
20bf58bff4
gnu: python-packaging: Add comment about upstream patch status.
...
* gnu/packages/python-xyz.scm (python-packaging)[source]: Add comment, to
prevent needless rebuild by updating the patch directly.
2020-01-20 21:53:50 +01:00
Christopher Baines
aa10ad7d46
gnu: guix-data-service: Update to 0.0.1-17.bf25a8d.
...
* gnu/packages/web.scm (guix-data-service): Update to 0.0.1-17.bf25a8d.
2020-01-20 20:32:24 +00:00
Christopher Baines
b3e28b5ef5
tests: mail: Remove %getmail-os from the bottom of the file.
...
This was left over when debugging the system test.
* gnu/tests/mail.scm: Remove %getmail-os from the bottom of the file.
2020-01-20 19:13:17 +00:00
Christopher Baines
c8defb2b2a
services: getmail: Adjust a couple of default configuration values.
...
Change the message-log-syslog and message-log-verbose configuration values to
match the Getmail defaults.
* gnu/services/getmail.scm (getmail-options-configuration): Change defaults
for message-log-syslog and message-log-verbose
* doc/guix.texi (Mail Services): Update the Getmail documentation accordingly.
2020-01-20 19:13:16 +00:00
Christopher Baines
2e1a314871
services: getmail: Fix some configuration documentation strings.
...
* gnu/services/getmail.scm (getmail-retriever-configuration): Specify proper
documentation strings for some of the fields.
* doc/guix.texi (Mail Services): Update the documentation accordingly.
2020-01-20 19:09:00 +00:00
Christopher Baines
147a7f1fd2
services: getmail: Fix stopping the shepherd service.
...
* gnu/services/getmail.scm (getmail-shepherd-services): Add a stop component
to the shepherd services.
2020-01-20 19:01:23 +00:00
Danny Milosavljevic
19b310901c
services: Add "sane" service.
...
* gnu/services/desktop.scm (%desktop-services): Add "sane" service.
2020-01-20 18:46:07 +01:00
Efraim Flashner
9448d0effc
gnu: rust-crossbeam-channel-0.3: Update to 0.3.9.
...
* gnu/packages/crates-io.scm (rust-crossbeam-channel-0.3)[arguments]:
Remove rust-smallvec-0.6 from cargo-inputs. Add rust-rust-num-cpus-1.10
to cargo-development-inputs. Replace rust-rand-0.4 with 0.6.
2020-01-20 17:28:45 +02:00
John Soo
b42899c29c
gnu: Add rust-crossbeam-channel-0.4.
...
* gnu/packages/crates-io.scm (rust-crossbeam-channel-0.4): New variable.
(rust-crossbeam-channel-0.3): Inherit from rust-crossbeam-channel-0.4.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 17:24:17 +02:00
John Soo
2cd2cb2b92
gnu: rust-grep-searcher-0.1: Update to 0.1.6.
...
* gnu/packages/crates-io.scm (rust-grep-searcher-0.1): Update to 0.1.6.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 17:23:13 +02:00
John Soo
8328cf2640
gnu: Add rust-env-logger-0.7.
...
* gnu/packages/crates-io.scm (rust-env-logger-0.7): New variable.
(rust-env-logger-0.6): Inherit from rust-env-logger-0.7.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 17:22:15 +02:00
John Soo
7e7fd7fadc
gnu: Add rust-humantime-1.3.
...
* gnu/packages/crates-io.scm (rust-humantime-1.3): New variable.
(rust-humantime-1.2): Inherit from rust-humantime-1.3.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 17:20:41 +02:00
John Soo
a842e36259
gnu: Add rust-lazy-static-1.4.
...
* gnu/packages/crates-io.scm (rust-lazy-static-1.4): New variable.
(rust-lazy-static-1.3): Inherit from rust-lazy-static-1.4.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 17:20:28 +02:00
John Soo
166aca480e
gnu: Add rust-hex-0.4.
...
* gnu/packages/crates-io.scm (rust-hex-0.4): New variable.
(rust-hex-0.3): Inherit from rust-hex-0.4.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 17:20:10 +02:00
John Soo
2157f749ec
gnu: rust-memchr-2.2: Update to 2.2.1.
...
* gnu/packages/crates-io.scm (rust-memchr-2.2): Update to 2.2.1.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 17:14:55 +02:00
John Soo
1ff4d9cbca
gnu: rust-toml-0.5: Update to 0.5.6.
...
* gnu/packages/crates-io.scm (rust-toml-0.5): Update to 0.5.6.
[arguments]: Skip build. Add rust-indexmap-1.0, rust-serde-1.0 to
cargo-inputs. Add rust-serde-derive-1.0, rust-serde-json-1.0 to
cargo-development-inputs.
[properties]: Remove field.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:45:04 +02:00
John Soo
b1ae24c9a4
gnu: Add rust-tempfile-3.1.
...
* gnu/packages/crates-io.scm (rust-tempfile-3.1): New variable.
(rust-tempfile-3.0): Inherit from rust-tempfile-3.1.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:44:12 +02:00
John Soo
a3c031ce43
gnu: Add rust-git2-0.11.
...
* gnu/packages/crates-io.scm (rust-git2-0.11): New variable.
(rust-git2-0.9): Inherit from rust-git2-0.11.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:43:35 +02:00
John Soo
f949981b78
gnu: Add rust-url-2.1.
...
* gnu/packages/crates-io.scm (rust-url-2.1): New variable.
(rust-url-1.7): Inherit from rust-url-2.1.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:42:38 +02:00
Efraim Flashner
101aa648d3
gnu: rust-time-0.1: Update to 0.1.42.
...
* gnu/packages/crates-io.scm (rust-time-0.1): Update to 0.1.42.
[arguments]: Replace rust-log-0.3 with 0.4 in cargo-development-inputs.
2020-01-20 16:42:15 +02:00
John Soo
4fbc679a13
gnu: rust-time-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-time-0.1)[arguments]: Skip build. Add
rust-libc-0.2, rust-redox-syscall-0.1, rust-rustc-serialize-0.3,
rust-winapi-0.3 to cargo-inputs. Add rust-log-0.3, rust-winapi-0.3 to
cargo-development-inputs.
[home-page] Update url.
[properties] Remove field.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:42:15 +02:00
John Soo
cd088ebe89
gnu: Add rust-idna-0.2.
...
* gnu/packages/crates-io.scm (rust-idna-0.2): New variable.
(rust-idna-0.1): Inherit from rust-idna-0.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:42:15 +02:00
John Soo
28c006321f
gnu: rust-rustc-test-0.3: Correct cargo-inputs.
...
* gnu/packages/crates-io.scm (rust-rustc-test-0.3)[arguments]: Replace
rust-term-0.5 with 0.4 in cargo-inputs. Move rust-rustc-version-0.2 from
cargo-development-inputs to cargo-inputs.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:42:15 +02:00
John Soo
a9fd04214b
gnu: rust-term-0.5: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-term-0.5):[arguments] Skip build.
Add rust-byteorder-1.3, rust-dirs-1.0, rust-winapi-0.3 to cargo-inputs.
[properties] Remove field.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:42:15 +02:00
John Soo
91d81ab248
gnu: rust-term-0.4: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-term-0.4): [arguments] Skip build.
Add rust-kernel32-sys-0.2, rust-winapi-0.2 to cargo-inputs.
[properties]: Don't inherit field.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:42:14 +02:00
John Soo
89e4d2ccdb
gnu: Add rust-rand-0.7.
...
* gnu/packages/crates-io.scm (rust-rand-0.7): New variable.
(rust-rand-0.6): Inherit from rust-rand-0.7.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:42:14 +02:00
John Soo
ad30f7dc01
gnu: Add rust-libgit2-sys-0.10.
...
* gnu/packages/crates-io.scm (rust-libgit2-sys-0.10): New variable.
(rust-libgit2-sys-0.8): Inherit from rust-libgit2-sys-0.10.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:42:14 +02:00
John Soo
91b1ff7000
gnu: Add rust-rayon-1.3.
...
* gnu/packages/crates-io.scm (rust-rayon-1.3): New variable.
(rust-rayon-1.1): Inherit from rust-rayon-1.3.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:42:14 +02:00
John Soo
eb3cf81cdd
gnu: Add rust-rayon-core-1.7.
...
* gnu/packages/crates-io.scm (rust-rayon-core-1.7): New variable.
(rust-rayon-core-1.5): Inherit from rust-rayon-core-1.7.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:42:14 +02:00
Efraim Flashner
1261bc7ac8
gnu: rust-rand-pcg-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-rand-pcg-0.2)[arguments]: Skip build.
Add rust-rand-core-0.5, rust-serde-1.0 to cargo-inputs. Add
rust-bincode-1.1 to cargo-development-inputs.
[properties]: Remove field.
2020-01-20 16:42:13 +02:00
Efraim Flashner
91107d058c
gnu: rust-rand-pcg-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-rand-pcg-0.1)[arguments]: Skip build.
Add rust-autocfg-0.1, rust-rand-core-0.4, rust-serde-1.0,
rust-serde-derive-1.0 to cargo-inputs. Add rust-bincode-1.1 to
cargo-development-inputs.
[properties]: Don't inherit field.
2020-01-20 16:42:13 +02:00
John Soo
c060511f2f
gnu: Add rust-rand-pcg-0.2.
...
* gnu/packages/crates-io.scm (rust-rand-pcg-0.2): New variable.
(rust-rand-pcg-0.1): Inherit from rust-rand-pcg-0.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 16:42:10 +02:00
Lars-Dominik Braun
a8ef4978f2
gnu: Add python-gssapi.
...
* gnu/packages/python-xyz.scm (python-gssapi): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2020-01-20 20:50:24 +08:00
Lars-Dominik Braun
72c2478add
gnu: Add python-k5test.
...
* gnu/packages/python-xyz.scm (python-k5test): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2020-01-20 20:50:24 +08:00
Lars-Dominik Braun
9786258b4d
gnu: Add python-shouldbe.
...
* gnu/packages/python-xyz.scm (python-shouldbe): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2020-01-20 20:50:24 +08:00
Lars-Dominik Braun
84efaa3b8e
gnu: Add python-forbiddenfruit.
...
* gnu/packages/python-xyz.scm (python-forbiddenfruit): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2020-01-20 20:50:24 +08:00
Guillaume Le Vaillant
d589f0d2bc
gnu: sbcl-ironclad: Update to 0.48.
...
* gnu/packages/lisp-xyz.scm (sbcl-ironclad): Update to 0.48.
[inputs]: Remove nibbles.
2020-01-20 11:04:26 +01:00
John Soo
544fff4f43
gnu: Add rust-crossbeam-utils-0.7.
...
* gnu/packages/crates-io.scm (rust-crossbeam-utils-0.7): New variable.
(rust-crossbeam-utils-0.6): Inherit from rust-crossbeam-utils-0.7.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 11:16:35 +02:00
John Soo
56beba471b
gnu: Add rust-rand-hc-0.2.
...
* gnu/packages/crates-io.scm (rust-rand-hc-0.2): New variable.
(rust-rand-hc-0.1): Inherit from rust-rand-hc-0.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 11:16:35 +02:00
John Soo
2d92286de6
gnu: rust-rand-hc-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-rand-hc-0.1):[arguments] Skip build.
Add urst-rand-core-0.3 to cargo-inputs.
[properties] Remove field.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 11:16:34 +02:00
John Soo
812ce80ada
gnu: Update rust-rand-core-0.5 to 0.5.1.
...
* gnu/packages/crates-io.scm (rust-rand-core-0.5): Update to 0.5.1.
[arguments]: Remove rust-serde-derive-1.0 from cargo-inputs.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 11:16:34 +02:00
John Soo
6b35ddf612
gnu: Update rust-rand-chacha-0.2 to 0.2.1.
...
* gnu/packages/crates-io.scm (rust-rand-chacha-0.2): Update to 0.2.1.
[arguments]: Remove rust-autocfg-0.1 from cargo-development-inputs.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 11:16:34 +02:00
John Soo
bc3c2aacd3
gnu: Add rust-memoffset-0.5.
...
* gnu/packages/crates-io.scm (rust-memoffset-0.5): New variable.
(rust-memoffset-0.2): Inherit from rust-memoffset-0.5.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 11:16:34 +02:00
John Soo
4edb32699e
gnu: Add rust-crossbeam-queue-0.2.
...
* gnu/packages/crates-io.scm (rust-crossbeam-queue-0.2): New variable.
(rust-crossbeam-queue-0.1): Inherit from rust-crossbeam-queue-0.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 11:16:34 +02:00
John Soo
6f8794bd50
gnu: Update rust-crossbeam-deque to 0.7.2.
...
* gnu/packages/crates-io.scm (rust-crossbeam-deque-0.7): Update to 0.7.2.
[arguments]: In cargo-inputs, replace rust-crossbeam-epoch-0.7 with 0.8,
rust-crossbeam-utils-0.6 with 0.7. In cargo-development-inputs, replace
rust-rand-0.4 with 0.6.
* gnu/packages/gnome.scm (librsvg-next)[source]: Don't replace
package-source for crossbeam-deque-0.7.
Co-authored-by: Efraim Flashner <efraim@flashner.co.il >
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 11:15:56 +02:00
John Soo
dd39f0acc9
gnu: Add rust-crossbeam-epoch-0.8.
...
* gnu/packages/crates-io.scm (rust-crossbeam-epoch-0.8): New variable.
(rust-crossbeam-epoch-0.7): Inherit from rust-crossbeam-epoch-0.8.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2020-01-20 11:15:55 +02:00
Florian Pelz
17fe068ed7
gnu: USB_ModeSwitch data: Update to 20191128.
...
* gnu/packages/usb-modeswitch.scm (usb-modeswitch-data): Update to 20191128.
[source] Use HTTPS.
[home-page] Use HTTPS.
2020-01-20 08:57:24 +00:00
Florian Pelz
d0759f6134
gnu: USB_ModeSwitch: Update to 2.6.0.
...
* gnu/packages/usb-modeswitch.scm (usb-modeswitch): Update to 2.6.0.
[source]: Remove snippet that deletes jimtcl, which is no longer bundled.
Remove patch. Use HTTPS.
[arguments]: Adapt to changed file names.
[home-page] Use HTTPS.
[license]: Fix missing BSD-2 license.
* gnu/packages/patches/usb-modeswitch-accept-config-arg.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2020-01-20 08:57:17 +00:00
Efraim Flashner
317f925b7f
gnu: Add node-color-name.
...
* gnu/packages/node-xyz.scm (node-color-name): New variable.
2020-01-20 09:40:01 +02:00
Efraim Flashner
1c8d53f8c5
gnu: Add node-stack-trace.
...
* gnu/packages/node-xyz.scm (node-stack-trace): New variable.
2020-01-20 09:39:59 +02:00
Efraim Flashner
1c83b1c0f3
gnu: Add node-far.
...
* gnu/packages/node-xyz.scm (node-far): New variable.
2020-01-20 09:39:58 +02:00
Efraim Flashner
f6b8bd6eb7
gnu: Add node-oop.
...
* gnu/packages/node-xyz.scm (node-oop): New variable.
2020-01-20 09:39:56 +02:00
Efraim Flashner
d1095c47f1
gnu: Add node-util-deprecate.
...
* gnu/packages/node-xyz.scm (node-util-deprecate): New variable.
2020-01-20 09:39:54 +02:00
Efraim Flashner
c8bbff7ee1
gnu: Add node-statsd-parser.
...
* gnu/packages/node-xyz.scm (node-statsd-parser): New variable.
2020-01-20 09:39:53 +02:00
Efraim Flashner
a971890b1d
gnu: Add node-mersenne.
...
* gnu/packages/node-xyz.scm (node-mersenne): New variable.
2020-01-20 09:39:51 +02:00
Efraim Flashner
2f2e7be944
gnu: Add node-long-stack-traces.
...
* gnu/packages/node-xyz.scm (node-long-stack-traces): New variable.
2020-01-20 09:39:49 +02:00
Efraim Flashner
0a2d61a594
gnu: Add node-env-variable.
...
* gnu/packages/node-xyz.scm (node-env-variable): New variable.
* gnu/local.mk (GNU_SYSTEM_MODULES): Register it.
2020-01-20 09:39:47 +02:00
Tobias Geerinckx-Rice
3b02036ea0
gnu: ghc-hashable-time: Use HTTPS home page.
...
* gnu/packages/haskell-xyz.scm (ghc-hashable-time)[home-page]: Use HTTPS.
2020-01-20 04:51:07 +01:00
Tobias Geerinckx-Rice
35437dbfe1
gnu: ghc-sdl2: Use HTTPS home page.
...
* gnu/packages/haskell-xyz.scm (ghc-sdl2)[home-page]: Use HTTPS.
2020-01-20 04:51:07 +01:00
Tobias Geerinckx-Rice
0b8472b2f3
gnu: r-dummies: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-dummies)[home-page]: Use HTTPS.
2020-01-20 04:51:07 +01:00
Tobias Geerinckx-Rice
e121cb8706
gnu: cli-visualizer: Update to 1.8.
...
* gnu/packages/audio.scm (cli-visualizer): Update to 1.8.
[build-system]: Switch to cmake-build-system.
[inputs]: Remove googletest.
[arguments]: Disable tests. Remove #:make-flags and all phases apart
from ‘install-examples’, previously ‘data’.
2020-01-20 04:49:51 +01:00
Tobias Geerinckx-Rice
2e5438e0f4
gnu: stunnel: Update to 5.56.
...
* gnu/packages/web.scm (stunnel): Update to 5.56.
2020-01-20 04:49:51 +01:00
Tobias Geerinckx-Rice
b722a1f1e1
gnu: mpv: Update to 0.31.0.
...
* gnu/packages/video.scm (mpv): Update to 0.31.0.
2020-01-20 04:49:51 +01:00
Tobias Geerinckx-Rice
c3b78dd97e
gnu: youtube-dl: Update to 2020.01.15.
...
* gnu/packages/video.scm (youtube-dl): Update to 2020.01.15.
2020-01-20 04:49:51 +01:00
Tobias Geerinckx-Rice
5c65b79036
gnu: cpuid: Update to 20200116.
...
* gnu/packages/linux.scm (cpuid): Update to 20200116.
2020-01-20 04:49:51 +01:00
Tobias Geerinckx-Rice
3caef3bdb7
gnu: pngquant: Update to 2.12.6.
...
* gnu/packages/image.scm (pngquant): Update to 2.12.6.
2020-01-20 04:49:51 +01:00
Tobias Geerinckx-Rice
8008605dbe
gnu: blender: Update to 2.81a.
...
* gnu/packages/graphics.scm (blender): Update to 2.81a.
2020-01-20 04:49:51 +01:00
Tobias Geerinckx-Rice
7cde520310
gnu: ghc-missingh: Use HTTPS home page.
...
* gnu/packages/haskell-xyz.scm (ghc-missingh)[home-page]: Use HTTPS.
2020-01-20 04:49:51 +01:00
Tobias Geerinckx-Rice
63b066709b
gnu: Update pythonpaste.org home pages.
...
* gnu/packages/check.scm (python-scripttest)[home-page]: Update URI.
* gnu/packages/python-web.scm (python-paste, python-pastescript)
(python-webtest, python-pastedeploy)[home-page]: Likewise.
2020-01-20 04:49:51 +01:00
Tobias Geerinckx-Rice
21de4160d3
gnu: lsh: Use HTTPS home page.
...
* gnu/packages/ssh.scm (lsh)[home-page]: Use HTTPS.
2020-01-20 04:22:26 +01:00
Tobias Geerinckx-Rice
bac03797fd
gnu: glulxe: Use HTTPS home page.
...
* gnu/packages/games.scm (glulxe)[home-page]: Use HTTPS.
2020-01-20 04:22:26 +01:00
Ludovic Courtès
7842ddcbc1
guix package: Create profiles/per-user/$USER upfront.
...
Fixes <https://bugs.gnu.org/39194 >.
Reported by Matt Wette <matt.wette@gmail.com >.
* guix/scripts/package.scm (build-and-use-profile): Move
'ensure-default-profile' call to...
(process-actions): ... here.
2020-01-19 23:11:37 +01:00
Ludovic Courtès
b782688d71
syscalls: Pass the right 'throw' arguments in 'call-with-file-lock/no-wait'.
...
Reported by Matt Wette <matt.wette@gmail.com >
in <https://bugs.gnu.org/39194 >.
* guix/build/syscalls.scm (call-with-file-lock/no-wait): When
re-throwing, pass KEY in addition to ARGS.
2020-01-19 23:11:37 +01:00
Ludovic Courtès
358f66a004
repl: Avoid dependency on high-level package modules.
...
* guix/scripts/repl.scm: Remove imports of (guix scripts build), (gnu
packages), (guix utils), and (guix packages).
(%options): Define "--load-path" option right here.
2020-01-19 23:11:37 +01:00
Ludovic Courtès
eb60253220
repl: Adjust "--listen" help message.
...
* guix/scripts/repl.scm (show-help): Adjust "--listen" string.
2020-01-19 23:11:37 +01:00
Ludovic Courtès
a9f4a7eee3
repl: Add "-q".
...
* guix/scripts/repl.scm (%options, show-help): Add "-q".
(guix-repl): Add 'user-config' and use it. Honor 'ignore-dot-guile?'.
2020-01-19 23:11:37 +01:00
Ludovic Courtès
3adf320e44
tests: install: "raid-root-os" test uses RAID-1 instead of RAID-0.
...
Fixes <https://bugs.gnu.org/38086 >.
Thanks to Vagrant and Tobias!
* gnu/tests/install.scm (%raid-root-os)[initrd-modules]: Add "raid1"
instead of "raid0".
(%raid-root-installation-script): Make the partitions twice as big.
Invoke 'mdadm' with '--level=mirror' instead of '--level=stripe';
connect "yes" to its stdin.
(%test-raid-root-os): Set #:target-size to 2.8 GiB.
2020-01-19 23:11:37 +01:00
Ludovic Courtès
1fa3423236
gnu: guile-commonmark: Add "guile3.0-commonmark" variant.
...
* gnu/packages/guile-xyz.scm (guile-commonmark)[source]: Add 'modules'
and 'snippet'.
(guile3.0-commonmark): New variable.
2020-01-19 23:11:36 +01:00
Marius Bakke
25b8d676c0
gnu: ImageMagick: Update to 6.9.10-87.
...
* gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.10-87.
2020-01-19 21:51:45 +01:00
Marius Bakke
2daded5a91
gnu: python-pygments: Update to 2.5.2.
...
* gnu/packages/python-xyz.scm (python-pygments): Update to 2.5.2.
2020-01-19 21:51:29 +01:00
Marius Bakke
3c2ebce669
gnu: dejagnu: Update to 1.6.2.
...
* gnu/packages/dejagnu.scm (dejagnu): Update to 1.6.2.
2020-01-19 21:51:29 +01:00
Marius Bakke
50adab1026
gnu: libical: Update to 3.0.7.
...
* gnu/packages/calendar.scm (libical): Update to 3.0.7.
2020-01-19 21:51:29 +01:00
Marius Bakke
58d1d46a5e
gnu: libxkbcommon: Update to 0.10.0.
...
* gnu/packages/xdisorg.scm (libxkbcommon): Update to 0.10.0.
2020-01-19 21:51:29 +01:00
Marius Bakke
ad7287b20e
gnu: libwebp: Update to 1.1.0.
...
* gnu/packages/image.scm (libwebp): Update to 1.1.0.
2020-01-19 21:51:28 +01:00
Tobias Geerinckx-Rice
bed24ecfcd
gnu: arc-theme: Fix build.
...
* gnu/packages/web.scm (sassc/libsass-3.5): New public variable.
* gnu/packages/gnome.scm (arc-theme)[native-inputs]: Use it.
2020-01-19 18:18:38 +01:00
Tobias Geerinckx-Rice
6305b03965
gnu: Remove duplicate module imports from (gnu packages gnome).
...
* gnu/packages/gnome.scm: Remove duplicate module imports.
2020-01-19 18:07:32 +01:00
Tobias Geerinckx-Rice
b7388a080d
gnu: minetest-data, minetest: Use HTTPS home page.
...
* gnu/packages/games.scm (minetest-data, minetest)[home-page]:
Use HTTPS and www subdomain.
2020-01-19 17:57:21 +01:00
Tobias Geerinckx-Rice
18bbaf6714
gnu: quakespasm: Update to 0.93.2.
...
* gnu/packages/games.scm (quakespasm): Update to 0.93.2.
2020-01-19 17:57:20 +01:00
Tobias Geerinckx-Rice
b74f7f06ac
gnu: teeworlds: Update to 0.7.4 [security fixes]
...
This fixes CVE-2019-10877, CVE-2019-10878, and CVE-2019-10879.
* gnu/packages/games.scm (teeworlds): Update to 0.7.4.
[source]: Remove patch.
[arguments]: Remove use-latest-json-parser substitution.
* gnu/packages/patches/teeworlds-use-latest-wavpack.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2020-01-19 17:57:20 +01:00
Tobias Geerinckx-Rice
5448b16e81
gnu: odamex: Update to 0.8.1.
...
* gnu/packages/games.scm (odamex): Update to 0.8.1.
2020-01-19 17:57:20 +01:00
Tobias Geerinckx-Rice
9d1c437619
gnu: gramps: Update to 5.1.2.
...
* gnu/packages/genealogy.scm (gramps): Update to 5.1.2.
2020-01-19 17:57:20 +01:00
Tobias Geerinckx-Rice
60e4f6e233
gnu: minetest: Update to 5.1.1.
...
* gnu/packages/games.scm (minetest): Update to 5.1.1.
[source]: Remove obsolete snippet… bit.
2020-01-19 17:57:20 +01:00
Tobias Geerinckx-Rice
86081d9d7f
gnu: minetest-data: Update to 5.1.1.
...
* gnu/packages/games.scm (minetest-data)[version]: Update to 5.1.1.
2020-01-19 17:57:20 +01:00
Tobias Geerinckx-Rice
46128e94fd
gnu: xautolock: Use HTTPS home page.
...
* gnu/packages/xdisorg.scm (xautolock)[home-page]: Use HTTPS.
[source]: Likewise. Don't use NAME in source URI.
2020-01-19 17:57:09 +01:00
Tobias Geerinckx-Rice
5015343709
gnu: ghc-dense-linear-algebra: Use HTTPS home page.
...
* gnu/packages/haskell-xyz.scm (ghc-dense-linear-algebra)[home-page]: Use HTTPS.
2020-01-19 17:57:09 +01:00
Tobias Geerinckx-Rice
dcfdc90855
gnu: java-jcommander: Use HTTPS home page.
...
* gnu/packages/java.scm (java-jcommander)[home-page]: Use HTTPS.
2020-01-19 17:57:09 +01:00
Tobias Geerinckx-Rice
1e05e837c7
gnu: elemental: Update home page.
...
* gnu/packages/maths.scm (elemental)[home-page]: Use repository home
page.
2020-01-19 17:57:09 +01:00
Tobias Geerinckx-Rice
b2e213c3e9
gnu: plantuml: Use HTTPS home page.
...
* gnu/packages/uml.scm (plantuml)[home-page]: Use HTTPS.
2020-01-19 17:57:08 +01:00
Tobias Geerinckx-Rice
c04cbcf70a
gnu: ecryptfs: Use HTTPS home page.
...
* gnu/packages/linux.scm (ecryptfs)[home-page]: Use HTTPS.
2020-01-19 17:57:08 +01:00
Tobias Geerinckx-Rice
332cc03bf7
gnu: font-wqy-zenhei: Use HTTP home page.
...
* gnu/packages/fonts.scm (font-wqy-zenhei)[home-page]: Use HTTP.
2020-01-19 17:57:08 +01:00
Tobias Geerinckx-Rice
62418049d1
gnu: dillo: Use HTTPS home page.
...
* gnu/packages/web-browsers.scm (dillo)[home-page]: Use HTTPS.
[source]: Likewise. Don't hard-code NAME in source URI.
2020-01-19 17:57:08 +01:00
Tobias Geerinckx-Rice
86bbfc5004
gnu: pfff: Use HTTPS home page.
...
* gnu/packages/textutils.scm (pfff)[home-page]: Use HTTPS.
2020-01-19 17:57:08 +01:00
Marius Bakke
289d66d0cf
gnu: mesa: Update to 19.3.2.
...
* gnu/packages/gl.scm (mesa): Update to 19.3.2.
2020-01-19 10:42:12 +01:00
Marius Bakke
fe19ab3f03
gnu: libva: Update to 2.6.1.
...
* gnu/packages/video.scm (libva): Update to 2.6.1.
2020-01-19 10:41:47 +01:00
Marius Bakke
7eb22b188b
gnu: libinput: Update to 1.15.0.
...
* gnu/packages/freedesktop.scm (libinput): Update to 1.15.0.
2020-01-19 10:41:13 +01:00
Marius Bakke
b0b7954271
gnu: OpenSSL@1.0: Update to 1.0.2u.
...
* gnu/packages/tls.scm (openssl-1.0): Update to 1.0.2u.
2020-01-19 10:40:42 +01:00
Marius Bakke
ca69163cc5
gnu: MariaDB: Remove workaround package.
...
* gnu/packages/databases.scm (mariadb)[arguments]: Add substitution for the
'mysql_install_db' script.
(mariadb/fixed-install-db): Remove variable.
(libdbi-drivers)[native-inputs]: Change from MARIADB/FIXED-INSTALL-DB to MARIADB.
2020-01-19 10:36:55 +01:00
Marius Bakke
dfe3b39d1e
gnu: cups-filters: Update to 1.26.2.
...
* gnu/packages/cups.scm (cups-filters): Update to 1.26.2.
2020-01-19 10:36:17 +01:00
Marius Bakke
11fbe0c3c3
gnu: cups: Update to 2.3.1.
...
* gnu/packages/cups.scm (cups-minimal): Update to 2.3.1.
2020-01-19 10:35:52 +01:00
Marius Bakke
f7e3e8c82e
gnu: nss, nss-certs: Update to 3.49.1.
...
* gnu/packages/certs.scm (nss-certs): Update to 3.49.1.
* gnu/packages/nss.scm (nss): Likewise.
2020-01-19 10:35:10 +01:00
Efraim Flashner
9cd3282162
gnu: noweb: Declare a source file-name.
...
* gnu/packages/noweb.scm (noweb)[source]: Add file-name field.
2020-01-19 09:31:55 +02:00
Efraim Flashner
a6b937b329
gnu: hidapi: Declare a source file-name.
...
* gnu/packages/libusb.scm (hidapi)[source]: Add file-name field.
2020-01-19 09:30:34 +02:00
Tobias Geerinckx-Rice
2d4b248857
gnu: scummvm: Update to 2.1.1.
...
* gnu/packages/emulators.scm (scummvm): Update to 2.1.1.
2020-01-19 06:09:02 +01:00
Tobias Geerinckx-Rice
106c6aa550
gnu: golly: Update to 3.3.
...
* gnu/packages/games.scm (golly): Update to 3.3.
2020-01-19 06:09:02 +01:00
Tobias Geerinckx-Rice
17cb06a68f
gnu: crispy-doom: Update to 5.6.4.
...
* gnu/packages/games.scm (crispy-doom): Update to 5.6.4.
2020-01-19 06:09:02 +01:00
Tobias Geerinckx-Rice
ff289fe288
gnu: liblcf, easyrpg: Update to 0.6.1.
...
* gnu/packages/easyrpg.scm (liblcf, easyrpg): Update to 0.6.1.
2020-01-19 06:09:02 +01:00
Tobias Geerinckx-Rice
2299d83e2f
gnu: petsc: Use HTTPS home page.
...
* gnu/packages/maths.scm (petsc)[home-page, license]: Use HTTPS.
2020-01-19 06:09:02 +01:00
Tobias Geerinckx-Rice
f433b6625e
gnu: turn: Use HTTPS home page.
...
* gnu/packages/ruby.scm (turn)[home-page]: Use HTTPS.
2020-01-19 06:09:02 +01:00
Tobias Geerinckx-Rice
f1fa954a7d
gnu: edirect: Use HTTPS home page.
...
* gnu/packages/bioinformatics.scm (edirect)[home-page]: Use HTTPS.
2020-01-19 06:09:02 +01:00
Tobias Geerinckx-Rice
a0e82f85e0
gnu: Use HTTPS for elpa.gnu.org.
...
* gnu/packages/emacs-xyz.scm (emacs-xr, emacs-orgalist, emacs-websocket)
(emacs-oauth2, emacs-ediprolog)[home-page]: Use HTTPS.
(emacs-ggtags, emacs-rudel, emacs-on-screen)[source]: Likewise.
(emacs-adaptive-wrap, emacs-seq, emacs-sml-mode)[source, home-page]:
Likewise.
2020-01-19 06:09:02 +01:00
Tobias Geerinckx-Rice
523745064f
gnu: Use HTTPS for all r-lib.org subdomains.
...
* gnu/packages/cran.scm (r-ps, r-fs)[home-page]: Use HTTPS.
2020-01-19 06:09:01 +01:00
Tobias Geerinckx-Rice
f460f8da68
gnu: Use HTTPS for avahi.org everywhere.
...
* gnu/packages/avahi.scm (avahi)[home-page]: Use HTTPS.
* gnu/services/avahi.scm (avahi-service): Likewise in docstring.
2020-01-19 06:09:01 +01:00
Tobias Geerinckx-Rice
e671121250
gnu: Use HTTPS for docbook.org.
...
* gnu/packages/docbook.scm (docbook-xml)[home-page, source]: Use HTTPS.
(docbook-xml-4.4, docbook-xml-4.3, docbook-xml-4.2, docbook-xml-4.1.2)
[source]: Likewise.
(docbook-xsl)[home-page]: Likewise.
2020-01-19 06:09:01 +01:00
Tobias Geerinckx-Rice
c2c73f583d
Use HTTPS for www.emacswiki.org.
...
* doc/contributing.texi (The Perfect Setup): Use HTTPS for ParEdit wiki page.
* gnu/packages/emacs-xyz.scm (emacs-wget, emacs-iedit)[home-page]: Use HTTPS.
(emacs-transpose-frame)[source]: Likewise.
2020-01-19 06:09:01 +01:00
Nicolas Goaziou
4f620bbf62
gnu: qview: Update to 3.0.
...
* gnu/packages/image-viewers.scm (qview): Update to 3.0.
2020-01-18 23:58:57 +01:00
Brett Gilio
81e3ba033f
gnu: python-language-server: Update to 0.31.6.
...
* gnu/packages/python-xyz.scm (python-language-server): Update to 0.31.6.
2020-01-18 14:01:19 -06:00
Oleg Pykhalov
815e12f395
gnu: fortune-mod: Update to 2.12.0.
...
* gnu/packages/games.scm (fortune-mod): Update to 2.12.0.
[native-inputs]: Add RINUTILS.
2020-01-18 21:52:46 +03:00
Oleg Pykhalov
c5799025e4
gnu: Add rinutils.
...
* gnu/packages/games.scm (rinutils): New variable.
2020-01-18 21:52:45 +03:00
Oleg Pykhalov
64b47a2900
gnu: Add shlomif-cmake-modules.
...
* gnu/packages/games.scm (shlomif-cmake-modules): New variable.
(fortune-mod)[native-inputs]: Take "cmake-rules" to a separate variable.
2020-01-18 21:52:45 +03:00
Oleg Pykhalov
147367271c
gnu: cmatrix: Update to 2.0.
...
* gnu/packages/games.scm (cmatrix)[version]: Update to 2.0.
[source]: Download using git-fetch.
[native-inputs]: Add AUTOCONF and AUTOMAKE.
2020-01-18 21:52:45 +03:00
Pierre Neidhardt
2072bc0838
gnu: Add mariadb-connector-c.
...
* gnu/packages/databases.scm (mariadb-connector-c): New variable.
2020-01-18 18:40:08 +01:00
Kei Kebreau
3747ecb1d3
gnu: supertuxkart: Update to 1.1.
...
* gnu/packages/games.scm (supertuxkart): Update to 1.1.
[arguments]: Add "-DUSE_IPV6=FALSE" to #:configure-flags.
[inputs]: Add harfbuzz.
[home-page]: Follow permanent redirect.
2020-01-18 11:33:03 -05:00
Oleg Pykhalov
167a0ce0ae
gnu: Add firefox-decrypt.
...
* gnu/packages/gnuzilla.scm (firefox-decrypt): New variable.
2020-01-18 18:58:47 +03:00
zimoun
e478fd9747
refresh: Fix internal variable name.
...
* guix/scripts/refresh.scm (%option): Fix internal variable name.
2020-01-18 13:08:11 +01:00
Lars-Dominik Braun
1cc9c38e90
gnu: Add python-aionotify.
...
* gnu/packages/python-xyz.scm (python-aionotify): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2020-01-18 17:42:46 +08:00
Lars-Dominik Braun
e24c672e74
gnu: Add python-asynctest.
...
* gnu/packages/python-xyz.scm (python-asynctest): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2020-01-18 17:42:41 +08:00
Eric Bavier
adff7395bc
wip: gnu: youtube-viewer: Update to 3.7.0.
...
* gnu/packages/video.scm (youtube-viewer): Update to 3.7.0.
[inputs]: Add perl-lwp-useragent-cached, perl-term-readline-gnu, and
xdg-utils.
[arguments]: Patch xdg-open reference in "refer-to-inputs" phase.
2020-01-17 23:16:57 -06:00
Eric Bavier
ccb6b98bfe
gnu: Add perl-term-readline-gnu.
...
* gnu/packages/perl.scm (perl-term-readline-gnu): New variable.
2020-01-17 23:11:11 -06:00
Eric Bavier
32dad069b0
gnu: Add perl-lwp-useragent-cached.
...
* gnu/packages/web.scm (perl-lwp-useragent-cached): New variable.
2020-01-17 23:11:08 -06:00
Mark H Weaver
54775af942
gnu: linux-libre: Update to 5.4.13.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.13.
(linux-libre-5.4-pristine-source): Update hash.
2020-01-17 22:23:50 -05:00
Mark H Weaver
8e324fe679
gnu: linux-libre@4.19: Update to 4.19.97.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.97.
(linux-libre-4.19-pristine-source): Update hash.
2020-01-17 22:23:13 -05:00
Mark H Weaver
ec80220c4d
gnu: linux-libre@4.14: Update to 4.14.166.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.166.
(linux-libre-4.14-pristine-source): Update hash.
2020-01-17 22:22:04 -05:00
Eric Bavier
b410c0355a
gnu: synergy: Update to 1.11.0.
...
* gnu/packages/synergy.scm (synergy): Update to 1.11.0.
[arguments]: Remove upstreamed patches.
2020-01-17 17:34:35 -06:00
Tobias Geerinckx-Rice
7f6592c453
gnu: hidapi: Update to 0.9.0.
...
This release was taken over by the libusb team.
See <https://github.com/signal11/hidapi/issues/373 >.
* gnu/packages/libusb.scm (hidapi): Update to 0.9.0.
[source, home-page]: Switch to new upstream.
2020-01-17 23:32:35 +01:00
Tobias Geerinckx-Rice
b7dfc5a707
gnu: hidapi: Don't use unstable tarball.
...
* gnu/packages/libusb.scm (hidapi)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
2020-01-17 23:32:34 +01:00
Tobias Geerinckx-Rice
0a44f9c4e4
gnu: Use HTTPS for www.hdfgroup.org.
...
* gnu/packages/maths.scm (hdf5)[home-page, license]: Use HTTPS.
(hdf-java, h5check)[source]: Likewise.
2020-01-17 23:32:34 +01:00
Tobias Geerinckx-Rice
c3c56a4eb5
gnu: neomutt: Fix home page.
...
* gnu/packages/mail.scm (neomutt)[home-page]: Drop unsupported www subdomain.
2020-01-17 23:32:34 +01:00
Tobias Geerinckx-Rice
bcb697fce7
gnu: r-extremes: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-extremes)[home-page]: Use HTTPS.
2020-01-17 23:32:34 +01:00
Tobias Geerinckx-Rice
e98f34228f
gnu: r-distillery: Use HTTPS home page.
...
* gnu/packages/cran.scm (r-distillery)[home-page]: Use HTTPS.
2020-01-17 23:32:34 +01:00
Tobias Geerinckx-Rice
821aa687b4
gnu: netcdf: Use HTTPS home page.
...
* gnu/packages/maths.scm (netcdf)[home-page]: Use HTTPS.
2020-01-17 23:32:34 +01:00
Tobias Geerinckx-Rice
d5730000e2
gnu: scotch: Use HTTPS home page.
...
* gnu/packages/maths.scm (scotch)[home-page]: Use HTTPS.
2020-01-17 23:32:34 +01:00
Tobias Geerinckx-Rice
3497086b6b
gnu: Use HTTPS for sass-lang.com everywhere.
...
* gnu/packages/ruby.scm (ruby-sass)[home-page]: Use HTTPS.
* gnu/packages/web.scm (sassc)[home-page]: Likewise.
2020-01-17 23:32:34 +01:00
Tobias Geerinckx-Rice
9a50f47c49
gnu: xonsh: Use HTTPS home page.
...
* gnu/packages/shells.scm (xonsh)[home-page]: Use HTTPS.
2020-01-17 23:32:34 +01:00
Tobias Geerinckx-Rice
50a67a4633
gnu: vamp: Use HTTPS home page.
...
* gnu/packages/audio.scm (vamp)[home-page]: Use HTTPS.
2020-01-17 23:32:34 +01:00
Tobias Geerinckx-Rice
a264250b89
gnu: antlr3: Use HTTPS home page.
...
* gnu/packages/java.scm (antlr3)[home-page]: Use HTTPS.
2020-01-17 23:32:33 +01:00
Tobias Geerinckx-Rice
7420c1ee90
gnu: antlr@2: Use HTTPS home page.
...
* gnu/packages/java.scm (antlr2)[source, home-page]: Use HTTPS.
2020-01-17 23:32:33 +01:00
Tobias Geerinckx-Rice
bcd57eba43
gnu: Remove leading newline from (gnu packages java).
...
* gnu/packages/java.scm: Remove leading newline.
2020-01-17 23:32:33 +01:00
Tobias Geerinckx-Rice
d61043c74f
gnu: vpnc: Use HTTPS home page.
...
* gnu/packages/vpn.scm (vpnc)[home-page]: Use HTTPS.
2020-01-17 23:32:33 +01:00
Tobias Geerinckx-Rice
13b09bfc55
gnu: python-maxminddb, python-geoip2: Use HTTPS home page.
...
* gnu/packages/geo.scm (python-maxminddb, python-geoip2)[home-page]:
Use HTTPS.
2020-01-17 23:32:33 +01:00
Tobias Geerinckx-Rice
06dfce7913
gnu: gunicorn: Use HTTPS home page.
...
* gnu/packages/python-web.scm (gunicorn)[home-page]: Use HTTPS.
2020-01-17 23:32:33 +01:00
Ludovic Courtès
da76518061
gnu: guix: Add "guile3.0-guix" variant.
...
* gnu/packages/package-management.scm (guile3.0-guix): New variable.
2020-01-17 22:41:56 +01:00
Ludovic Courtès
04d29de114
gnu: guix: Update to 50299ad.
...
* gnu/packages/package-management.scm (guix): Update to 50299ad .
2020-01-17 22:41:56 +01:00
Vagrant Cascadian
a3bf434819
gnu: diffoscope: Update to 135.
...
* gnu/packages/diffoscope (diffoscope): Update to 135.
2020-01-17 13:08:46 -08:00
Nicolas Goaziou
d0bb1c2f5c
gnu: chipmunk: Use HTTPS home page URI.
...
* gnu/packages/game-development.scm (chipmunk)[home-page]: Use HTTPS URI.
2020-01-17 21:26:42 +01:00
Kei Kebreau
8b08cf4fdd
gnu: libofx: Fix description typo.
...
* gnu/packages/finance.scm (libofx): Change "a API" to "an API".
2020-01-17 15:23:30 -05:00
Kei Kebreau
dfb0191286
gnu: gnucash: Enable libofx support.
...
* gnu/packages/gnucash.scm (gnucash)[arguments]: Remove '-DWITH_OFX=OFF'
configure flag to enable libofx support.
[inputs]: Add libofx.
[propagated-inputs]: Add dconf.
2020-01-17 15:19:14 -05:00
Kei Kebreau
952fe2da0c
gnu: Add libofx.
...
* gnu/packages/finance.scm (libofx): New variable.
2020-01-17 15:19:14 -05:00
Kei Kebreau
63ca1a8908
gnu: Add opensp.
...
* gnu/packages/finance.scm (opensp): New variable.
2020-01-17 15:19:14 -05:00
Kei Kebreau
dc4469e968
gnu: red-eclipse: Remove proprietary libraries and pre-compiled binaries.
...
* gnu/packages/games.scm (red-eclipse)[source]: Add 'modules' and 'snippet'.
[home-page]: Use HTTPS.
[license]: Update license.
2020-01-17 15:19:07 -05:00
Nicolas Goaziou
d6ab5f4fa7
gnu: Add chipmunk.
...
* gnu/packages/game-development.scm (chipmunk): New variable.
2020-01-17 21:11:51 +01:00
Amin Bandali
a3143063ae
Update email address for Amin Bandali.
...
* .mailmap: Add name and email addresses for Amin Bandali.
* gnu/local.mk, gnu/packages/emacs-xyz.scm, gnu/packages/emacs.scm,
gnu/packages/fpga.scm, gnu/packages/lean.scm, gnu/packages/maths.scm:
Update email address for Amin Bandali.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2020-01-17 18:30:33 +01:00
Guillaume Le Vaillant
cd4eb53c33
gnu: ecl: Use system ASDF instead of bundled one.
...
* gnu/packages/lisp.scm (ecl)[source]: Remove snippet.
[native-inputs]: Add cl-asdf.
[arguments]: Add 'replace-asdf' phase.
2020-01-17 17:41:46 +01:00
Guillaume Le Vaillant
24de1f5a36
gnu: sbcl-cl-async-util: Add missing input.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-async-util)[inputs]: Add
bordeaux-threads.
2020-01-17 17:41:46 +01:00
Katherine Cox-Buday
2f66c315b8
gnu: sbcl: Use system ASDF instead of bundled one.
...
* gnu/packages/lisp.scm (sbcl)[source]: Remove snippet.
[native-inputs]: Add cl-asdf and sort the list.
[arguments]: Add 'replace-asdf' phase.
Co-authored-by: Guillaume Le Vaillant <glv@posteo.net >
2020-01-17 17:41:46 +01:00
Katherine Cox-Buday
d276ffcac9
gnu: Add cl-asdf.
...
* gnu/packages/lisp.scm (cl-asdf): New variable.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-01-17 17:41:46 +01:00
Wiktor Żelazny
50299ade04
doc: Add booting instructions for Libreboot.
...
* doc/guix.texi (Booting): Mention the relevant command for USB.
Instructions for DVD and for Coreboot are missing.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-17 17:32:46 +01:00
Prafulla Giri
30810aff71
guix-install.sh: Create an init profile during installation
...
Create an init profile (/etc/profile.d/guix.sh) during installation for
better integration with foreign distros. This file, read by login-shells
sets a few environment variables (PATH, GUIX_PROFILE, GUIX_LOCALE, along
with XDG_DATA_DIRS) and makes guix-installed packages readily available
for the users. Other environment variables, as listed by `guix package
--search-paths=prefix`, are also exported.
Checks are in place to prevent the init profile from needlessly polluting
the user's environment.
* etc/guix-install.sh (sys_create_init_profile): New function to create
/etc/profile.d/guix.sh init profile.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-17 17:28:57 +01:00
Ludovic Courtès
7b2a47a702
build: Allow builds with Guile 3.0.
...
* configure.ac: Add "3.0" in 'GUILE_PKG' invocation.
* doc/guix.texi (Requirements): Mention 3.0.x.
2020-01-17 17:14:20 +01:00
Ludovic Courtès
1bb30aa35b
guix system: Add workaround in test for Guile 3.0.0.
...
* tests/guix-system.sh: For the 'GRUB-config' test, add workaround for
the reported line number in Guile 3.0.0.
2020-01-17 17:12:44 +01:00
Ludovic Courtès
abbb98714b
ui: Ignore 'raise-exception' frames when reporting exceptions.
...
* guix/ui.scm (last-frame-with-source): Check whether FRAME corresponds
to 'raise-exception' and skip it if it does.
2020-01-17 17:11:34 +01:00
Ludovic Courtès
b2504b1205
git-authenticate: Adjust atheia's key info.
...
This is a followup to 05f8a143e4 .
* build-aux/git-authenticate.scm (%committers): Adjust atheia's key
info.
2020-01-17 14:43:25 +01:00
Ludovic Courtès
05f8a143e4
git-authenticate: Add new key for atheia.
...
* build-aux/git-authenticate.scm (%committers): Add atheia's 2nd key, as
seen in commit df18ea6f27 .
2020-01-17 14:24:48 +01:00
Ludovic Courtès
51c8777095
gnu: imv: Record the absolute file name of 'imv-x11' and 'imv-wayland'.
...
* gnu/packages/image-viewers.scm (imv)[arguments]: Add
'record-absolute-file-names' phase.
2020-01-17 14:22:08 +01:00
Peng Mei Yu
cd819b45e9
gnu: Add imv.
...
* gnu/packages/image-viewers.scm (imv): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-17 14:22:08 +01:00
Timotej Lazar
57b6caefc2
gnu: Add corsix-th.
...
* gnu/packages/games.scm (corsix-th): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-17 14:22:08 +01:00
Ludovic Courtès
6f918d69b4
import: texlive: Avoid uses of '@@' in tests.
...
* guix/import/texlive.scm (fetch-sxml, sxml->package): Export.
* tests/texlive.scm <top level>: Call '%http-server-port'.
("fetch-sxml: returns SXML for valid XML"): Use 'with-http-server' and
set 'current-http-proxy' instead of using 'mock'.
("sxml->package"): Remove use of '@@'.
2020-01-17 14:22:08 +01:00
Ludovic Courtès
282f91790a
import: opam: Avoid uses of '@@' in tests.
...
* guix/import/opam.scm (string-pat, multiline-string, list-pat)
(dict, condition): Export.
(opam-fetch): Add optional 'repository' parameter.
(opam->guix-package): Add #:repository parameter and pass it to
'opam-fetch'.
* tests/opam.scm ("opam->guix-package"): Remove use of 'mock' and pass
TEST-REPO to 'opam->guix-package' instead.
("parse-strings", "parse-multiline-strings")
("parse-lists", "parse-dicts", "parse-conditions"): Remove uses of '@@',
which are no longer needed.
2020-01-17 14:22:07 +01:00
Ludovic Courtès
0688ca7471
doc: Replace some invalid uses of @var with @code.
...
* doc/guix.texi (Build Systems): Replace invalid uses of @var with @code.
2020-01-17 14:22:07 +01:00
Ludovic Courtès
a9e255127a
doc: cookbook: Avoid URL reference to the manual.
...
* doc/guix-cookbook.texi (Other build systems): Use @xref instead of
@uref, and remove section number.
2020-01-17 14:22:07 +01:00
Ludovic Courtès
fcb2318e51
lint: vulnerabilities: Avoid 'mock' in test.
...
* guix/lint.scm (check-vulnerabilities): Add 'package-vulnerabilities'
optional parameter.
* tests/lint.scm ("cve: one vulnerability"): Use it instead of 'mock'.
2020-01-17 14:22:07 +01:00
Ludovic Courtès
fd4c832bdb
lint: derivation: Adjust exception handling for Guile 3.
...
This makes sure the "derivation: invalid arguments" test passes on
Guile 3.0.0. Without this change, the lint warning would only include
the format string instead of the key and arguments.
* guix/lint.scm (exception-with-kind-and-args?): New procedure.
(check-derivation): Use it.
2020-01-17 14:22:07 +01:00
Ludovic Courtès
886a76073e
packages: Prevent inlining of 'find-best-packages-by-name'.
...
This allows 'tests/packages.scm' to mock it.
* gnu/packages.scm (find-best-packages-by-name): Set! it at the top
level to prevent it from being inline on Guile 3.
2020-01-17 14:22:07 +01:00
Alex Sassmannshausen
df18ea6f27
gnu: guile-hall: Add variant for Guile 3.0.
...
* gnu/packages/guile-xyz.scm (guile3.0-hall): New variable.
2020-01-17 14:18:43 +01:00
Alex Sassmannshausen
0ac6b836ee
gnu: guile-config: Add variant for Guile 3.0.
...
* gnu/packages/guile-xyz.scm (guile3.0-config): New variable.
2020-01-17 14:18:42 +01:00
Alex Sassmannshausen
cfc4e49823
gnu: guile-hall: Update to 0.2.1.
...
* gnu/packages/guile-xyz.scm (guile-hall): Update to 0.2.1.
2020-01-17 14:18:40 +01:00
Alex Sassmannshausen
91e295470e
gnu: guile-config: Update to 0.3.1.
...
* gnu/packages/guile-xyz.scm (guile-config): Update to 0.3.1.
2020-01-17 14:18:34 +01:00
Guillaume Le Vaillant
8ea00edfcc
gnu: Add cl-green-threads.
...
* gnu/packages/lisp-xyz.scm (sbcl-green-threads, cl-green-threads,
ecl-green-threads): New variables.
2020-01-17 13:44:39 +01:00
Guillaume Le Vaillant
c5eedf80ac
gnu: Add cl-async-future.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-async-future, cl-async-future,
ecl-cl-async-future): New variables.
2020-01-17 13:44:39 +01:00
Guillaume Le Vaillant
34f9b5814c
gnu: Add cl-blackbird.
...
* gnu/packages/lisp-xyz.scm (sbcl-blackbird, cl-blackbird, ecl-blackbird): New
variables.
2020-01-17 13:44:39 +01:00
Guillaume Le Vaillant
ae51aa9136
gnu: Add cl-async-ssl.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-async-ssl, cl-async-ssl,
ecl-cl-async-ssl): New variables.
2020-01-17 13:44:39 +01:00
Guillaume Le Vaillant
19f36366c9
gnu: Add cl-async-repl.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-async-repl, cl-async-repl,
ecl-cl-async-repl): New variables.
2020-01-17 13:44:38 +01:00
Guillaume Le Vaillant
8a0178dd6a
gnu: Add cl-async.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-async, cl-async, ecl-cl-async): New
variables.
2020-01-17 13:44:38 +01:00
Guillaume Le Vaillant
370cf7f13d
gnu: Add cl-async-util.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-async-util, cl-async-util,
ecl-cl-async-util): New variables.
2020-01-17 13:44:38 +01:00
Guillaume Le Vaillant
1cc1dfbbb0
gnu: Add cl-async-base.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-async-base, cl-async-base,
ecl-cl-async-base): New variables.
2020-01-17 13:44:38 +01:00
Guillaume Le Vaillant
37b48dc181
gnu: Add cl-libuv.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-libuv, cl-libuv, ecl-cl-libuv): New
variables.
2020-01-17 13:44:38 +01:00
Guillaume Le Vaillant
5b8bc813ba
gnu: Add cl-vom.
...
* gnu/packages/lisp-xyz.scm (sbcl-vom, cl-vom, ecl-vom): New variables.
2020-01-17 13:44:38 +01:00
Guillaume Le Vaillant
4101c7148d
gnu: Add cl-coroutine.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-coroutine, cl-coroutine,
ecl-cl-coroutine): New variables.
2020-01-17 13:44:38 +01:00
Guillaume Le Vaillant
f7ce86edbc
gnu: Add cl-cont.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-cont, cl-cont, ecl-cl-cont): New
variables.
2020-01-17 13:44:38 +01:00
Guillaume Le Vaillant
7ca8925f3d
gnu: Add cl-fset.
...
* gnu/packages/lisp-xyz.scm (sbcl-fset, cl-fset): New variables.
2020-01-17 13:44:38 +01:00
Guillaume Le Vaillant
7765f4a484
gnu: Add cl-mt19937.
...
* gnu/packages/lisp-xyz.scm (sbcl-mt19937, cl-mt19937, ecl-mt19937): New
variables.
2020-01-17 13:44:37 +01:00
Guillaume Le Vaillant
33865d3259
gnu: Add cl-misc-extensions.
...
* gnu/packages/lisp-xyz.scm (sbcl-misc-extensions, cl-misc-extensions,
ecl-misc-extensions): New variables.
2020-01-17 13:44:37 +01:00
Alex Sassmannshausen
33ed8296c0
gnu: services: Allow extra content in mysql configuration.
...
* gnu/services/databases.scm (<mysql-configuration>): New field.
(mysql-configuration-file): Use it.
2020-01-17 11:28:40 +01:00
Efraim Flashner
bd843a2ff6
gnu: rust-lock-api-0.3: Update to 0.3.3.
...
* gnu/packages/crates-io.scm (rust-lock-api-0.3): Update to 0.3.3.
2020-01-17 09:53:20 +02:00
Efraim Flashner
468e15b1af
gnu: rust-lock-api-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-lock-api-0.1)[arguments]: Skip build.
Add rust-scopeguard-0.3, rust-owning-ref-0.4 to cargo-inputs.
[properties]: Remove field.
2020-01-17 09:53:20 +02:00
Efraim Flashner
cc0e8ce608
gnu: rust-libloading-0.5: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-libloading-0.5)[arguments]: Skip
build. Add rust-winapi-0.3 to cargo-inputs. Add rust-cc-1.0 to
cargo-development-inputs.
[properties]: Remove field.
2020-01-17 09:53:20 +02:00
Efraim Flashner
290436d110
gnu: rust-libc-0.2: Update to 0.2.66.
...
* gnu/packages/crates-io.scm (rust-libc-0.2): Update to 0.2.66.
2020-01-17 09:53:20 +02:00
Efraim Flashner
759dfa989e
gnu: rust-libc-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-libc-0.2)[arguments]: Skip build. Add
rust-rustc-std-workspace-core-1.0 to cargo-inputs.
[description]: Appease 'guix lint'.
[properties]: Remove field.
2020-01-17 09:53:19 +02:00
Efraim Flashner
6c92f52b2e
gnu: rust-itoa-0.4: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-itoa-0.4)[arguments]: Skip build.
[properties]: Remove field.
2020-01-17 09:53:19 +02:00
Efraim Flashner
1403c31e3e
gnu: rust-itoa-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-itoa-0.1)[arguments]: Skip build.
[properties]: Don't inherit field.
2020-01-17 09:53:19 +02:00
Efraim Flashner
a6e28a92c1
gnu: rust-iovec-0.1: Update to 0.1.4.
...
* gnu/packages/crates-io.scm (rust-iovec-0.1): Update to 0.1.4.
[arguments] Remove rust-winapi-0.2 from cargo-inputs.
2020-01-17 09:53:19 +02:00
Efraim Flashner
7499a9c781
gnu: rust-iovec-0.1: Don't hide package.
...
* gnu/package/crates-io.scm (rust-iovec-0.1)[arguments]: Skip build. Add
rust-libc-0.2, rust-winapi-0.2 to cargo-inputs.
[properties]: Remove field.
2020-01-17 09:53:18 +02:00
Efraim Flashner
af9ca877b0
gnu: rust-hostname-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-hostname-0.1)[arguments]: Skip build.
Add rust-libc-0.2, rust-winutil-0.1 to cargo-inputs.
[host-name]: Update to new host-name.
[properties]: Remove field.
2020-01-17 09:53:18 +02:00
Efraim Flashner
5a3217e52c
gnu: rust-glob-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-glob-0.3)[arguments]: Skip build. Add
rust-tempdir-0.3 to cargo-development-inputs.
[properties]: Remove field.
2020-01-17 09:53:18 +02:00
Efraim Flashner
4711a24074
gnu: rust-glob-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-glob-0.2)[arguments]: Skip build. Add
rust-tempdir-0.3 to cargo-development-inputs.
[properties]: Don't inherit field.
2020-01-17 09:53:15 +02:00
Julien Lepiller
7b99aa043c
gnu: Add ocaml-4.09.
...
* gnu/packages/ocaml.scm (ocaml-4.09): New variable.
[argument]: Remove the no longer needed configure phase.
2020-01-17 04:11:06 +01:00
Tobias Geerinckx-Rice
90b8f4e292
gnu: stgit: Update to 0.21.
...
* gnu/packages/version-control.scm (stgit): Update to 0.21.
[native-inputs]: Add perl.
[arguments]: Build with default Python (3).
Add ‘hard-code-version’ and ‘patch-tests’ phases.
Fix and run all remaining tests in the ‘check’ phase.
2020-01-17 03:57:30 +01:00
Tobias Geerinckx-Rice
5976d0b07e
gnu: wavemon: Update to 0.9.1.
...
* gnu/packages/hardware.scm (wavemon): Update to 0.9.1.
2020-01-17 03:57:30 +01:00
Tobias Geerinckx-Rice
df01360f78
gnu: python-publicsuffix2: Update to 2.20191221.
...
* gnu/packages/python-web.scm (python-publicsuffix2): Update to
2.20191221.
[arguments]: Add ‘ignore-maintainer-inputs’ phase.
2020-01-17 03:57:30 +01:00
Tobias Geerinckx-Rice
02d6e27e15
gnu: intel-vaapi-driver: Update to 2.4.0.
...
* gnu/packages/video.scm (intel-vaapi-driver): Update to 2.4.0.
2020-01-17 03:57:30 +01:00
Tobias Geerinckx-Rice
09c2fc2a10
gnu: miniupnpc: Update to 2.1.20191224.
...
* gnu/packages/upnp.scm (miniupnpc): Update to 2.1.20191224.
2020-01-17 03:57:30 +01:00
Nicolas Goaziou
4337140c93
gnu: Update copyright line.
...
* gnu/packages/game-development.scm: Update copyright line.
2020-01-16 23:39:39 +01:00
Leo Prikler
37c52b5b15
gnu: Refactor renpy build.
...
* gnu/packages/game-development.scm (python2-renpy)[arguments]: Use directory
excursions instead of invoking `chdir' directly in phases.
2020-01-16 23:38:52 +01:00
Nicolas Goaziou
af4796d5ca
gnu: xmoto: Slight description rewording.
...
* gnu/packages/games.scm (xmoto)[description]: Slight rewording.
2020-01-16 23:23:38 +01:00
Nicolas Goaziou
40d2bddd01
gnu: Add xmoto.
...
* gnu/packages/games.scm (xmoto): New variable.
* gnu/packages/patches/xmoto-remove-glext.patch: New file.
* gnu/packages/patches/xmoto-reproducible.patch: New file.
* gnu/packages/patches/xmoto-utf8.patch: New file.
* gnu/local.mk (dist_patch_DATA): Reference new files.
2020-01-16 23:20:20 +01:00
Ludovic Courtès
9e016129e1
gnu: guile-fibers: Add "guile3.0-fibers" variant.
...
* gnu/packages/guile-xyz.scm (guile-fibers)[source]: Add 'modules' and
'snippet'.
(guile3.0-fibers): New variable.
2020-01-16 23:14:06 +01:00
Ludovic Courtès
9d6c6cb20e
import: elpa: Rewrite test to use an HTTP server instead of mocking.
...
* guix/import/elpa.scm (elpa-url): Add 'gnu/http'.
(elpa->guix-package): Handle it.
* tests/elpa.scm (elpa-package-info-mock, auctex-readme-mock)
(elpa-version->string, package-source-url, ensure-list)
(package-home-page, make-elpa-package): Remove.
<top level>: Call '%http-server-port'.
(eval-test-with-elpa): Remove uses of 'mock'. Use 'with-http-server'
and parameterize 'current-http-proxy' instead.
2020-01-16 23:14:05 +01:00
Ludovic Courtès
cfd1ed8401
import: cran: Avoid uses of '@@' in the tests.
...
* guix/import/cran.scm (description->alist, description->package): Export.
<top level>: Set! 'listify'.
* tests/cran.scm (description-alist, "description->package"): Remove use
of '@@' to access the relevant bindings.
2020-01-16 23:14:05 +01:00
Ludovic Courtès
72c678af55
import: crate: Export 'string->license'.
...
* guix/import/crate.scm (string->license): Export.
* tests/crate.scm (string->license): Remove.
2020-01-16 23:14:05 +01:00
Ludovic Courtès
3597c0396b
lzlib: Define 'dictionary-size+match-length-limit'.
...
* guix/lzlib.scm (%compression-levels): Splice the rest of each element.
(dictionary-size+match-length-limit): New procedure.
(make-lzip-output-port, make-lzip-input-port/compressed): Use it.
* tests/lzlib.scm ("Bytevector of size relative to Lzip internal buffers (2 * dictionary)"):
Use 'dictionary-size+match-length-limit' instead of 'assoc-ref'.
2020-01-16 23:14:05 +01:00
Nicolas Goaziou
584e46b1e0
gnu: asymptote: Add missing input.
...
* gnu/packages/plotutils.scm (asymptote)[inputs]: Add missing input for GUI.
2020-01-16 22:39:23 +01:00
Christopher Baines
add8d50911
gnu: Add python-git-multimail.
...
* gnu/packages/version-control.scm (python-git-multimail): New variable.
2020-01-16 21:30:14 +00:00
Efraim Flashner
6e02ef79f5
gnu: translate-shell: Fix emacs install phase.
...
* gnu/packages/dictionaries.scm (translate-shell)[arguments]: Update the
'emacs-install phase to install the .el files into the correct folder.
2020-01-16 22:00:12 +02:00
Tobias Geerinckx-Rice
ef201cfee7
gnu: cgit: Update to 1.2.2.
...
* gnu/packages/version-control.scm (cgit): Update to 1.2.2.
[inputs]: Update git-source to 2.25.0.
2020-01-16 19:51:56 +01:00
Tobias Geerinckx-Rice
c301dcef1c
gnu: handbrake: Update to 1.3.1.
...
* gnu/packages/video.scm (handbrake): Update to 1.3.1.
2020-01-16 19:51:56 +01:00
Tobias Geerinckx-Rice
ec67d06996
gnu: ecasound: Update to 2.9.3.
...
* gnu/packages/audio.scm (ecasound): Update to 2.9.3.
2020-01-16 19:51:55 +01:00
Tobias Geerinckx-Rice
694c297624
gnu: ecasound: Use HTTPS home page.
...
* gnu/packages/audio.scm (ecasound)[source, home-page]: Use HTTPS.
2020-01-16 19:51:55 +01:00
Tobias Geerinckx-Rice
ad83280f50
gnu: global: Update to 6.6.4.
...
* gnu/packages/code.scm (global): Update to 6.6.4.
2020-01-16 19:51:55 +01:00
Tobias Geerinckx-Rice
a82b6003e6
gnu: multipath-tools: Update to 0.8.3.
...
* gnu/packages/linux.scm (multipath-tools): Update to 0.8.3.
2020-01-16 19:51:55 +01:00
Tobias Geerinckx-Rice
6cfbb7cb83
gnu: mcelog: Update to 168.
...
* gnu/packages/linux.scm (mcelog): Update to 168.
2020-01-16 19:51:55 +01:00
Tobias Geerinckx-Rice
dc26c8c533
gnu: noweb: Update to 2.12.
...
* gnu/packages/noweb.scm (noweb): Update to 2.12.
[source]: Switch to git repository.
[arguments]: Remove obsolete substitution.
[license]: Add BSD-2.
2020-01-16 19:51:55 +01:00
Tobias Geerinckx-Rice
bd9f588b37
gnu: noweb: Embed store references to external binaries.
...
* gnu/packages/noweb.scm (noweb)[argument]: Add ‘bind-early’ phase.
[inputs]: Add perl.
2020-01-16 19:51:55 +01:00
Tobias Geerinckx-Rice
2c31cf87e3
gnu: noweb: Use HTTPS home page.
...
* gnu/packages/noweb.scm (noweb)[home-page, license]: Use HTTPS.
2020-01-16 19:51:55 +01:00
Tobias Geerinckx-Rice
070dc95066
gnu: ethtool: Update to 5.4.
...
* gnu/packages/networking.scm (ethtool): Update to 5.4.
2020-01-16 19:51:54 +01:00
Marius Bakke
ffe58d1d44
gnu: Add python2-objgraph.
...
* gnu/packages/python-xyz.scm (python2-objgraph): New public variable.
2020-01-16 19:20:22 +01:00
Marius Bakke
eebc03bbb8
gnu: python-objgraph: Update to 3.4.1.
...
* gnu/packages/python-xyz.scm (python-objgraph): Update to 3.4.1.
2020-01-16 19:20:22 +01:00
Marius Bakke
34aa914478
gnu: python-graphviz: Update to 0.13.2.
...
* gnu/packages/graphviz.scm (python-graphviz): Update to 0.13.2.
[native-inputs]: Add GRAPHVIZ, PYTHON-MOCK, PYTHON-PYTEST, PYTHON-PYTEST-COV,
and PYTHON-PYTEST-MOCK.
[arguments]: Replace 'check' phase.
2020-01-16 19:20:22 +01:00
Marius Bakke
9f7f5ba2d2
gnu: caribou: Build with Python 3.
...
* gnu/packages/gnome.scm (caribou)[native-inputs]: Change from PYTHON-2 to
PYTHON.
[inputs]: Change from PYTHON2-PYGOBJECT to PYTHON-PYGOBJECT.
2020-01-16 19:20:21 +01:00
Marius Bakke
f2d56e3993
gnu: libpeas: Update to 1.24.1.
...
* gnu/packages/gnome.scm (libpeas): Update to 1.24.1.
[build-system]: Change to MESON-BUILD-SYSTEM.
[arguments]: New field.
[native-inputs]: Remove INTLTOOL. ADD GETTEXT-MINIMAL and
XORG-SERVER-FOR-TESTS.
2020-01-16 19:20:21 +01:00
Marius Bakke
7152a71431
gnu: ldb: Downgrade to 1.5.6.
...
1.5.6 is actually newer and fixes problems with Python 3.8.
* gnu/packages/samba.scm (ldb): Downgrade to 1.5.6.
2020-01-16 19:20:21 +01:00
Marius Bakke
3dfb3d44f3
gnu: python-importlib-metata: Delay python2 variant.
...
This is a follow-up to commit 5efa04dd93 .
* gnu/packages/python-xyz.scm (python-importlib-metadata)[properties]: New
field.
2020-01-16 19:20:21 +01:00
Marius Bakke
fdd0c36963
gnu: python-packaging: Fix test failures on non-x86_64 architectures.
...
* gnu/packages/patches/python-packaging-test-arch.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/python-xyz.scm (python-packaging)[source](patches): New field.
2020-01-16 19:20:21 +01:00
Marius Bakke
7699e32289
gnu: kentutils: Build with OpenSSL 1.0.
...
* gnu/packages/bioinformatics.scm (kentutils)[inputs]: Change from OPENSSL to
OPENSSL-1.0.
2020-01-16 19:20:20 +01:00
Marius Bakke
cbd3e73f06
gnu: poetry: Remove redundant input.
...
* gnu/packages/python-xyz.scm (poetry)[propagated-inputs]: Remove PYTHON-PATHLIB2.
2020-01-16 19:20:20 +01:00
Marius Bakke
bd8c62dbd1
gnu: python-zipp: Remove redundant inputs.
...
The Python 3 variant do not need these.
* gnu/packages/python-compression.scm (python-zipp)[native-inputs]: Remove
PYTHON-CONTEXTLIB2, PYTHON-PATHLIB2, and PYTHON-UNITTEST2.
[properties]: New field.
(python2-zipp)[native-inputs]: Add PYTHON2-CONTEXTLIB2, PYTHON2-PATHLIB2, and
PYTHON2-UNITTEST2.
2020-01-16 19:20:20 +01:00
Efraim Flashner
1c70205f82
gnu: rust-scopeguard-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-scopeguard-1.0)[arguments]: Skip
build.
[properties]: Remove field.
2020-01-16 19:36:27 +02:00
Efraim Flashner
ac20ab2b4e
gnu: rust-scopeguard-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-scopeguard-0.3)[arguments]: Skip
build.
[properties]: Don't inherit field.
2020-01-16 19:36:27 +02:00
Efraim Flashner
671d08f30d
gnu: rust-scoped-tls-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-scoped-tls-1.0)[arguments]: Skip
build.
[properties]: Remove field.
2020-01-16 19:36:26 +02:00
Efraim Flashner
fcc4e04d22
gnu: rust-scoped-tls-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-scoped-tls-0.1)[arguments]: Skip
build.
[properties]: Don't inherit field.
2020-01-16 19:36:26 +02:00
Efraim Flashner
fe195ef7d3
gnu: rust-getopts-0.2: Update to 0.2.21.
...
* gnu/packages/crates-io.scm (rust-getopts-0.2): Update to 0.2.21.
[arguments]: Add rust-unicode-width-0.1,
rust-rustc-std-workspace-core-1.0, rust-rustc-std-workspace-std-1.0 to
cargo-inputs.
2020-01-16 19:36:26 +02:00
Efraim Flashner
a630e32ac1
gnu: rust-getopts-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-getopts-0.2)[arguments]: Skip build.
Add rust-log-0.3 to cargo-development-inputs.
[home-page]: Update home-page.
[properties]: Remove field.
2020-01-16 19:36:26 +02:00
Efraim Flashner
efd8534897
gnu: Add rust-rustc-std-workspace-std-1.0.
...
* gnu/packages/crates-io.scm (rust-rustc-std-workspace-std-1.0): New variable.
2020-01-16 19:36:26 +02:00
Efraim Flashner
a075606f0d
gnu: rust-futures-0.1: Update to 0.1.29.
...
* gnu/packages/crates-io.scm (rust-futures-0.1): Update to 0.1.29.
2020-01-16 19:36:25 +02:00
Efraim Flashner
3f5e2fd956
gnu: rust-futures-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-futures-0.1)[arguments]: Skip build.
[home-page]: Update home-page.
[properties]: Remove field.
2020-01-16 19:36:25 +02:00
Efraim Flashner
f320369117
gnu: rust-fuchsia-zircon-sys-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-fuchsia-zircon-sys-0.3)[arguments]:
Skip build.
[properties]: Remove field.
2020-01-16 19:36:25 +02:00
Efraim Flashner
7b4d3d8698
gnu: rust-fuchsia-zircon-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-fuchsia-zircon-0.3)[arguments]: Skip
build. Add rust-bitflags-1, rust-fuchsia-zircon-sys-0.3 to cargo-inputs.
[properties]: Remove field.
2020-01-16 19:36:25 +02:00
Efraim Flashner
7f27e979bf
gnu: rust-fuchsia-cprng-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-fuchsia-cprng-0.1)[arguments]: Skip
build.
[properties]: Remove field.
2020-01-16 19:36:25 +02:00
Efraim Flashner
9eda3bcfdd
gnu: rust-fs-extra-1.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-fs-extra-1.1)[arguments]: Skip build.
[properties]: Remove field.
2020-01-16 19:36:24 +02:00
Efraim Flashner
74de42eb66
gnu: rust-fnv-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-fnv-1.0)[arguments]: Skip build.
[synopsis]: Appease 'guix lint'.
[properties]: Remove field.
2020-01-16 19:36:24 +02:00
Efraim Flashner
0c44bf848c
gnu: rust-fixedbitset-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-fixedbitset-0.1)[arguments]: Skip
build.
[properties]: Remove field.
2020-01-16 19:36:24 +02:00
Efraim Flashner
ced2466617
gnu: rust-findshlibs-0.5: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-findshlibs-0.5)[arguments]: Skip
build. Add rust-lazy-static-1.3, rust-libc-0.2 to cargo-inputs.
[properties]: Remove field.
2020-01-16 19:36:24 +02:00
Efraim Flashner
1c9d47b642
gnu: rust-filetime-0.2: Update to 0.2.8.
...
* gnu/packages/crates-io.scm (rust-filetime-0.2): Update to 0.2.8.
[arguments]: Remove rust-tempdir-0.3 from cargo-development-inputs. Add
rust-tempfile-3.0.
2020-01-16 19:36:24 +02:00
Efraim Flashner
ef8c91be7f
gnu: rust-filetime-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-filetime-0.2)[arguments]: Skip build.
Add rust-cfg-if-0.1, rust-libc-0.2, rust-redox-syscall-0.1,
rust-winapi-0.3 to cargo-inputs. Add rust-tempdir-0.3 to
cargo-development-inputs.
[properties]: Remove field.
2020-01-16 19:36:23 +02:00
Efraim Flashner
0441e834a2
gnu: rust-fallible-iterator-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-fallible-iterator-0.2)[arguments]:
Skip build.
[properties]: Remove field.
2020-01-16 19:36:23 +02:00
Efraim Flashner
a9b5fe4d86
gnu: rust-cmake-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-cmake-0.1)[arguments]: Skip build.
Add rust-cc-1.0 to cargo-inputs.
[properties]: Remove field.
2020-01-16 19:36:23 +02:00
Efraim Flashner
dca4e6324c
gnu: rust-clicolors-control-1.0: Update to 1.0.1.
...
* gnu/packages/crates-io.scm (rust-clicolors-control-1.0): Update to 1.0.1.
2020-01-16 19:36:23 +02:00
Efraim Flashner
82c2f8840d
gnu: rust-clicolors-control-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-clicolors-control-1.0)[arguments]:
Skip build. Add rust-atty-0.2, rust-lazy-static-1.3, rust-libc-0.2,
rust-winapi-0.3 to cargo-inputs.
[properties]: Remove field.
2020-01-16 19:36:20 +02:00
Ludovic Courtès
fb8a77f456
gnu: guile-syntax-highlight: Add "guile3.0-syntax-highlight" variant.
...
* gnu/packages/guile-xyz.scm (guile-syntax-highlight)[source]: Add
'snippet' and 'modules'.
(guile3.0-syntax-highlight): New field.
2020-01-16 18:30:57 +01:00
Ludovic Courtès
4f4086848b
gnu: guile-picture-language: Add "guile3.0-picture-language" variant.
...
* gnu/packages/guile-xyz.scm (guile3.0-picture-language): New variable.
2020-01-16 18:30:57 +01:00
Ludovic Courtès
e7921d5ecb
gnu: guile: Add 3.0.0.
...
* gnu/packages/guile.scm (guile-3.0): New variable.
(guile-next): Turn into an alias for GUILE-3.0.
2020-01-16 18:30:57 +01:00
Ludovic Courtès
47212fc763
records: Improve reporting of "invalid field specifier" errors.
...
Previously users would just see:
error: invalid field specifier
without source location or hints.
* guix/records.scm (expand): Add optional 'parent-form' parameter and
pass it to 'syntax-violation' when it is true.
(make-syntactic-constructor): Pass S as a third argument to
'report-invalid-field-specifier'.
* guix/ui.scm (report-load-error): For 'syntax-error', show SUBFORM or
FORM in the message.
* tests/records.scm ("define-record-type* & wrong field specifier"): Add
a 'subform' parameter and adjust test accordingly.
("define-record-type* & wrong field specifier, identifier"): New test.
* tests/guix-system.sh: Add test.
2020-01-16 18:30:57 +01:00
Ludovic Courtès
84c5da08dd
guix package: Export 'transaction-upgrade-entry'.
...
* guix/scripts/package.scm (transaction-upgrade-entry): Add 'store'
parameter and use it instead of (%store). Export.
* tests/packages.scm ("transaction-upgrade-entry, zero upgrades")
("transaction-upgrade-entry, one upgrade")
("transaction-upgrade-entry, superseded package"): Adjust accordingly.
2020-01-16 18:30:57 +01:00
Ludovic Courtès
4fe01b09ea
publish: Export 'signed-string'.
...
* guix/scripts/publish.scm (signed-string): Export and improve docstring.
* tests/publish.scm ("/*.narinfo")
("/*.narinfo with properly encoded '+' sign"): Adjust accordingly.
2020-01-16 18:30:57 +01:00
Nicolas Goaziou
a2548a3b5e
gnu: Update copyright header.
...
* gnu/packages/python-xyz.scm: Update copyright header.
2020-01-16 18:06:36 +01:00
Tobias Geerinckx-Rice
d7df48fad4
gnu: neomutt: Update to 20191207.
...
* gnu/packages/mail.scm (neomutt): Update to 20191207.
2020-01-16 17:32:35 +01:00
Tobias Geerinckx-Rice
a8fa39cd08
gnu: lmdb: Update to 0.9.24.
...
* gnu/packages/databases.scm (lmdb): Update to 0.9.24.
2020-01-16 17:32:35 +01:00
Nicolas Goaziou
1b4c5af29c
gnu: asymptote: Fix GUI.
...
Fixes bug#39147.
* gnu/packages/plotutils.scm (asymptote)[inputs]: Add missing inputs.
[arguments]: Wrap GUI executable "xasy".
2020-01-16 17:09:48 +01:00
Nicolas Goaziou
07c8177b88
gnu: Add python-cson.
...
* gnu/packages/python-xyz.scm (python-cson): New variable.
2020-01-16 17:09:48 +01:00
Nicolas Goaziou
602f3b6793
gnu: Add python-speg.
...
* gnu/packages/python-xyz.scm (python-speg): New variable.
2020-01-16 17:09:48 +01:00
zimoun
d14e4745b3
repl: Fix '--help' message.
...
* guix/scripts/repl.scm: (show-help): Add '--listen' option message.
2020-01-16 15:27:24 +01:00
zimoun
e8728862a1
repl: Add '--load-path' option.
...
* guix/scripts/repl.scm (%option): Add '--load-path' option.
* doc/guix.texi: Document it.
2020-01-16 15:27:24 +01:00
zimoun
3c8396b578
edit: Add '--load-path' option.
...
* guix/scripts/edit.scm (%option): Add '--load-path' option.
* doc/guix.texi: Document it.
2020-01-16 15:27:24 +01:00
zimoun
21f4fbdd84
refresh: Add '--load-path' option.
...
* guix/scripts/refresh.scm (%option): Add '--load-path' option.
* doc/guix.texi: Document it.
2020-01-16 15:27:24 +01:00
zimoun
2d4688c1ea
size: Add '--load-path' option.
...
* guix/scripts/size.scm (%option): Add '--load-path' option.
* doc/guix.texi: Document it.
2020-01-16 15:27:24 +01:00
Pierre Neidhardt
ee9a735bc8
graph: Add '--load-path' option.
...
* guix/scripts/graph.scm (%option): Add '--load-path' option.
* doc/guix.texi: Document it.
* tests/guix-graph.sh: Test it.
2020-01-16 15:27:20 +01:00
Christopher Baines
ba07842c34
gnu: cuirass: Update to 0.0.1-27.46f73b6.
...
* gnu/packages/ci.scm (cuirass): Update to 0.0.1-27.46f73b6.
2020-01-16 08:42:59 +00:00
Ricardo Wurmus
d1ac643062
gnu: r-variancepartition: Update to 1.16.1.
...
* gnu/packages/bioconductor.scm (r-variancepartition): Update to 1.16.1.
2020-01-16 06:53:31 +01:00
Ricardo Wurmus
e8ccb98a08
gnu: r-flowworkspace: Update to 3.34.1.
...
* gnu/packages/bioconductor.scm (r-flowworkspace): Update to 3.34.1.
2020-01-16 06:53:31 +01:00
Ricardo Wurmus
3f42bd81a5
gnu: r-ropls: Update to 1.18.6.
...
* gnu/packages/bioconductor.scm (r-ropls): Update to 1.18.6.
2020-01-16 06:53:31 +01:00
Ricardo Wurmus
516fa945b3
gnu: r-mlinterfaces: Update to 1.66.2.
...
* gnu/packages/bioconductor.scm (r-mlinterfaces): Update to 1.66.2.
[propagated-inputs]: Remove r-rda.
2020-01-16 06:53:31 +01:00
Ricardo Wurmus
ac9a9c374c
gnu: r-clusterprofiler: Update to 3.14.3.
...
* gnu/packages/bioconductor.scm (r-clusterprofiler): Update to 3.14.3.
2020-01-16 06:53:31 +01:00
Ricardo Wurmus
99e2a24978
gnu: r-inspect: Update to 1.16.2.
...
* gnu/packages/bioconductor.scm (r-inspect): Update to 1.16.2.
2020-01-16 06:53:31 +01:00
Ricardo Wurmus
7a8fcdaccc
gnu: r-regioner: Update to 1.18.1.
...
* gnu/packages/bioconductor.scm (r-regioner): Update to 1.18.1.
2020-01-16 06:53:31 +01:00
Ricardo Wurmus
f8f181ae41
gnu: r-affycoretools: Update to 1.58.4.
...
* gnu/packages/bioconductor.scm (r-affycoretools): Update to 1.58.4.
[propagated-inputs]: Add r-glimma.
2020-01-16 06:53:31 +01:00
Ricardo Wurmus
d64124df89
gnu: r-delayedarray: Update to 0.12.2.
...
* gnu/packages/bioinformatics.scm (r-delayedarray): Update to 0.12.2.
2020-01-16 06:53:31 +01:00
Ricardo Wurmus
f7b5c1a02f
gnu: r-iranges: Update to 2.20.2.
...
* gnu/packages/bioinformatics.scm (r-iranges): Update to 2.20.2.
2020-01-16 06:53:31 +01:00
Ricardo Wurmus
fdf69f1ee0
gnu: r-s4vectors: Update to 0.24.2.
...
* gnu/packages/bioinformatics.scm (r-s4vectors): Update to 0.24.2.
2020-01-16 06:53:31 +01:00
Ricardo Wurmus
7241b44ad4
gnu: r-biocstyle: Update to 2.14.4.
...
* gnu/packages/bioinformatics.scm (r-biocstyle): Update to 2.14.4.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
8ef91aeb25
gnu: r-poibin: Update to 1.5.
...
* gnu/packages/cran.scm (r-poibin): Update to 1.5.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
4fac081a49
gnu: r-gdina: Update to 2.7.8.
...
* gnu/packages/cran.scm (r-gdina): Update to 2.7.8.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
951e1d4be7
gnu: r-desolve: Update to 1.27.1.
...
* gnu/packages/cran.scm (r-desolve): Update to 1.27.1.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
dedbacdc75
gnu: r-parameters: Update to 0.4.0.
...
* gnu/packages/cran.scm (r-parameters): Update to 0.4.0.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
82ab1f4ca8
gnu: r-umap: Update to 0.2.4.1.
...
* gnu/packages/cran.scm (r-umap): Update to 0.2.4.1.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
697e103ad0
gnu: r-batchtools: Update to 0.9.12.
...
* gnu/packages/cran.scm (r-batchtools): Update to 0.9.12.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
a0bb0df325
gnu: r-rttf2pt1: Update to 1.3.8.
...
* gnu/packages/cran.scm (r-rttf2pt1): Update to 1.3.8.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
4db8ee8b9a
gnu: r-bookdown: Update to 0.17.
...
* gnu/packages/cran.scm (r-bookdown): Update to 0.17.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
f324747843
gnu: r-shinyjs: Update to 1.1.
...
* gnu/packages/cran.scm (r-shinyjs): Update to 1.1.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
35bbec27cb
gnu: r-future-apply: Update to 1.4.0.
...
* gnu/packages/cran.scm (r-future-apply): Update to 1.4.0.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
c7040fe4ad
gnu: r-tmb: Update to 1.7.16.
...
* gnu/packages/cran.scm (r-tmb): Update to 1.7.16.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
c8cf595a31
gnu: r-multcomp: Update to 1.4-12.
...
* gnu/packages/cran.scm (r-multcomp): Update to 1.4-12.
2020-01-16 06:53:30 +01:00
Ricardo Wurmus
707608fdc4
gnu: r-proc: Update to 1.16.1.
...
* gnu/packages/cran.scm (r-proc): Update to 1.16.1.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
5ec991e6f3
gnu: r-sjmisc: Update to 2.8.3.
...
* gnu/packages/cran.scm (r-sjmisc): Update to 2.8.3.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
4a3351e3cd
gnu: r-insight: Update to 0.8.0.
...
* gnu/packages/cran.scm (r-insight): Update to 0.8.0.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
4afe271458
gnu: r-hdf5r: Update to 1.3.1.
...
* gnu/packages/cran.scm (r-hdf5r): Update to 1.3.1.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
220875e123
gnu: r-fansi: Update to 0.4.1.
...
* gnu/packages/cran.scm (r-fansi): Update to 0.4.1.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
b329d5f0b2
gnu: r-bibtex: Update to 0.4.2.2.
...
* gnu/packages/cran.scm (r-bibtex): Update to 0.4.2.2.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
dc196dfd44
gnu: r-trend: Update to 1.1.2.
...
* gnu/packages/cran.scm (r-trend): Update to 1.1.2.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
b3f02e1af5
gnu: r-tinytex: Update to 0.19.
...
* gnu/packages/cran.scm (r-tinytex): Update to 0.19.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
b468f073fa
gnu: r-xfun: Update to 0.12.
...
* gnu/packages/cran.scm (r-xfun): Update to 0.12.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
743b12c241
gnu: r-cli: Update to 2.0.1.
...
* gnu/packages/cran.scm (r-cli): Update to 2.0.1.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
e8bcca8c1f
gnu: r-ggridges: Update to 0.5.2.
...
* gnu/packages/cran.scm (r-ggridges): Update to 0.5.2.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
831e460610
gnu: r-vcd: Update to 1.4-5.
...
* gnu/packages/cran.scm (r-vcd): Update to 1.4-5.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
c38f4c3874
gnu: r-recipes: Update to 0.1.9.
...
* gnu/packages/cran.scm (r-recipes): Update to 0.1.9.
2020-01-16 06:53:29 +01:00
Ricardo Wurmus
5072462cb6
gnu: r-psych: Update to 1.9.12.31.
...
* gnu/packages/cran.scm (r-psych): Update to 1.9.12.31.
[propagated-inputs]: Remove r-foreign.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
eb311f69d7
gnu: r-ddalpha: Update to 1.3.11.
...
* gnu/packages/cran.scm (r-ddalpha): Update to 1.3.11.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
59d78145d7
gnu: r-squarem: Update to 2020.1.
...
* gnu/packages/cran.scm (r-squarem): Update to 2020.1.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
e931661af8
gnu: r-suppdists: Update to 1.1-9.5.
...
* gnu/packages/cran.scm (r-suppdists): Update to 1.1-9.5.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
3b3c13870d
gnu: r-bdsmatrix: Update to 1.3-4.
...
* gnu/packages/cran.scm (r-bdsmatrix): Update to 1.3-4.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
71ecbda54c
gnu: r-prettyunits: Update to 1.1.0.
...
* gnu/packages/cran.scm (r-prettyunits): Update to 1.1.0.
[propagated-inputs]: Remove r-assertthat and r-magrittr.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
e899ef31c9
gnu: r-getoptlong: Update to 0.1.8.
...
* gnu/packages/cran.scm (r-getoptlong): Update to 0.1.8.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
af67eba5bf
gnu: r-rgooglemaps: Update to 1.4.5.1.
...
* gnu/packages/cran.scm (r-rgooglemaps): Update to 1.4.5.1.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
0169d77858
gnu: r-ranger: Update to 0.12.1.
...
* gnu/packages/statistics.scm (r-ranger): Update to 0.12.1.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
f4b6da32c5
gnu: r-modelmetrics: Update to 1.2.2.1.
...
* gnu/packages/statistics.scm (r-modelmetrics): Update to 1.2.2.1.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
96e11a632d
gnu: r-prabclus: Update to 2.3-2.
...
* gnu/packages/statistics.scm (r-prabclus): Update to 2.3-2.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
3ff8476302
gnu: r-statmod: Update to 1.4.33.
...
* gnu/packages/statistics.scm (r-statmod): Update to 1.4.33.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
c9be8171b3
gnu: r-zoo: Update to 1.8-7.
...
* gnu/packages/statistics.scm (r-zoo): Update to 1.8-7.
2020-01-16 06:53:28 +01:00
Ricardo Wurmus
703ae530c5
gnu: r-gplots: Update to 3.0.1.2.
...
* gnu/packages/statistics.scm (r-gplots): Update to 3.0.1.2.
2020-01-16 06:53:27 +01:00
Ricardo Wurmus
b210274a8f
gnu: r-rsqlite: Update to 2.2.0.
...
* gnu/packages/statistics.scm (r-rsqlite): Update to 2.2.0.
2020-01-16 06:53:27 +01:00
Ricardo Wurmus
79f6c0c0bd
gnu: r-catools: Update to 1.17.1.4.
...
* gnu/packages/statistics.scm (r-catools): Update to 1.17.1.4.
2020-01-16 06:53:27 +01:00
Ricardo Wurmus
0d9fed2fe3
gnu: r-hms: Update to 0.5.3.
...
* gnu/packages/statistics.scm (r-hms): Update to 0.5.3.
2020-01-16 06:53:27 +01:00
Ricardo Wurmus
97e20ade4e
gnu: r-bh: Update to 1.72.0-3.
...
* gnu/packages/statistics.scm (r-bh): Update to 1.72.0-3.
2020-01-16 06:53:27 +01:00
Ricardo Wurmus
800219d569
gnu: r-stringi: Update to 1.4.5.
...
* gnu/packages/statistics.scm (r-stringi): Update to 1.4.5.
2020-01-16 06:53:27 +01:00
Ricardo Wurmus
ecdc8bec9b
gnu: r-bit: Update to 1.1-15.1.
...
* gnu/packages/statistics.scm (r-bit): Update to 1.1-15.1.
2020-01-16 06:53:27 +01:00
Ricardo Wurmus
e05b5da86c
gnu: r-mvtnorm: Update to 1.0-12.
...
* gnu/packages/statistics.scm (r-mvtnorm): Update to 1.0-12.
[inputs]: Move gfortran from here...
[native-inputs]: ...to here.
2020-01-16 06:53:27 +01:00
Ricardo Wurmus
62d8020a5e
gnu: r-caret: Update to 6.0-85.
...
* gnu/packages/cran.scm (r-caret): Update to 6.0-85.
[propagated-inputs]: Add r-proc.
2020-01-16 06:53:27 +01:00
Ricardo Wurmus
91afb47195
gnu: r-caret: Do not abbreviate "misc".
...
* gnu/packages/cran.scm (r-caret)[description]: Replace "misc" with
"miscellaneous".
2020-01-16 06:53:27 +01:00
Ricardo Wurmus
8cc9636c5e
gnu: r-caret: Move to (gnu packages cran).
...
* gnu/packages/statistics.scm (r-caret): Move variable from here...
* gnu/packages/cran.scm (r-caret): ...to here.
2020-01-16 06:53:23 +01:00
Mark H Weaver
429c8284d2
gnu: icecat: Fix support for ffmpeg codecs.
...
Fixes <https://bugs.gnu.org/38045 >. Thanks to Jakub Kądziołka
<kuba@kadziolka.net > and Amin Bandali <bandali@gnu.org > for their
helpful observations and suggestions.
This is a followup to commit 8e5567195f .
* gnu/packages/gnuzilla.scm (icecat)[inputs]: Add shared-mime-info.
[arguments]: Add elf and binary I/O modules to #:modules. Add code to
the 'fix-ffmpeg-runtime-linker' phase that sets the sandbox read-path
whitelist to include libavcodec's RUNPATH, as well as shared-mime-info.
2020-01-16 00:25:45 -05:00
Kei Kebreau
7fa9a685a2
gnu: red-eclipse: Update to 2.0.0.
...
* gnu/packages/games.scm (red-eclipse): Update to 2.0.0.
[source]: Remove obsolete patch, and fetch submodules by making "recursive?"
true.
[arguments]: Remove "unpack-data" phase and adjust
"add-store-data-package-path-as-default" phase.
[inputs]: Add freetype and remove data-sources.
* gnu/packages/patches/red-eclipse-remove-gamma-name-hack.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Delete file.
2020-01-15 22:43:13 -05:00
Ludovic Courtès
65b510bbc4
clojure-utils: Avoid use of '@@'.
...
* guix/build/clojure-utils.scm (%doc-regex): Avoid @@, which doesn't
work on Guile 3.
(file-sans-extension): Likewise.
2020-01-15 23:48:33 +01:00
Ludovic Courtès
0aa6b38695
serialize: Export 'dump-port*'.
...
* guix/serialization.scm (dump): Export as 'dump-port*'.
* guix/scripts/challenge.scm (dump-port*): Remove.
2020-01-15 23:48:33 +01:00
Josh Holland
305c908aac
gnu: Add rcm.
...
* gnu/packages/rcm.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add rcm.scm.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-15 23:48:33 +01:00
Raghav Gururajan
04b201bb0f
gnu: Add sushi.
...
* gnu/packages/gnome.scm (sushi): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-15 23:48:32 +01:00
Raghav Gururajan
89af09020a
gnu: Add rygel.
...
* gnu/packages/gnome.scm (rygel): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-15 23:48:32 +01:00
Raghav Gururajan
47e8709369
gnu: Add libnma.
...
* gnu/packages/gnome.scm (libnma): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2020-01-15 23:48:32 +01:00
Christopher Howard
bcc8a8fd1e
gnu: Add liquid-dsp.
...
* gnu/packages/sdr.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-15 23:48:32 +01:00
Brett Gilio
fcc579e235
gnu: emacs-telega: Update to 0.5.4-4.
...
* gnu/packages/emacs-xyz.scm (emacs-telega): Update to 0.5.4-4.
[propagated-inputs]: Add emacs-company to provide completions in telega-based
buffers.
2020-01-15 16:21:55 -06:00
Tobias Geerinckx-Rice
40b1cee620
gnu: mpop: Mark up description.
...
* gnu/packages/mail.scm (mpop)[description]: Use @acronym.
2020-01-15 23:02:11 +01:00
Tobias Geerinckx-Rice
03d76f8a42
gnu: mercurial: Raise test time-outs.
...
Let Guix handle them. Fixes <https://paste.debian.net/plain/1126159 >.
* gnu/packages/version-control.scm (mercurial)[arguments]:
Raise individual test time-outs to 1 day.
2020-01-15 23:02:11 +01:00
Nicolas Goaziou
1fffba664d
gnu: Add manuskript.
...
* gnu/packages/text-editors.scm (manuskript): New variable.
2020-01-15 22:45:14 +01:00
Tobias Geerinckx-Rice
e2e62bf55a
gnu: mercurial: Run tests verbosely and respect settings.
...
* gnu/packages/version-control.scm (mercurial)[arguments]:
Invoke ‘run-tests.py’ directly and verbosely.
Respect #:tests? and parallel-job-count.
2020-01-15 22:42:17 +01:00
Tobias Geerinckx-Rice
4a30c51eb8
gnu: mpop: Update to 1.4.7.
...
* gnu/packages/mail.scm (mpop): Update to 1.4.7.
2020-01-15 22:42:17 +01:00
Tobias Geerinckx-Rice
fb5ecdecdf
gnu: mpop: Remove unnecessary libidn input.
...
gnu/packages/mail.scm (mpop)[inputs]: Remove libidn.
2020-01-15 22:42:17 +01:00
Nicolas Goaziou
49181f84af
gnu: asymptote: Update to 2.62.
...
* gnu/packages/plotutils.scm (asymptote): Update to 2.62.
2020-01-15 22:10:31 +01:00
Marius Bakke
c950a2a51d
gnu: Add python-xmlschema.
...
* gnu/packages/xml.scm (python-xmlschema): New public variable.
2020-01-15 20:36:34 +01:00
Marius Bakke
55e1475cb5
gnu: python-lxml: Move to (gnu packages xml).
...
* gnu/packages/python-xyz.scm (python-lxml): Move from here ...
* gnu/packages/xml.scm (python-lxml): ... to here.
* gnu/packages/django.scm, gnu/packages/drones.scm,
gnu/packages/libreoffice.scm, gnu/packages/nutrition.scm,
gnu/packages/openstack.scm, gnu/packages/pulseaudio.scm,
gnu/packages/python-science.scm, gnu/packages/tryton.scm,
gnu/packages/wireservice.scm: Adjust module imports.
2020-01-15 20:36:34 +01:00
Marius Bakke
b2205ae4f6
gnu: python-elementpath: Update to 1.3.3.
...
* gnu/packages/xml.scm (python-elementpath): Update to 1.3.3.
2020-01-15 20:36:34 +01:00
Marius Bakke
8fda8b7d6a
gnu: python-elementpath: Move to (gnu packages xml).
...
* gnu/packages/python-xyz.scm (python-elementpath): Move from here ...
* gnu/packages/xml.scm (python-elementpath): ... to here.
2020-01-15 20:36:33 +01:00
Marius Bakke
5efa04dd93
gnu: Add python2-importlib-metadata.
...
* gnu/packages/python-xyz.scm (python2-importlib-metadata): New public variable.
2020-01-15 20:36:33 +01:00
Marius Bakke
f15bdfebc6
gnu: Add python2-zipp.
...
* gnu/packages/python-compression.scm (python2-zipp): New public variable.
2020-01-15 20:36:33 +01:00
Marius Bakke
fd5c264ad8
gnu: Add python2-importlib-resources.
...
* gnu/packages/python-xyz.scm (python2-importlib-resources): New public variable.
2020-01-15 20:36:33 +01:00
Marius Bakke
8f137daf8a
gnu: python-wheel: Update to 0.33.6.
...
* gnu/packages/python-xyz.scm (python-wheel): Update to 0.33.6.
[arguments]: Explicitly disable tests (they never ran before).
[native-inputs, properties]: Remove.
(python2-wheel): Use PACKAGE-WITH-PYTHON2.
2020-01-15 20:36:33 +01:00
Marius Bakke
6b3cef844c
gnu: python-zipp: Update to 1.0.0.
...
* gnu/packages/python-compression.scm (python-zipp): Update to 1.0.0.
[propagated-inputs]: Remove PYTHON-RST.LINKER. Add PYTHON-MORE-ITERTOOLS.
Move PYTHON-CONTEXTLIB2 and PYTHON-PATHLIB2 ...
[native-inputs]: ... here. Remove PYTHON-SPHINX.
2020-01-15 20:36:33 +01:00
Marius Bakke
4dc04d11c8
gnu: python-importlib-metadata: Update to 1.4.0.
...
* gnu/packages/python-xyz.scm (python-importlib-metadata): Update to 1.4.0.
[propagated-inputs]: Remove PYTHON-CONFIGPARSER, PYTHON-CONTEXTLIB2,
PYTHON-DOCUTILS, PYTHON-PATHLIB2, and PYTHON-RST.LINKER.
[native-inputs]: Remove PYTHON-SPHINX. Add PYTHON-PACKAGING.
2020-01-15 20:36:32 +01:00
Marius Bakke
59fa08d6f8
gnu: python-pytest-checkdocs: Add missing input.
...
* gnu/packages/python-check.scm (python-pytest-checkdocs)[propagated-inputs]:
Add PYTHON-DOCUTILS.
2020-01-15 20:36:32 +01:00
Marius Bakke
b244f166b9
gnu: python-sortedcontainers: Update to 2.1.0.
...
* gnu/packages/python-xyz.scm (python-sortedcontainers): Update to 2.1.0.
2020-01-15 20:36:32 +01:00
Marius Bakke
981bd6e69c
gnu: popt: Add a source file name.
...
* gnu/packages/popt.scm (popt)[source](file-name): New field.
2020-01-15 20:36:32 +01:00
Ludovic Courtès
a650ee0baa
gnu: guix: Update to 4aea90b.
...
* gnu/packages/package-management.scm (guix): Update to 4aea90b .
2020-01-15 19:49:47 +01:00
Ludovic Courtès
4aea90b187
import: cpan: Rewrite tests to use an HTTP server instead of mocking.
...
* guix/import/cpan.scm (%metacpan-base-url): New variable.
(module->dist-name, cpan-fetch): Refer to it instead of the hard-coded URL.
* tests/cpan.scm ("cpan->guix-package"): Use 'with-http-server' instead
of 'mock'.
2020-01-15 18:40:43 +01:00
Ludovic Courtès
69f132554c
import: cpan: Rewrite to use 'define-json-mapping'.
...
* guix/import/cpan.scm (<cpan-dependency>, <cpan-release>): New
JSON-mapped record types.
(metacpan-url->mirror-url): New procedure.
(cpan-source-url): Rewrite in terms of it.
(cpan-version): Remove.
(cpan-module->sexp): Rewrite to take a <cpan-release> instead of an
alist, and rename 'meta' to 'release'.
[convert-inputs]: Rewrite to use 'cpan-release-dependencies'.
Update calls to 'convert-inputs' to pass a list of symbols.
Replace 'assoc-ref' calls with the appropriate field accessors.
(cpan->guix-package): Rename 'module-meta' to 'release'.
(latest-release): Likewise, and use the appropriate accessors.
* tests/cpan.scm (test-json): Remove "prereqs" record; add "dependency"
list.
("source-url-http", "source-url-https"): Remove.
("metacpan-url->mirror-url, http")
("metacpan-url->mirror-url, https"): New tests.
2020-01-15 18:40:43 +01:00
Ludovic Courtès
ea6d962b93
More module autoload adjustments.
...
This is a followup to 7a0836cffd .
* guix/scripts/package.scm: Adjust binding list of the (guix store roots)
autoload.
* guix/inferior.scm: Adjust binding list of the (guix cache) autoload.
2020-01-15 18:40:43 +01:00
Ludovic Courtès
5a2639f9cb
Avoid warnings for the 'delete' binding of (guix build utils).
...
On Guile 3, importing (guix build utils) leads to warnings such as:
WARNING: (gnu packages embedded): imported module (guix build utils) overrides core binding `delete'
* gnu/packages/embedded.scm: Select 'alist-replace' from (guix build utils).
* guix/ui.scm: Hide 'delete' from (guix build utils).
2020-01-15 18:40:43 +01:00
Ludovic Courtès
0030277f79
gnu: Remove unnecessary uses of (guix build utils).
...
* gnu/packages/crypto.scm: Remove use of (guix build utils).
* gnu/packages/databases.scm: Likewise.
2020-01-15 18:40:43 +01:00
Ludovic Courtès
e2922f527e
substitute: 'http-multiple-get' processes each request only once.
...
Fixes <https://bugs.gnu.org/39090 >.
Reported by Gábor Boskovits <boskovits@gmail.com >.
Fixes a regression introduced in 9e3f9ac3c0 .
* guix/scripts/substitute.scm (http-multiple-get): In the "Connection: close"
case, pass (drop requests (+ 1 processed)) to 'loop' as the remaining
REQUESTS value.
Previously, we would pass a list containing duplicates, and thus the
final result would also contain duplicates. When sent to the daemon,
that list would lead to a daemon error:
got unexpected path `/gnu/store/…' from substituter
2020-01-15 18:40:43 +01:00
Mike Rosset
44ce3ebb46
gnu: qutebrowser: Update to 1.9.0.
...
* gnu/packages/web-browsers.scm (qutebrowser): Update to 1.9.0.
qutebrowser no longer uses qtwebkit by default. It now defaults to qtwebengine.
2020-01-15 16:29:45 +01:00
Mike Rosset
eb5af18e7e
gnu: Add python-pyqtwebengine.
...
* gnu/packages/qt.scm (python-pyqtwebengine): New variable.
2020-01-15 16:29:45 +01:00
Mike Rosset
9deae98281
gnu: python-pyqt: Substitute the full path of <qprinter.h>.
...
* gnu/packages/qt.scm (python-pyqt)[phases]: When building
python-pyqtwebengine, qprinter.h can not be found. This substitutes the full
path of qprinter.h in the qprinter sip specification file.
2020-01-15 16:29:45 +01:00
Tobias Geerinckx-Rice
353e9f733c
gnu: keepassxc: Update to 2.5.2.
...
* gnu/packages/password-utils.scm (keepassxc): Update to 2.5.2.
2020-01-15 14:31:23 +01:00
Tobias Geerinckx-Rice
3799d46ccf
gnu: zn-poly: Update to 0.9.2.
...
* gnu/packages/sagemath.scm (zn-poly): Update to 0.9.2.
2020-01-15 14:31:23 +01:00
Tobias Geerinckx-Rice
e170faa80f
gnu: brial: Use the source repository as home page.
...
* gnu/packages/sagemath.scm (brial)[home-page]: Use upstream repository.
2020-01-15 14:31:23 +01:00
Tobias Geerinckx-Rice
078d2d0da7
gnu: brial: Update to 1.2.6.
...
* gnu/packages/sagemath.scm (brial): Update to 1.2.6.
2020-01-15 14:31:22 +01:00
Tobias Geerinckx-Rice
3e8867196c
gnu: gauche: Update to 0.9.9.
...
* gnu/packages/scheme.scm (gauche): Update to 0.9.9.
2020-01-15 14:31:22 +01:00
Tobias Geerinckx-Rice
91815e8dc2
gnu: pdsh: Update to 2.34.
...
* gnu/packages/ssh.scm (pdsh): Update to 2.34.
[source]: Remove redundant FILE-NAME field.
2020-01-15 14:31:22 +01:00
Tobias Geerinckx-Rice
ea4c1e0b0e
gnu: menumaker: Update to 0.99.11.
...
* gnu/packages/wm.scm (menumaker): Update to 0.99.11.
2020-01-15 14:31:22 +01:00
Tobias Geerinckx-Rice
47b8608d99
gnu: unbound: Update to 1.9.5 [fixes CVE-2019-18934].
...
The Guix unbound package is not vulnerable in its default configuration,
because we do not build with ‘--enable-ipsecmod’.
* gnu/packages/dns.scm (unbound): Update to 1.9.5.
2020-01-15 14:31:22 +01:00
Tobias Geerinckx-Rice
2c97c980a0
gnu: linux-libre: Include more framebuffer font sizes.
...
Add the 32x16 Terminus font for ‘high-DPI’ screens, and a 6x10 font that
allows for more (debugging) information to be displayed on standard-DPI
ones, while still being pleasant to read.
* gnu/packages/aux-files/linux-libre/4.14-arm.conf,
gnu/packages/aux-files/linux-libre/4.14-i686.conf,
gnu/packages/aux-files/linux-libre/4.14-x86_64.conf,
gnu/packages/aux-files/linux-libre/4.19-arm.conf,
gnu/packages/aux-files/linux-libre/4.19-arm64.conf,
gnu/packages/aux-files/linux-libre/4.19-i686.conf,
gnu/packages/aux-files/linux-libre/4.19-x86_64.conf,
gnu/packages/aux-files/linux-libre/4.4-i686.conf,
gnu/packages/aux-files/linux-libre/4.4-x86_64.conf,
gnu/packages/aux-files/linux-libre/4.9-i686.conf,
gnu/packages/aux-files/linux-libre/4.9-x86_64.conf,
gnu/packages/aux-files/linux-libre/5.4-arm-veyron.conf,
gnu/packages/aux-files/linux-libre/5.4-arm.conf,
gnu/packages/aux-files/linux-libre/5.4-arm64.conf,
gnu/packages/aux-files/linux-libre/5.4-i686.conf,
gnu/packages/aux-files/linux-libre/5.4-x86_64.conf:
Set CONFIG_FONTS=y, CONFIG_FONT_TER16x32=y, and CONFIG_FONT_6x10=y.
2020-01-15 14:31:21 +01:00
Leo Famulari
9edae6c05c
gnu: ncmpcpp: Enable the clock feature.
...
* gnu/packages/mpd.scm (ncmpcpp)[arguments]: Pass '--enable-clock'
to #:configure-flags.
2020-01-15 07:29:39 -05:00
Leo Famulari
3f6ed3b2e6
gnu: MPD: Update to 0.21.18.
...
* gnu/packages/mpd.scm (mpd): Update to 0.21.18.
2020-01-15 07:29:38 -05:00
Guillaume Le Vaillant
93605bfd25
gnu: gnubg: Add desktop file.
...
* gnu/packages/games.scm (gnubg)[arguments]: Add an 'install-desktop-file'
phase.
2020-01-15 11:21:36 +01:00
Guillaume Le Vaillant
d24881e4eb
gnu: gnubg: Fix links.
...
The site at gnubg.org states that the software is now available at
www.gnu.org/software/gnubg.
* gnu/packages/games.scm (gnugb)[source]: Fix link.
[home-page]: Likewise.
2020-01-15 10:52:26 +01:00
Efraim Flashner
fb01b0ce89
gnu: rust-hex-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-hex-0.3)[arguments]: Skip build.
[properties]: Remove field.
2020-01-15 10:17:43 +02:00
Efraim Flashner
09b79f3bd5
gnu: rust-heapsize-plugin-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-heapsize-plugin-0.1)[arguments]: Skip
build. Add rust-heapsize-0.3 to cargo-inputs.
[properties]: Remove field.
2020-01-15 10:16:18 +02:00
Efraim Flashner
3e68f40044
gnu: rust-heapsize-0.4: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-heapsize-0.4)[arguments]: Skip build.
Add rust-winapi-0.3 to cargo-inputs.
[properties]: Remove field.
2020-01-15 10:14:37 +02:00
Efraim Flashner
ff5639f5ad
gnu: rust-heapsize-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-heapsize-0.3)[arguments]: Skip build.
Add rust-kernel32-sys-0.2 to cargo-inputs.
[properties]: Don't inherit.
2020-01-15 10:13:14 +02:00
Efraim Flashner
5d9e02a467
gnu: rust-language-tags-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-language-tags-0.2)[arguments]: Skip
build. Add rust-heapsize-0.3, rust-heapsize-plugin-0.1 to cargo-inputs.
[properties]: Remove field.
2020-01-15 10:11:01 +02:00
Efraim Flashner
ebe8fe5624
gnu: rust-kernel32-sys-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-kernel32-sys-0.2)[arguments]: Skip
build. Add rust-winapi-0.2 to cargo-inputs. Add rust-winapi-build-0.1 to
cargo-development-inputs.
[properties]: Remove field.
2020-01-15 10:08:08 +02:00
Efraim Flashner
bf33e72d31
gnu: rust-json-0.11: Update to 0.11.15.
...
* gnu/packages/crates-io.scm (rust-json-0.11): Update to 0.11.15.
2020-01-15 10:06:00 +02:00
Efraim Flashner
971fb85cef
gnu: rust-json-0.11: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-json-0.11)[arguments]: Skip build.
[properties]: Remove field.
2020-01-15 10:04:52 +02:00
Efraim Flashner
5d87eb8cf6
gnu: rust-cc-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-cc-1.0)[arguments]: Skip build. Add
rust-rayon-1.1 to cargo-inputs. Add rust-tempdir-0.3 to
cargo-development-inputs.
[properties]: Remove field.
2020-01-15 09:58:46 +02:00
Efraim Flashner
ffbefd8f91
gnu: rust-cblas-sys-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-cblas-sys-0.1)[arguments]: Skip build.
Add rust-libc-0.2 to cargo-inputs.
[properties]: Remove field.
2020-01-15 09:56:07 +02:00
Efraim Flashner
b443e04528
gnu: rust-cargon-0.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-cargon-0.0)[arguments]: Skip build.
Add rust-gcc-0.3 to cargo-development-inputs.
[properties]: Remove field.
2020-01-15 09:54:33 +02:00
Efraim Flashner
9778eb9521
gnu: rust-blas-sys-0.7: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-blas-sys-0.7)[arguments]: Skip build.
Add rust-libc-0.2 to cargo-inputs.
[properties]: Remove field.
2020-01-15 09:52:41 +02:00
Efraim Flashner
d998f94b1a
gnu: rust-xdg-2.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-xdg-2.2)[arguments]: Skip build.
[properties]: Remove field.
2020-01-15 09:51:09 +02:00
Efraim Flashner
cd2c471352
gnu: rust-xattr-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-xattr-0.2)[arguments]: Skip build.
Add rust-libc-0.2 to cargo-inputs. Add rust-tempfile-3.0 to
cargo-development-inputs.
[properties]: Remove field.
2020-01-15 09:49:56 +02:00
Efraim Flashner
5b1b86514f
gnu: rust-winapi-0.3: Appease guix lint.
...
* gnu/packages/crates-io.scm (rust-winapi-0.3)[synopsis]: Appease
'guix lint'.
2020-01-15 09:45:32 +02:00
Efraim Flashner
61c998b394
gnu: rust-serde-json-1.0: Appease guix lint.
...
* gnu/packages/crates-io.scm (rust-serde-json-1.0)[synopsis]: Appease
'guix lint'.
2020-01-15 09:44:13 +02:00
Efraim Flashner
dc576232f0
gnu: rust-foreign-types-shared-0.2: Appease guix lint.
...
* gnu/packages/crates-io.scm (rust-foreign-types-shared-0.2)[synopsis]:
Appease 'guix lint'.
2020-01-15 09:42:44 +02:00
Efraim Flashner
7d5c2e27da
gnu: rust-foreign-types-macros-0.1: Appease guix lint.
...
* gnu/packages/crates-io.scm (rust-foreign-types-macros-0.1)[synopsis]:
Appease 'guix lint'.
2020-01-15 09:41:50 +02:00
Efraim Flashner
89421b7c65
gnu: rust-cbindgen: Update to 0.12.2.
...
* gnu/packages/rust-apps.scm (rust-cbindgen): Update to 0.12.2.
2020-01-15 09:36:42 +02:00
Efraim Flashner
3bcbc367e6
gnu: rust-aho-corasick-0.7: Update to 0.7.6.
...
* gnu/packages/crates-io.scm (rust-aho-corasick-0.7): Update to 0.7.6.
[arguments]: Add rust-doc-comment-0.3 to cargo-development-inputs.
2020-01-15 09:26:13 +02:00
Efraim Flashner
ff7173ebae
gnu: rust-scoped-threadpool-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-scoped-threadpool-0.1)[arguments]:
Skip build. Add rust-lazy-static-1.3 to cargo-development-inputs.
[synopsis]: Appease 'guix lint'.
[description]: Appease 'guix lint'.
[properties]: Remove field.
2020-01-15 09:02:48 +02:00
Efraim Flashner
98e5e7305a
gnu: rust-schannel-0.1: Update to 0.1.16.
...
* gnu/packages/crates-io.scm (rust-channel-0.1): Update to 0.1.16.
2020-01-15 09:02:48 +02:00
Efraim Flashner
000f42f4f6
gnu: rust-schannel-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-schannel-0.1)[arguments]: Skip build.
Add rust-lazy-static-1.3, rust-winapi-0.3 to cargo-inputs.
[properties]: Remove field.
2020-01-15 09:02:48 +02:00
Efraim Flashner
a618b6b7ca
gnu: rust-same-file-1.0: Upgrade to 1.0.6.
...
* gnu/packages/crates-io.scm (rust-same-file-1.0): Update to 1.0.6.
[arguments]: Add rust-doc-comment-0.3 to cargo-development-inputs.
2020-01-15 09:02:47 +02:00
Efraim Flashner
0a293597cb
gnu: rust-same-file-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-same-file-1.0)[arguments]: Skip
build. Add rust-winapi-util-0.1 to cargo-inputs.
[properties]: Remove field.
2020-01-15 09:02:47 +02:00
Efraim Flashner
251c3fa2ae
gnu: rust-safemem-0.3: Update to 0.3.3.
...
* gnu/packages/crates-io.scm (rust-safemem-0.3): Update to 0.3.3.
2020-01-15 09:02:47 +02:00
Efraim Flashner
a66dbe0989
gnu: rust-safemem-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-safemem-0.3)[arguments]: Skip build.
[properties]: Remove field.
2020-01-15 09:02:46 +02:00
Efraim Flashner
e098c3aa84
gnu: rust-rustc-std-workspace-core-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-rustc-std-workspace-core-1.0)
[arguments]: Skip build.
[properties]: Remove field.
2020-01-15 09:02:46 +02:00
Efraim Flashner
4de42e8eaf
gnu: rust-rustc-serialize-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-rustc-serialize-0.3)[arguments]: Skip
build. Add rust-rand-0.3 to cargo-inputs.
[properties]: Remove field.
2020-01-15 09:02:46 +02:00
Efraim Flashner
a23dbdab6d
gnu: rust-rustc-hash-1.0: Update to 1.0.1.
...
* gnu/packages/crates-io.scm (rust-rustc-hash-1.0): Update to 1.0.1.
[arguments]: Add rust-byteorder-1.3 to cargo-inputs.
2020-01-15 09:02:46 +02:00
Efraim Flashner
74146f9c72
gnu: rust-rustc-hash-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-rustc-hash-1.0)[arguments]: Skip build.
[home-page]: Update to new home-page.
[properties]: Remove field.
2020-01-15 09:02:45 +02:00
Efraim Flashner
39d6888f1a
gnu: rust-rustc-demangle-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-rustc-demangle-0.1)[arguments]: Skip
build. Add rust-compiler-builtins-0.1, rust-rustc-std-workspace-core-1.0
to cargo-inputs.
[properties]: Remove field.
2020-01-15 09:02:45 +02:00
Efraim Flashner
77006df588
gnu: rust-resolv-conf-0.6: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-resolv-conf-0.6)[arguments]: Skip
build. Add rust-quick-error-1.2, rust-hostname-0.1 to cargo-inputs.
[synopsis]: Appease 'guix lint'.
[properties]: Remove field.
2020-01-15 09:02:45 +02:00
Efraim Flashner
a198ee940f
gnu: rust-remove-dir-all-0.5: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-remove-dir-all-0.5)[arguments]: Skip
build. Add rust-winapi-0.3 to cargo-inputs. Add rust-doc-comment-0.3 to
cargo-development-inputs.
[properties]: Remove field.
2020-01-15 09:02:45 +02:00
Efraim Flashner
57c2ef35f7
gnu: rust-redox-termios-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-redox-termios-0.1)[arguments]: Skip
build. Add rust-redox-syscall-0.1 to cargo-inputs.
[properties]: Remove field.
2020-01-15 09:02:44 +02:00
Efraim Flashner
99b006627e
gnu: rust-redox-syscall-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-redox-syscall-0.1)[arguments]: Skip
build.
[properties]: Remove field.
2020-01-15 09:02:44 +02:00
Efraim Flashner
0169e087dd
gnu; rust-rdrand-0.4: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-rdrand-0.4)[arguments]: Skip build.
Add rust-rand-core-0.3 to cargo-inputs.
[properties]: Remove field.
[description]: Fix typo.
2020-01-15 09:02:44 +02:00
Efraim Flashner
408156a98c
gnu: rust-rawpointer-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-rawpointer-0.1)[arguments]: Skip build.
[properties]: Remove field.
2020-01-15 09:02:44 +02:00
Efraim Flashner
ef3827da67
gnu: rust-cbindgen: Remove extra input.
...
* gnu/packages/rust-apps.scm (rust-cbindgen)[arguments]: Remove
rust-autogen-0.1 from cargo-development-inputs.
2020-01-15 09:02:43 +02:00
Efraim Flashner
35c08c2b52
gnu: rust-rand-0.6: Update inputs.
...
* gnu/packages/crates-io.scm (rust-rand-0.6)[arguments]: Move
rust-autocfg-0.1 to cargo-inputs. Replace rust-rand-xoshiro-0.3 with
rust-rand-xoshiro-0.1.
2020-01-15 09:02:43 +02:00
Efraim Flashner
0bce3ebdd3
gnu: Add rust-rand-xoshiro-0.1.
...
* gnu/packages/crates-io.scm (rust-rand-xoshiro-0.1): New variable.
2020-01-15 09:02:40 +02:00
Mark H Weaver
871fc9512e
gnu: linux-libre: Update to 5.4.12.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.12.
(linux-libre-5.4-pristine-source): Update hash.
2020-01-14 22:58:18 -05:00
Mark H Weaver
d3e22ad152
gnu: linux-libre@4.19: Update to 4.19.96.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.96.
(linux-libre-4.19-pristine-source): Update hash.
2020-01-14 22:57:39 -05:00
Mark H Weaver
f45330c89c
gnu: linux-libre@4.14: Update to 4.14.165.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.165.
(linux-libre-4.14-pristine-source): Update hash.
2020-01-14 22:57:01 -05:00
Mark H Weaver
7d9e0febba
gnu: linux-libre@4.9: Update to 4.9.210.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.210.
(linux-libre-4.9-pristine-source): Update hash.
2020-01-14 22:56:26 -05:00
Mark H Weaver
703c190ccb
gnu: linux-libre@4.4: Update to 4.4.210.
...
* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.210.
(linux-libre-4.4-pristine-source): Update hash.
2020-01-14 22:55:24 -05:00
Marius Bakke
98ca002aaf
gnu: popt: Reverse source mirror entries.
...
Commit 8f4cff0e21 accidentally caused rebuilds
because the expected file name changed.
* gnu/packages/popt.scm (popt)[source](uri): Add the Debian mirror last.
2020-01-15 01:13:18 +01:00
Marius Bakke
574a71a7a9
gnu: python-wcwidth: Update to 0.1.8.
...
* gnu/packages/python-xyz.scm (python-wcwidth): Update to 0.1.8.
2020-01-14 23:50:25 +01:00
Marius Bakke
28ac442b0e
gnu: python-wcwidth: Adjust indentation.
...
* gnu/packages/python-xyz.scm (python-wcwidth): Re-indent.
2020-01-14 23:50:25 +01:00
Marius Bakke
a72a18920b
gnu: python-packaging: Update to 20.0.
...
* gnu/packages/python-xyz.scm (python-packaging): Update to 20.0.
2020-01-14 23:50:24 +01:00
Marius Bakke
bc5ce79faf
gnu: chez-sheme: Move util-linux to inputs.
...
* gnu/packages/chez.scm (chez-scheme)[native-inputs]: Move UTIL-LINUX ...
[inputs]: ... here. Rename assoc key to "libuuid" for clarity.
2020-01-14 23:50:24 +01:00
Marius Bakke
7c8c81cc84
gnu: volume-key: Move util-linux to inputs.
...
* gnu/packages/disk.scm (volume-key)[native-inputs]: Move UTIL-LINUX ...
[inputs]: ... here. Rename assoc key to "libblkid" for clarity.
2020-01-14 23:50:24 +01:00
Marius Bakke
c148d2ebd4
gnu: xfsprogs: Move util-linux to inputs.
...
* gnu/packages/linux.scm (xfsprogs)[native-inputs]: Move UTIL-LINUX ...
[inputs]: ... here. Rename key to "libuuid" for clarity.
2020-01-14 23:50:24 +01:00
Marius Bakke
1385e86c25
gnu: rsync: Update home page.
...
* gnu/packages/rsync.scm (rsync)[source, home-page]: Use HTTPS.
2020-01-14 23:50:24 +01:00
Marius Bakke
25997f3c3e
gnu: help2man: Update to 1.47.12.
...
* gnu/packages/man.scm (help2man/latest): Update to 1.47.12.
2020-01-14 23:50:24 +01:00
Marius Bakke
8f4cff0e21
gnu: popt: Update source URI.
...
* gnu/packages/popt.scm (popt)[source](uri): Add Debian mirror.
2020-01-14 23:50:23 +01:00
Tobias Geerinckx-Rice
0aaab7f857
gnu: git: Update to 2.25.0.
...
* gnu/packages/version-control.scm (git): Update to 2.25.0.
2020-01-14 22:04:42 +01:00
Marius Bakke
89a6d2d145
gnu: procps: Update to 3.3.16.
...
* gnu/packages/linux.scm (procps): Update to 3.3.16.
2020-01-14 18:47:35 +01:00
Paul Garlick
09bad3cd42
gnu: python-slepc4py: Update to 3.11.0.
...
* gnu/packages/maths.scm (python-slepc4py): Update to 3.11.0.
2020-01-14 17:24:11 +00:00
Paul Garlick
f1cc312e15
gnu: python-petsc4py: Update to 3.11.0.
...
* gnu/packages/maths.scm (python-petsc4py): Update to 3.11.0.
2020-01-14 17:23:50 +00:00
Marius Bakke
e4da86f358
gnu: source-highlight: Update to 3.1.9.
...
* gnu/packages/pretty-print.scm (source-highlight): Update to 3.1.9.
2020-01-14 18:09:10 +01:00
Guillaume Le Vaillant
f35b596e50
gnu: Add cl-archive.
...
* gnu/packages/lisp-xyz.scm (sbcl-archive, cl-archive, ecl-archive): New
variables.
2020-01-14 16:45:26 +01:00
Efraim Flashner
9f37129f91
gnu: rust-dtoa-0.4: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-dtoa-0.4)[arguments]: Skip build.
[properties]: Remove field.
2020-01-14 14:42:21 +02:00
Efraim Flashner
358552f38e
gnu: rust-dtoa-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-dtoa-0.2)[arguments]: Skip build.
properties]: Remove field.
2020-01-14 14:42:20 +02:00
Efraim Flashner
e8ef8f35eb
gnu: rust-doc-comment-0.3: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-doc-comment-0.3)[arguments]: Skip
build.
[properties]: Remove field.
2020-01-14 14:42:20 +02:00
Efraim Flashner
c610585f16
gnu: rust-discard-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-discard-1.0)[arguments]: Skip build.
[properties]: Remove field.
2020-01-14 14:42:20 +02:00
Efraim Flashner
5450436981
gnu: rust-dirs-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-dirs-1.0)[arguments]: Skip build.
Add rust-libc-0.2, rust-winapi-0.3 to cargo-inputs.
[properties]: Remove field.
2020-01-14 14:42:20 +02:00
Efraim Flashner
54e3029f53
gnu: rust-defmac-0.2: Update to 0.2.1.
...
* gnu/packages/crates-io.scm (rust-defmac-0.2): Update to 0.2.1.
2020-01-14 14:42:20 +02:00
Efraim Flashner
3e164728a0
gnu: rust-defmac-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-defmac-0.1)[arguments]: Skip build.
[properties]: Remove field.
2020-01-14 14:42:20 +02:00
Efraim Flashner
4f560b6a42
gnu: rust-defmac-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-defmac-0.2)[arguments]: Skip build.
[properties]: Remove field.
2020-01-14 14:42:19 +02:00
Efraim Flashner
f13bcced3c
gnu: rust-data-encoding-2.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-data-encoding-2.1)[arguments]: Skip
build.
[properties]: Remove field.
2020-01-14 14:42:19 +02:00
Efraim Flashner
f71321e026
gnu: rust-core-foundation-sys-0.6: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-core-foundation-sys-0.6)[arguments]:
Skip build.
[properties]: Remove field.
2020-01-14 14:42:19 +02:00
Efraim Flashner
9dec3ce4b5
gnu: rust-constant-time-eq-0.1: Update to 0.1.5.
...
* gnu/packages/crates-io.scm (rust-constant-time-eq-0.1): Update to 0.1.5.
2020-01-14 14:42:19 +02:00
Efraim Flashner
9d1e634e1d
gnu: rust-constant-time-eq-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-constant-time-eq-0.1)[arguments]:
Skip build.
[properties]: Remove field.
2020-01-14 14:42:19 +02:00
Efraim Flashner
472a8253c3
gnu: rust-compiler-builtins-0.1: Update to 0.1.23.
...
* gnu/packages/crates-io.scm (rust-compiler-builtins-0.1): Update to 0.1.23.
2020-01-14 14:42:12 +02:00
Efraim Flashner
52300efe4f
gnu: rust-compiler-builtins-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-compiler-builtins-0.1)[arguments]:
Skip build. Add rust-rustc-std-workspace-core-1.0 to cargo-inputs. Add
rust-cc-1.0 to cargo-development-inputs.
[home-page]: Update to new home-page.
[properties]: Remove field.
2020-01-14 12:52:07 +02:00
Efraim Flashner
bda28cc422
gnu: rust-cloudabi-0.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-cloudabi-0.0)[arguments]: Skip build.
Add rust-bitflags-1 to cargo-inputs.
[properties]: Remove field.
2020-01-14 12:46:50 +02:00
Efraim Flashner
24420fcbd4
gnu: rust-cfg-if-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-cfg-if-0.1)[arguments]: Skip build.
Add rust-compiler-builtins-0.1, rust-rustc-std-workspace-core-1.0 to
cargo-inputs.
[properties]: Remove field.
2020-01-14 12:44:51 +02:00
Efraim Flashner
4f067ec7b9
gnu: rust-bitflags-1: Update to 1.2.1.
...
* gnu/packages/crates-io.scm (rust-bitflags-1): Update to 1.2.1.
2020-01-14 12:40:15 +02:00
Efraim Flashner
e04e2bcd03
gnu: rust-bitflags-1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-bitflags-1)[arguments]: Skip build.
[properties]: Remove field.
2020-01-14 12:38:56 +02:00
Efraim Flashner
59114ae759
gnu: rust-bencher-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-bencher-0.1)[arguments]: Skip build.
[properties]: Remove field.
2020-01-14 12:36:53 +02:00
Efraim Flashner
fdf98de0e3
gnu: rust-base-x-0.2: Update to 0.2.6.
...
* gnu/packages/crates-io.scm (rust-base-x-0.2): Update to 0.2.6.
2020-01-14 12:35:28 +02:00
Efraim Flashner
63df9c017b
gnu: rust-base-x-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-base-x-0.2)[arguments]: Skip build.
Add rust-bencher-0.1, rust-json-0.11, rust-rand-0.3 to
cargo-development-inputs.
[properties]: Remove field.
2020-01-14 12:33:51 +02:00
Efraim Flashner
105b8ac768
gnu: rust-backtrace-sys-0.1: Upgrade to 0.1.32.
...
* gnu/packages/crates-io.scm (rust-backtrace-sys-0.1): Update to 0.1.32.
2020-01-14 12:31:19 +02:00
Efraim Flashner
aa9b1360d6
gnu: rust-backtrace-sys-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-backtrace-sys-0.1)[arguments]: Skip
build. Add rust-libc-0.2, rust-compiler-builtins-0.1,
rust-rustc-std-workspace-core-1.0 to cargo-inputs. Add rust-cc-1.0 to
cargo-development-inputs.
[properties]: Remove field.
2020-01-14 12:30:28 +02:00
Efraim Flashner
9df8b4633f
gnu: rust-autocfg-0.1: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-autocfg-0.1)[arguments]: Skip build.
[properties]: Remove field.
2020-01-14 12:25:32 +02:00
Efraim Flashner
587540f7fd
gnu: rust-atty-0.2: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-atty-0.2)[arguments]: Skip build.
Add rust-libc-0.2, rust-winapi-0.3 to cargo-inputs.
[synopsis]: Appease 'guix lint'.
[properties]: Remove field.
2020-01-14 12:24:25 +02:00
Efraim Flashner
8822f7bcf8
gnu: rust-antidote-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-antidote-1.0)[arguments]: Skip build.
[properties]: Remove field.
2020-01-14 12:20:38 +02:00
Efraim Flashner
b303ed76a4
gnu: rust-adler32-1.0: Update to 1.0.4.
...
* gnu/packages/crates-io.scm (rust-adler32-1.0): Update to 1.0.4.
2020-01-14 12:18:40 +02:00
Efraim Flashner
bd97d1b0c0
gnu: rust-adler32-1.0: Don't hide package.
...
* gnu/packages/crates-io.scm (rust-adler32-1.0)[arguments]: Skip build.
Add rust-rand-0.4 to cargo-development-inputs.
[properties]: Remove field.
2020-01-14 12:17:52 +02:00
Julien Lepiller
5c3d77c3b1
gnu: services: Fix mysql service activation.
...
This change is necessary after the split of mariadb outputs.
* gnu/services/databases.scm (%mysql-activation): Use mysql:lib in
mariadb-specific part.
2020-01-14 00:43:00 +01:00
Jakub Kądziołka
6e332fd370
gnu: qtbase: Open links properly without xdg-utils in profile
...
* gnu/packages/qt.scm (qtbase)[inputs]: Add XDG-UTILS.
[arguments](patch-xdg-open): New phase.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-13 23:28:03 +01:00
Ludovic Courtès
e5b955580d
gnu: guile-parted: Add "guile3.0-parted" variant.
...
* gnu/packages/guile-xyz.scm (guile-parted)[source]: Add 'modules' and 'snippet'.
(guile3.0-parted): New variable.
2020-01-13 23:13:05 +01:00
Ludovic Courtès
e7fc774641
gnu: guile-newt: Add "guile3.0-newt" variant.
...
* gnu/packages/guile-xyz.scm (guile-newt)[source]: Add 'modules' and 'snippet'.
(guile3.0-newt): New variable.
2020-01-13 23:13:05 +01:00
Ludovic Courtès
015bb1c8db
gnu: guile-simple-zmq: Add "guile3.0-simple-zmq" variant.
...
* gnu/packages/guile-xyz.scm (guile3.0-simple-zmq): New variable.
2020-01-13 23:13:05 +01:00
Ludovic Courtès
fc870a0da2
gnu: guile-colorized: Add "guile3.0-colorized" variant.
...
* gnu/packages/guile-xyz.scm (guile3.0-colorized): New variable.
2020-01-13 23:13:04 +01:00
Ludovic Courtès
7c3b6b2e26
gnu: guile-readline: Add "guile3.0-readline" variant.
...
* gnu/packages/guile.scm (make-guile-readline): Add optional 'name'
parameter and honor it.
(guile3.0-readline): New variable.
2020-01-13 23:13:04 +01:00
Pierre Neidhardt
8fcb607780
gnu: perl-gtk2: Skip broken test.
...
* gnu/packages/gtk.scm (perl-gtk2)[arguments]: Skip broken test.
2020-01-13 18:26:52 +01:00
Raghav Gururajan
8672e5e981
gnu: Add gnome-weather.
...
* gnu/packages/gnome.scm (gnome-weather): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-13 18:25:40 +01:00
Raghav Gururajan
281f6b3a9e
gnu: Add grilo-plugins.
...
* gnu/packages/gnome.scm (grilo-plugins): Update to 0.3.10.
[description]: Modify.
[build-system]: Use meson-build-system.
[native-inputs]: Add gettext, gtk+:bin.
[inputs]: Add gnome-online-accounts:lib, libgdata, libmediaart, tracker.
Remove sqlite, libxml2, glib, gmime, libarchive.
[arguments]<#:make-flags>: Remove.
<#:glib-or-gtk?>: Add.
<#:configure-flags>: Add -Denable-lua-factory=no.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-13 18:15:19 +01:00
Ludovic Courtès
4616f5a840
gnu: guile-next: Update to 2.9.9.
...
* gnu/packages/guile.scm (guile-next): Update to 2.9.9.
2020-01-13 18:04:58 +01:00
Ludovic Courtès
7ed9c3124d
gnu: guile-bytestructures: Install 'README.md'.
...
* gnu/packages/guile.scm (guile-bytestructures)[arguments]: Add
'install-doc' phase.
2020-01-13 18:04:58 +01:00
Raghav Gururajan
3f1ed953e8
gnu: Add libgovirt.
...
* gnu/packages/gnome.scm (libgovirt): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-13 17:14:25 +01:00
Tobias Geerinckx-Rice
0847e479f6
gnu: vhba-module: Update to 20200106.
...
* gnu/packages/linux.scm (vhba-module): Update to 20200106.
2020-01-13 16:54:40 +01:00
Guillaume Le Vaillant
bccbeeceef
gnu: Add qmapshack.
...
* gnu/packages/geo.scm (qmapshack): New variable.
2020-01-13 16:02:10 +01:00
Guillaume Le Vaillant
30fa6b1636
gnu: Add routino.
...
* gnu/packages/geo.scm (routino): New variable.
2020-01-13 16:02:10 +01:00
Efraim Flashner
e19cb895e1
gnu: librsvg-next: Substitute more crates.
...
* gnu/packages/gnome.scm (librsvg-next-source): Add substitutions for
rust-approx-0.3, rust-arrayvec-0.4, rust-bstr-0.2, rust-byteorder-1.3,
rust-cast-0.2, rust-cloudabi-0.0, rust-criterion-0.2,
rust-criterion-plot-0.3, rust-crossbeam-dequeue-0.7,
rust-crossbeam-epoch-0.7, rust-crossbeam-queue-0.1,
rust-crossbeam-utils-0.6, rust-csv-1.1, rust-csv-core-0.1,
rust-either-1.5, rust-encoding-0.2, rust-fuchsia-cprng-0.1,
rust-futf-0.1, rust-generic-array-0.12, rust-itertools-0.8,
rust-language-tags-0.2, rust-mac-0.1, rust-matches-0.1,
rust-new-debug-unreachable-1.0, rust-num-complex-0.2, rust-phf-0.7,
rust-phf-codegen-0.7, rust-phf-generator-0.7, rust-phf-shared-0.7,
rust-pkg-config-0.3, rust-recomputed-hash-0.1, rust-rand-0.6,
rust-regex-automata-0.1, rust-rustc-version-0.2, rust-semver-09,
rust-semver-parser-0.7, rust-siphasher-0.2, rust-smallvec-0.6,
rust-string-cache-0.7, rust-string-cache-shared-0.3,
rust-thread-local-0.3, rust-tinytemplate-1.0, rust-typenum-1.10,
rust-unicode-bidi-0.3, rust-unicode-normalization-0.1, rust-utf-8-0.7,
rust-winapi-i686-pc-windows-gnu-0.4,
rust-winapi-x86-64-pc-windows-gnu-0.4.
2020-01-13 16:46:48 +02:00
Danny Milosavljevic
2aeca24b6e
gnu: gnome-user-share: Fix license.
...
* gnu/packages/gnome.scm (gnome-user-share)[license]: Use gpl2+.
2020-01-13 09:50:46 +01:00
Leo Prikler
169b8f7769
gnu: evince: Enable introspection.
...
* gnu/packages/gnome.scm (evince)[arguments]<#:configure-flags>: Enable
introspection.
[native-inputs]: Add gobject-introspection.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-13 09:29:47 +01:00
Raghav Gururajan
747d7fe461
gnu: Add gupnp-dlna.
...
* gnu/packages/gnome.scm (gupnp-dlna): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-13 09:07:26 +01:00
Raghav Gururajan
1b4cb6288a
gnu: Add gupnp-av.
...
* gnu/packages/gnome.scm (gupnp-av): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-13 08:58:00 +01:00
Raghav Gururajan
291a85b29b
gnu: Add gupnp.
...
* gnu/packages/gnome.scm (gupnp): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-13 08:46:39 +01:00
Raghav Gururajan
e2aed29c79
gnu: Add gssdp.
...
* gnu/packages/gnome.scm (gssdp): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-13 08:34:32 +01:00
Kei Kebreau
23174b4986
gnu: tintin++: Update to 2.02.00.
...
* gnu/packages/games.scm (tintin++): Update to 2.02.00.
[source]: Adjust for new upstream versioning scheme.
[home-page]: Follow redirect.
[license]: Update license.
2020-01-12 22:32:57 -05:00
Kei Kebreau
72aee8a817
gnu: schismtracker: Update to 20190805.
...
* gnu/packages/music.scm (schismtracker): Update to 20190805.
2020-01-12 20:47:49 -05:00
Timotej Lazar
299e15c16e
gnu: Add julius.
...
* gnu/packages/games.scm (julius): New variable.
2020-01-12 23:40:33 +01:00
Pkill -9
4bfc925ae5
gnu: lmms: Add input jack-1.
...
* gnu/packages/music.scm (lmms): Add input jack-1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-12 23:26:40 +01:00
Ludovic Courtès
9ced0f376b
installer: Add an "Edit" button on the final page.
...
Fixes <https://bugs.gnu.org/36885 >.
Reported by <lukasbf@tutanota.com >.
* gnu/installer/newt/page.scm (edit-file): New procedure.
(run-file-textbox-page): Add #:edit-button? and #:editor-locale
parameters. Remove 'file-text' and add 'edit-button', and add it
to the horizontal stacked grid when EXIT-BUTTON? is true. Wrap
body in 'loop'. Handle case where ARGUMENT is EDIT-BUTTON by calling
'loop'.
* gnu/installer/newt/final.scm (run-config-display-page): Add #:locale
parameter. Pass #:edit-button? and #:editor-locale to
'run-file-textbox-page'.
(run-final-page): Pass LOCALE to 'run-config-display-page'.
2020-01-12 23:26:39 +01:00
Danny Milosavljevic
1e44ae6fe7
lint: Check for more packages which should be native.
...
* guix/lint.scm (check-inputs-should-be-native): Add gtk-doc.
2020-01-12 23:21:59 +01:00
Raghav Gururajan
b5f013929a
gnu: Add gnome-user-share.
...
* gnu/packages/gnome.scm (gnome-user-share): New variable.
2020-01-12 23:08:44 +01:00
Danny Milosavljevic
a65cc579b9
gnu: gnome-initial-setup: Update description.
...
* gnu/packages/gnome.scm (gnome-initial-setup)[description]: Modify.
2020-01-12 22:37:07 +01:00
Raghav Gururajan
a26680eb70
gnu: Add gnome-initial-setup.
...
* gnu/packages/gnome.scm (gnome-initial-setup): New variable.
2020-01-12 22:28:41 +01:00
Jethro Cao
84032506fc
gnu: redis: Update to 5.0.7.
...
* gnu/packages/databases.scm (redis): Update to 5.0.7.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-12 22:23:28 +01:00
Riku Viitanen
9d19266583
gnu: postgresql@11: Update to 11.6.
...
* gnu/packages/databases: (postgresql-11): Update to 11.6.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-12 22:23:28 +01:00
Riku Viitanen
901c993000
gnu: postgresql@9.6: Update to 9.6.16.
...
* gnu/packages/databases.scm (postgresql-9.6): Update to 9.6.16.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-12 22:23:28 +01:00
Jakub Kądziołka
1cb055f04a
gnu: dot2tex: Update to 2.11.3.
...
* gnu/packages/graphviz.scm (dot2tex): Update to 2.11.3.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-12 22:23:28 +01:00
Marius Bakke
20eb3b7e74
gnu: spice: Fix test failure on armhf-linux.
...
* gnu/packages/patches/spice-fix-test-armhf.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/spice.scm (spice)[source](patches): New field.
2020-01-12 22:23:27 +01:00
Timotej Lazar
f9ea47a978
gnu: bitlbee: Update to 3.6.
...
* gnu/packages/messaging.scm (bitlbee): Update to 3.6.
2020-01-12 21:25:27 +01:00
Marius Bakke
2a84b55041
gnu: bitlbee: Build with check@0.12.
...
* gnu/packages/check.scm (check-0.12): New public variable.
* gnu/packages/messaging.scm (bitlbee)[native-inputs]: Change from CHECK to
CHECK-0.12.
2020-01-12 21:25:26 +01:00
Mark H Weaver
bb4f4862a8
gnu: linux-libre: Update to 5.4.11.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.11.
(linux-libre-5.4-pristine-source): Update hash.
2020-01-12 15:03:44 -05:00
Mark H Weaver
0ef338e07a
gnu: linux-libre@4.19: Update to 4.19.95.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.95.
(linux-libre-4.19-pristine-source): Update hash.
2020-01-12 15:03:04 -05:00
Mark H Weaver
c52f8ffab9
gnu: linux-libre@4.14: Update to 4.14.164.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.164.
(linux-libre-4.14-pristine-source): Update hash.
2020-01-12 15:02:30 -05:00
Mark H Weaver
bccdd93eac
gnu: linux-libre@4.9: Update to 4.9.209.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.209.
(linux-libre-4.9-pristine-source): Update hash.
2020-01-12 15:01:56 -05:00
Mark H Weaver
5e0c50ca5f
gnu: linux-libre@4.4: Update to 4.4.209.
...
* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.209.
(linux-libre-4.4-pristine-source): Update hash.
2020-01-12 15:00:53 -05:00
Marius Bakke
8f1ab291bc
Merge branch 'master' into staging
2020-01-12 20:57:38 +01:00
Jakub Kądziołka
2e4bb89354
gnu: xdg-utils: Don't use propagated inputs.
...
* gnu/packages/freedesktop.scm (xdg-utils)[propagated-inputs]: Remove.
[inputs]: Add awk, coreutils, grep, inetutils, perl-file-mimeinfo and sed.
[arguments]: Wrap the installed programs with the specified inputs in PATH.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-12 20:33:53 +01:00
Marius Bakke
5251669671
gnu: nss-certs: Update to 3.48.
...
This is a follow-up to commit 90076d2ce1 .
* gnu/packages/certs.scm (nss-certs): Update to 3.48.
2020-01-12 20:33:53 +01:00
Marius Bakke
cc1b2b3e13
gnu: gst-plugins-base: Do not propagate Orc on armhf systems.
...
* gnu/packages/gstreamer.scm (gst-plugins-base)[propagated-inputs]:
Conditionally add ORC.
2020-01-12 20:33:53 +01:00
Marius Bakke
08b7a278bc
gnu: wavpack: Do not build the static library.
...
* gnu/packages/audio.scm (wavpack)[arguments]: New field.
2020-01-12 20:33:53 +01:00
Marius Bakke
638c45eda8
gnu: wavpack: Update to 5.2.0.
...
* gnu/packages/patches/wavpack-CVE-2018-6767.patch,
gnu/packages/patches/wavpack-CVE-2018-7253.patch,
gnu/packages/patches/wavpack-CVE-2018-7254.patch: Delete files.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/audio.scm (wavpack): Update to 5.2.0.
[source](patches): Remove.
2020-01-12 20:33:52 +01:00
Marius Bakke
11f87d635c
gnu: jsoncpp: Fix test failure on armhf-linux and aarch64-linux.
...
* gnu/packages/patches/jsoncpp-fix-inverted-case.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/serialization.scm (jsoncpp)[source](patches): New field.
2020-01-12 20:33:52 +01:00
Marius Bakke
7dadffff8d
gnu: chez-scheme: Remove obsolete snippet.
...
* gnu/packages/chez.scm (chez-scheme)[source](modules, snippet): Remove.
2020-01-12 20:33:52 +01:00
Marius Bakke
f0bce2e08f
gnu: nss, nss-certs: Update to 3.49.
...
* gnu/packages/certs.scm (nss-certs): Update to 3.49.
* gnu/packages/nss.scm (nss): Likewise.
2020-01-12 20:26:07 +01:00
Brett Gilio
cfd0fd9b2f
gnu: emacs-telega: Update to 0.5.4-3.
...
* gnu/packages/emacs-xyz.scm (emacs-telega): Update to 0.5.4-3.
This change reflects several bug fixes that allows for better integration with
the latest changes provided by `tdlib` 1.5.4 -- 1.6.0.
2020-01-12 13:23:48 -06:00
Guillaume Le Vaillant
8dc2af3ba5
gnu: sbcl-trivial-backtrace: Fix build reproducibility.
...
* gnu/packages/lisp.scm (sbcl-trivial-backtrace)[arguments]: Add
'delete-test-results' phase.
2020-01-12 14:49:27 +01:00
Guillaume Le Vaillant
6b8f7c397a
build: asdf-build-system: Improve reproducibility.
...
* guix/build/asdf-build-system.scm (copy-files-to-output): Reset timestamps of
source files before compiling.
2020-01-12 14:48:30 +01:00
Kei Kebreau
d75a0cd986
gnu: audacity: Update to 2.3.3.
...
* gnu/packages/audio.scm (audacity): Update to 2.3.3.
[source](snippet): Remove bundled "lame".
[arguments]: Adjust "use-upstream-headers" phase.
* gnu/packages/patches/audacity-build-with-system-portaudio.patch: Adjust patch.
2020-01-11 20:17:03 -05:00
Ludovic Courtès
7bd000d104
gnu: Fix license of several GNOME packages.
...
* gnu/packages/gnome.scm (gnome-color-manager)[license]: Change to GPL2+.
(gnome-online-miners)[license]: Likewise.
(gnome-menus)[license]: Change to LGPL2.0+.
2020-01-12 00:37:51 +01:00
Ludovic Courtès
f9e0488c50
doc: Make sure 'htmlxref.cnf' is honored.
...
Fixes <https://bugs.gnu.org/39060 >.
Reported by Tobias Geerinckx-Rice <me@tobias.gr >.
* doc/build.scm (html-manual)[build]: Copy 'htmlxref.cnf' to the current
directory so that 'makeinfo' honors it.
2020-01-12 00:19:10 +01:00
Ludovic Courtès
30d83f445b
doc: Update htmlxref.cnf.
...
* doc/htmlxref.cnf: Update from Texinfo. Add entries for "mes",
"guix.ru", and "guix.zh_CN".
2020-01-12 00:19:10 +01:00
nixo
20b49f47e5
gnu: Add libolm.
...
* gnu/packages/messaging.scm (libolm): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-12 00:19:10 +01:00
EuAndreh
3065bf8aa2
gnu: timidity++: Add libvorbis as input
...
* gnu/packages/audio.scm (timidity++)[inputs] Add libvorbis as input
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-12 00:19:10 +01:00
Jakub Kądziołka
4897038983
gnu: entr: Fix references to external programs.
...
* gnu/packages/entr.scm (entr)[arguments](remove-fhs-file-names): Use 'which'
instead of relying on the runtime PATH. Patch /bin/sh too.
[inputs]: Add NCURSES.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-12 00:19:10 +01:00
Simon Josefsson
58236d301c
system: Drop net-tools from %BASE-PACKAGES (replaced by iproute2).
...
* gnu/system.scm (%base-packages): Remove net-tools.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-12 00:19:09 +01:00
Ludovic Courtès
be0fb348b8
daemon: Fix the displayed GC estimated progress.
...
* nix/libstore/gc.cc (LocalStore::deletePathRecursive): Fix computation
of 'fraction'. Take 'bytesInvalidated' into account.
2020-01-12 00:19:09 +01:00
Ludovic Courtès
7033c7692c
daemon: Account for deleted store files when deduplication is on.
...
Previously, a store item that is a regular file would not be accounted
for in the 'bytesFreed' value computed by 'deletePath' because its
'st_nlink' count would always be >= 2. This commit fixes that.
* nix/libutil/util.hh (deletePath): Add optional 'linkThreshold' argument.
* nix/libutil/util.cc (_deletePath): Add 'linkThreshold' argument and
honor it. Pass it down in recursive call.
(deletePath): Add 'linkThreshold' and honor it.
* nix/libstore/gc.cc (LocalStore::deleteGarbage): Pass 'linkThreshold'
argument to 'deletePath', with a value of 2 when PATH is a store item
and deduplication is on.
2020-01-12 00:19:09 +01:00
Ludovic Courtès
79154f0a09
gnu: cmake@3.15.5: Honor 'SSL_CERT_DIR' and 'SSL_CERT_FILE'.
...
* gnu/packages/cmake.scm (cmake-3.15.5)[native-search-paths]: New field.
2020-01-12 00:19:09 +01:00
Ludovic Courtès
0de28f9ef9
gnu: cmake@3.15.5: Apply "cmake-curl-certificates.patch".
...
* gnu/packages/cmake.scm (cmake-3.15.5)[source]: Add 'patches' field.
(cmake/fixed): Turn into a deprecated alias for CMAKE-3.15.5.
2020-01-12 00:19:09 +01:00
Ludovic Courtès
9b65dea806
gnu: Use the two-element 'define-deprecated' form where applicable.
...
* gnu/packages/guile.scm (guile-json): Use the two-element
'define-deprecated' form.
* gnu/packages/kde.scm (kdevplatform): Likewise.
* gnu/packages/mpi.scm (hwloc-2.0): Likewise.
* gnu/packages/qt.scm (qt): Likewise.
2020-01-12 00:19:09 +01:00
Ludovic Courtès
6e36f1cabd
deprecation: Add a two-element form for simple aliases.
...
* guix/deprecation.scm (define-deprecated): Add a two-element form for
simple aliases: (define-deprecated old new).
2020-01-12 00:19:09 +01:00
Marius Bakke
5f61304737
gnu: freeglut: Do not build static libraries.
...
* gnu/packages/gl.scm (freeglut)[arguments]: Add #:configure-flags.
2020-01-11 23:25:01 +01:00
Marius Bakke
6413687044
gnu: freeglut: Update to 3.2.1.
...
* gnu/packages/gl.scm (freeglut): Update to 3.2.1.
[inputs]: Remove MESA, XORGPROTO and XINPUT.
2020-01-11 23:25:01 +01:00
Marius Bakke
6d5811ef8e
gnu: xkeyboard-config: Update to 2.28.
...
* gnu/packages/xorg.scm (xkeyboard-config): Update to 2.28.
2020-01-11 23:25:01 +01:00
Marius Bakke
5cd1a056bc
gnu: xinput: Update to 1.6.3.
...
* gnu/packages/xorg.scm (xinput): Update to 1.6.3.
2020-01-11 23:25:00 +01:00
Brett Gilio
6b9839e29a
gnu: Add emacs-metal-mercury-mode.
...
* gnu/packages/emacs-xyz.scm (emacs-metal-mercury-mode): New variable.
2020-01-11 16:10:32 -06:00
Efraim Flashner
6fedf6f2b9
gnu: python-keyring: Update to 21.0.0.
...
* gnu/packages/python-crypto.scm (python-keyring): Update to 21.0.0.
[source]: Add snippet to backport test failure.
[arguments]: Use custom 'check phase.
[native-inputs]: Remove python-pytest-runner. Add
python-pytest-checkdocks, python-pytest-cov, python-pytest-flake8.
[propagated-inputs]: Remove python-pycrypto. Add
python-importlib-metadata, python-secretstorage.
[properties]: New field.
(python2-keyring): Rewrite package to stay at 8.7.
2020-01-11 23:49:11 +02:00
Efraim Flashner
4ee1ea76fa
gnu: Add python-secretstorage.
...
* gnu/packages/python-crypto.scm (python-secretstorage): New variable.
2020-01-11 23:49:11 +02:00
Efraim Flashner
83feb3d005
gnu: Add python-jeepney.
...
* gnu/packages/python-crypto.scm (python-jeepney): New variable.
2020-01-11 23:49:11 +02:00
Efraim Flashner
1e158ba156
gnu: python2-contextlib2: Inherit from python-contextlib2.
...
* gnu/packages/python-xyz.scm (python2-contextlib2): Inherit from
python-contextlib2.
(python-contextlib2)[properties]: New field.
2020-01-11 23:49:10 +02:00
Reza Alizadeh Majd
13efb24850
gnu: pcmanfm-qt: Fix opening files by double-click.
...
Fixes <https://bugs.gnu.org/38926 >.
* gnu/packages/lxqt.scm (pcmanfm-qt)[arguments]: Add phase to wrap the
executable with the GIO_LAUNCH_DESKTOP environment variable.
[inputs]: Add GLIB:BIN.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-11 21:28:05 +01:00
Jonathan Brielmaier
34e8f0afef
gnu: make-gcc-toolchain: Fix typo in description.
...
* gnu/packages/commencement.scm (make-gcc-toolchain)[description]: Fix typo
and triple spacing.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-11 21:28:05 +01:00
Jakub Kądziołka
8273188cca
gnu: Add wla-dx.
...
* gnu/packages/assembly.scm (wla-dx): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2020-01-11 21:17:15 +01:00
Leo Prikler
71e33e32fc
services: Add pulseaudio to %desktop-services.
...
Fixes <https://bugs.gnu.org/38172 >.
Reported by raingloom <raingloom@riseup.net >.
* gnu/services/desktop.scm (%desktop-services): Add pulseaudio service.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-11 18:18:51 +01:00
Leo Prikler
fc29f3bf4f
doc: Add pulseaudio documentation.
...
* doc/guile.texi: Add documentation for pulseaudio-service-type and
pulseaudio-configuration.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-11 18:18:51 +01:00
Leo Prikler
f1022fbf2f
services: Split ladspa-service-type from pulseaudio-service-type.
...
* gnu/services/sound.scm (ladspa-configuration): New record.
(ladspa-environment): New procedure.
(ladspa-service-type): New service type.
(pulseaudio-environment): Remove LADSPA_PATH.
* doc/guix.texi: Adjust documentation.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-11 18:18:51 +01:00
Leo Prikler
f6f9181130
services: pulseaudio-configuration: Set flat-volumes to no.
...
* gnu/services/sound (pulseaudio-configuration) [daemon-conf]: Disable
flat-volumes, which causes unpleasant experiences to users when applications
inadvertently max out the system volume (e.g. as in #38172 ).
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-11 18:18:51 +01:00
Leo Prikler
f547426200
services: Add pulseaudio-configuration.
...
* gnu/services/sound (<pulseaudio-configuration>): New record.
(pulseaudio-etc): New procedure.
(pulseaudio-environment): Add PULSE_CONFIG and PULSE_CLIENTCONFIG.
(pulseaudio-service-type): Update accordingly.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-11 18:18:50 +01:00
Marius Bakke
2c7511fb66
gnu: qtwebengine: Purge unnecessary bundled software from the source.
...
* gnu/packages/qt.scm (qtwebengine)[source](modules, snippet): New fields.
[inputs]: Add CURL and VALGRIND.
2020-01-11 18:18:50 +01:00
Mike Rosset
db481636a5
gnu: Add qtwebengine.
...
* gnu/packages/qt.scm (qtwebengine): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com >
2020-01-11 18:18:50 +01:00
nixo
efc32ed890
gnu: emacs-undo-tree: Update to 0.7.1.
...
* gnu/packages/emacs-xyz.scm (emacs-undo-tree): Update to 0.7.1.
Signed-off-by: David Wilson <david@daviwil.com >
2020-01-11 05:43:49 -08:00
Guillaume Le Vaillant
e4c9ba4da2
gnu: Add picolisp.
...
* gnu/packages/lisp.scm (picolisp32, picolisp): New variables.
2020-01-11 11:26:14 +01:00
Tobias Geerinckx-Rice
41d3e086e0
gnu: cdemu-daemon: Split excessively long line.
...
* gnu/packages/cdrom.scm (cdemu-daemon)[source]: Wrap at 80 characters.
2020-01-11 03:54:46 +01:00
Tobias Geerinckx-Rice
8bd904450b
gnu: cdemu-client: Update to 3.2.4.
...
* gnu/packages/cdrom.scm (cdemu-client): Update to 3.2.4.
2020-01-11 03:54:46 +01:00
Tobias Geerinckx-Rice
46ffcd5fe1
gnu: cdemu-daemon: Update to 3.2.4.
...
* gnu/packages/cdrom.scm (cdemu-daemon): Update to 3.2.4.
2020-01-11 03:54:46 +01:00
Tobias Geerinckx-Rice
2d639e0fce
gnu: libmirage: Update to 3.2.4.
...
* gnu/packages/cdrom.scm (libmirage): Update to 3.2.4.
2020-01-11 03:54:46 +01:00
Tobias Geerinckx-Rice
7f0bccb559
gnu: impressive: Update to 0.12.1.
...
* gnu/packages/pdf.scm (impressive): Update to 0.12.1.
2020-01-11 03:12:19 +01:00
Tobias Geerinckx-Rice
fc87c7ce46
gnu: kdevelop: Update to 5.4.6.
...
* gnu/packages/kde.scm (kdevelop): Update to 5.4.6.
2020-01-11 03:12:19 +01:00
Tobias Geerinckx-Rice
df45af9041
gnu: upower: Update to 0.99.11.
...
* gnu/packages/gnome.scm (upower): Update to 0.99.11.
[source]: Follow home page download URI.
2020-01-11 03:12:19 +01:00
Tobias Geerinckx-Rice
a4ac25df71
gnu: python-glances: Update to 3.1.2.
...
* gnu/packages/python-xyz.scm (python-glances): Update to 3.1.2.
2020-01-11 03:12:19 +01:00
Tobias Geerinckx-Rice
21724ed951
gnu: ddcutil: Update to 0.9.8.
...
* gnu/packages/hardware.scm (ddcutil): Update to 0.9.8.
2020-01-11 03:12:19 +01:00
Tobias Geerinckx-Rice
cd199a45b5
gnu: python-smmap2: Update to 2.0.5.
...
* gnu/packages/python-xyz.scm (python-smmap2): Update to 2.0.5.
2020-01-11 03:12:18 +01:00
Tobias Geerinckx-Rice
ad07f6747a
gnu: thunar: Update to 1.8.11.
...
* gnu/packages/xfce.scm (thunar): Update to 1.8.11.
2020-01-11 03:12:18 +01:00
Tobias Geerinckx-Rice
f01d8e9c2f
gnu: xf86-input-wacom: Update to 0.39.0.
...
* gnu/packages/xdisorg.scm (xf86-input-wacom): Update to 0.39.0.
2020-01-11 03:12:18 +01:00
Tobias Geerinckx-Rice
bde974c55e
gnu: libwacom: Update to 1.2.
...
* gnu/packages/xdisorg.scm (libwacom): Update to 1.2.
2020-01-11 03:12:18 +01:00
Roel Janssen
10576acbbf
gnu: mercurial: Update to 5.2.1.
...
* gnu/packages/version-control.scm (mercurial): Update to 5.2.1.
[arguments]: Remove hard dependency on Python 2. Replace check phase to work
around known failing tests.
[native-inputs]: Add python-nose, and unzip.
Signed-off-by: Brett Gilio <brettg@gnu.org >
2020-01-10 19:22:22 -06:00
Florian Pelz
f22b357113
doc: Clarify description of the PageKite service.
...
* doc/guix.texi (Networking Services): Make clear PageKite is not necessary
with port forwarding.
2020-01-10 23:59:30 +00:00
Tobias Geerinckx-Rice
cb169aae81
gnu: hdf5@1.10: Update to 1.10.6.
...
* gnu/packages/maths.scm (hdf5-1.10): Update to 1.10.6.
2020-01-10 23:47:28 +01:00
Tobias Geerinckx-Rice
56b27a158f
gnu: reuse: Download from PyPI.
...
* gnu/packages/license.scm (reuse)[source]: Use PYPI-URI.
2020-01-10 23:47:28 +01:00
Tobias Geerinckx-Rice
fc11e35619
gnu: reuse: Update to 0.7.0.
...
* gnu/packages/license.scm (reuse): Update to 0.7.0.
2020-01-10 23:47:28 +01:00
Tobias Geerinckx-Rice
bfd995729b
gnu: opensc: Eliminate obsolete test disablement.
...
This follows up on commit 508d5c5fa8 ,
I guess.
* gnu/packages/security-token.scm (opensc)[arguments]: Remove the
‘disable-broken-test’ phase.
2020-01-10 23:47:28 +01:00
Tobias Geerinckx-Rice
e0dde179ba
gnu: rng-tools: Update to 6.9.
...
* gnu/packages/linux.scm (rng-tools): Update to 6.9.
2020-01-10 23:47:28 +01:00
Hartmut Goebel
bc818a57ca
gnu: gnucash: Update to 3.8.
...
* gnu/packages/gnucash.scm (gnucash, gnucash-doc): Update to 3.8.
2020-01-10 23:01:28 +01:00
Hartmut Goebel
219fe54c8a
gnu: aqbanking: Update to 5.99.44beta.
...
* gnu/packages/gnucash.scm (aqbanking): Update to 5.99.44beta.
[argmuents]<configure-flags>: Remove.
[native-inputs]. Add gettext-minimal.
2020-01-10 23:01:28 +01:00
Hartmut Goebel
c82eab7f42
gnu: gwenhywfar: Update to 4.99.25rc9.
...
* gnu/packages/gnucash.scm (gwenhywfar): Update to 4.99.25rc9.
2020-01-10 23:01:28 +01:00
Ricardo Wurmus
afb54fd1e7
gnu: lepton-eda: Fix build.
...
This is a follow-up to commit 1101c73c7f .
* gnu/packages/engineering.scm (lepton-eda)[arguments]: Ignore inherited
phases.
2020-01-10 22:45:09 +01:00
Ricardo Wurmus
53904f7422
gnu: nfs-utils: Build rpc.svcgssd.
...
* gnu/packages/nfs.scm (nfs-utils)[arguments]: Enable building of rpc.svcgssd.
2020-01-10 22:45:09 +01:00
Guillaume Le Vaillant
230e5db71e
gnu: monero-gui: Update to 0.15.0.3.
...
* gnu/packages/finance.scm (monero-gui): Update to 0.15.0.3.
[build-system]: Use qt-build-system.
[inputs]: Remove qtwebchannel and qtx11extras.
[arguments]: Merge fix-library-paths, fix-monerod-path, fix-qt-paths and
fix-install-path phases into a fix-paths phase. Remove custom build,
change-dir and wrap-program phases. Add configure and build-zxcvbn-c phases.
2020-01-10 11:42:05 +01:00
Tobias Geerinckx-Rice
8a6c5b5d99
gnu: rrdtool: Update to 1.7.2.
...
* gnu/packages/rrdtool.scm (rrdtool): Update to 1.7.2.
2020-01-10 04:46:41 +01:00
Tobias Geerinckx-Rice
a0e63ce426
gnu: pcsc-lite: Update to 1.8.26.
...
* gnu/packages/security-token.scm (pcsc-lite): Update to 1.8.26.
2020-01-10 04:46:41 +01:00
Tobias Geerinckx-Rice
b256ab505d
gnu: pcsc-lite: Don't use NAME in source URI.
...
* gnu/packages/security-token.scm (pcsc-lite)[source]: Hard-code NAME.
2020-01-10 04:46:41 +01:00
Tobias Geerinckx-Rice
a4893b382a
gnu: font-iosevka-slab: Update source hash.
...
* gnu/packages/fonts.scm (font-iosevka-slab)[source]: Update sha256.
2020-01-10 04:46:40 +01:00
Tobias Geerinckx-Rice
90d5f4963f
gnu: python-lxml: Use HTTPS home page.
...
* gnu/packages/python-xyz.scm (python-lxml)[home-page]: Use HTTPS.
2020-01-10 04:46:40 +01:00
Tobias Geerinckx-Rice
783d1d4024
gnu: python-lxml: Update to 4.4.2.
...
* gnu/packages/python-xyz.scm (python-lxml): Update to 4.4.2.
2020-01-10 04:46:40 +01:00
Danny Milosavljevic
afc7882f2d
gnu: hplip: Fix scanner model detection.
...
* gnu/packages/cups.scm (hplip)[arguments]<#:phases>[install-models-dat]: New
phase.
2020-01-10 00:25:50 +01:00
Raghav Gururajan
02ebbca82f
gnu: Add libmediaart.
...
* gnu/packages/gnome.scm (libmediaart): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-09 23:34:38 +01:00
Joseph LaFreniere
3da1e6e9ed
gnu: Add emacs-monky.
...
* gnu/packages/emacs-xyz.scm (emacs-monky): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-09 23:33:04 +01:00
Ludovic Courtès
ef09cb866c
doc: Add a cooptation policy for commit access.
...
* doc/contributing.texi (Commit Access): Draft a cooptation policy.
2020-01-09 23:33:04 +01:00
Ludovic Courtès
98ebcf1c1b
doc: Encourage patch review.
...
* doc/contributing.texi (Commit Access): Add note about patch review.
2020-01-09 23:33:04 +01:00
Ludovic Courtès
2d315cd428
doc: Move "Commit Access" section from 'HACKING' to the manual.
...
* HACKING (Commit Access): Remove.
(Contributing): Update URL of the manual.
* doc/contributing.texi (Commit Access): New section.
(Submitting Patches): Add cross reference.
2020-01-09 23:33:04 +01:00
Ludovic Courtès
a7bde77d24
doc: Add "Tracking Bugs and Patches" section.
...
* doc/contributing.texi (Tracking Bugs and Patches): New section.
(Submitting Patches): Refer to it.
* doc/guix.texi: Update copyright line.
* HACKING (Using emacs-debbugs): Remove.
2020-01-09 23:33:04 +01:00
Ludovic Courtès
f75243e17e
channels: Provide a hint when the 'guix' channel is lacking.
...
Fixes <https://bugs.gnu.org/39043 >.
Reported by Jesse Gibbons <jgibbons2357@gmail.com >.
* guix/channels.scm (channel-instance-derivations): Raise '&fix-hint'
condition in addition to the '&message' condition.
2020-01-09 23:33:04 +01:00
Danny Milosavljevic
bbd9063afc
lint: Check for more packages which should be native.
...
* guix/lint.scm (check-inputs-should-be-native): Add autoconf, automake,
bison, dejagnu, desktop-file-utils, doxygen, flex, gettext,
gobject-introspection, googletest-source, groff, help2man, libtool, swig,
qmake, qttools, texinfo, xorg-server-for-tests, yelp-tools.
2020-01-09 23:15:04 +01:00
Mark H Weaver
7edbaa7f65
gnu: linux-libre: Update to 5.4.10.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.10.
(linux-libre-5.4-pristine-source): Update hash.
2020-01-09 15:39:08 -05:00
Mark H Weaver
5a3b9463ed
gnu: linux-libre@4.19: Update to 4.19.94.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.94.
(linux-libre-4.19-pristine-source): Update hash.
2020-01-09 15:38:29 -05:00
Mark H Weaver
91d4298d3a
gnu: linux-libre@4.14: Update to 4.14.163.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.163.
(linux-libre-4.14-pristine-source): Update hash.
2020-01-09 15:37:32 -05:00
Mark H Weaver
a2be2c6881
gnu: icecat: Update to 68.4.1-guix0-preview1 [fixes CVE-2019-17026].
...
* gnu/packages/gnuzilla.scm (%icecat-version, %icecat-build-id): Update.
(icecat-source): Update hash of upstream firefox source tarball,
'upstream-icecat-base-version', and commit and hash of gnuzilla checkout.
* gnu/packages/patches/icecat-makeicecat.patch: Adapt to upstream changes.
2020-01-09 14:07:54 -05:00
Mark H Weaver
5d3db373ba
gnu: dillo: Fix SSL support.
...
* gnu/packages/web-browsers.scm (dillo)[inputs]: Use openssl-1.0
in place of openssl.
2020-01-09 14:07:47 -05:00
Brant Gardner
2c50e52ab8
gnu: emacs-ledger-mode: Fix autoload failure.
...
* gnu/packages/finance.scm (emacs-ledger-mode)[arguments]: Replace the
'relocate-elisp' phase by a 'patch-site-dir' phase to put the files in the
right directory and a 'generate-autoload' phase to make the autoload file.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2020-01-09 18:21:19 +01:00
Raghav Gururajan
29ae18db05
gnu: Add gnome-color-manager.
...
* gnu/packages/gnome.scm (gnome-color-manager): New variable.
2020-01-09 17:57:41 +01:00
Guillaume Le Vaillant
3e10b2418d
gnu: qtxmlpatterns: Build QML plugin for XmlListModel.
...
* gnu/packages/qt.scm (qtdeclarative)[native-inputs]: Remove qtxmlpatterns.
(qtxmlpatterns)[native-inputs]: Add qtdeclarative.
2020-01-09 16:03:56 +01:00
Raghav Gururajan
e05471a1a9
gnu: Add gnome-online-miners.
...
* gnu/packages/gnome.scm (gnome-online-miners): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-09 15:36:08 +01:00
Paul Garlick
1a7d58dc62
gnu: Add emacs-ebib.
...
* gnu/packages/emacs-xyz.scm (emacs-ebib): New variable.
2020-01-09 13:25:35 +00:00
Efraim Flashner
2604ecb3a9
gnu: smithwaterman: Update to 0.0.0-2.2610e25.
...
* gnu/packages/bioinformatics.scm (smithwaterman): Update to 0.0.0-2.2610e25.
[arguments]: Add make-flags to build static library. Adjust custom
'install phase to install static library.
2020-01-09 14:30:38 +02:00
Efraim Flashner
0ab7f6c5f4
gnu: vcflib: Update to 1.0.1.
...
* gnu/packages/bioinformatics.scm (vcflib): Update to 1.0.1.
[source]: Download using url-fetch.
[native-inputs]: Sort alphabetically. Move perl, python ...
[inputs]: ... to here.
[arguments]: Add make-flags. Update custom 'build phase.
(tabixpp-freebayes): Remove variable.
(freebayes)[native-inputs]: Use tabixpp-source over tabixpp-freebayes.
2020-01-09 14:30:38 +02:00
Efraim Flashner
2e3efa6e55
gnu: fastahack: Update to 1.0.0.
...
* gnu/packages/bioinformatics.scm (fastahack): Update to 1.0.0.
2020-01-09 14:30:38 +02:00
Efraim Flashner
de933b71ee
gnu: Add intervaltree.
...
* gnu/packages/bioinformatics.scm (intervaltree): New variable.
(vcflib, freebayes)[native-inputs]: Use packaged intervaltree's source.
2020-01-09 14:30:38 +02:00
Efraim Flashner
612d6a8e5b
gnu: tabixpp: Update to 1.1.0.
...
* gnu/packages/bioinformatics.scm (tabixpp): Update to 1.1.0.
[source]: Add snippet to remove vendored library.
[arguments]: Adjust custom 'build phase to fix INCLUDES.
2020-01-09 14:30:37 +02:00
Efraim Flashner
2673620f24
gnu: bwa: Install static library.
...
* gnu/packages/bioinformatics.scm (bwa)[arguments]: Install static
library.
2020-01-09 14:30:34 +02:00
Pierre Neidhardt
1e3bbd90e4
gnu: emacs-cyberpunk-theme: Update to 1.21.
...
* gnu/packages/emacs-xyz.scm (emacs-cyberpunk-theme): Update to 1.21.
2020-01-09 12:07:02 +01:00
Pierre Neidhardt
a9e70dc5a6
gnu: emacs-helm-org: Update to 20191229.
...
* gnu/packages/emacs-xyz.scm (emacs-helm-org): Update to 20191229.
2020-01-09 11:27:25 +01:00
Vagrant Cascadian
e39fbd8890
gnu: u-boot-2019.10: Remove obsolete version.
...
* gnu/packages/bootloaders (u-boot-2019.10): Remove variable.
(u-boot-firefly-rk3399): Use default u-boot version.
(u-boot-rockpro64-rk3399): Use default u-boot version.
(u-boot-rock64-rk3328): Use default u-boot version.
[arguments]: Remove add-u-boot-itb phase.
2020-01-08 22:24:22 -08:00
Vagrant Cascadian
634b0e28de
gnu: u-boot: Update to 2020.01.
...
* gnu/packages/bootloaders (u-boot): Update to 2020.01.
[source]: Remove patch u-boot-fix-mkimage-header-verification.
[native-inputs]: Update to use python 3 and add perl.
(u-boot-tools)[configure]: Use tools-only_defconfig.
[arguments]: Update phase updating python-coverage to work with python 3.
Drop obsolete substitution for test_ofplatdata.
Disable code coverage tests and binman tests.
* gnu/packages/patches/u-boot-fix-mkimage-header-verification.patch: Remove file.
* gnu/local.mk [dist_patch_DATA]: Update accordingly.
2020-01-08 22:24:20 -08:00
Vagrant Cascadian
a1fd8c5dee
gnu: arm-trusted-firmware: Update to 2.2.
...
* gnu/packages/firmware (make-arm-trusted-firmware): Update to 2.2.
[source]: Update URL.
[homepage]: Update URL.
* gnu/packages/patches/arm-trusted-firmware-optional-bin-generation.patch:
Remove patch.
* gnu/packages/patches/arm-trusted-firmware-rockchip-disable-binary.patch:
Remove patch.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
2020-01-08 22:24:17 -08:00
Oleg Pykhalov
fa01e10da2
gnu: system-config-printer: Update to 1.5.12.
...
* gnu/packages/gnome.scm (system-config-printer): Update to 1.5.12.
2020-01-09 05:00:14 +03:00
Oleg Pykhalov
baa195dde4
gnu: sysstat: Update to 12.3.1.
...
* gnu/packages/linux.scm (sysstat): Update to 12.3.1.
2020-01-09 05:00:14 +03:00
Oleg Pykhalov
67f9f57899
gnu: streamlink: Update to 1.3.0.
...
* gnu/packages/video.scm (streamlink): Update to 1.3.0.
[source]: Remove patch.
* gnu/local.mk (dist_patch_DATA): Remove this.
2020-01-09 04:59:59 +03:00
Oleg Pykhalov
3d4bf40071
gnu: tigervnc-client: Update to 1.10.1.
...
* gnu/packages/tigervnc.scm (tigervnc-client): Update to 1.10.1.
(tigervnc-server): Update to 1.10.1.
2020-01-09 04:56:01 +03:00
Oleg Pykhalov
076fe8462a
gnu: teeworlds: Fix install phase on i386 architecture.
...
* gnu/packages/games.scm (teeworlds)[arguments]: Fix install phase on i386
architecture.
2020-01-09 04:56:01 +03:00
Tobias Geerinckx-Rice
d5971d667b
gnu: font-iosevka: Update to 2.3.3.
...
* gnu/packages/fonts.scm (font-iosevka): Update to 2.3.3.
2020-01-09 01:46:30 +01:00
Tobias Geerinckx-Rice
7c3c6f3a15
gnu: font-comic-neue: Add a note about versions.
...
* gnu/packages/fonts.scm (font-comic-neue): Add a comment about the
‘v2.4’ tag.
2020-01-09 01:46:30 +01:00
Tobias Geerinckx-Rice
fb7e50bdb4
gnu: font-inconsolata: Use HTTPS home page.
...
* gnu/packages/fonts.scm (font-inconsolata)[home-page]: Use HTTPS.
2020-01-09 01:46:29 +01:00
Tobias Geerinckx-Rice
901f2607c9
gnu: font-inconsolata: Update to 3.000.
...
* gnu/packages/fonts.scm (font-inconsolata): Update to 3.000.
[source]: Fetch from the author's new repository.
2020-01-09 01:46:29 +01:00
Tobias Geerinckx-Rice
57680360da
gnu: font-ibm-plex: Update to 4.0.2.
...
* gnu/packages/fonts.scm (font-ibm-plex): Update to 4.0.2.
2020-01-09 01:46:29 +01:00
Tobias Geerinckx-Rice
7ac600927b
gnu: font-gnu-unifont: Update to 12.1.04.
...
* gnu/packages/fonts.scm (font-gnu-unifont): Update to 12.1.04.
2020-01-09 01:46:29 +01:00
Tobias Geerinckx-Rice
3fd67ec610
gnu: font-terminus: Update to 4.48.
...
* gnu/packages/fonts.scm (font-terminus): Update to 4.48.
2020-01-09 01:46:29 +01:00
Tobias Geerinckx-Rice
5dc8a3ad39
gnu: font-lato: Update version number to 2.015.
...
Both the README and the Web site identify this as version 2.015.
* gnu/packages/fonts.scm (font-lato)[version]: Correct.
2020-01-09 01:46:29 +01:00
Tobias Geerinckx-Rice
789a39a82c
gnu: mate-terminal: Update to 1.23.0.
...
* gnu/packages/mate.scm (mate-terminal): Update to 1.23.0.
2020-01-09 01:46:29 +01:00
Tobias Geerinckx-Rice
30bbe72db3
gnu: mate-terminal: Don't use NAME in source URI.
...
* gnu/packages/mate.scm (mate-terminal)[source]: Hard-code NAME.
2020-01-09 01:46:28 +01:00
Oleg Pykhalov
8f6b6cb822
gnu: sdl2-image: Update to 2.0.5.
...
* gnu/packages/sdl.scm (sdl2-image): Update to 2.0.5.
2020-01-09 03:13:35 +03:00
Oleg Pykhalov
db7040935f
gnu: s6-rc: Update to 0.5.1.1.
...
* gnu/packages/skarnet.scm (s6-rc): Update to 0.5.1.1.
2020-01-09 03:05:02 +03:00
Oleg Pykhalov
dd0e9335dc
gnu: s6-portable-utils: Update to 2.2.2.1.
...
* gnu/packages/skarnet.scm (s6-portable-utils): Update to 2.2.2.1.
2020-01-09 03:04:13 +03:00
Oleg Pykhalov
e262a5a7e0
gnu: s6-networking: Update to 2.3.1.1.
...
* gnu/packages/skarnet.scm (s6-networking): Update to 2.3.1.1.
2020-01-09 03:03:16 +03:00
Oleg Pykhalov
e37a3ac0bd
gnu: s6-linux-utils: Update to 2.5.1.1.
...
* gnu/packages/skarnet.scm (s6-linux-utils): Update to 2.5.1.1.
2020-01-09 03:02:29 +03:00
Oleg Pykhalov
c1eab4a2a9
gnu: s6-linux-init: Update to 1.0.3.1.
...
* gnu/packages/skarnet.scm (s6-linux-init)[version]: Update to 1.0.3.1.
[inputs]: Add execline and s6.
[arguments]: Add '--with-lib=' for execline and s6.
2020-01-09 02:59:51 +03:00
Oleg Pykhalov
2266eecfae
gnu: s6-dns: Update to 2.3.1.1.
...
* gnu/packages/skarnet.scm (s6-dns): Update to 2.3.1.1.
2020-01-09 02:55:00 +03:00
Oleg Pykhalov
20d812fac4
gnu: skalibs: Update to 2.9.1.0.
...
* gnu/packages/skarnet.scm (skalibs): Update to 2.9.1.0.
2020-01-09 02:54:57 +03:00
Oleg Pykhalov
64c1e6fe4a
gnu: abiword: Update to 3.0.4.
...
* gnu/packages/abiword.scm (abiword): Update to 3.0.4.
[source](patches): Remove "abiword-black-drawing-with-gtk322.patch" patch.
Delete merged to upstream patch hunks in "abiword-explictly-cast-bools.patch"
patch.
* gnu/packages/patches/abiword-black-drawing-with-gtk322.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove this.
2020-01-09 02:40:25 +03:00
Oleg Pykhalov
9a1bfd68a9
gnu: emacs-treemacs: Refactor "install-data" phase.
...
* gnu/packages/emacs-xyz.scm (emacs-treemacs)[arguments]: Refactor
"install-data" phase.
2020-01-09 02:40:25 +03:00
Marius Bakke
60a366ec7a
gnu: util-linux: Rename udev variant.
...
Some packages propagate util-linux, so make sure that that manifests and
similar choose the same version to avoid conflicts.
* gnu/packages/linux.scm (util-linux)[properties]: Remove.
(util-linux+udev)[name]: Set to "util-linux-with-udev".
[properties]: Remove.
2020-01-09 00:13:50 +01:00
Ricardo Wurmus
907eeac2e7
services: nfs: Add nfs-service-type.
...
* gnu/services/nfs.scm (<nfs-configuration>): New record.
(nfs-configuration, nfs-configuration?, nfs-configuration-nfs-utils,
nfs-configuration-nfs-version, nfs-configuration-exports,
nfs-configuration-rpcmountd-port, nfs-configuration-rpcstatd-port,
nfs-configuration-rpcbind, nfs-configuration-idmap-domain,
nfs-configuration-nfsd-port, nfs-configuration-nfsd-threads,
nfs-configuration-pipefs-directory, nfs-configuration-debug,
nfs-shepherd-services): New procedures.
(nfs-service-type): New variable.
* doc/guix.texi (Network File System): Document it.
* gnu/tests/nfs.scm (%test-nfs-server): New variable.
(%base-os): Use default value of rpcbind-service-type.
2020-01-08 23:56:16 +01:00
Ricardo Wurmus
a6bdca6b9b
services: nfs: Allow gss-service-type to be extended.
...
* gnu/services/nfs.scm (gss-service-type): Rewrite using SERVICE-TYPE to add
ability to extend the service.
2020-01-08 23:56:16 +01:00
Ricardo Wurmus
2a23942e3f
services: nfs: Add verbosity control to idmap-service-type.
...
* gnu/services/nfs.scm (<idmap-configuration>)[verbosity]: New field.
(idmap-configuration-verbosity): New procedure.
(idmap-service-type): Use it.
* doc/guix.texi (Network File System): Document it.
2020-01-08 23:56:16 +01:00
Ricardo Wurmus
af32ea3583
services: nfs: Allow idmap-service-type to be extended.
...
* gnu/services/nfs.scm (idmap-service-type): Rewrite using SERVICE-TYPE to add
ability to extend the service.
2020-01-08 23:56:16 +01:00
Ricardo Wurmus
5d4ba49891
services: nfs: Fix indentation and typo.
...
* gnu/services/nfs.scm (<gss-configuration>, <idmap-configuration>): Fix
indentation.
(<idmap-configuration>): Rename accessor for NFS-UTILS field to
IDMAP-CONFIGURATION-NFS-UTILS.
(idmap-service-type): Use IDMAP-CONFIGURATION-NFS-UTILS.
2020-01-08 23:56:16 +01:00
Ricardo Wurmus
25c8c8cd4f
services: nfs: Allow pipefs-service-type to be extended.
...
* gnu/services/nfs.scm (pipefs-service-type): Rewrite using SERVICE-TYPE to
add ability to extend the service.
2020-01-08 23:56:16 +01:00
Ricardo Wurmus
ba1808d5e7
services: nfs: Allow rpcbind-service-type to be extended.
...
* gnu/services/nfs.scm (rpcbind-service-type): Rewrite using SERVICE-TYPE to
add ability to extend the service.
2020-01-08 23:56:16 +01:00
Ricardo Wurmus
981ce38937
services: nfs: Fix name of package variable.
...
* gnu/services/nfs.scm (rpcbind-service-type): Correct name from nfs-utils to
rpcbind.
2020-01-08 23:56:11 +01:00
Ludovic Courtès
62b9d3d4d5
git-authenticate: Add daviwil to the list of committers.
...
This is a followup to a587bb23b7 , first
commit signed by daviwil.
* build-aux/git-authenticate.scm (%committers): Add "daviwil".
2020-01-08 23:34:18 +01:00
Ludovic Courtès
984efa2b6a
build-system/clojure: Provide only the right modules in scope.
...
Previously, we used to have a whole bunch of (guix build *-build-system)
modules in scope, which, for example, meant that '%standard-phases' was
clashing. This change clarifies it.
* guix/build-system/clojure.scm (%default-modules): New variable.
(clojure-build): Change the default value of #:modules and that of
#:phases.
2020-01-08 23:21:14 +01:00
Ludovic Courtès
639e641cdf
gnu: Add clojure-tools-cli.
...
* gnu/packages/clojure.scm (clojure-tools-cli): New variable.
2020-01-08 23:21:14 +01:00
Marius Bakke
01bb039e7b
system: Use the udev-enabled util-linux variant.
...
Fixes <https://bugs.gnu.org/37931 >.
Reported by Bengt Richter <bokr@bokr.com >.
* gnu/system.scm (%base-packages): Change from UTIL-LINUX to UTIL-LINUX+UDEV.
2020-01-08 20:04:12 +01:00
Marius Bakke
71e0f1e9ad
gnu: util-linux: Add variant with udev support.
...
* gnu/packages/linux.scm (util-linux)[properties]: New field.
(util-linux+udev): New public variable.
2020-01-08 20:04:12 +01:00
Marius Bakke
e7e315c02e
gnu: psyclpc: Build with OpenSSL 1.0.
...
Fixes <https://bugs.gnu.org/39019 >. Reported by symphonia@disroot.org .
* gnu/packages/messaging.scm (psyclpc)[inputs]: Change from OPENSSL to
OPENSSL-1.0.
2020-01-08 20:04:12 +01:00
Guillaume Le Vaillant
f98c050c20
build: asdf-build-system: Make sbcl-* Lisp packages reproducible.
...
The '*.fasl' files produced by SBCL contain the mtime of the source file (see
commit 72843d7ce32bd615f64a0326cf891658b5724ead of SBCL's code repository).
As asdf-build-system makes a copy of the source files before compiling them,
we must set the mtime of these copies to the same date as the originals for
the build to be reproducible.
* guix/build/asdf-build-system.scm (copy-files-to-output): Keep the
modification time of the original source files.
2020-01-08 15:39:05 +01:00
David Wilson
3d20fbf7e6
gnu: emacs-git-auto-commit-mode: Update to 4.5.0.
...
* gnu/packages/emacs-xyz.scm (emacs-git-auto-commit-mode): Update to 4.5.0.
2020-01-08 06:08:37 -08:00
David Wilson
a587bb23b7
gnu: emacs-undo-tree: Update to 0.7.
...
* gnu/packages/emacs-xyz.scm (emacs-undo-tree): Update to 0.7.
2020-01-08 06:08:32 -08:00
Oleg Pykhalov
5e5b884ef6
gnu: keepalived: Update to 2.0.19.
...
* gnu/packages/cluster.scm (keepalived): Update to 2.0.19.
2020-01-08 10:21:46 +03:00
Oleg Pykhalov
7eea3afd02
gnu: irssi: Update to 1.2.2.
...
* gnu/packages/irc.scm (irssi)[version]: Update to 1.2.2.
[arguments]: Set HOME environment variable to current working directory before
'check' phase.
2020-01-08 10:21:46 +03:00
Oleg Pykhalov
8daa832661
gnu: iperf: Update to 3.7.
...
* gnu/packages/networking.scm (iperf): Update to 3.7.
2020-01-08 10:21:46 +03:00
Oleg Pykhalov
73656471a4
gnu: neofetch: Update to 6.1.0-1.501d6b7.
...
Fix Guix ascii not shown.
* gnu/packages/admin.scm (neofetch): Update to 6.1.0-1.501d6b7.
2020-01-08 10:21:45 +03:00
Oleg Pykhalov
ce0ca7625e
gnu: inxi-minimal: Update to 3.0.37-1.
...
* gnu/packages/admin.scm (inxi-minimal): Update to 3.0.37-1.
2020-01-08 10:21:45 +03:00
Oleg Pykhalov
e75221fd28
gnu: tome4: Update to 1.6.6.
...
* gnu/packages/games.scm (tome4): Update to 1.6.6.
2020-01-08 10:21:45 +03:00
Oleg Pykhalov
a66ee82a05
services: Add pulseaudio service.
...
* gnu/services/sound.scm (pulseaudio-environment): New procedure.
(pulseaudio-service-type): New variable.
* doc/guix.texi (Sound Services): Document it.
2020-01-08 10:21:45 +03:00
Alex ter Weele
9f5cb517d0
gnu: harmonist: Update to 0.3.0.
...
* gnu/packages/games.scm (harmonist): Update to 0.3.0.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2020-01-08 04:37:23 +01:00
Tobias Geerinckx-Rice
bb335e84ed
gnu: exim: Build (more) reproducibly.
...
* gnu/packages/mail.scm (exim)[arguments]: Add a ‘build-reproducibly’
phase.
2020-01-08 02:26:18 +01:00
Tobias Geerinckx-Rice
c9b99e88f5
gnu: exim: Use XZ-compressed sources.
...
* gnu/packages/mail.scm (exim)[source]: Fetch the .tar.xz archive.
2020-01-08 02:26:17 +01:00
Tobias Geerinckx-Rice
cda8250b20
gnu: exim: Update to 4.93.0.4.
...
* gnu/packages/mail.scm (exim): Update to 4.93.0.4.
[source]: Add /fixes/ URI to the list.
[inputs]: Use gnutls/dane variant.
[native-inputs]: Add pkg-config.
[arguments]: Set USE_GNUTLS* variables to use the new inputs..
Add CC=gcc to #:make-flags.
2020-01-08 02:26:17 +01:00
Tobias Geerinckx-Rice
a56430442e
gnu: system-config-printer: Use new upstream URI.
...
* gnu/packages/gnome.scm (system-config-printer)[source]: Switch to
the OpenPrinting repository.
2020-01-08 02:26:17 +01:00
Tobias Geerinckx-Rice
256f9b5170
gnu: gambit-c: Update to 4.9.3.
...
* gnu/packages/scheme.scm (gambit-c): Update to 4.9.3.
2020-01-08 02:26:17 +01:00
Tobias Geerinckx-Rice
ba7cd0fd83
gnu: cloc: Update to 1.84.
...
* gnu/packages/code.scm (cloc): Update to 1.84.
2020-01-08 02:26:17 +01:00
Tobias Geerinckx-Rice
8e8d45e6ac
Revert "bootloader: grub: Add gfxmode (resolution) override."
...
This reverts commit a23091880d .
It causes ‘guix pull’ to fail: <https://paste.debian.net/plain/1125061 >.
2020-01-07 23:31:44 +01:00
Jan Nieuwenhuizen
a23091880d
bootloader: grub: Add gfxmode (resolution) override.
...
* gnu/bootloader/grub.scm (<grub-theme>): Add `gfxmode' entry.
(eye-candy): Use it.
* doc/guix.texi (Bootloader Configuration): Document it.
2020-01-07 21:26:28 +01:00
Alexandru-Sergiu Marton
451775a567
gnu: Add ghc-pointedlist.
...
* gnu/packages/haskell-xyz.scm (ghc-pointedlist): New variable.
Signed-off-by: Brett Gilio <brettg@gnu.org >
2020-01-07 13:33:36 -06:00
Alexandru-Sergiu Marton
4639fa325c
gnu: Add ghc-pipes.
...
* gnu/packages/haskell-xyz.scm (ghc-pipes): New variable.
Signed-off-by: Brett Gilio <brettg@gnu.org >
2020-01-07 13:26:44 -06:00
Brett Gilio
3c9e86ae8b
gnu: coq-stdpp: Reword comment.
...
* gnu/packages/coq.scm (coq-stdpp)[arguments]: Reword comment about tests
being executed during build phase, to read more fluently.
2020-01-07 13:03:07 -06:00
Brett Gilio
d2884b7fef
gnu: coq-stdpp: Update to 1.2.1.
...
* gnu/packages/coq.scm (coq-stdpp): Update to 1.2.1.
[arguments]: Remove redundant COQLIB variable.
2020-01-07 13:02:36 -06:00
Brett Gilio
14af514bf0
gnu: coq-bignums: Fix comment spacing.
...
* gnu/packages/coq.scm (coq-bignums)[arguments]: Fix comment spacing after
disabling test phase.
2020-01-07 13:01:53 -06:00
Brett Gilio
8ace204543
gnu: coq-bignums: Update to 8.10.0.
...
* gnu/packages/coq.scm (coq-bignums): Update to 8.10.0.
2020-01-07 13:01:34 -06:00
Marius Bakke
d2e1b2dac7
gnu: appstream-glib: Fix test failure.
...
* gnu/packages/patches/appstream-glib-2020.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/glib.scm (appstream-glib)[source](patches): New field.
2020-01-07 18:18:12 +01:00
Marius Bakke
1ecadbfe60
gnu: libgeotiff: Do not build static library.
...
* gnu/packages/geo.scm (libgeotiff)[arguments]: Add "--disable-static" in
#:configure-flags.
2020-01-07 18:18:12 +01:00
Marius Bakke
517c55381e
gnu: libgeotiff: Propagate proj.
...
* gnu/packages/geo.scm (libgeotiff)[inputs]: Move PROJ ...
[propagated-inputs]: ... here. New field.
2020-01-07 18:18:12 +01:00
Marius Bakke
2536027cc5
gnu: colord: Adjust inputs.
...
* gnu/packages/gnome.scm (colord)[native-inputs]: Remove unused LIBTOOL and
INTLTOOL. Add previously propagated GETTEXT-MINIMAL.
2020-01-07 18:18:12 +01:00
Marius Bakke
07b10725da
gnu: ungoogled-chromium: Lower resource limits.
...
* gnu/packages/chromium.scm (ungoogled-chromium)[arguments]: Decrease maximum
number of open files from 4096 to 2048.
2020-01-07 18:18:12 +01:00
Marius Bakke
f8157512a3
gnu: ungoogled-chromium: Do not set LD_LIBRARY_PATH in wrapper.
...
* gnu/packages/chromium.scm (ungoogled-chromium)[arguments]: Add phase
'add-absolute-references'. Don't wrap with LD_LIBRARY_PATH.
2020-01-07 18:18:12 +01:00
Marius Bakke
be23ce2c7c
gnu: Ceph: Update to 14.2.5.
...
This also removes test-specific code to ease the Python 3 transition, and
because it is mostly obsolete.
* gnu/packages/patches/ceph-detect-rocksdb.patch,
gnu/packages/patches/ceph-skip-unittest_blockdev.patch,
gnu/packages/patches/ceph-skip-collect-sys-info-test.patch: Delete files.
* gnu/packages/patches/ceph-boost-compat.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/storage.scm (ceph): Update to 14.2.5.
[source](patches): Adjust as above.
[source](snippet): Remove bundled "fmt", "c-ares" and "googletest".
[arguments]: Add "-DCMAKE_INSTALL_DATADIR" and "-DWITH_RADOSGW_AMQP_ENDPOINT"
and "-DWITH_TESTS" in #:configure-flags; remove "-DWITH_XIO". Remove obsolete
substitutions. Don't install 'ceph-disk' and 'ceph-detect-init', which no
longer exists. Remove test-specific substitutions and phases. Adjust for
Python 2->3 in inputs.
[native-inputs]: Remove INETUTILS, JQ, PERL, XMLSTARLET, PYTHON2-CRAM,
PYTHON2-VIRTUALENV, PYTHON2-CONFIGOBJ, PYTHON2-COVERAGE, PYTHON2-DISCOVER,
PYTHON2-FLAKE8, PYTHON2-MOCK, PYTHON2-NOSE, PYTHON2-PIP, PYTHON2-PYTEST,
PYTHON2-SUBUNIT PYTHON2-TESTREPOSITORY, PYTHON2-TESTTOOLS, and PYTHON2-TOX.
[inputs]: Change from BOOST to BOOST-WITH-PYTHON3. Remove GPTFDISK, PARTED,
PYTHON-2, PYTHON2-SIX, PYTHON2-PRETTYTABLE, and PYTHON-3. Add PYTHON-SIX,
PYTHON-PRETTYTABLE, PYTHON-WRAPPER, LIBCAP-NG, LIBNL, NCURSES, and RDMA-CORE.
2020-01-07 18:18:11 +01:00
Marius Bakke
2316f027f8
gnu: rocksdb: Update to 6.5.2.
...
* gnu/packages/databases.scm (rocksdb): Update to 6.5.2.
2020-01-07 18:18:11 +01:00
Marius Bakke
aa8f64b250
gnu: python-patsy: Update to 0.5.1.
...
* gnu/packages/statistics.scm (python-patsy): Update to 0.5.1.
[source](uri): Adjust for new archive.
[native-inputs]: Remove UNZIP.
2020-01-07 18:18:11 +01:00
Marius Bakke
3293fad24a
gnu: googletest: Update to 1.10.0.
...
* gnu/packages/check.scm (googletest): Update to 1.10.0.
(googletest-1.8): New public variable.
* gnu/packages/audio.scm (cli-visualizer)[inputs]: Change from GOOGLETEST to GOOGLETEST-1.8.
* gnu/packages/serialization.scm (msgpack)[native-inputs]: Likewise.
2020-01-07 18:18:11 +01:00
Mark H Weaver
9020252114
gnu: icecat: Update to 68.4.0-guix0-preview1 [security fixes].
...
Includes fixes for CVE-2019-17015, CVE-2019-17016, CVE-2019-17017,
CVE-2019-17021, CVE-2019-17022, and CVE-2019-17024.
* gnu/packages/gnuzilla.scm (%icecat-version, %icecat-build-id): Update.
(icecat-source): Update hash of upstream firefox source tarball,
'upstream-icecat-base-version', and commit and hash of gnuzilla checkout.
* gnu/packages/patches/icecat-makeicecat.patch: Adapt to upstream changes.
2020-01-07 12:06:34 -05:00
Marius Bakke
6d15516dc6
Merge branch 'staging'
2020-01-07 17:43:20 +01:00
David Wilson
0ed75a5f06
gnu: vimb: Update to 3.6.0.
...
* gnu/packages/web-browsers.scm (vimb): Update to 3.6.0.
2020-01-07 08:03:29 -08:00
Danny Milosavljevic
fa0c1a21c9
gnu: sdl-mixer: Fix fluidsynth in dependents.
...
Fixes <https://bugs.gnu.org/39008 >.
Reported by Pierre Neidhardt <mail@ambrevar.xyz >.
* gnu/packages/sdl.scm (sdl-mixer)[arguments]<#:phases>[fix-fluidsynth]: New
phase.
2020-01-07 16:50:48 +01:00
Ludovic Courtès
058d0251bd
download, git: Refer to the right module in 'module-use!' call.
...
This fixes a regression introduced in
6a7c4636d4 .
* guix/build/download.scm (load-gnutls): Call 'resolve-module' instead
of 'current-module'.
* guix/git.scm (load-git-submodules): Likewise.
2020-01-07 12:25:09 +01:00
Ludovic Courtès
7a0836cffd
More module autoload changes.
...
This is a followup to 6a7c4636d4 .
* guix/scripts/build.scm: Adjust #:autoload clauses.
* guix/scripts/gc.scm: Likewise.
2020-01-07 12:25:09 +01:00
Konrad Hinsen
e6de152dc1
gnu: lapack: Update to 3.9.0.
...
* gnu/packages/maths.scm (lapack): Update to 3.9.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-07 12:25:09 +01:00
Brett Gilio
cd5406effa
gnu: coq-equations: Update to 1.2.1.
...
* gnu/packages/coq.scm (coq-equations): Update to 1.2.1.
[arguments]: Replace configure phase to run configure shell script. Remove
redundant COQLIB.
2020-01-06 21:08:19 -06:00
Brett Gilio
8f1216552c
gnu: coq-interval: Update to 3.4.1.
...
* gnu/packages/coq.scm (coq-interval): Update to 3.4.1.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
[native-inputs]: Add autoconf and automake for remake.
2020-01-06 21:07:39 -06:00
Brett Gilio
c022809641
gnu: coq-coquelicot: Truncate home-page.
...
* gnu/packages/coq.scm (coq-coquelicot)[home-page]: Truncate home-page.
2020-01-06 21:07:15 -06:00
Brett Gilio
d481db8baf
gnu: coq-coquelicot: Update to 3.0.3.
...
* gnu/packages/coq.scm (coq-coquelicot): Update to 3.0.3.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
[native-inputs]: Add autoconf and automake.
2020-01-06 21:06:44 -06:00
Brett Gilio
a61fe4c04e
gnu: coq-gappa: Use HTTPS home page URI.
...
* gnu/packages/coq.scm (coq-gappa)[home-page]: Use HTTPS URI.
2020-01-06 21:06:16 -06:00
Brett Gilio
f24dc27149
gnu: coq-gappa: Update to 1.4.2.
...
* gnu/packages/coq.scm (coq-gappa): Update to 1.4.2.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
[native-inputs]: Add autoconf and automake for remake, as well as campl5 for
parsing.
[propagated-inputs]: coq-gabba now depends on coq-flocq.
[arguments]: Temporarily disable check chase until error resolution is identified.
2020-01-06 21:05:49 -06:00
Brett Gilio
59265e5ff4
gnu: coq-flocq: Use HTTPS home page URI.
...
* gnu/packages/coq.scm (coq-flocq)[home-page]: Use HTTPS URI.
2020-01-06 21:05:08 -06:00
Brett Gilio
346825571c
gnu: coq-flocq: Update to 3.2.0.
...
* gnu/packages/coq.scm (coq-flocq): Update to 3.2.0.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
[native-inputs]: Add autoconf and automake for remake.
[arguments]: Add remove-failing-examples phase to work around union error.
2020-01-06 21:04:20 -06:00
Brett Gilio
a5727da96a
gnu: coq: Reword several comments.
...
* gnu/packages/coq.scm (coq): Reword several comments to improve readability.
2020-01-06 21:03:21 -06:00
Brett Gilio
1ac4004502
gnu: coq: Update to 8.10.2.
...
* gnu/packages/coq.scm (coq): Update to 8.10.2.
[inputs]: Replace lablgtk with lablgtk3.
[arguments]: Remove remove-lablgtk-references phase, as it no longer appears
to be necessary.
2020-01-06 21:02:34 -06:00
Brett Gilio
d977e24364
gnu: Add lablgtk3.
...
* gnu/packages/ocaml.scm (lablgtk3): New variable.
Co-authored-by: Julien Lepiller <julien@lepiller.eu >.
2020-01-06 20:57:28 -06:00
Brett Gilio
136919ba49
gnu: Add ocaml-cairo2.
...
* gnu/packages/ocaml.scm (ocaml-cairo2): New variable.
Co-authored-by: Julien Lepiller <julien@lepiller.eu >.
2020-01-06 20:56:19 -06:00
Oleg Pykhalov
c4970c53a6
gnu: emacs-treemacs: Install icons and scripts.
...
Reported by Christopher Howard <christopher@alaskasi.com >.
* gnu/packages/emacs-xyz.scm (emacs-treemacs)[inputs]: Add 'python'.
[arguments]: Add 'patch-paths' and 'install-data' phases.
2020-01-07 03:11:58 +03:00
Pierre Neidhardt
90a31c73b3
gnu: next: Update to 1.4.0.
...
* gnu/packages/web-browsers.scm (next): Update to 1.4.0.
2020-01-06 21:13:31 +01:00
Nicolas Goaziou
8b03b1a185
gnu: supertux: Fix description.
...
* gnu/packages/games.scm (supertux)[description]: Remove unnecessary words in
GNU Guix.
2020-01-06 18:28:59 +01:00
Nicolas Goaziou
54a8025927
gnu: supertux: Update to 0.6.1.
...
* gnu/packages/games.scm (supertux): Update to 0.6.1.
2020-01-06 18:27:52 +01:00
Pierre Neidhardt
743cebb6b0
gnu: Add emacs-helm-clojuredocs.
...
* gnu/packages/emacs-xyz.scm (emacs-helm-clojuredocs): New variable.
2020-01-06 17:50:08 +01:00
Pierre Neidhardt
41a3ace54e
gnu: Add emacs-edn.
...
* gnu/packages/emacs-xyz.scm (emacs-edn): New variable.
2020-01-06 17:50:08 +01:00
kanichos@yandex.ru
83460433b9
activation: Check whether /proc/sys/kernel/modprobe exists.
...
* gnu/build/activation.scm (activate-modprobe): Check whether
/proc/sys/kernel/modprobe exists before writing to it.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2020-01-06 16:31:54 +01:00
Jakub Kądziołka
6a6b8a3fcf
gnu: python-py3status: Fix patch of file path
...
* gnu/packages/python-xyz.scm (python-py3status): Fix patch of file
path.
[arguments]: Replace single-quotes with double-quotes so that the
regex matches again. The "replace-with" value is not changed as it's
not necessary and would introduce escaping noise.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2020-01-06 16:31:54 +01:00
kanichos@yandex.ru
5757c641f2
gnu: gnome-characters: Wrap program to provide the necessary Typelib files.
...
* gnu/packages/gnome.scm (gnome-characters)[arguments]: Add #:phases
with a 'wrap' phase.
[inputs]: Add GNOME-DESKTOP.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2020-01-06 16:31:54 +01:00
kanichos@yandex.ru
562b4e47cd
gnu: ibus-rime: Record the right file name in "rime.xml".
...
* gnu/packages/ibus.scm (ibus-rime)[arguments]: Add 'fix-file-names' phase.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2020-01-06 16:31:54 +01:00
Ludovic Courtès
6a7c4636d4
Adjust module autoloads.
...
In Guile < 2.9.7, autoloading a module would give you access to all its
bindings. In future versions, autoloading a module gives access only to
the listed bindings, as per #:select (see <https://bugs.gnu.org/38895 >).
This commit adjusts autoloads to the new semantics, allowing Guix to be
built with Guile 2.9.7/2.9.8.
* guix/build/download.scm <top level>: Remove call to 'module-autoload!'.
(load-gnutls): New procedure.
(tls-wrap): Call it.
* guix/git.scm <top level>: Remove call to 'module-autoload!'.
(load-git-submodules): New procedure.
(update-submodules): Call it instead of 'resolve-interface'.
* gnu/bootloader/grub.scm: Replace #:autoload with #:use-module.
* gnu/packages.scm: Likewise.
* gnu/packages/ssh.scm: Likewise.
* gnu/packages/tex.scm: Likewise.
* gnu/services/cuirass.scm: Likewise.
* gnu/services/mcron.scm: Likewise.
* guix/lint.scm: Augment list of bindings in #:autoload.
* guix/scripts/build.scm: Likewise.
* guix/scripts/gc.scm: Likewise.
* guix/scripts/pack.scm: Likewise.
* guix/scripts/publish.scm: Likewise.
* guix/scripts/pull.scm: Likewise.
* guix/utils.scm: Remove unnecessary #:autoload clauses; replace one
of them with #:use-module.
2020-01-06 16:31:54 +01:00
Ludovic Courtès
9961cde383
gnu: guix: Ensure the bootstrap binary tarballs aren't GC'd.
...
Previously, they could be GC'd by 'tests/guix-gc.sh' for instance, and
thus lacking by the time 'tests/guix-daemon.sh' runs, thereby leading to
a test failure.
Reported by Gábor Boskovits.
* gnu/packages/package-management.scm (guix)[arguments]: In
'copy-bootstrap-guile' phase, change 'intern' to register a GC root.
2020-01-06 16:31:54 +01:00
Pierre Neidhardt
3a695c01d7
gnu: Add emacs-helm-cider.
...
* gnu/packages/emacs-xyz.scm (emacs-helm-cider): New variable.
2020-01-06 14:49:18 +01:00
Efraim Flashner
251ce98c49
gnu: lua-luv: Update to 1.32.0-0.
...
* gnu/packages/lua.scm (lua-luv): Update to 1.32.0-0.
2020-01-06 15:01:29 +02:00
Efraim Flashner
6298f327db
gnu: lua5.1-sec: Update to 0.9.
...
* gnu/packages/lua.scm (lua5.1-sec): Update to 0.9.
2020-01-06 14:48:06 +02:00
Efraim Flashner
3095616bbf
gnu: lua-filesystem: Update to 1.7.0.2.
...
* gnu/packages/lua.scm (lua-filesystem): Update to 1.7.0.2.
2020-01-06 14:44:27 +02:00
Efraim Flashner
5545abecd2
gnu: make-lua-socket: Don't use unstable tarball.
...
* gnu/packages/lua.scm (make-lua-socket)[source]: Download using
git-fetch.
2020-01-06 14:33:21 +02:00
Efraim Flashner
bf73eb142b
gnu: lua-lgi: Don't use unstable tarball.
...
* gnu/packages/lua.scm (lua-lgi)[source]: Download using git-fetch.
2020-01-06 14:31:20 +02:00
Efraim Flashner
b63785ec79
gnu: make-lua-sec: Don't use unstable tarball.
...
* gnu/packages/lua.scm (make-lua-sec)[source]: Download using git-fetch.
2020-01-06 14:29:37 +02:00
Efraim Flashner
f2dc5f5bb6
gnu: make-lua-filesystem: Don't use unstable tarball.
...
* gnu/packages/lua.scm (make-lua-filesystem)[source]: Download using
git-fetch. Parameterize commit version.
2020-01-06 14:26:19 +02:00
Timotej Lazar
769b96b62e
gnu: sdl-mixer: Describe runtime configuration.
...
* gnu/packages/sdl.scm (sdl-mixer)[description]: Add information about runtime
MIDI playback options.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-06 12:40:29 +01:00
Efraim Flashner
c27710859c
system: linux-container: Recommend guix container.
...
* gnu/system/linux-container.scm (container-script)[script]: Recommend
using 'guix container' to get a shell inside the running container.
2020-01-06 12:20:21 +02:00
Efraim Flashner
837da4d36e
gnu: python-anaconda-client: Don't use unstable tarball.
...
* gnu/packages/package-management.scm (python-anaconda-client)[source]:
Download using git-fetch.
2020-01-06 12:20:20 +02:00
Efraim Flashner
6def31e8fd
gnu: python-conda: Don't use unstable tarball.
...
* gnu/packages/package-management.scm (python-conda)[source]: Download
using git-fetch.
[arguments]: Adjust custom 'remove-failing-tests to make a file writable.
2020-01-06 12:20:20 +02:00
Efraim Flashner
f711b71bd5
gnu: python2-unicodecsv: Don't use unstable tarball.
...
* gnu/packages/python-xyz.scm (python2-unicodecsv)[source]: Download
using git-fetch.
2020-01-06 12:20:20 +02:00
Efraim Flashner
6b61fc47e2
gnu: python2-numpy@1.8: Don't use unstable tarball.
...
* gnu/packages/python-xyz.scm (python2-numpy-1.8)[source]: Download
using git-fetch.
2020-01-06 12:20:20 +02:00
Oleg Pykhalov
5912aa4d0e
gnu: Add emacs-lsp-lua-emmy.
...
* gnu/packages/emacs-xyz.scm (emacs-lsp-lua-emmy): New variable.
2020-01-06 13:02:41 +03:00
Oleg Pykhalov
f2bb968e47
gnu: Add emacs-lsp-java.
...
* gnu/packages/emacs-xyz.scm (emacs-lsp-java): New variable.
2020-01-06 12:56:02 +03:00
Oleg Pykhalov
5097ce0ebd
gnu: Add emacs-treemacs-extra.
...
* gnu/packages/emacs-xyz.scm (emacs-treemacs-extra): New variable.
2020-01-06 12:56:02 +03:00
Oleg Pykhalov
83b7917a2d
gnu: Add emacs-treemacs.
...
* gnu/packages/emacs-xyz.scm (emacs-treemacs): New variable.
2020-01-06 12:56:01 +03:00
Oleg Pykhalov
e916a202a1
gnu: Add emacs-pfuture.
...
* gnu/packages/emacs-xyz.scm (emacs-pfuture): New variable.
2020-01-06 12:56:01 +03:00
Oleg Pykhalov
0daf7e263a
gnu: swh-plugins: Update home-page to new uri.
...
* gnu/packages/audio.scm (swh-plugins)[home-page]: Update to new uri.
2020-01-06 12:56:01 +03:00
Efraim Flashner
263ea4ebc3
gnu: python-axolotl: Don't use unstable tarball.
...
* gnu/packages/python-crypto.scm (python-axolotl)[source]: Download
using git-fetch.
2020-01-06 11:49:37 +02:00
Efraim Flashner
2ff17f06e7
gnu: perl-net-patricia: Fix build.
...
* gnu/packages/networking.scm (perl-net-patricia)[arguments]: Add custom
phase to prevent linking with 'nsl'.
2020-01-06 11:43:23 +02:00
Efraim Flashner
e5d885c86a
gnu: perl-ole-storage-lite: Update to 0.20.
...
* gnu/packages/perl.scm (perl-ole-storage-lite): Update to 0.20.
2020-01-06 11:39:30 +02:00
Efraim Flashner
ac0ea38c2c
gnu: python-whatever: Don't use unstable tarball.
...
* gnu/packages/python-xyz.scm (python-whatever)[source]: Download using
git-fetch.
2020-01-06 09:39:24 +02:00
Efraim Flashner
26bb7fc627
gnu: python-urwidtrees: Don't use setuptools.
...
* gnu/packages/python-xyz.scm (python-urwidtrees)[arguments]: Build
without setuptools.
2020-01-06 09:35:27 +02:00
Efraim Flashner
c83640728c
gnu: python-urwidtrees: Don't use unstable tarball.
...
* gnu/packages/python-xyz.scm (python-urwidtrees)[source]: Download
using git-fetch.
2020-01-06 09:34:36 +02:00
Efraim Flashner
957c683354
gnu: python-mwclient: Update to 0.10.0.
...
* gnu/packages/python-xyz.scm (python-mwclient): Update to 0.10.0.
[source]: Download using git-fetch.
[propagated-inputs]: Remove python-requests.
[native-inputs]: Remove python-pytest-pep8, python-pytest-cov. Add
python-pytest-runner.
2020-01-06 09:15:33 +02:00
Efraim Flashner
a9722d0dbf
gnu: python-jsonpatch-0.4: Don't use unstable tarball.
...
* gnu/packages/python-xyz.scm (python-jsonpatch-0.4)[source]: Download
using git-fetch.
2020-01-06 09:03:17 +02:00
Efraim Flashner
854c5c9565
gnu: python-jsonpatch: Don't use unstable tarball.
...
* gnu/packages/python-xyz.scm (python-jsonpatch)[source]: Download using
git-fetch.
2020-01-06 09:01:41 +02:00
Efraim Flashner
11e46326e3
gnu: python-docopt: Don't use unstable tarball.
...
* gnu/packages/python-xyz.scm (python-docopt)[source]: Download using
git-fetch.
2020-01-06 08:58:54 +02:00
Brett Gilio
1792a70655
gnu: libtgvoip: Fix failing build on i686-linux.
...
* gnu/local.mk (libtgvoip): Add patches for libtgvoip-disable-sse2.patch
and libtgvoip-disable-webrtc.patch
* gnu/packages/patches/libtgvoip-disable-sse2.patch: New file.
* gnu/packages/patches/libtgvoip-disable-webrtc.patch: New file.
* gnu/packages/telephony.scm (libtgvoip): Fix building on i686-linux.
[source]: Reference patches for correcting failing build on i686-linux
architecture.
Reported-by: Diego Nicola Barbato <dnbarbato@posteo.de >
Fixes <bugs.gnu.org/38944>.
2020-01-05 19:31:07 -06:00
Brett Gilio
5a0d73911c
gnu: libtgvoip: Update to 2.4.4.
...
* gnu/packages/telephony.scm (libtgvoip): Update to 2.4.4.
[source]: Change source URI to reflect upstream.
[inputs]: Add pulseaudio and alsa-lib.
This change corrects a bug, and allows for cross-compilation on armhf architectures.
2020-01-05 19:03:07 -06:00
Brett Gilio
641981d3af
gnu: coq-mathcomp: Update to 1.10.0.
...
* gnu/packages/coq.scm (coq-mathcomp): Update to 1.10.0.
[arguments]: Modify comment about tests. Remove redundant setting of COQLIB
environment variable.
2020-01-05 17:06:02 -06:00
Ricardo Wurmus
537d08271e
gnu: agi-bio: Update hash.
...
The previous hash corresponded to the previous commit.
* gnu/packages/opencog.scm (agi-bio)[source]: Update hash.
2020-01-05 21:38:59 +01:00
Ricardo Wurmus
62af74b714
gnu: Add agi-bio.
...
* gnu/packages/opencog.scm (agi-bio): New variable.
2020-01-05 20:45:22 +01:00
Ricardo Wurmus
e088a010a2
gnu: Add cl-pdf.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-pdf, ecl-cl-pdf, cl-pdf): New variables.
2020-01-05 20:45:22 +01:00
Ricardo Wurmus
5dfde3f586
gnu: Add cl-flexichain.
...
* gnu/packages/lisp-xyz.scm (sbcl-flexichain, ecl-flexichain, cl-flexichain):
New variables.
2020-01-05 20:45:22 +01:00
Ricardo Wurmus
7c62d38465
gnu: Add cl-spatial-trees.
...
* gnu/packages/lisp-xyz.scm (sbcl-spatial-trees, ecl-spatial-trees,
cl-spatial-trees): New variables.
2020-01-05 20:45:22 +01:00
Ricardo Wurmus
94c621bdc0
gnu: Add cl-vectors.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-vectors, ecl-cl-vectors, cl-vectors): New
variables.
2020-01-05 20:45:22 +01:00
Ricardo Wurmus
0dbd7c3c0b
gnu: Add cl-paths-ttf.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-paths-ttf, ecl-cl-paths-ttf,
cl-paths-ttf): New variables.
2020-01-05 20:45:22 +01:00
Ricardo Wurmus
b571dfdb46
gnu: Add cl-paths.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-paths, ecl-cl-paths, cl-paths): New
variables.
2020-01-05 20:45:22 +01:00
Ricardo Wurmus
64997728ad
gnu: Add cl-aa.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-aa, ecl-cl-aa, cl-aa): New variables.
2020-01-05 20:45:21 +01:00
Tobias Geerinckx-Rice
e13fc37902
gnu: stellarium: Update to 0.19.3.
...
* gnu/packages/astronomy.scm (stellarium): Update to 0.19.3.
2020-01-05 19:55:02 +01:00
Tobias Geerinckx-Rice
dcae4270db
gnu: file-roller: Update to 3.32.3.
...
* gnu/packages/gnome.scm (file-roller): Update to 3.32.3.
2020-01-05 19:55:02 +01:00
Efraim Flashner
71fc086ae9
services: host-name: Make service one-shot.
...
* gnu/services/base.scm (host-name-service-type): Remove 'respawn?'
keyword from shepherd-service-type, add 'one-shot?'.
2020-01-05 20:28:29 +02:00
Kei Kebreau
06c8e87224
gnu: arandr: Fix build.
...
This is a follow-up to commit 218c785850 .
[arguments]: Remove unnecessary #:python flag. Add 'wrap-gi-typelib' phase.
[inputs]: Remove python2-pygtk and add gtk+, python-pycairo, and
python-pygobject.
[native-inputs]: Replace python2-docutils with python-docutils.
2020-01-05 11:20:11 -05:00
Oleg Pykhalov
7366d83191
gnu: Add swh-plugins.
...
* gnu/packages/audio.scm (swh-plugins): New variable.
2020-01-05 17:30:14 +03:00
Christopher Baines
a8f753c293
gnu: guix-data-service: Update to 0.0.1-16.c7e3a1b.
...
* gnu/packages/web.scm (guix-data-service): Update to 0.0.1-16.c7e3a1b.
2020-01-05 14:17:59 +00:00
Timotej Lazar
ced47faaa7
gnu: sdl2-mixer: Enable opus support.
...
* gnu/packages/sdl.scm (sdl2-mixer)[inputs]: Add opusfile.
[native-inputs]: Add pkg-config.
[arguments]<#:configure-flags>: Add "--disable-music-opus-shared".
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-05 13:11:28 +01:00
Timotej Lazar
6fbf92ee78
gnu: sdl-mixer: Enable fluidsynth MIDI backend.
...
* gnu/packages/sdl.scm (sdl-mixer)[inputs]: Add fluidsynth and alphabetize.
[arguments]: Reformat.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-05 13:10:04 +01:00
Timotej Lazar
64941afcf9
gnu: sdl2-mixer: Fix configure flags.
...
Some configure options were renamed between SDL / SDL2 mixer; add new variants
to the derived package.
* gnu/packages/sdl.scm (sdl2-mixer)[arguments]: Fix flags to disable dynamic
library loading.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-05 13:09:31 +01:00
Timotej Lazar
36f1ba7bfe
gnu: sdl-mixer: Remove unused configure flag.
...
The flag --disable-music-mp3-shared is only used when building with smpeg
instead of libmad, which is linked at build time by default.
* gnu/packages/sdl.scm (sdl-mixer)[arguments]: Remove unused configure flag.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-05 13:09:16 +01:00
Timotej Lazar
5f50c2e6b1
gnu: sdl-mixer: Use correct inputs for MOD file support.
...
* gnu/packages/sdl.scm (sdl-mixer)[inputs]: Remove libmodplug.
* gnu/packages/sdl.scm (sdl2-mixer)[inputs]: Add libmodplug.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-05 13:08:45 +01:00
David Trudgian
7aa28eb339
file-systems: Handle LUKS2 header.
...
* gnu/build/file-systems.scm (luks-superblock?): Handle LUKS2 header.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org >
2020-01-05 11:14:00 +01:00
Mark H Weaver
7f16122efd
gnu: linux-libre: Update to 5.4.8.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.8.
(linux-libre-5.4-pristine-source): Update hash.
2020-01-05 03:43:09 -05:00
Mark H Weaver
d6baede01b
gnu: linux-libre@4.19: Update to 4.19.93.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.93.
(linux-libre-4.19-pristine-source): Update hash.
2020-01-05 03:42:35 -05:00
Mark H Weaver
b307b587f6
gnu: linux-libre@4.14: Update to 4.14.162.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.162.
(linux-libre-4.14-pristine-source): Update hash.
2020-01-05 03:41:57 -05:00
Mark H Weaver
1837bdcd9f
gnu: linux-libre@4.9: Update to 4.9.208.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.208.
(linux-libre-4.9-pristine-source): Update hash.
2020-01-05 03:41:13 -05:00
Mark H Weaver
c3fd83aa3a
gnu: linux-libre@4.4: Update to 4.4.208.
...
* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.208.
(linux-libre-4.4-pristine-source): Update hash.
2020-01-05 03:40:05 -05:00
Tobias Geerinckx-Rice
fd885160fc
gnu: guix: Update to f38eabe.
...
* gnu/packages/package-management.scm (guix): Update to f38eabe .
2020-01-05 04:58:47 +01:00
Björn Höfling
5664a4712c
gnu: dtc: Use Python 3 instead of Python 2.
...
* gnu/packages/bootloaders.scm (dtc)[inputs]: Use python instead of python-2.
2020-01-05 02:41:29 +01:00
Tobias Geerinckx-Rice
f38eabe952
gnu: ncompress: Update to 4.2.4.6.
...
* gnu/packages/compression.scm (ncompress): Update to 4.2.4.6.
* gnu/packages/patches/ncompress-fix-softlinks.patch: Adjust.
2020-01-05 02:40:07 +01:00
Tobias Geerinckx-Rice
6925c85573
gnu: cppcheck: Update to 1.90.
...
* gnu/packages/check.scm (cppcheck): Update to 1.90.
2020-01-05 02:40:07 +01:00
Tobias Geerinckx-Rice
4a1a4354c8
doc: Add JFS to Guix System-supported file systems.
...
* doc/guix.texi (Keyboard Layout and Networking and Partitioning):
Note JFS support.
2020-01-05 02:40:07 +01:00
Tobias Geerinckx-Rice
8fec416cec
installer: Add JFS support.
...
* gnu/installer/newt/partition.scm (run-fs-type-page): Add ‘jfs’ to the
list box.
* gnu/installer/parted.scm (user-fs-type-name, user-fs-type->mount-type)
(partition-filesystem-user-type): Add ‘jfs’ mapping
(create-jfs-file-system): New procedure.
(format-user-partitions): Use it.
* gnu/installer.scm (set-installer-path): Add jfsutils.
2020-01-05 02:40:07 +01:00
Tobias Geerinckx-Rice
1133596b42
installer: Fix typo.
...
* gnu/installer/parted.scm (create-btrfs-file-system): Fix typo in docstring.
2020-01-05 02:40:07 +01:00
Nicolas Goaziou
42399ad7c6
gnu: Add ode.
...
* gnu/packages/game-development.scm (ode): New variable.
2020-01-05 02:13:18 +01:00
Nicolas Goaziou
45c552ec51
gnu: Add libccd.
...
* gnu/packages/game-development.scm (libccd): New variable.
2020-01-05 02:13:18 +01:00
Leo Prikler
fe0686864d
gnu: Add xcur2png.
...
* gnu/packages/xorg.scm (xcur2png): New variable.
2020-01-05 02:05:40 +01:00
Timotej Lazar
85ad4ffb25
gnu: bitlbee: Use HTTPS home page.
...
* gnu/packages/messaging.scm (bitlbee)[home-page]: Use HTTPS.
2020-01-05 02:00:24 +01:00
Marius Bakke
982eff9e84
Merge branch 'master' into staging
2020-01-03 19:41:05 +01:00
Marius Bakke
7ba6d70e45
Merge branch 'master' into staging
2019-12-18 23:07:40 +01:00
Brett Gilio
94c7f70faa
Merge branch 'master' into staging
2019-12-13 07:58:30 -06:00
Ricardo Wurmus
7711db7f4e
gnu: r-with-tests: Update to 3.6.2.
...
* gnu/packages/statistics.scm (r-with-tests): Update to 3.6.2.
2019-12-12 14:27:29 +01:00
Marius Bakke
28b4ff244d
gnu: speexdsp: Do not build static libraries.
...
* gnu/packages/xiph.scm (speexdsp)[arguments]: Add "--disable-static" in
#:configure-flags.
2019-12-11 23:21:56 +01:00
Marius Bakke
5c1f02727e
gnu: libtheora: Do not build static libraries.
...
* gnu/packages/xiph.scm (libtheora)[arguments]: New field.
2019-12-11 23:21:56 +01:00
Marius Bakke
b134c7ba16
gnu: libvorbis: Do not build static libraries.
...
* gnu/packages/xiph.scm (libvorbis)[arguments]: Add "--disable-static" to
#:configure-flags.
2019-12-11 23:21:56 +01:00
Marius Bakke
542432e8ff
gnu: libogg: Do not build static libraries.
...
* gnu/packages/xiph.scm (libogg)[arguments]: New field.
2019-12-11 23:21:56 +01:00
Marius Bakke
e500b9d908
gnu: opus: Do not build static libraries.
...
* gnu/packages/xiph.scm (opus)[arguments]: New field.
2019-12-11 23:21:55 +01:00
Marius Bakke
371d95ebc7
gnu: libwebp: Do not build static libraries.
...
* gnu/packages/image.scm (libwebp)[arguments]: Add "--disable-static" to
#:configure-flags.
2019-12-11 23:21:55 +01:00
Marius Bakke
f6943db7d3
gnu: pcre2: Do not build static libraries.
...
* gnu/packages/pcre.scm (pcre2)[arguments]: Add "--disable-static" to
#:configure-flags.
2019-12-11 23:21:55 +01:00
Marius Bakke
eccd2c14d6
gnu: pcre2: Update to 10.34.
...
* gnu/packages/patches/pcre2-fix-jit_match-crash.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/pcre.scm (pcre2): Update to 10.34.
[source](patches): Remove.
2019-12-11 23:21:55 +01:00
Marius Bakke
f8a8984c4b
gnu: nss: Remove replacement package.
...
The merge preceding this commit ignored the 'replacement' added to nss in
commit 04b33ce205 , because the security fix is
already present in NSS 3.48. This commit removes the remaining bits.
* gnu/packages/patches/nss-CVE-2019-11745.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/nss.scm (nss/fixed): Remove variable.
2019-12-11 23:21:55 +01:00
Marius Bakke
9b601fc211
Merge branch 'master' into staging
2019-12-11 23:21:27 +01:00
Marius Bakke
939c5b2cb6
gnu: MariaDB: Do not propagate OpenSSL.
...
* gnu/packages/databases.scm (mariadb)[propagated-inputs]: Remove.
[inputs]: Add OPENSSL-1.0.
[arguments]: Add absolute references to OpenSSL in "post-install" phase.
2019-12-11 01:14:38 +01:00
Marius Bakke
3d19c77d74
gnu: at-spi2-atk: Update to 2.34.1.
...
* gnu/packages/gtk.scm (at-spi2-atk): Update to 2.34.1.
2019-12-11 01:14:38 +01:00
Marius Bakke
4ebc3339ba
gnu: at-spi2-core: Update to 2.34.0.
...
* gnu/packages/gtk.scm (at-spi2-core): Update to 2.34.0.
2019-12-11 01:14:38 +01:00
Marius Bakke
336cf4e779
gnu: atk: Update to 2.34.1.
...
* gnu/packages/gtk.scm (atk): Update to 2.34.1.
2019-12-11 01:14:38 +01:00
Marius Bakke
b5414ff4db
gnu: python-sphinx: Update to 2.2.2.
...
* gnu/packages/sphinx.scm (python-sphinx): Update to 2.2.2.
2019-12-11 01:14:38 +01:00
Marius Bakke
90076d2ce1
gnu: nss: Update to 3.48.
...
* gnu/packages/nss.scm (nss): Update to 3.48.
2019-12-11 01:14:38 +01:00
Marius Bakke
0a2c10d5cc
gnu: nspr: Update to 4.24.
...
* gnu/packages/nss.scm (nspr): Update to 4.24.
2019-12-11 01:14:38 +01:00
Marius Bakke
ed8adb2240
gnu: check: Update to 0.13.0.
...
* gnu/packages/check.scm (check): Update to 0.13.0.
2019-12-11 01:14:38 +01:00
Marius Bakke
94249ba89c
gnu: gstreamer: Update to 1.16.2.
...
* gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base, gst-plugins-good,
gst-plugins-ugly, gst-libav, python-gst): Update to 1.16.2.
(gst-plugins-bad): Likewise.
[arguments]: Remove #:make-flags.
2019-12-11 01:14:37 +01:00
Marius Bakke
99732a8f22
gnu: orc: Update to 0.4.31.
...
* gnu/packages/patches/orc-typedef-enum.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/gstreamer.scm (orc): Update to 0.4.31.
[source](patches): Remove.
2019-12-11 01:14:37 +01:00
Marius Bakke
cb669c0951
gnu: postgresql@10: Update to 10.11.
...
* gnu/packages/databases.scm (postgresql): Update to 10.11.
2019-12-11 01:14:37 +01:00
Marius Bakke
ab0cb26f1a
gnu: MariaDB: Update to 10.1.43.
...
* gnu/packages/databases.scm (mariadb): Update to 10.1.43.
[arguments]: Disable new test.
[inputs]: Add LINUX-PAM.
2019-12-11 01:14:37 +01:00
Marius Bakke
ddf31e9a49
gnu: ALSA: Update to 1.2.1.
...
* gnu/packages/linux.scm (alsa-lib): Update to 1.2.1.2.
[arguments]: New field.
(alsa-utils): Update to 1.2.1.
(alsa-plugins): Likewise.
2019-12-11 01:14:37 +01:00
Marius Bakke
3a24bf3a2a
gnu: libxkbcommon: Update to 0.9.1.
...
* gnu/packages/xdisorg.scm (libxkbcommon): Update to 0.9.1.
[build-system]: Change to MESON-BUILD-SYSTEM.
[inputs]: Add WAYLAND and WAYLAND-PROTOCOLS.
[native-inputs]: Add DOXYGEN.
[arguments]: Adjust #:configure-flags for Meson.
2019-12-11 01:14:37 +01:00
Marius Bakke
049e450162
gnu: bluez: Update to 5.52.
...
* gnu/packages/linux.scm (bluez): Update to 5.52.
2019-12-11 01:14:37 +01:00
Marius Bakke
ed05d6b242
gnu: eudev: Update to 3.2.9.
...
* gnu/packages/linux.scm (eudev): Update to 3.2.9.
2019-12-11 01:14:37 +01:00
Marius Bakke
b7d8856a7f
gnu: gtk+: Update to 3.24.13.
...
* gnu/packages/gtk.scm (gtk+): Update to 3.24.13.
2019-12-11 01:14:36 +01:00
Marius Bakke
70255a1ac2
gnu: libinput: Update to 1.14.3.
...
* gnu/packages/freedesktop.scm (libinput): Update to 1.14.3.
2019-12-11 01:14:36 +01:00
Marius Bakke
91304b7945
gnu: mesa: Update to 19.2.7.
...
* gnu/packages/patches/mesa-timespec-test-32bit.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/gl.scm (mesa): Update to 19.2.7.
[source](patches): Remove obsolete.
2019-12-11 01:14:36 +01:00
Marius Bakke
8d9d6adbab
gnu: libepoxy: Update to 1.5.4.
...
* gnu/packages/gl.scm (libepoxy): Update to 1.5.4.
2019-12-11 01:14:36 +01:00
Marius Bakke
bb14766e75
gnu: libdrm: Update to 2.4.100.
...
* gnu/packages/xdisorg.scm (libdrm): Update to 2.4.100.
2019-12-11 01:14:36 +01:00
Marius Bakke
db942cdaff
gnu: qpdf: Update to 9.1.0.
...
* gnu/packages/pdf.scm (qpdf): Update to 9.1.0.
2019-12-11 01:14:36 +01:00
Marius Bakke
ed530aeb71
gnu: imagemagick: Update to 6.9.10-78.
...
* gnu/packages/imagemagick.scm (imagemagick): Update to 6.9.10-78.
2019-12-11 01:14:36 +01:00
Marius Bakke
e0288fd80d
gnu: cups-filters: Update to 1.25.13.
...
* gnu/packages/cups.scm (cups-filters): Update to 1.25.13.
2019-12-11 01:14:36 +01:00