Ludovic Courtès
7866294e32
deduplicate: Use 'sendfile' only with file ports.
...
Fixes a regression introduced in b129026e2e .
* guix/store/deduplication.scm (dump-file/deduplicate): Use 'sendfile'
only when INPUT' is a file port.
2022-12-10 18:13:39 +01:00
Ludovic Courtès
61b7e96877
install: 'umount-cow-store' retries upon EBUSY.
...
Possibly fixes <https://issues.guix.gnu.org/59884 >.
* gnu/build/install.scm (umount*): New procedure.
(unmount-cow-store): Use it instead of 'umount'.
2022-12-10 14:34:35 +01:00
Mathieu Othacehe
1ab48edb16
installer: Detect mapped installation devices.
...
Fixes: <https://issues.guix.gnu.org/59823 >
* gnu/installer/parted.scm (mapped-device?,
mapped-device-parent-partition): New procedures.
(eligible-devices): Detect mapped installation devices using the new
procedures.
2022-12-10 11:23:27 +01:00
Ludovic Courtès
b129026e2e
deduplicate: Use 'sendfile' for small file copies.
...
* guix/store/deduplication.scm (dump-file/deduplicate): Use 'sendfile'
instead of 'dump-port'.
* tests/store-deduplication.scm ("copy-file/deduplicate, below %deduplication-minimum-size"):
New test.
2022-12-10 10:56:48 +01:00
Ludovic Courtès
591af24ade
installer: Print progress bars and such as soon as \r is read.
...
Fixes <https://issues.guix.gnu.org/59922 >.
Previously progress bars and related things would be buffered by
'run-external-command-with-line-hooks' until \n is read.
* gnu/installer/utils.scm (run-external-command-with-line-hooks): Use
'read-delimited' rather than 'get-line'. Pass 'concat as the last
argument.
(%display-line-hook): Remove.
(run-command): Use 'display' instead of '%display-line-hook'.
(%syslog-line-hook): Add "\n" when LINE doesn't end in \n.
(%installer-log-line-hook): Do not add an extra newline.
(installer-log-line): Add an extra newline.
2022-12-09 17:49:22 +01:00
Ludovic Courtès
556520a33c
services: nscd: Use nscd from 'glibc-final' on native builds.
...
This reduces the closure size of systems by removing one glibc
copy--namely (@ (gnu packages base) glibc) in addition to (@ (gnu
packages commencement) glibc-final).
* gnu/services/base.scm (<nscd-configuration>)[glibc]: Change default
value to use 'let-system' and 'canonical-package' as appropriate.
2022-12-09 16:43:25 +01:00
Ludovic Courtès
755c4b496e
system: Remove unused yggdrasil OS template.
...
This file was added in fe1cd098d2 but it's
not referenced from anywhere, not even gnu/local.mk. Furthermore, we
don't normally add full OS examples for the purposes of illustrating the
use of a single service.
* gnu/system/examples/yggdrasil.tmpl: Remove.
2022-12-09 16:40:53 +01:00
Ludovic Courtès
0406df0b9b
environment: '-C' doesn't throw when the NSS is dysfunctional.
...
Previously, if the name service switch was dysfunctional, as can happen
on foreign distros lacking nscd, "guix shell -C" would crash with a
backtrace on the uncaught 'getpwuid' exception. To address that, catch
the exception and deal with it gracefully.
Reported by remsd1 on #guix.
* guix/scripts/environment.scm (launch-environment/container): Wrap
'getpwuid' call in 'false-if-exception'.
2022-12-09 09:59:53 +01:00
Tobias Geerinckx-Rice
416a691cff
guix-install.sh: Authorize all project build farms at once.
...
* etc/guix-install.sh (sys_authorize_build_farms):
Iterate over all hosts.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-12-09 09:59:32 +01:00
Ludovic Courtès
156a881001
services: base: Use 'match-record' instead of 'match'.
...
* gnu/services/base.scm (agetty-shepherd-service)
(mingetty-shepherd-service)
(nscd.conf-file)
(udev-shepherd-service)
(udev-etc)
(gpm-shepherd-service)
(network-set-up/linux)
(network-tear-down/linux)
(static-networking-shepherd-service)
(greetd-agreety-tty-session-command)
(greetd-agreety-tty-xdg-session-command): Use 'match-record' instead of
'match'.
(guix-accounts): Use <guix-configuration> accessors.
(udev-service-type): Use <udev-configuration> accessors.
2022-12-08 13:21:53 +01:00
Ludovic Courtès
93d37985da
home: services: Use 'match-record' instead of 'match'.
...
* gnu/home/services/mcron.scm (home-mcron-shepherd-services): Use
'match-record' instead of 'match'.
* gnu/home/services/shells.scm (home-bash-extensions): Likewise.
* gnu/home/services/xdg.scm (serialize-xdg-desktop-entry): Likewise.
2022-12-08 13:21:46 +01:00
Ludovic Courtès
883aa80b45
doc: Recommend 'match-record'.
...
* doc/contributing.texi (Data Types and Pattern Matching): Recommend
'match-record'.
2022-12-08 13:21:35 +01:00
Ludovic Courtès
754a7660a1
records: 'match-record' checks fields at macro-expansion time.
...
This allows 'match-record' to be more efficient (field offsets are
computed at compilation time) and to report unknown fields at
macro-expansion time.
* guix/records.scm (map-fields): New macro.
(define-record-type*)[rtd-identifier]: New procedure.
Define TYPE as a macro and use a separate identifier for the RTD.
(lookup-field, match-record-inner): New macros.
(match-record): Rewrite in terms of 'match-error-inner'.
* tests/records.scm ("match-record, simple")
("match-record, unknown field"): New tests.
* gnu/services/cuirass.scm (cuirass-shepherd-service): Rename 'log-file'
local variable to 'main-log-file'.
* gnu/services/getmail.scm (serialize-getmail-configuration-file): Move
after <getmail-configuration-file> definition.
2022-12-08 13:21:23 +01:00
Ludovic Courtès
a420b4f34e
services: fail2ban: Start server in the foreground.
...
Previously, we were passing '-b', thereby starting the server in the
background. Consequently the 'start' method could complete before the
server was ready to accept connections on its socket, leading to
non-deterministic test failures.
Reported by Mathieu Othacehe <othacehe@gnu.org >.
* gnu/services/security.scm (fail2ban-shepherd-service): Change
FAIL2BAN-ACTION to invoke 'fail2ban-client'.
Change 'start' method to use 'make-forkexec-constructor'; start the
server in the foreground with '-f' and pass '-x' to force execution of
the server, as done upstream in 'fail2ban.service.in'.
2022-12-06 17:49:50 +01:00
Ludovic Courtès
a508b5c778
services: fail2ban: Remove unnecessary Shepherd 'modules' field.
...
* gnu/services/security.scm (fail2ban-shepherd-service): Remove
unnecessary 'modules' field.
2022-12-06 17:07:46 +01:00
Ludovic Courtès
e45c83c397
services: fail2ban: 'stop' returns #f when the dameon is stopped.
...
* gnu/services/security.scm (fail2ban-shepherd-service): Change
FAIL2BAN-ACTION to return an 'invoke' gexp.
Adjust the shepherd 'start' and 'stop' fields accordingly. Have 'stop'
return #f on success.
2022-12-06 17:07:12 +01:00
Ludovic Courtès
fe563a87ad
gnu: texinfo, info-reader: Do not run tests when cross-compiling.
...
Fixes a regression introduced in
a3264f31df .
Reported by Mathieu Othacehe <othacehe@gnu.org >.
* gnu/packages/texinfo.scm (texinfo)[arguments]: Change #:tests? to not
run tests when cross-compiling.
2022-12-06 15:22:26 +01:00
Ludovic Courtès
9ad14196ce
image: Clarify comment.
...
* gnu/system/image.scm: Adjust comment.
2022-12-06 15:11:44 +01:00
Ludovic Courtès
6232959311
tests: docker-system: Increase image size.
...
* gnu/tests/docker.scm (run-docker-system-test)[vm]: Increase
'disk-image-size'.
2022-12-06 15:10:24 +01:00
Ludovic Courtès
f59aa79ca3
system: vm: Non-volatile 'run-vm.sh' creates a CoW image.
...
Previously, copying the image would consume a lot of space and was
I/O-intensive, to the point that the marionette connection timeout of
20s could be reached when running tests like "docker-system".
* gnu/system/vm.scm (common-qemu-options): Pass 'format=' for each
'-drive' option.
(system-qemu-image/shared-store-script)[copy-image]: New variable.
[builder]: Use it when VOLATILE? is false.
2022-12-06 15:06:35 +01:00
Maxim Cournoyer
2493de0d1a
Revert "tests: install: Fix iso-image-installer test."
...
This reverts commit 0f66ef9aa9 . e2fsprogs is
now included in the installation operating system since
34f69bc6e6ea555929ecca83ee7592f5261ff5f2, making this workaround obsolete.
Suggested-by: Ludovic Courtès <ludo@gnu.org >
2022-12-06 10:24:59 +01:00
Maxim Cournoyer
ba4aed0f1f
install: Add missing e2fsprogs utility.
...
* gnu/system/install.scm (%installer-disk-utilities): Add e2fsprogs.
Reported-by: Adam Kandur <kefironpremise@gmail.com >
2022-12-06 10:24:55 +01:00
Maxim Cournoyer
aeecd06ab9
system: Rename and move %base-packages-disk-utilities.
...
Rationale: It is only used in INSTALLATION-OS and doesn't make sense to be
used in another context, given that file systems now automatically pull their
dependencies since commit 45eac6cdf5 (services:
Add file system utilities to profile).
* gnu/system.scm (%base-packages-disk-utilities): Deprecate and rename to...
* gnu/system/install.scm (%installer-disk-utilities): ... this.
(installation-os) [packages]: Adjust accordingly.
2022-12-06 10:24:39 +01:00
Maxim Cournoyer
43e18fd6c6
system: Add e2fsprogs to %base-packages-utils.
...
Rationale: Even when not using an ext file system, the utilities provided by
e2fsprogs are useful, for example to set the copy-on-write attribute of a
Btrfs file system.
* gnu/system.scm (%base-packages-utils): Add e2fsprogs.
2022-12-06 10:23:09 +01:00
zimoun
e692cb6035
gnu: julia-documenter: Fix test suite regression.
...
* gnu/packages/julia-xyz.scm (julia-documenter)[arguments]<#:phases>:
Substitute a work around to fix the change of 'git submodule' default
behaviour introduced by Git v2.38.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-12-05 22:24:38 +01:00
Ludovic Courtès
241772d5c0
installer: Log provenance data.
...
* gnu/installer.scm (provenance-sexp): New procedure.
(installer-program)[installer-builder]: Add 'installer-log-line' call.
2022-12-05 14:57:15 +01:00
Julien Lepiller
29a09fa5e4
nls: Update translations.
...
po/packages/vi.po: New file.
po/packages/LINGUAS: Add it.
2022-12-04 23:15:02 +01:00
Maxim Cournoyer
41407fda7a
services: configuration: Rename location accessor to "source-location".
...
Fixes <https://issues.guix.gnu.org/59423 >.
* gnu/services/configuration.scm (define-configuration-helper): Rename the
accessor of the %location field from "NAME-location" to
"NAME-source-location".
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Reported-by: Pierre Langlois <pierre.langlois@gmx.com >
2022-12-04 21:47:19 +01:00
Ludovic Courtès
90612b9f1f
build: Add 'sanity-check-next.py' to the distribution.
...
Reported by Vagrant Cascadian <vagrant@debian.org >.
* Makefile.am (AUX_FILES): Add 'sanity-check-next.py'.
2022-12-03 18:50:10 +01:00
Ludovic Courtès
7ef490e3fc
Update NEWS.
2022-12-02 23:20:54 +01:00
Ludovic Courtès
1b06e77108
modules: Recognize #:declarative?.
...
This addition has become necessary since commit
54003af85c , which makes use
of #:declarative? in modules produced by 'make-config.scm'.
Reported by zimoun <zimon.toutoune@gmail.com >.
* guix/modules.scm (extract-dependencies): Recognize #:declarative?,
which was introduced in Guile 3.0.8.
2022-12-02 23:20:54 +01:00
Ludovic Courtès
047425a662
syscalls: Adjust for lack of 'libutil.so' on glibc >= 2.34.
...
This is a re-implementation of 3c8b6fd94c
done in a way that works for both glibc >= 2.34 and earlier versions.
* guix/build/syscalls.scm (syscall->procedure): When LIBRARY is true,
fall back to global symbols if (dynamic-link library) fails.
(cherry picked from commit 3f6c32a88f )
2022-12-02 14:58:26 +01:00
Ludovic Courtès
883fefe160
gnu: guix: Update to 1.4.0rc1.
2022-11-30 23:04:29 +01:00
Ludovic Courtès
020184fd39
maint: Adjust sed script from 'release' target.
...
This is a followup to fdafd40432 . This
effect would to set 'GUIX_DISPLAYED_VERSION' to the empty string.
* Makefile.am (release): Remove '/v' from sed script for
GUIX_DISPLAYED_VERSION.
2022-11-30 20:02:41 +01:00
Ludovic Courtès
1aa7ee52c6
build: Build gnu/packages/*.go in two passes.
...
This works around <https://issues.guix.gnu.org/59717 >, whereby heap
usage would go beyond what's reasonable, preventing compilation of the
'guix' package on armhf-linux.
This is a followup to ef82ba9dd9 .
* Makefile.am (MODULES_PACKAGES1, MODULES_PACKAGES): New variables.
(MODULES_PACKAGES): Define in terms of them and use :=.
(MODULES_CORE, MODULES_SYSTEM, MODULES_CLI, MODULES_PO): Define with :=.
2022-11-30 19:58:33 +01:00
Ludovic Courtès
1bc9d5222f
maint: Leave 'gcc-toolchain' out for i586-gnu.
...
This is a temporary measure to work around the fact that we're currently
lacking the necessary CPU power and human power to build everything up
to 'gcc-toolchain'.
* etc/release-manifest.scm (%base-packages/hurd): Comment out
"gcc-toolchain" for now.
2022-11-28 13:51:51 +01:00
Ludovic Courtès
459e4f2a4f
Merge commit 'master' into version-1.4.0
2022-11-28 12:26:32 +01:00
Ludovic Courtès
a3264f31df
gnu: texinfo: Disable tests on GNU/Hurd.
...
* gnu/packages/texinfo.scm (texinfo)[arguments]: Add #:tests? argument.
2022-11-28 11:45:00 +01:00
Paul A. Patience
e6bffa99b1
gnu: cl-calispel: Fix homepage URL.
...
* gnu/packages/lisp-xyz.scm (sbcl-calispel)[home-page]: Fix URL.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-28 09:34:01 +01:00
Paul A. Patience
1a4eb38bdd
gnu: Add cl-with-user-abort.
...
* gnu/packages/lisp-xyz.scm (sbcl-with-user-abort, cl-with-user-abort,
ecl-with-user-abort): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-28 09:32:10 +01:00
(unmatched-parenthesis
6f4bfc5263
gnu: Add aerc.
...
* gnu/packages/mail.scm (aerc): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-28 02:12:48 -05:00
Andrew Tropin
ffc9986ee2
gnu: calibre: Add missing python-pycryptodome dependency.
...
* gnu/packages/ebook.scm (calibre)[inputs]: Add missing python-pycryptodome
dependency.
2022-11-28 10:50:30 +04:00
Bruno Victal
59bdfbb196
gnu: mympd: Update to 10.1.3
...
* gnu/packages/mpd.scm (mympd): Update to 10.1.3.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-28 13:45:27 +08:00
Andrew Tropin
6cba399c04
gnu: telega: Use new package style.
...
* gnu/packages/emacs-xyz.scm (emacs-telega, emacs-telega-contrib): Use gexps,
remove trailing #t.
2022-11-28 09:44:00 +04:00
jgart
6fe253da9b
gnu: Add emacs-spongebob.
...
* gnu/packages/emacs-xyz.scm (emacs-spongebob): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-28 06:26:06 +01:00
jgart
0bb20a2231
gnu: Add emacs-frowny.
...
* gnu/packages/emacs-xyz.scm (emacs-frowny): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-28 06:26:06 +01:00
宋文武
efb67084b2
gnu: lxqt: Change version to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt): Use the version of liblxqt.
2022-11-28 11:23:12 +08:00
宋文武
3cb0b6f222
gnu: screengrab: Update to 2.5.0.
...
* gnu/packages/lxqt.scm (screengrab): Update to 2.5.0.
2022-11-28 11:14:01 +08:00
宋文武
23be2e56f9
gnu: qtermwidget: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (qtermwidget): Update to 1.2.0.
2022-11-28 11:14:01 +08:00
宋文武
eaff6c2491
gnu: qps: Update to 2.6.0.
...
* gnu/packages/lxqt.scm (qps): Update to 2.6.0.
2022-11-28 11:14:01 +08:00
宋文武
114d2e0080
gnu: pavucontrol-qt: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (pavucontrol-qt): Update to 1.2.0.
2022-11-28 11:14:01 +08:00
宋文武
18e53bd145
gnu: lximage-qt: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lximage-qt): Update to 1.2.0.
2022-11-28 11:14:01 +08:00
宋文武
0a03e718d2
gnu: lxqt-themes: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-themes): Update to 1.2.0.
2022-11-28 11:14:01 +08:00
宋文武
ddd7041d9f
gnu: lxqt-sudo: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-sudo): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
83c6883e87
gnu: lxqt-session: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-session): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
a5d62afcf5
gnu: lxqt-runner: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-runner): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
15f98b84d8
gnu: lxqt-qtplugin: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-qtplugin): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
01d53f86e0
gnu: lxqt-powermanagement: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-powermanagement): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
e7bdc6b56d
gnu: lxqt-policykit: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-policykit): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
5d83673f41
gnu: lxqt-panel: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-panel): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
8e4bd061e2
gnu: lxqt-openssh-askpass: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-openssh-askpass): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
c763705725
gnu: lxqt-notificationd: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-notificationd): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
e67f3e0e07
gnu: lxqt-globalkeys: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-globalkeys): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
07acbd1e40
gnu: lxqt-config: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-config): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
18545301e0
gnu: lxqt-admin: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-admin): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
a50229f564
gnu: lxqt-about: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (lxqt-about): Update to 1.2.0.
2022-11-28 11:14:00 +08:00
宋文武
ae903a2a74
gnu: qtxdg-tools: Update to 3.10.0.
...
* gnu/packages/lxqt.scm (qtxdg-tools): Update to 3.10.0.
2022-11-28 11:14:00 +08:00
宋文武
0d9fcb0ce8
gnu: lxqt-archiver: Update to 0.7.0.
...
* gnu/packages/lxqt.scm (lxqt-archiver): Update to 0.7.0.
2022-11-28 09:59:46 +08:00
宋文武
ab1e572789
gnu: qterminal: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (qterminal): Update to 1.2.0.
2022-11-28 09:59:46 +08:00
宋文武
c29d4126a8
gnu: pcmanfm-qt: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (pcmanfm-qt): Update to 1.2.0.
2022-11-28 09:59:46 +08:00
宋文武
1d8c01ef01
gnu: libfm-qt: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (libfm-qt): Update to 1.2.0.
2022-11-28 09:59:46 +08:00
宋文武
964466f696
gnu: libqtxdg: Update to 3.10.0.
...
* gnu/packages/lxqt.scm (libqtxdg): Update to 3.10.0.
2022-11-28 09:59:46 +08:00
宋文武
519f9a0995
gnu: liblxqt: Update to 1.2.0.
...
* gnu/packages/lxqt.scm (liblxqt): Update to 1.2.0.
2022-11-28 09:50:22 +08:00
宋文武
fa1985d978
gnu: lxqt-build-tools: Update to 0.12.0.
...
* gnu/packages/lxqt.scm (lxqt-build-tools): Update to 0.12.0.
2022-11-28 09:50:22 +08:00
Marius Bakke
3f56148055
gnu: kdevelop: Build with QtWebEngine instead of QtWebKit.
...
* gnu/packages/kde.scm (kdevelop)[inputs]: Change from QTWEBKIT to QTWEBENGINE.
2022-11-27 21:19:51 +01:00
Marius Bakke
13b3ae6929
gnu: libksysguard: Remove unused input.
...
* gnu/packages/kde-plasma.scm (libksysguard)[inputs]: Remove QTWEBKIT.
2022-11-27 21:19:51 +01:00
Marius Bakke
423dfac290
gnu: ktorrent: Build with QtWebEngine.
...
* gnu/packages/kde-internet.scm (ktorrent)[inputs]: Remove QTWEBKIT. Add
QTWEBENGINE-5.
2022-11-27 21:19:51 +01:00
Marius Bakke
3ecd59f08c
gnu: QtWebEngine: Propagate required dependencies.
...
* gnu/packages/qt.scm (qtwebengine-5)[inputs]: Move QTBASE-5, QTDECLARATIVE-5,
and QTWEBCHANNEL-5 ...
[propagated-inputs]: ... here.
(qtwebengine)[inputs, propagated-inputs]: Adjust accordingly.
2022-11-27 21:19:51 +01:00
Marius Bakke
a9956536f3
gnu: Add python-attrdict.
...
* gnu/packages/python-xyz.scm (python-attrdict): New variable.
2022-11-27 21:19:51 +01:00
Marius Bakke
42c59c7849
gnu: megaglest: Remove input labels.
...
* gnu/packages/games.scm (megaglest)[inputs]: Remove labels.
[arguments]: Use SEARCH-INPUT-DIRECTORY.
2022-11-27 21:19:51 +01:00
Marius Bakke
9d6b475c78
gnu: opencpn: Remove input labels.
...
* gnu/packages/geo.scm (opencpn)[native-inputs]: Remove labels.
2022-11-27 21:19:51 +01:00
Marius Bakke
5a1b2de5d3
gnu: opencpn: Update to 5.6.2.
...
* gnu/packages/geo.scm (opencpn): Update to 5.6.2.
2022-11-27 21:19:50 +01:00
Marius Bakke
50274d18dc
gnu: pwsafe: Remove input labels.
...
* gnu/packages/password-utils.scm (pwsafe)[native-inputs, inputs]: Remove
labels.
2022-11-27 21:19:50 +01:00
Marius Bakke
45144d912a
gnu: pwsafe: Update to 3.60.0.
...
* gnu/packages/password-utils.scm (pwsafe): Update to 3.60.0.
2022-11-27 21:19:50 +01:00
Marius Bakke
f837b6dbb4
gnu: imppg: Update to 0.6.5.
...
* gnu/packages/astronomy.scm (imppg): Update to 0.6.5.
2022-11-27 21:19:50 +01:00
Marius Bakke
ef51ca870f
gnu: sooperlooper: Remove input labels.
...
* gnu/packages/music.scm (sooperlooper)[inputs]: Remove labels.
[arguments]: Use SEARCH-INPUT-DIRECTORY instead of labels.
2022-11-27 21:19:50 +01:00
Marius Bakke
1fb51bd5af
gnu: sooperlooper: Update to 1.7.8.
...
* gnu/packages/music.scm (sooperlooper): Update to 1.7.8.
[source](uri): Adjust to current.
2022-11-27 21:19:50 +01:00
Marius Bakke
10351fe5d0
gnu: sooperlooper: Update home page.
...
* gnu/packages/music.scm (sooperlooper)[home-page]: Follow redirect.
2022-11-27 21:19:50 +01:00
Marius Bakke
0741dbbf8e
gnu: filezilla: Update to 3.62.2.
...
* gnu/packages/ftp.scm (filezilla): Update to 3.62.2.
2022-11-27 21:19:50 +01:00
Marius Bakke
dd2dd390e7
gnu: libfilezilla: Update to 0.39.2.
...
* gnu/packages/ftp.scm (libfilezilla): Update to 0.39.2.
2022-11-27 21:19:50 +01:00
Marius Bakke
98de78523b
gnu: libxkbcommon: Fix cross-compilation.
...
* gnu/packages/xdisorg.scm (libxkbcommon)[native-inputs]: When
cross-compiling, add PKG-CONFIG-FOR-BUILD and WAYLAND.
2022-11-27 21:19:50 +01:00
Marius Bakke
8c9656bc2f
gnu: cbqn: Remove superfluous input.
...
* gnu/packages/bqn.scm (cbqn)[native-inputs]: Remove LINUX-LIBRE-HEADERS.
2022-11-27 21:19:50 +01:00
Marius Bakke
2620b30a56
gnu: audacity: Remove superfluous input.
...
* gnu/packages/audio.scm (audacity)[inputs]: Remove LINUX-LIBRE-HEADERS, which
is implicitly available through glibc.
2022-11-27 21:19:50 +01:00
Marius Bakke
4289394e68
gnu: audacity: Remove input labels.
...
* gnu/packages/audio.scm (audacity)[native-inputs]: Remove labels.
2022-11-27 21:19:50 +01:00
Marius Bakke
ae64c4ac89
gnu: audacity: Update to 3.2.1.
...
* gnu/packages/audio.scm (audacity): Update to 3.2.1.
[source]: Switch to GIT-FETCH.
[inputs]: Remove LIBMAD. Add MPG123 and WAVPACK.
[arguments]: Add configure flag to prevent spurious dependency. Adjust
fix-cmake-rpath phase. Delete obsolete phases.
* gnu/packages/patches/audacity-ffmpeg-fallback.patch: Adjust for 3.2.1.
2022-11-27 21:19:49 +01:00
Marius Bakke
ec10258c34
gnu: ungoogled-chromium: Update to 107.0.5304.121-1.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 107.0.5304.121.
(%ungoogled-origin, ungoogled-chromium): Update hashes.
2022-11-27 21:19:49 +01:00
Marius Bakke
6fa4c93102
gnu: mygui: Update to 3.4.1.
...
* gnu/packages/game-development.scm (mygui): Update to 3.4.1.
(mygui-gl): Use PACKAGE/INHERIT. Don't duplicate version field.
2022-11-27 21:19:49 +01:00
Ricardo Wurmus
426ef5b46f
gnu: libreoffice: Update to 7.3.5.2.
...
* gnu/packages/libreoffice.scm (libreoffice): Update to 7.3.5.2.
[arguments]: Override DRAGONBOX_CFLAGS; set CPPFLAGS to force c++17 during the
configure phase.
[inputs]: Add dragonbox-for-libreoffice, libfixmath, libtiff, and libwebp.
* gnu/packages/hunspell.scm (hunspell-dictionary): Update hash.
2022-11-27 21:02:43 +01:00
Ricardo Wurmus
0bb0fdd2f5
gnu: Add dragonbox-for-libreoffice.
...
* gnu/packages/libreoffice.scm (dragonbox-for-libreoffice): New variable.
2022-11-27 21:02:43 +01:00
Ricardo Wurmus
7de5656571
gnu: Add dragonbox.
...
* gnu/packages/libreoffice.scm (dragonbox): New variable.
2022-11-27 21:02:43 +01:00
Ricardo Wurmus
3423d32838
gnu: Add libfixmath.
...
* gnu/packages/maths.scm (libfixmath): New variable.
2022-11-27 21:02:43 +01:00
Ricardo Wurmus
23b319eab7
gnu: libmwaw: Update to 0.3.21.
...
* gnu/packages/libreoffice.scm (libmwaw): Update to 0.3.21.
2022-11-27 21:02:36 +01:00
Florian Pelz
39f88ee29f
doc: cookbook: Fix commands in example.
...
Fixes <https://issues.guix.gnu.org/59463 >.
Reported by Luca Cirrottola <luca.cirrottola@inria.fr >.
* doc/guix-cookbook.texi (Reproducible profiles): Make it work.
2022-11-27 19:00:01 +01:00
Julien Lepiller
f085755bb8
gnu: ocaml-zed: Update to 3.2.1.
...
* gnu/packages/ocaml.scm (ocaml-zed): Update to 3.2.1.
2022-11-27 18:12:02 +01:00
Julien Lepiller
91b8ef414c
gnu: ocaml-topkg: Update to 1.0.6.
...
* gnu/packages/ocaml.scm (ocaml-topkg): Update to 1.0.6.
2022-11-27 18:11:54 +01:00
Julien Lepiller
295a6b88e4
gnu: js-of-ocaml: Update to 4.1.0.
...
* gnu/packages/ocaml.scm (js-of-ocaml): Update to 4.1.0.
2022-11-27 18:11:51 +01:00
Julien Lepiller
70e4c4e93f
gnu: dune-bootstrap: Update to 3.6.1.
...
* gnu/packages/ocaml.scm (dune-bootstrap): Update to 3.6.1.
2022-11-27 18:11:48 +01:00
Julien Lepiller
9ec87c9785
gnu: coq-core: Update to 8.16.1.
...
* gnu/packages/coq.scm (coq-core): Update to 8.16.1.
2022-11-27 18:11:42 +01:00
(
e75e699ec3
gnu: Add go-git-sr-ht-rockorager-tcell-term.
...
* gnu/packages/golang.scm (go-git-sr-ht-rockorager-tcell-term):
New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:46:30 -05:00
(
12a09206c3
gnu: go-github-com-gdamore-tcell-v2: Update to 2.5.3.
...
* gnu/packages/golang.scm (go-github-com-gdamore-tcell-v2): Update
to 2.5.3.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:46:18 -05:00
(
bba6ad665a
gnu: Add go-github-com-emersion-go-mbox.
...
* gnu/packages/golang.scm (go-github-com-emersion-go-mbox): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:46:13 -05:00
(
46fbb3e498
gnu: Add go-github-com-syndtr-goleveldb-leveldb.
...
* gnu/packages/golang.scm (go-github-com-syndtr-goleveldb-leveldb): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:46:08 -05:00
(
1e2cefd0e8
gnu: Add go-github-com-onsi-ginkgo.
...
* gnu/packages/golang.scm (go-github-com-onsi-ginkgo): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:46:04 -05:00
(
cc810a72fb
gnu: Add go-github-com-go-task-slim-sprig.
...
* gnu/packages/golang.scm (go-github-com-go-task-slim-sprig): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:45:59 -05:00
(
a0981f9182
gnu: Add go-github-com-nxadm-tail.
...
* gnu/packages/golang.scm (go-github-com-nxadm-tail): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:45:41 -05:00
(
ecc9c4c3f6
gnu: Add go-gopkg-in-tomb-v1.
...
* gnu/packages/golang.scm (go-gopkg-in-tomb-v1): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:45:32 -05:00
(
1cce28235d
gnu: Add go-github-com-onsi-gomega.
...
* gnu/packages/golang.scm (go-github-com-onsi-gomega): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:45:25 -05:00
(unmatched-parenthesis
992d69b1e7
gnu: Add go-github-com-emersion-go-msgauth.
...
* gnu/packages/golang.scm (go-github-com-emersion-go-msgauth): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:32:14 -05:00
(unmatched-parenthesis
088af73409
gnu: Add go-github-com-emersion-go-milter.
...
* gnu/packages/golang.scm (go-github-com-emersion-go-milter): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:32:09 -05:00
(unmatched-parenthesis
22789276b5
gnu: Add go-github-com-emersion-go-maildir.
...
* gnu/packages/golang.scm (go-github-com-emersion-go-maildir): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:32:05 -05:00
(unmatched-parenthesis
29b0fc4cda
gnu: Add go-github-com-lithammer-fuzzysearch.
...
* gnu/packages/golang.scm (go-github-com-lithammer-fuzzysearch): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:31:58 -05:00
(unmatched-parenthesis
a3e196f69e
gnu: Add go-git-sr-ht--sircmpwn-getopt.
...
* gnu/packages/golang.scm (go-git-sr-ht--sircmpwn-getopt): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:31:43 -05:00
(unmatched-parenthesis
9bb0001a0e
gnu: Add go-github-com-arran4-golang-ical.
...
* gnu/packages/golang.scm (go-github-com-arran4-golang-ical): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:31:38 -05:00
(unmatched-parenthesis
5e2c3f9035
gnu: Add go-github-com-niemeyer-pretty.
...
* gnu/packages/golang.scm (go-github-com-niemeyer-pretty): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:31:34 -05:00
(unmatched-parenthesis
26e57c2318
gnu: Add go-github-com-emersion-go-smtp.
...
* gnu/packages/golang.scm (go-github-com-emersion-go-smtp): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:31:10 -05:00
(unmatched-parenthesis
4118197603
gnu: Add go-github-com-emersion-go-pgpmail.
...
* gnu/packages/golang.scm (go-github-com-emersion-go-pgpmail): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:31:03 -05:00
(unmatched-parenthesis
171f1918ca
gnu: Add go-github-com-protonmail-go-crypto.
...
* gnu/packages/golang.scm (go-github-com-protonmail-go-crypto): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:30:48 -05:00
(unmatched-parenthesis
c4618ca13f
gnu: Add go-github-com-emersion-go-imap-sortthread.
...
* gnu/packages/golang.scm (go-github-com-emersion-go-imap-sortthread):
New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:21:01 -05:00
(unmatched-parenthesis
394a33f74c
gnu: go-github-com-emersion-go-imap: Update to 1.2.1.
...
* gnu/packages/golang.scm (go-github-com-emersion-go-imap): Update
to 1.2.1.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:20:56 -05:00
(unmatched-parenthesis
f42e4f22f6
gnu: go-github-com-emersion-go-sasl: Update to 0b9dcfb.
...
* gnu/packages/golang.scm (go-github-com-emersion-go-sasl): Update
to 0b9dcfb.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:20:48 -05:00
(unmatched-parenthesis
eca45904e6
gnu: Add go-github-com-emersion-go-message.
...
* gnu/packages/golang.scm (go-github-com-emersion-go-message): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:20:40 -05:00
(unmatched-parenthesis
fd52a5986f
gnu: Add go-github-com-emersion-go-textwrapper.
...
* gnu/packages/golang.scm (go-github-com-emersion-go-textwrapper): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:20:35 -05:00
(unmatched-parenthesis
683c8c9db4
gnu: Add go-github-com-gatherstars-com-jwz.
...
* gnu/packages/golang.scm (go-github-com-gatherstars-com-jwz): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:20:26 -05:00
(unmatched-parenthesis
9a49beb272
gnu: Add go-github-com-jhillyerd-enmime.
...
* gnu/packages/golang.scm (go-github-com-jhillyerd-enmime): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:20:13 -05:00
(unmatched-parenthesis
17495dae46
gnu: Add go-github-com-cention-sany-utf7.
...
* gnu/packages/golang.scm (go-github-com-cention-sany-utf7): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:20:04 -05:00
(unmatched-parenthesis
8177fec860
gnu: Add go-github-com-go-test-deep.
...
* gnu/packages/golang.scm (go-github-com-go-test-deep): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-27 10:17:18 -05:00
Remco van 't Veer
ed5fed2c4c
gnu: ruby-3.0: Update to 3.0.5. [security fixes].
...
Fixes: CVE-2021-33621: HTTP response splitting in CGI.
* gnu/packages/ruby.scm (ruby-3.0): Update to 3.0.5.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-27 12:59:47 +02:00
Remco van 't Veer
49b4d4f708
gnu: ruby: Update to 2.7.7. [security fixes].
...
Fixes: CVE-2021-33621: HTTP response splitting in CGI.
* gnu/packages/ruby.scm (ruby-2.7-fixed): Update to 2.7.7.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-27 12:58:29 +02:00
Efraim Flashner
9e4f89df57
gnu: yt-dlp: Update to 2022.11.11.
...
* gnu/packages/video.scm (yt-dlp): Update to 2022.11.11.
2022-11-27 12:53:03 +02:00
Efraim Flashner
8485178e34
gnu: wgetpaste: Update to 2.33.
...
* gnu/packages/wget.scm (wgetpaste): Update to 2.33.
2022-11-27 12:47:40 +02:00
Efraim Flashner
ac8de9eb7e
gnu: vim: Update to 9.0.0954.
...
* gnu/packages/vim.scm (vim): Update to 9.0.0954.
2022-11-27 12:47:39 +02:00
Efraim Flashner
004afd079b
gnu: mg: Update to 20221112.
...
* gnu/packages/text-editors.scm (mg): Update to 20221112.
2022-11-27 12:47:39 +02:00
Efraim Flashner
266c918263
gnu: flatpak: Update to 1.14.1.
...
* gnu/packages/package-management.scm (flatpak): Update to 1.14.1.
2022-11-27 12:47:39 +02:00
Efraim Flashner
de32c09563
gnu: btrfs-progs: Update to 6.0.2.
...
* gnu/packages/linux.scm (btrfs-progs): Update to 6.0.2.
2022-11-27 12:47:34 +02:00
Sughosha via Guix-patches via
7f9a2930bf
gnu: ardour: Update to 7.1
...
* gnu/packages/audio.scm (ardour): Update to 7.1.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-27 00:24:56 +01:00
jgart
fb2aafa127
gnu: emacs-lpy: Update to fa95b11.
...
* gnu/packages/emacs-xyz.scm (emacs-lpy): Update to fa95b11.
[propagated-inputs]: Add EMACS-FUNCTION-ARGS.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-27 00:16:43 +01:00
jgart
1b6bb4783c
gnu: Add emacs-function-args.
...
* gnu/packages/emacs-xyz.scm (emacs-function-args): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-27 00:16:43 +01:00
Hilton Chain via Guix-patches via
77d249aa10
gnu: Add emacs-org-rainbow-tags.
...
* gnu/packages/emacs-xyz.scm (emacs-org-rainbow-tags): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-27 00:16:42 +01:00
Nicolas Goaziou
ae1efb41b8
gnu: lagrange: Update to 1.14.1.
...
* gnu/packages/web-browsers.scm (lagrange): Update to 1.14.1.
2022-11-27 00:16:42 +01:00
Nicolas Goaziou
89c385faef
gnu: emacs-paredit: Update to 26.
...
* gnu/packages/emacs-xyz.scm (emacs-paredit): Update to 26.
2022-11-27 00:16:42 +01:00
Fidel Ramos
97bbdedfd3
gnu: Add emacs-dirvish.
...
* gnu/packages/emacs-xyz.scm (emacs-dirvish): New variable.
Signed-off-by: Andrew Tropin <andrew@trop.in >
2022-11-21 09:00:25 +04:00
Ludovic Courtès
99ba4ddb03
gnu: nautilus: Fix crash due to loading extensions twice.
...
Fixes <https://issues.guix.gnu.org/58221 >.
Reported by Tobias Kortkamp <tobias.kortkamp@gmail.com >.
Previously, if NAUTILUS_EXTENSION_PATH contained the same directory
several times, Nautilus could end up loading the same extension a second
time and crash. This patch ensures that each extension cannot be loaded
more than once.
* gnu/packages/patches/nautilus-extension-search-path.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/gnome.scm (nautilus)[source]: Use it.
[arguments]: Remove 'make-extensible' phase.
2022-11-20 23:20:32 +01:00
Ludovic Courtès
8c7ea71344
installer: Add comment above the 'packages' field.
...
* gnu/installer/services.scm (system-services->configuration): Add
heading above the 'packages' field. Rename 'heading' to
'service-heading'.
2022-11-20 23:20:31 +01:00
Ludovic Courtès
82bde985f4
style: '-f' reads input files as UTF-8 by default.
...
Reported by mirai on #guix.
* guix/scripts/style.scm (format-whole-file): Wrap body in
'with-fluids'. Pass #:guess-encoding to 'call-with-input-file'.
2022-11-20 23:20:31 +01:00
Ricardo Wurmus
238d983b4e
gnu: bchoppr: Update to 1.12.0.
...
* gnu/packages/music.scm (bchoppr): Update to 1.12.0.
2022-11-20 21:48:42 +01:00
Ricardo Wurmus
c585b4bc68
file-systems: Always do recursive bind mounts.
...
Fixes <https://issues.guix.gnu.org/59185 >.
* guix/build/syscalls.scm (MS_REC): New variable.
* gnu/build/file-systems.scm (mount-flags->bit-mask): Set MS_REC bit when
bind-mounting.
2022-11-20 21:27:10 +01:00
Marius Bakke
4416e94e51
gnu: xmlsec-openssl: Remove input labels.
...
* gnu/packages/xml.scm (xmlsec-openssl)[inputs]: Remove labels.
2022-11-20 21:08:08 +01:00
Marius Bakke
127314f5cc
gnu: xmlsec-nss: Remove input labels.
...
* gnu/packages/xml.scm (xmlsec-nss)[native-inputs, inputs]: Remove labels.
2022-11-20 21:08:08 +01:00
Marius Bakke
49a7232c5d
gnu: oath-toolkit: Fix test failure with new xmlsec.
...
* gnu/packages/patches/oath-toolkit-xmlsec-compat.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/authentication.scm (oath-toolkit)[source](patches): New field.
2022-11-20 21:08:08 +01:00
Marius Bakke
225dc9dc63
gnu: xmlsec: Update to 1.2.36.
...
* gnu/packages/xml.scm (xmlsec): Update to 1.2.36.
2022-11-20 21:08:08 +01:00
Marius Bakke
5284887524
gnu: xmlsec: Add 'upstream-name' property.
...
* gnu/packages/xml.scm (xmlsec)[properties]: New field.
2022-11-20 21:08:08 +01:00
Marius Bakke
351bada950
services: mysql: Run mariadb-install-db instead of hard coding schemas.
...
* gnu/services/databases.scm (mysql-install): Run "mariadb-install-db" instead
of a hard coded set of SQL commands.
(mysql-upgrade-wrapper): Explicitly run as mysql user.
2022-11-20 17:54:05 +01:00
Marius Bakke
3323ffa66d
services: mysql: Remove mysql-install-service in favor of wrapper.
...
* gnu/services/databases.scm (mysql-with-install-lock): Remove variable.
(mysql-start): Rename to ...
(mysqld-wrapper): ... this. Do the preliminary initialization steps and call
out to MYSQL-INSTALL when necessary.
(mysql-install): Only initialize table schemas.
(mysql-install-shepherd-service): Remove.
(mysql-service)[requirement]: Remove 'mysql-install. Add 'user-processes.
[start]: Don't pass #:user and #:group.
(mysql-shepherd-services): Remove MYSQL-INSTALL-SHEPHERD-SERVICE.
2022-11-20 17:54:05 +01:00
Marius Bakke
e4a74f38df
services: mysql-upgrade: Add log file.
...
* gnu/services/databases.scm (mysql-upgrade-shepherd-service)[start]: Pass
#:log-file.
2022-11-20 17:54:05 +01:00
Marius Bakke
6ac97bb503
services: mysql-upgrade: Support custom datadir.
...
* gnu/services/databases.scm (mysql-upgrade-wrapper): Take service
configuration as argument, and pass the config file to mysql_upgrade.
(mysql-upgrade-shepherd-service): Pass CONFIG instead of just socket and
executable to MYSQL-UPGRADE-WRAPPER.
2022-11-20 17:54:05 +01:00
Ellen Papsch
c7b266fdf2
gnu: mysql: Support custom data dir.
...
* gnu/services/databases.scm (mysql-configuration): Add datadir property.
* gnu/services/databases.scm (mysql-configuration-file): Replace hard coded
data dir with property from config.
* gnu/services/databases.scm (%mysql-activation): Remove activation, it runs
before PID 1. The data dir may reside on a file system not mounted at this
time.
* gnu/services/databases.scm (mysql-install-shepherd-service): Create service
which replaces the activation. Provide mysql-install.
* gnu/services/databases.scm (mysql-shepherd-service): Move invocation of
mysqld to mysql-start program-file, because the invocation gotten more
complex. Require mysql-install.
* gnu/services/databases.scm (mysql-start): Invoke mysqld only if a lock file
appears.
* gnu/services/databases.scm (mysql-shepherd-services): Prepend the install
service before the normal service.
* gnu/services/databases.scm (mysql-upgrade-wrapper): Increase timeout to
20s to let the mysql install procedure finish.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-20 17:54:04 +01:00
Marius Bakke
96efebed24
tests: mysql: Wait for the socket before running queries.
...
* gnu/tests/databases.scm (run-mysql-test): Add socket test.
2022-11-20 17:54:04 +01:00
Marius Bakke
fe0a1b49c1
gnu: postgresql@10: Update to 10.23.
...
* gnu/packages/databases.scm (postgresql-10): Update to 10.23.
2022-11-20 17:54:04 +01:00
Marius Bakke
a4e74cf344
gnu: postgresql@11: Update to 11.18.
...
* gnu/packages/databases.scm (postgresql-11): Update to 11.18.
2022-11-20 17:54:04 +01:00
Marius Bakke
5e861c1aee
gnu: postgresql@13: Update to 13.9.
...
* gnu/packages/databases.scm (postgresql-13): Update to 13.9.
2022-11-20 17:54:04 +01:00
Marius Bakke
bb9837f66c
gnu: postgresql: Add 15.1.
...
* gnu/packages/databases.scm (postgresql-15): New variable.
(postgresql-14): Inherit from it.
2022-11-20 17:54:04 +01:00
pelzflorian (Florian Pelz)
da6c6763fa
scripts: Use translations for guix.pot for service descriptions.
...
Previously, service descriptions appeared in both guix.pot and
packages.pot, but only translations of packages.pot were used.
Now, translations are only done with guix.pot.
This is better, because translators are more likely to translate
guix.pot, and is also easier, because files in gnu/{home/,}services
need to be in po/guix/POTFILES.in anyway and po/guix/Makevars
already acts on the 'description' keyword because of lint checkers.
* guix/scripts/home.scm (service-type-description-string):
Use translations from guix.pot.
* guix/scripts/system/search.scm (service-type-description-string)
(service-type->recutils): Likewise.
* po/packages/POTFILES.in: Move files in gnu/services to ...
* po/guix/POTFILES.in: ... here.
2022-11-20 16:01:08 +01:00
Marius Bakke
44f087fcc7
gnu: inkbox: Fix build.
...
* gnu/packages/ebook.scm (inkbox)[arguments]: Use G-expression.
2022-11-20 15:15:33 +01:00
Marius Bakke
e994412c19
gnu: inkbox: Update home-page and source URI.
...
* gnu/packages/ebook.scm (inkbox)[home-page]: Set to repository, as the
previous was NXDOMAIN.
[source](uri): Use HOME-PAGE.
2022-11-20 15:15:33 +01:00
Marius Bakke
20d5b8b4d5
gnu: fmit: Remove input labels.
...
* gnu/packages/music.scm (fmit)[native-inputs]: Remove labels.
2022-11-20 15:15:33 +01:00
Marius Bakke
9b808922e9
gnu: fmit: Fix build.
...
* gnu/packages/music.scm (fmit)[arguments]: Adjust for label changes.
2022-11-20 15:15:33 +01:00
Marius Bakke
d56b1cea91
gnu: openal: Add upstream-name property.
...
* gnu/packages/audio.scm (openal)[properties]: New field.
2022-11-20 15:15:33 +01:00
Marius Bakke
3258eae9ee
gnu: qtcolorwidgets: Update to 2.2.0.
...
* gnu/packages/qt.scm (qtcolorwidgets): Update to 2.2.0.
2022-11-20 15:15:33 +01:00
Marius Bakke
39de9fd90c
gnu: gzochi: Add missing dependency.
...
* gnu/packages/game-development.scm (gzochi)[inputs]: Add GMP.
[native-inputs]: Remove label while at it.
2022-11-20 15:15:33 +01:00
Marius Bakke
3a91ee3b88
gnu: protobuf@2: Fix build.
...
* gnu/packages/protobuf.scm (protobuf-2)[build-system]: Set to GNU-BUILD-SYSTEM.
[arguments]: Clear.
[outputs]: Remove "static".
2022-11-20 15:15:33 +01:00
(unmatched-parenthesis
7343bb8325
gnu: Add go-github-com-jaytaylor-html2text.
...
* gnu/packages/golang.scm (go-github-com-jaytaylor-html2text): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-20 08:54:11 -05:00
(unmatched-parenthesis
4fb0b075e4
gnu: Add go-github-com-gogs-chardet.
...
* gnu/packages/golang.scm (go-github-com-gogs-chardet): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-20 08:54:11 -05:00
(unmatched-parenthesis
a2af6352e3
gnu: Add go-github-com-ssor-bom.
...
* gnu/packages/golang.scm (go-github-com-ssor-bom): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-20 08:54:11 -05:00
(unmatched-parenthesis
9290e943cf
gnu: Add go-github-com-rivo-tview.
...
* gnu/packages/golang.scm (go-github-com-rivo-tview): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-20 08:54:11 -05:00
Guillaume Le Vaillant
52fdcf299d
gnu: cl-virality: Don't install examples.
...
* gnu/packages/lisp-xyz.scm (sbcl-virality)[arguments]: Add 'delete-examples'
phase.
2022-11-20 14:45:00 +01:00
Paul A. Patience
c8f406056f
gnu: Add cl-simplified-types.
...
* gnu/packages/lisp-xyz.scm (sbcl-simplified-types, cl-simplified-types,
ecl-simplified-types): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-20 14:45:00 +01:00
Paul A. Patience
46a2e98ca9
gnu: Add cl-pp-toml.
...
* gnu/packages/lisp-xyz.scm (sbcl-pp-toml, cl-pp-toml, ecl-pp-toml): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-20 14:45:00 +01:00
Sharlatan Hellseher
9c2d6ddfbe
gnu: Add cl-virality.
...
* gnu/packages/lisp-xyz.scm (cl-virality, sbcl-virality): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-20 14:45:00 +01:00
(unmatched-parenthesis
ae90aaa60c
gnu: Rename go-golang-org-colorful to go-github-com-lucasb-eyer-go-colorful.
...
* gnu/packages/golang.scm (go-golang-org-colorful): Deprecate and rename to...
(go-github-com-lucasb-eyer-go-colorful): ...this.
(go-github-com-gdamore-tcell)[inputs]: Rename go-golang-org-colorful to
go-github-com-lucasb-eyer-go-colorful.
(go-github-com-muesli-termenv)[inputs]: Likewise.
(go-github-com-charmbracelet-glamour)[inputs]: Likewise.
(go-github-com-charmbracelet-bubbletea)[inputs]: Likewise.
* gnu/packages/configuration-management.scm (chezmoi)[native-inputs]: Rename
go-golang-org-colorful to go-github-com-lucasb-eyer-go-colorful.
* gnu/packages/image-viewers.scm (pixterm)[inputs]: Likewise.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-20 08:31:05 -05:00
(unmatched-parenthesis
35cbf0c04a
gnu: Add go-github-com-go-ini-ini.
...
* gnu/packages/golang.scm (go-github-com-go-ini-ini): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-20 08:31:05 -05:00
(
cfec9f0552
gnu: go-github-com-zenhack-go-notmuch: Use ungexp-native.
...
* gnu/packages/golang.scm (go-github-com-zenhack-go-notmuch)
[arguments]<#:phases>{'unpack-test-fixtures}: Use ungexp-native with
notmuch-fixtures.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-20 12:00:04 +00:00
jgart
670d30972f
import: egg: Fix typo in docstring.
...
* gnu/import/egg.scm (Commentary): Fix typo in Commentary docstring.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-20 12:00:04 +00:00
Leo Nikkilä
d072bcebbf
gnu: Fix copyright line.
...
This is a follow-up to commit 9ad311ec15 .
* gnu/packages/virtualization.scm: Remove copyright line.
* gnu/services/virtualization.scm: Add copyright line.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-20 12:00:04 +00:00
Christopher Baines
dafab37110
services: guix-build-coordinator: Remove duplicate log timestamp.
...
* gnu/services/guix.scm (guix-build-coordinator-shepherd-services,
guix-build-coordinator-agent-shepherd-services,
guix-build-coordinator-queue-builds-shepherd-services): Set
%current-logfile-date-format to "".
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-20 12:00:04 +00:00
Marius Bakke
b8fd2877c9
gnu: python-pbkdf2: Don't use python-pycrypto.
...
* gnu/packages/python-xyz.scm (python-pbkdf2)[propagated-inputs]: Remove.
2022-11-20 12:17:30 +01:00
Marius Bakke
0985bba557
gnu: python-flask-restful: Remove unused dependency.
...
* gnu/packages/python-web.scm (python-flask-restful)[propagated-inputs]:
Remove PYTHON-PYCRYPTO.
2022-11-20 12:17:30 +01:00
Marius Bakke
92be7e088d
gnu: ansible-core: Build with python-pycryptodome.
...
* gnu/packages/admin.scm (ansible-core)[native-inputs]: Replace
PYTHON-PYCRYPTO with PYTHON-PYCRYPTODOME.
2022-11-20 12:17:30 +01:00
Marius Bakke
39d607796b
gnu: python-pycryptodome: Update to 3.15.0.
...
* gnu/packages/python-crypto.scm (python-pycryptodome): Update to 3.15.0.
(python-pycryptodomex): Update hash.
2022-11-20 12:17:30 +01:00
kiasoc5
4727f45d04
gnu: iwd: Update to 2.0.
...
* gnu/packages/networking.scm (iwd): Update to 2.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-20 11:02:03 +02:00
kiasoc5
904decf7c0
gnu: ell: Update to 0.54.
...
* gnu/packages/linux.scm (ell): Update to 0.54.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-20 11:01:51 +02:00
Andy Tai
8db67a3854
gnu: lightning: Update to 2.2.0.
...
gnu/packages/assembly.scm (lightning): Update to 2.2.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-20 10:50:22 +02:00
Adam Faiz
923be63b44
gnu: chipmunk: Use gexps.
...
* gnu/packages/game-development.scm (chipmunk)[arguments]: Use gexps.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-20 10:47:29 +02:00
Adam Faiz
3d1a5a3ec7
gnu: chipmunk: Fix build.
...
* gnu/packages/game-development.scm (chipmunk)[source]: Don't include
the <sys/sysctl.h> header. It has been removed in glibc since 2.32.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-20 10:46:30 +02:00
Liliana Marie Prikler
d09a4cc7c7
gnu: Remove last reference to fortune-mod.
...
Since fortune-mod was removed in 6b6b947b61 ,
it makes no sense to mention it in the description of bsd-games.
* gnu/packages/games.scm (bsd-games): Remove reference to fortune-mod.
2022-11-20 09:22:36 +01:00
(unmatched-parenthesis
8cef05bab6
gnu: Add go-github-com-kyoh86-xdg.
...
* gnu/packages/golang.scm (go-github-com-kyoh86-xdg): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-19 23:45:29 -05:00
Philip McGrath
ac09fcb955
gnu: racket-vm-cs: Avoid duplicate work.
...
Only configure with '--enable-racket' for cross-compilation: otherwise,
it effectively overrides '--enable-scheme' and bootstraps Chez Scheme
again. This change saves a couple minutes of build time. See upstream
discussion at <https://github.com/racket/racket/issues/4492 >.
* gnu/packages/racket.scm (racket-vm-cs)[native-inputs]: Only supply a
Racket VM when cross-compiling.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-20 02:22:18 +01:00
Philip McGrath
d9f51000ca
gnu: chez-scheme-for-racket: Support riscv64.
...
Use the new native backend instead of "portable bytecode".
* gnu/packages/chez.scm (target-chez-arch): Support riscv64-linux-gnu.
(%chez-features-table): Likewise.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-20 02:22:18 +01:00
Philip McGrath
fca5e1a507
gnu: racket: Update to 8.7.
...
Also, update 'chez-scheme-for-racket' to 9.5.9.8.
Note that racket-backport-8.6-cross-install.patch,
racket-backport-8.6-docindex-write.patch, and
racket-backport-8.6-hurd.patch were missing from dist_patch_DATA.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch,
gnu/packages/patches/racket-backport-8.6-zuo.patch: Remove patches.
* gnu/packages/patches/racket-backport-8.7-pkg-strip.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
* gnu/packages/racket.scm (%racket-origin)[patches]: Likewise.
(%racket-version): Update to 8.7.
(racket)[inputs]: Add 'scheme-doc' source package from '%racket-origin'.
(racket)[inputs]<compatibility, db, deinprogramm, draw, drracket>
<eopl, errortrace, gui, htdp, mzscheme, parser-tools, pict, plai, plot>
<r6rs, redex, scribble, slideshow, snip, typed-racket, srfi>
<string-constants>: Update checksums.
* gnu/packages/chez.scm (chez-scheme-for-racket): Update to 9.5.9.8.
[arguments]: Enable tests.
[description]: Update.
(chez-scheme-for-racket-bootstrap-bootfiles)[arguments]: Update path to
'rktboot'.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-20 02:22:18 +01:00
Kaelyn
68925b5ee7
gnu: libreoffice: Build reproducibly.
...
* gnu/packages/libreoffice.scm (libreoffice)[arguments]: Include ‘.otp’
files in the 'reset-zip-timestamps phase.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-11-20 01:00:05 +01:00
Kaelyn
536adbd7cc
gnu: libreoffice: Fix build on i686-linux.
...
* gnu/packages/libreoffice.scm (libreoffice)[arguments]: Add
"--enable-lto" and "--without-galleries" #:configure-flags.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-11-20 01:00:00 +01:00
Leo Famulari
bc9234a8f8
gnu: linux-libre 4.9: Update to 4.9.334.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.334.
(linux-libre-4.9-pristine-source): Update hash.
2022-11-26 14:20:53 -05:00
Leo Famulari
330dca4a35
gnu: linux-libre 4.14: Update to 4.14.300.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.300.
(linux-libre-4.14-pristine-source): Update hash.
2022-11-26 14:20:52 -05:00
Leo Famulari
4a4e6d932f
gnu: linux-libre 4.19: Update to 4.19.267.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.267.
(linux-libre-4.19-pristine-source, deblob-scripts-4.19): Update hashes.
2022-11-26 14:20:52 -05:00
Leo Famulari
29fbc55f11
gnu: linux-libre 5.4: Update to 5.4.225.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.225.
(linux-libre-5.4-pristine-source, deblob-scripst-5.4): Update hashes.
2022-11-26 14:20:52 -05:00
Leo Famulari
319fa83dc9
gnu: linux-libre 5.10: Update to 5.10.156.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.156.
(linux-libre-5.10-pristine-source): Update hash.
2022-11-26 14:20:52 -05:00
Leo Famulari
241c89dc31
gnu: linux-libre 5.15: Update to 5.15.80.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.80.
(linux-libre-5.15-pristine-source): Update hash.
2022-11-26 14:20:51 -05:00
Leo Famulari
bfb64adb66
gnu: linux-libre: Update to 6.0.10.
...
* gnu/packages/linux.scm (linux-libre-6.0-version): Update to 6.0.10.
(linux-libre-6.0-pristine-source): Update hash.
2022-11-26 14:20:46 -05:00
Marius Bakke
c457c715a8
gnu: cdogs-sdl: Update to 1.4.0.
...
* gnu/packages/games.scm (cdogs-sdl): Update to 1.4.0.
2022-11-26 15:37:45 +01:00
Marius Bakke
ac5b6006cf
gnu: varnish: Update to 7.2.1.
...
* gnu/packages/web.scm (varnish): Update to 7.2.1.
2022-11-26 15:03:55 +01:00
Liliana Marie Prikler
2404afea8b
gnu: Add cryptominisat.
...
* gnu/packages/maths.scm (cryptominisat): New variable.
Co-authored-by: Maximilian Heisinger <mail@maxheisinger.at >
2022-11-26 14:03:53 +01:00
Liliana Marie Prikler
d3ce4a2619
gnu: Add louvain-community.
...
* gnu/packages/maths.scm (louvain-community): New variable.
2022-11-26 14:03:53 +01:00
Liliana Marie Prikler
58c24ec748
gnu: Add lingeling.
...
* gnu/packages/maths.scm (lingeling): New variable.
2022-11-26 14:03:53 +01:00
Liliana Marie Prikler
fc061ce297
gnu: Add aiger.
...
* gnu/packages/maths.scm (aiger): New variable.
2022-11-26 14:03:53 +01:00
Christopher Baines
ca98b3ab26
gnu: gst-plugins-bad: Skip elements/camerabin test on some systems.
...
It seems to frequently fail on i686-linux and aarch64-linux.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[arguments]: Skip the
elements/camerabin test on i686-linux and aarch64-linux.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-26 13:48:26 +01:00
aecepoglu
5ccb5837cc
gnu: cbqn-bootstrap: Update to 0-2.66584ce.
...
* gnu/packages/bqn.scm (cbqn-bootstrap): Update to 0-2.66584ce.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-26 13:39:43 +01:00
aecepoglu
e1f8802dc1
gnu: bqn-sources: Update to commit 71ce3614...
...
* gnu/packages/bqn.scm (bqn-sources): Update to commit
71ce36141aaacfa714edca2e408ca522a3bc5554.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-26 13:36:46 +01:00
(
6c6cc42f0a
gnu: emacs-rec-mode: Patch executable paths.
...
* gnu/packages/databases.scm (emacs-rec-mode)[#:phases]: Add
‘patch-program-paths’.
[inputs]: Add recutils.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-26 13:26:37 +01:00
Liliana Marie Prikler
2f0f12933f
gnu: emacs-rec-mode: Use modern package style
...
* gnu/packages/databases.scm (emacs-rec-mode)[source]<snippet>: Use
G-Expression.
[arguments]: Convert to list of G-Expressions.
[native-inputs]: Drop gratuitous newline.
2022-11-26 13:21:39 +01:00
Nicolas Goaziou
adf3eeceda
gnu: lagrange: Update to 1.14.0.
...
* gnu/packages/web-browsers.scm (lagrange): Update to 1.14.0.
2022-11-26 12:10:10 +01:00
Zhu Zihao
c91712aebc
gnu: Add mogan.
...
* gnu/packages/text-editors.scm (mogan): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-26 11:59:28 +01:00
Hilton Chain via Guix-patches via
920e809312
gnu: emacs-straight-el: Update to commit f21103d97d18.
...
* gnu/packages/emacs-xyz.scm (emacs-straight-el): Update to commit
f21103d97d18.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-26 11:53:56 +01:00
Hilton Chain via Guix-patches via
fdad266577
gnu: emacs-ebuku: Update to commit 0c6cf404a49b.
...
* gnu/packages/emacs-xyz.scm (emacs-ebuku): Update to commit 0c6cf404a49b.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-26 11:53:23 +01:00
Nicolas Goaziou
d223aff97d
gnu: emacs-detached: Update to 0.10.1.
...
* gnu/packages/emacs-xyz.scm (emacs-detached): Update to 0.10.1.
2022-11-26 11:15:40 +01:00
Nicolas Goaziou
203fe108b5
gnu: emacs-kind-icon: Update to 0.1.9.
...
* gnu/packages/emacs-xyz.scm (emacs-kind-icon): Update to 0.1.9.
[description]: Use proper Texinfo marker. Remove useless "etc.".
2022-11-26 11:15:39 +01:00
Nicolas Goaziou
86e47b5ee9
gnu: emacs-xref: Update to 1.6.0.
...
* gnu/packages/emacs-xyz.scm (emacs-xref): Update to 1.6.0.
2022-11-26 11:15:39 +01:00
Nicolas Goaziou
bd6de843e6
gnu: emacs-paredit: Update to 25.
...
* gnu/packages/emacs-xyz.scm (emacs-paredit): Update to 25.
[description]: Remove out of place emphasis markers.
2022-11-26 11:15:39 +01:00
Antero Mejr
afa5fa8d5b
gnu: Add xkcdpass.
...
* gnu/packages/password-utils.scm (xkcdpass): New variable.
Signed-off-by: Lars-Dominik Braun <lars@6xq.net >
2022-11-26 09:21:10 +01:00
Antero Mejr
50546f9c0c
licenses: Add EUPL 1.1.
...
* guix/licenses.scm (eupl1.1): New variable.
Signed-off-by: Lars-Dominik Braun <lars@6xq.net >
2022-11-26 09:07:29 +01:00
Danny Milosavljevic
7e0ad0dd0f
gnu: docker: Fix tests.
...
Fixes <https://issues.guix.gnu.org/59551 >.
Reported by Edison Ibáñez <arkhan@riseup.net >
* gnu/packages/linux.scm (xfsprogs-5.9): New variable.
* gnu/packages/docker.scm (docker)[inputs]: Replace xfsprogs by xfsprogs-5.9.
2022-11-25 14:46:15 +01:00
Sharlatan Hellseher
78ee6dcfe1
gnu: Add python-sunpy.
...
* gnu/packages/astronomy.scm (python-sunpy): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-25 10:51:52 +00:00
Sharlatan Hellseher
a3d85918f9
gnu: Add python-reproject.
...
* gnu/packages/astronomy.scm (python-reproject): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-25 10:51:52 +00:00
Sharlatan Hellseher
0575012803
gnu: Add python-hvpy.
...
* gnu/packages/astronomy.scm (python-hvpy): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-25 10:51:52 +00:00
Sharlatan Hellseher
0458cbd84c
gnu: Add python-mpl-animators.
...
* gnu/packages/astronomy.scm (python-mpl-animators): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-25 10:51:52 +00:00
Sharlatan Hellseher
3271fa1f40
gnu: Add python-drms.
...
* gnu/packages/astronomy.scm (python-drms): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-25 10:51:52 +00:00
conses
6827d76d38
gnu: Add portfolio.
...
* gnu/packages/gnome-xyz.scm (portfolio): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-25 10:51:52 +00:00
Ahriman
123e6f5f24
gnu: Add raider.
...
* gnu/packages/gnome.scm (raider): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-25 10:51:51 +00:00
Navid Afkhami
b095dac8e0
gnu: Add r-btools.
...
* gnu/packages/bioinformatics.scm (r-btools): New variable.
2022-11-25 11:17:56 +01:00
Guillaume Le Vaillant
79e40b6ce8
gnu: bitcoin-core: Update to 23.0.
...
According to <https://bitcoincore.org/en/lifecycle/#schedule >, versions 0.20
and 0.21 have passed end of life.
* gnu/packages/finance.scm (bitcoin-core): Update to 23.0.
(bitcoin-core-23.0): New variable.
(bitcoin-core-0.20, bitcoin-core-0.21): Remove variables.
2022-11-25 10:52:16 +01:00
Paul A. Patience
d0b4baf51f
gnu: Add cl-system-load.
...
* gnu/packages/lisp-xyz.scm (sbcl-system-load, cl-system-load,
ecl-system-load): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-25 10:28:29 +01:00
Paul A. Patience
13eafd6730
gnu: Add cl-file-notify.
...
* gnu/packages/lisp-xyz.scm (sbcl-file-notify, cl-file-notify,
ecl-file-notify): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-25 10:25:49 +01:00
Paul A. Patience
5c93d51366
gnu: Add cl-marray.
...
* gnu/packages/lisp-xyz.scm (sbcl-marray, cl-marray): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-25 10:23:39 +01:00
Paul A. Patience
fe09d32e34
gnu: Add cl-atomichron.
...
* gnu/packages/lisp-xyz.scm (sbcl-atomichron, cl-atomichron,
ecl-atomichron): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-25 10:15:55 +01:00
Paul A. Patience
63374ef9b9
gnu: Add cl-concurrent-hash-tables.
...
* gnu/packages/lisp-xyz.scm (sbcl-concurrent-hash-tables,
cl-concurrent-hash-tables, ecl-concurrent-hash-tables): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-25 10:12:05 +01:00
Guillaume Le Vaillant
045b868261
gnu: electrum: Update to 4.3.2.
...
* gnu/packages/finance.scm (electrum): Update to 4.3.2.
2022-11-25 10:03:39 +01:00
Guillaume Le Vaillant
753a88c980
gnu: electron-cash: Update to 4.2.12.
...
* gnu/packages/finance.scm (electron-cash): Update to 4.2.12.
2022-11-25 09:58:51 +01:00
Guillaume Le Vaillant
4777c104be
gnu: xmrig: Update to 6.18.1.
...
* gnu/packages/finance.scm (xmrig): Update to 6.18.1.
2022-11-25 09:54:08 +01:00
Guillaume Le Vaillant
77fe40060d
gnu: p2pool: Update to 2.5.
...
* gnu/packages/finance.scm (p2pool): Update to 2.5.
2022-11-25 09:51:46 +01:00
Maxim Cournoyer
d524ec6fb5
doc: Add a security keys section to the cookbook.
...
* doc/guix-cookbook.texi (Top): Register new menu.
(System Configuration): Likewise.
(Using security keys): New section.
2022-11-24 20:51:30 -05:00
Nicolas Goaziou
5eb2995c00
gnu: emacs-popon: Update to 0.12.
...
* gnu/packages/emacs-xyz.scm (emacs-popon): Update to 0.12.
2022-11-24 23:47:32 +01:00
Nicolas Goaziou
94907932b8
gnu: emacs-flymake-mypy: Update to 0.3.0.
...
* gnu/packages/emacs-xyz.scm (emacs-flymake-mypy): Update to 0.3.0.
2022-11-24 23:45:05 +01:00
Nicolas Goaziou
d858714ffc
gnu: burgerspace: Update to 1.9.5.
...
* gnu/packages/games.scm (burgerspace): Update to 1.9.5.
2022-11-24 23:36:03 +01:00
Nicolas Goaziou
fa5701964d
gnu: emacs-inspector: Activate tests.
...
* gnu/packages/emacs-xyz.scm (emacs-inspector)[arguments]: Add tests. Skip
failing test. Fix compatibility with Emacs 28 and older.
2022-11-24 23:30:57 +01:00
Nicolas Goaziou
84136e95b2
gnu: emacs-inspector: Fix base version.
...
* gnu/packages/emacs-xyz.scm (emacs-inspector)[version]: Use "0.8" as base
version, which is the version from "inspector.el" instead of
"tree-inspector.el".
2022-11-24 23:30:56 +01:00
Maxim Cournoyer
82c43b276d
gnu: linux-libre: Enable building info doc.
...
* gnu/packages/patches/linux-libre-infodocs-target.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/linux.scm (linux-libre-6.0-source, linux-libre-5.15-source)
(linux-libre-5.10-source): Apply above patch.
(doc-supported?): New procedure.
(make-linux-libre) [DOC-SUPPORTED?]: Add new patch in
the default patches used. Add a BUILD-DOC? argument.
(make-linux-libre*): Add a BUILD-DOC? argument. Validate BUILD-DOC? for
supported VERSION.
[arguments]: Conditionally add the build-doc and install-doc phases.
[native-inputs]: Conditionally add fontconfig, graphviz, python-wrapper,
python-sphinx, texinfo and which.
2022-11-24 16:35:11 -05:00
Ricardo Wurmus
5f8c11d48e
gnu: emacs-s: Do not use full-fledged Emacs to run tests.
...
* gnu/packages/emacs-xyz.scm (emacs-s)[arguments]: Use emacs-minimal.
2022-11-24 22:32:53 +01:00
Efraim Flashner
b3beeaa309
gnu: arm-trusted-firmware: Remove blobs in a snippet.
...
* gnu/packages/firmware.scm (make-arm-trusted-firmware)[source]: Add
snippet to remove binary blobs.
[arguments]: Remove related phase.
2022-11-24 22:22:39 +02:00
Efraim Flashner
255450bed2
gnu: arm-trusted-firmware: Update to 2.8.
...
* gnu/packages/firmware.scm (make-arm-trusted-firmware): Update to 2.8.
[arguments]: Remove trailing #t from phases. Clean up regexes.
2022-11-24 22:22:38 +02:00
Efraim Flashner
564dcaa1fa
gnu: python-brotlicffi: Unbundle brotli.
...
* gnu/packages/python-compression.scm (python-brotlicffi)[source]: Add
snippet to delete bundled libbrotli.
[arguments]: Add phase to configure using shared libbrotli.
[inputs]: Add brotli.
2022-11-24 22:22:32 +02:00
Maxim Cournoyer
4c9e94a453
gnu: Add qt-creator.
...
* gnu/packages/qt.scm (qt-creator): New variable.
wip
2022-11-24 14:55:57 -05:00
Maxim Cournoyer
085831010c
gnu: qttools: Add clang-15 as input.
...
* gnu/packages/qt.scm (qttools) [inputs]: Add clang-15, so that the qdoc
command can be built.
[phases] {sanity-check}: New phase, to guard against a problem that proved
difficult to isolate.
2022-11-24 14:55:57 -05:00
Maxim Cournoyer
d1dc2c47fe
gnu: Add clazy.
...
* gnu/packages/qt.scm (clazy): New variable.
2022-11-24 14:55:57 -05:00
Maxim Cournoyer
9381e14536
gnu: Add qttranslations.
...
* gnu/packages/qt.scm (qttranslations): New variable.
2022-11-24 14:52:56 -05:00
Nicolas Goaziou
8f3e10ae81
gnu: emacs-projectile: Activate tests.
...
* gnu/packages/emacs-xyz.scm (emacs-projectile)[source]: Use Git repository
instead of released tarball to get the test file.
[arguments]: Activate tests, and fix a failing one.
2022-11-24 18:06:33 +01:00
Nicolas Goaziou
b438e1f231
gnu: emacs-projectile: Improve description.
...
* gnu/packages/emacs-xyz.scm (emacs-projectile)[description]: Use proper
capitalization, expand some words, add Texinfo markup, remove fancy typography.
2022-11-24 18:05:41 +01:00
Nicolas Goaziou
826d862eb3
gnu: emacs-projectile: Update to 2.7.0.
...
* gnu/packages/emacs-xyz.scm (emacs-projectile): Update to 2.7.0.
2022-11-24 18:05:41 +01:00
Nicolas Goaziou
071d0cac80
gnu: emacs-kind-icon: Update to 0.1.8.
...
* gnu/packages/emacs-xyz.scm (emacs-kind-icon): Update to 0.1.8.
2022-11-24 18:05:40 +01:00
Nicolas Goaziou
95aa64e9fe
gnu: emacs-vertico: Update to 0.29.
...
* gnu/packages/emacs-xyz.scm (emacs-vertico): Update to 0.29.
2022-11-24 18:05:40 +01:00
Nicolas Goaziou
49cfa7d8bd
gnu: emacs-eldev: Update to 1.3.
...
* gnu/packages/emacs-xyz.scm (emacs-eldev): Update to 1.3.
2022-11-24 18:05:40 +01:00
Nicolas Goaziou
b8eb99f817
gnu: emacs-detached: Update to 0.10.0.
...
* gnu/packages/emacs-xyz.scm (emacs-detached): Update to 0.10.0.
2022-11-24 18:05:39 +01:00
Nicolas Goaziou
3174c4c17d
gnu: emacs-org-modern: Update to 0.6.
...
* gnu/packages/emacs-xyz.scm (emacs-org-modern): Update to 0.6.
2022-11-24 18:05:39 +01:00
Ricardo Wurmus
c29d999a34
gnu: r-ancombc: Update to 2.0.1.
...
* gnu/packages/bioconductor.scm (r-ancombc): Update to 2.0.1.
[propagated-inputs]: Remove r-microbiome, r-nlme, and r-phyloseq; add r-cvxr, r-emmeans,
r-lme4, r-lmertest, r-mia, r-rngtools, r-s4vectors,
r-singlecellexperiment, r-summarizedexperiment, and
r-treesummarizedexperiment.
2022-11-24 18:02:15 +01:00
Ricardo Wurmus
139da51753
gnu: Add r-mia.
...
* gnu/packages/bioconductor.scm (r-mia): New variable.
2022-11-24 18:02:15 +01:00
Ricardo Wurmus
90d8ac279f
gnu: Add r-treesummarizedexperiment.
...
* gnu/packages/bioconductor.scm (r-treesummarizedexperiment): New variable.
2022-11-24 18:02:15 +01:00
Ricardo Wurmus
efb965a4fa
gnu: Add r-cvxr.
...
* gnu/packages/cran.scm (r-cvxr): New variable.
2022-11-24 18:02:15 +01:00
Ricardo Wurmus
bde758150f
gnu: Add r-ecosolver.
...
* gnu/packages/cran.scm (r-ecosolver): New variable.
2022-11-24 18:02:15 +01:00
Ricardo Wurmus
697a0f8ca4
gnu: Add r-scs.
...
* gnu/packages/cran.scm (r-scs): New variable.
2022-11-24 18:02:15 +01:00
Ricardo Wurmus
8b1bee45f7
gnu: Add r-osqp.
...
* gnu/packages/cran.scm (r-osqp): New variable.
2022-11-24 18:02:15 +01:00
Mădălin Ionel Patrașcu
8d3bd8e4b0
gnu: Add r-ancombc.
...
* gnu/packages/bioconductor.scm (r-ancombc): New variable.
2022-11-24 18:02:15 +01:00
Leo Famulari
a8c36bf8c4
gnu: linux-libre 4.19: Update to 4.19.266.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.266.
(linux-libre-4.19-pristine-source): Update hash.
2022-11-24 11:25:51 -05:00
Ricardo Wurmus
fa59a22140
gnu: r-aims: Update to 1.30.0.
...
* gnu/packages/bioconductor.scm (r-aims): Update to 1.30.0.
2022-11-24 15:36:18 +01:00
Mădălin Ionel Patrașcu
2e85d26ebb
gnu: Add r-aims.
...
* gnu/packages/bioconductor.scm (r-aims): New variable.
2022-11-24 15:35:38 +01:00
Ricardo Wurmus
6f39e16124
gnu: r-alevinqc: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-alevinqc): Update to 1.14.0.
2022-11-24 15:28:15 +01:00
Mădălin Ionel Patrașcu
5dc82a7f8b
gnu: Add r-alevinqc.
...
* gnu/packages/bioconductor.scm (r-alevinqc): New variable.
2022-11-24 15:22:28 +01:00
Ricardo Wurmus
610616d448
gnu: r-alphabeta: Update to 1.12.0.
...
* gnu/packages/bioconductor.scm (r-alphabeta): Update to 1.12.0.
2022-11-24 15:13:50 +01:00
Mădălin Ionel Patrașcu
6c7f0849c1
gnu: Add r-alphabeta.
...
* gnu/packages/bioconductor.scm (r-alphabeta): New variable.
2022-11-24 15:09:13 +01:00
Ricardo Wurmus
c706a0a2af
gnu: r-asafe: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-asafe): Update to 1.24.0.
2022-11-24 15:02:41 +01:00
Mădălin Ionel Patrașcu
01124e5a10
gnu: Add r-asafe.
...
* gnu/packages/bioconductor.scm (r-asafe): New variable.
2022-11-24 15:02:10 +01:00
Ricardo Wurmus
c2cba91ac9
gnu: r-arrayexpress: Update to 1.57.0.
...
* gnu/packages/bioconductor.scm (r-arrayexpress): Update to 1.57.0.
2022-11-24 14:54:41 +01:00
Mădălin Ionel Patrașcu
13e8930efb
gnu: Add r-arrayexpress.
...
* gnu/packages/bioconductor.scm (r-arrayexpress): New variable.
2022-11-24 14:53:09 +01:00
Ricardo Wurmus
f43a41d196
gnu: r-scuttle: Update to 1.8.1.
...
* gnu/packages/bioconductor.scm (r-scuttle): Update to 1.8.1.
2022-11-24 12:32:11 +01:00
Ricardo Wurmus
a2ad5b53bf
gnu: r-rgreat: Update to 2.0.2.
...
* gnu/packages/bioconductor.scm (r-rgreat): Update to 2.0.2.
2022-11-24 12:32:11 +01:00
Ricardo Wurmus
8bfac375aa
gnu: r-bioccheck: Update to 1.34.2.
...
* gnu/packages/bioconductor.scm (r-bioccheck): Update to 1.34.2.
2022-11-24 12:32:11 +01:00
Ricardo Wurmus
f9747ecc2c
gnu: r-dose: Update to 3.24.2.
...
* gnu/packages/bioconductor.scm (r-dose): Update to 3.24.2.
2022-11-24 12:32:10 +01:00
Ricardo Wurmus
a5ee462b7a
gnu: r-shortread: Update to 1.56.1.
...
* gnu/packages/bioconductor.scm (r-shortread): Update to 1.56.1.
2022-11-24 12:32:10 +01:00
Ricardo Wurmus
3bc54ddeab
gnu: r-chipseeker: Update to 1.34.1.
...
* gnu/packages/bioconductor.scm (r-chipseeker): Update to 1.34.1.
2022-11-24 12:32:10 +01:00
Ricardo Wurmus
d3696e71a9
gnu: r-deconvr: Update to 1.4.2.
...
* gnu/packages/bioconductor.scm (r-deconvr): Update to 1.4.2.
2022-11-24 12:32:10 +01:00
Ricardo Wurmus
04340b27ba
gnu: r-bambu: Update to 3.0.2.
...
* gnu/packages/bioconductor.scm (r-bambu): Update to 3.0.2.
2022-11-24 12:32:10 +01:00
Ricardo Wurmus
4c0449ba8f
gnu: r-minimal: Simplify build phase.
...
* gnu/packages/statistics.scm (r-minimal)[arguments]: Simplify phase
"remove-extraneous-references".
2022-11-24 12:32:10 +01:00
Ricardo Wurmus
a8082fefe0
gnu: r-minimal: Use %store-directory instead of /gnu/store.
...
* gnu/packages/statistics.scm (r-minimal)[arguments]: Use %store-directory
instead of hard-coding "/gnu/store" prefix.
2022-11-24 12:32:10 +01:00
Ricardo Wurmus
eeeca2341d
gnu: r-with-tests: Update to 4.2.2.
...
* gnu/packages/statistics.scm (r-with-tests): Update to 4.2.2.
[arguments]: Patch DESCRIPTION file of "tools" package to avoid
non-deterministic line break.
2022-11-24 12:32:09 +01:00
Ricardo Wurmus
ffe149ccc5
gnu: r-with-tests: Drop labels from input lists.
...
* gnu/packages/statistics.scm (r-with-tests)[native-inputs]: Drop input
labels.
[inputs]: Same.
(r-minimal)[arguments]: Remove lookup of "texlive" package.
2022-11-24 12:32:09 +01:00
Ricardo Wurmus
f3004710fa
gnu: r-ggtern: Update to 3.4.0.
...
* gnu/packages/cran.scm (r-ggtern): Update to 3.4.0.
2022-11-24 12:32:09 +01:00
zimoun
54afdb3de1
gnu: r-phyloseq: Update to 1.42.0.
...
* gnu/packages/bioconductor.scm (r-phyloseq): Update to 1.42.0.
2022-11-24 12:32:09 +01:00
zimoun
9988c60ea3
gnu: r-tximeta: Update to 1.16.0.
...
* gnu/packages/bioconductor.scm (r-tximeta): Update to 1.16.0.
2022-11-24 12:32:09 +01:00
zimoun
5140be4c81
gnu: r-tricycle: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-tricycle): Update to 1.6.0.
2022-11-24 12:32:09 +01:00
zimoun
7a33311bfd
gnu: r-tcgabiolinks: Update to 2.25.3.
...
* gnu/packages/bioconductor.scm (r-tcgabiolinks): Update to 2.25.3.
2022-11-24 12:32:09 +01:00
zimoun
dde0da5a95
gnu: r-biscuiteer: Update to 1.12.0.
...
* gnu/packages/bioconductor.scm (r-biscuiteer): Update to 1.12.0.
2022-11-24 12:32:09 +01:00
zimoun
926fe78f73
gnu: r-omnipathr: Update to 3.5.25.
...
* gnu/packages/bioconductor.scm (r-omnipathr): Update to 3.5.25.
[propagated-inputs]: Add r-rmarkdown and r-rvest.
2022-11-24 12:32:08 +01:00
zimoun
3f58454739
gnu: r-omicade4: Update to 1.38.0.
...
* gnu/packages/bioconductor.scm (r-omicade4): Update to 1.38.0.
2022-11-24 12:32:08 +01:00
zimoun
e524c12e06
gnu: r-dmrseq: Update to 1.18.0.
...
* gnu/packages/bioconductor.scm (r-dmrseq): Update to 1.18.0.
2022-11-24 12:32:08 +01:00
zimoun
95792cda89
gnu: r-dada2: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-dada2): Update to 1.26.0.
2022-11-24 12:32:08 +01:00
zimoun
c2c91d9dfe
gnu: r-bsseq: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-bsseq): Update to 1.34.0.
2022-11-24 12:32:08 +01:00
zimoun
3b8df103f7
gnu: r-biotmle: Update to 1.22.0.
...
* gnu/packages/bioconductor.scm (r-biotmle): Update to 1.22.0.
2022-11-24 12:32:08 +01:00
zimoun
3ed0a63106
gnu: r-biotip: Update to 1.12.0.
...
* gnu/packages/bioconductor.scm (r-biotip): Update to 1.12.0.
2022-11-24 12:32:08 +01:00
zimoun
f230df5f4f
gnu: r-bioqc: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-bioqc): Update to 1.26.0.
2022-11-24 12:32:07 +01:00
zimoun
219b98fee9
gnu: r-bionetstat: Update to 1.18.0.
...
* gnu/packages/bioconductor.scm (r-bionetstat): Update to 1.18.0.
2022-11-24 12:32:07 +01:00
zimoun
01fb7c35e7
gnu: r-bionet: Update to 1.58.0.
...
* gnu/packages/bioconductor.scm (r-bionet): Update to 1.58.0.
2022-11-24 12:32:07 +01:00
zimoun
1118d6e856
gnu: r-bionero: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-bionero): Update to 1.6.0.
2022-11-24 12:32:07 +01:00
zimoun
858d9ccd9b
gnu: r-biomvrcns: Update to 1.38.0.
...
* gnu/packages/bioconductor.scm (r-biomvrcns): Update to 1.38.0.
2022-11-24 12:32:07 +01:00
zimoun
c0412736d8
gnu: r-biomvcclass: Update to 1.66.0.
...
* gnu/packages/bioconductor.scm (r-biomvcclass): Update to 1.66.0.
2022-11-24 12:32:07 +01:00
zimoun
3879ddbdb9
gnu: r-mvcclass: Update to 1.72.0.
...
* gnu/packages/bioconductor.scm (r-mvcclass): Update to 1.72.0.
2022-11-24 12:32:07 +01:00
zimoun
4875f37cb6
gnu: r-biomformat: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-biomformat): Update to 1.26.0.
2022-11-24 12:32:06 +01:00
zimoun
ffd5e53e87
gnu: r-biodb: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-biodb): Update to 1.6.0.
2022-11-24 12:32:06 +01:00
zimoun
efc663040b
gnu: r-biocdockermanager: Update to 1.10.0.
...
* gnu/packages/bioconductor.scm (r-biocdockermanager): Update to 1.10.0.
2022-11-24 12:32:06 +01:00
zimoun
4fcf1f08ec
gnu: r-biocthis: Update to 1.8.1.
...
* gnu/packages/bioconductor.scm (r-biocthis): Update to 1.8.1.
2022-11-24 12:32:06 +01:00
zimoun
3aea2c40d8
gnu: r-basilisk: Update to 1.10.2.
...
* gnu/packages/bioconductor.scm (r-basilisk): Update to 1.10.2.
2022-11-24 12:32:06 +01:00
zimoun
f5a514b605
gnu: r-basilisk-utils: Update to 1.10.0.
...
* gnu/packages/bioconductor.scm (r-basilisk-utils): Update to 1.10.0.
2022-11-24 12:32:06 +01:00
zimoun
925642f837
gnu: r-dir-expiry: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-dir-expiry): Update to 1.6.0.
2022-11-24 12:32:06 +01:00
zimoun
727cd07d1a
gnu: r-genetclassifier: Update to 1.38.0.
...
* gnu/packages/bioconductor.scm (r-genetclassifier): Update to 1.38.0.
2022-11-24 12:32:05 +01:00
zimoun
dbaad2365a
gnu: r-minet: Update to 3.56.0.
...
* gnu/packages/bioconductor.scm (r-minet): Update to 3.56.0.
2022-11-24 12:32:05 +01:00
zimoun
8ba466faff
gnu: r-biobtreer: Update to 1.10.0.
...
* gnu/packages/bioconductor.scm (r-biobtreer): Update to 1.10.0.
2022-11-24 12:32:05 +01:00
zimoun
009ac4e3a9
gnu: r-bgeedb: Update to 2.24.0.
...
* gnu/packages/bioconductor.scm (r-bgeedb): Update to 2.24.0.
2022-11-24 12:32:05 +01:00
zimoun
3912f43996
gnu: r-bgeecall: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-bgeecall): Update to 1.14.0.
2022-11-24 12:32:05 +01:00
zimoun
81cea8424d
gnu: r-beclear: Update to 2.14.0.
...
* gnu/packages/bioconductor.scm (r-beclear): Update to 2.14.0.
[propagated-inputs]: Add r-ids.
2022-11-24 12:32:05 +01:00
zimoun
5604f64c34
gnu: r-megadepth: Update to 1.8.0.
...
* gnu/packages/bioconductor.scm (r-megadepth): Update to 1.8.0.
2022-11-24 12:32:05 +01:00
zimoun
3823aa40a3
gnu: r-ballgown: Update to 2.30.0.
...
* gnu/packages/bioconductor.scm (r-ballgown): Update to 2.30.0.
2022-11-24 12:32:04 +01:00
zimoun
3ca58a4ff3
gnu: r-guitar: Update to 2.14.0.
...
* gnu/packages/bioconductor.scm (r-guitar): Update to 2.14.0.
2022-11-24 12:32:04 +01:00
zimoun
5950a171ba
gnu: r-chromstar: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-chromstar): Update to 1.24.0.
2022-11-24 12:32:04 +01:00
zimoun
1ff0bc4e7b
gnu: r-snpstats: Update to 1.48.0.
...
* gnu/packages/bioconductor.scm (r-snpstats): Update to 1.48.0.
2022-11-24 12:32:04 +01:00
zimoun
ddc7edf0b3
gnu: r-pathview: Update to 1.38.0.
...
* gnu/packages/bioconductor.scm (r-pathview): Update to 1.38.0.
2022-11-24 12:32:04 +01:00
zimoun
1315c532de
gnu: r-ldblock: Update to 1.28.0.
...
* gnu/packages/bioconductor.scm (r-ldblock): Update to 1.28.0.
2022-11-24 12:32:04 +01:00
zimoun
db290bf5b9
gnu: r-kegggraph: Update to 1.58.0.
...
* gnu/packages/bioconductor.scm (r-kegggraph): Update to 1.58.0.
2022-11-24 12:32:04 +01:00
zimoun
b6e56ceeb9
gnu: r-gwascat: Update to 2.30.0.
...
* gnu/packages/bioconductor.scm (r-gwascat): Update to 2.30.0.
2022-11-24 12:32:03 +01:00
zimoun
5f3ff4f884
gnu: r-gviz: Update to 1.42.0.
...
* gnu/packages/bioconductor.scm (r-gviz): Update to 1.42.0.
2022-11-24 12:32:03 +01:00
zimoun
34867ac9cf
gnu: r-ggbio: Update to 1.46.0.
...
* gnu/packages/bioconductor.scm (r-ggbio): Update to 1.46.0.
2022-11-24 12:32:03 +01:00
zimoun
77f2aa3fa4
gnu: r-erma: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-erma): Update to 1.14.0.
2022-11-24 12:32:03 +01:00
zimoun
dbeb05e6a3
gnu: r-catalyst: Update to 1.22.0.
...
* gnu/packages/bioconductor.scm (r-catalyst): Update to 1.22.0.
2022-11-24 12:32:03 +01:00
zimoun
01e78296bc
gnu: r-msmstests: Update to 1.36.0.
...
* gnu/packages/bioconductor.scm (r-msmstests): Update to 1.36.0.
2022-11-24 12:32:03 +01:00
zimoun
5c6c7831d6
gnu: r-msmseda: Update to 1.36.0.
...
* gnu/packages/bioconductor.scm (r-msmseda): Update to 1.36.0.
2022-11-24 12:32:03 +01:00
zimoun
94a86e7e39
gnu: r-biocio: Update to 1.8.0.
...
* gnu/packages/bioconductor.scm (r-biocio): Update to 1.8.0.
2022-11-24 12:32:02 +01:00
zimoun
0640f750b4
gnu: r-msfeatures: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-msfeatures): Update to 1.6.0.
2022-11-24 12:32:02 +01:00
zimoun
b5a0d81448
gnu: r-mscoreutils: Update to 1.10.0.
...
* gnu/packages/bioconductor.scm (r-mscoreutils): Update to 1.10.0.
2022-11-24 12:32:02 +01:00
zimoun
377a9b2177
gnu: r-delayedmatrixstats: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-delayedmatrixstats): Update to 1.20.0.
2022-11-24 12:32:02 +01:00
zimoun
2dc26068eb
gnu: r-sparsematrixstats: Update to 1.10.0.
...
* gnu/packages/bioconductor.scm (r-sparsematrixstats): Update to 1.10.0.
2022-11-24 12:32:02 +01:00
zimoun
c73d3e9bad
gnu: r-scran: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-scran): Update to 1.26.0.
2022-11-24 12:32:02 +01:00
zimoun
14e3905c6e
gnu: r-scater: Update to 1.26.1.
...
* gnu/packages/bioconductor.scm (r-scater): Update to 1.26.1.
[propagated-inputs]: Add r-ggrastr, r-pheatmap, and r-uwot.
2022-11-24 12:32:02 +01:00
zimoun
3fa18b5504
gnu: r-scuttle: Update to 1.8.0.
...
* gnu/packages/bioconductor.scm (r-scuttle): Update to 1.8.0.
2022-11-24 12:32:01 +01:00
zimoun
54a67ddf86
gnu: r-singler: Update to 2.0.0.
...
* gnu/packages/bioconductor.scm (r-singler): Update to 2.0.0.
2022-11-24 12:32:01 +01:00
zimoun
d748ae3d00
gnu: r-singlecellexperiment: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-singlecellexperiment): Update to 1.20.0.
2022-11-24 12:32:01 +01:00
zimoun
64ccd0ff3c
gnu: r-chromvar: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-chromvar): Update to 1.20.0.
2022-11-24 12:32:01 +01:00
zimoun
5374b55b68
gnu: r-motifmatchr: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-motifmatchr): Update to 1.20.0.
2022-11-24 12:32:01 +01:00
zimoun
8b332d676d
gnu: r-maftools: Update to 2.14.0.
...
* gnu/packages/bioconductor.scm (r-maftools): Update to 2.14.0.
2022-11-24 12:32:01 +01:00
zimoun
21b32e45bd
gnu: r-tfbstools: Update to 1.36.0.
...
* gnu/packages/bioconductor.scm (r-tfbstools): Update to 1.36.0.
2022-11-24 12:32:00 +01:00
zimoun
6dc8ec0358
gnu: r-cner: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-cner): Update to 1.34.0.
2022-11-24 12:32:00 +01:00
zimoun
6dfa3f50b9
gnu: r-beachmat: Update to 2.14.0.
...
* gnu/packages/bioconductor.scm (r-beachmat): Update to 2.14.0.
2022-11-24 12:32:00 +01:00
zimoun
2a5fb31db9
gnu: r-rhdf5lib: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-rhdf5lib): Update to 1.20.0.
2022-11-24 12:32:00 +01:00
zimoun
9e45f2c183
gnu: r-hdf5array: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-hdf5array): Update to 1.26.0.
2022-11-24 12:32:00 +01:00
zimoun
ab92277de4
gnu: r-hitc: Update to 1.42.0.
...
* gnu/packages/bioconductor.scm (r-hitc): Update to 1.42.0.
2022-11-24 12:32:00 +01:00
zimoun
06c18fde52
gnu: r-fithic: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-fithic): Update to 1.24.0.
2022-11-24 12:31:59 +01:00
zimoun
65866be416
gnu: r-fishpond: Update to 2.4.0.
...
* gnu/packages/bioconductor.scm (r-fishpond): Update to 2.4.0.
2022-11-24 12:31:59 +01:00
zimoun
f074346f2c
gnu: r-rgraphviz: Update to 2.42.0.
...
* gnu/packages/bioconductor.scm (r-rgraphviz): Update to 2.42.0.
2022-11-24 12:31:59 +01:00
zimoun
96cd3b4bcf
gnu: r-s4vectors: Update to 0.36.0.
...
* gnu/packages/bioconductor.scm (r-s4vectors): Update to 0.36.0.
2022-11-24 12:31:59 +01:00
zimoun
4737a25691
gnu: r-preprocesscore: Update to 1.60.0.
...
* gnu/packages/bioconductor.scm (r-preprocesscore): Update to 1.60.0.
2022-11-24 12:31:59 +01:00
zimoun
a02007bd88
gnu: r-icens: Update to 1.70.0.
...
* gnu/packages/bioconductor.scm (r-icens): Update to 1.70.0.
2022-11-24 12:31:59 +01:00
zimoun
79c096cb2e
gnu: r-m3c: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-m3c): Update to 1.20.0.
2022-11-24 12:31:59 +01:00
zimoun
c705fcaaa5
gnu: r-rgreat: Update to 2.0.1.
...
* gnu/packages/bioconductor.scm (r-rgreat): Update to 2.0.1.
[propagated-inputs]: Add r-annotationdbi, r-circlize, r-digest, r-doparallel,
r-dt, r-foreach, r-genomeinfodb, r-genomicfeatures, r-globaloptions, r-go-db,
r-org-hs-eg-db, r-progress, r-rcolorbrewer, r-rcpp, r-s4vectors, r-shiny,
r-txdb-hsapiens-ucsc-hg19-knowngene, and r-txdb-hsapiens-ucsc-hg38-knowngene.
2022-11-24 12:31:59 +01:00
zimoun
4f3b6abb5f
gnu: r-pcatools: Update to 2.10.0.
...
* gnu/packages/bioconductor.scm (r-pcatools): Update to 2.10.0.
2022-11-24 12:31:58 +01:00
zimoun
29c12faa87
gnu: r-biodist: Update to 1.70.0.
...
* gnu/packages/bioconductor.scm (r-biodist): Update to 1.70.0.
2022-11-24 12:31:58 +01:00
zimoun
3e451b9415
gnu: r-biocworkflowtools: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-biocworkflowtools): Update to 1.24.0.
2022-11-24 12:31:58 +01:00
zimoun
ec4583b1d2
gnu: r-biocset: Update to 1.12.0.
...
* gnu/packages/bioconductor.scm (r-biocset): Update to 1.12.0.
2022-11-24 12:31:58 +01:00
zimoun
c1cff36f4c
gnu: r-biocpkgtools: Update to 1.16.0.
...
* gnu/packages/bioconductor.scm (r-biocpkgtools): Update to 1.16.0.
[propagated-inputs]: Remove r-tidyr and r-tidyselect. Add r-rorcid.
2022-11-24 12:31:58 +01:00
zimoun
1a19353ae1
gnu: r-biocor: Update to 1.22.0.
...
* gnu/packages/bioconductor.scm (r-biocor): Update to 1.22.0.
2022-11-24 12:31:58 +01:00
zimoun
1eaf500dd6
gnu: r-bioconcotk: Update to 1.18.0.
...
* gnu/packages/bioconductor.scm (r-bioconcotk): Update to 1.18.0.
2022-11-24 12:31:58 +01:00
zimoun
5557dea898
gnu: r-multiassayexperiment: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-multiassayexperiment): Update to 1.24.0.
[propagated-inputs]: Add r-biocbaseutils and r-delayedarray.
2022-11-24 12:31:57 +01:00
zimoun
55c39e2947
gnu: r-grohmm: Update to 1.32.0.
...
* gnu/packages/bioconductor.scm (r-grohmm): Update to 1.32.0.
2022-11-24 12:31:57 +01:00
zimoun
9762908889
gnu: r-experimenthub: Update to 2.6.0.
...
* gnu/packages/bioconductor.scm (r-experimenthub): Update to 2.6.0.
2022-11-24 12:31:57 +01:00
zimoun
d87f979e28
gnu: r-biocviews: Update to 1.66.0.
...
* gnu/packages/bioconductor.scm (r-biocviews): Update to 1.66.0.
2022-11-24 12:31:57 +01:00
zimoun
dcb59af845
gnu: r-biocstyle: Update to 2.26.0.
...
* gnu/packages/bioconductor.scm (r-biocstyle): Update to 2.26.0.
2022-11-24 12:31:57 +01:00
zimoun
dfad35abc6
gnu: r-biocgraph: Update to 1.60.0.
...
* gnu/packages/bioconductor.scm (r-biocgraph): Update to 1.60.0.
2022-11-24 12:31:57 +01:00
zimoun
5f39d8aa86
gnu: r-bioccheck: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-bioccheck): Update to 1.34.0.
2022-11-24 12:31:57 +01:00
zimoun
712bce2124
gnu: r-ebarrays: Update to 2.62.0.
...
* gnu/packages/bioconductor.scm (r-ebarrays): Update to 2.62.0.
2022-11-24 12:31:57 +01:00
zimoun
0f7ac7b091
gnu: r-reactomepa: Update to 1.42.0.
...
* gnu/packages/bioconductor.scm (r-reactomepa): Update to 1.42.0.
[propagated-inputs]: Add r-gson.
2022-11-24 12:31:56 +01:00
zimoun
2cd3b14071
gnu: r-graphite: Update to 1.44.0.
...
* gnu/packages/bioconductor.scm (r-graphite): Update to 1.44.0.
[propagated-inputs]: Add r-purrr.
2022-11-24 12:31:56 +01:00
zimoun
828084b2cb
gnu: r-biobroom: Update to 1.30.0.
...
* gnu/packages/bioconductor.scm (r-biobroom): Update to 1.30.0.
2022-11-24 12:31:56 +01:00
zimoun
a6a6f4466f
gnu: r-bioassayr: Update to 1.36.0.
...
* gnu/packages/bioconductor.scm (r-bioassayr): Update to 1.36.0.
2022-11-24 12:31:56 +01:00
zimoun
4cf44682fb
gnu: r-fmcsr: Update to 1.40.0.
...
* gnu/packages/bioconductor.scm (r-fmcsr): Update to 1.40.0.
2022-11-24 12:31:56 +01:00
zimoun
8bbcb000c7
gnu: r-chemminer: Update to 3.50.0.
...
* gnu/packages/bioconductor.scm (r-chemminer): Update to 3.50.0.
2022-11-24 12:31:56 +01:00
zimoun
087322f6fa
gnu: r-bigpint: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-bigpint): Update to 1.14.0.
2022-11-24 12:31:56 +01:00
zimoun
dae60e1c1f
gnu: r-biggr: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-biggr): Update to 1.34.0.
2022-11-24 12:31:56 +01:00
zimoun
b90e4cdd56
gnu: r-hyperdraw: Update to 1.50.0.
...
* gnu/packages/bioconductor.scm (r-hyperdraw): Update to 1.50.0.
2022-11-24 12:31:55 +01:00
zimoun
7939489f80
gnu: r-hypergraph: Update to 1.70.0.
...
* gnu/packages/bioconductor.scm (r-hypergraph): Update to 1.70.0.
2022-11-24 12:31:55 +01:00
zimoun
4665e589d6
gnu: r-rsbml: Update to 2.56.0.
...
* gnu/packages/bioconductor.scm (r-rsbml): Update to 2.56.0.
2022-11-24 12:31:55 +01:00
zimoun
a1d8a95a06
gnu: r-bifet: Update to 1.18.0.
...
* gnu/packages/bioconductor.scm (r-bifet): Update to 1.18.0.
2022-11-24 12:31:55 +01:00
zimoun
002ef09276
gnu: r-bicare: Update to 1.56.0.
...
* gnu/packages/bioconductor.scm (r-bicare): Update to 1.56.0.
2022-11-24 12:31:55 +01:00
zimoun
02928ed15f
gnu: r-bhc: Update to 1.50.0.
...
* gnu/packages/bioconductor.scm (r-bhc): Update to 1.50.0.
2022-11-24 12:31:55 +01:00
zimoun
16e636eccb
gnu: r-bgx: Update to 1.64.0.
...
* gnu/packages/bioconductor.scm (r-bgx): Update to 1.64.0.
2022-11-24 12:31:55 +01:00
zimoun
ade1bef97a
gnu: r-bgmix: Update to 1.58.0.
...
* gnu/packages/bioconductor.scm (r-bgmix): Update to 1.58.0.
2022-11-24 12:31:55 +01:00
zimoun
fcde82ae09
gnu: r-acde: Update to 1.28.0.
...
* gnu/packages/bioconductor.scm (r-acde): Update to 1.28.0.
2022-11-24 12:31:54 +01:00
zimoun
5fed6cbcbc
gnu: r-acme: Update to 2.54.0.
...
* gnu/packages/bioconductor.scm (r-acme): Update to 2.54.0.
2022-11-24 12:31:54 +01:00
zimoun
b5a0834c2f
gnu: r-acgh: Update to 1.76.0.
...
* gnu/packages/bioconductor.scm (r-acgh): Update to 1.76.0.
2022-11-24 12:31:54 +01:00
zimoun
949b5f3ddb
gnu: r-ace: Update to 1.16.0.
...
* gnu/packages/bioconductor.scm (r-ace): Update to 1.16.0.
2022-11-24 12:31:54 +01:00
zimoun
ffea168d76
gnu: r-universalmotif: Update to 1.16.0.
...
* gnu/packages/bioconductor.scm (r-universalmotif): Update to 1.16.0.
2022-11-24 12:31:54 +01:00
zimoun
ba16a0a2ee
gnu: r-unifiedwmwqpcr: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-unifiedwmwqpcr): Update to 1.34.0.
2022-11-24 12:31:54 +01:00
zimoun
86eddd9e14
gnu: r-htqpcr: Update to 1.52.0.
...
* gnu/packages/bioconductor.scm (r-htqpcr): Update to 1.52.0.
2022-11-24 12:31:54 +01:00
zimoun
30bfeccabb
gnu: r-variancepartition: Update to 1.28.0.
...
* gnu/packages/bioconductor.scm (r-variancepartition): Update to 1.28.0.
2022-11-24 12:31:53 +01:00
zimoun
8a2f4b7192
gnu: r-variantfiltering: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-variantfiltering): Update to 1.34.0.
2022-11-24 12:31:53 +01:00
zimoun
827abdb960
gnu: r-wavcluster: Update to 2.32.0.
...
* gnu/packages/bioconductor.scm (r-wavcluster): Update to 2.32.0.
2022-11-24 12:31:53 +01:00
zimoun
d9b593d522
gnu: r-reqon: Update to 1.44.0.
...
* gnu/packages/bioconductor.scm (r-reqon): Update to 1.44.0.
2022-11-24 12:31:53 +01:00
zimoun
1f7c82bf0b
gnu: r-seqbias: Update to 1.46.0.
...
* gnu/packages/bioconductor.scm (r-seqbias): Update to 1.46.0.
2022-11-24 12:31:53 +01:00
zimoun
63b8d104dc
gnu: r-bigmelon: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-bigmelon): Update to 1.24.0.
2022-11-24 12:31:53 +01:00
zimoun
ba535c8148
gnu: r-gdsfmt: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-gdsfmt): Update to 1.34.0.
2022-11-24 12:31:52 +01:00
zimoun
1d03230dc8
gnu: r-watermelon: Update to 2.4.0.
...
* gnu/packages/bioconductor.scm (r-watermelon): Update to 2.4.0.
2022-11-24 12:31:52 +01:00
zimoun
d29b13e9be
gnu: r-roc: Update to 1.74.0.
...
* gnu/packages/bioconductor.scm (r-roc): Update to 1.74.0.
2022-11-24 12:31:52 +01:00
zimoun
f184b3a86b
gnu: r-genie3: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-genie3): Update to 1.20.0.
2022-11-24 12:31:52 +01:00
zimoun
a6580915af
gnu: r-circrnaprofiler: Update to 1.12.0.
...
* gnu/packages/bioconductor.scm (r-circrnaprofiler): Update to 1.12.0.
2022-11-24 12:31:52 +01:00
zimoun
5adc9823f8
gnu: r-cicero: Update to 1.16.0.
...
* gnu/packages/bioconductor.scm (r-cicero): Update to 1.16.0.
2022-11-24 12:31:52 +01:00
zimoun
355400fff2
gnu: r-chicago: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-chicago): Update to 1.26.0.
2022-11-24 12:31:52 +01:00
zimoun
3857d2dd8d
gnu: r-rcistarget: Update to 1.17.0.
...
* gnu/packages/bioconductor.scm (r-rcistarget): Update to 1.17.0.
2022-11-24 12:31:51 +01:00
zimoun
3073f30b07
gnu: r-depecher: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-depecher): Update to 1.14.0.
2022-11-24 12:31:51 +01:00
zimoun
f80ad8d51b
gnu: r-mixomics: Update to 6.22.0.
...
* gnu/packages/bioconductor.scm (r-mixomics): Update to 6.22.0.
2022-11-24 12:31:51 +01:00
zimoun
6741cfad7c
gnu: r-flowsom: Update to 2.6.0.
...
* gnu/packages/bioconductor.scm (r-flowsom): Update to 2.6.0.
2022-11-24 12:31:51 +01:00
zimoun
90be8abee6
gnu: r-cytoml: Update to 2.10.0.
...
* gnu/packages/bioconductor.scm (r-cytoml): Update to 2.10.0.
2022-11-24 12:31:51 +01:00
zimoun
522e1136b6
gnu: r-opencyto: Update to 2.10.0.
...
* gnu/packages/bioconductor.scm (r-opencyto): Update to 2.10.0.
2022-11-24 12:31:51 +01:00
zimoun
2061e5af92
gnu: r-flowstats: Update to 4.10.0.
...
* gnu/packages/bioconductor.scm (r-flowstats): Update to 4.10.0.
2022-11-24 12:31:51 +01:00
zimoun
8a089e4e11
gnu: r-flowworkspace: Update to 4.10.0.
...
* gnu/packages/bioconductor.scm (r-flowworkspace): Update to 4.10.0.
2022-11-24 12:31:50 +01:00
zimoun
d029859dd2
gnu: r-rprotobuflib: Update to 2.10.0.
...
* gnu/packages/bioconductor.scm (r-rprotobuflib): Update to 2.10.0.
2022-11-24 12:31:50 +01:00
zimoun
223fb32492
gnu: r-flowclust: Update to 3.36.0.
...
* gnu/packages/bioconductor.scm (r-flowclust): Update to 3.36.0.
2022-11-24 12:31:50 +01:00
zimoun
22f8c5350e
gnu: r-flowviz: Update to 1.62.0.
...
* gnu/packages/bioconductor.scm (r-flowviz): Update to 1.62.0.
2022-11-24 12:31:50 +01:00
zimoun
ffe3bfa1ba
gnu: r-ggcyto: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-ggcyto): Update to 1.26.0.
2022-11-24 12:31:50 +01:00
zimoun
a87bcca9f2
gnu: r-ncdfflow: Update to 2.44.0.
...
* gnu/packages/bioconductor.scm (r-ncdfflow): Update to 2.44.0.
2022-11-24 12:31:50 +01:00
zimoun
59a3f6df90
gnu: r-flowmeans: Update to 1.58.0.
...
* gnu/packages/bioconductor.scm (r-flowmeans): Update to 1.58.0.
2022-11-24 12:31:49 +01:00
zimoun
c5130dfef1
gnu: r-flowcore: Update to 2.10.0.
...
* gnu/packages/bioconductor.scm (r-flowcore): Update to 2.10.0.
[propagated-inputs]: Remove r-rcpparmadillo; add r-cpp11.
2022-11-24 12:31:49 +01:00
zimoun
e6dc952cbb
gnu: r-cytolib: Update to 2.10.0.
...
* gnu/packages/bioconductor.scm (r-cytolib): Update to 2.10.0.
2022-11-24 12:31:49 +01:00
zimoun
944e48a861
gnu: r-consensusclusterplus: Update to 1.62.0.
...
* gnu/packages/bioconductor.scm (r-consensusclusterplus): Update to 1.62.0.
2022-11-24 12:31:49 +01:00
zimoun
9c3506a26c
gnu: r-rsubread: Update to 2.12.0.
...
* gnu/packages/bioconductor.scm (r-rsubread): Update to 2.12.0.
2022-11-24 12:31:49 +01:00
zimoun
2aaa3f4414
gnu: r-annotatr: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-annotatr): Update to 1.24.0.
2022-11-24 12:31:49 +01:00
zimoun
254acb7ddc
gnu: r-biosigner: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-biosigner): Update to 1.26.0.
2022-11-24 12:31:49 +01:00
zimoun
8772941e80
gnu: r-ropls: Update to 1.30.0.
...
* gnu/packages/bioconductor.scm (r-ropls): Update to 1.30.0.
[propagated-inputs]: Add r-plotly and r-ggplot2.
2022-11-24 12:31:48 +01:00
zimoun
812fd22ad3
gnu: r-multidataset: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-multidataset): Update to 1.26.0.
2022-11-24 12:31:48 +01:00
zimoun
df921b1f69
gnu: r-birewire: Update to 3.30.0.
...
* gnu/packages/bioconductor.scm (r-birewire): Update to 3.30.0.
2022-11-24 12:31:48 +01:00
zimoun
afd5dfff03
gnu: r-rqc: Update to 1.32.0.
...
* gnu/packages/bioconductor.scm (r-rqc): Update to 1.32.0.
2022-11-24 12:31:48 +01:00
zimoun
1a99e38e8d
gnu: r-quasr: Update to 1.38.0.
...
* gnu/packages/bioconductor.scm (r-quasr): Update to 1.38.0.
2022-11-24 12:31:48 +01:00
zimoun
a9dd4f8bd6
gnu: r-rhisat2: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-rhisat2): Update to 1.14.0.
2022-11-24 12:31:48 +01:00
zimoun
41e534e93a
gnu: r-sgseq: Update to 1.32.0.
...
* gnu/packages/bioconductor.scm (r-sgseq): Update to 1.32.0.
2022-11-24 12:31:48 +01:00
zimoun
0f6cd30c7a
gnu: r-rbowtie: Update to 1.38.0.
...
* gnu/packages/bioconductor.scm (r-rbowtie): Update to 1.38.0.
2022-11-24 12:31:48 +01:00
zimoun
b35b27b983
gnu: r-iclusterplus: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-iclusterplus): Update to 1.34.0.
2022-11-24 12:31:47 +01:00
zimoun
43b69b74d3
gnu: r-biocfilecache: Update to 2.6.0.
...
* gnu/packages/bioconductor.scm (r-biocfilecache): Update to 2.6.0.
2022-11-24 12:31:47 +01:00
zimoun
628ce9bf48
gnu: r-arrmnormalization: Update to 1.38.0.
...
* gnu/packages/bioconductor.scm (r-arrmnormalization): Update to 1.38.0.
2022-11-24 12:31:47 +01:00
zimoun
471040c5d1
gnu: r-progeny: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-progeny): Update to 1.20.0.
2022-11-24 12:31:47 +01:00
zimoun
42e093c575
gnu: r-rbowtie2: Update to 2.4.0.
...
* gnu/packages/bioconductor.scm (r-rbowtie2): Update to 2.4.0.
2022-11-24 12:31:47 +01:00
zimoun
f16c7d46cc
gnu: r-zfpkm: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-zfpkm): Update to 1.20.0.
2022-11-24 12:31:47 +01:00
zimoun
70e32fd0bf
gnu: r-zinbwave: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-zinbwave): Update to 1.20.0.
2022-11-24 12:31:47 +01:00
zimoun
36edd2b288
gnu: r-webbioc: Update to 1.70.0.
...
* gnu/packages/bioconductor.scm (r-webbioc): Update to 1.70.0.
2022-11-24 12:31:47 +01:00
zimoun
75ca7d19fd
gnu: r-widgettools: Update to 1.76.0.
...
* gnu/packages/bioconductor.scm (r-widgettools): Update to 1.76.0.
2022-11-24 12:31:46 +01:00
zimoun
57fec18eae
gnu: r-wiggleplotr: Update to 1.22.0.
...
* gnu/packages/bioconductor.scm (r-wiggleplotr): Update to 1.22.0.
2022-11-24 12:31:46 +01:00
zimoun
c7c004c36e
gnu: r-wrench: Update to 1.16.0.
...
* gnu/packages/bioconductor.scm (r-wrench): Update to 1.16.0.
2022-11-24 12:31:46 +01:00
zimoun
9daff45146
gnu: r-wppi: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-wppi): Update to 1.6.0.
2022-11-24 12:31:46 +01:00
zimoun
bcc13d3642
gnu: r-xcms: Update to 3.20.0.
...
* gnu/packages/bioconductor.scm (r-xcms): Update to 3.20.0.
2022-11-24 12:31:46 +01:00
zimoun
61edc0f206
gnu: r-massspecwavelet: Update to 1.64.0.
...
* gnu/packages/bioconductor.scm (r-massspecwavelet): Update to 1.64.0.
2022-11-24 12:31:46 +01:00
zimoun
275fda864a
gnu: r-roar: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-roar): Update to 1.34.0.
2022-11-24 12:31:46 +01:00
zimoun
802db22edf
gnu: r-yarn: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-yarn): Update to 1.24.0.
2022-11-24 12:31:45 +01:00
zimoun
0ac185ebb4
gnu: r-quantro: Update to 1.32.0.
...
* gnu/packages/bioconductor.scm (r-quantro): Update to 1.32.0.
2022-11-24 12:31:45 +01:00
zimoun
4da41a5977
gnu: r-gcrma: Update to 2.70.0.
...
* gnu/packages/bioconductor.scm (r-gcrma): Update to 2.70.0.
2022-11-24 12:31:45 +01:00
zimoun
42b297b295
gnu: r-yapsa: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-yapsa): Update to 1.24.0.
2022-11-24 12:31:45 +01:00
zimoun
f1a1fed1df
gnu: r-somaticsignatures: Update to 2.34.0.
...
* gnu/packages/bioconductor.scm (r-somaticsignatures): Update to 2.34.0.
2022-11-24 12:31:45 +01:00
zimoun
a072ce0ecc
gnu: r-gtrellis: Update to 1.30.0.
...
* gnu/packages/bioconductor.scm (r-gtrellis): Update to 1.30.0.
2022-11-24 12:31:45 +01:00
zimoun
66612f9583
gnu: r-yamss: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-yamss): Update to 1.24.0.
2022-11-24 12:31:45 +01:00
zimoun
c410fa50e1
gnu: r-ebimage: Update to 4.40.0.
...
* gnu/packages/bioconductor.scm (r-ebimage): Update to 4.40.0.
2022-11-24 12:31:45 +01:00
zimoun
265c03a7bd
gnu: r-aucell: Update to 1.20.1.
...
* gnu/packages/bioconductor.scm (r-aucell): Update to 1.20.1.
2022-11-24 12:31:44 +01:00
zimoun
d0a0afe1da
gnu: r-allelicimbalance: Update to 1.36.0.
...
* gnu/packages/bioconductor.scm (r-allelicimbalance): Update to 1.36.0.
2022-11-24 12:31:44 +01:00
zimoun
d48170687b
gnu: r-annotationtools: Update to 1.72.0.
...
* gnu/packages/bioconductor.scm (r-annotationtools): Update to 1.72.0.
2022-11-24 12:31:44 +01:00
zimoun
a2ec0390a7
gnu: r-gofuncr: Update to 1.18.0.
...
* gnu/packages/bioconductor.scm (r-gofuncr): Update to 1.18.0.
2022-11-24 12:31:44 +01:00
zimoun
82015ac5b1
gnu: r-atacseqqc: Update to 1.22.0.
...
* gnu/packages/bioconductor.scm (r-atacseqqc): Update to 1.22.0.
2022-11-24 12:31:44 +01:00
zimoun
380c5b1894
gnu: r-genomicscores: Update to 2.10.0.
...
* gnu/packages/bioconductor.scm (r-genomicscores): Update to 2.10.0.
2022-11-24 12:31:44 +01:00
zimoun
1acf7fdae3
gnu: r-motifstack: Update to 1.42.0.
...
* gnu/packages/bioconductor.scm (r-motifstack): Update to 1.42.0.
2022-11-24 12:31:44 +01:00
zimoun
1d8e36abd9
gnu: r-motifbreakr: Update to 2.12.0.
...
* gnu/packages/bioconductor.scm (r-motifbreakr): Update to 2.12.0.
2022-11-24 12:31:43 +01:00
zimoun
5fd930a771
gnu: r-motifdb: Update to 1.40.0.
...
* gnu/packages/bioconductor.scm (r-motifdb): Update to 1.40.0.
2022-11-24 12:31:43 +01:00
zimoun
bdd122be57
gnu: r-rgadem: Update to 2.46.0.
...
* gnu/packages/bioconductor.scm (r-rgadem): Update to 2.46.0.
2022-11-24 12:31:43 +01:00
zimoun
621c91564d
gnu: r-bacon: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-bacon): Update to 1.26.0.
2022-11-24 12:31:43 +01:00
zimoun
e09f43a15d
gnu: r-abseqr: Update to 1.16.0.
...
* gnu/packages/bioconductor.scm (r-abseqr): Update to 1.16.0.
2022-11-24 12:31:43 +01:00
zimoun
8a11bd2c1e
gnu: r-a4: Update to 1.46.0.
...
* gnu/packages/bioconductor.scm (r-a4): Update to 1.46.0.
2022-11-24 12:31:43 +01:00
zimoun
a618ee00cd
gnu: r-a4base: Update to 1.46.0.
...
* gnu/packages/bioconductor.scm (r-a4base): Update to 1.46.0.
2022-11-24 12:31:43 +01:00
zimoun
9e1a4ae173
gnu: r-a4reporting: Update to 1.46.0.
...
* gnu/packages/bioconductor.scm (r-a4reporting): Update to 1.46.0.
2022-11-24 12:31:42 +01:00
zimoun
0b89230af3
gnu: r-a4preproc: Update to 1.46.0.
...
* gnu/packages/bioconductor.scm (r-a4preproc): Update to 1.46.0.
2022-11-24 12:31:42 +01:00
zimoun
94a665b347
gnu: r-a4classif: Update to 1.46.0.
...
* gnu/packages/bioconductor.scm (r-a4classif): Update to 1.46.0.
2022-11-24 12:31:42 +01:00
zimoun
e65450cc4c
gnu: r-a4core: Update to 1.46.0.
...
* gnu/packages/bioconductor.scm (r-a4core): Update to 1.46.0.
2022-11-24 12:31:42 +01:00
zimoun
e8dc5aec69
gnu: r-annaffy: Update to 1.70.0.
...
* gnu/packages/bioconductor.scm (r-annaffy): Update to 1.70.0.
2022-11-24 12:31:42 +01:00
zimoun
ed0238c59e
gnu: r-mlinterfaces: Update to 1.78.0.
...
* gnu/packages/bioconductor.scm (r-mlinterfaces): Update to 1.78.0.
[propagated-inputs]: Add r-summarizedexperiment.
2022-11-24 12:31:42 +01:00
zimoun
c5c2cbe1e3
gnu: r-clusterexperiment: Update to 2.18.0.
...
* gnu/packages/bioconductor.scm (r-clusterexperiment): Update to 2.18.0.
2022-11-24 12:31:42 +01:00
zimoun
26a4a1e36b
gnu: r-clusterprofiler: Update to 4.6.0.
...
* gnu/packages/bioconductor.scm (r-clusterprofiler): Update to 4.6.0.
[propagated-inputs]: Add r-gson.
2022-11-24 12:31:41 +01:00
zimoun
7d70375aa7
gnu: r-enrichplot: Update to 1.18.1.
...
* gnu/packages/bioconductor.scm (r-enrichplot): Update to 1.18.1.
[propagated-inputs]: Add r-ggnewscale and r-rlang.
2022-11-24 12:31:41 +01:00
zimoun
56fe119257
gnu: r-dose: Update to 3.24.1.
...
* gnu/packages/bioconductor.scm (r-dose): Update to 3.24.1.
[propagated-inputs]: Remove r-do-db. Add r-hdo-db.
2022-11-24 12:31:41 +01:00
zimoun
11b8f6caf0
gnu: r-fgsea: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-fgsea): Update to 1.24.0.
[propagated-inputs]: Remove r-gridextra. Add r-cowplot.
2022-11-24 12:31:41 +01:00
zimoun
245ab82522
gnu: r-fcscan: Update to 1.12.0.
...
* gnu/packages/bioconductor.scm (r-fcscan): Update to 1.12.0.
2022-11-24 12:31:41 +01:00
zimoun
e392bcce64
gnu: r-sigpathway: Update to 1.66.0.
...
* gnu/packages/bioconductor.scm (r-sigpathway): Update to 1.66.0.
2022-11-24 12:31:41 +01:00
zimoun
368fdb0850
gnu: r-anota: Update to 1.46.0.
...
* gnu/packages/bioconductor.scm (r-anota): Update to 1.46.0.
2022-11-24 12:31:41 +01:00
zimoun
9171e09d37
gnu: r-gosemsim: Update to 2.24.0.
...
* gnu/packages/bioconductor.scm (r-gosemsim): Update to 2.24.0.
2022-11-24 12:31:40 +01:00
zimoun
83fa503de3
gnu: r-heatplus: Update to 3.6.0.
...
* gnu/packages/bioconductor.scm (r-heatplus): Update to 3.6.0.
2022-11-24 12:31:40 +01:00
zimoun
69eb260b6f
gnu: r-varianttools: Update to 1.40.0.
...
* gnu/packages/bioconductor.scm (r-varianttools): Update to 1.40.0.
2022-11-24 12:31:40 +01:00
zimoun
5c2e048789
gnu: r-tradeseq: Update to 1.12.0.
...
* gnu/packages/bioconductor.scm (r-tradeseq): Update to 1.12.0.
2022-11-24 12:31:40 +01:00
zimoun
4c30f1a5b5
gnu: r-ioniser: Update to 2.22.0.
...
* gnu/packages/bioconductor.scm (r-ioniser): Update to 2.22.0.
2022-11-24 12:31:40 +01:00
zimoun
e0b3d2dda9
gnu: r-linnorm: Update to 2.22.0.
...
* gnu/packages/bioconductor.scm (r-linnorm): Update to 2.22.0.
2022-11-24 12:31:40 +01:00
zimoun
8bd75d3ef7
gnu: r-lumi: Update to 2.50.0.
...
* gnu/packages/bioconductor.scm (r-lumi): Update to 2.50.0.
2022-11-24 12:31:39 +01:00
zimoun
6b9cb6256a
gnu: r-methylumi: Update to 2.44.0.
...
* gnu/packages/bioconductor.scm (r-methylumi): Update to 2.44.0.
2022-11-24 12:31:39 +01:00
zimoun
44a5942ce7
gnu: r-minfi: Update to 1.44.0.
...
* gnu/packages/bioconductor.scm (r-minfi): Update to 1.44.0.
2022-11-24 12:31:39 +01:00
zimoun
59fe138fcc
gnu: r-milor: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-milor): Update to 1.6.0.
2022-11-24 12:31:39 +01:00
zimoun
3c1854108e
gnu: r-microbiome: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-microbiome): Update to 1.20.0.
2022-11-24 12:31:39 +01:00
zimoun
a4e446a3a3
gnu: r-bumphunter: Update to 1.40.0.
...
* gnu/packages/bioconductor.scm (r-bumphunter): Update to 1.40.0.
2022-11-24 12:31:39 +01:00
zimoun
734d40892a
gnu: r-siggenes: Update to 1.72.0.
...
* gnu/packages/bioconductor.scm (r-siggenes): Update to 1.72.0.
2022-11-24 12:31:39 +01:00
zimoun
e3d4563b4f
gnu: r-illuminaio: Update to 0.40.0.
...
* gnu/packages/bioconductor.scm (r-illuminaio): Update to 0.40.0.
2022-11-24 12:31:39 +01:00
zimoun
62c58299a2
gnu: r-geoquery: Update to 2.66.0.
...
* gnu/packages/bioconductor.scm (r-geoquery): Update to 2.66.0.
2022-11-24 12:31:39 +01:00
zimoun
d00553da9b
gnu: r-scone: Update to 1.22.0.
...
* gnu/packages/bioconductor.scm (r-scone): Update to 1.22.0.
2022-11-24 12:31:38 +01:00
zimoun
7030f66362
gnu: r-scdd: Update to 1.22.0.
...
* gnu/packages/bioconductor.scm (r-scdd): Update to 1.22.0.
2022-11-24 12:31:38 +01:00
zimoun
70a1e54b8b
gnu: r-noiseq: Update to 2.42.0.
...
* gnu/packages/bioconductor.scm (r-noiseq): Update to 2.42.0.
2022-11-24 12:31:38 +01:00
zimoun
9ddd0a0ab4
gnu: r-monocle: Update to 2.26.0.
...
* gnu/packages/bioconductor.scm (r-monocle): Update to 2.26.0.
2022-11-24 12:31:38 +01:00
zimoun
f149c694fd
gnu: r-mast: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-mast): Update to 1.24.0.
2022-11-24 12:31:38 +01:00
zimoun
9f49e6eee8
gnu: r-batchelor: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-batchelor): Update to 1.14.0.
2022-11-24 12:31:38 +01:00
zimoun
2896e9005e
gnu: r-residualmatrix: Update to 1.8.0.
...
* gnu/packages/bioconductor.scm (r-residualmatrix): Update to 1.8.0.
2022-11-24 12:31:38 +01:00
zimoun
29f0a198a5
gnu: r-icobra: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-icobra): Update to 1.26.0.
2022-11-24 12:31:38 +01:00
zimoun
3a9e82f0f5
gnu: r-ihw: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-ihw): Update to 1.26.0.
2022-11-24 12:31:37 +01:00
zimoun
e8e7990b88
gnu: r-lpsymphony: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-lpsymphony): Update to 1.26.0.
2022-11-24 12:31:37 +01:00
zimoun
f60faec932
gnu: r-karyoploter: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-karyoploter): Update to 1.24.0.
2022-11-24 12:31:37 +01:00
zimoun
c9dc9b10e8
gnu: r-ebseq: Update to 1.38.0.
...
* gnu/packages/bioconductor.scm (r-ebseq): Update to 1.38.0.
2022-11-24 12:31:37 +01:00
zimoun
9fcaa4e3d8
gnu: r-dnacopy: Update to 1.72.0.
...
* gnu/packages/bioconductor.scm (r-dnacopy): Update to 1.72.0.
2022-11-24 12:31:37 +01:00
zimoun
3a731c1b28
gnu: r-copynumber: Update to 1.38.0.
...
* gnu/packages/bioconductor.scm (r-copynumber): Update to 1.38.0.
2022-11-24 12:31:37 +01:00
zimoun
c7f24274bf
gnu: r-chipexoqual: Update to 1.22.0.
...
* gnu/packages/bioconductor.scm (r-chipexoqual): Update to 1.22.0.
2022-11-24 12:31:37 +01:00
zimoun
1dfad3e535
gnu: r-savr: Update to 1.36.0.
...
* gnu/packages/bioconductor.scm (r-savr): Update to 1.36.0.
2022-11-24 12:31:36 +01:00
zimoun
1517a8fd4f
gnu: r-destiny: Update to 3.12.0.
...
* gnu/packages/bioconductor.scm (r-destiny): Update to 3.12.0.
2022-11-24 12:31:36 +01:00
zimoun
c733f330e1
gnu: r-biocsingular: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-biocsingular): Update to 1.14.0.
2022-11-24 12:31:36 +01:00
zimoun
c4df4af6ba
gnu: r-metapod: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-metapod): Update to 1.6.0.
2022-11-24 12:31:36 +01:00
zimoun
3e7dbe7804
gnu: r-ggtree: Update to 3.6.2.
...
* gnu/packages/bioconductor.scm (r-ggtree): Update to 3.6.2.
[propagated-inputs]: Add r-cli.
2022-11-24 12:31:36 +01:00
zimoun
0bb3b953eb
gnu: r-treeio: Update to 1.22.0.
...
* gnu/packages/bioconductor.scm (r-treeio): Update to 1.22.0.
2022-11-24 12:31:36 +01:00
zimoun
b711b25c09
gnu: r-scaledmatrix: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-scaledmatrix): Update to 1.6.0.
2022-11-24 12:31:36 +01:00
zimoun
ccd857d8cf
gnu: r-biocneighbors: Update to 1.16.0.
...
* gnu/packages/bioconductor.scm (r-biocneighbors): Update to 1.16.0.
2022-11-24 12:31:35 +01:00
zimoun
c3b6219435
gnu: r-ruvseq: Update to 1.32.0.
...
* gnu/packages/bioconductor.scm (r-ruvseq): Update to 1.32.0.
2022-11-24 12:31:35 +01:00
zimoun
7146ee20d9
gnu: r-dnabarcodes: Update to 1.28.0.
...
* gnu/packages/bioconductor.scm (r-dnabarcodes): Update to 1.28.0.
2022-11-24 12:31:35 +01:00
zimoun
45616713a7
gnu: r-inspect: Update to 1.28.0.
...
* gnu/packages/bioconductor.scm (r-inspect): Update to 1.28.0.
2022-11-24 12:31:35 +01:00
zimoun
83ff82481c
gnu: r-plgem: Update to 1.70.0.
...
* gnu/packages/bioconductor.scm (r-plgem): Update to 1.70.0.
2022-11-24 12:31:35 +01:00
zimoun
870a334f6d
gnu: r-rots: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-rots): Update to 1.26.0.
2022-11-24 12:31:35 +01:00
zimoun
9b615c408f
gnu: r-glimma: Update to 2.8.0.
...
* gnu/packages/bioconductor.scm (r-glimma): Update to 2.8.0.
2022-11-24 12:31:34 +01:00
zimoun
7bf9521e85
gnu: r-goseq: Update to 1.50.0.
...
* gnu/packages/bioconductor.scm (r-goseq): Update to 1.50.0.
2022-11-24 12:31:34 +01:00
zimoun
74852cb46d
gnu: r-ctc: Update to 1.72.0.
...
* gnu/packages/bioconductor.scm (r-ctc): Update to 1.72.0.
2022-11-24 12:31:34 +01:00
zimoun
8d62cfc7d1
gnu: r-genomicinteractions: Update to 1.32.0.
...
* gnu/packages/bioconductor.scm (r-genomicinteractions): Update to 1.32.0.
2022-11-24 12:31:34 +01:00
zimoun
e7393c32f4
gnu: r-interactionset: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-interactionset): Update to 1.26.0.
2022-11-24 12:31:34 +01:00
zimoun
e4ab1ac23e
gnu: r-riboseqr: Update to 1.32.0.
...
* gnu/packages/bioconductor.scm (r-riboseqr): Update to 1.32.0.
2022-11-24 12:31:34 +01:00
zimoun
a0465bd116
gnu: r-riboprofiling: Update to 1.28.0.
...
* gnu/packages/bioconductor.scm (r-riboprofiling): Update to 1.28.0.
2022-11-24 12:31:34 +01:00
zimoun
5d32e4a62a
gnu: r-chipcomp: Update to 1.28.0.
...
* gnu/packages/bioconductor.scm (r-chipcomp): Update to 1.28.0.
2022-11-24 12:31:34 +01:00
zimoun
721c125de4
gnu: r-bayseq: Update to 2.31.0.
...
* gnu/packages/bioconductor.scm (r-bayseq): Update to 2.31.0.
2022-11-24 12:31:33 +01:00
zimoun
7803ed86fe
gnu: r-qdnaseq: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-qdnaseq): Update to 1.34.0.
2022-11-24 12:31:33 +01:00
zimoun
564afa20fb
gnu: r-cghcall: Update to 2.60.0.
...
* gnu/packages/bioconductor.scm (r-cghcall): Update to 2.60.0.
2022-11-24 12:31:33 +01:00
zimoun
67799955b4
gnu: r-cghbase: Update to 1.58.0.
...
* gnu/packages/bioconductor.scm (r-cghbase): Update to 1.58.0.
2022-11-24 12:31:33 +01:00
zimoun
78d4b00882
gnu: r-marray: Update to 1.76.0.
...
* gnu/packages/bioconductor.scm (r-marray): Update to 1.76.0.
2022-11-24 12:31:33 +01:00
zimoun
03862582db
gnu: r-matrixgenerics: Update to 1.10.0.
...
* gnu/packages/bioconductor.scm (r-matrixgenerics): Update to 1.10.0.
2022-11-24 12:31:33 +01:00
zimoun
73add01b22
gnu: r-chippeakanno: Update to 3.32.0.
...
* gnu/packages/bioconductor.scm (r-chippeakanno): Update to 3.32.0.
2022-11-24 12:31:33 +01:00
zimoun
7a11e32dae
gnu: r-graph: Update to 1.76.0.
...
* gnu/packages/bioconductor.scm (r-graph): Update to 1.76.0.
2022-11-24 12:31:32 +01:00
zimoun
77d10366d4
gnu: r-multtest: Update to 2.54.0.
...
* gnu/packages/bioconductor.scm (r-multtest): Update to 2.54.0.
2022-11-24 12:31:32 +01:00
zimoun
d4d9ce2801
gnu: r-mbkmeans: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-mbkmeans): Update to 1.14.0.
2022-11-24 12:31:32 +01:00
zimoun
c5b6670167
gnu: r-diffbind: Update to 3.8.1.
...
* gnu/packages/bioconductor.scm (r-diffbind): Update to 3.8.1.
2022-11-24 12:31:32 +01:00
zimoun
6f68e3f42d
gnu: r-greylistchip: Update to 1.30.0.
...
* gnu/packages/bioconductor.scm (r-greylistchip): Update to 1.30.0.
2022-11-24 12:31:32 +01:00
zimoun
9bb55dfa8d
gnu: r-apeglm: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-apeglm): Update to 1.20.0.
2022-11-24 12:31:32 +01:00
zimoun
11c4bc08db
gnu: r-qvalue: Update to 2.30.0.
...
* gnu/packages/bioconductor.scm (r-qvalue): Update to 2.30.0.
2022-11-24 12:31:32 +01:00
zimoun
c05ab72966
gnu: r-oligo: Update to 1.62.0.
...
* gnu/packages/bioconductor.scm (r-oligo): Update to 1.62.0.
2022-11-24 12:31:31 +01:00
zimoun
4fba8d9d7c
gnu: r-oligoclasses: Update to 1.60.0.
...
* gnu/packages/bioconductor.scm (r-oligoclasses): Update to 1.60.0.
2022-11-24 12:31:31 +01:00
zimoun
7db100f21f
gnu: r-geneplotter: Update to 1.76.0.
...
* gnu/packages/bioconductor.scm (r-geneplotter): Update to 1.76.0.
2022-11-24 12:31:31 +01:00
zimoun
44ec429d48
gnu: r-zellkonverter: Update to 1.8.0.
...
* gnu/packages/bioconductor.scm (r-zellkonverter): Update to 1.8.0.
2022-11-24 12:31:31 +01:00
zimoun
7a0c779a91
gnu: r-zlibbioc: Update to 1.44.0.
...
* gnu/packages/bioconductor.scm (r-zlibbioc): Update to 1.44.0.
2022-11-24 12:31:31 +01:00
zimoun
9a707db7ee
gnu: r-xvector: Update to 0.38.0.
...
* gnu/packages/bioconductor.scm (r-xvector): Update to 0.38.0.
2022-11-24 12:31:30 +01:00
zimoun
8fe91b692a
gnu: r-xmapbridge: Update to 1.56.0.
...
* gnu/packages/bioconductor.scm (r-xmapbridge): Update to 1.56.0.
2022-11-24 12:31:30 +01:00
zimoun
e03bff40fc
gnu: r-xina: Update to 1.16.0.
...
* gnu/packages/bioconductor.scm (r-xina): Update to 1.16.0.
2022-11-24 12:31:30 +01:00
zimoun
32afcf9b90
gnu: r-vsn: Update to 3.66.0.
...
* gnu/packages/bioconductor.scm (r-vsn): Update to 3.66.0.
2022-11-24 12:31:30 +01:00
zimoun
9501ec8c4c
gnu: r-variantannotation: Update to 1.44.0.
...
* gnu/packages/bioconductor.scm (r-variantannotation): Update to 1.44.0.
2022-11-24 12:31:30 +01:00
zimoun
c1790d17fc
gnu: r-tximport: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-tximport): Update to 1.26.0.
2022-11-24 12:31:30 +01:00
zimoun
88440606c7
gnu: r-topgo: Update to 2.50.0.
...
* gnu/packages/bioconductor.scm (r-topgo): Update to 2.50.0.
2022-11-24 12:31:29 +01:00
zimoun
8ded00c7da
gnu: r-systempiper: Update to 2.4.0.
...
* gnu/packages/bioconductor.scm (r-systempiper): Update to 2.4.0.
2022-11-24 12:31:29 +01:00
zimoun
adedfb51fa
gnu: r-sva: Update to 3.46.0.
...
* gnu/packages/bioconductor.scm (r-sva): Update to 3.46.0.
2022-11-24 12:31:29 +01:00
zimoun
ab4f54d5f9
gnu: r-summarizedexperiment: Update to 1.28.0.
...
* gnu/packages/bioconductor.scm (r-summarizedexperiment): Update to 1.28.0.
2022-11-24 12:31:29 +01:00
zimoun
f87a87eee8
gnu: r-structuralvariantannotation: Update to 1.13.0.
...
* gnu/packages/bioconductor.scm (r-structuralvariantannotation): Update to 1.13.0.
2022-11-24 12:31:29 +01:00
zimoun
3b89c301db
gnu: r-stringdb: Update to 2.10.0.
...
* gnu/packages/bioconductor.scm (r-stringdb): Update to 2.10.0.
2022-11-24 12:31:29 +01:00
zimoun
3f307e6ebc
gnu: r-stager: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-stager): Update to 1.20.0.
2022-11-24 12:31:29 +01:00
zimoun
e4e4b97a67
gnu: r-slingshot: Update to 2.6.0.
...
* gnu/packages/bioconductor.scm (r-slingshot): Update to 2.6.0.
2022-11-24 12:31:29 +01:00
zimoun
c07b603d64
gnu: r-trajectoryutils: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-trajectoryutils): Update to 1.6.0.
2022-11-24 12:31:28 +01:00
zimoun
2c821d2ce5
gnu: r-transcriptr: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-transcriptr): Update to 1.26.0.
2022-11-24 12:31:28 +01:00
zimoun
e5e22f3352
gnu: r-simplifyenrichment: Update to 1.8.0.
...
* gnu/packages/bioconductor.scm (r-simplifyenrichment): Update to 1.8.0.
2022-11-24 12:31:28 +01:00
zimoun
94af5e4e96
gnu: r-shortread: Update to 1.56.0.
...
* gnu/packages/bioconductor.scm (r-shortread): Update to 1.56.0.
2022-11-24 12:31:28 +01:00
zimoun
1ca80ed5a5
gnu: r-seqpattern: Update to 1.30.0.
...
* gnu/packages/bioconductor.scm (r-seqpattern): Update to 1.30.0.
2022-11-24 12:31:28 +01:00
zimoun
59e810b232
gnu: r-seqlogo: Update to 1.64.0.
...
* gnu/packages/bioconductor.scm (r-seqlogo): Update to 1.64.0.
2022-11-24 12:31:28 +01:00
zimoun
0685695155
gnu: r-scry: Update to 1.10.0.
...
* gnu/packages/bioconductor.scm (r-scry): Update to 1.10.0.
2022-11-24 12:31:27 +01:00
zimoun
6fb3733394
gnu: r-scmap: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-scmap): Update to 1.20.0.
2022-11-24 12:31:27 +01:00
zimoun
4d8a2f5562
gnu: r-scdblfinder: Update to 1.12.0.
...
* gnu/packages/bioconductor.scm (r-scdblfinder): Update to 1.12.0.
2022-11-24 12:31:27 +01:00
zimoun
d6fac1138f
gnu: r-scannotatr: Update to 1.4.0.
...
* gnu/packages/bioconductor.scm (r-scannotatr): Update to 1.4.0.
2022-11-24 12:31:27 +01:00
zimoun
855ea2a8f1
gnu: r-rtracklayer: Update to 1.58.0.
...
* gnu/packages/bioconductor.scm (r-rtracklayer): Update to 1.58.0.
2022-11-24 12:31:27 +01:00
zimoun
39c52a42bd
gnu: r-rsamtools: Update to 2.14.0.
...
* gnu/packages/bioconductor.scm (r-rsamtools): Update to 2.14.0.
2022-11-24 12:31:27 +01:00
zimoun
a7afc50aa3
gnu: r-rhdf5filters: Update to 1.10.0.
...
* gnu/packages/bioconductor.scm (r-rhdf5filters): Update to 1.10.0.
2022-11-24 12:31:27 +01:00
zimoun
dfec056be2
gnu: r-rhdf5: Update to 2.42.0.
...
* gnu/packages/bioconductor.scm (r-rhdf5): Update to 2.42.0.
2022-11-24 12:31:26 +01:00
zimoun
c45dc1e273
gnu: r-reportingtools: Update to 2.38.0.
...
* gnu/packages/bioconductor.scm (r-reportingtools): Update to 2.38.0.
2022-11-24 12:31:26 +01:00
zimoun
607eae1e56
gnu: r-regioner: Update to 1.30.0.
...
* gnu/packages/bioconductor.scm (r-regioner): Update to 1.30.0.
2022-11-24 12:31:26 +01:00
zimoun
b7ec827477
gnu: r-rcas: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-rcas): Update to 1.24.0.
2022-11-24 12:31:26 +01:00
zimoun
4e861e7f9a
gnu: r-rbgl: Update to 1.74.0.
...
* gnu/packages/bioconductor.scm (r-rbgl): Update to 1.74.0.
2022-11-24 12:31:26 +01:00
zimoun
dd27fffd32
gnu: r-protgenerics: Update to 1.30.0.
...
* gnu/packages/bioconductor.scm (r-protgenerics): Update to 1.30.0.
2022-11-24 12:31:26 +01:00
zimoun
cf106821f5
gnu: r-pcamethods: Update to 1.90.0.
...
* gnu/packages/bioconductor.scm (r-pcamethods): Update to 1.90.0.
2022-11-24 12:31:26 +01:00
zimoun
34b615e3e7
gnu: r-pcaexplorer: Update to 2.24.0.
...
* gnu/packages/bioconductor.scm (r-pcaexplorer): Update to 2.24.0.
2022-11-24 12:31:26 +01:00
zimoun
7c8829ae33
gnu: r-organismdbi: Update to 1.40.0.
...
* gnu/packages/bioconductor.scm (r-organismdbi): Update to 1.40.0.
2022-11-24 12:31:25 +01:00
zimoun
66f1939df5
gnu: r-organism-dplyr: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-organism-dplyr): Update to 1.26.0.
2022-11-24 12:31:25 +01:00
zimoun
0fbb12153b
gnu: r-mzr: Update to 2.32.0.
...
* gnu/packages/bioconductor.scm (r-mzr): Update to 2.32.0.
2022-11-24 12:31:25 +01:00
zimoun
8735f10995
gnu: r-mzid: Update to 1.36.0.
...
* gnu/packages/bioconductor.scm (r-mzid): Update to 1.36.0.
2022-11-24 12:31:25 +01:00
zimoun
57ae5f7196
gnu: r-msnid: Update to 1.32.0.
...
* gnu/packages/bioconductor.scm (r-msnid): Update to 1.32.0.
2022-11-24 12:31:25 +01:00
zimoun
66edbf1635
gnu: r-msnbase: Update to 2.24.0.
...
* gnu/packages/bioconductor.scm (r-msnbase): Update to 2.24.0.
2022-11-24 12:31:25 +01:00
zimoun
a7936348db
gnu: r-mutationalpatterns: Update to 3.8.0.
...
* gnu/packages/bioconductor.scm (r-mutationalpatterns): Update to 3.8.0.
2022-11-24 12:31:25 +01:00
zimoun
cb7e5ebd54
gnu: r-muscat: Update to 1.12.0.
...
* gnu/packages/bioconductor.scm (r-muscat): Update to 1.12.0.
2022-11-24 12:31:24 +01:00
zimoun
fa0eda6e3f
gnu: r-methylkit: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-methylkit): Update to 1.24.0.
2022-11-24 12:31:24 +01:00
zimoun
4fd64b03b4
gnu: r-made4: Update to 1.72.0.
...
* gnu/packages/bioconductor.scm (r-made4): Update to 1.72.0.
2022-11-24 12:31:24 +01:00
zimoun
0a699ea182
gnu: r-limma: Update to 3.54.0.
...
* gnu/packages/bioconductor.scm (r-limma): Update to 3.54.0.
2022-11-24 12:31:24 +01:00
zimoun
413f96c95f
gnu: r-lfa: Update to 1.28.0.
...
* gnu/packages/bioconductor.scm (r-lfa): Update to 1.28.0.
2022-11-24 12:31:24 +01:00
zimoun
6bf50ca57a
gnu: r-keggrest: Update to 1.38.0.
...
* gnu/packages/bioconductor.scm (r-keggrest): Update to 1.38.0.
2022-11-24 12:31:24 +01:00
zimoun
1ba8e9e75c
gnu: r-interactivedisplaybase: Update to 1.36.0.
...
* gnu/packages/bioconductor.scm (r-interactivedisplaybase): Update to 1.36.0.
2022-11-24 12:31:24 +01:00
zimoun
aa25663162
gnu: r-impute: Update to 1.72.1.
...
* gnu/packages/bioconductor.scm (r-impute): Update to 1.72.1.
2022-11-24 12:31:23 +01:00
zimoun
ce2688cd3b
gnu: r-rhtslib: Update to 2.0.0.
...
* gnu/packages/bioconductor.scm (r-rhtslib): Update to 2.0.0.
2022-11-24 12:31:23 +01:00
zimoun
aa0e18c1be
gnu: r-hpar: Update to 1.40.0.
...
* gnu/packages/bioconductor.scm (r-hpar): Update to 1.40.0.
2022-11-24 12:31:23 +01:00
zimoun
60724024de
gnu: r-gseabase: Update to 1.60.0.
...
* gnu/packages/bioconductor.scm (r-gseabase): Update to 1.60.0.
2022-11-24 12:31:23 +01:00
zimoun
25c5901adc
gnu: r-gostats: Update to 2.64.0.
...
* gnu/packages/bioconductor.scm (r-gostats): Update to 2.64.0.
2022-11-24 12:31:23 +01:00
zimoun
169c0b7fa1
gnu: r-genomicranges: Update to 1.50.1.
...
* gnu/packages/bioconductor.scm (r-genomicranges): Update to 1.50.1.
2022-11-24 12:31:23 +01:00
zimoun
437ad93ce7
gnu: r-genomicfiles: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-genomicfiles): Update to 1.34.0.
2022-11-24 12:31:23 +01:00
zimoun
f2910e5604
gnu: r-genomicfeatures: Update to 1.50.2.
...
* gnu/packages/bioconductor.scm (r-genomicfeatures): Update to 1.50.2.
2022-11-24 12:31:23 +01:00
zimoun
d7e456cc13
gnu: r-genomicalignments: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-genomicalignments): Update to 1.34.0.
2022-11-24 12:31:22 +01:00
zimoun
c7c3bfa250
gnu: r-genomeinfodb: Update to 1.34.3.
...
* gnu/packages/bioconductor.scm (r-genomeinfodb): Update to 1.34.3.
2022-11-24 12:31:22 +01:00
zimoun
4e501fbb67
gnu: r-genomation: Update to 1.30.0.
...
* gnu/packages/bioconductor.scm (r-genomation): Update to 1.30.0.
2022-11-24 12:31:22 +01:00
zimoun
533a3d9914
gnu: r-geneoverlap: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-geneoverlap): Update to 1.34.0.
2022-11-24 12:31:22 +01:00
zimoun
b6117c1837
gnu: r-genefilter: Update to 1.80.0.
...
* gnu/packages/bioconductor.scm (r-genefilter): Update to 1.80.0.
2022-11-24 12:31:22 +01:00
zimoun
0c1edd86f2
gnu: r-gage: Update to 2.48.0.
...
* gnu/packages/bioconductor.scm (r-gage): Update to 2.48.0.
2022-11-24 12:31:22 +01:00
zimoun
3ff9f819f7
gnu: r-fastseg: Update to 1.44.0.
...
* gnu/packages/bioconductor.scm (r-fastseg): Update to 1.44.0.
2022-11-24 12:31:22 +01:00
zimoun
aad9a5337c
gnu: r-ensembldb: Update to 2.22.0.
...
* gnu/packages/bioconductor.scm (r-ensembldb): Update to 2.22.0.
2022-11-24 12:31:21 +01:00
zimoun
4eb513e7df
gnu: r-edger: Update to 3.40.0.
...
* gnu/packages/bioconductor.scm (r-edger): Update to 3.40.0.
2022-11-24 12:31:21 +01:00
zimoun
bd76f479de
gnu: r-edaseq: Update to 2.32.0.
...
* gnu/packages/bioconductor.scm (r-edaseq): Update to 2.32.0.
2022-11-24 12:31:21 +01:00
zimoun
3a15509cb6
gnu: r-dittoseq: Update to 1.10.0.
...
* gnu/packages/bioconductor.scm (r-dittoseq): Update to 1.10.0.
2022-11-24 12:31:21 +01:00
zimoun
0d9a766fa7
gnu: r-dirichletmultinomial: Update to 1.40.0.
...
* gnu/packages/bioconductor.scm (r-dirichletmultinomial): Update to 1.40.0.
2022-11-24 12:31:21 +01:00
zimoun
1e5a6a9fb2
gnu: r-diffcyt: Update to 1.18.0.
...
* gnu/packages/bioconductor.scm (r-diffcyt): Update to 1.18.0.
2022-11-24 12:31:21 +01:00
zimoun
16973c9796
gnu: r-dexseq: Update to 1.44.0.
...
* gnu/packages/bioconductor.scm (r-dexseq): Update to 1.44.0.
2022-11-24 12:31:21 +01:00
zimoun
ecd3d1ca63
gnu: r-deseq2: Update to 1.38.1.
...
* gnu/packages/bioconductor.scm (r-deseq2): Update to 1.38.1.
2022-11-24 12:31:21 +01:00
zimoun
539a39c4ef
gnu: r-copywriter: Update to 2.29.0.
...
* gnu/packages/bioconductor.scm (r-copywriter): Update to 2.29.0.
2022-11-24 12:31:21 +01:00
zimoun
ba197ae988
gnu: r-complexheatmap: Update to 2.14.0.
...
* gnu/packages/bioconductor.scm (r-complexheatmap): Update to 2.14.0.
2022-11-24 12:31:21 +01:00
zimoun
bfed8f183d
gnu: r-chipseq: Update to 1.48.0.
...
* gnu/packages/bioconductor.scm (r-chipseq): Update to 1.48.0.
2022-11-24 12:31:20 +01:00
zimoun
32629c01ef
gnu: r-chipseeker: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-chipseeker): Update to 1.34.0.
2022-11-24 12:31:20 +01:00
zimoun
9d8107b4d7
gnu: r-category: Update to 2.64.0.
...
* gnu/packages/bioconductor.scm (r-category): Update to 2.64.0.
2022-11-24 12:31:20 +01:00
zimoun
bebf55cbd6
gnu: r-bsgenome: Update to 1.66.1.
...
* gnu/packages/bioconductor.scm (r-bsgenome): Update to 1.66.1.
2022-11-24 12:31:20 +01:00
zimoun
3e945a87e0
gnu: r-biovizbase: Update to 1.46.0.
...
* gnu/packages/bioconductor.scm (r-biovizbase): Update to 1.46.0.
2022-11-24 12:31:20 +01:00
zimoun
30f2fc13c6
gnu: r-biostrings: Update to 2.66.0.
...
* gnu/packages/bioconductor.scm (r-biostrings): Update to 2.66.0.
2022-11-24 12:31:20 +01:00
zimoun
9048d502da
gnu: r-biocparallel: Update to 1.32.1.
...
* gnu/packages/bioconductor.scm (r-biocparallel): Update to 1.32.1.
[arguments]<phases>: Update 'make-reproducible' to released files.
[propagated-inputs]: Add r-cpp11.
2022-11-24 12:31:20 +01:00
zimoun
1ef39d3d28
gnu: r-biomart: Update to 2.54.0.
...
* gnu/packages/bioconductor.scm (r-biomart): Update to 2.54.0.
2022-11-24 12:31:20 +01:00
zimoun
a0d2db2e08
gnu: r-biobase: Update to 2.58.0.
...
* gnu/packages/bioconductor.scm (r-biobase): Update to 2.58.0.
2022-11-24 12:31:20 +01:00
zimoun
822ad274c9
gnu: r-bamsignals: Update to 1.30.0.
...
* gnu/packages/bioconductor.scm (r-bamsignals): Update to 1.30.0.
2022-11-24 12:31:20 +01:00
zimoun
203ddafa09
gnu: r-aroma-light: Update to 3.28.0.
...
* gnu/packages/bioconductor.scm (r-aroma-light): Update to 3.28.0.
2022-11-24 12:31:19 +01:00
zimoun
c5bcfef628
gnu: r-annotationhub: Update to 3.6.0.
...
* gnu/packages/bioconductor.scm (r-annotationhub): Update to 3.6.0.
2022-11-24 12:31:19 +01:00
zimoun
065fdc2bb1
gnu: r-annotationforge: Update to 1.40.0.
...
* gnu/packages/bioconductor.scm (r-annotationforge): Update to 1.40.0.
2022-11-24 12:31:19 +01:00
zimoun
748599dc6b
gnu: r-annotationfilter: Update to 1.22.0.
...
* gnu/packages/bioconductor.scm (r-annotationfilter): Update to 1.22.0.
2022-11-24 12:31:19 +01:00
zimoun
89f6d1d425
gnu: r-annotationdbi: Update to 1.60.0.
...
* gnu/packages/bioconductor.scm (r-annotationdbi): Update to 1.60.0.
2022-11-24 12:31:19 +01:00
zimoun
dc8c3024c0
gnu: r-annotate: Update to 1.76.0.
...
* gnu/packages/bioconductor.scm (r-annotate): Update to 1.76.0.
2022-11-24 12:31:19 +01:00
zimoun
261e3c12c2
gnu: r-affxparser: Update to 1.70.0.
...
* gnu/packages/bioconductor.scm (r-affxparser): Update to 1.70.0.
2022-11-24 12:31:19 +01:00
zimoun
45c83ffbe5
gnu: r-affyio: Update to 1.68.0.
...
* gnu/packages/bioconductor.scm (r-affyio): Update to 1.68.0.
2022-11-24 12:31:19 +01:00
zimoun
9947e412ac
gnu: r-affycoretools: Update to 1.70.0.
...
* gnu/packages/bioconductor.scm (r-affycoretools): Update to 1.70.0.
2022-11-24 12:31:19 +01:00
zimoun
6e2871262c
gnu: r-affycontam: Update to 1.56.0.
...
* gnu/packages/bioconductor.scm (r-affycontam): Update to 1.56.0.
2022-11-24 12:31:19 +01:00
zimoun
ceb39bfb39
gnu: r-affycompatible: Update to 1.58.0.
...
* gnu/packages/bioconductor.scm (r-affycompatible): Update to 1.58.0.
2022-11-24 12:31:18 +01:00
zimoun
7034dcc2d6
gnu: r-affycomp: Update to 1.74.0.
...
* gnu/packages/bioconductor.scm (r-affycomp): Update to 1.74.0.
2022-11-24 12:31:18 +01:00
zimoun
b7359c3b17
gnu: r-affy: Update to 1.76.0.
...
* gnu/packages/bioconductor.scm (r-affy): Update to 1.76.0.
2022-11-24 12:31:18 +01:00
zimoun
4daec4dc4d
gnu: r-isoformswitchanalyzer: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-isoformswitchanalyzer): Update to 1.20.0.
2022-11-24 12:31:18 +01:00
zimoun
cc0464f530
gnu: r-iranges: Update to 2.32.0.
...
* gnu/packages/bioconductor.scm (r-iranges): Update to 2.32.0.
2022-11-24 12:31:18 +01:00
zimoun
e73a833dd2
gnu: r-infercnv: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-infercnv): Update to 1.14.0.
[propagated-inputs]: Remove r-leiden and r-reshape. Add r-igraph, r-reshape2,
and r-seurat.
2022-11-24 12:31:18 +01:00
zimoun
2564b7bcff
gnu: r-ideoviz: Update to 1.34.0.
...
* gnu/packages/bioconductor.scm (r-ideoviz): Update to 1.34.0.
2022-11-24 12:31:18 +01:00
zimoun
81ba7cc732
gnu: r-bluster: Update to 1.8.0.
...
* gnu/packages/bioconductor.scm (r-bluster): Update to 1.8.0.
2022-11-24 12:31:18 +01:00
zimoun
de72bdab94
gnu: r-drimseq: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-drimseq): Update to 1.26.0.
2022-11-24 12:31:17 +01:00
zimoun
c7bf9a1a58
gnu: r-derfinderhelper: Update to 1.32.0.
...
* gnu/packages/bioconductor.scm (r-derfinderhelper): Update to 1.32.0.
2022-11-24 12:31:17 +01:00
zimoun
2e48b8b028
gnu: r-delayedarray: Update to 0.24.0.
...
* gnu/packages/bioconductor.scm (r-delayedarray): Update to 0.24.0.
2022-11-24 12:31:17 +01:00
zimoun
b8f0bf3e4d
gnu: r-deepsnv: Update to 1.44.0.
...
* gnu/packages/bioconductor.scm (r-deepsnv): Update to 1.44.0.
2022-11-24 12:31:17 +01:00
zimoun
ef81f5f55e
gnu: r-decoupler: Update to 2.4.0.
...
* gnu/packages/bioconductor.scm (r-decoupler): Update to 2.4.0.
2022-11-24 12:31:17 +01:00
zimoun
d3f0d2abe4
gnu: r-deconvr: Update to 1.4.0.
...
* gnu/packages/bioconductor.scm (r-deconvr): Update to 1.4.0.
2022-11-24 12:31:17 +01:00
zimoun
f7dd1e4552
gnu: r-decontam: Update to 1.18.0.
...
* gnu/packages/bioconductor.scm (r-decontam): Update to 1.18.0.
2022-11-24 12:31:17 +01:00
zimoun
36c940a4d7
gnu: r-deconrnaseq: Update to 1.40.0.
...
* gnu/packages/bioconductor.scm (r-deconrnaseq): Update to 1.40.0.
2022-11-24 12:31:17 +01:00
zimoun
9b717bcad9
gnu: r-decomptumor2sig: Update to 2.14.0.
...
* gnu/packages/bioconductor.scm (r-decomptumor2sig): Update to 2.14.0.
2022-11-24 12:31:17 +01:00
zimoun
8fd5bbc31e
gnu: r-decomplexdisease: Update to 1.18.0.
...
* gnu/packages/bioconductor.scm (r-decomplexdisease): Update to 1.18.0.
2022-11-24 12:31:17 +01:00
zimoun
483084b7f9
gnu: r-deco: Update to 1.13.0.
...
* gnu/packages/bioconductor.scm (r-deco): Update to 1.13.0.
2022-11-24 12:31:16 +01:00
zimoun
bd622e1464
gnu: r-decipher: Update to 2.26.0.
...
* gnu/packages/bioconductor.scm (r-decipher): Update to 2.26.0.
2022-11-24 12:31:16 +01:00
zimoun
e3262cc2e1
gnu: r-debcam: Update to 1.16.0.
...
* gnu/packages/bioconductor.scm (r-debcam): Update to 1.16.0.
2022-11-24 12:31:16 +01:00
zimoun
00400127ef
gnu: r-dearseq: Update to 1.10.0.
...
* gnu/packages/bioconductor.scm (r-dearseq): Update to 1.10.0.
[propagated-inputs]: Add r-scattermore.
2022-11-24 12:31:16 +01:00
zimoun
3a90895228
gnu: r-damefinder: Update to 1.10.0.
...
* gnu/packages/bioconductor.scm (r-damefinder): Update to 1.10.0.
2022-11-24 12:31:16 +01:00
zimoun
f5118505f7
gnu: r-dama: Update to 1.70.0.
...
* gnu/packages/bioconductor.scm (r-dama): Update to 1.70.0.
2022-11-24 12:31:16 +01:00
zimoun
f0ed6c519c
gnu: r-cummerbund: Update to 2.40.0.
...
* gnu/packages/bioconductor.scm (r-cummerbund): Update to 2.40.0.
2022-11-24 12:31:16 +01:00
zimoun
2bfc463a42
gnu: r-coverageview: Update to 1.36.0.
...
* gnu/packages/bioconductor.scm (r-coverageview): Update to 1.36.0.
2022-11-24 12:31:16 +01:00
zimoun
176e20a1f1
gnu: r-biocgenerics: Update to 0.44.0.
...
* gnu/packages/bioconductor.scm (r-biocgenerics): Update to 0.44.0.
2022-11-24 12:31:16 +01:00
zimoun
9e0e4bf347
gnu: r-biocversion: Update to 3.16.0.
...
* gnu/packages/bioconductor.scm (r-biocversion): Update to 3.16.0.
2022-11-24 12:31:15 +01:00
zimoun
6af3770787
gnu: r-barcodetrackr: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-barcodetrackr): Update to 1.6.0.
2022-11-24 12:31:15 +01:00
zimoun
c032441772
gnu: r-banocc: Update to 1.22.0.
...
* gnu/packages/bioconductor.scm (r-banocc): Update to 1.22.0.
2022-11-24 12:31:15 +01:00
zimoun
f3038efb80
gnu: r-bandits: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-bandits): Update to 1.14.0.
2022-11-24 12:31:15 +01:00
zimoun
f07c0d00cd
gnu: r-bambu: Update to 3.0.1.
...
* gnu/packages/bioconductor.scm (r-bambu): Update to 3.0.1.
2022-11-24 12:31:15 +01:00
zimoun
5b4f7d11ae
gnu: r-badregionfinder: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-badregionfinder): Update to 1.26.0.
2022-11-24 12:31:15 +01:00
zimoun
25104e7a6b
gnu: r-bader: Update to 1.36.0.
...
* gnu/packages/bioconductor.scm (r-bader): Update to 1.36.0.
2022-11-24 12:31:15 +01:00
zimoun
5fd038bd49
gnu: r-bac: Update to 1.58.0.
...
* gnu/packages/bioconductor.scm (r-bac): Update to 1.58.0.
2022-11-24 12:31:15 +01:00
zimoun
91d928706a
gnu: r-basespacer: Update to 1.42.0.
...
* gnu/packages/bioconductor.scm (r-basespacer): Update to 1.42.0.
2022-11-24 12:31:15 +01:00
zimoun
e9a7c42deb
gnu: r-baalchip: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-baalchip): Update to 1.24.0.
2022-11-24 12:31:15 +01:00
zimoun
7bb05be10a
gnu: r-awst: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-awst): Update to 1.6.0.
2022-11-24 12:31:14 +01:00
zimoun
faddfa8aed
gnu: r-awfisher: Update to 1.12.0.
...
* gnu/packages/bioconductor.scm (r-awfisher): Update to 1.12.0.
2022-11-24 12:31:14 +01:00
zimoun
381907d25d
gnu: r-attract: Update to 1.50.0.
...
* gnu/packages/bioconductor.scm (r-attract): Update to 1.50.0.
2022-11-24 12:31:14 +01:00
zimoun
f185d3f680
gnu: r-atsnp: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-atsnp): Update to 1.14.0.
2022-11-24 12:31:14 +01:00
zimoun
110ac40dea
gnu: r-atena: Update to 1.4.0.
...
* gnu/packages/bioconductor.scm (r-atena): Update to 1.4.0.
2022-11-24 12:31:14 +01:00
zimoun
a1dbd6b2da
gnu: r-asset: Update to 2.16.0.
...
* gnu/packages/bioconductor.scm (r-asset): Update to 2.16.0.
2022-11-24 12:31:14 +01:00
zimoun
930fab74f2
gnu: r-assessorf: Update to 1.16.0.
...
* gnu/packages/bioconductor.scm (r-assessorf): Update to 1.16.0.
2022-11-24 12:31:14 +01:00
zimoun
dfb78fd76e
gnu: r-aspli: Update to 2.8.0.
...
* gnu/packages/bioconductor.scm (r-aspli): Update to 2.8.0.
2022-11-24 12:31:14 +01:00
zimoun
b89305c18d
gnu: r-asgsca: Update to 1.32.0.
...
* gnu/packages/bioconductor.scm (r-asgsca): Update to 1.32.0.
2022-11-24 12:31:14 +01:00
zimoun
110f0f8483
gnu: r-aseb: Update to 1.42.0.
...
* gnu/packages/bioconductor.scm (r-aseb): Update to 1.42.0.
2022-11-24 12:31:14 +01:00
zimoun
1114e837a9
gnu: r-antiprofiles: Update to 1.38.0.
...
* gnu/packages/bioconductor.scm (r-antiprofiles): Update to 1.38.0.
2022-11-24 12:31:13 +01:00
zimoun
bc62494bc8
gnu: r-annmap: Update to 1.40.0.
...
* gnu/packages/bioconductor.scm (r-annmap): Update to 1.40.0.
2022-11-24 12:31:13 +01:00
zimoun
d18f8e367e
gnu: r-anf: Update to 1.20.0.
...
* gnu/packages/bioconductor.scm (r-anf): Update to 1.20.0.
2022-11-24 12:31:13 +01:00
zimoun
cbeefda563
gnu: r-aneufinder: Update to 1.26.0.
...
* gnu/packages/bioconductor.scm (r-aneufinder): Update to 1.26.0.
2022-11-24 12:31:13 +01:00
zimoun
eddbd27be5
gnu: r-aldex2: Update to 1.30.0.
...
* gnu/packages/bioconductor.scm (r-aldex2): Update to 1.30.0.
2022-11-24 12:31:13 +01:00
zimoun
190ed5f137
gnu: r-anaquin: Update to 2.22.0.
...
* gnu/packages/bioconductor.scm (r-anaquin): Update to 2.22.0.
2022-11-24 12:31:13 +01:00
zimoun
ecb91b3404
gnu: r-amaretto: Update to 1.13.0.
...
* gnu/packages/bioconductor.scm (r-amaretto): Update to 1.13.0.
2022-11-24 12:31:13 +01:00
zimoun
c9c4d6b501
gnu: r-amountain: Update to 1.24.0.
...
* gnu/packages/bioconductor.scm (r-amountain): Update to 1.24.0.
2022-11-24 12:31:13 +01:00
zimoun
f217ff6463
gnu: r-airpart: Update to 1.6.0.
...
* gnu/packages/bioconductor.scm (r-airpart): Update to 1.6.0.
2022-11-24 12:31:13 +01:00
zimoun
fb7a1b340b
gnu: r-agimicrorna: Update to 2.48.0.
...
* gnu/packages/bioconductor.scm (r-agimicrorna): Update to 2.48.0.
2022-11-24 12:31:12 +01:00
zimoun
5d09a99174
gnu: r-adductomicsr: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-adductomicsr): Update to 1.14.0.
2022-11-24 12:31:12 +01:00
zimoun
e153f4904d
gnu: r-agilp: Update to 3.30.0.
...
* gnu/packages/bioconductor.scm (r-agilp): Update to 3.30.0.
2022-11-24 12:31:12 +01:00
zimoun
fc60b9dfe7
gnu: r-aggregatebiovar: Update to 1.8.0.
...
* gnu/packages/bioconductor.scm (r-aggregatebiovar): Update to 1.8.0.
2022-11-24 12:31:12 +01:00
zimoun
f74c670c7f
gnu: r-agdex: Update to 1.46.0.
...
* gnu/packages/bioconductor.scm (r-agdex): Update to 1.46.0.
2022-11-24 12:31:12 +01:00
zimoun
014fc145f8
gnu: r-affyrnadegradation: Update to 1.44.0.
...
* gnu/packages/bioconductor.scm (r-affyrnadegradation): Update to 1.44.0.
2022-11-24 12:31:12 +01:00
zimoun
69ecae7801
gnu: r-affixcan: Update to 1.16.0.
...
* gnu/packages/bioconductor.scm (r-affixcan): Update to 1.16.0.
2022-11-24 12:31:12 +01:00
zimoun
b772bc7f75
gnu: r-adsplit: Update to 1.68.0.
...
* gnu/packages/bioconductor.scm (r-adsplit): Update to 1.68.0.
2022-11-24 12:31:12 +01:00
zimoun
daf0729533
gnu: r-adimpute: Update to 1.8.0.
...
* gnu/packages/bioconductor.scm (r-adimpute): Update to 1.8.0.
2022-11-24 12:31:12 +01:00
zimoun
a62284ad13
gnu: r-adamgui: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-adamgui): Update to 1.14.0.
2022-11-24 12:31:12 +01:00
zimoun
38fc0acf4d
gnu: r-adam: Update to 1.14.0.
...
* gnu/packages/bioconductor.scm (r-adam): Update to 1.14.0.
2022-11-24 12:31:11 +01:00
zimoun
f24085bfb3
gnu: r-absseq: Update to 1.52.0.
...
* gnu/packages/bioconductor.scm (r-absseq): Update to 1.52.0.
2022-11-24 12:31:11 +01:00
zimoun
349804b602
gnu: r-abarray: Update to 1.66.0.
...
* gnu/packages/bioconductor.scm (r-abarray): Update to 1.66.0.
2022-11-24 12:31:11 +01:00
zimoun
8f67799a1b
gnu: Add r-gson.
...
* gnu/packages/cran.scm (r-gson): New variable.
2022-11-24 12:31:11 +01:00
zimoun
176fd3b052
gnu: Add r-rorcid.
...
* gnu/packages/cran.scm (r-rorcid): New variable.
2022-11-24 12:31:11 +01:00
zimoun
3d073b86d3
gnu: Add r-biocbaseutils.
...
* gnu/packages/bioconductor.scm (r-biocbaseutils): New variable.
2022-11-24 12:31:11 +01:00
zimoun
e273f52358
gnu: r-ggprism: Update to 1.0.4.
...
* gnu/packages/cran.scm (r-ggprism): Update to 1.0.4.
2022-11-24 12:31:11 +01:00
zimoun
c70207ae3b
gnu: r-ggplot2: Update to 3.4.0.
...
* gnu/packages/statistics.scm (r-ggplot2): Update to 3.4.0.
[propagated-inputs]: Add r-cli, r-lifecycle, and r-vctrs.
2022-11-24 12:31:11 +01:00
zimoun
8105b3c09f
gnu: Add r-hdo-db.
...
* gnu/packages/bioconductor.scm (r-hdo-db): New variable.
2022-11-24 12:31:11 +01:00
zimoun
f4a7ccc976
guix: Upgrade to Bioconductor 3.16.
...
* guix/build-system/r.scm (bioconductor-uri): Bump Bioconductor version to
3.16.
* guix/import/cran.scm (%bioconductor-version): Same.
2022-11-24 12:31:11 +01:00
conses
68113dc249
gnu: Add whoogle-search.
...
* gnu/packages/python-web.scm (whoogle-search): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-24 09:44:25 +00:00
Bruno Victal
42898ae8ca
gnu: Add mympd.
...
* gnu/packages/mpd.scm (mympd): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-24 09:44:25 +00:00
Felix Lechner
963e86af87
gnu: Add hebcal.
...
* gnu/packages/calendar.scm (hebcal): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-24 09:44:25 +00:00
Felix Lechner
4ca2159bab
gnu: Add go-github-com-hebcal-hebcal-go.
...
* gnu/packages/golang.scm (go-github-com-hebcal-hebcal-go): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-24 09:44:25 +00:00
Felix Lechner
b0307b7c12
gnu: Add go-github-com-hebcal-gematriya.
...
* gnu/packages/golang.scm (go-github-com-hebcal-gematriya): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-24 09:44:25 +00:00
Felix Lechner
58eef1a258
gnu: Add go-github-com-nathan-osman-go-sunrise.
...
* gnu/packages/golang.scm (go-github-com-nathan-osman-go-sunrise): New
variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-24 09:44:24 +00:00
Paul A. Patience
8bde62d174
gnu: Add cl-tar.
...
* gnu/packages/lisp-xyz.scm (sbcl-tar, cl-tar, ecl-tar): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-24 10:16:50 +01:00
Paul A. Patience
b0c392ffcf
gnu: Add cl-tar-file.
...
* gnu/packages/lisp-xyz.scm (sbcl-tar-file, cl-tar-file, ecl-tar-file):
New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-24 10:11:18 +01:00
Paul A. Patience
8a620036d7
gnu: Add cl-40ants-doc.
...
* gnu/packages/lisp-xyz.scm (sbcl-40ants-doc, cl-40ants-doc,
ecl-40ants-doc): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-24 10:06:21 +01:00
kiasoc5
4a97591d0a
gnu: btrfs-progs: Update to 6.0.1.
...
* gnu/packages/linux.scm (btrfs-progs): Update to 6.0.1.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-24 14:15:58 +08:00
kiasoc5
6e142c69bd
gnu: xfsprogs: Update to 6.0.0.
...
* gnu/packages/linux.scm (xfsprogs): Update to 6.0.0.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-24 14:13:01 +08:00
jgart
148c75e75e
gnu: clasp: Update to 3.3.9.
...
* gnu/packages/maths.scm (clasp): Update to 3.3.9.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-24 14:08:54 +08:00
Simen Endsjø
c4bbdaf2db
gnu: font-iosevka: Update to 16.4.0.
...
* gnu/packages/fonts.scm (font-iosevka): Update to 16.4.0.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-24 14:07:11 +08:00
Tobias Geerinckx-Rice
22d44f8776
doc: Note that ‘guix package’ accepts file names.
...
* doc/guix.texi (Package Management)[Invoking guix package]:
Mention support for operating on store file names.
Co-authored-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-11-20 01:00:00 +01:00
Ludovic Courtès
d33ed58169
offload: Increase default 'overload-threshold' value.
...
When offloading to a single machine, the previous default value would
lead 'guix offload' to wait possibly for several minutes between
subsequent builds until normalized load would finally go below 0.6.
Increasing it mitigates that.
* guix/scripts/offload.scm (<build-machine>)[overload-threshold]: Bump
to 0.8.
* doc/guix.texi (Daemon Offload Setup): Likewise.
2022-11-23 19:34:42 +01:00
Ludovic Courtès
02a4e54250
gnu: grep: Skip 'triple-backref' test.
...
* gnu/packages/base.scm (grep)[arguments]: Add
'skip-triple-backref-test' phase for GNU/Hurd.
2022-11-23 19:34:42 +01:00
Ludovic Courtès
2b151eb286
gnu: gettext: Skip Gnulib tests that fail on GNU/Hurd.
...
* gnu/packages/gettext.scm (gettext-minimal)[arguments]: In
'patch-tests' phase, arrange to not run 'test-tls'. Adjust
'XFAIL_TESTS' flag passed to #:make-flags.
2022-11-23 19:34:42 +01:00
Jonathan Brielmaier
7a2082023a
NEWS: Update it.
...
* NEWS: Shepherd is already at 0.9.3 now.
2022-11-23 17:22:11 +01:00
Tobias Geerinckx-Rice
f7cb2b22a2
gnu: guile-torrent: Fix build.
...
* gnu/packages/guile-xyz.scm (guile-torrent)[propagated-inputs]:
Replace (3.0) guile-gcrypt with guile2.2-gcrypt.
Reported by mirai on #guix.
2022-11-20 01:00:00 +01:00
Pierre Neidhardt
22a788d085
gnu: sbcl-cl-prevalence: Update to 20221122.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-prevalence): Update to 20221122.
This update contains a critical bugfix, hence the conssecutive version bump.
2022-11-23 13:59:57 +01:00
Ricardo Wurmus
4b23e2d868
gnu: python-py7zr: Update to 0.20.2.
...
* gnu/packages/python-compression.scm (python-py7zr): Update to 0.20.2.
[build-system]: Use pyproject-build-system.
[propagated-inputs]: Add python-brotli, python-brotlicffi,
python-importlib-metadata, python-inflate64, python-psutil, python-pybcj,
python-pycryptodomex, and python-pyppmd; remove python-bcj-cffi,
python-ppmd-cffi, python-pycryptodome, and python-zstandard.
2022-11-23 13:57:48 +01:00
Ricardo Wurmus
101a4e2718
gnu: Add python-pybcj.
...
* gnu/packages/python-compression.scm (python-pybcj): New variable.
2022-11-23 13:57:48 +01:00
Ricardo Wurmus
6ea2229f89
gnu: Add python-inflate64.
...
* gnu/packages/python-compression.scm (python-inflate64): New variable.
2022-11-23 13:57:48 +01:00
Ricardo Wurmus
136760c3a9
gnu: python-multivolumefile: Update to 0.2.3.
...
* gnu/packages/python-compression.scm (python-multivolumefile): Update to
0.2.3.
[build-system]: Use pyproject-build-system.
[native-inputs]: Remove python-pep517 and python-setuptools; add
python-hypothesis.
2022-11-23 13:57:47 +01:00
Ricardo Wurmus
fb2d4aa088
gnu: Add python-brotlicffi.
...
* gnu/packages/python-compression.scm (python-brotlicffi): New variable.
2022-11-23 13:57:47 +01:00
Ricardo Wurmus
d2a7bd50a9
gnu: Add python-pyppmd.
...
* gnu/packages/python-compression.scm (python-pyppmd): New variable.
2022-11-23 13:57:47 +01:00
Ricardo Wurmus
0d9b69795d
gnu: python-zstandard: Update to 0.19.0.
...
* gnu/packages/python-compression.scm (python-zstandard): Update to 0.19.0.
[propagated-inputs]: Add python-cffi.
2022-11-23 13:57:47 +01:00
Ricardo Wurmus
32fa848611
gnu: python-pyzstd: Update to 0.15.3.
...
* gnu/packages/python-compression.scm (python-pyzstd): Update to 0.15.3.
2022-11-23 13:57:47 +01:00
Ricardo Wurmus
48a5dc0ffb
gnu: python-ppmd-cffi: Update to 0.5.0.
...
* gnu/packages/python-compression.scm (python-ppmd-cffi): Update to 0.5.0.
[native-inputs]: Remove python-setuptools and python-pep517; add
python-hypothesis.
2022-11-23 13:57:47 +01:00
Ricardo Wurmus
3ab9adba57
gnu: python-munkres: Conditionally disable failing test.
...
* gnu/packages/python-xyz.scm (python-munkres)[arguments]: Add phase
"disable-test" to patch test suite.
2022-11-23 13:57:47 +01:00
Mădălin Ionel Patrașcu
093bf20cdc
gnu: Add r-alpine.
...
* gnu/packages/bioconductor.scm (r-alpine): New variable.
2022-11-23 13:57:43 +01:00
Sharlatan Hellseher
7fa8c05753
gnu: python-cdflib: Update to 0.4.9.
...
* gnu/packages/astronomy.scm (python-cdflib): Update to 0.4.9.
[build-system]: Use pyproject-build-system to simplify package.
[description]: Expand acronym for CDF.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-23 09:53:11 +00:00
Sharlatan Hellseher
6ffe15bda7
gnu: Add cl-cacau.
...
* gnu/packages/lisp-check.scm (cl-cacau, ecl-cacau, sbcl-cacau): New
variables.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-23 09:53:11 +00:00
Sharlatan Hellseher
cd9df33e41
gnu: Add cl-eventbus.
...
* gnu/packages/lisp-xyz.scm (cl-eventbus, ecl-eventbus, sbcl-eventbus): New
variables.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-23 09:53:11 +00:00
Sharlatan Hellseher
f39a18e7d4
gnu: Add cl-assert-p.
...
* gnu/packages/lisp-check.scm (cl-assert-p, ecl-assert-p, sbcl-assert-p): New
variables.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-23 09:53:11 +00:00
Sharlatan Hellseher
dc95215dc0
gnu: Add cl-assertion-error.
...
* gnu/packages/lisp-check.scm (cl-assertion-error, ecl-assertion-error,
sbcl-assertion-error): New variables.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-23 09:53:11 +00:00
Sharlatan Hellseher
029234bdad
gnu: Add cl-simplet.
...
* gnu/packages/lisp-check.scm (cl-simplet, ecl-simplet, sbcl-simplet): New
variables.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-23 09:53:10 +00:00
jgart
36562c74dc
gnu: Add emacs-inspector.
...
* gnu/packages/emacs-xyz.scm (emacs-inspector): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-23 09:53:10 +00:00
jgart
e329c5e05d
gnu: Add emacs-treeview.
...
* gnu/packages/emacs-xyz.scm (emacs-treeview): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-23 09:53:10 +00:00
Hilton Chain
b8985be94c
gnu: font-sarasa-gothic: Update to 0.37.4.
...
* gnu/packages/fonts.scm (font-sarasa-gothic): Update to 0.37.4.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-23 09:53:10 +00:00
Andrew Tropin
5ba10abc49
gnu: Add emacs-jarchive.
...
* gnu/packages/emacs-xyz.scm (emacs-jarchive): New variable.
2022-11-23 13:29:09 +04:00
Marius Bakke
3879c1f6cd
gnu: heads-dev-cpio: Add missing module import.
...
* gnu/packages/heads.scm (heads-dev-cpio)[arguments]<#:modules>: Add
(guix build syscalls).
2022-11-23 10:16:47 +01:00
Marius Bakke
2c8329de51
gnu: emacs-ediprolog: Update source URI.
...
This is a follow-up to commit 575790f5f5 .
* gnu/packages/emacs-xyz.scm (emacs-ediprolog)[source](uri): Download tarball
instead of .el.
2022-11-23 10:16:47 +01:00
Marius Bakke
9e44a6f776
gnu: knot-resolver: Update to 5.5.3.
...
* gnu/packages/dns.scm (knot-resolver): Update to 5.5.3.
2022-11-23 10:16:47 +01:00
Marius Bakke
80305088b5
gnu: drbd-utils: Fix corrupted man page.
...
* gnu/packages/cluster.scm (drbd-utils)[native-inputs]: Change from
DOCBOOK-XSL to DOCBOOK-XSL-NEXT.
2022-11-23 10:16:47 +01:00
Greg Hogan
bddb43b422
gnu: python-hmmlearn: Update to 0.2.7.
...
* gnu/packages/machine-learning.scm (python-hmmlearn): Update to 0.2.7.
[source]<#:origin>: Remove deletion snippet for file removed upstream.
[propagated-inputs]: Add pybind11.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-22 23:17:06 +01:00
Greg Hogan
ca428f944f
gnu: octave: Update to 7.2.0.
...
* gnu/packages/maths.scm (octave): Update to 7.2.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-22 23:17:06 +01:00
Greg Hogan
7534d8067f
gnu: suitesparse: Update to 5.13.0.
...
* gnu/packages/maths.scm (suitesparse): Update to 5.13.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-22 23:17:05 +01:00
Martin Marshall
eb5e650e09
gnu: emacs-flymake-proselint: Remove references to Flycheck.
...
* gnu/packages/emacs-xyz.scm (emacs-flymake-proselint): Remove references to
flycheck.
[source]: Correct URL path-name.
[propagated-inputs]: Remove EMACS-FLYCHECK.
[home-page]: Correct URL path-name.
Package was installing EMACS-FLYCHECK but has no dependency on it. It uses
Emacs built-in, Flymake, instead.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-22 18:48:42 +01:00
Nicolas Goaziou
452386617a
gnu: emacs-cape: Update to 0.11.
...
* gnu/packages/emacs-xyz.scm (emacs-cape): Update to 0.11.
2022-11-22 17:38:12 +01:00
Nicolas Goaziou
d0c8816f37
gnu: emacs-corfu: Update to 0.33.
...
* gnu/packages/emacs-xyz.scm (emacs-corfu): Update to 0.33.
2022-11-22 17:38:11 +01:00
pelzflorian (Florian Pelz)
b8d4c323f5
doc: Call out potential for security vulnerabilities in old software.
...
* doc/guix.texi (Invoking guix time-machine): Add a note.
Co-authored by: Simon Tournier <zimon.toutoune@gmail.com >
2022-11-22 15:36:25 +01:00
Michael Rohleder
a44d6e1ea2
gnu: xfce4-screenshooter: Update to 1.10.0.
...
* gnu/packages/xfce.scm (xfce4-screenshooter): Update to 1.10.0.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-22 09:24:16 +00:00
Michael Rohleder
1f600136ff
gnu: xfce4-settings: Update to 4.16.5.
...
* gnu/packages/xfce.scm (xfce4-settings): Update to 4.16.5.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-22 09:24:16 +00:00
Hilton Chain
d54febb86f
gnu: Add emacs-ebuku.
...
* gnu/packages/emacs-xyz.scm (emacs-ebuku): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-22 09:24:15 +00:00
Greg Hogan
07746c2b15
gnu: libcxx: Update to 15.0.5.
...
* gnu/packages/llvm.scm (libcxx): Update to 15.0.5.
[version]: Use version from LLVM-15.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-22 09:24:15 +00:00
Greg Hogan
8952a94086
gnu: lldb: Update to 15.0.5.
...
* gnu/packages/llvm.scm (lldb): Update to 15.0.5.
[version]: Use version from LLVM-15.
[inputs]: Change from LLVM-14 and CLANG-14 to LLVM-15 and CLANG-15.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-22 09:24:15 +00:00
Greg Hogan
15b08918e9
gnu: LLVM, Clang, libomp, lld: Update to 15.0.5.
...
* gnu/packages/llvm.scm (llvm-15, clang-15, libomp-15, lld-15):
Update to 15.0.5.
(lld)[version]: Use version from LLVM-15.
(%llvm-monorepo-hashes, %llvm-patches): Adjust accordingly.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-22 09:24:15 +00:00
jgart
eda5e9aaaf
gnu: python-pudb: Add python-numpy native-input.
...
This is an optional test dependency.
* gnu/packages/python-xyz.scm (python-pudb)[native-inputs]: Add python-numpy.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-22 09:24:15 +00:00
paladhammika
bb67d7d99d
gnu: Add fff.
...
* gnu/packages/disk.scm (fff): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-22 09:24:15 +00:00
Paul A. Patience
0435469669
gnu: cl-parachute: Update to 1.5.0-0.8bc3e1b.
...
* gnu/packages/lisp-check.scm (sbcl-parachute): Update to
1.5.0-0.8bc3e1b.
[inputs]: Add sbcl-trivial-custom-debugger.
* gnu/packages/lisp-xyz.scm (sbcl-trivial-custom-debugger)
[arguments]: New field.
[native-inputs]: Remove field.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-22 10:08:57 +01:00
Paul A. Patience
bb829bb23b
gnu: cl-array-utils: Update to 1.1.1-1.40cea8f.
...
* gnu/packages/lisp-xyz.scm (sbcl-array-utils): Update to 1.1.1-1.40cea8f.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-22 10:08:57 +01:00
Paul A. Patience
105f17013f
gnu: cl-plump: Update to 2.0.0-3.0c3e0b5.
...
* gnu/packages/lisp-xyz.scm (sbcl-plump): Update to 2.0.0-3.0c3e0b5.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-22 10:08:57 +01:00
Martin Marshall
78f03567f4
gnu: mpv: Add libxpresent input.
...
Fixes <https://issues.guix.gnu.org/59279 >.
Reported by Jorge P. de Morais Neto <jorge+list@disr.it >
and Kristian Lein-Mathisen <kristianlein@gmail.com >.
* gnu/packages/video.scm (mpv)[inputs]: Add libxpresent.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-22 09:43:54 +01:00
Ludovic Courtès
d07dd4ccdf
reconfigure: Use SRFI-71 instead of SRFI-11.
...
* guix/scripts/system/reconfigure.scm (upgrade-shepherd-services)
(channel-relations): Use SRFI-71.
2022-11-22 09:43:54 +01:00
Ludovic Courtès
b2b9571935
offload: Gracefully handle 'guix repl' protocol errors.
...
Fixes <https://issues.guix.gnu.org/59447 >.
Reported by Mathieu Othacehe <othacehe@gnu.org >.
Previously, if a machine had a buggy 'guix repl', 'guix offload' would
crash with a backtrace instead of just ignoring the machine.
* guix/scripts/offload.scm (remote-inferior*): New procedure.
(check-machine-availability)[if-true]: New procedure.
Use 'remote-inferior*' and 'if-true'.
(check-machine-status): Use 'remote-inferior*'.
2022-11-22 09:43:54 +01:00
Ludovic Courtès
60bea07593
inferior: Raise '&inferior-protocol-error' on invalid response.
...
* guix/inferior.scm (&inferior-protocol-error): New condition type.
(read-repl-response): Add default 'match' clause and raise it.
2022-11-22 09:43:54 +01:00
Ludovic Courtès
47ba3f7d25
gnu: mate: Depend on gnome-keyring only on supported systems.
...
This lets us build Mate on i686-linux.
* gnu/packages/mate.scm (mate)[inputs]: Add GNOME-KEYRING
conditionally.
2022-11-22 09:43:54 +01:00
Ludovic Courtès
3954780bfb
gnu: gnome-keyring: Mark as 64-bit-only.
...
* gnu/packages/gnome.scm (gnome-keyring)[supported-systems]: New field.
2022-11-22 09:43:54 +01:00
Ludovic Courtès
220669a022
gnu: mate: Remove input labels.
...
* gnu/packages/mate.scm (mate)[inputs]: Remove labels.
2022-11-22 09:43:53 +01:00
Marius Bakke
5e97f912bb
gnu: zbackup: Build with protobuf@3.6.
...
* gnu/packages/backup.scm (zbackup)[inputs]: Change from PROTOBUF to
PROTOBUF-3.6.
2022-11-22 08:37:27 +01:00
Marius Bakke
372ba7b3db
gnu: perl-conf-libconfig: Update to 0.101.
...
* gnu/packages/perl.scm (perl-conf-libconfig): Update to 0.101.
2022-11-22 08:37:27 +01:00
Marius Bakke
e08ffa2447
gnu: slurm-monitor: Update to 0.4.4.
...
* gnu/packages/networking.scm (slurm-monitor): Update to 0.4.4.
[build-system]: Change to MESON-BUILD-SYSTEM.
[native-inputs]: Add PKG-CONFIG.
2022-11-22 08:37:26 +01:00
Marius Bakke
859a10a47d
gnu: remake: Update to 4.3-1.6.
...
* gnu/packages/debug.scm (remake): Update to 4.3-1.6.
2022-11-22 08:37:26 +01:00
Marius Bakke
4147c43a9c
gnu: python-py3dns: Fix build failure.
...
* gnu/packages/python-xyz.scm (python-py3dns)[arguments]: Remove sanity check.
2022-11-22 08:37:26 +01:00
Marius Bakke
1d7f0a96f4
gnu: python-parallel: Add missing input.
...
* gnu/packages/python-xyz.scm (python-parallel)[propagated-inputs]: Add
PYTHON-SIX.
2022-11-22 08:37:26 +01:00
Marius Bakke
868325560e
gnu: Remove python-enum34.
...
This compatibility package fails to build and has no users in Guix.
* gnu/packages/python-xyz.scm (python-enum34): Remove variable.
2022-11-22 08:37:26 +01:00
Marius Bakke
38f8008359
gnu: python-rnc2rng: Update to 2.6.6.
...
* gnu/packages/python-xyz.scm (python-rnc2rng): Update to 2.6.6.
2022-11-22 08:37:26 +01:00
Marius Bakke
ff8ac616e7
gnu: python-bigfloat: Update to 0.4.0.
...
* gnu/packages/python-xyz.scm (python-bigfloat): Update to 0.4.0.
[propagated-inputs]: Add PYTHON-SIX.
2022-11-22 08:37:25 +01:00
Marius Bakke
b122a40df4
gnu: python-socksipychain: Add missing input.
...
* gnu/packages/python-xyz.scm (python-socksipychain)[propagated-inputs]: Add
PYTHON-SIX.
2022-11-22 08:37:25 +01:00
Marius Bakke
a3c87f1460
gnu: nickle: Update to 2.90.
...
* gnu/packages/nickle.scm (nickle): Update to 2.90.
2022-11-22 08:37:25 +01:00
Marius Bakke
c0a39f12f1
gnu: neatmail: Fix build.
...
* gnu/packages/mail.scm (neatmail)[arguments]: Fix quoting issue.
2022-11-22 08:37:25 +01:00
Marius Bakke
256a63ce0b
gnu: libwindowswm: Add missing input.
...
* gnu/packages/xorg.scm (libwindowswm)[inputs]: Add WINDOWSWMPROTO.
2022-11-22 08:37:25 +01:00
Marius Bakke
26f76355bf
gnu: libsbsms: Fix build.
...
* gnu/packages/audio.scm (libsbsms)[arguments]: Adjust path to ar-lib.
2022-11-22 08:37:24 +01:00
Marius Bakke
db6225d9dc
gnu: Remove libbson.
...
This package fails to build and has been deprecated since 2018:
https://github.com/mongodb/libbson
* gnu/packages/serialization.scm (libbson): Remove variable.
2022-11-22 08:37:24 +01:00
Marius Bakke
2f69eeabd6
gnu: ifstatus: Update to 2.0.0.
...
* gnu/packages/networking.scm (ifstatus): Update to 2.0.0.
[source](uri): Adjust.
[source](modules, snippet): Remove.
2022-11-22 08:37:24 +01:00
Marius Bakke
0fec067efe
gnu: ecl: Remove 16.1.3.
...
This package fails to build and has no users in Guix.
* gnu/packages/sagemath.scm (ecl-16): Remove variable.
* gnu/packages/patches/ecl-16-format-directive-limit.patch,
gnu/packages/patches/ecl-16-ignore-stderr-write-error.patch,
gnu/packages/patches/ecl-16-libffi.patch: Delete files.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-11-22 08:37:24 +01:00
Marius Bakke
41ca8f9c20
gnu: dune-alugrid: Fix build failure.
...
* gnu/packages/maths.scm (dune-alugrid)[arguments]: Provide the INPUTS key in
build-tests phase.
2022-11-22 08:37:24 +01:00
Marius Bakke
dc7397845d
gnu: kmail: Build with gpgme@1.18.
...
* gnu/packages/kde-pim.scm (kmail)[inputs]: Change from GPGME and QGPGME to
GPGME-1.18 and QGPGME-1.18.
2022-11-22 08:37:24 +01:00
Marius Bakke
12673ef450
gnu: kleopatra: Build with gpgme@1.18.
...
* gnu/packages/kde-pim.scm (kleopatra)[inputs]: Change from GPGME and QGPGME
to GPGME-1.18 and QGPGME-1.18.
2022-11-22 08:37:23 +01:00
Marius Bakke
3d2de69c06
gnu: gpgme: Add 1.18.0.
...
* gnu/packages/gnupg.scm (gpgme-1.18, qgpgme-1.18): New variables.
2022-11-22 08:37:23 +01:00
Marius Bakke
ae24d4b34a
gnu: ashuffle: Update to 3.13.4.
...
* gnu/packages/mpd.scm (ashuffle): Update to 3.13.4.
[inputs]: Add ABSEIL-CPP-CXXSTD17, GOOGLETEST, and YAML-CPP.
[arguments]: New field.
2022-11-22 08:37:23 +01:00
Marius Bakke
4bf4e051d1
gnu: protobuf@3.5: Inherit from protobuf@3.6.
...
* gnu/packages/protobuf.scm (protobuf-3.5): Change inheritance, so it gets the
correct build system and phases.
2022-11-22 08:37:23 +01:00
Marius Bakke
3d62d7648a
gnu: arpack-ng: Remove 3.3.0.
...
This package fails to build and has no users in Guix.
* gnu/packages/maths.scm (arpack-ng-3.3.0): Remove variable.
2022-11-22 08:37:23 +01:00
Marius Bakke
628afdc392
gnu: Remove acme-client.
...
This package does not build and has been unmaintained since 2018:
https://github.com/kristapsdz/acme-client-portable/commit/ba153daacb62d8a24fef6d6a5a737d2eff607509
* gnu/packages/tls.scm (acme-client): Remove variable.
2022-11-22 08:37:23 +01:00
Yarl Baudig
437718442c
gnu: Add texlive-mathdots.
...
* gnu/packages/tex.scm (texlive-mathdots): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-21 23:20:45 +01:00
Michael Rohleder
84100023e2
gnu: emacs-ob-restclient: Update to 0.02-3.1b021ce.
...
* gnu/packages/emacs-xyz.scm (emacs-ob-restclient): Update to 0.02-3.1b021ce.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-21 23:13:07 +01:00
Michael Rohleder
988ff3c8de
gnu: emacs-restclient: Update to 0-4.1fb5706.
...
* gnu/packages/emacs-xyz.scm (emacs-restclient): Update to 0-4.1fb5706.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-21 23:12:55 +01:00
Nicolas Goaziou
544fcac62b
gnu: wob: Update to 0.14.2.
...
* gnu/packages/xdisorg.scm (wob): Update to 0.14.2.
[inputs]: Add LIBINIH.
2022-11-21 23:07:17 +01:00
Nicolas Goaziou
aa9e31809d
gnu: emacs-pg: Update to 0.19.
...
* gnu/packages/emacs-xyz.scm (emacs-pg): Update to 0.19.
2022-11-21 23:07:17 +01:00
Nicolas Goaziou
0a84c0e8ea
gnu: emacs-crdt: Update to 0.3.5.
...
* gnu/packages/emacs-xyz.scm (emacs-crdt): Update to 0.3.5.
2022-11-21 23:07:16 +01:00
Nicolas Goaziou
3ba966c56c
gnu: emacs-corfu: Update to 0.31.
...
* gnu/packages/emacs-xyz.scm (emacs-corfu): Update to 0.31.
2022-11-21 23:07:16 +01:00
Nicolas Goaziou
945fd54f65
gnu: bzflag: Update to 2.4.26.
...
* gnu/packages/games.scm (bzflag): Update to 2.4.26.
2022-11-21 23:07:15 +01:00
Petr Hodina
82804298ad
gnu: libksysguard: Apply patch.
...
* gnu/packages/kde-plasma.scm (libksysguard)[source]: Apply patch.
* gnu/local.mk: Add patch.
* gnu/packages/patches/libksysguard-qdiriterator-follow-symlinks.patch: New
file.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:16 +01:00
Petr Hodina
7d9cd43477
gnu: Add plasma-bigscreen.
...
* gnu/packages/kde-plasma.scm (plasma-bigscreen): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:16 +01:00
Petr Hodina
1b1bbe3eb0
gnu: Add itinerary.
...
* gnu/packages/kde-pim.scm (itinerary): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:16 +01:00
Petr Hodina
7fa0e39acb
gnu: Add kosmindoormap.
...
* gnu/packages/kde.scm (kosmindoormap): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:16 +01:00
Petr Hodina
ea576461f2
gnu: Add kopeninghours.
...
* gnu/packages/kde.scm (kopeninghours): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:16 +01:00
Petr Hodina
beb859d52b
gnu: Add khealthcertificate.
...
* gnu/packages/kde-pim.scm (khealthcertificate): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:16 +01:00
Petr Hodina
cc1ff122d7
gnu: Add kcharselect.
...
* gnu/packages/kde-utils.scm (kcharselect): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:16 +01:00
Petr Hodina
5c34774871
gnu: Add kcalc.
...
* gnu/packages/kde-utils.scm (kcalc): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:16 +01:00
Petr Hodina
e10e5f691d
gnu: Add kbackup.
...
* gnu/packages/kde-utils.scm (kbackup): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:16 +01:00
Petr Hodina
319c7712f6
gnu: Add kontrast.
...
* gnu/packages/kde-utils.scm (kontrast): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:15 +01:00
Petr Hodina
092472904b
gnu: Add print-manager.
...
* gnu/packages/kde-utils.scm (print-manager): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:15 +01:00
Petr Hodina
7928ac9370
gnu: Add plasma-redshift-control.
...
* gnu/packages/kde-plasma.scm (plasma-redshift-control): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:15 +01:00
Petr Hodina
1ed89fc485
gnu: Add plasma-welcome.
...
* gnu/packages/kde-plasma.scm (plasma-welcome): New package.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:15 +01:00
Petr Hodina
94c6b9068b
gnu: kwayland-server: Update to 5.24.6.
...
* gnu/packages/kde-plasma.scm (kwayland-server): Update to 5.24.6.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:15 +01:00
Petr Hodina
a37c426854
gnu: Add kfind.
...
* gnu/packages/kde-utils.scm (kfind): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:15 +01:00
Petr Hodina
b6a119794a
gnu: Add kdialog.
...
* gnu/packages/kde-utils.scm (kdialog): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:15 +01:00
Petr Hodina
8e7e460e7e
gnu: Add fielding.
...
* gnu/packages/kde-utils.scm (fielding): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:15 +01:00
Petr Hodina
19e70470d5
gnu: Add atelier.
...
* gnu/packages/kde-utils.scm (atelier): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:15 +01:00
Petr Hodina
9f7040cf74
gnu: Add qt3d-5.
...
* gnu/packages/qt.scm (qt3d-5): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:15 +01:00
Petr Hodina
9305d8b605
gnu: Add keurocalc.
...
* gnu/packages/kde-utils.scm (keurocalc): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:15 +01:00
Petr Hodina
298ddc073f
gnu: Add keysmith.
...
* gnu/packages/kde-utils.scm (keysmith): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:15 +01:00
Petr Hodina
76af0706a7
gnu: Add kdebugsettings.
...
* gnu/packages/kde-utils.scm (kdebugsettings): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:14 +01:00
Petr Hodina
de33239e33
gnu: Add isoimagewriter.
...
* gnu/packages/kde-utils.scm (isoimagewriter): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:14 +01:00
Petr Hodina
ba35be8374
gnu: Add francis.
...
* gnu/packages/kde-utils.scm (francis): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:14 +01:00
Petr Hodina
0aa70baeb8
gnu: Add filelight.
...
* gnu/packages/kde-utils.scm (filelight): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:14 +01:00
Petr Hodina
853480957e
gnu: Add basket.
...
* gnu/packages/kde-utils.scm (basket): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:14 +01:00
Petr Hodina
4033249e2e
gnu: Add libatcore.
...
* gnu/packages/kde-utils.scm (libatcore): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:14 +01:00
Petr Hodina
b9a0363b22
gnu: Add kirogi.
...
* gnu/packages/kde-utils.scm (kirogi): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:14 +01:00
Petr Hodina
9946e5800f
gnu: Add lightly.
...
* gnu/packages/kde-plasma.scm (lightly): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:14 +01:00
Petr Hodina
576d8c5bab
gnu: Add kongress.
...
* gnu/packages/kde-plasma.scm (kongress): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:14 +01:00
Petr Hodina
a5c368116a
gnu: Add kalendar.
...
* gnu/packages/kde-pim.scm (kalendar): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:14 +01:00
Petr Hodina
d5954101fd
gnu: Add plasma-phonebook.
...
* gnu/packages/kde-plasma.scm (plasma-phonebook): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:14 +01:00
Petr Hodina
f48fa54d7c
gnu: Add plasma-mobile-sounds.
...
* gnu/packages/kde-plasma.scm (plasma-mobile-sounds): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:14 +01:00
Petr Hodina
0d53223c81
gnu: Add plasma-mobile-settings.
...
* gnu/pacakges/kde-plasma.scm (plasma-mobile-settings): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:13 +01:00
Petr Hodina
28ce8094e2
gnu: Add plasma-mobile.
...
* gnu/packages/kde-plasma.scm (plasma-mobile): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:13 +01:00
Petr Hodina
6fb72a8f0d
gnu: Add plasma-phone-components.
...
* gnu/packages/kde-plasma.scm (plasma-phone-components): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:13 +01:00
Petr Hodina
b3c7ee7c2e
gnu: Add plasma-nano.
...
* gnu/packages/kde-plasma.scm (plasma-nano): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:13 +01:00
Petr Hodina
67313900e1
gnu: Add plasma meta-package.
...
* gnu/packages/kde-plasma.scm (plasma): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:13 +01:00
Petr Hodina
7aac107bde
gnu: qqc2-desktop-style: Add qtx11extras and sonnet to inputs.
...
* gnu/packages/kde-frameworks.scm (qqc2-desktop-style): Add qtx11extras and
sonnet to inputs.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:13 +01:00
Brendan Tildesley
1ad1517dac
gnu: Add plasma-desktop.
...
* gnu/packages/kde-plasma.scm (plasma-desktop): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:13 +01:00
Petr Hodina
02f3055114
gnu: Add plasma-browser-integration.
...
* gnu/packages/kde-plasma.scm (plasma-browser-integration): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:13 +01:00
Petr Hodina
ee62d19d9e
gnu: Add powerdevil.
...
* gnu/packages/kde-plasma.scm (powerdevil): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:13 +01:00
Petr Hodina
60caef04e6
gnu: Add khotkeys.
...
* gnu/packages/kde-plasma.scm (khotkeys): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:13 +01:00
Petr Hodina
10dba30fb3
gnu: Add kdeplasma-addons.
...
* gnu/packages/kde-plasma.scm (kdeplasma-addons): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:13 +01:00
Petr Hodina
20d7c6b1a2
gnu: Add kde-cli-tools.
...
* gnu/packages/kde-plasma.scm (kde-cli-tools): New variable.
* gnu/local.mk (dist_patch_DATA): Add patch.
* gnu/packages/patches/kde-cli-tools-delay-mime-db.patch: New file.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:13 +01:00
Petr Hodina
12f8ea204a
gnu: Add kinfocenter.
...
* gnu/packages/kde-plasma.scm (kinfocenter): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:12 +01:00
Petr Hodina
227a3a1d71
gnu: mesa-utils: Install eglinfo.
...
* gnu/packages/gl.scm (mesa-utils)[inputs]: Remove input labels.
[arguments]: Install eglinfo to bin.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:12 +01:00
Petr Hodina
12ae7cb61a
gnu: Add wayland-utils.
...
* gnu/packages/freedesktop.scm (wayland-utils): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:12 +01:00
Petr Hodina
b6e75ce733
gnu: Add system-settings.
...
* gnu/packages/kde-plasma.scm (system-settings): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:12 +01:00
Brendan Tildesley
72b80b9b17
gnu: Add plasma-workspace.
...
* gnu/packages/kde-plasma.scm (plasma-workspace): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:12 +01:00
Petr Hodina
8f877c2c4b
gnu: Add appmenu-gtk-module.
...
* gnu/packages/gtk.scm (appmenu-gtk-menu): New variable.
Co-authored-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:12 +01:00
Petr Hodina
dbe5ede0a6
gnu: Add plasma-workspace-wallpapers.
...
* gnu/packages/kde-plasma.scm (plasma-workspace-wallpapers): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:12 +01:00
Brendan Tildesley
fa5bf49f82
gnu: Add kwin.
...
* gnu/packages/kde-plasma.scm (kwin): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:12 +01:00
Petr Hodina
62bb071355
gnu: Add bluedevil.
...
* gnu/packages/kde-plasma.scm (bluedevil): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:12 +01:00
Petr Hodina
83f7a0b114
gnu: Add libqaccessibilityclient.
...
* gnu/packages/kde.scm (libqaccessibilityclient): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:12 +01:00
Petr Hodina
eba5097c07
gnu: Add calindori.
...
* gnu/packages/kde-plasma.scm (kde-plasma): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:12 +01:00
Petr Hodina
4cb6ef78dc
gnu: Add xdg-desktop-portal-kde.
...
* gnu/packages/freedesktop.scm (xdg-desktop-portal-kde): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:12 +01:00
Petr Hodina
5a6833113b
gnu: Add polkit-kde-agent.
...
* gnu/packages/kde-plasma.scm (polkit-kde-agent): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:11 +01:00
Petr Hodina
75e34ecc24
gnu: Add plasma-systemmonitor.
...
* gnu/packages/kde-plasma.scm (plasma-systemmonitor): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:11 +01:00
Petr Hodina
c106297111
gnu: Add milou.
...
* gnu/packages/kde-plasma.scm (milou): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:11 +01:00
Petr Hodina
10dad3a1fd
gnu: Add kwallet-pam.
...
* gnu/packages/kde-plasma.scm (kwallet-pam): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:11 +01:00
Petr Hodina
9366402ef2
gnu: Add ksystemstats.
...
* gnu/packages/kde-plasma.scm (ksystemstats): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:11 +01:00
Marius Bakke
787fd473be
gnu: discover: Don't use patchelf.
...
* gnu/packages/kde-plasma.scm (discover)[arguments]: Add phase to set LDFLAGS
instead of patching RUNPATH directly.
[native-inputs]: Remove PATCHELF.
2022-11-21 22:01:11 +01:00
Petr Hodina
c939f55855
gnu: Add discover.
...
* gnu/packages/kde-plasma.scm (discover): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:11 +01:00
Petr Hodina
ebd651c32a
gnu: fwupd: Move some inputs to propagated-inputs.
...
* gnu/packages/firmware.scm (fwupd)[propagated-inputs]: Move curl, gcab, glib, gusb,
libarchive, gnutls, json-glib and libjcat here from inputs.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:11 +01:00
Petr Hodina
fc85a45aec
gnu: Add packagekit-qt5.
...
* gnu/packages/qt.scm (packagekit-qt5): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:11 +01:00
Petr Hodina
c707530c1f
gnu: packagekit: Update to 1.2.5.
...
* gnu/packages/freedesktop.scm (packagekit): Update to 1.2.5.
[build-system]: Use meson-build-system.
[arguments]: Disable systemd. Fix xsl.
[native-inputs]: Add docbook-xsl, gobject-introspection, libxml2, libxslt and vala.
[inputs]: Add gstreamer, gst-plugins-base and gtk+.
Co-authored-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:11 +01:00
Petr Hodina
b2b88471d6
gnu: packagekit: Remove input labels and use gexp.
...
* gnu/packages/freedesktop.scm (pacakgekit): Remove input labels and use gexp.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:11 +01:00
Petr Hodina
f17f1e1f71
gnu: Add drkonqi.
...
* gnu/packages/kde-plasma.scm (drkonqi): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:11 +01:00
Petr Hodina
c3358f9bc5
gnu: Add plasma-active-window-control.
...
* gnu/packages/kde-plasma.scm (plasma-active-window-control): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:10 +01:00
Petr Hodina
4646bc2f59
gnu: Add plasma-firewall.
...
* gnu/packages/kde-plasma.scm (plasma-firewall): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:10 +01:00
Petr Hodina
d113630f98
gnu: Add plasma-disks.
...
* gnu/packages/kde-plasma.scm (plasma-disks): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:10 +01:00
Petr Hodina
eb1ec3b9cb
gnu: Add plasma-pa.
...
* gnu/packages/kde-plasma.scm (plasma-pa): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:10 +01:00
Petr Hodina
7c4eaf02fc
gnu: Add plasma-integration.
...
* gnu/packages/kde-plasma.scm (plasma-integration): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:10 +01:00
Petr Hodina
848cd9950c
gnu: Add plasma-nm.
...
* gnu/packages/kde-plasma.scm (plasma-nm): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:10 +01:00
Petr Hodina
05499412f5
gnu: Add plasma-pass.
...
* gnu/packages/kde-plasma.scm (plasma-pass): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:10 +01:00
Petr Hodina
2ee129f46c
gnu: Add plasma-vault.
...
* gnu/packages/kde-plasma.scm (plasma-vault): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:10 +01:00
Petr Hodina
b2a2f566aa
gnu: Add wacomtablet.
...
* gnu/packages/kde-utils.scm (wacomtablet): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:10 +01:00
Petr Hodina
4bc8c1ec9d
gnu: Add oxygen-sounds.
...
* gnu/packages/kde-plasma.scm (oxygen-sounds): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:10 +01:00
Petr Hodina
3cdecf5f5e
gnu: Add latte-dock.
...
* gnu/packages/kde-plasma.scm (latte-dock): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:10 +01:00
Petr Hodina
4b39a8a55f
gnu: Add plasmatube.
...
* gnu/packages/kde-plasma.scm (plasmatube): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:10 +01:00
Petr Hodina
d15b931948
gnu: Add kitinerary.
...
* gnu/packages/kde-pim.scm (kitinerary): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:09 +01:00
Petr Hodina
e7a7e43437
gnu: Add maliit-keyboard.
...
* gnu/pacakges/freedesktop.scm (maliit-keyboard): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:09 +01:00
Petr Hodina
c1c576ad7c
gnu: Add maliit-framework.
...
* gnu/pacakges/freedesktop.scm (maliit-framework): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:09 +01:00
Petr Hodina
c71f599cff
gnu: Add kactivitymanagerd.
...
* gnu/packages/kde-plasma.scm (kactivitymanagerd): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:09 +01:00
Petr Hodina
ebd845c697
gnu: Add kirigami-addons.
...
* gnu/packages/kde.scm (kirigami-addons): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:09 +01:00
Petr Hodina
bcbfae94b2
gnu: Add kmenuedit.
...
* gnu/packages/kde-plasma.scm (kmenuedit): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:09 +01:00
Marius Bakke
dff5235290
fxup kwayland-integration
2022-11-21 22:01:09 +01:00
Petr Hodina
10fdd4265c
gnu: Add kwrited.
...
* gnu/packages/kde-plasma.scm (kwrited): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:09 +01:00
Petr Hodina
e528b5eea3
gnu: Add kscreen.
...
* gnu/packages/kde-plasma.scm (kscreen): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:09 +01:00
Petr Hodina
8ca39d7a12
gnu: Add kgamma.
...
* gnu/packages/kde-plasma.scm (kgamma): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:09 +01:00
Petr Hodina
605a6c87cb
gnu: Add kpkpass.
...
* gnu/packages/kde-pim.scm (kpkpass): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:09 +01:00
Petr Hodina
dd2ba1a807
gnu: Add kio-fuse.
...
* gnu/packages/kde.scm (kio-fuse): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:09 +01:00
Petr Hodina
263280fd64
gnu: Add kio-extras.
...
* gnu/packages/kde.scm (kio-extras): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:08 +01:00
Petr Hodina
448df3cde1
gnu: Add ksysguard.
...
* gnu/packages/kde-plasma.scm (ksysguard): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:08 +01:00
Petr Hodina
fb94d0a17d
gnu: Add kwayland-integration.
...
* gnu/packages/kde-plasma.scm (kwayland-integration): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:08 +01:00
Petr Hodina
2f68492d10
gnu: kdbusaddons: Use gexp.
...
* gnu/packages/kde-frameworks.scm (kdbusadons, kdbusaddons-bootstrap): Use
gexp.
(kdbusaddons-bootstrap) [inputs]: Use modify-inputs.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:08 +01:00
Petr Hodina
5922ceabde
gnu: kiconthemes: Use gexp.
...
* gnu/packages/kde-frameworks.scm (kiconthemes): Use gexp.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:08 +01:00
Petr Hodina
9206921aa3
gnu: karchive: Enable zstd support.
...
* gnu/packages/kde-frameworks.scm (karchive)[native-inputs]: Add pkg-config.
[inputs]: Add zstd:lib.
[arguments]: Disable karchivetest.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:08 +01:00
Petr Hodina
2c65a197fc
gnu: Add python-doxypypy.
...
* gnu/packages/python-xyz.scm (python-doxypypy): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:08 +01:00
Petr Hodina
de3829816d
gnu: Add python-doxyqml.
...
* gnu/packages/python-xyz.scm (python-doxyqml): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:08 +01:00
Petr Hodina
7f8e838a9a
gnu: breeze-icons: Enable tests. Update icons cache.
...
* gnu/packages/kde-frameworks.scm (breeze-icons)[arguments]: Enable tests. Add
phase to update icons.
[native-inputs]: Add gtk+:bin.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:08 +01:00
Petr Hodina
8b60547c23
gnu: bluez-qt: Add qtdeclarative-5 to inputs.
...
* gnu/packages/kde-frameworks.scm (qtdeclarative-5)[inputs]: Add
qtdeclarative-5.
[arguments]: Disable failing test.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:08 +01:00
Petr Hodina
98fd85c032
gnu: akonadi: Enable tests.
...
* gnu/packages/kde-pim.scm (akonadi)[arguments]: Enable tests and use gexp.
[inputs]: Add LIBACCOUNTS-QT and SIGNOND.
Co-authored-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:08 +01:00
Petr Hodina
2c6b4872fc
gnu: akonadi: Add dbus and pkg-config to native-inputs.
...
* gnu/packages/kde-pim.scm (akonadi)[native-inputs]: Add dbus and pkg-config.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:08 +01:00
Petr Hodina
431f34ec02
gnu: Add kaccounts-integration.
...
* gnu/packages/kde-pim.scm (kaccounts-integration): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:07 +01:00
Petr Hodina
7bc1fe0656
gnu: Add libsignon-glib.
...
* gnu/packages/qt.scm (libsignon-glib): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:07 +01:00
Brendan Tildesley
df66bede3e
gnu: Add libaccounts-qt.
...
* gnu/packages/qt.scm (libaccounts-qt): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:07 +01:00
Petr Hodina
527f2c6a87
gnu: Add kpublictransport.
...
* gnu/packages/kde-utils.scm (kpublictransport): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:07 +01:00
Petr Hodina
c7b97cb44b
gnu: Add signon-plugin-oauth2.
...
* gnu/packages/qt.scm (signon-plugin-oauth2): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:07 +01:00
Petr Hodina
293ab255b2
gnu: Add signond.
...
* gnu/packages/qt.scm (signond): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:07 +01:00
Brendan Tildesley
6d98b42ca5
gnu: Add libaccounts-glib.
...
* gnu/packages/glib.scm (libaccounts-glib): New variable.
Co-authored-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:07 +01:00
Petr Hodina
158126fada
gnu: KDE Plasma: Update to 5.25.5.
...
* gnu/packages/kde-plasma.scm (breeze, breeze-gtk, kdecoration, ksshaskpass,
layer-shell-qt, kscreenlocker, libkscreen, libksysguard): Update to 5.25.5.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:07 +01:00
Petr Hodina
e8ddc727d8
gnu: KDE: Update to 22.08.1.
...
* gnu/packages/kde.scm (baloo-widgets, grantleetheme, akregator,
kdenlive, kdevelop, libkomparediff2, kpmcore, kdeconnect, labplot, kdf,
kcachegrind, libkdegames, marble-qt, okular, poxml,
kdegraphics-mobipocket, libkexiv2): Update to 22.08.1.
(kdeconnect)[inputs]: Add plasma-wayland-protocols.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:07 +01:00
Petr Hodina
060251a00e
gnu: KDE PIM: Update to 22.08.1.
...
* gnu/packages/kde-pim.scm (akonadi, akonadi-calendar, akonadi-contacts,
akonadi-mime, akonadi-notes, akonadi-search, kincidenceeditor,
kaddressbook, kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kldap, kleopatra, kmail, kmailcommon,
kmailimporter, kmailtransport, kmbox, kmessagelib, kmime, knotes,
kontactinterface, korganizer, kpimcommon, libgravatar,
kpimtextedit, ksmtp, ktnef, libkdepim, libkgapi, libkleo, libksieve): Update
to 22.08.1.
(kmailcommon)[inputs]: Add qtwebchannel-5 and qtwebengine-5.
(libkleo)[inputs]: Add kconfigwidgets.
(libksieve)[arguments]: Fix disabling of test.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:07 +01:00
Petr Hodina
75236e98a3
gnu: qtgamepad: Remove input labels.
...
* gnu/packages/qt.scm (qtgamepad): Remove input labels.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:07 +01:00
Petr Hodina
c48f2ea27b
gnu: QT: Remove trailing booleans.
...
* gnu/packages/qt.scm (qite, grantlee, single-application-qt5, python-pyqt,
python-pyqtwebengine, python-qscintilla, python-pyqt+qscintilla, qtsolutions,
qwt, python-shiboken-2, python-shiboken-6, python-pyside-2, python-pyside-6
python-pyside-2-tools, kdsoap): Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:07 +01:00
Petr Hodina
fd5d0309ea
gnu: materialdecoration: Remove input labels.
...
* gnu/packages/qt.scm (materialdecoration): Remove input labels.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:06 +01:00
Petr Hodina
b776efe1e4
gnu: grantleetheme: Update to 22.08.1.
...
* gnu/packages/kde.scm (grantleetheme): Update to 22.08.1.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:06 +01:00
Petr Hodina
6d5d7902c2
gnu: kinit: Use gexp.
...
* gnu/packages/kde-frameworks.scm (kinit): Use gexp.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:06 +01:00
Petr Hodina
430df96a9c
gnu: KDE Framework: Update 5.98.0.
...
* gnu/packages/kde-frameworks.scm(extra-cmake-modules, attica, bluez-qt,
breeze-icons, kapidox, karchive, kcalendarcore, kcodecs, kconfig,
kcoreaddons, kdbusaddons, kdnssd, kguiaddons, kholidays, ki18n, kidletime,
kirigami, kitemmodels, kitemviews, kplotting,
ksyntaxhighlighting, kwayland, kwidgetsaddons, kwindowsystem, modemmanager-qt,
networkmanager-qt, oxygen-icons, prison, qqc2-desktop-style, solid, sonnet,
threadweaver, kactivities, kauth, kcompletion, kcontacts, kcrash, kdoctools,
kfilemetadata, kimageformats, kjobwidgets, knotifications, kpackage, kpty,
kunitconversion, syndication, baloo, kactivities-stats, kbookmarks,
kcmutils, kconfigwidgets,
kdeclarative, kded, kdesignerplugin, kdesu, kdewebkit, kemoticons,
kglobalaccel, kiconthemes, kinit, kio, knewstuff, knotifyconfig,
kparts, kpeople, krunner, kservice, ktexteditor, ktextwidgets,kwallet,
kxmlgui, kxmlrpcclient, plasma-framework, purpose,
kde-frameworkintegration, kdelibs4support, khtml, kjs, kjsembed,
kmediaplayer, kross, kdav): Update to 5.96.0.
(kwayland)[inputs]: Add libxkbcommon.
(kcontacts)[arguments]: Enable old test, disable new failing tests.
(kiconthemes)[inputs]: Add qtdeclarative-5.
(kwallet)[inputs]: Add qca.
[arguments]: Disable failing test.
(kcontacts)[arguments]: Enable tests.
[source](patches): Add patch.
* gnu/packages/patches/kcontacts-incorrect-country-name.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:06 +01:00
Petr Hodina
2ecb9af51c
gnu: libkscreen: Enable all tests except for 5 failing.
...
* gnu/packages/kde-plasma.scm (libkscreen): Enable all tests except for 5
failing.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:06 +01:00
Petr Hodina
1e2d29ec71
gnu: libkscreen: Add pkg-config to native-inputs.
...
* gnu/packages/kde-plasma.scm (libkscreen)[native-inputs]: Add pkg-config. Fixes
cmake warining with missing 'wayland.xml' file.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:06 +01:00
Petr Hodina
c3c7e8fc9a
gnu: libksysguard: Enable all tests.
...
* gnu/packages/kde-plasma.scm (libksysguard): Enable all tests.
[arguments]: Substitute bash shell.
[native-inputs]: Add bash-minimal.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:06 +01:00
Petr Hodina
18de6150a7
gnu: libkscreen: Update to 5.25.4.
...
* gnu/packages/kde-plasma.scm (libkscreen): Update to 5.24.4.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:06 +01:00
Petr Hodina
2b2d28467c
gnu: libksysguard: Update to 5.25.4.
...
* gnu/packages/kde-plasma.scm (libksysguard): Update to 5.25.4.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:06 +01:00
Petr Hodina
adee50f33f
gnu: Remove kqtquickcharts.
...
* gnu/packages/kde.scm (kqtquickcharts): Remove variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:06 +01:00
Petr Hodina
e67c908c62
gnu: akregator: Remove kqtquickcharts form inputs.
...
* gnu/packages/kde.scm (akregator) [inputs]: Remove kqtquickcharts. Add
kquickcharts.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:06 +01:00
Petr Hodina
f841c98a4f
gnu: knotifications: Add pkg-config to native-inputs.
...
* gnu/packages/kde-frameworks.scm (knotifications)[native-input]: Add
pkg-config.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:05 +01:00
Petr Hodina
37161b83d0
gnu: plasma-framework: Remove 'apply-fix' phase.
...
* gnu/packages/kde-frameworks.scm (plasma-framework): Remove 'apply-fix' phase.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:05 +01:00
Petr Hodina
d650f9c5a4
gnu: phonon-backend-gstreamer: Remove duplicate qtbase-5 in inputs.
...
* gnu/packages/kde-frameworks.scm (phonon-backend-gstreamer)[inputs]: Remove
duplicate qtbase-5.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:05 +01:00
Petr Hodina
f487618b13
gnu: phonon: Use gexp.
...
* gnu/packages/kde-frameworks.scm (phonon): Use gexp.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:05 +01:00
Petr Hodina
d92e4f59bb
gnu: kxmlgui: Enable tests.
...
* gnu/packages/kde-frameworks.scm (kxmlgui): Use gexp.
[arguments]: Enable all but 2 tests.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:05 +01:00
Petr Hodina
27eb4944bb
gnu: ktexteditor: Add more inputs.
...
* gnu/packages/kde-frameworks.scm (ktexteditor)[arguments]: Use gexp. Enable
passing test.
[inputs]: Add editorconfig-core-c and kparts
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:05 +01:00
Petr Hodina
5f3c3d53eb
gnu: kio: Add more inputs.
...
* gnu/packages/kde-frameworks.scm (kio)[inputs]: Add kded and
qtdeclarative-5.
[propagated-inputs]: Add libacl.
[arguments]: Enable 2 passing tests. Use gexp.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:05 +01:00
Petr Hodina
afbb65243d
gnu: kfilemetadata: Add inputs.
...
* gnu/packages/kde-frameworks.scm (kfilemetadata)[inputs]: Add ebook-tools,
kconfig and kdegraphics-mobipocket.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:05 +01:00
Petr Hodina
3351a6dba1
gnu: kwindowsystem: Enable all test.
...
* gnu/packages/kde-frameworks.scm (kwindowsystem): Enable all tests.
[arguments]: Remove blacklist-failing-tests phase.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:05 +01:00
Petr Hodina
4efbd33f0f
gnu: kdelibs4support: Enable passing test.
...
* gnu/packages/kde-frameworks.scm (kdelibs4support): Enable passing test.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:05 +01:00
Petr Hodina
fa2969388c
gnu: krunner: Enable all tests.
...
* gnu/packages/kde-frameworks.scm (krunner): Use gexp.
[inputs]: Add kactivities.
[arguments]: Enable all tests.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:05 +01:00
Petr Hodina
3340dcca5a
gnu: kcontacts: Run all but 3 tests.
...
* gnu/packages/kde-frameworks.scm (kcontacts) [arguments]: Run all but 3 tests.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:04 +01:00
Petr Hodina
680ab49349
gnu: kio: Enable 2 tests.
...
* gnu/packages/kde-frameworks.scm (kio) [arguments]: Run kiocore-threadtest
and kiowidgets-kfileitemactionstest.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:04 +01:00
Petr Hodina
69127fd6b8
gnu: ktouch: Remove kqtquickcharts form inputs.
...
* gnu/packages/education.scm (ktouch) [inputs]: Remove kqtquickcharts.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:04 +01:00
Petr Hodina
0a4fad3cef
gnu: Add kquickcharts.
...
* gnu/packages/kde-frameworks.scm (kquickcharts): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-11-21 22:01:04 +01:00
Maxim Cournoyer
fe3be8d5e0
gnu: libfido2: Update to 1.12.0.
...
* gnu/packages/security-token.scm (libfido2): Update to 1.12.0.
2022-11-21 14:52:42 -05:00
jgart
2c9635cb47
gnu: Add emacs-ukrainian-holidays.
...
* gnu/packages/emacs-xyz.scm (emacs-ukrainian-holidays): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:15 +00:00
kiasoc5
88e2c715d6
gnu: qtractor: Use qt6 instead of qt5.
...
* gnu/packages/music.scm (qtractor)[inputs]: Remove qtbase-5, qtsvg-5, and
qtx11extras; add qtbase and qtsvg.
[native-inputs]: Remove qttools-5; add qttools.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:15 +00:00
kiasoc5
50d47b20eb
gnu: padthv1: Use qt6 instead of qt5.
...
* gnu/packages/music.scm (padthv1)[inputs]: Remove qtbase-5 and qtsvg-5; add
qtbase and qtsvg.
[native-inputs]: Remove qttools-5; add qttools.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:15 +00:00
kiasoc5
52cea4d068
gnu: samplv1: Use qt6 instead of qt5.
...
* gnu/packages/music.scm (samplv1)[inputs]: Remove qtbase-5 and qtsvg-5; add
qtbase and qtsvg.
[native-inputs]: Remove qttools-5; add qttools.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:15 +00:00
kiasoc5
a634db15ca
gnu: drumkv1: Use qt6 instead of qt5.
...
* gnu/packages/music.scm (drumkv1)[inputs]: Remove qtbase-5 and qtsvg-5; add
qtbase and qtsvg.
[native-inputs]: Remove qttools-5; add qttools.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:14 +00:00
kiasoc5
bb31286b1c
gnu: synthv1: Use qt6 instead of qt5.
...
* gnu/packages/music.scm (synthv1)[inputs]: Remove qtbase-5 and qtsvg-5; add
qtbase and qtsvg.
[native-inputs]: Remove qttools-5; add qttools.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:14 +00:00
jgart
f0cc7542f5
gnu: Add emacs-on.
...
* gnu/packages/emacs-xyz.scm (emacs-on): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:14 +00:00
Hilton Chain
bb2d7259ee
gnu: Add emacs-wanderlust.
...
* gnu/packages/emacs-xyz.scm (emacs-wanderlust): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:14 +00:00
Hilton Chain
1c839fb7bc
gnu: Add emacs-semi-epg.
...
* gnu/packages/emacs-xyz.scm (emacs-semi-epg): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:14 +00:00
Hilton Chain
3b353873f4
gnu: Add emacs-flim-lb.
...
* gnu/packages/emacs-xyz.scm (emacs-flim-lb): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:14 +00:00
Hilton Chain
760d683d2c
gnu: Add emacs-apel-lb.
...
* gnu/packages/emacs-xyz.scm (emacs-apel-lb): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:13 +00:00
Hilton Chain
426afbad5f
gnu: Add emacs-bbdb-vcard.
...
* gnu/packages/emacs-xyz.scm (emacs-bbdb-vcard): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:13 +00:00
Vivien Kraus
9283c80e60
guix: modify-input: Recommend prepend instead of append.
...
* doc/guix.texi (Defining Package Variants): Document the "prepend" clause of
modify-inputs first.
* guix/packages.scm (modify-inputs): use "prepend" in the docstring.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:13 +00:00
Sharlatan Hellseher
4d05c5fa57
gnu: python-gwcs: Update to 0.18.2.
...
* gnu/packages/astronomy.scm (python-gwcs): Fix build and update to 0.18.2.
[build-system]: Use pyproject-build-system.
[arguments]: Remove redundant.
[native-inputs]: Use python-jsonschema-next over python-jsonschema to fix
tests failing to run due to python-asdf issue with low version of jsonschema,
see https://github.com/asdf-format/asdf/pull/1203 .
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:13 +00:00
Sharlatan Hellseher
f77ff092d3
gnu: asdf-astropy: Update to 0.2.2.
...
* gnu/packages/astronomy.scm (python-asdf-astropy): Update to 0.2.0.
[build-system]: Use pyproject-build-system.
[arguments]: Remove redundant.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:13 +00:00
Sharlatan Hellseher
7fa631f8e3
gnu: python-asdf: Update comment about tests.
...
* gnu/packages/astronomy (python-asdf)[arguments]: Update comment about the
disabled tests. python-astropy does not depends on python-asdf any longer but
test keep failing due to multiple reasons.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:13 +00:00
Sharlatan Hellseher
f1a7edd584
gnu: python-asdf: Update to 2.13.0.
...
* gnu/packages/astronomy.scm (python-asdf): Update to 2.13.0.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-astropy, python-psutil, python-pytest,
python-pytest-doctestplus, python-pytest-openfiles, python-pytest-remotedata,
python-semantic-version.
[propagated-inputs]: Add python-asdf-standard, python-asdf-transform-schemas,
python-asdf-unit-schemas python-importlib-metadata, python-jsonschema-next,
python-lz4. Remove python-jsonschema.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:13 +00:00
Sharlatan Hellseher
80d5eb923d
gnu: asdf-transform-schemas: Update to 0.3.0.
...
* gnu/packages/astronomy.scm (python-asdf-transform-schemas): Update to 0.3.0.
[build-system]: Use new pyproject-build-system
[tests]: Disable tests, to prevent cycle with python-asdf package.
[native-inputs]: Remove python-pytest and python-semantic-version.
[propagated-inputs]: Remove python-asdf. Add python-asdf-standard,
python-importlib-resources.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:12 +00:00
Sharlatan Hellseher
2959b98a72
gnu: Add asdf-time-schemas.
...
* gnu/packages/astronomy.scm (python-asdf-time-schemas): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:12 +00:00
Sharlatan Hellseher
6924f4a866
gnu: Add asdf-fits-schemas.
...
* gnu/packages/astronomy.scm (python-asdf-fits-schemas): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:12 +00:00
Sharlatan Hellseher
f99a1e257d
gnu: Add asdf-unit-schemas.
...
* gnu/packages/astronomy.scm (python-asdf-unit-schemas): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:12 +00:00
Sharlatan Hellseher
1b03c64a05
gnu: Add asdf-standard.
...
* gnu/packages/astronomy.scm (python-asdf-standard): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-21 14:25:12 +00:00
Pierre Neidhardt
d369a4cfa0
gnu: sbcl-cl-prevalence: Update to 20221121.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-prevalence): Update to 20221121.
2022-11-21 15:23:22 +01:00
Pierre Neidhardt
cc5e94f290
gnu: sbcl-s-sysdeps: Update to 20210202.
...
* gnu/packages/lisp-xyz.scm (sbcl-s-sysdeps): Update to 20210202.
2022-11-21 15:23:22 +01:00
Guillaume Le Vaillant
b83982bc8b
gnu: liquid-dsp: Update to 1.5.0.
...
* gnu/packages/radio.scm (liquid-dsp): Update to 1.5.0.
2022-11-21 14:45:11 +01:00
Mathieu Othacehe
d7ba488d35
gnu: cuirass: Update to 1.1.0-13.1341725.
...
* gnu/packages/ci.scm (cuirass): Update to 1.1.0-13.1341725.
2022-11-21 12:34:03 +01:00
Artyom V. Poptsov
57a5dd34d3
gnu: prusa-slicer: Update to 2.5.0.
...
* gnu/packages/engineering.scm (prusa-slicer): Update to 2.5.0.
[inputs]: Add 'libjpeg-turbo' and 'opencascade-occt'.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-21 10:55:26 +01:00
Artyom V. Poptsov
e9e5e69ce5
gnu: opencascade-occt: Update to 7.6.2.
...
* gnu/packages/maths.scm (opencascade-occt): Update to 7.6.2.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-21 10:24:04 +01:00
Paul A. Patience
3612bd925f
gnu: Add cl-the-cost-of-nothing.
...
* gnu/packages/lisp-xyz.scm (sbcl-the-cost-of-nothing,
cl-the-cost-of-nothing, ecl-the-cost-of-nothing): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-21 10:18:48 +01:00
Sharlatan Hellseher
c0037bd508
gnu: Add cl-adopt.
...
* gnu/packages/lisp-xyz.scm (cl-adopt, ecl-adopt, sbcl-adopt): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-21 10:10:27 +01:00
Paul A. Patience
d32b41c2de
gnu: Add cl-one-more-re-nightmare.
...
* gnu/packages/lisp-xyz.scm (sbcl-one-more-re-nightmare,
cl-one-more-re-nightmare, ecl-one-more-re-nightmare): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-21 10:06:17 +01:00
Paul A. Patience
7245773eb6
gnu: Add cl-stealth-mixin.
...
* gnu/packages/lisp-xyz.scm (sbcl-stealth-mixin, cl-stealth-mixin,
ecl-stealth-mixin): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-21 10:01:03 +01:00
Marius Bakke
bd0ff2d39b
gnu: Remove coin3D@3.
...
* gnu/packages/graphics.scm (coin3D): Take the body from ...
(coin3D-4): ... this now-deprecated variable.
* gnu/packages/engineering.scm (freecad)[inputs]: Change from COIN3D-4 to COIN3D.
* gnu/packages/python-xyz.scm (python-pivy)[inputs]: Likewise.
* gnu/packages/qt.scm (soqt)[inputs]: Likewise.
2022-11-19 22:07:34 +01:00
Marius Bakke
cac47a0768
gnu: FreeCAD: Build with coin3D@4.
...
* gnu/packages/engineering.scm (freecad)[inputs]: Change from COIN3D to COIN3D-4.
2022-11-19 22:07:34 +01:00
Marius Bakke
cd9161372a
gnu: make-lld-wrapper: Inherit version, license and home-page from LLD.
...
* gnu/packages/llvm.scm (make-lld-wrapper): Inherit from the provided LLD.
2022-11-19 22:07:33 +01:00
Marius Bakke
a8ca5d0114
gnu: speech-dispatcher: Update to 0.11.4.
...
* gnu/packages/speech.scm (speech-dispatcher): Update to 0.11.4.
2022-11-19 22:07:33 +01:00
Marius Bakke
a048eeef57
gnu: python-check-manifest: Update to 0.48.0.
...
* gnu/packages/python-xyz.scm (python-check-manifest): Update to 0.48.0.
[build-system]: Change to PYPROJECT-BUILD-SYSTEM.
[arguments]: Add #:test-flags.
[native-inputs]: Remove PYTHON-MOCK. Add PYTHON-PYTEST.
[propagated-inputs]: Add PYTHON-PYPA-BUILD, PYTHON-SETUPTOOLS, and PYTHON-TOMLI.
2022-11-19 22:07:33 +01:00
Marius Bakke
273988e94c
gnu: python-check-manifest: Use the 'fixed' git for tests.
...
* gnu/packages/python-xyz.scm (python-check-manifest)[native-inputs]: Change
from GIT to GIT-MINIMAL/FIXED.
2022-11-19 22:07:33 +01:00
Marius Bakke
b654726c45
gnu: vtk: Update to 9.2.2.
...
* gnu/packages/patches/vtk-fix-freetypetools-build-failure.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/image-processing.scm (vtk): Update to 9.2.2.
[source](patches): Remove.
[arguments]: Remove #:phases.
2022-11-19 22:07:33 +01:00
Marius Bakke
5c9164d5fb
gnu: mia: Fix build with VTK 9.2.
...
* gnu/packages/patches/mia-vtk92.patch,
gnu/packages/patches/mia-vtk-version.patch: New files.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/image-processing.scm (mia)[source](patches): Add them.
2022-11-19 22:07:33 +01:00
Marius Bakke
fceeed3946
gnu: r-proj4: Build with newer proj.
...
* gnu/packages/cran.scm (r-proj4)[inputs]: Change from PROJ.4 to PROJ-7.
2022-11-19 22:07:33 +01:00
Marius Bakke
67da142622
gnu: Remove obsolete variable.
...
* gnu/packages/python-xyz.scm (python-packaging-next): Remove variable.
* gnu/packages/openstack.scm (python-oslo.utils)[propagated-inputs]: Change
from PYTHON-PACKAGING-NEXT to PYTHON-PACKAGING.
2022-11-19 22:07:33 +01:00
Leo Famulari
b015b3f3a4
gnu: linux-libre 5.10: Update to 5.10.155.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.155.
(linux-libre-5.10-pristine-source, deblob-scripts-5.10): Update hashes.
2022-11-19 15:24:23 -05:00
Leo Famulari
eec3d4a07f
gnu: linux-libre 5.15: Update to 5.15.79.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.79.
(linux-libre-5.15-pristine-source): Update hash.
2022-11-19 15:24:23 -05:00
Leo Famulari
44571b993f
gnu: linux-libre: Update to 6.0.9.
...
* gnu/packages/linux.scm (linux-libre-6.0-version): Update to 6.0.9.
(linux-libre-6.0-pristine-source, deblob-scripts-6.0.9): Update hashes.
2022-11-19 15:24:23 -05:00
(
bb04b5e0ce
gnu: moreutils: Fix corrupted manual pages.
...
* gnu/packages/moreutils.scm: Alphabetically sort #:USE-MODULES
forms. Use LICENSE: as the license prefix.
(moreutils)[source]: Add FILE-NAME.
[native-inputs](docbook-xsl): Change to DOCBOOK-XSL-NEXT.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-19 19:54:15 +01:00
jgart
b50be211c0
scripts: describe: Add branch information to recutils output.
...
* guix/scripts/describe.scm (channel->recutils): Add branch information.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-19 19:54:15 +01:00
jgart
f1354e7926
scripts: describe: Add branch information to json output.
...
* guix/scripts/describe.scm (channel->json): Add branch information.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-19 19:54:14 +01:00
Hilton Chain
6d1177b2c8
doc: Build more man pages.
...
* doc/local.mk (sub_commands_mans): Add guix-container.1, guix-copy.1,
guix-describe.1, guix-git.1, guix-graph.1, guix-home.1, guix-offload.1,
guix-pack.1, guix-processes.1, guix-repl.1, guix-shell.1, guix-style.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-19 19:54:14 +01:00
Ontje Lünsdorf
a4ea82b671
gnu: python-check-manifest: Relax git security settings in tests.
...
* gnu/packages/python-xyz.scm (python-check-manifest)[arguments]:
Allow git submodule commands via file protocol during testing.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-19 19:54:14 +01:00
dan
45fe602602
gnu: blender: Update to 3.3.1.
...
* gnu/packages/graphics.scm (blender): Update to 3.3.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-19 19:54:14 +01:00
Ludovic Courtès
a644c3a375
pack: Remove use of GOOPS in 'deb' backend.
...
* guix/scripts/pack.scm (debian-archive)[build]: Remove use of (oop goops).
Introduce 'keyword-ref' and use it instead of 'get-keyword'.
2022-11-19 19:54:14 +01:00
Ludovic Courtès
50c17ddd9e
services: lightdm: Do not use GOOPS.
...
There's an unwritten policy to not use GOOPS in Guix.
* gnu/services/lightdm.scm (strip-class-name-brackets): Rename to...
(strip-record-type-name-brackets): ... this.
(config->name): Adjust accordingly and use 'record-type-name' instead of
'class-name'.
(list-of-greeter-configurations?): Likewise.
2022-11-19 19:54:14 +01:00
jgart
85f4d87b81
gnu: Add smem.
...
* gnu/packages/admin.scm (smem): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-19 13:57:15 +00:00
jgart
bad8d9630b
gnu: irssi: Update to 1.4.3.
...
* gnu/packages/irc.scm (irssi): Update to 1.4.3.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-19 13:42:30 +00:00
Hilton Chain
04b5450ad8
gnu: Add rofi-wayland.
...
* gnu/packages/xdisorg.scm (rofi-wayland): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-19 13:35:50 +00:00
Hilton Chain
fc7c8fe063
gnu: rofi: Update to 1.7.5.
...
* gnu/packages/xdisorg.scm (rofi): Update to 1.7.5.
[arguments]<#:phases>: Adjusted according to source change.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-19 13:35:50 +00:00
Sergiu Ivanov
fc4949464f
gnu: font-montserrat: Update to 7.222.
...
* gnu/packages/fonts.scm (font-montserrat): Update to 7.222.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-19 13:32:35 +00:00
Andrew Patterson
cc08d374b2
gnu: sbcl: Fix build on aarch64.
...
sbcl 2.2.10 currently doesn't build on aarch64. Upstream has fixed the
issue (https://bugs.launchpad.net/sbcl/+bug/1996942 ), but this patch is
needed until the next release.
* gnu/packages/patches/sbcl-fix-build-on-arm64-with-clisp-as-host.patch: New
file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/lisp.scm (sbcl)[source]: Use it.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-19 12:58:12 +01:00
Paul A. Patience
854bdb7ba9
gnu: Add cl-ucons.
...
* gnu/packages/lisp-xyz.scm (sbcl-ucons, cl-ucons, ecl-ucons): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-19 12:58:12 +01:00
Paul A. Patience
c3267528b5
gnu: Add cl-typo.
...
* gnu/packages/lisp-xyz.scm (sbcl-typo, cl-typo, ecl-typo): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-19 12:58:11 +01:00
Paul A. Patience
c3ba1c04a4
gnu: Add cl-dot.
...
* gnu/packages/lisp-xyz.scm (cl-dot, ecl-cl-dot, sbcl-cl-dot): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-19 12:58:11 +01:00
Sharlatan Hellseher
a02cd9623f
gnu: Add cl-graph.
...
* gnu/packages/lisp-xyz.scm (cl-cl-graph, sbcl-cl-graph): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-19 12:58:11 +01:00
Guillaume Le Vaillant
103380bca0
gnu: Add ecl-moptilities.
...
* gnu/packages/lisp-xyz.scm (ecl-moptilities): New variable.
2022-11-19 12:58:11 +01:00
Sharlatan Hellseher
c9524eca89
gnu: cl-containers: Build more systems.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-containers)[inputs]: Remove
labels. Add sbcl-asdf-system-connections and sbcl-moptilities.
[arguments]: Add cl-containers/with-moptilities and
cl-containers/with-utilities to 'asd-systems'.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-19 12:58:11 +01:00
Artyom Bologov
24796542a8
gnu: cl-nactivitypub: Update to 0.0.4.
...
* gnu/packages/lisp-xyz.scm (sbcl-nactivitypub): Update to 0.0.4.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-19 12:58:11 +01:00
Artyom Bologov
337fe45544
gnu: Update cl-njson to 0.2.3.
...
* gnu/package/lisp-xyz.scm (sbcl-njson): Update to 0.2.3.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-19 12:58:11 +01:00
Sergiu Ivanov
7502af7931
gnu: emacs-org-tree-slide: Update to 2.8.18-0.d6529bc.
...
* gnu/packages/emacs-xyz.scm (emacs-org-tree-slide): Update to
2.8.18-0.d6529bc.
[synopsis]: Use proper capitalization.
[description]: Use proper capitalization. Remove parts referring to the
documentation of the package.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-19 10:25:17 +01:00
Nicolas Goaziou
1eaa9553d3
gnu: emacs-logos: Update to 1.0.1.
...
* gnu/packages/emacs-xyz.scm (emacs-logos): Update to 1.0.1.
2022-11-19 10:25:16 +01:00
Nicolas Goaziou
801b5c7c2f
gnu: emacs-flymake-proselint: Update to 0.3.0.
...
* gnu/packages/emacs-xyz.scm (emacs-flymake-proselint): Update to 0.3.0.
2022-11-19 10:25:16 +01:00
Nicolas Goaziou
b4d4e3252e
gnu: emacs-code-cells: Update to 0.3.
...
* gnu/packages/emacs-xyz.scm (emacs-code-cells): Update to 0.3.
2022-11-19 10:25:16 +01:00
Nicolas Goaziou
e081c49c00
gnu: emacs-posframe: Update to 1.2.0.
...
* gnu/packages/emacs-xyz.scm (emacs-posframe): Update to 1.2.0.
2022-11-19 10:25:16 +01:00
Nicolas Goaziou
eae6fe7446
gnu: emacs-subed: Update to 1.0.24.
...
* gnu/packages/emacs-xyz.scm (emacs-subed): Update to 1.0.24.
2022-11-19 10:25:15 +01:00
Nicolas Goaziou
9be7ffa5b4
gnu: emacs-auctex: Update to 13.1.6.
...
* gnu/packages/emacs-xyz.scm (emacs-auctex): Update to 13.1.6.
2022-11-19 10:25:15 +01:00
Artyom V. Poptsov
347733bcde
gnu: guile-png: Update to 0.2.0.
...
* gnu/packages/guile-xyz.scm (guile-png): Update to 0.2.0.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-11-18 20:08:11 +01:00
Ludovic Courtès
2a358911b0
services: tor: Remove unnecessary modules from shepherd environment.
...
This is a followup to fb868cd779 .
* gnu/services/networking.scm (tor-shepherd-service): Remove unused
'with-imported-modules' and 'modules' field.
2022-11-18 15:44:40 +01:00
Ludovic Courtès
8b56983999
home: services: redshift: Add 'configuration' action.
...
* gnu/home/services/shepherd.scm: Re-export
'shepherd-configuration-action'.
* gnu/home/services/desktop.scm (redshift-shepherd-service): Add
'actions' field.
2022-11-18 15:44:40 +01:00
Ludovic Courtès
8d9647d8a7
services: Add Shepherd 'configuration' action to various services.
...
* gnu/services/avahi.scm (avahi-shepherd-service): Add 'actions' field.
* gnu/services/base.scm (nscd-actions): Add call to
'shepherd-configuration-action'.
* gnu/services/desktop.scm (upower-shepherd-service): Add 'actions'
field.
(elogind-shepherd-service): Likewise.
* gnu/services/dict.scm (dicod-shepherd-service): Likewise.
* gnu/services/networking.scm (openntpd-shepherd-service): Likewise.
(tor-shepherd-service): Likewise.
* gnu/services/ssh.scm (openssh-shepherd-service): Likewise.
* gnu/services/web.scm (nginx-shepherd-service): Likewise.
* gnu/services/xorg.scm (gdm-shepherd-service): Likewise.
* gnu/tests/base.scm (run-basic-test)["nscd configuration action"]: New
test.
* doc/guix.texi (Services): Document it.
2022-11-18 15:44:39 +01:00
Ludovic Courtès
ebc7de6a1e
services: shepherd: Define 'shepherd-configuration-action' helper.
...
* gnu/services/shepherd.scm (shepherd-configuration-action): New
* doc/guix.texi (Shepherd Services): Document it.
2022-11-18 15:44:39 +01:00
jgart
ff00cdcd92
gnu: timescaledb: Update to 2.8.1.
...
* gnu/packages/patches/timescaledb-flaky-test.patch: Remove.
* gnu/local.mk (dist_patch_DATA): Remove it.
* gnu/packages/databases.scm (timescaledb): Update to 2.8.1.
[source]: Remove patch.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-18 15:44:39 +01:00
Simon South
cdfc1f41c6
gnu: tbb: Update to 2021.6.0.
...
* gnu/packages/tbb.scm (tbb): Update to 2021.6.0.
[source]: Remove obsolete patch.
* gnu/packages/patches/tbb-fix-test-on-aarch64.patch: Delete file.
* gnu/local.mk: Remove it.
* gnu/packages/patches/tbb-other-arches.patch: Update to match new version.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-18 15:44:39 +01:00
Matthew James Kraai
856b67f302
gnu: s3cmd: Fix program name in output.
...
* gnu/packages/python-xyz.scm (s3cmd)[arguments]: Add a new 'hide-wrapping
phase.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-18 15:44:39 +01:00
zamfofex
fc2b952205
gnu: Add wld.
...
* gnu/packages/wm.scm (wld): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-11-18 15:44:39 +01:00
Philip McGrath
fd5e642513
import/utils: spdx-string->license: Support '+' operator.
...
Previously, '+' was supported only via special cases for deprecated
GNU identifiers like 'GPL-N+'. This commit adds support
for other uses of '+', such as 'AFL-2.0+' and 'LPPL-1.0+'.
Strictly speaking, '+' is an operator, not part of the SPDX license
identifier, but it is useful to handle it here.
* guix/import/utils.scm (spdx-string->license): Support '+' operator.
* tests/import-utils.scm ("spdx-string->license"): Test it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-18 15:44:38 +01:00
Philip McGrath
07482dc051
import/utils: spdx-string->license: Match case-insensitively.
...
SPDX specifies that license identifiers (unlike the 'AND', 'OR', and
'WITH' operators) are matched case-insensitively.
* guix/import/utils.scm (%spdx-license-identifiers): New variable.
(spdx-string->license): Search in '%spdx-license-identifiers' using
'string-ci=?'.
* tests/import-utils.scm ("spdx-string->license"): New test.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-11-18 15:44:38 +01:00
Philip McGrath
b253efef23
import/utils: spdx-string->license: Fix incorrect docstring.
...
The result of 'spdx-string->license' is a symbol, not a license object.
* guix/import/utils.scm (spdx-string->license): Fix docstring.
(license->symbol): Mention 'license:' prefix in docstring.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-18 15:44:38 +01:00
Hilton Chain
a6da50d60a
linux-initrd: raw-initrd: Add keyword argument #:pre-mount.
...
* gnu/system/linux-initrd.scm (raw-initrd): Add keyword argument #:pre-mount.
Document it.
* doc/guix.texi (initial RAM disk): Likewise.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-18 15:44:38 +01:00
Guillaume Le Vaillant
383b0f0590
gnu: libarcus: Fix compatibility with newer protobuf.
...
* gnu/packages/engineering.scm (libarcus)[arguments]: Add
'fix-protobuf-compatibility' phase.
2022-11-18 15:00:27 +01:00
Sharlatan Hellseher
8cbd51d2d5
gnu: Add cl-mathstats.
...
* gnu/packages/lisp-xyz.scm (cl-mathstats, ecl-cl-mathstats,
sbcl-cl-mathstats): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-18 14:33:06 +01:00
Sharlatan Hellseher
f136e83840
gnu: Add cl-metacopy.
...
* gnu/packages/lisp-xyz.scm (cl-metacopy, sbcl-metacopy): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-18 14:27:18 +01:00
Sharlatan Hellseher
89ebe054c5
gnu: Add cl-asdf-system-connections.
...
* gnu/packages/lisp-xyz.scm (cl-asdf-system-connections,
ecl-asdf-system-connections, sbcl-asdf-system-connections): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-18 14:15:41 +01:00
Maxim Cournoyer
1bea5d38a2
tests: lightdm: Use set-xorg-configuration to set keyboard layout.
...
This is to validate that it works, when the login manager service type is
properly specified.
* gnu/tests/lightdm.scm (%lightdm-os): Use set-xorg-configuration.
2022-11-17 17:43:30 -05:00
Ludovic Courtès
83c9e00ffb
services: getmail: Use 'match-record'.
...
Fixes a regression introduced in
44554e7133 whereby the wrong record fields
would be accessed, leading to a <location> record being spliced in the
result.
* gnu/services/getmail.scm (serialize-getmail-configuration-file): Use
'match-record' instead of 'match'.
(getmail-shepherd-services): Likewise.
2022-11-17 23:03:50 +01:00
Hilton Chain
32c72dd99c
gnu: mosh: Update to 1.4.0.
...
* gnu/packages/ssh.scm (mosh): Update to 1.4.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-17 22:27:39 +01:00
Ludovic Courtès
17b01d5463
machine: ssh: Validate 'system' field.
...
* gnu/machine/ssh.scm (<machine-ssh-configuration>)[system]: Add
'sanitize' property.
(validate-system-type): New macro.
2022-11-17 22:27:39 +01:00
Maxim Cournoyer
983906ab72
gnu: ratpoison: Fix reference to xterm.
...
The xterm binary must be provided to --with-xterm, not its installation
prefix.
* gnu/packages/ratpoison.scm (ratpoison) [configure-flags]: Adjust
--with-xterm flag value.
2022-11-17 13:53:08 -05:00
Marius Bakke
bb4d32b655
gnu: Adjust users of deprecated packages.
...
* gnu/packages/databases.scm (apache-arrow-0.16)[inputs]: Change from
GOOGLE-BROTLI to BROTLI.
* gnu/packages/image.scm (libjxl)[propagated-inputs]: Likewise.
* gnu/packages/python-xyz.scm (python-logbook)[native-inputs]: Change from
PYTHON-GOOGLE-BROTLI to PYTHON-BROTLI.
2022-11-17 19:11:33 +01:00
Marius Bakke
28074f1e09
gnu: ungoogled-chromium: Build with Clang 15.
...
* gnu/packages/chromium.scm (ungoogled-chromium)[arguments]: Remove obsolete
compiler flags.
[native-inputs]: Change from CLANG-14 and LLD-AS-LD-WRAPPER to CLANG-15 and
LLD-AS-LD-WRAPPER-15.
2022-11-17 19:11:33 +01:00
Marius Bakke
65976a8382
gnu: lld-as-ld-wrapper: Add version 15.
...
* gnu/packages/llvm.scm (lld-as-ld-wrapper-15): New variable.
2022-11-17 19:11:33 +01:00
Jonathan Brielmaier
f5a7e4b9b2
gnu: icedove: Update to 102.5.0.
...
* gnu/packages/gnuzilla.scm (%icedove-build-id, %icedove-version): Update to 102.5.0.
2022-11-17 18:21:44 +01:00
Ricardo Wurmus
8e42bfaffa
gnu: conda: Update to 22.9.0.
...
* gnu/packages/package-management.scm (conda): Update to 22.9.0.
[arguments]: Add phase "use-older-pytest"; run tests conditionally; disable
broken tests; remove phase "fix-permissions".
[propagated-inputs]: Add python-boto3 and python-pluggy.
[native-inputs]: Add python-coverage, python-flaky, and
python-pytest-xprocess.
2022-11-17 15:00:49 +01:00
Ricardo Wurmus
d26337e7ef
gnu: conda: Remove trailing #T from build phases.
...
* gnu/packages/package-management.scm (conda)[arguments]: Remove trailing #T
from build phases.
2022-11-17 15:00:49 +01:00
Ricardo Wurmus
ebde19092f
gnu: r-circus: Update to 0.1.7.
...
* gnu/packages/bioinformatics.scm (r-circus): Update to 0.1.7.
[properties]: Add upstream-name property.
[propagated-inputs]: Add r-biocgenerics, r-genomeinfodb, and r-rtracklayer.
2022-11-17 15:00:49 +01:00
ギャラ
7b7e80cf25
gnu: neovim: Update to 0.8.1.
...
* gnu/packages/vim.scm (neovim): Update to 0.8.1.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-17 12:00:32 +00:00
Jack Hill
e5497d09a1
gnu: botan: Update to 2.19.2
...
* gnu/packages/crypto.scm (botan): Update to 2.19.2.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-17 12:00:32 +00:00
EuAndreh
35ef5fca0a
services: gitolite: Use the correct variable for the user-group.
...
The default value for <gitolite-configuration> has "git" for both the values
of the user and the group, as costumary, which means that unless someone uses
a custom configuration and chooses different strings for user and group, this
wouldn't show up.
* gnu/services/version-control.scm (gitolite-accounts): Use the correct
variable for the name of a (user-group ...).
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-17 12:00:32 +00:00
jgart
f91f9006c4
gnu: python-hypothesis: Update home-page.
...
* gnu/packages/check.scm.scm (python-hypothesis)[home-page]: Update it.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-17 12:00:32 +00:00
kiasoc5
024a98cb83
gnu: trash-cli: Use G-expressions.
...
* gnu/packages/shellutils.scm (trash-cli)[arguments]: Use G-expressions.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-17 12:00:31 +00:00
kiasoc5
cfeb51a6de
gnu: trash-cli: Update to 0.22.10.20.
...
* gnu/packages/shellutils.scm (trash-cli): Update to 0.22.10.20.
[native-inputs]: Add python-parameterized and python-flexmock.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-17 12:00:31 +00:00
kiasoc5
ce4896e85d
gnu: httpie: Update to 3.2.1.
...
* gnu/packages/python-web.scm (httpie): Update to 3.2.1.
[propagated-inputs]: Add python-rich.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-17 12:00:31 +00:00
Denis 'GNUtoo' Carikli
b64a80258b
gnu: Add navit.
...
* gnu/packages/geo.scm (navit): New variable.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org >
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-17 12:00:31 +00:00
Maxim Cournoyer
7ae4cfa5aa
services: Streamline or eliminate some match-lambda patterns.
...
These were spot while working on a fix for commit 543d971ed2 ("services:
configuration: Re-order generated record fields").
* gnu/services/web.scm (php-fpm-accounts): Remove extraneous trailing dummy
catchall patterns.
(agate-accounts): Access the configuration fields directly since there are
only two, which is less error-prone.
2022-11-17 06:49:51 -05:00
Maxim Cournoyer
238248aac9
Fix problems initially introduced in commit 543d971ed2, now reinstated.
...
Commit 543d971ed2 ("services: configuration: Re-order generated record
fields") introduced two regressions, one in guix home and another one in the
zabbix service.
* gnu/home/services/shells.scm (home-bash-extensions): Remove the first
pattern in the match, which used to be to ignore %location.
* gnu/services/monitoring.scm (zabbix-front-end-nginx-extension): Likewise.
2022-11-17 06:49:51 -05:00
Maxim Cournoyer
44554e7133
Revert "services: configuration: Revert to a working ‘guix home’."
...
This reverts commit 39e4e00f75 , with fixes for
the guix home issues reported and another one found while reconfiguring berlin
in the subsequent commit.
2022-11-17 06:49:51 -05:00
Nicolas Goaziou
07dddca27b
gnu: emacs-subed: Update to 1.0.21.
...
* gnu/packages/emacs-xyz.scm (emacs-subed): Update to 1.0.21.
2022-11-17 12:44:54 +01:00
Aleksandr Vityazev
3060268de3
gnu: emacs-skempo: Remove dependency on emacs-parent-mode.
...
* gnu/packages/emacs-xyz.scm (emacs-skempo)[propagated-inputs]:
Remove dependency on emacs-parent-mode.
As of a936f8d9fa0d42f17c64da9d2652a5f3e7c6546a commit skempo
drop dependency for parent-mode.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-17 12:28:11 +01:00
Aleksandr Vityazev
75320fbe92
gnu: Add emacs-ef-themes.
...
* gnu/packages/emacs-xyz.scm (emacs-ef-themes): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-17 12:28:11 +01:00
jgart
3a930dc2c0
gnu: emacs-purs-mode: Update to 1655338.
...
* gnu/packages/emacs-xyz.scm (emacs-purs-mode): Update to 1655338.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-17 12:28:10 +01:00
André A. Gomes
d2c8d0a94e
gnu: emacs-sly-asdf: Update to 0.2.0.
...
* gnu/packages/emacs-xyz.scm (emacs-sly-asdf): Update to 0.2.0.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-17 12:28:10 +01:00
jgart
57f7d38fed
gnu: emacs-crdt: Update to 0.3.4.
...
* gnu/packages/emacs-xyz.scm (emacs-crdt): Update to 0.3.4.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-17 12:28:10 +01:00
Nicolas Goaziou
22960a79a6
gnu: emacs-use-package: Improve package style.
...
* gnu/packages/emacs-xyz.scm (emacs-use-package)[arguments]: Use
G-expressions.
<#:phases>: Remove trailing #T. Remove unnecessary call to MKDIR-P.
2022-11-17 12:28:09 +01:00
Nicolas Goaziou
5a375fe48a
gnu: emacs-use-package: Update to 2.4.4.
...
* gnu/packages/emacs-xyz.scm (emacs-use-package): Update to 2.4.4.
2022-11-17 12:28:09 +01:00
Efraim Flashner
64062c77b1
gnu: giara: Remove input labels.
...
* gnu/packages/syndication.scm (giara)[inputs]: Remove input labels.
[native-inputs]: Same.
2022-11-17 13:05:53 +02:00
Efraim Flashner
211a1a6b44
gnu: giara: Update to 1.0.1.
...
* gnu/packages/syndication.scm (giara): Update to 1.0.1.
[source]: Remove patch.
[arguments]: Add phase to skip meson post-install script.
[native-inputs]: Remove libxml2. Replace gtk+:bin with gtk:bin.
[inputs]: Remove python-pycairo, webkitgtk-with-libsoup2. Add
blueprint-compiler. Replace libhandy with libadwaita, gtk+ with gtk,
python-mistune with python-mistune-next.
[description]: Update.
* gnu/packages/patches/giara-fix-login.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2022-11-17 13:05:52 +02:00
Efraim Flashner
daa5da2bde
gnu: python-praw: Update to 7.6.1.
...
* gnu/packages/python-web.scm (python-praw): Update to 7.6.1.
2022-11-17 13:05:52 +02:00
Efraim Flashner
c8ae11e775
gnu: python-mistune-next: Update to 2.0.4.
...
* gnu/packages/python-xyz.scm (python-mistune-next): Update to 2.0.4.
[arguments]: Add custom 'check phase.
[native-inputs]: Remove python-nose, add python-pytest.
2022-11-17 13:05:52 +02:00
Efraim Flashner
08b6a17de9
gnu: Add lld-15.
...
* gnu/packages/llvm.scm (lld-15): New variable.
(lld-14): Inherit from lld-15.
2022-11-17 13:05:52 +02:00
Ludovic Courtès
283d7318c5
gnu: shepherd: Update to 0.9.3.
...
* gnu/packages/admin.scm (shepherd-0.9): Update to 0.9.3.
[source](modules, snippet): Remove.
2022-11-17 11:10:09 +01:00
Ludovic Courtès
00b9ab0a83
tests: root-unmount: Wait for the first QEMU process to finish.
...
There was a tiny possibility that the first QEMU process would still be
running by the time we launch the second one.
* gnu/build/marionette.scm (marionette-pid): Export.
* gnu/tests/base.scm (run-root-unmount-test)[test]: Add 'waitpid' call.
2022-11-17 11:10:09 +01:00
Paul A. Patience
c9f927b704
gnu: Add cl-clop.
...
* gnu/packages/lisp-xyz.scm (sbcl-clop, cl-clop, ecl-clop): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-17 10:18:23 +01:00
André A. Gomes
4e401243dc
gnu: cl-symbol-munger: Update to 0.0.1-2.e96558e.
...
* gnu/packages/lisp-xyz.scm (sbcl-symbol-munger): Update to 0.0.1-2.e96558e.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-17 10:07:14 +01:00
Andrew Tropin
d69b90e9aa
gnu: ungoogled-chromium-wayland: Use PipeWire by default.
...
* gnu/packages/chromium.scm (ungoogled-chromium/wayland)[arguments]<#:builder>:
Add --enable-features=WebRTCPipeWireCapture to wrapping executable.
2022-11-17 08:38:37 +04:00
Marius Bakke
abf214cda0
gnu: crc32c: Fix build on x86_64-linux.
...
* gnu/packages/cpp.scm (crc32c)[arguments]: Remove #:phases. The check is for
SSE support in the compiler, not the build machine; and the runtime code tests
for SSE availability on the CPU before enabling the SSE code path.
2022-11-17 02:28:32 +01:00
Tobias Geerinckx-Rice
0081807e16
guix: Replace defective freemirror.org.
...
This ‘mirror’ is particularly problematic because it's the only one checked
by ‘guix refresh’.
* guix/gnu-maintenance.scm (%savannah-base): Substitute freedif.org.
* guix/download.scm (%mirrors): Likewise.
Reported by sash-kan on #guix.
2022-11-13 01:00:07 +01:00
Tobias Geerinckx-Rice
39e4e00f75
services: configuration: Revert to a working ‘guix home’.
...
This reverts commit 543d971ed2 , and
its dependent commit 9b21cd2e9a , which
appear to have triggered a recent wave of ‘guix home’ regressions
involving (services (list (service home-bash-service-type))):
In gnu/home/services/shells.scm:
504:7 3 (home-bash-extensions #<<home-bash-configuration> package: #<package bash@5.1.8 gnu/packages/ba…> …)
In unknown file:
2 (append #<<location> file: "…" line: 14 column: 12> ())
In ice-9/boot-9.scm:
1685:16 1 (raise-exception _ #:continuable? _)
1685:16 0 (raise-exception _ #:continuable? _)
ice-9/boot-9.scm:1685:16: In procedure raise-exception:
In procedure append: Wrong type argument in position 1 (expecting empty list): #<<location> file: "…" line: 14 column: 12>
I should love to dive in & fix this rather than revert, but urgently
need sleep.
2022-11-13 01:00:00 +01:00
Tobias Geerinckx-Rice
0ad036b090
gnu: bind: Update to 9.16.35.
...
* gnu/packages/dns.scm (isc-bind): Update to 9.16.35.
2022-11-13 01:00:00 +01:00
Mark H Weaver
0747cacc58
gnu: icecat: Update to 102.5.0-guix0-preview1 [security fixes].
...
Includes fixes for CVE-2022-45403, CVE-2022-45404, CVE-2022-45405,
CVE-2022-45406, CVE-2022-45408, CVE-2022-45409, CVE-2022-45410,
CVE-2022-45411, CVE-2022-45412, CVE-2022-45416, CVE-2022-45418,
CVE-2022-45420, and CVE-2022-45421.
* gnu/packages/gnuzilla.scm (%icecat-version, %icecat-build-id): Update.
(icecat-source): Update gnuzilla commit, base version, and hashes.
2022-11-16 16:45:54 -05:00
Maxim Cournoyer
6aa5d1dc24
guix-install.sh: Expand mktemp template for busybox compatibility.
...
Fixes <https://issues.guix.gnu.org/58858 >.
* etc/guix-install.sh (main): Use 6 'X' characters in the template, as this is
the minimum required by Busybox's mktemp (which matches glibc's mktemp
behavior).
Reported-by: conses <contact@conses.eu >
2022-11-16 16:23:15 -05:00
Maxim Cournoyer
e06df550e2
Update NEWS.
2022-11-16 14:28:09 -05:00
Maxim Cournoyer
83fb681658
gnu: Add clang-toolchain-15.
...
* gnu/packages/llvm.scm (clang-toolchain-15): New variable.
2022-11-16 14:08:03 -05:00
Maxim Cournoyer
68cb4f0760
gnu: Add libomp-15.
...
* gnu/packages/llvm.scm (libomp-15): New variable.
(libomp-14): Inherit from it.
[arguments]: Use substitute-keyword-arguments and override the
chdir-to-source-and-install-license phase. Remove redundant fields.
2022-11-16 14:08:03 -05:00
Maxim Cournoyer
ac99ead663
gnu: Add clang-15.
...
* gnu/packages/llvm.scm (clang-from-llvm): Add LEGACY-BUILD-SHARED-LIBS?
argument and update doc.
[configure-flags]: Conditionally add -DCLANG_LINK_CLANG_DYLIB=ON.
[phases]{change-directory}: Conditionally add phase.
{add-tools-extra}: Conditionally patch AddClang.cmake file.
(clang-15): New variable.
(clang-14): Streamline.
(clang-13, clang-12, clang-11, clang-10, clang-9, clang-8, clang-7, clang-6)
(clang-3.9.1, clang-3.8, clang-3.7, clang-3.5): Set LEGACY-BUILD-SHARED-LIBS?
argument to #t.
2022-11-16 14:08:03 -05:00
Maxim Cournoyer
52c1f5c825
gnu: Add clang-runtime-15.
...
* gnu/packages/llvm.scm (clang-runtime-15): New variable.
2022-11-16 14:08:02 -05:00
Maxim Cournoyer
bf741cdd27
gnu: Add llvm-15.
...
* gnu/packages/llvm.scm (llvm-15): New variable.
(llvm-14): Inherit from it, removing duplicated fields.
* gnu/packages/patches/clang-15.0-libc-search-path.patch: New file.
* gnu/local.mk: Register it.
2022-11-16 14:08:02 -05:00
Ricardo Wurmus
615a57bdfb
gnu: Add dsp.
...
* gnu/packages/audio.scm (dsp): New variable.
2022-11-16 19:20:23 +01:00
Ricardo Wurmus
4073f43cbc
import/cran: Add package mapping for freetype.
...
* guix/import/cran.scm (transform-sysname): Map "freetype2" to "freetype".
2022-11-16 15:43:04 +01:00
Efraim Flashner
785fd09af0
gnu: rust-gfa-0.10: Update to 0.10.1.
...
* gnu/packages/crates-io.scm (rust-gfa-0.10): Update to 0.10.1.
2022-11-16 12:46:04 +02:00
kiasoc5
56c2afd29e
gnu: udiskie: Update to 2.4.2.
...
* gnu/packages/freedesktop.scm (udiskie): Update to 2.4.2.
[phases]: Remove trailing #t.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-16 10:49:25 +01:00
Fabio Natali
996f897cf1
gnu: microscheme: Update to 0.9.4.
...
* gnu/packages/avr.scm (microscheme): Update to 0.9.4.
[native-inputs]: Add clang and cppcheck.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-16 10:45:26 +01:00
Paul A. Patience
8a64495ef6
gnu: Add cl-random-sample.
...
* gnu/packages/lisp-xyz.scm (sbcl-random-sample, cl-random-sample,
ecl-random-sample): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-16 10:39:21 +01:00
Paul A. Patience
5bb4e9faae
gnu: Add cl-infix-math.
...
* gnu/packages/lisp-xyz.scm (sbcl-infix-math, cl-infix-math,
ecl-infix-math): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-16 10:36:07 +01:00
Paul A. Patience
56f73178e4
gnu: Add cl-wu-decimal.
...
* gnu/packages/lisp-xyz.scm (sbcl-wu-decimal, cl-wu-decimal,
ecl-wu-decimal): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-16 10:34:42 +01:00
Paul A. Patience
fd34760e28
gnu: Add cl-moira.
...
* gnu/packages/lisp-xyz.scm (sbcl-moira, cl-moira, ecl-moira): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-16 10:29:50 +01:00
Paul A. Patience
ce9f956095
gnu: Add cl-flamegraph.
...
* gnu/packages/lisp-xyz.scm (sbcl-flamegraph, cl-flamegraph): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-16 10:23:53 +01:00
jgart
608999be59
gnu: Add cl-closure-template.
...
* gnu/packages/lisp-xyz.scm (cl-closure-template, ecl-closure-template,
sbcl-closure-template): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-16 10:16:23 +01:00
Florian Pelz
706a916056
news: Add 'de' translation.
...
* etc/news.scm: Add German translation of '--symlink' entry.
2022-11-16 09:08:44 +01:00
Maxim Cournoyer
5512915c3b
gnu: mcron: Update to 1.2.1-0.5fd0ccd.
...
* gnu/packages/guile-xyz.scm (mcron): Update to 1.2.1-0.5fd0ccd.
[native-inputs]: Add autoconf, automake, help2man, and texinfo.
2022-11-15 16:26:16 -05:00
Maxim Cournoyer
1df89e4345
gnu: Remove guile2.2-mcron.
...
* gnu/packages/guile-xyz.scm (guile2.2-mcron): Delete variable.
2022-11-15 16:26:16 -05:00
Maxim Cournoyer
3d8a331518
gnu: mcron: Use gexps and strip trailing #t.
...
* gnu/packages/guile-xyz.scm (mcron)
[phases]: Use gexps and strip trailing #t.
2022-11-15 16:26:16 -05:00
Maxim Cournoyer
9b21cd2e9a
services: mcron: Add log? and log-format fields to mcron-configuration.
...
* gnu/services/mcron.scm (list-of-gexps?): New predicate.
(mcron-configuration): Rewrite using define-configuration.
[log?, log-format]: New fields.
(mcron-shepherd-services): Invoke mcron with the --log and --log-format
arguments when log? is #t,
(generate-doc): New procedure.
* doc/guix.texi (Scheduled Job Execution): Update doc.
(Mcron Home Service): Likewise.
* gnu/home/services/mcron.scm: Keep in sync with the above changes to
gnu/services/mcron.scm.
2022-11-15 16:26:16 -05:00
Maxim Cournoyer
543d971ed2
services: configuration: Re-order generated record fields.
...
This is so that the first field of the generated record matches the first one
declared, which makes 'define-configuration' record API compatible with
define-record-type* ones.
* gnu/services/configuration.scm (define-configuration-helper): Move the
%location field below the ones declared by the user.
* gnu/services/monitoring.scm (zabbix-front-end-config): Adjust match pattern
accordingly.
2022-11-15 16:26:16 -05:00
Maxim Cournoyer
8f9588185d
news: Add entry for 'guix shell --symlink'.
...
* etc/news.scm: Add entry.
2022-11-15 14:40:53 -05:00
Maxim Cournoyer
b538ccc208
etc/news.scm: Normalize indentation.
...
* etc/news.scm: Normalize indentation.
2022-11-15 14:38:28 -05:00
Maxim Cournoyer
788602b37f
shell: Detect --symlink spec problems early.
...
* guix/scripts/pack.scm (symlink-spec-option-parser): Remove extraneous
char-set. Raise an exception when the target is an absolute file name.
(guix-pack): Move with-error-handler earlier.
* guix/scripts/shell.scm (guix-shell): Likewise.
* guix/scripts/environment.scm (guix-environment): Wrap the whole
guix-environment* call with the with-error-handling handler.
* tests/guix-environment-container.sh: Add tests.
* tests/guix-pack.sh: Adjust symlink spec.
2022-11-15 14:15:11 -05:00
Maxim Cournoyer
b31ea797ed
guix: shell: Add '--symlink' option.
...
* guix/scripts/pack.scm (%options): Extract symlink parsing logic to...
(symlink-spec-option-parser): ... here.
(self-contained-tarball/builder): Add a comment mentioning why a relative file
name is used for the link target.
* guix/scripts/environment.scm (show-environment-options-help): Document new
--symlink option.
(%default-options): Add default value for symlinks.
(%options): Register new symlink option.
(launch-environment/container): Add #:symlinks argument and extend doc, and
create symlinks using evaluate-populate-directive.
(guix-environment*): Pass symlinks arguments to launch-environment/container.
* doc/guix.texi (Invoking guix shell): Document it.
* tests/guix-shell.sh: Add a --symlink (negative) test.
* tests/guix-environment-container.sh: Add tests.
2022-11-15 14:15:11 -05:00
Maxim Cournoyer
0bb872b379
install: Validate symlink target in evaluate-populate-directive.
...
* gnu/build/install.scm (evaluate-populate-directive): By default, error when
the target of a symlink doesn't exist. Always ensure TARGET ends with "/".
(populate-root-file-system): Call evaluate-populate-directive with
#:error-on-dangling-symlink #t and add comment.
2022-11-15 14:15:11 -05:00
Maxim Cournoyer
8934827014
Makefile.am: Sort EXTRA_DIST entries.
...
* Makefile.am (EXTRA_DIST): Sort.
2022-11-15 14:15:10 -05:00
Efraim Flashner
45ae3c830f
gnu: Add rust-1.65.
...
* gnu/packages/rust.scm (rust-1.65): New variable.
2022-11-15 18:13:37 +02:00
Efraim Flashner
b4762e1e87
gnu: Add rust-1.64.
...
* gnu/packages/rust.scm (rust-1.64): New variable.
2022-11-15 18:13:37 +02:00
kiasoc5
9a27b61d37
gnu: Add rust-1.63.
...
* gnu/packages/rust.scm (rust-1.63): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-15 18:13:37 +02:00
kiasoc5
f0ccfcc0a7
gnu: Add rust-1.62.
...
* gnu/packages/rust.scm (rust-1.62): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-15 18:13:36 +02:00
kiasoc5
27237344d3
gnu: Add rust-1.61.
...
* gnu/packages/rust.scm (rust-1.61): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-15 18:13:36 +02:00
Marius Bakke
2f5607badc
gnu: libjxl: Propagate required inputs.
...
* gnu/packages/image.scm (libjxl)[inputs]: Move GOOGLE-BROTLI and
GOOGLE-HIGHWAY ...
[propagated-inputs]: ... here.
2022-11-15 13:09:04 +01:00
Tobias Geerinckx-Rice
d2b4226709
gnu: nano: Update to 7.0.
...
* gnu/packages/nano.scm (nano): Update to 7.0.
2022-11-13 01:00:06 +01:00
Tobias Geerinckx-Rice
ee1241fef6
gnu: fuzzel: Fix typo in description.
...
* gnu/packages/xdisorg.scm (fuzzel)[description]: Fix ‘foot’ typo.
2022-11-13 01:00:06 +01:00
Ludovic Courtès
5b555d639d
doc: Add missing closing parentheses in examples.
...
* doc/guix.texi (VNC Services, Guix Home Services): Add missing closing
parentheses.
2022-11-15 12:16:44 +01:00
pelzflorian (Florian Pelz)
fd13259d85
doc: Link to the Git book instead of the git-scm.com homepage.
...
The Pro Git book, unlike the git-scm.com homepage, is translated to
many languages. Therefore translators of the Guix Manual can point
to the appropriate translation now.
* doc/guix.texi (Invoking guix pull): Point to the Pro Git book's URL.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-15 12:16:44 +01:00
Ludovic Courtès
0be722a0b5
doc: Build pt_BR manual.
...
* doc/build.scm (%manual-languages): Add "pt_BR".
2022-11-15 12:16:44 +01:00
pelzflorian (Florian Pelz)
8162d207b1
doc: Refer to the pt_BR translation.
...
* doc/guix.texi (Top): Mention Brazilian Portuguese.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-15 12:16:44 +01:00
kiasoc5
feaa52801a
gnu: Add fuzzel.
...
This patch avoids building fuzzel with bundled nanosvg and uses librsvg instead.
* gnu/packages/xdisorg.scm (fuzzel): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-15 12:16:43 +01:00
Antero Mejr
7d1add80b2
gnu: Add safeint.
...
* gnu/packages/cpp.scm (safeint): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-15 12:16:43 +01:00
Ludovic Courtès
94dc60841b
installer: Migrate to 'guile-gnutls'.
...
* gnu/installer.scm (installer-program): Replace GNUTLS with GUILE-GNUTLS.
2022-11-15 12:16:43 +01:00
Ludovic Courtès
514fedbf39
installer: Report known-unsupported PCI devices.
...
* gnu/installer/hardware.scm: New file.
* gnu/local.mk (INSTALLER_MODULES): Add it.
* po/guix/POTFILES.in: Add it.
* gnu/installer.scm (installer-steps): Pass #:pci-database to the
'welcome' step procedure.
* gnu/installer/newt.scm (welcome-page): Add #:pci-database and pass it
to 'run-welcome-page'.
* gnu/installer/newt/welcome.scm (check-hardware-support): Add #:pci-database.
Enumerate unsupported PCI devices and run an error page when unsupported
devices are found.
(run-welcome-page): Add #:pci-database and pass it to
'check-hardware-support' and to the recursive call.
* gnu/installer/record.scm (<installer>)[welcome-page]: Adjust comment.
* doc/guix.texi (Hardware Considerations): Mention it.
2022-11-15 12:16:43 +01:00
Ludovic Courtès
6b39c3afcc
installer: Error page width is parameterized.
...
* gnu/installer/newt/page.scm (run-error-page): Add #:width and honor
it.
2022-11-15 12:16:43 +01:00
Ludovic Courtès
938d6161cb
installer: Use 'current-guix' for extensions.
...
This lets us use the latest (gnu build linux-modules) for instance.
Note that items listed in 'with-extensions' come first in the load path,
before the directory containing the modules in 'with-imported-modules'.
* gnu/installer.scm (installer-program): Use (current-guix) instead of
'guix' in 'with-extensions'.
2022-11-15 12:16:43 +01:00
Ludovic Courtès
afbd4d8470
linux-modules: Add 'load-pci-device-database'.
...
* gnu/build/linux-modules.scm (read-pci-device-database)
(load-pci-device-database): New procedures.
2022-11-15 12:16:43 +01:00
Ludovic Courtès
655fb8feac
linux-modules: Add support for listing PCI devices.
...
* gnu/build/linux-modules.scm (<pci-device>): New record type.
(pci-device-class-predicate, storage-pci-device?, network-pci-device?)
(display-pci-device?, pci-devices?): New procedures.
2022-11-15 12:16:42 +01:00
Ludovic Courtès
4f7ffb97a4
installer: Warn about hardware support after the welcome page.
...
This is a followup to 682639c107 , which
added the uvesafb upfront, before welcome page had been displayed.
* gnu/installer/newt/welcome.scm (check-hardware-support): New
procedure.
(run-welcome-page): Use it.
2022-11-15 12:16:42 +01:00
James Smith
de61a0aa4a
gnu: slade: Update to 3.2.1.
...
* gnu/packages/game-development.scm (slade): Update to 3.2.1.
[arguments]: Use G-expressions.
[phases]: Remove reset-slade.pk3-timestamp phase.
[inputs]: Remove input labels. Add lua and mpg123. Replace wxwidgets-3.1
with wxwidgets.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-15 12:30:49 +02:00
michaeldelago
3f58fbe34a
gnu: fzf: update to 0.34.0.
...
* gnu/packages/terminals.scm (go-github-com-junegunn-fzf): Update to
0.34.0.
[inputs]: Add go-github-com-rivo-uniseg, go-golang-org-x-term.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-15 12:30:49 +02:00
jgart
d15373655b
gnu: python-bottle: Update to 0.12.23.
...
* gnu/packages/python-web.scm (python-bottle): Update to 0.12.23.
[native-inputs]: Add python-pytest.
[arguments]: Use pytest to call test suite.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-15 12:30:49 +02:00
Sharlatan Hellseher
3775e997ba
gnu: python-mdurl: Enable tests.
...
* gnu/packages/python-xyz.scm (python-mdurl): Enable tests.
[source]: Use git checkout with tests.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-pytest.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-15 12:30:48 +02:00
Sharlatan Hellseher
153e7d8956
gnu: python-colorful: Enable tests.
...
* gnu/packages/python-xyz.scm (python-colorful): Enable tests.
[source]: Use git checkout which has tests.
[build-system]: Use pyproject-build-system.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-15 12:30:41 +02:00
Sharlatan Hellseher
d244282b69
gnu: Add cl-gss.
...
* gnu/packages/lisp-xyz.scm (ecl-cl-gss, cl-gss, sbcl-cl-gss): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-15 11:22:29 +01:00
Sharlatan Hellseher
3d09c03ea8
gnu: cl-radiance: Update to 2.1.2-2.a723783.
...
* gnu/packages/lisp-xyz.scm (sbcl-radiance): Update to 2.1.2-2.a723783.
[native-inputs, inputs]: Remove labels.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-15 11:22:29 +01:00
jgart
c7422310ee
gnu: Add cl-wild-package-inferred-system.
...
* gnu/packages/lisp-xyz.scm (cl-wild-package-inferred-system,
ecl-wild-package-inferred-system, sbcl-wild-package-inferred-system):
New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-15 11:22:29 +01:00
Ricardo Wurmus
02db3f51b7
gnu: Add r-disgenet2r.
...
* gnu/packages/bioinformatics.scm (r-disgenet2r): New variable.
2022-11-15 11:03:24 +01:00
dan
92af171860
gnu: virt-manager: Update to 4.1.0.
...
* gnu/packages/virtualization (virt-manager): Update to 4.1.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-15 11:09:15 +02:00
Csepp
c35b51f002
gnu: python-qtconsole: Use python-pyqt-without-webkit.
...
* gnu/packages/python-xyz.scm (python-qtconsole)[propagated-inputs]:
Use python-pyqt-without-qtwebkit.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-15 11:09:15 +02:00
kiasoc5
5ac20c9a25
gnu: copyq: Update to 6.3.2.
...
* gnu/packages/xdisorg (copyq): Update to 6.3.2.
[arguments]: Use g-expressions.
[inputs]: Add qtdeclarative-5, qtwayland-5, wayland, knotifications.
[native-inputs]: Add extra-cmake-modules, qttools-5.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-11-15 10:59:04 +02:00
Efraim Flashner
587a0f4600
gnu: Add onedrive.
...
* gnu/packages/sync.scm (onedrive): New variable.
2022-11-15 10:08:00 +02:00
Efraim Flashner
02d82dedc8
gnu: torsocks: Add release-monitoring-url.
...
* gnu/packages/tor.scm (torsocks)[properties]: New field.
2022-11-15 10:03:53 +02:00
Efraim Flashner
717dba1c53
gnu: syncthing: Update release-monitoring-url.
...
* gnu/packages/syncthing.scm (syncthing)[properties]: Update
release-monitoring-url.
2022-11-15 10:03:53 +02:00
Efraim Flashner
de1bc72f04
gnu: mutt: Update to 2.2.9.
...
* gnu/packages/mail.scm (mutt): Update to 2.2.9.
2022-11-15 10:03:53 +02:00
Efraim Flashner
b1a72fd6b6
gnu: git-annex: Update to 10.20221103.
...
* gnu/packages/haskell-apps.scm (git-annex): Update to 10.20221103.
2022-11-15 10:03:53 +02:00
Efraim Flashner
c666cc3fb9
gnu: moreutils: Add release-monitoring-url.
...
* gnu/packages/moreutils.scm (moreutils)[properties]: New field.
2022-11-15 10:03:52 +02:00
(unmatched-parenthesis
5f8a2a7a69
gnu: Add go-github-com-miolini-datacounter.
...
* gnu/packages/golang.scm (go-github-com-miolini-datacounter): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-15 02:08:41 -05:00
(unmatched-parenthesis
02824cda55
gnu: Add go-github-com-riywo-loginshell.
...
* gnu/packages/golang.scm (go-github-com-riywo-loginshell): New
variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-15 01:24:28 -05:00
Ricardo Wurmus
2a58ddb6da
gnu: multipath-tools: Set prefix instead of DESTDIR.
...
This is necessary to avoid having multipath look for its plugins in /lib
instead of /gnu/store/...-multipath-tools-.../lib.
* gnu/packages/linux.scm (multipath-tools)[arguments]: Replace DESTDIR with
prefix in make flags; override configdir to look up stateful configurations in
global /etc directory.
2022-11-14 22:52:44 +01:00
Ricardo Wurmus
a570b4e1ee
gnu: multipath-tools: Enable parallel build.
...
* gnu/packages/linux.scm (multipath-tools)[arguments]: Remove parallel-build?
argument.
2022-11-14 22:52:44 +01:00
Ricardo Wurmus
66edd586c2
gnu: multipath-tools: Update to 0.9.3.
...
* gnu/packages/linux.scm (multipath-tools): Update to 0.9.3.
[source]: Adjust snippet.
2022-11-14 22:52:44 +01:00
Tobias Geerinckx-Rice
f2bfc31f17
gnu: dropbear: Update to 2022.83.
...
* gnu/packages/ssh.scm (dropbear): Update to 2022.83.
[arguments]: Remove obsolete part of 'enable-x11-forwarding phase.
2022-11-13 01:00:00 +01:00
Arun Isaac
d0118c9930
gnu: prosody: Invoke prosody wrapper script directly.
...
* gnu/packages/messaging.scm (prosody)[arguments]: Add invoke-prosody-wrapper
phase.
2022-11-15 00:19:16 +05:30
Nicolas Goaziou
0581f11181
gnu: emacs-package-build: Update to 3.2.
...
* gnu/packages/emacs-xyz.scm (emacs-package-build): Update to 3.2.
2022-11-14 19:42:06 +01:00
Nicolas Goaziou
8a8eea58ee
gnu: emacs-ebib: Update to 2.39.3.
...
* gnu/packages/emacs-xyz.scm (emacs-ebib): Update to 2.39.3.
2022-11-14 19:42:06 +01:00
Nicolas Goaziou
2ead125673
gnu: emacs-project: Update to 0.8.3.
...
* gnu/packages/emacs-xyz.scm (emacs-project): Update to 0.8.3.
2022-11-14 19:42:05 +01:00
Efraim Flashner
f572de77c4
gnu: tegola: Don't use autogenerated tarball.
...
* gnu/packages/geo.scm (tegola)[source]: Download using git-fetch.
2022-11-14 15:43:46 +02:00
Efraim Flashner
aa5df43668
gnu: imposm3: Don't use autogenerated tarball.
...
* gnu/packages/geo.scm (imposm3)[source]: Download using git-fetch.
2022-11-14 15:43:41 +02:00
Efraim Flashner
2fc6d733f3
gnu: infinibadn-diags: Don't use autogenerated tarball.
...
* gnu/packages/fabric-management.scm (infiniband-diags)[source]:
Download release tarball.
[native-inputs]: Remove autoconf, automake, libtool.
2022-11-14 15:43:35 +02:00
Efraim Flashner
2fc7e345aa
gnu: sqlcipher: Don't use autogenerated tarball.
...
* gnu/packages/databases.scm (sqlcipher)[source]: Download using
git-fetch.
2022-11-14 15:30:23 +02:00
Efraim Flashner
41b0d72f43
gnu: tint2: Add source file-name.
...
* gnu/packages/xdisorg.scm (tint2)[source]: Add file-name field.
2022-11-14 15:24:33 +02:00
Efraim Flashner
b13f00f0e1
gnu: i3-gaps: Add source file-name.
...
* gnu/packages/wm.scm (i3-gaps)[source]: Add file-name field.
2022-11-14 15:23:49 +02:00
Efraim Flashner
2b5b3c71d8
gnu: gfeeds: Add source file-name.
...
* gnu/packages/syndication.scm (gfeeds)[source]: Add file-name field.
2022-11-14 15:22:49 +02:00
Efraim Flashner
a2250d1793
gnu: python-readability-lxml: Add source file-name.
...
* gnu/packages/python-xyz.scm (python-readability-lxml)[source]: Add
file-name field.
2022-11-14 15:21:42 +02:00
Efraim Flashner
4d9b8ef391
gnu: python-flask-migrate: Add source file-name.
...
* gnu/packages/python-web.scm (python-flask-migrate)[source]: Add
file-name field.
2022-11-14 15:20:44 +02:00
Efraim Flashner
19f8ebae0e
gnu: tdlib-1.8.0: Add source file-name.
...
* gnu/packages/messaging.scm (tdlib-1.8.0)[source]: Add file-name field.
2022-11-14 15:19:39 +02:00
Efraim Flashner
a5d64173e0
gnu: cddlib: Add source file-name.
...
* gnu/packages/maths.scm (cddlib)[source]: Add file-name field.
2022-11-14 15:18:33 +02:00
Efraim Flashner
a0aa6542ac
gnu: irrlicht-for-minetest: Add source file-name.
...
* gnu/packages/games.scm (irrlicht-for-minetest)[source]: Add file-name
field.
2022-11-14 15:17:42 +02:00
Efraim Flashner
038e3d3419
gnu: emacs-hledger-mode: Add source file-name.
...
* gnu/packages/finance.scm (emacs-hledger-mode)[source]: Add file-name
field.
2022-11-14 15:16:37 +02:00
Efraim Flashner
eeca8fa52d
gnu: emacs-nyan-mode: Add source file-name.
...
* gnu/packages/emacs-xyz.scm (emacs-nyan-mode)[source]: Add file-name
field.
2022-11-14 15:12:32 +02:00
Efraim Flashner
0a0c64dc35
gnu: emacs-consult-org-roam: Add source file-name.
...
* gnu/packages/emacs-xyz.scm (emacs-consult-org-roam)[source]: Add
file-name field.
2022-11-14 15:11:27 +02:00
Efraim Flashner
6caf619a72
gnu: emacs-fennel-mode: Add source file-name.
...
* gnu/packages/emacs-xyz.scm (emacs-fennel-mode)[source]: Add file-name
field.
2022-11-14 15:10:27 +02:00
Efraim Flashner
609d7ae7f8
gnu: emacs-w3m: Add source file-name.
...
* gnu/packages/emacs-xyz.scm (emacs-w3m)[source]: Add file-name field.
2022-11-14 15:09:36 +02:00
Efraim Flashner
7615248267
gnu: emacs-org-chef: Add source file-name.
...
* gnu/packages/emacs-xyz.scm (emacs-org-chef)[source]: Add file-name
field.
2022-11-14 15:08:46 +02:00
Efraim Flashner
9deb49e1e4
gnu: emacs-ox-gfm: Add source file-name.
...
* gnu/packages/emacs-xyz.scm (emacs-ox-gfm)[source]: Add file-name
field.
2022-11-14 15:07:44 +02:00
Efraim Flashner
344c65f1f7
gnu: emacs-pdfgrep: Add source file-name.
...
* gnu/packages/emacs-xyz.scm (emacs-pdfgrep)[source]: Add file-name
field.
2022-11-14 15:06:53 +02:00
Efraim Flashner
64b153556e
gnu: emacs-orca: Add source file-name.
...
* gnu/packages/emacs-xyz.scm (emacs-orca)[source]: Add file-name field.
2022-11-14 15:06:00 +02:00
Efraim Flashner
6030bdcf6a
gnu: emacs-ednc: Add source file-name.
...
* gnu/packages/emacs-xyz.scm (emacs-ednc)[source]: Add file-name field.
2022-11-14 15:02:26 +02:00
Efraim Flashner
e64feb2cfb
gnu: emacs-consult-bibtex: Add source file-name.
...
* gnu/packages/emacs-xyz.scm (emacs-consult-bibtex)[source]: Add
file-name field.
2022-11-14 15:01:29 +02:00
Efraim Flashner
de1bce32c0
gnu: qm-dsp: Add source file-name.
...
* gnu/packages/audio.scm (qm-dsp)[source]: Add file-name field.
2022-11-14 15:00:26 +02:00
Efraim Flashner
643d4f63be
gnu: btop: Don't use autogenerated tarball.
...
* gnu/packages/admin.scm (btop)[source]: Download using git-fetch.
2022-11-14 14:59:02 +02:00
Efraim Flashner
18b39f34b0
gnu: luajit: Add source file-name.
...
* gnu/packages/lua.scm (luajit)[source]: Add file-name field.
2022-11-14 14:53:54 +02:00
kiasoc5
4ba780aeb8
gnu: kanshi: Update to 1.3.0.
...
* gnu/packages/wm.scm (kanshi): Update to 1.3.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-14 12:31:35 +01:00
kiasoc5
8eb8c732dd
gnu: wf-recorder: Update to 0.3.0.
...
* gnu/packages/video.scm (wf-recorder): Update to 0.3.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-14 12:31:34 +01:00
kiasoc5
d5fff6885b
gnu: swayidle: Update to 1.7.1.
...
* gnu/packages/wm.scm (swayidle): Update to 1.7.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-14 12:31:34 +01:00
John Kehayias
2e33a78a93
gnu: Add snixembed.
...
* gnu/packages/freedesktop.scm (snixembed): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-14 12:31:34 +01:00
Leo Nikkilä
fbdd0a4a14
gnu: luajit: Update to commit 6c4826.
...
* gnu/packages/lua.scm (luajit)[source]: Use git-fetch, remove patch.
* gnu/packages/patches/luajit-no_ldconfig.patch: Delete patch.
* gnu/local.mk (dist_patch_DATA): Remove it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-14 12:31:34 +01:00
Sharlatan Hellseher
8d7c96284a
gnu: Add siril.
...
* gnu/packages/astronomy.scm (siril): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-14 12:31:34 +01:00
Sharlatan Hellseher
cf8e5f4ff8
gnu: Add librtprocess.
...
* gnu/packages/photo.scm (librtprocess): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-14 12:31:34 +01:00
Fabio Natali
98e4bfe96f
gnu: Add clojure-data-csv.
...
* gnu/packages/clojure.scm (clojure-data-csv): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-14 12:31:34 +01:00
Matthieu Simonin
e24f7762ac
gnu: Add python-enoslib.
...
* gnu/packages/python-web.scm (python-enoslib): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-11-14 12:31:33 +01:00
Ludovic Courtès
54003af85c
self: Mark the generation (guix config) as non-declarative.
...
Fixes <https://issues.guix.gnu.org/58927 >.
Reported by Maxime Devos <maximedevos@telenet.be >
and Marius Bakke <marius@gnu.org >.
Starting from 076e825dc5 , "guix --version"
would print "0" as the version number, due to '%guix-version' being
inlined in (guix ui) when compiling '*core-modules*' in (guix self).
* guix/self.scm (make-config.scm): Pass #:declarative? #f.
2022-11-14 12:31:33 +01:00
Pierre Neidhardt
4cc746820a
gnu: bbswitch-module: Update to 20220529 and fix for Linux 5.18+.
...
* gnu/packages/linux.scm (bbswitch-module): Update to 20220529 and fix for
Linux 5.18+.
[source]: Switch to fork since fix is not merged upstream yet.
2022-11-14 11:28:25 +01:00
Christopher Baines
f73d9690ad
gnu: protobuf-2: Use gexp in arguments.
...
This fixes the breakage introduced when the protobuf package switched to using
gexp's in the arguments.
The package doesn't build, but at least the builder is now deterministic and
valid Guile.
* gnu/packages/protobuf.scm (protobuf-2)[arguments]: Adapt to use gexp's.
2022-11-14 08:59:23 +00:00
Prafulla Giri
775134ebf5
guix-install.sh: Remove unnecessary XDG_DATA_DIRS export.
...
This started out as a bug-fix for a GUI login loop that was resulting from XDG_DATA_DIRS
not including any of the host distro's directories. The solution was to export the vari-
able (with fail-safe defaults) before source-ing GUIX_PROFILE/etc/profile. It turns out
changes have already been made to ensure that XDG_DATA_DIRS, etc. are always exported
before anything guix-specific. So, this export is no longer necessary.
For reference, the aforementioned bug was found on a Debian 11 machine and it's guix.sh
init profile for guix version 1.2.
* etc/guix-install.sh (sys_create_init_profile): Remove unnecessary
XDG_DATA_DIRS export.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-14 10:25:45 +08:00
dan
3ff0a976e8
gnu: mpv: Update to 0.35.0.
...
* gnu/packages/video.scm (mpv): Update to 0.35.0.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-14 10:09:07 +08:00
Thiago Jung Bauermann
b59b033af3
gnu: emacs-magit: Substitute git executable path.
...
Magit has a strong dependency on Git so it should directly reference the
git executable rather than expect it to be available in the profile or
environment.
This also fixes a build failure in emacs-forge.
* gnu/packages/emacs-xyz.scm (emacs-magit)[arguments]<#:phases>: Substitute
git path in the ‘magit-git-executable’ variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-13 22:49:10 +01:00
Liliana Marie Prikler
7565aecf7a
gnu: komikku: Update to 1.4.0.
...
* gnu/packages/gnome.scm (komikku): Update to 1.4.0.
2022-11-13 22:49:10 +01:00
Hilton Chain
b52ac1c874
gnu: Add spectre-meltdown-checker.
...
* gnu/packages/linux.scm (spectre-meltdown-checker): New variable.
* gnu/packages/patches/spectre-meltdown-checker-find-kernel.patch: New file.
* gnu/packages/patches/spectre-meltdown-checker-externalize-fwdb.patch:
New file.
* gnu/local.mk (dist_patch_DATA): Register them here.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-13 22:49:10 +01:00
Ricardo Wurmus
4df7db5955
gnu: gwl: Update to 0.5.1.
...
* gnu/packages/package-management.scm (gwl): Update to 0.5.1.
[arguments]: Disable one test.
2022-11-13 19:49:05 +01:00
Ricardo Wurmus
0d2ad7b7c0
gnu: ardour: Do not use labels in list of native inputs.
...
* gnu/packages/audio.scm (ardour)[native-inputs]: Drop package labels.
2022-11-13 19:28:47 +01:00
Ricardo Wurmus
927e03ade6
gnu: ardour: Remove trailing #T from phases.
...
* gnu/packages/audio.scm (ardour)[arguments]: Remove trailing #T.
(ardour-rpath-phase): Same.
2022-11-13 19:28:47 +01:00
Sughosha
08d3197470
gnu: ardour: Install man page.
...
* gnu/packages/audio.scm (ardour)[arguments]: Add phase "install-man-page".
2022-11-13 19:28:47 +01:00
Sughosha
9a8a937743
gnu: ardour: Use more system libraries.
...
* gnu/packages/audio.scm (ardour)[arguments]: Enable use of external
libraries.
[inputs]: Add fluidsynth, hidapi, libltc, and qm-dsp.
2022-11-13 19:28:47 +01:00
Sughosha
6737fdc1c8
gnu: Add qm-dsp.
...
* gnu/packages/audio.scm (qm-dsp): New variable.
Co-authored-by: Ricardo Wurmus <rekado@elephly.net >
2022-11-13 19:28:47 +01:00
Sughosha
9a8c256cae
gnu: ardour: Update to 7.0
...
* gnu/packages/audio.scm (ardour): Update to 7.0.
2022-11-13 19:28:47 +01:00
Arun Isaac
394684bfeb
gnu: prosody: Add bash-minimal to inputs.
...
* gnu/packages/messaging.scm (prosody)[inputs]: Add bash-minimal.
2022-11-13 22:19:04 +05:30
Arun Isaac
1f017bf7d0
gnu: prosody: Update to 0.12.1.
...
* gnu/packages/messaging.scm (prosody): Update to 0.12.1.
[inputs]: Add icu4c.
2022-11-13 22:18:59 +05:30
EuAndreh
5ef933efa4
services: vpn: Fix the profile wireguard package.
...
This is a follow-up of: fb35b7cedd .
* gnu/services/vpn.scm (wireguard-service-type): Add the wireguard package
from the configuration to the profile.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-11-13 14:03:54 +01:00
Efraim Flashner
80d10fa413
gnu: ck: Add support for riscv64-linux.
...
* gnu/packages/c.scm (gnu-triplet->ck-machine target): Add case for
riscv64.
2022-11-13 12:24:03 +02:00
Efraim Flashner
ec6e82ba88
gnu: mimalloc: Update to 2.0.7.
...
* gnu/packages/c.scm (mimalloc): Update to 2.0.7.
2022-11-13 11:49:28 +02:00
Maxim Cournoyer
4f648f6096
gnu: Add c-intro-and-ref.
...
* gnu/packages/c.scm (c-intro-and-ref): New variable.
2022-11-13 00:25:43 -05:00
David Thompson
c4025af8c1
gnu: guile-websocket: Update to 0.1.
...
* gnu/packages/guile-xyz.scm (guile-websocket): Update to 0.1.
2022-11-12 20:13:13 -05:00
Nicolas Goaziou
42d1fa6fc4
gnu: emacs-php-mode: Update to 1.24.2.
...
* gnu/packages/emacs-xyz.scm (emacs-php-mode): Update to 1.24.2.
2022-11-12 22:57:06 +01:00
Nicolas Goaziou
40138eac83
gnu: emacs-helm: Update to 3.9.0.
...
* gnu/packages/emacs-xyz.scm (emacs-helm): Update to 3.9.0.
2022-11-12 22:55:22 +01:00
Nicolas Goaziou
733fba28df
gnu: fet: Update to 6.7.1.
...
* gnu/packages/education.scm (fet): Update to 6.7.1.
2022-11-12 18:53:56 +01:00
EuAndreh
fb35b7cedd
services: vpn: Add wireguard-tools to profile-service-type.
...
* gnu/services/vpn.scm (wireguard-service-type): Include the
"wireguard-tools" package as an extension to profile-service-type, so
that users that enable the wireguard service can interact with it via
the command-line without having to manually install wireguard-tools.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-11-12 18:40:16 +01:00
Mathieu Othacehe
2757de2e2b
gnu: cuirass: Update to 1.1.0-12.1fb4b0a.
...
* gnu/packages/ci.scm (cuirass): Update to 1.1.0-12.1fb4b0a.
2022-11-12 12:03:19 +01:00
Mathieu Othacehe
d8d4b585e7
gnu: guile-simple-zmq: Update to 0.0.0-10.ff0b39a.
...
* gnu/packages/guile-xyz.scm (guile-simple-zmq): Update to 0.0.0-10.ff0b39a.
2022-11-12 12:03:19 +01:00
jgart
c3cbe1c8da
gnu: Add emacs-free-keys.
...
* gnu/packages/emacs-xyz.scm (emacs-free-keys): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-12 11:32:33 +01:00
Nicolas Goaziou
f9ff7dd1cf
gnu: emacs-helm: Update to 3.8.9.
...
* gnu/packages/emacs-xyz.scm (emacs-helm): Update to 3.8.9.
2022-11-12 11:32:18 +01:00
Nicolas Goaziou
ed013c10fd
gnu: emacs-prescient: Update to 6.0.
...
* gnu/packages/emacs-xyz.scm (emacs-prescient): Update to 6.0.
2022-11-12 11:32:18 +01:00
Nicolas Goaziou
e2a75b4e91
gnu: emacs-ctrlf: Update to 1.6.
...
* gnu/packages/emacs-xyz.scm (emacs-ctrlf): Update to 1.6.
2022-11-12 11:32:18 +01:00
Nicolas Goaziou
eac27d829d
gnu: emacs-apheleia: Update to 3.1.
...
* gnu/packages/emacs-xyz.scm (emacs-apheleia): Update to 3.1.
2022-11-12 11:32:17 +01:00
Nicolas Goaziou
ec7c888f0a
gnu: emacs-exwm: Update to 0.27.
...
* gnu/packages/emacs-xyz.scm (emacs-exwm): Update to 0.27.
2022-11-12 11:32:17 +01:00
Nicolas Goaziou
b5b4edeec6
gnu: emacs-subed: Update to 1.0.19.
...
* gnu/packages/emacs-xyz.scm (emacs-subed): Update to 1.0.19.
2022-11-12 11:32:17 +01:00
Raghav Gururajan
01aa6e0454
teams: Add Raghav Gururajan.
...
* etc/teams.scm.in: Add Raghav Gururajan.
2022-11-12 04:09:40 -05:00
jgart
0209ee0b55
gnu: Add carp.
...
* gnu/packages/lisp.scm (carp): New variable.
Co-authored-by: ( <paren@disroot.org >
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-12 03:57:17 -05:00
Raghav Gururajan
3c62b03798
Revert "teams: Add Raghav Gururajan."
...
This reverts commit 56aebf7f7c .
2022-11-12 03:49:39 -05:00
Raghav Gururajan
56aebf7f7c
teams: Add Raghav Gururajan.
...
* etc/teams.scm.in: Add Raghav Gururajan.
2022-11-12 03:43:15 -05:00
Maxim Cournoyer
008f3a28c6
gnu: jami: Enable unit tests.
...
* gnu/packages/patches/jami-fix-qml-imports.patch: New file.
* gnu/packages/patches/jami-fix-unit-tests-build.patch: Likewise.
* gnu/packages/patches/jami-libjami-headers-search.patch: Likewise.
* gnu/packages/patches/jami-sip-unregister.patch: Likewise.
* gnu/packages/patches/jami-xcb-link.patch: Likewise.
* gnu/local.mk: Register them.
* gnu/packages/jami.scm (%jami-sources): Apply new patches.
(jami) [tests?]: Delete argument to run tests.
[configure-flags]: Remove TESTS? argument.
Enable tests with -DENABLE_TESTS=ON. Remove -DLIBJAMI_INCLUDE_DIR.
[phases] {check}: New phase override.
[native-inputs]: Add settings-desktop-schemas.
[inputs]: Add glib and libxcb.
2022-11-12 00:39:35 -05:00
Maxim Cournoyer
d7d09a2773
gnu: jami: Update to 20221031.1308.130cc26.
...
* gnu/packages/jami.scm (libjami, jami): Update to 20221031.1308.130cc26.
(%jami-sources): Remove jami-fix-crash-on-block-contact patch. Add
jami-disable-integration-tests and jami-no-webengine patches.
(pjproject-jami): Update to 2.12-1.513a3f1.
(ffmpeg-jami): Replace libvpx with libvpx-next. Replace libx264 with
libx264-next.
(libjami): Update comment with upstream issue URL.
[tests?]: Remove argument, enabling test suite.
[configure-flags]: Remove "--disable-static".
[phases] {delete-static-libraries}: New phase.
(jami) [tests?]: Update comment.
[configure-flags]: Remove "-DLIBJAMI_XML_INTERFACES_DIR=" flag.
[phases] {patch-source}: Delete phase.
* gnu/packages/patches/jami-fix-crash-on-block-contact.patch: Delete patch.
* gnu/packages/patches/jami-disable-integration-tests.patch: New file.
* gnu/packages/patches/jami-no-webengine.patch: New file.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
2022-11-11 23:52:04 -05:00
Maxim Cournoyer
8fc7f20cb2
gnu: opendht: Use latest fmt.
...
* gnu/packages/networking.scm (opendht)[inputs]: Replace fmt-8 with fmt.
2022-11-11 23:52:04 -05:00
Leo Famulari
c847585732
gnu: linux-libre 4.9: Update to 4.9.333.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.333.
(linux-libre-4.9-pristine-source): Update hash.
2022-11-11 21:42:19 -05:00
Leo Famulari
3e74679f07
gnu: linux-libre 4.14: Update to 4.14.299.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.299.
(linux-libre-4.14-pristine-source): Update hash.
2022-11-11 21:42:19 -05:00
Leo Famulari
daff256f62
gnu: linux-libre 4.19: Update to 4.19.265.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.265.
(linux-libre-4.19-pristine-source): Update hash.
2022-11-11 21:42:19 -05:00
Leo Famulari
0b7b724deb
gnu: linux-libre 5.4: Update to 5.4.224.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.224.
(linux-libre-5.4-pristine-source): Update hash.
2022-11-11 21:42:19 -05:00
Leo Famulari
caa8db80c8
gnu: linux-libre 5.10: Update to 5.10.154.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.154.
(linux-libre-5.10-pristine-source): Update hash.
2022-11-11 21:42:19 -05:00
Leo Famulari
2673025301
gnu: linux-libre 5.15: Update to 5.15.78.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.78.
(linux-libre-5.15-pristine-source): Update hash.
2022-11-11 21:42:19 -05:00
Leo Famulari
b3e15b5abc
gnu: linux-libre: Update to 6.0.8.
...
* gnu/packages/linux.scm (linux-libre-6.0-version): Update to 6.0.8.
(linux-libre-6.0-pristine-source): Update hash.
2022-11-11 21:42:15 -05:00
Marius Bakke
8a261de34c
gnu: uBlock Origin: Update to 1.45.2.
...
* gnu/packages/browser-extensions.scm (ublock-origin): Update to 1.45.2.
2022-11-12 03:23:05 +01:00
kiasoc5
ad03c2d461
gnu: wofi: Update to 1.3.
...
* gnu/packages/xdisorg.scm (wofi): Update to 1.3.
[arguments]: Use new style for arguments.
[inputs]: Remove input labels.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-11 23:17:44 +01:00
Greg Hogan
da0f502742
gnu: waybar: Update to 0.9.15.
...
* gnu/packages/wm.scm (waybar): Update to 0.9.15.
[inputs]: Replace fmt-8 with fmt.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-11 23:17:44 +01:00
Greg Hogan
688c3ef282
gnu: spdlog: Update to 1.11.0.
...
* gnu/packages/logging.scm (spdlog): Update to 1.11.0.
[source]<origin>: Remove obselete snippet.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-11 23:17:44 +01:00
Greg Hogan
159bf4ac24
gnu: bear: Replace spdlog with spdlog-1.10.
...
* gnu/packages/build-tools.scm (bear)[inputs]: Replace spdlog with
spdlog-1.10.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-11 23:17:43 +01:00
Greg Hogan
8f8000a95f
gnu: Add spdlog-1.10.
...
* gnu/packages/logging.scm (spdlog-1.10): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-11 23:17:43 +01:00
dan
474070facb
gnu: mangohud: Update to 0.6.8.
...
* gnu/packages/graphics.scm (mangohud): Update to 0.6.8.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-11 23:17:43 +01:00
Michael Rohleder
b37cd00dc3
gnu: xfce4-settings: Update to 4.16.4.
...
* gnu/packages/xfce.scm (xfce4-settings): Update to 4.16.4.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-11 23:17:43 +01:00
Ludovic Courtès
1fdb3f98a6
gnu: valgrind: Add version 3.20.0.
...
* gnu/packages/valgrind.scm (valgrind-3.18): Remove.
(valgrind-3.20): New variable.
2022-11-11 23:17:43 +01:00
Ludovic Courtès
c6cb7243fb
gnu-maintenance: 'release-file?' excludes "valgrind-3.20.0.RC1.tar.bz2".
...
* guix/gnu-maintenance.scm (%alpha-tarball-rx): Add "." before
"(alpha|beta|...)".
* tests/gnu-maintenance.scm ("release-file?"): Add test for Valgrind.
2022-11-11 23:17:43 +01:00
Ludovic Courtès
9a35e4c5bd
gnu-maintenance: 'gnu' updater prefers tarball with same compression.
...
Fixes <https://issues.guix.gnu.org/59168 >.
Previously 'guix build make --with-latest=make' would pick ".tar.lz",
rather than "tar.gz", because "tar.lz" happened to come first in the
<upstream-source> 'urls' field.
* guix/gnu-maintenance.scm (latest-gnu-release)[archive-type]
[better-tarball?]: New variables.
Sort TARBALLS according to BETTER-TARBALL?.
2022-11-11 23:17:43 +01:00
Ludovic Courtès
692d987d0f
upstream: Factorize 'package-archive-type'.
...
* guix/upstream.scm (package-archive-type): New procedure.
(package-update/url-fetch): Use it.
2022-11-11 23:17:42 +01:00
Ludovic Courtès
19206eee69
grafts: Run with a UTF-8 locale.
...
Fixes <https://issues.guix.gnu.org/55968 >.
Reported by Maxime Devos <maximedevos@telenet.be >.
* guix/grafts.scm (%graft-with-utf8-locale?): New parameter.
(graft-derivation/shallow)[glibc-locales, set-utf8-locale]: New
variables.
[build]: Use 'set-utf8-locale'.
* tests/gexp.scm, tests/grafts.scm, tests/packages.scm: Set
'%graft-with-utf8-locale?' to #f.
2022-11-11 23:17:42 +01:00
Ricardo Wurmus
8c0c223fab
gnu: plymouth: Update to 22.02.122.
...
* gnu/packages/freedesktop.scm (plymouth): Update to 22.02.122.
2022-11-11 22:33:28 +01:00
Ricardo Wurmus
c169a4f0fb
gnu: plymouth: Change configure flags.
...
Remove unnecessary color flags, and set the default logo to the run directory
because /etc will not exist in the early boot process.
* gnu/packages/freedesktop.scm (plymouth)[arguments]: Remove
"--with-background-color", "--with-background-start-color-stop", and
"--with-background-end-color-stop" options; change value of "--with-logo"
option.
2022-11-11 22:33:28 +01:00
Ricardo Wurmus
1dd4569210
gnu: plymouth: Use plain list of native inputs.
...
* gnu/packages/freedesktop.scm (plymouth)[native-inputs]: Use list without
labels.
2022-11-11 22:33:28 +01:00
Ricardo Wurmus
ea96cd2723
gnu: plymouth: Use gexps.
...
* gnu/packages/freedesktop.scm (plymouth)[arguments]: Use gexps.
2022-11-11 22:33:27 +01:00
Marius Bakke
9d3cd3c79d
gnu: ungoogled-chromium: Update to 107.0.5304.110-1.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 107.0.5304.110.
(%ungoogled-origin, ungoogled-chromium): Update hashes.
2022-11-11 18:09:58 +01:00
Marius Bakke
4adc4e2b3a
gnu: ganeti-instance-guix: Update to 0.8.
...
* gnu/packages/virtualization.scm (ganeti-instance-guix): Update to 0.8.
[native-inputs]: Add JQ.
[inputs]: Add CRYPTSETUP.
2022-11-11 18:09:58 +01:00
Marius Bakke
e6f5b9f732
gnu: java-openmpi: Remove unused module import.
...
* gnu/packages/mpi.scm (java-openmpi)[arguments]: Don't import
(guix build syscalls).
2022-11-11 18:09:58 +01:00
Marius Bakke
546a3f1c81
gnu: clojure: Remove unused module import.
...
* gnu/packages/clojure.scm (clojure)[arguments]: Don't import
(guix build syscalls).
2022-11-11 18:09:58 +01:00
Marius Bakke
6d555bd996
gnu: dbqn: Remove unused module import.
...
* gnu/packages/bqn.scm (dbqn)[arguments]: Don't import (guix build syscalls).
2022-11-11 18:09:58 +01:00
Marius Bakke
09562e0bea
gnu: axoloti: Remove unused module import.
...
* gnu/packages/axoloti.scm (axoloti-runtime, axoloti-patcher,
axoloti-patcher-next)[arguments]: Don't import (guix build syscalls).
2022-11-11 18:09:58 +01:00
Marius Bakke
94913eabbb
gnu: maven-model: Avoid usage of (guix build syscalls).
...
* gnu/packages/maven.scm (maven-3.0-model)[arguments]: Use MKDTEMP instead of
MKDTEMP!.
2022-11-11 18:09:58 +01:00
Marius Bakke
bdfa795c98
build-system/dub: Avoid usage of (guix build syscalls).
...
* guix/build/dub-build-system.scm (configure): Use MKDTEMP instead of MKDTEMP!.
2022-11-11 18:09:58 +01:00
Marius Bakke
8b2a9be465
build-system/clojure: Avoid usage of (guix build sycalls).
...
* guix/build/clojure-build-system.scm (reset-class-timestamps): Use MKDTEMP
from Guile core instead of MKDTEMP!.
2022-11-11 18:09:58 +01:00
Marius Bakke
d899e9351d
gnu: OpenJDK: Avoid usage of (guix build syscalls).
...
* gnu/packages/java.scm (ant-bootstrap)[arguments]: Use MKDTEMP instead of
MKDTEMP! from (guix build syscalls).
(icedtea-8, openjdk9, openjdk11, antlr2): Likewise.
2022-11-11 18:09:58 +01:00
Marius Bakke
a6343af221
build-system/ant: Avoid usage of (guix build syscalls).
...
* guix/build/ant-build-system.scm (strip-jar-timestamps): Use MKDTEMP from
Guile core rather than MKDTEMP!.
* guix/build/java-utils.scm (install-jar-file-with-pom): Likewise.
2022-11-11 18:09:58 +01:00
Ricardo Wurmus
fa9ad4b482
gnu: guile-aiscm: Use different variant of protobuf-c.
...
* gnu/packages/machine-learning.scm (guile-aiscm)[native-inputs]: Replace
protobuf-c with protobuf-c-for-aiscm.
2022-11-11 17:19:28 +01:00
Ricardo Wurmus
ac07544ebf
gnu: Add protobuf-c-for-aiscm.
...
* gnu/packages/protobuf.scm (protobuf-c-for-aiscm): New variable.
2022-11-11 17:19:10 +01:00
Ricardo Wurmus
d4ec49d1da
import/cran: Add package name mapping for "booktabs".
...
* guix/import/cran.scm (transform-sysname): Add mapping for "booktabs".
2022-11-11 15:10:21 +01:00
Ricardo Wurmus
7d6843b631
import/cran: Add more strings to the list of invalid packages.
...
* guix/import/cran.scm (invalid-packages): Add "c++", "c++17", and
"posix.1-2001" to list of invalid packages.
2022-11-11 15:10:21 +01:00
Navid Afkhami
ba8679fb24
gnu: Add python-tspex.
...
* gnu/packages/python-science.scm (python-tspex): New variable.
Co-authored-by: Ricardo Wurmus <rekado@elephly.net >
2022-11-11 12:12:04 +01:00
Nicolas Goaziou
a370fcbc5f
gnu: scintilla: Update to 5.3.1.
...
* gnu/packages/text-editors.scm (scintilla): Update to 5.3.1.
2022-11-11 11:48:11 +01:00
Nicolas Goaziou
a9ba05ca31
gnu: emacs-robot-mode: Update to 0.7.0.
...
* gnu/packages/emacs-xyz.scm (emacs-robot-mode): Update to 0.7.0.
2022-11-11 11:48:11 +01:00
Nicolas Goaziou
54230ad949
gnu: emacs-org-transclusion: Run tests.
...
* gnu/packages/emacs-xyz.scm (emacs-org-transclusion)[argument]: Run tests.
[native-inputs]: Add EMACS-ERT-RUNNER.
2022-11-11 11:48:10 +01:00
Nicolas Goaziou
28de3f4063
gnu: emacs-doom-modeline: Update to 3.3.2.
...
* gnu/packages/emacs-xyz.scm (emacs-doom-modeline): Update to 3.3.2.
2022-11-11 11:48:10 +01:00
Nicolas Goaziou
ceaff4eb29
gnu: emacs-cape: Update to 0.10.
...
* gnu/packages/emacs-xyz.scm (emacs-cape): Update to 0.10.
2022-11-11 11:48:10 +01:00
(unmatched-parenthesis
c37b6fba1a
gnu: Add go-github-com-xo-terminfo.
...
* gnu/packages/golang.scm (go-github-com-xo-terminfo): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-11 00:49:38 -05:00
(unmatched-parenthesis
8835937ea5
gnu: Add go-google-golang-org-protobuf.
...
* gnu/packages/golang.scm (go-google-golang-org-protobuf): New variable.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-11 00:21:23 -05:00
(unmatched-parenthesis
a6d2ae431a
gnu: Add go-github-com-creack-pty.
...
* gnu/packages/golang.scm (go-github-com-creack-pty): New variable.
* guix/build-system/go.scm (go-target): Add to exported variables.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-11-10 23:17:18 -05:00
Efraim Flashner
70df5c47a8
gnu: tor: Update to 0.4.7.11.
...
* gnu/packages/tor.scm (tor): Update to 0.4.7.11.
2022-11-10 23:00:59 +02:00
Mathieu Othacehe
3e3f3a332d
gnu: parted: Add a debug output.
...
This is useful when debugging installer crashes in libparted.
* gnu/packages/disk.scm (parted)[outputs]: Add a "debug" output.
2022-11-10 18:17:14 +01:00
Artyom Bologov
1f5e8ef14f
gnu: Add cl-nsymbols.
...
* gnu/packages/lisp-xyz.scm (sbcl-nsymbols, cl-nsymbols, ecl-nsymbols): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-10 14:43:35 +01:00
( via Guix-patches via
2c9b4c573b
gnu: mako: Patch makoctl to refer directly to binaries.
...
* gnu/packages/wm.scm (mako)[arguments]<#:phases>{'patch-makoctl}:
New phase.
[inputs]: Add jq.
Signed-off-by: Andrew Tropin <andrew@trop.in >
2022-11-10 16:52:55 +04:00
Andrew Tropin
0760a8511d
gnu: guile-parted: Fix hash.
...
* gnu/packages/guile-xyz.scm (guile-parted): Fix hash.
2022-11-10 16:52:55 +04:00
Mathieu Othacehe
b5510269c5
gnu: guile-parted: Update to 0.0.7.
...
* gnu/packages/guile-xyz.scm (guile-parted): Update to 0.0.7.
2022-11-10 13:22:52 +01:00
Artyom Bologov
a6d6a48b15
gnu: Add cl-lass.
...
* gnu/packages/lisp-xyz.scm (sbcl-lass, cl-lass, ecl-lass): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-10 11:12:33 +01:00
Jonathan Brielmaier
cc4fa1018d
gnu: icedove: Update to 102.4.2.
...
* gnu/packages/gnuzilla.scm (%icedove-build-id, %icedove-version) Update to 102.4.2.
2022-11-10 09:44:49 +01:00
Hilton Chain
ae820c317c
gnu: font-chiron-hei-hk: Update to 2.505.
...
* gnu/packages/fonts.scm (font-chiron-hei-hk): Update to 2.505.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-10 09:37:10 +08:00
Hilton Chain
d6479009e4
gnu: font-chiron-sung-hk: Update to 1.007.
...
* gnu/packages/fonts.scm (font-chiron-sung-hk): Update to 1.007.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-10 09:37:04 +08:00
Michael Rohleder
abdd37957d
gnu: btop: Update to 1.2.13.
...
* gnu/packages/admin.scm (btop): Update to 1.2.13.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-10 09:25:21 +08:00
Imran Iqbal
0d7131d2bd
gnu: scdoc: Update to 1.11.2.
...
* gnu/packages/man.scm (scdoc): Update to 1.11.2.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-10 09:18:56 +08:00
Hilton Chain
841963f948
gnu: Add modprobed-db.
...
* gnu/packages/linux.scm (modprobed-db): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-09 23:59:42 +01:00
cage
aaa59935af
gnu: gmid: Update to 1.8.5.
...
* gnu/packages/web.scm (gmid): Update to 1.8.5.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-09 23:59:42 +01:00
Nicolas Graves
b6b4be2e48
gnu: Add vnstat.
...
* gnu/packages/networking.scm (vnstat): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-09 23:59:42 +01:00
Ludovic Courtès
0916a79f8c
installer: Remove unused variable.
...
* gnu/installer/newt.scm (newt-run-command): Remove
'displayed-command'.
2022-11-09 23:59:42 +01:00
Ludovic Courtès
26e39b1258
gnu: texinfo: Add version 7.0.
...
* gnu/packages/texinfo.scm (texinfo-7): New variable.
2022-11-09 23:59:41 +01:00
Danny Milosavljevic
a827905302
gnu: Add edac-utils.
...
* gnu/packages/linux.scm (edac-utils): New variable.
2022-11-09 23:04:22 +01:00
Artyom V. Poptsov
63b7dbc732
gnu: guile-ics: Update to 0.4.0.
...
* gnu/packages/guile-xyz.scm (guile-ics): Update to 0.4.0.
[propagated-inputs]: Add "guile-dsv".
[description]: Update.
(guile2.2-ics): Likewise.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-11-09 17:45:41 +01:00
zimoun
18fb7c0f30
etc: teams: List teams sorted by id.
...
* etc/teams.scm.in (list-teams): Sort teams by id.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-11-09 17:15:43 +01:00
zimoun
ab9e6597f6
etc: teams: List members sorted by name.
...
* etc/teams.scm.in (list-members): Sort by name.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-11-09 17:09:42 +01:00
Efraim Flashner
70f43c0c2e
gnu: libressl: Update to 3.6.1.
...
* gnu/packages/tls.scm (libressl): Update to 3.6.1.
2022-11-09 16:29:15 +02:00
Ricardo Wurmus
8d7cb7f2a4
machine/digital-ocean: Pull operating system definition out of string.
...
* gnu/machine/digital-ocean.scm (guix-infect): Define the operating system
declaration as an s-expression and paste it into the generated Bash script to
simplify editing.
2022-11-09 13:45:24 +01:00
Ricardo Wurmus
ebb88e2bed
machine/digital-ocean: Set load path to Guile 3.0 directories.
...
* gnu/machine/digital-ocean.scm (guix-infect, add-static-networking): Set
GUILE_LOAD_PATH and GUILE_LOAD_COMPILED_PATH to directories for Guile 3.0
instead of 2.2.
2022-11-09 13:45:24 +01:00
Ricardo Wurmus
e8dcd008a0
machine/digital-ocean: Use static-networking-service-type.
...
* gnu/machine/digital-ocean.scm (ip+netmask->cidr): New procedure.
(guix-infect, add-static-networking): Use static-networking-service-type
instead of the deprecated static-networking-service.
2022-11-09 13:45:24 +01:00
Ricardo Wurmus
c8e41af7be
machine/digital-ocean: Use nightly Guix.
...
* gnu/machine/digital-ocean.scm (guix-infect): Fetch latest Guix build from
ci.guix.gnu.org.
2022-11-09 13:45:24 +01:00
Ludovic Courtès
d9ca9cdd01
gnu: guile-fibers: Add patch fixing FD finalizer memory leak.
...
Fixes <https://issues.guix.gnu.org/58631 >.
* gnu/packages/patches/guile-fibers-fd-finalizer-leak.patch: New file.
* gnu/packages/guile-xyz.scm (guile-fibers-1.1)[source]: Use it.
* gnu/local.mk (dist_patch_DATA): Add it.
2022-11-09 12:53:03 +01:00
Andrew Tropin
e7c1f8979a
gnu: emacs-magit: Update to 3.3.0-0.36059e0.
...
83ede5a02e breaks tests in emacs-magit 3.3.0,
I asked Jonas to make a new release, but it can take quite some time
https://github.com/magit/magit/discussions/4742
* gnu/packages/emacs-xyz.scm (emacs-magit): Update to 3.3.0-0.36059e0.
[propagated-inputs]: Add emacs-compat.
[arguments]<#:phases>: Remove disable-tramp-test.
2022-11-09 15:44:27 +04:00
Efraim Flashner
8918e42de0
gnu: libfido2: Rewrite using g-exps.
...
* gnu/packages/security-token.scm (libfido2)[arugments]: Rewrite using
g-exps. Remove phases, disable tests.
2022-11-09 11:53:38 +02:00
Efraim Flashner
c498146521
gnu: mutt: Update to 2.2.8.
...
* gnu/packages/mail.scm (mutt): Update to 2.2.8.
2022-11-09 11:48:17 +02:00
Ricardo Wurmus
a4c050b0a0
gnu: bart: Update to 0.8.00.
...
* gnu/packages/image-processing.scm (bart): Update to 0.8.00.
2022-11-09 10:37:22 +01:00
Ricardo Wurmus
d42856670d
gnu: bart: Do not build in parallel.
...
This is necessary for a reproducible build.
* gnu/packages/image-processing.scm (bart)[arguments]: Add PARALLEL and
PARALLEL_NJOBS to make flags; disable parallel build.
2022-11-09 10:37:22 +01:00
Efraim Flashner
e2a0f21a5b
gnu: webkitgtk-next: Update to 2.38.2.
...
* gnu/packages/webkit.scm (webkitgtk-next): Update to 2.38.2.
2022-11-09 11:09:31 +02:00
Efraim Flashner
e49f914dee
gnu: webkitgtk: Update to 2.36.8.
...
* gnu/packages/webkit.scm (%webkit-version, webkitgtk, wpewebkit):
Update to 2.36.8.
2022-11-09 11:09:28 +02:00
Mădălin Ionel Patrașcu
b4e3e02fd1
gnu: Add r-pando.
...
* gnu/packages/bioinformatics.scm (r-pando): New variable.
2022-11-09 09:55:14 +01:00
Mădălin Ionel Patrașcu
5e0aa62308
gnu: Add r-glmnetutils.
...
* gnu/packages/cran.scm (r-glmnetutils): New variable.
2022-11-09 09:55:14 +01:00
Mădălin Ionel Patrașcu
8b91760f20
gnu: Add r-pals.
...
* gnu/packages/cran.scm (r-pals): New variable.
2022-11-09 09:53:43 +01:00
( via Guix-patches via
fdc9e1b27e
services: greetd: Add gexp compilers for sessions.
...
* gnu/home/services/base.scm (make-greetd-agreety-session-command,
greetd-wlgreet-sway-session-command, make-greetd-default-session-command):
Remove variables.
(greetd-agreety-session-compiler, greetd-wlgreet-sway-session-compiler): New
gexp compilers.
(greetd-terminal-configuration)[default-session-command]<sanitize>: Remove it.
Signed-off-by: Andrew Tropin <andrew@trop.in >
2022-11-09 11:23:10 +04:00
Nicolas Goaziou
7de6aa8a0a
gnu: emacs-detached: Update to 0.9.2.
...
* gnu/packages/emacs-xyz.scm (emacs-detached): Update to 0.9.2.
2022-11-08 21:55:43 +01:00
Nicolas Goaziou
79f7c4a061
gnu: giac: Update to 1.9.0-29.
...
* gnu/packages/algebra.scm (giac): Update to 1.9.0-29.
2022-11-08 21:55:43 +01:00
Zhu Zihao
2f38bac505
gnu: texmacs: Use G-expressions.
...
* gnu/packages/text-editors.scm (texmacs)[arguments]: Use G-expressions.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-08 21:55:42 +01:00
Morgan Smith
62f70578eb
gnu: exercism: Update to 3.1.0.
...
* gnu/packages/education.scm (exercism): Update to 3.1.0.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-08 21:55:42 +01:00
Nicolas Goaziou
8e8557387d
gnu: emacs-pyim: Update to 5.2.8.
...
* gnu/packages/emacs-xyz.scm (emacs-pyim): Update to 5.2.8.
2022-11-08 21:55:42 +01:00
Nicolas Goaziou
c7e9855b32
gnu: emacs-subed: Update to 1.0.18.
...
* gnu/packages/emacs-xyz.scm (emacs-subed): Update to 1.0.18.
2022-11-08 21:55:41 +01:00
Nicolas Goaziou
8f1893ea2b
gnu: emacs-editorconfig: Update to 0.9.1.
...
* gnu/packages/emacs-xyz.scm (emacs-editorconfig): Update to 0.9.1.
2022-11-08 21:55:41 +01:00
Maxim Cournoyer
1b22c03cca
gnu: pjproject-jami: Restore hash.
...
The hash was inadvertently changed in commit
071d4bdc80 .
* gnu/packages/jami.scm (pjproject-jami) [source]: Revert hash.
Reported-by: Jack Hill <jackhill@jackhill.us >
2022-11-08 15:08:52 -05:00
Leo Famulari
c52cdd18d6
gnu: Remove linux-libre 5.19.
...
* gnu/packages/linux.scm (linux-libre-5.19-version,
linux-libre-5.19-gnu-revision, deblob-scripts-5.19,
linux-libre-5.19-pristine-source, linux-libre-5.19-source,
linux-libre-headers-5.19, linux-libre-5.19): Remove variables.
* gnu/packages/aux-files/linux-libre/5.19-arm.conf,
gnu/packages/aux-files/linux-libre/5.19-arm64.conf,
gnu/packages/aux-files/linux-libre/5.19-i686.conf,
gnu/packages/aux-files/linux-libre/5.19-x86_64.conf: Delete files.
* Makefile.am (AUX_FILES): Remove them.
2022-11-08 12:54:32 -05:00
David Thompson
96ae718c51
authorizations: Remove old key for "davexunit".
...
* .guix-authorizations ("davexunit"): Remove.
("davexunit (2nd)"): Rename to "dthompson".
2022-11-08 08:52:22 -05:00
Sughosha
6d833c1f52
gnu: lsp-plugins: Update to 1.2.3
...
* gnu/packages/music.scm (lsp-plugins): Update to 1.2.3.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-08 14:06:01 +01:00
Sughosha
7699f5e4fe
gnu: yoshimi: Fix references to /usr/share.
...
* gnu/packages/music.scm (yoshimi)[arguments]: Add 'fix-paths' phase.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-11-08 14:06:00 +01:00
Sughosha
94984f490c
gnu: yoshimi: Update to 2.2.2.1
...
* gnu/packages/music.scm (yoshimi): Update to 2.2.2.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-08 14:06:00 +01:00
Greg Hogan
83ede5a02e
gnu: git: Update to 2.38.1.
...
Fixes CVE-2022-39253 and CVE-2022-39260.
* gnu/packages/version-control.scm (git): Update to 2.38.1.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-11-08 14:06:00 +01:00
Ludovic Courtès
3bd4b92f55
build-system/gnu: Turn #:phases into a gexp when cross-compiling.
...
Previously, we'd get this error:
$ guix build --target=aarch64-linux-gnu r-minimal -d --no-grafts
guix build: error: path ‘/gnu/store/[^-]+-glibc-[^-]+-static’ is not valid
This is because the sexp would be passed as an input of the surrounding
gexp in 'gnu-cross-build', and thus
"/gnu/store/[^-]+-glibc-[^-]+-static" would be interpreted as a source
file name, as in this example:
scheme@(guix gexp)> #~(foo #$(list 'whatever "/gnu/store/[^-]+-glibc-[^-]+-static"))
$11 = #<gexp (foo #<gexp-input (whatever "/gnu/store/[^-]+-glibc-[^-]+-static"):out>) 7f098badec30>
scheme@(guix gexp)> (gexp-inputs $11)
$12 = (#<gexp-input "/gnu/store/[^-]+-glibc-[^-]+-static":out>)
Fixes <https://issues.guix.gnu.org/59073 >.
Reported by Christopher Baines <mail@cbaines.net >.
* guix/build-system/gnu.scm (gnu-cross-build): When PHASES is a pair,
pass it through 'sexp->gexp'.
2022-11-08 14:06:00 +01:00
Konrad Hinsen
93be56a3ab
guix-install.sh: Run guix.sh script in /etc/profile.d last.
...
* etc/guix-install.sh: Rename /etc/profile.d/guix.sh to zzz-guix.sh.
This script refers to environment variables set by the host distribution.
They may be set in other scripts in /etc/profile.d, which must therefore
be run first.
Example: in Ubuntu 20.04, XDG_DATA_DIRS is set in
/etc/profile.d/xdg_dirs_desktop_session.sh
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-11-08 10:55:54 +01:00
Paul A. Patience
0e69ee46cc
gnu: cl-april: Update to 1.0-2.93b1004.
...
* gnu/packages/lisp-xyz.scm (sbcl-april): Update to 1.0-2.93b1004.
[inputs]: Remove sbcl-decimals. Add sbcl-cl-unicode and
sbcl-serapeum. Sort inputs.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-08 10:41:29 +01:00
Paul A. Patience
7ee45b9d32
gnu: cl-serapeum: Update to 0.0.0-8.fbfd2a2.
...
* gnu/packages/lisp-xyz.scm (sbcl-serapeum): Update to 0.0.0-8.fbfd2a2.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-08 10:30:28 +01:00
Liliana Marie Prikler
e58450be4a
gnu: ultrastar-deluxe: Improve package style.
...
* gnu/packages/games.scm (ultrastar-deluxe): Do not exceed column 80.
[source]<snippet>: Use G-Expressions.
[#:phases]: Fix indentation.
<fix-configure>: Add ‘where’ helper and use it to shrink horizontal space.
2022-11-08 06:48:10 +01:00
Liliana Marie Prikler
4cecbc5dd2
gnu: ultrastar-deluxe: Drop marketing speech.
...
* gnu/packages/games.scm (ultrastar-deluxe)[description]: Drop gratutious
“free and open source”.
2022-11-08 06:43:17 +01:00
florhizome
f96372e730
gnu: geary: Fix inputs.
...
* gnu/packages/gnome.scm (geary)[inputs]: Use folks-with-libsoup2 and gnome-online-accounts-3.44.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-08 06:37:52 +01:00
Lars-Dominik Braun
f7f0c3b53c
gnu: Add ultrastar-deluxe.
...
* gnu/packages/games.scm (ultrastar-deluxe): New variable.
* gnu/packages/patches/ultrastar-deluxe-no-freesans.patch: New file.
* gnu/local.mk: Add it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-07 22:52:02 +01:00
Ludovic Courtès
b3039a0a30
gnu: fpc: Remove dependency on 'ld-wrapper' from commencement.scm.
...
(gnu packages commencement) should not be used explicitly.
* gnu/packages/pascal.scm (fpc)[inputs]: Remove LD-WRAPPER.
2022-11-07 22:50:03 +01:00
Artyom V. Poptsov
d178c89a2a
gnu: Add guile-png.
...
* gnu/packages/guile-xyz.scm (guile-png): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-07 22:49:51 +01:00
Liliana Marie Prikler
8ab84fea6f
cbqn: Mark as tunable.
...
* gnu/packages/bqn.scm (cbqn)[properties]: Add ‘tunable?’.
2022-11-07 22:00:47 +01:00
Liliana Marie Prikler
a75a5ac4fc
gnu: cbqn: Install regular files rather than copying them recursively.
...
* gnu/packages/bqn.scm (cbqn)[#:phases]<install>: Use ‘install-file’ rather
than ‘copy-recursively’ for “bqn”.
2022-11-07 22:00:47 +01:00
Liliana Marie Prikler
3eca71d4a7
gnu: cbqn-bootstrap: Install regular files rather than copying them recursively.
...
* gnu/packages/bqn.scm (cbqn-bootstrap)[arguments]: Reindent.
<#:phases>{install}: Use ‘install-file’ rather than ‘copy-recursively’ for
“bqn”.
2022-11-07 22:00:47 +01:00
Liliana Marie Prikler
8dc467d788
gnu: dbqn: Install regular files rather than copying them recursively.
...
* gnu/packages/bqn.scm (dbqn)[#:phases]<install>: Use ‘install-file’ rather
than ‘copy-recursively’ for “dbqn”.
2022-11-07 22:00:47 +01:00
Liliana Marie Prikler
558da6d18f
gnu: cbqn: Build using GCC.
...
* gnu/packages/bqn.scm (cbqn-bootstrap, cbqn)[#:make-flags]: Set CC via
‘cc-for-target’.
[inputs]: Remove clang-toolchain.
2022-11-07 22:00:47 +01:00
Liliana Marie Prikler
95c494e298
gnu: cbqn: Rewrite in terms of cbqn-bootstrap.
...
* gnu/packages/bqn.scm (cbqn)[arguments]: Use substitute-keyword-arguments
to preserve options from cbqn-bootstrap.
2022-11-07 22:00:47 +01:00
Liliana Marie Prikler
95db2d4946
gnu: cbqn-bootstrap: Use let-bound revision.
...
* gnu/packages/bqn.scm (cbqn-bootstrap)[version]: Use let-bound revision.
2022-11-07 22:00:46 +01:00
Liliana Marie Prikler
f284c5df0a
gnu: Remove singeli-sources.
...
They aren't currently used to build a package, nor a package themselves.
* gnu/packages/bqn.scm (singeli-sources): Delete variable.
2022-11-07 22:00:46 +01:00
Liliana Marie Prikler
1578ad8d3f
cbqn: Build without singeli.
...
* gnu/packages/bqn.scm (cbqn)[inputs]: Remove singeli-sources.
[arguments]<#:make-flags: Replace “o3n-singeli” with “o3”.
<#:phases>: Remove “link-singeli”.
2022-11-07 22:00:46 +01:00
Morgan Smith
2c1fc058c5
gnu: teximpatient: Update to 2.4-0.e3666ab.
...
* gnu/packages/tex.scm (teximpatient): Update to 2.4-0.e3666ab.
[source]: Use git repository.
[native-inputs]: Add autoconf.
[arguments]: Make build reproducible.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-07 20:51:31 +01:00
Leo Nikkilä
9ad311ec15
services: qemu-binfmt: Add x86_64 QEMU target.
...
* gnu/services/virtualization.scm (%x86_64): New variable.
(%qemu-platforms) Add it.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-07 20:51:25 +01:00
Hilton Chain
e080080e6b
gnu: rlwrap: Update to 0.46.1.
...
* gnu/packages/readline.scm (rlwrap): Update to 0.46.1.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-07 20:36:13 +01:00
Christopher Baines
da21c5d45f
build-system/linux-module: Add #:source-directory to linux-module-build-cross.
...
Otherwise computing cross-compilation derivations for packages (e.g. xpadneo)
using the #:source-directory argument fails with this error:
Unrecognized keyword: #:source-directory
* guix/build-system/linux-module.scm (linux-module-build-cross): Support
#:source-directory.
2022-11-07 20:35:40 +01:00
Kristian Lein-Mathisen
d60c9fbf95
gnu: Add avr-gdb.
...
* gnu/packages/gdb.scm (avr-gdb): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-07 20:32:32 +01:00
Hilton Chain
cad335a32a
gnu: Add kconfig-hardened-check.
...
* gnu/packages/linux.scm (kconfig-hardened-check): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-07 20:30:29 +01:00
Sharlatan Hellseher
472917ea6c
gnu: Add parfive.
...
* gnu/packages/python-web.scm (parfive): Newv variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-07 20:29:21 +01:00
Sharlatan Hellseher
c697ff9641
gnu: Add pytest-socket.
...
* gnu/packages/python-check.scm (python-pytest-socket): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-07 20:29:21 +01:00
Sharlatan Hellseher
b0db0b2b2d
gnu: Add aioftp.
...
* gnu/packages/python-web.scm (python-aioftp): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-07 20:29:21 +01:00
Sharlatan Hellseher
5ed098095d
gnu: Add siosocks.
...
* gnu/packages/python-web.scm (python-siosocks): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-07 20:29:18 +01:00
Alexey Abramov
73b3519568
services: gitolite: Add local-code configuration option.
...
* gnu/services/version-control.scm (gitolite-rc-file): Add local-code
field.
(gitolite-rc-file-compiler): Serialize the field.
* doc/guix.texi: Document it.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-07 20:29:14 +01:00
Andreas Enge
b670dc6c8a
gnu: pari-gp: Update to 2.15.1.
...
* gnu/packages/algebra.scm (pari-gp): Update to 2.15.1.
2022-11-07 19:05:11 +01:00
Tobias Geerinckx-Rice
b6bc52ff8c
gnu: sudo: Update to 1.9.12p1 [fixes CVE-2022-43995].
...
* gnu/packages/admin.scm (sudo): Update to 1.9.12p1.
2022-11-06 01:00:00 +01:00
Pierre Neidhardt
8e54584d44
gnu: sbcl-cl-webkit: Update to 3.5.6.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-webkit): Update to 3.5.6.
2022-11-07 10:14:53 +01:00
Florian Pelz
d41ea236bf
news: Update 'de', 'fr', 'pt_BR' translation.
...
* etc/news.scm: Add the usual translations for kernel news.
2022-11-07 09:57:25 +01:00
宋文武
c7e4429a64
gnu: fcitx5-material-color-theme: Update to 0.2.1.
...
* gnu/packages/fcitx5.scm (fcitx5-material-color-theme): Update to 0.2.1.
[arguments]: Adjust 'install' phase accordingly.
2022-11-07 16:46:36 +08:00
宋文武
38a1cf3d26
gnu: fcitx5-anthy: Update to 5.0.12.
...
* gnu/packages/fcitx5.scm (fcitx5-anthy): Update to 5.0.12.
2022-11-07 16:32:01 +08:00
宋文武
06db86ec4e
gnu: fcitx5-lua: Update to 5.0.10.
...
* gnu/packages/fcitx5.scm (fcitx5-lua): Update to 5.0.10.
[arguments]: Pass "-DUSE_DLOPEN=OFF" to cmake.
2022-11-07 16:25:45 +08:00
dan
e1be74b748
gnu: Add fcitx5-rime.
...
* gnu/packages/fcitx5.scm (fcitx5-rime): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-07 16:17:05 +08:00
dan
b908dd0e58
gnu: fcitx5-configtool: Update to 5.0.15.
...
* gnu/packages/fcitx5.scm (fcitx5-configtool): Update to 5.0.15.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-07 16:12:39 +08:00
dan
07081e067e
gnu: fcitx5-chinese-addons: Update to 5.0.15.
...
* gnu/packages/fcitx5.scm (fcitx5-chinese-addons): Update to 5.0.15.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-07 16:12:17 +08:00
dan
068efefa7c
gnu: fcitx5-qt: Update to 5.0.15.
...
* gnu/packages/fcitx5.scm (fcitx5-qt): Update to 5.0.15.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-07 16:11:56 +08:00
dan
b2a5dbcef8
gnu: fcitx5-gtk: Update to 5.0.19.
...
* gnu/packages/fcitx5.scm (fcitx5-gtk): Update to 5.0.19.
* gnu/packages/fcitx5.scm (fcitx5-gtk4) [phases]: Make
gtk4/gtk4inputwindow.cpp properly find fcitxtheme.h.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-07 16:10:09 +08:00
dan
fbca2ed4b7
gnu: libime: Update to 1.0.14.
...
* gnu/packages/fcitx5.scm (libime): Update to 1.0.14.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-07 16:02:47 +08:00
dan
db2a42e9a8
gnu: fcitx5: Update to 5.0.19.
...
* gnu/packages/fcitx5.scm (fcitx5): Update to 5.0.19.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-07 15:56:46 +08:00
Leo Famulari
4a34da845e
news: Add entry about the update of the 'linux-libre' package.
...
* etc/news.scm: Add entry.
2022-11-06 17:40:58 -05:00
Leo Famulari
82a0a395d7
gnu: linux-libre: Update to 6.0.7
...
* gnu/packages/linux.scm (linux-libre-version, linux-libre-gnu-revision,
linux-libre-pristine-source, linux-libre-source, linux-libre,
linux-libre-with-bpf): Update to linux-libre 6.0.
2022-11-06 17:16:52 -05:00
Nicolas Goaziou
59ce4b8c54
gnu: lagrange: Update to 1.13.8.
...
* gnu/packages/web-browsers.scm (lagrange): Update to 1.13.8.
2022-11-06 22:45:49 +01:00
Nicolas Goaziou
d1cefcf9c0
gnu: emacs-geiser-guile: Update to 0.28.0.
...
* gnu/packages/emacs-xyz.scm (emacs-geiser-guile): Update to 0.28.0.
2022-11-06 22:45:49 +01:00
Nicolas Goaziou
da4b0587a0
gnu: emacs-geiser: Update to 0.28.
...
* gnu/packages/emacs-xyz.scm (emacs-geiser): Update to 0.28.
2022-11-06 22:45:49 +01:00
Nicolas Goaziou
4d36782b0f
gnu: emacs-iter2: Update to 1.4.
...
* gnu/packages/emacs-xyz.scm (emacs-iter2): Update to 1.4.
2022-11-06 22:45:48 +01:00
Nicolas Goaziou
2fa05ad486
gnu: emacs-ebdb: Update to 0.8.16.
...
* gnu/packages/emacs-xyz.scm (emacs-ebdb): Update to 0.8.16.
2022-11-06 22:45:48 +01:00
Nicolas Goaziou
9c16fb4c0d
gnu: emacs-deadgrep: Run tests.
...
* gnu/packages/emacs-xyz.scm (emacs-deadgrep)[arguments]<#:tests?,
[native-inputs]: Add EMACS-ERT-RUNNER, EMACS-UNDERCOVER.
2022-11-06 22:45:48 +01:00
Nicolas Goaziou
ab6fb3022d
gnu: emacs-deadgrep: Improve package style.
...
* gnu/packages/emacs-xyz.scm (emacs-deadgrep)[arguments]: Use G-expressions.
<#:phases>: Use SEARCH-INPUT-FILE instead of ASSOC-REF.
2022-11-06 22:45:47 +01:00
Nicolas Goaziou
b53355f08d
gnu: emacs-deadgrep: Update to 0.12.
...
* gnu/packages/emacs-xyz.scm (emacs-deadgrep): Update to 0.12.
2022-11-06 22:45:47 +01:00
Leo Famulari
93d8aad521
gnu: Syncthing: Update to 1.20.4.
...
* gnu/packages/syncthing.scm (syncthing): Update to 1.20.4.
2022-11-06 15:53:20 -05:00
Nicolas Goaziou
62d88f2531
gnu: emacs-mentor: Fix build.
...
* gnu/packages/emacs-xyz.scm (emacs-mentor)[propagated-inputs]: Add
EMACS-URL-SCGI.
2022-11-06 21:33:05 +01:00
Nicolas Goaziou
1559341be5
gnu: Add emacs-url-scgi.
...
* gnu/packages/emacs-xyz.scm (emacs-url-scgi): New variable.
2022-11-06 21:33:04 +01:00
Christopher Baines
1b117fc3a5
gnu: guix-data-service: Update to 0.0.1-34.95064d3.
...
* gnu/packages/web.scm (guix-data-service): Update to 0.0.1-34.95064d3.
2022-11-06 15:49:44 +01:00
Timotej Lazar
6e5e5f8fc2
gnu: opensurge: Update to 0.6.0.3.
...
* gnu/packages/games.scm (opensurge): Update to 0.6.0.3.
[arguments]: Use G-exps.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-06 15:19:14 +01:00
Timotej Lazar
3d1f64d747
gnu: surgescript: Update to 0.5.6.1.
...
* gnu/packages/game-development.scm (surgescript): Update to 0.5.6.1.
[arguments]: Drop #:configure-flags as the build script was fixed upstream.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-06 15:19:14 +01:00
Hilton Chain
f138035227
gnu: busybox: Update to 1.35.0.
...
* gnu/packages/busybox.scm (busybox): Update to 1.35.0.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-06 15:18:43 +01:00
jgart
0e9e83d821
etc: teams: Add pyproject-build-system to python scope.
...
* etc/teams.scm.in (python): Add guix/build/pyproject-build-system.scm and
guix/build-system/pyproject.scm to python team's scope.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-06 15:11:21 +01:00
Sharlatan Hellseher
9315fcc211
gnu: python-glymur: Update to 0.12.0.
...
* gnu/packages/python-xyz.scm (python-glymur): Update to 0.12.0.
[build-system]: python-build-system -> pyproject-build-system.
[arguments]: Drop redundant phases.
[native-inputs]: Remove python-pypa-build.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-06 15:09:59 +01:00
Efraim Flashner
97d565c786
guix gc: Add '--vacuum-database'.
...
* guix/scripts/gc.scm (show-help, %options): Add '--vacuum-database'.
* guix/store/database.scm (vacuum-database): New procedure.
* doc/guix.texi (Invoking guix gc): Document the option.
2022-11-06 14:02:08 +02:00
Efraim Flashner
2bf8146e31
gnu: keepassxc: Only build documentation on supported systems.
...
* gnu/packages/password-utils.scm (keepassxc)[native-inputs]: Only add
ruby-asciidoctor on supported platforms.
[arguments]: Adjust configure-flags to skip documentation when
ruby-asciidoctor isn't supported.
2022-11-06 13:54:58 +02:00
Efraim Flashner
56255c3e81
gnu: newsboat: Only build documentation on supported systems.
...
* gnu/packages/syndication.scm (newsboat)[inputs]: Only use asciidoctor
on supported platforms.
[arguments]: When asciidoctor isn't present add a phase to skip building
the documentation.
2022-11-06 13:54:55 +02:00
Ludovic Courtès
072fd1124a
gnu: shepherd@0.9: Use 'guile-3.0-latest' to address memory leak.
...
Fixes <https://issues.guix.gnu.org/58631 >.
Previously, shepherd's heap would grow roughly linearly in the number of
context switches (delimited continuations being captured). For example,
if shepherd spawned services that logged a lot of data, it would
context-switch a lot, leading to relatively quick heap growth.
* gnu/packages/admin.scm (shepherd-0.9)[inputs, native-inputs]: Replace
'guile-3.0' with 'guile-3.0-latest'.
2022-11-06 12:38:03 +01:00
Ludovic Courtès
7138ba34fa
gnu: guile@3.0.8: Add patch to address continuation memory leak.
...
* gnu/packages/patches/guile-continuation-stack-leak.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/guile.scm (guile-3.0-latest)[source]: Use it.
2022-11-06 12:38:03 +01:00
John Kehayias
905443abb7
shell: Fix '--emulate-fhs' sometimes not including 'glibc-for-fhs'.
...
Fixes <https://issues.guix.gnu.org/58861 >.
Previously the order of the options giving to 'guix shell' could mean that the
'glibc-for-fhs' package included with the '--emulate-fhs' option would not
appear in the container. For example, using the development option with a
package using the 'gnu-build-system', e.g. 'guix shell -CFD hello', would
include the regular 'glibc' package. The option ordered mattered: 'guix shell
-CD hello -F' would include the expected 'glibc-for-fhs'. We fix this by
having 'glibc-for-fhs' added to the package list just before calling
'options-with-caching' so the option order given by the user does not matter.
* guix/scripts/shell.scm (%options): Move the '--emulate-fhs' (expression
. ...) component from here...
(parse-args): ... to here.
* tests/guix-environment-container.sh: Add a test to check that
'glibc-for-fhs' is in the container even when 'glibc' is included in the 'guix
shell' package list.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-06 12:38:02 +01:00
jgart
f1b0b2344c
gnu: Add cl-numerical-utilities.
...
* gnu/packages/lisp-xyz.scm (cl-numerical-utilities, ecl-numerical-utilities,
sbcl-numerical-utilities): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-06 10:36:31 +01:00
Maxim Cournoyer
a6c90c293d
gnu: Add jami-docs.
...
* gnu/packages/jami.scm (jami-docs): New variable.
2022-11-06 00:08:07 -04:00
Maxim Cournoyer
788901567d
gnu: Add python-myst-parser.
...
* gnu/packages/sphinx.scm (python-myst-parser): New variable.
2022-11-06 00:08:06 -04:00
Maxim Cournoyer
f583b14ce8
gnu: Add python-linkify-it-py.
...
* gnu/packages/python-xyz.scm (python-linkify-it-py): New variable.
2022-11-06 00:08:06 -04:00
Maxim Cournoyer
b0d9ab3db0
gnu: Add python-uc-micro-py.
...
* gnu/packages/python-xyz.scm (python-uc-micro-py): New variable.
2022-11-06 00:08:06 -04:00
Maxim Cournoyer
db753d6420
gnu: python-mdit-py-plugins: Update to 0.3.1.
...
* gnu/packages/python-xyz.scm (python-mdit-py-plugins): Update to 0.3.1.
[source]: Fetch from git.
[build-system]: Use pyproject-build-system.
[propagated-inputs]: Add python-attrs.
[native-inputs]: Add python-flit-core.
[description]: Remove extraneous white space.
2022-11-06 00:08:06 -04:00
Maxim Cournoyer
d4f65bc4ba
gnu: Add python-pytest-param-files.
...
* gnu/packages/check.scm (python-pytest-param-files): New variable.
2022-11-06 00:08:06 -04:00
Maxim Cournoyer
9dd03cdbba
gnu: Add python-sphinx-pytest.
...
* gnu/packages/sphinx.scm (python-sphinx-pytest): New variable.
2022-11-06 00:08:05 -04:00
Maxim Cournoyer
2b1cf6906d
gnu: qtwebengine: Fix build.
...
The package was not really building; the build phase was failing silently and
no libraries were installed to the output.
* gnu/packages/qt.scm (qtwebengine) [native-inputs]: Replace node by node-lts,
instead of simply appending it.
2022-11-06 00:08:05 -04:00
Maxim Cournoyer
ddea1161ad
gnu: restinio: Update to 0.6.17.
...
* gnu/packages/networking.scm (restinio): Update to 0.6.17.
[propagated-inputs]: Replace fmt-8 with fmt.
2022-11-06 00:08:05 -04:00
Maxim Cournoyer
4f407a9c49
gnu: restinio: Prepare for tests and propagate some inputs.
...
* gnu/packages/networking.scm (restinio): Update to 0.6.15.
[configure-flags]: New field.
[phases]: {change-directory}: Change directory to 'dev'.
[inputs]: Remove zlib, catch2, boost, pcre, and pcre2.
[propagated-inputs]: Add pcre, pcre2, and zlib.
[native-inputs]: Add catch2, clara, and json-dto.
2022-11-06 00:08:05 -04:00
Maxim Cournoyer
bc27d83b96
gnu: Add json-dto.
...
* gnu/packages/cpp.scm (json-dto): New variable.
2022-11-06 00:08:05 -04:00
Maxim Cournoyer
e05b284dc2
gnu: Add clara.
...
* gnu/packages/check.scm (clara): New variable.
2022-11-06 00:08:05 -04:00
Maxim Cournoyer
071d4bdc80
gnu: ccache: Update to 4.7.2.
...
* gnu/packages/ccache.scm (ccache): Update to 4.7.2. Move inputs fields after
arguments field.
[native-inputs]: Add ruby-asciidoctor to generate man page.
2022-11-06 00:08:04 -04:00
Maxim Cournoyer
451d2802f6
gnu: fmt: Update to 9.1.0.
...
* gnu/packages/pretty-print.scm (fmt): Update to 9.1.0.
(fmt-8): New variable.
* gnu/packages/hyperledger.scm (hyperledger-iroha)
[snippet]: Delete trailing #t.
[native-inputs]: Re-indent. Replace fmt with fmt-8.
* gnu/packages/networking.scm (opendht) [inputs]: Replace fmt with fmt-8.
* gnu/packages/storage.scm (ceph): Likewise.
* gnu/packages/video.scm (mkvtoolnix): Likewise.
* gnu/packages/aidc.scm (zxing-cpp): Likewise.
* gnu/packages/wm.scm (waybar): Likewise.
* gnu/packages/geo.scm (osm2pgsql): Likewise.
* gnu/packages/graphics.scm (openimageio): Likewise.
* gnu/packages/build-tools.scm (bear): Likewise.
* gnu/packages/networking.scm (restinio): Likewise.
2022-11-06 00:08:04 -04:00
Maxim Cournoyer
76b86238ac
gnu: fmt-for-solidity: Rename to fmt-8.0.
...
* gnu/packages/pretty-print.scm (fmt-for-solidity): Rename to...
(fmt-8.0): ... this.
(fmt-for-irods): Rename to...
(fmt-6): ... this.
* gnu/packages/solidity.scm (solidity): Adjust accordingly.
* gnu/packages/irods.scm (irods, irods-client-icommands): Likewise.
2022-11-06 00:08:04 -04:00
Maxim Cournoyer
9e417d5cf6
gnu: protobuf-c: Update to 1.4.1.
...
* gnu/packages/protobuf.scm (protobuf-c): Update to 1.4.1.
2022-11-06 00:08:04 -04:00
Maxim Cournoyer
32ba6c5ddf
gnu: protobuf: Unbundle googletest.
...
* gnu/packages/protobuf.scm (protobuf) [origin]: Delete third_party directory
in snippet.
[configure-flags]: Add "-Dprotobuf_USE_EXTERNAL_GTEST=ON".
[native-inputs]: Add googletest.
2022-11-06 00:08:04 -04:00
Maxim Cournoyer
9f6479ecad
gnu: protobuf: Update to 3.21.9.
...
* gnu/packages/protobuf.scm (protobuf): Update to 3.21.9. Move outputs field before
build system. Move inputs field below arguments.
[source]: Apply patch and update URL.
[build-system]: Use cmake-build-system. This causes the CMake support files
to be installed, which is expected by some packages such as hyperledger-iroha.
[arguments]: Use gexps.
[configure-flags]: Add BUILD_SHARED_LIBS=ON.
[phases]: Add set-c++-standard.
[home-page]: Update URL.
(protobuf-3.6): Adjust to continue using the gnu-build-system.
* gnu/packages/patches/protobuf-fix-build-on-32bit.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
2022-11-06 00:08:03 -04:00
Maxim Cournoyer
68c2ed9714
gnu: fcitx5-gtk4: Fix build.
...
* gnu/packages/fcitx5.scm (fcitx5-gtk4) [configure-flags]: Explicitly add the
include directory $glib/include/gio-unix-2.0 to avoid a build failure.
2022-11-06 00:08:03 -04:00
Maxim Cournoyer
03d4c76be3
gnu: Add libx264-next.
...
* gnu/packages/video.scm (libx264-next): New variable.
2022-11-06 00:08:03 -04:00
Maxim Cournoyer
0d3fbfa347
gnu: Add libvpx-next.
...
* gnu/packages/video.scm (libvpx-next): New variable.
2022-11-06 00:08:03 -04:00
Zhu Zihao
a60dc46c2b
gnu: libcxx+libcxxabi: Use G-expressions.
...
* gnu/packages/llvm.scm (libcxx+libcxxabi-6)[arguments]: Use G-expressions.
<#:configure-flags>: Use "this-package-native-input".
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-06 00:37:06 +01:00
Zhu Zihao
1bb3a3ea4e
gnu: libcxxabi: Use G-expressions.
...
* gnu/packages/llvm.scm (libcxxabi-6)[arguments]: Use G-expressions.
<#:configure-flags>: Use "this-package-native-input".
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-06 00:37:06 +01:00
Zhu Zihao
8501932f36
gnu: libcxx: Update to 14.0.6.
...
* gnu/packages/llvm.scm(libcxx)[source]: Use "llvm-monorepo".
[arguments]<#:configure-flags>: Use clang & clang++, skip RPATH_CHANGE in CMake.
<#:phases>: Add phase "enter-subdirectory".
[native-inputs]: Add Python 3 for lit.
(libcxx-6)[arguments]: Don't inherit from libcxx.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-06 00:37:06 +01:00
Zhu Zihao
86af794215
gnu: libcxx: Use G-expressions.
...
* gnu/packages/llvm.scm (libcxx)[arguments]: Use G-expressions.
(libcxx-6)[arguments]: Use G-expressions.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-11-06 00:37:06 +01:00
Ricardo Wurmus
b43200e5b1
doc: cookbook: Add section on MPD with bluealsa.
...
* doc/guix-cookbook.texi (Music Server with Bluetooth Audio): New section
under System Configuration.
2022-11-06 00:35:56 +01:00
Ricardo Wurmus
769c5f563d
doc: cookbook: Update detailed menu for "System Configuration".
...
* doc/guix-cookbook.texi: Update menu.
2022-11-06 00:35:56 +01:00
Thiago Jung Bauermann
64e9190a87
news: Add 'pt' translation.
...
* etc/news.scm: Add Portuguese translation of entry about
pyproject-build-system.
Signed-off-by: Florian Pelz <pelzflorian@pelzflorian.de >
2022-11-05 23:28:26 +01:00
Ricardo Wurmus
f731f2f61f
Revert "gnu: pdfposter: Update to 0.8.1."
...
This reverts commit 040006d81c .
The upgrade broke pdfposter, which would require a more recent version of
pypdf2.
2022-11-05 23:14:32 +01:00
Ricardo Wurmus
69a759854d
gnu: Add r-fresh.
...
* gnu/packages/cran.scm (r-fresh): New variable.
2022-11-05 22:59:50 +01:00
Vivien Kraus
e5a0381e6d
gnu: minetest-technic: Update to 2022-10-30.
...
* gnu/packages/minetest.scm (minetest-technic): Update to 2022-10-30.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-05 17:53:28 +01:00
Vivien Kraus
6e9610056e
gnu: minetest-mineclone: Update to 0.80.1.
...
* gnu/packages/minetest.scm (minetest-mineclone): Update to 0.80.1.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-05 17:53:23 +01:00
Vivien Kraus
2ffc5f4709
gnu: minetest: Update to 5.6.1.
...
* gnu/packages/minetest.scm (minetest, minetest-data): Update to 5.6.1.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-05 17:52:47 +01:00
Vivien Kraus
86c14e70c5
gnu: irrlicht-for-minetest: Update to 1.9.0.mt8.
...
* gnu/packages/games.scm (irrlicht-for-minetest): Update to 1.9.0.mt8.
[inputs]: Add libxi.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-05 17:52:30 +01:00
Vinicius Monego
3e259442e7
gnu: gsequencer: Update to 4.4.2.
...
* gnu/packages/music.scm (gsequencer): Update to 4.4.2.
2022-11-05 10:13:54 -03:00
Vinicius Monego
0b38a34c57
gnu: srain: Update to 1.5.0.
...
* gnu/packages/irc.scm (srain): Update to 1.5.0.
2022-11-05 10:13:54 -03:00
Vinicius Monego
be25e992f4
gnu: shotcut: Update to 22.10.25.
...
* gnu/packages/video.scm (shotcut): Update to 22.10.25.
2022-11-05 10:13:54 -03:00
Vinicius Monego
99cf2f4dfb
gnu: openxr: Update to 1.0.25.
...
* gnu/packages/graphics.scm (openxr): Update to 1.0.25.
2022-11-05 10:13:54 -03:00
Vinicius Monego
9aac30ae99
gnu: homebank: Update to 5.5.8.
...
* gnu/packages/finance.scm (homebank): Update to 5.5.8.
2022-11-05 10:13:54 -03:00
Vinicius Monego
6c4404bbc7
gnu: libjxl: Update to 0.7.0.
...
* gnu/packages/image.scm (libjxl): Update to 0.7.0.
2022-11-05 10:13:54 -03:00
Vinicius Monego
0e85fceb38
gnu: google-highway: Update to 1.0.2.
...
* gnu/packages/cpp.scm (google-highway): Update to 1.0.2.
2022-11-05 10:13:54 -03:00
Vinicius Monego
a3eebc7731
gnu: python-hy: Update to 0.24.0.
...
* gnu/packages/python-xyz.scm (python-hy): Update to 0.24.0.
[arguments]: Skip more tests and remove old tests in the custom 'check'
phase.
[native-inputs]: Add python-wheel. Replace python-pytest with
python-pytest-7.1.
[propagated-inputs]: Remove python-astor, python-rply.
2022-11-05 10:13:50 -03:00
jgart
2211f50ec1
gnu: cl-xmls: Update to 3.2.0.
...
* gnu/packages/lisp-xyz.scm (sbcl-xmls): Update to 3.2.0.
[version]: Use the latest upstream tag over commit.
(ecl-xmls): Enable tests.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-05 13:02:36 +01:00
jgart
646a465306
gnu: Add cl-cluster.
...
* gnu/packages/lisp-xyz.scm (cl-cluster, ecl-cluster, sbcl-cluster):
New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-05 13:02:36 +01:00
jgart
fcc01e832c
gnu: Add cl-clostrum.
...
* gnu/packages/lisp-xyz.scm (cl-clostrum, ecl-clostrum, sbcl-clostrum):
New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-05 13:02:36 +01:00
jgart
6052fdf350
gnu: Add cl-inotify.
...
* gnu/packages/lisp-xyz.scm (cl-inotify, ecl-inotify, sbcl-inotify):
New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-05 13:02:36 +01:00
jgart
5e683bc5fa
gnu: Add cl-triads.
...
* gnu/packages/lisp-xyz.scm (cl-triads, ecl-triads, sbcl-triads):
New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-05 13:02:36 +01:00
jgart
ceac0fb129
gnu: Add cl-incless.
...
* gnu/packages/lisp-xyz.scm (cl-incless, ecl-incless, sbcl-incless): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-05 13:02:36 +01:00
jgart
84d239599a
gnu: python-pudb: Update to 2022.1.3.
...
* gnu/packages/python-xyz.scm (python-pudb): Update to 2022.1.3.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:44:46 +01:00
Peter Polidoro
29ab5c9838
gnu: kicad: Update to 6.0.9.
...
* gnu/packages/engineering.scm (kicad): Update to 6.0.9.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:44:32 +01:00
jgart
f91713e71b
gnu: python-funcparserlib: Enable tests.
...
* gnu/packages/python-xyz.scm (python-funcparserlib): Enable tests.
[origin]: Use GitHub since it includes the tests unlike PyPi.
[build-system]: Use pyproject-build-system.
[arguments]: Run tests.
[native-inputs]: Add python-poetry-core.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:44:08 +01:00
Hilton Chain
83bfdb4097
gnu: python-lief: Update to 0.12.3.
...
* gnu/packages/python-xyz.scm (python-lief): Update to 0.12.3.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:43:40 +01:00
Hilton Chain
6fe844fbc5
gnu: i3-autotiling: Update to 1.8.
...
* gnu/packages/python-xyz.scm (i3-autotiling): Update to 1.8.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:43:19 +01:00
jgart
ae5c718ac2
gnu: thefuck: Update to 3.32.
...
* gnu/packages/admin.scm (thefuck): Update to 3.32.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:43:04 +01:00
Nicolas Graves
a5099d95c8
gnu: Add ssh-to-age.
...
* gnu/packages/password-utils.scm (ssh-to-age): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:42:08 +01:00
kiasoc5
7023773e2c
gnu: neomutt: Update to 20220429.
...
* gnu/packages/mail.scm (neomutt): Update to 20220429.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:40:39 +01:00
kiasoc5
aa86ab8b4b
gnu: oauth2l: Update to 1.3.0.
...
* gnu/packages/authentication.scm (oauth2l): Update to 1.3.0.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:40:25 +01:00
ギャラ
8139322b8a
gnu: Add python-neovim-remote.
...
* gnu/packages/vim.scm (python-neovim-remote): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:40:06 +01:00
Matthew James Kraai
f56aae998c
gnu: Add tasksh.
...
* gnu/packages/task-management.scm (tasksh): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:37:19 +01:00
Evgeny Pisemsky
2b004b4ed0
gnu: Add guilescript.
...
* gnu/packages/guile-xyz.scm (guilescript): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:30:08 +01:00
Michael Rohleder
b3147b149c
gnu: python-canonicaljson: Update to 1.6.3.
...
* gnu/packages/python-xyz.scm (python-canonicaljson): Update to 1.6.3.
[arguments]: Add phases build, check and install to build with pep517.
Add phase loosen-requirements to build with python-setuptools-scm >3.
[native-inputs]: Add python-pypa-build, python-pytest, python-setuptools,
python-setuptools-scm.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:28:42 +01:00
Michael Rohleder
02a5363480
gnu: python-frozendict: Update to 2.3.4.
...
This fixes a potential memory leak with python 3.9:
https://github.com/slezica/python-frozendict/issues/38
* gnu/packages/python-xyz.scm (python-frozendict): Update to 2.3.4.
[home-page]: Set to new upstream repository.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:28:42 +01:00
(
6123f0e467
Add EditorConfig specification.
...
* .editorconfig: New file.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-05 11:26:55 +01:00
Liliana Marie Prikler
e67f9d7ab0
gnu: endeavour: Use git-file-name.
...
* gnu/packages/gnome.scm (endeavour)[source]: Use git-file-name.
2022-11-05 10:23:24 +01:00
Liliana Marie Prikler
80fd591cc4
gnu: endeavour: Update to 43.0.
...
* gnu/packages/gnome.scm (endeavour): Update to 43.0.
[#:phases]: Adjust ‘skip-gtk-update-icon-cache’ accordingly.
2022-11-05 10:23:24 +01:00
Liliana Marie Prikler
7e6e2f54e3
gnu: komikku: Update to 1.3.0.
...
* gnu/packages/gnome.scm (komikku): Update to 1.3.0.
2022-11-05 10:23:24 +01:00
Liliana Marie Prikler
5aa22d6ff9
gnu: python-dateparser: Update to 1.1.3.
...
* gnu/packages/python-xyz.scm (python-dateparser): Update to 1.1.3.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add ‘python-flake8’. Remove ‘python-mock’.
[arguments]<#:tests?>: Remove argument.
<#:phases>: Add ‘delete-failing-tests’.
2022-11-05 10:23:24 +01:00
Liliana Marie Prikler
2f4071b0b2
guix: ui: Add default synopsis for “doc” output.
...
* guix/ui.scm (package->recutils)[%default-output-synopses]: Add “doc”.
2022-11-05 10:23:24 +01:00
Liliana Marie Prikler
2c8b1be0d5
guix: ui: Improve missing output descriptions.
...
The current reference to Intel's Appendix H appears too obscure and confusing.
* guix/ui.scm (package->recutils)[output->recutils]: Replace “see Appendix H”
with “[description missing]”.
2022-11-05 10:23:23 +01:00
Liliana Marie Prikler
9eb80094ae
guix: ui: Handle single outputs.
...
The current code says "out" contains "everything else", even if there's no
other output to contain anything.
* guix/ui.scm (package->recutils)[default-output-synopses]: New variable.
[output->recutils]: Take default synopses as argument.
["outputs"]: Distinguish single and multiple outputs.
2022-11-05 10:23:23 +01:00
Liliana Marie Prikler
913015fb28
gnu: wine: Update to 7.19.
...
* gnu/packages/wine.scm (wine): Update to 7.19.
2022-11-05 10:23:23 +01:00
Hartmut Goebel
040006d81c
gnu: pdfposter: Update to 0.8.1.
...
* gnu/packages/pdf.scm (pdfposter): Update to 0.8.1.
[inputs]: Move python-pypdf2 to … [propagated-inputs]: _ here.
2022-11-05 10:16:25 +01:00
Vagrant Cascadian
64e53112c2
gnu: Fix various synopsis issues.
...
* gnu/packages/crates-io.scm (rust-rug-1)[synopsis]: Shorten.
(rust-simplelog-0.11)[synopsis]: Fix case.
(rust-tikv-jemalloc-ctl-0.4)[synopsis]: Fix case.
(rust-ucd-util-0.1)[synopsis]: Fix case.
* gnu/packages/kde.scm (kuserfeedback)[synopsis]: Shorten.
* gnu/packages/tex.scm (texlive-generic-pdfescape)[synopsis]: Reword to fix
case issue.
2022-11-04 19:40:13 -07:00
jgart
a65cd83008
gnu: Add emacs-zig-mode.
...
* gnu/packages/emacs-xyz.scm (emacs-zig-mode): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-05 00:25:06 +01:00
Nicolas Graves via Guix-patches via
eb2ad29e76
gnu: emacs-python-black: Update to 1.2.0.
...
* gnu/packages/emacs-xyz.scm (emacs-python-black): Update to 1.2.0.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-05 00:25:05 +01:00
jgart
9f7d3e56eb
gnu: Add emacs-waveform.
...
* gnu/packages/emacs-xyz.scm (emacs-waveform): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-05 00:25:05 +01:00
Nicolas Goaziou
dd29c72a86
gnu: Add emacs-mpv.
...
* gnu/packages/emacs-xyz.scm (emacs-mpv): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-05 00:24:59 +01:00
Nicolas Goaziou
0f8f9844a9
gnu: emacs-ts: Update to 0.3.
...
* gnu/packages/emacs-xyz.scm (emacs-ts): Update to 0.3.
[arguments]: Use G-expressions. Remove traling #T.
<#:phases>: Skip a slightly different set of tests.
[propagated-inputs]: Re-order alphabetically.
2022-11-05 00:24:08 +01:00
Leo Famulari
3a227cff36
gnu: linux-libre 4.9: Update to 4.9.332.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.332.
(linux-libre-4.9-pristine-source): Update hash.
2022-11-04 15:03:24 -04:00
Leo Famulari
9144b962df
gnu: linux-libre 4.14: Update to 4.14.298.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.298.
(linux-libre-4.14-pristine-source): Update hash.
2022-11-04 15:03:24 -04:00
Leo Famulari
366722b2e1
gnu: linux-libre 4.19: Update to 4.19.264.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.264.
(linux-libre-4.19-pristine-source): Update hash.
2022-11-04 15:03:24 -04:00
Leo Famulari
91cf54b955
gnu: linux-libre 5.4: Update to 5.4.223.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.223.
(linux-libre-5.4-pristine-source): Update hash.
2022-11-04 15:03:24 -04:00
Leo Famulari
816b3c8d05
gnu: linux-libre 5.10: Update to 5.10.153.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.153.
(linux-libre-5.10-pristine-source): Update hash.
2022-11-04 15:03:23 -04:00
Leo Famulari
ba37fef356
gnu: linux-libre 5.15: Update to 5.15.77.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.77.
(linux-libre-5.15-pristine-source): Update hash.
2022-11-04 15:03:23 -04:00
Leo Famulari
fe69a2b77d
gnu: linux-libre 6.0: Update to 6.0.7.
...
* gnu/packages/linux.scm (linux-libre-6.0-version): Update to 6.0.7.
(linux-libre-6.0-pristine-source, deblob-scripts-6.0): Update hashes.
2022-11-04 15:03:23 -04:00
Ricardo Wurmus
b19c12c2d7
gnu: Add python-pyts.
...
* gnu/packages/python-science.scm (python-pyts): New variable.
2022-11-04 19:53:31 +01:00
Mădălin Ionel Patrașcu
04f8295f6f
gnu: Add r-microbiome.
...
* gnu/packages/bioconductor.scm (r-microbiome): New variable.
2022-11-04 14:27:40 +01:00
Mădălin Ionel Patrașcu
49e1a3a04b
gnu: Add python-cooltools.
...
* gnu/packages/bioinformatics.scm (python-cooltools): New variable.
2022-11-04 13:50:20 +01:00
Mădălin Ionel Patrașcu
14cbaac69c
gnu: Add python-bioframe.
...
X-Debbugs-Cc: rekado@elephly.net
* gnu/packages/bioinformatics.scm (python-bioframe): New variable.
2022-11-04 13:39:12 +01:00
Mădălin Ionel Patrașcu
12b83f697d
gnu: Add r-aldex2.
...
* gnu/packages/bioconductor.scm (r-aldex2): New variable.
2022-11-04 12:13:55 +01:00
Mădălin Ionel Patrașcu
5c2070e707
gnu: Add r-zcompositions.
...
* gnu/packages/cran.scm (r-zcompositions): New variable.
2022-11-04 12:13:55 +01:00
Mădălin Ionel Patrașcu
8bf7241b8b
gnu: Add r-nada.
...
* gnu/packages/cran.scm (r-nada): New variable.
2022-11-04 12:13:48 +01:00
Julien Lepiller
a65ce9dd50
nls: Update translations.
...
* po/guix/lt.po: New file.
* po/guix/LINGUAS: Add lt.
2022-11-04 10:56:38 +01:00
Ricardo Wurmus
bf07402355
gnu: r-desctools: Update to 0.99.47.
...
* gnu/packages/statistics.scm (r-desctools): Update to 0.99.47.
2022-11-04 10:01:23 +01:00
Ricardo Wurmus
091071f2e1
gnu: r-exact: Update to 3.2.
...
* gnu/packages/statistics.scm (r-exact): Update to 3.2.
2022-11-04 10:01:23 +01:00
Ricardo Wurmus
02fa6542a1
gnu: r-gld: Update to 2.6.6.
...
* gnu/packages/statistics.scm (r-gld): Update to 2.6.6.
2022-11-04 10:01:23 +01:00
Ricardo Wurmus
d7b6cea638
gnu: r-tclust: Update to 1.5-2.
...
* gnu/packages/statistics.scm (r-tclust): Update to 1.5-2.
2022-11-04 10:01:23 +01:00
Ricardo Wurmus
b1b6283d93
gnu: r-mnormt: Update to 2.1.1.
...
* gnu/packages/statistics.scm (r-mnormt): Update to 2.1.1.
2022-11-04 10:01:23 +01:00
Ricardo Wurmus
b71704faf1
gnu: r-car: Update to 3.1-1.
...
* gnu/packages/statistics.scm (r-car): Update to 3.1-1.
[propagated-inputs]: Remove r-maptools; add r-scales.
2022-11-04 10:01:23 +01:00
Ricardo Wurmus
88fe2782a5
gnu: r-minqa: Update to 1.2.5.
...
* gnu/packages/statistics.scm (r-minqa): Update to 1.2.5.
2022-11-04 10:01:23 +01:00
Ricardo Wurmus
2fa2ccbfda
gnu: r-rrcov: Update to 1.7-2.
...
* gnu/packages/statistics.scm (r-rrcov): Update to 1.7-2.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
629e9919c8
gnu: r-pcapp: Update to 2.0-3.
...
* gnu/packages/statistics.scm (r-pcapp): Update to 2.0-3.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
4d1122a853
gnu: r-mclust: Update to 6.0.0.
...
* gnu/packages/statistics.scm (r-mclust): Update to 6.0.0.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
d08025e4fe
gnu: r-biased-urn: Update to 2.0.8.
...
* gnu/packages/statistics.scm (r-biased-urn): Update to 2.0.8.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
c3671213e1
gnu: r-purrr: Update to 0.3.5.
...
* gnu/packages/statistics.scm (r-purrr): Update to 0.3.5.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
ab1afb2ece
gnu: r-tidyselect: Update to 1.2.0.
...
* gnu/packages/statistics.scm (r-tidyselect): Update to 1.2.0.
[propagated-inputs]: Remove r-ellipsis and r-purrr; add r-cli, r-lifecycle, and r-withr.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
0d0fcb6227
gnu: r-r-utils: Update to 2.12.1.
...
* gnu/packages/statistics.scm (r-r-utils): Update to 2.12.1.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
8d3b912f32
gnu: r-e1071: Update to 1.7-12.
...
* gnu/packages/statistics.scm (r-e1071): Update to 1.7-12.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
0a7962cca0
gnu: r-irlba: Update to 2.3.5.1.
...
* gnu/packages/statistics.scm (r-irlba): Update to 2.3.5.1.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
2f6790eb08
gnu: r-xml: Update to 3.99-0.12.
...
* gnu/packages/statistics.scm (r-xml): Update to 3.99-0.12.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
2a6b08b511
gnu: r-rcurl: Update to 1.98-1.9.
...
* gnu/packages/statistics.scm (r-rcurl): Update to 1.98-1.9.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
3fe0d25e50
gnu: r-rsqlite: Update to 2.2.18.
...
* gnu/packages/statistics.scm (r-rsqlite): Update to 2.2.18.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
13bc34df30
gnu: r-rmarkdown: Update to 2.17.
...
* gnu/packages/statistics.scm (r-rmarkdown): Update to 2.17.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
5f0636508e
gnu: r-rcpparmadillo: Update to 0.11.4.0.1.
...
* gnu/packages/statistics.scm (r-rcpparmadillo): Update to 0.11.4.0.1.
2022-11-04 10:01:22 +01:00
Ricardo Wurmus
49e1988fcd
gnu: r-readr: Update to 2.1.3.
...
* gnu/packages/statistics.scm (r-readr): Update to 2.1.3.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
c2cf18b86a
gnu: r-devtools: Update to 2.4.5.
...
* gnu/packages/statistics.scm (r-devtools): Update to 2.4.5.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
12862a4854
gnu: r-openssl: Update to 2.0.4.
...
* gnu/packages/statistics.scm (r-openssl): Update to 2.0.4.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
4a94d6748f
gnu: r-commonmark: Update to 1.8.1.
...
* gnu/packages/statistics.scm (r-commonmark): Update to 1.8.1.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
b1b4c2c44a
gnu: r-brew: Update to 1.0-8.
...
* gnu/packages/statistics.scm (r-brew): Update to 1.0-8.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
379623e22d
gnu: r-bbmisc: Update to 1.13.
...
* gnu/packages/statistics.scm (r-bbmisc): Update to 1.13.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
78d67a614c
gnu: r-data-table: Update to 1.14.4.
...
* gnu/packages/statistics.scm (r-data-table): Update to 1.14.4.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
4d4c83bb16
gnu: r-chron: Update to 2.3-58.
...
* gnu/packages/statistics.scm (r-chron): Update to 2.3-58.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
50a26b5725
gnu: r-rlang: Update to 1.0.6.
...
* gnu/packages/statistics.scm (r-rlang): Update to 1.0.6.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
1330a45ab7
gnu: r-testthat: Update to 3.1.5.
...
* gnu/packages/statistics.scm (r-testthat): Update to 3.1.5.
[propagated-inputs]: Remove r-crayon.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
f49667ca64
gnu: r-crayon: Update to 1.5.2.
...
* gnu/packages/statistics.scm (r-crayon): Update to 1.5.2.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
e6b338b519
gnu: r-yaml: Update to 2.3.6.
...
* gnu/packages/statistics.scm (r-yaml): Update to 2.3.6.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
5baa52d0e4
gnu: r-markdown: Update to 1.3.
...
* gnu/packages/statistics.scm (r-markdown): Update to 1.3.
[propagated-inputs]: Add r-commonmark.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
f60cb8f40d
gnu: r-evaluate: Update to 0.17.
...
* gnu/packages/statistics.scm (r-evaluate): Update to 0.17.
2022-11-04 10:01:21 +01:00
Ricardo Wurmus
a912b6773b
gnu: r-digest: Update to 0.6.30.
...
* gnu/packages/statistics.scm (r-digest): Update to 0.6.30.
2022-11-04 10:01:20 +01:00
Ricardo Wurmus
d7f017d5ff
gnu: r-rpart: Update to 4.1.19.
...
* gnu/packages/statistics.scm (r-rpart): Update to 4.1.19.
2022-11-04 10:01:20 +01:00
Ricardo Wurmus
4a01cc884f
gnu: r-nnet: Update to 7.3-18.
...
* gnu/packages/statistics.scm (r-nnet): Update to 7.3-18.
2022-11-04 10:01:20 +01:00
Ricardo Wurmus
0f458f46a4
gnu: r-mgcv: Update to 1.8-41.
...
* gnu/packages/statistics.scm (r-mgcv): Update to 1.8-41.
2022-11-04 10:01:20 +01:00
Ricardo Wurmus
271c745914
gnu: r-nlme: Update to 3.1-160.
...
* gnu/packages/statistics.scm (r-nlme): Update to 3.1-160.
2022-11-04 10:01:20 +01:00
Ricardo Wurmus
c5bda90c2f
gnu: r-foreign: Update to 0.8-83.
...
* gnu/packages/statistics.scm (r-foreign): Update to 0.8-83.
2022-11-04 10:01:20 +01:00
Ricardo Wurmus
714ccfe11e
gnu: r-spacefillr: Update to 0.3.2.
...
* gnu/packages/cran.scm (r-spacefillr): Update to 0.3.2.
2022-11-04 10:01:20 +01:00
Ricardo Wurmus
ac1a9f857b
gnu: r-paws-application-integration: Update to 0.1.13.
...
* gnu/packages/cran.scm (r-paws-application-integration): Update to 0.1.13.
2022-11-04 10:01:20 +01:00
Ricardo Wurmus
4cf3b1a6dd
gnu: r-paws-common: Update to 0.5.1.
...
* gnu/packages/cran.scm (r-paws-common): Update to 0.5.1.
2022-11-04 10:01:20 +01:00
Ricardo Wurmus
2adcbe02f0
gnu: r-dismo: Update to 1.3-9.
...
* gnu/packages/cran.scm (r-dismo): Update to 1.3-9.
2022-11-04 10:01:20 +01:00
Ricardo Wurmus
36551e0d99
gnu: r-protolite: Update to 2.1.3.
...
* gnu/packages/cran.scm (r-protolite): Update to 2.1.3.
2022-11-04 10:01:19 +01:00
Ricardo Wurmus
4d9ea61310
gnu: r-vroom: Update to 1.6.0.
...
* gnu/packages/cran.scm (r-vroom): Update to 1.6.0.
2022-11-04 10:01:19 +01:00
Ricardo Wurmus
962b7c5a10
gnu: r-gsalib: Update to 2.2.1.
...
* gnu/packages/cran.scm (r-gsalib): Update to 2.2.1.
2022-11-04 10:01:19 +01:00
Ricardo Wurmus
e2f4faed16
gnu: r-lwgeom: Update to 0.2-9.
...
* gnu/packages/cran.scm (r-lwgeom): Update to 0.2-9.
2022-11-04 10:01:19 +01:00
Ricardo Wurmus
b50d14784e
gnu: r-pdftools: Update to 3.3.2.
...
* gnu/packages/cran.scm (r-pdftools): Update to 3.3.2.
2022-11-04 10:01:19 +01:00
Ricardo Wurmus
d8f57dec1e
gnu: r-pbdmpi: Update to 0.4-6.
...
* gnu/packages/cran.scm (r-pbdmpi): Update to 0.4-6.
2022-11-04 10:01:19 +01:00
Ricardo Wurmus
dfb2f4bc2c
gnu: r-qpdf: Update to 1.3.0.
...
* gnu/packages/cran.scm (r-qpdf): Update to 1.3.0.
2022-11-04 10:01:19 +01:00
Ricardo Wurmus
73495f3eaf
gnu: r-ndjson: Update to 0.9.0.
...
* gnu/packages/cran.scm (r-ndjson): Update to 0.9.0.
2022-11-04 10:01:19 +01:00
Ricardo Wurmus
197f40be58
gnu: r-ragg: Update to 1.2.4.
...
* gnu/packages/cran.scm (r-ragg): Update to 1.2.4.
2022-11-04 10:01:19 +01:00
Ricardo Wurmus
614a6a17ff
gnu: r-mlr3tuning: Update to 0.15.0.
...
* gnu/packages/cran.scm (r-mlr3tuning): Update to 0.15.0.
2022-11-04 10:01:19 +01:00
Ricardo Wurmus
25a85ce439
gnu: r-bbotk: Update to 0.6.0.
...
* gnu/packages/cran.scm (r-bbotk): Update to 0.6.0.
2022-11-04 10:01:18 +01:00
Ricardo Wurmus
fa4e050ecc
gnu: r-mlr3pipelines: Update to 0.4.2.
...
* gnu/packages/cran.scm (r-mlr3pipelines): Update to 0.4.2.
2022-11-04 10:01:18 +01:00
Ricardo Wurmus
1426a38f14
gnu: r-mlr3misc: Update to 0.11.0.
...
* gnu/packages/cran.scm (r-mlr3misc): Update to 0.11.0.
2022-11-04 10:01:18 +01:00
Ricardo Wurmus
12f22e2f98
gnu: r-calculus: Update to 1.0.0.
...
* gnu/packages/cran.scm (r-calculus): Update to 1.0.0.
2022-11-04 10:01:18 +01:00
Ricardo Wurmus
296824bbcc
gnu: r-mlecens: Update to 0.1-7.
...
* gnu/packages/cran.scm (r-mlecens): Update to 0.1-7.
2022-11-04 10:01:18 +01:00
Ricardo Wurmus
a6c4d5078c
gnu: r-parsnip: Update to 1.0.2.
...
* gnu/packages/cran.scm (r-parsnip): Update to 1.0.2.
2022-11-04 10:01:18 +01:00
Ricardo Wurmus
b48c46baef
gnu: r-tokenizers: Update to 0.2.3.
...
* gnu/packages/cran.scm (r-tokenizers): Update to 0.2.3.
2022-11-04 10:01:18 +01:00
Ricardo Wurmus
af9bfbd0fa
gnu: r-tune: Update to 1.0.1.
...
* gnu/packages/cran.scm (r-tune): Update to 1.0.1.
2022-11-04 10:01:18 +01:00
Ricardo Wurmus
edb22d06f6
gnu: r-workflows: Update to 1.1.0.
...
* gnu/packages/cran.scm (r-workflows): Update to 1.1.0.
2022-11-04 10:01:18 +01:00
Ricardo Wurmus
6f4fc5f2f8
gnu: r-igraph: Update to 1.3.5.
...
* gnu/packages/cran.scm (r-igraph): Update to 1.3.5.
2022-11-04 10:01:17 +01:00
Ricardo Wurmus
b6529bd34f
gnu: r-confintr: Update to 0.2.0.
...
* gnu/packages/cran.scm (r-confintr): Update to 0.2.0.
2022-11-04 10:01:17 +01:00
Ricardo Wurmus
b6ff7591bf
gnu: r-clusterr: Update to 1.2.7.
...
* gnu/packages/cran.scm (r-clusterr): Update to 1.2.7.
[propagated-inputs]: Add r-lifecycle.
2022-11-04 10:01:17 +01:00
Ricardo Wurmus
1d5b6f19c7
gnu: r-cpp11: Update to 0.4.3.
...
* gnu/packages/cran.scm (r-cpp11): Update to 0.4.3.
2022-11-04 10:01:17 +01:00
Ricardo Wurmus
aebf9fa18e
gnu: r-spatstat-geom: Update to 3.0-3.
...
* gnu/packages/cran.scm (r-spatstat-geom): Update to 3.0-3.
2022-11-04 10:01:17 +01:00
Ricardo Wurmus
2ca46d4c9b
gnu: r-spatstat-data: Update to 3.0-0.
...
* gnu/packages/cran.scm (r-spatstat-data): Update to 3.0-0.
2022-11-04 10:01:17 +01:00
Ricardo Wurmus
4246fb534c
gnu: r-spatstat-sparse: Update to 3.0-0.
...
* gnu/packages/cran.scm (r-spatstat-sparse): Update to 3.0-0.
2022-11-04 10:01:17 +01:00
Ricardo Wurmus
b547b74d89
gnu: r-spatstat-utils: Update to 3.0-1.
...
* gnu/packages/cran.scm (r-spatstat-utils): Update to 3.0-1.
2022-11-04 10:01:17 +01:00
Ricardo Wurmus
b719ba9ca5
gnu: r-lightgbm: Update to 3.3.3.
...
* gnu/packages/cran.scm (r-lightgbm): Update to 3.3.3.
2022-11-04 10:01:17 +01:00
Ricardo Wurmus
d476166360
gnu: r-brms: Update to 2.18.0.
...
* gnu/packages/cran.scm (r-brms): Update to 2.18.0.
2022-11-04 10:01:17 +01:00
Ricardo Wurmus
b718ae9b0c
gnu: r-projpred: Update to 2.2.1.
...
* gnu/packages/cran.scm (r-projpred): Update to 2.2.1.
2022-11-04 10:01:16 +01:00
Ricardo Wurmus
7520472a6e
gnu: r-isoband: Update to 0.2.6.
...
* gnu/packages/cran.scm (r-isoband): Update to 0.2.6.
2022-11-04 10:01:16 +01:00
Ricardo Wurmus
6cd6f09def
gnu: r-keyring: Update to 1.3.1.
...
* gnu/packages/cran.scm (r-keyring): Update to 1.3.1.
2022-11-04 10:01:16 +01:00
Ricardo Wurmus
a55043dc5e
gnu: r-rsconnect: Update to 0.8.28.
...
* gnu/packages/cran.scm (r-rsconnect): Update to 0.8.28.
2022-11-04 10:01:16 +01:00
Ricardo Wurmus
64c3ea835f
gnu: r-bdgraph: Update to 2.70.
...
* gnu/packages/cran.scm (r-bdgraph): Update to 2.70.
[propagated-inputs]: Add r-ggplot2 and r-proc.
2022-11-04 10:01:16 +01:00
Ricardo Wurmus
08e59f6dc2
gnu: r-openmx: Update to 2.20.7.
...
* gnu/packages/cran.scm (r-openmx): Update to 2.20.7.
2022-11-04 10:01:16 +01:00
Ricardo Wurmus
f9ecc73759
gnu: r-isocodes: Update to 2022.09.29.
...
* gnu/packages/cran.scm (r-isocodes): Update to 2022.09.29.
2022-11-04 10:01:16 +01:00
Ricardo Wurmus
081ea818d9
gnu: r-proxyc: Update to 0.3.3.
...
* gnu/packages/cran.scm (r-proxyc): Update to 0.3.3.
[native-inputs]: Add r-knitr.
2022-11-04 10:01:16 +01:00
Ricardo Wurmus
fe1ba4858a
gnu: r-forecast: Update to 8.18.
...
* gnu/packages/cran.scm (r-forecast): Update to 8.18.
2022-11-04 10:01:16 +01:00
Ricardo Wurmus
cbeafa057d
gnu: r-fracdiff: Update to 1.5-2.
...
* gnu/packages/cran.scm (r-fracdiff): Update to 1.5-2.
2022-11-04 10:01:16 +01:00
Ricardo Wurmus
81272ae381
gnu: r-rsvg: Update to 2.3.2.
...
* gnu/packages/cran.scm (r-rsvg): Update to 2.3.2.
2022-11-04 10:01:16 +01:00
Ricardo Wurmus
7cdecc9b52
gnu: r-gghighlight: Update to 0.4.0.
...
* gnu/packages/cran.scm (r-gghighlight): Update to 0.4.0.
2022-11-04 10:01:15 +01:00
Ricardo Wurmus
42d0d2829d
gnu: r-anndata: Update to 0.7.5.5.
...
* gnu/packages/cran.scm (r-anndata): Update to 0.7.5.5.
2022-11-04 10:01:15 +01:00
Ricardo Wurmus
649f35740a
gnu: r-icge: Update to 0.4.2.
...
* gnu/packages/cran.scm (r-icge): Update to 0.4.2.
2022-11-04 10:01:15 +01:00
Ricardo Wurmus
f24b1739a3
gnu: r-adagio: Update to 0.8.5.
...
* gnu/packages/cran.scm (r-adagio): Update to 0.8.5.
2022-11-04 10:01:15 +01:00
Ricardo Wurmus
d08931ed76
gnu: r-actuar: Update to 3.3-1.
...
* gnu/packages/cran.scm (r-actuar): Update to 3.3-1.
2022-11-04 10:01:15 +01:00
Ricardo Wurmus
66421f6c73
gnu: r-expint: Update to 0.1-8.
...
* gnu/packages/cran.scm (r-expint): Update to 0.1-8.
2022-11-04 10:01:15 +01:00
Ricardo Wurmus
a28ea5e816
gnu: r-rainbow: Update to 3.7.
...
* gnu/packages/cran.scm (r-rainbow): Update to 3.7.
2022-11-04 10:01:15 +01:00
Ricardo Wurmus
9bd6e772a7
gnu: r-tuner: Update to 1.4.1.
...
* gnu/packages/cran.scm (r-tuner): Update to 1.4.1.
2022-11-04 10:01:15 +01:00
Ricardo Wurmus
43cb04f7d6
gnu: r-acet: Update to 1.8.2.
...
* gnu/packages/cran.scm (r-acet): Update to 1.8.2.
[native-inputs]: Add r-knitr.
2022-11-04 10:01:15 +01:00
Ricardo Wurmus
54c8dff8fa
gnu: r-bio3d: Update to 2.4-4.
...
* gnu/packages/cran.scm (r-bio3d): Update to 2.4-4.
2022-11-04 10:01:15 +01:00
Ricardo Wurmus
5d9d7cf0c4
gnu: r-pracma: Update to 2.4.2.
...
* gnu/packages/cran.scm (r-pracma): Update to 2.4.2.
2022-11-04 10:01:15 +01:00
Ricardo Wurmus
c130aa9c63
gnu: r-desolve: Update to 1.34.
...
* gnu/packages/cran.scm (r-desolve): Update to 1.34.
2022-11-04 10:01:15 +01:00
Ricardo Wurmus
dc5af3d64e
gnu: r-lifecycle: Update to 1.0.3.
...
* gnu/packages/cran.scm (r-lifecycle): Update to 1.0.3.
[propagated-inputs]: Add r-cli.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
0332df8729
gnu: r-parameters: Update to 0.19.0.
...
* gnu/packages/cran.scm (r-parameters): Update to 0.19.0.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
31e9185c08
gnu: r-graphlayouts: Update to 0.8.3.
...
* gnu/packages/cran.scm (r-graphlayouts): Update to 0.8.3.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
e9d42d9ff8
gnu: r-gldex: Update to 2.0.0.9.2.
...
* gnu/packages/cran.scm (r-gldex): Update to 2.0.0.9.2.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
fcb5226d73
gnu: r-refmanager: Update to 1.4.0.
...
* gnu/packages/cran.scm (r-refmanager): Update to 1.4.0.
[propagated-inputs]: Add r-bibtex.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
d5c8dedd04
gnu: r-clue: Update to 0.3-62.
...
* gnu/packages/cran.scm (r-clue): Update to 0.3-62.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
c41fd1b905
gnu: r-styler: Update to 1.8.0.
...
* gnu/packages/cran.scm (r-styler): Update to 1.8.0.
[propagated-inputs]: Remove r-rematch2 and r-tibble; add r-vctrs.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
789306df17
gnu: r-sctransform: Update to 0.3.5.
...
* gnu/packages/cran.scm (r-sctransform): Update to 0.3.5.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
3e5b3a1236
gnu: r-lintr: Update to 3.0.2.
...
* gnu/packages/cran.scm (r-lintr): Update to 3.0.2.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
3279710d4e
gnu: r-ggnewscale: Update to 0.4.8.
...
* gnu/packages/cran.scm (r-ggnewscale): Update to 0.4.8.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
637c6a6f93
gnu: r-aplot: Update to 0.1.8.
...
* gnu/packages/cran.scm (r-aplot): Update to 0.1.8.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
c7acb9d76a
gnu: r-ggcorrplot: Update to 0.1.4.
...
* gnu/packages/cran.scm (r-ggcorrplot): Update to 0.1.4.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
4cf1f7af96
gnu: r-ggraph: Update to 2.1.0.
...
* gnu/packages/cran.scm (r-ggraph): Update to 2.1.0.
[propagated-inputs]: Add r-cli, r-lifecycle, and r-vctrs.
2022-11-04 10:01:14 +01:00
Ricardo Wurmus
821f32087f
gnu: r-ggforce: Update to 0.4.1.
...
* gnu/packages/cran.scm (r-ggforce): Update to 0.4.1.
[propagated-inputs]: Add r-cli, r-systemfonts, and r-vctrs.
2022-11-04 10:01:13 +01:00
Ricardo Wurmus
120b0ba7fa
gnu: r-polyclip: Update to 1.10-4.
...
* gnu/packages/cran.scm (r-polyclip): Update to 1.10-4.
2022-11-04 10:01:13 +01:00
Ricardo Wurmus
a074f0e39f
gnu: r-babelgene: Update to 22.9.
...
* gnu/packages/cran.scm (r-babelgene): Update to 22.9.
2022-11-04 10:01:13 +01:00
Ricardo Wurmus
e1b2f87802
gnu: r-rttf2pt1: Update to 1.3.11.
...
* gnu/packages/cran.scm (r-rttf2pt1): Update to 1.3.11.
2022-11-04 10:01:13 +01:00
Ricardo Wurmus
abaa1535db
gnu: r-tdthap: Update to 1.2.
...
* gnu/packages/cran.scm (r-tdthap): Update to 1.2.
2022-11-04 10:01:13 +01:00
Ricardo Wurmus
ed4fb7dda7
gnu: r-bqtl: Update to 1.0-34.
...
* gnu/packages/cran.scm (r-bqtl): Update to 1.0-34.
2022-11-04 10:01:13 +01:00
Ricardo Wurmus
f2b7725600
gnu: r-adegenet: Update to 2.1.8.
...
* gnu/packages/cran.scm (r-adegenet): Update to 2.1.8.
2022-11-04 10:01:13 +01:00
Ricardo Wurmus
a22928d0c4
gnu: r-spdep: Update to 1.2-7.
...
* gnu/packages/cran.scm (r-spdep): Update to 1.2-7.
2022-11-04 10:01:13 +01:00
Ricardo Wurmus
ac6b5ec5d8
gnu: r-wk: Update to 0.7.0.
...
* gnu/packages/cran.scm (r-wk): Update to 0.7.0.
2022-11-04 10:01:13 +01:00
Ricardo Wurmus
8b614f01b4
gnu: r-classint: Update to 0.4-8.
...
* gnu/packages/cran.scm (r-classint): Update to 0.4-8.
2022-11-04 10:01:13 +01:00
Ricardo Wurmus
62d43873f9
gnu: r-brobdingnag: Update to 1.2-9.
...
* gnu/packages/cran.scm (r-brobdingnag): Update to 1.2-9.
[propagated-inputs]: Add r-matrix.
2022-11-04 10:01:13 +01:00
Ricardo Wurmus
3188eaf3dd
gnu: r-pbdzmq: Update to 0.3-8.
...
* gnu/packages/cran.scm (r-pbdzmq): Update to 0.3-8.
2022-11-04 10:01:13 +01:00
Ricardo Wurmus
68fd1a8401
gnu: r-colourpicker: Update to 1.2.0.
...
* gnu/packages/cran.scm (r-colourpicker): Update to 1.2.0.
[native-inputs]: Update js-jquery to 3.6.1.
2022-11-04 10:01:12 +01:00
Ricardo Wurmus
168f9ac750
gnu: r-shinymanager: Update to 1.0.410.
...
* gnu/packages/cran.scm (r-shinymanager): Update to 1.0.410.
2022-11-04 10:01:12 +01:00
Ricardo Wurmus
95b339a111
gnu: r-dotcall64: Update to 1.0-2.
...
* gnu/packages/cran.scm (r-dotcall64): Update to 1.0-2.
2022-11-04 10:01:12 +01:00
Ricardo Wurmus
9c7186641f
gnu: r-gmp: Update to 0.6-7.
...
* gnu/packages/cran.scm (r-gmp): Update to 0.6-7.
2022-11-04 10:01:12 +01:00
Ricardo Wurmus
515577c8b6
gnu: r-bigrquery: Update to 1.4.1.
...
* gnu/packages/cran.scm (r-bigrquery): Update to 1.4.1.
[propagated-inputs]: Add r-brio.
2022-11-04 10:01:12 +01:00
Ricardo Wurmus
00f6eebfd3
gnu: r-rnifti: Update to 1.4.2.
...
* gnu/packages/cran.scm (r-rnifti): Update to 1.4.2.
2022-11-04 10:01:12 +01:00
Ricardo Wurmus
e26d8b1bea
gnu: r-rnexml: Update to 2.4.8.
...
* gnu/packages/cran.scm (r-rnexml): Update to 2.4.8.
[propagated-inputs]: Remove r-lazyeval.
2022-11-04 10:01:12 +01:00
Ricardo Wurmus
8864b80daf
gnu: r-tfmpvalue: Update to 0.0.9.
...
* gnu/packages/cran.scm (r-tfmpvalue): Update to 0.0.9.
2022-11-04 10:01:12 +01:00
Ricardo Wurmus
d3e280674d
gnu: r-tidytree: Update to 0.4.1.
...
* gnu/packages/cran.scm (r-tidytree): Update to 0.4.1.
2022-11-04 10:01:12 +01:00
Ricardo Wurmus
ed6049cfe6
gnu: r-tm: Update to 0.7-9.
...
* gnu/packages/cran.scm (r-tm): Update to 0.7-9.
2022-11-04 10:01:12 +01:00
Ricardo Wurmus
a2e95cfbdd
gnu: r-rgl: Update to 0.110.2.
...
* gnu/packages/cran.scm (r-rgl): Update to 0.110.2.
2022-11-04 10:01:11 +01:00
Ricardo Wurmus
e36dc17a85
gnu: r-biocmanager: Update to 1.30.19.
...
* gnu/packages/cran.scm (r-biocmanager): Update to 1.30.19.
2022-11-04 10:01:11 +01:00
Ricardo Wurmus
cba46e944c
gnu: r-rcppannoy: Update to 0.0.20.
...
* gnu/packages/cran.scm (r-rcppannoy): Update to 0.0.20.
2022-11-04 10:01:11 +01:00
Ricardo Wurmus
8ac42c860d
gnu: r-afex: Update to 1.2-0.
...
* gnu/packages/cran.scm (r-afex): Update to 1.2-0.
2022-11-04 10:01:11 +01:00
Ricardo Wurmus
a8736b86c5
gnu: r-rcppgsl: Update to 0.3.12.
...
* gnu/packages/cran.scm (r-rcppgsl): Update to 0.3.12.
2022-11-04 10:01:11 +01:00
Ricardo Wurmus
bba15765b6
gnu: r-gert: Update to 1.9.1.
...
* gnu/packages/cran.scm (r-gert): Update to 1.9.1.
2022-11-04 10:01:11 +01:00
Ricardo Wurmus
64346a37de
gnu: r-gillespiessa2: Update to 0.2.10.
...
* gnu/packages/cran.scm (r-gillespiessa2): Update to 0.2.10.
2022-11-04 10:01:11 +01:00
Ricardo Wurmus
a2821e7aff
gnu: r-effectsize: Update to 0.8.2.
...
* gnu/packages/cran.scm (r-effectsize): Update to 0.8.2.
2022-11-04 10:01:11 +01:00
Ricardo Wurmus
3ca5601435
gnu: r-ggeffects: Update to 1.1.4.
...
* gnu/packages/cran.scm (r-ggeffects): Update to 1.1.4.
[propagated-inputs]: Remove r-mass and r-sjlabelled.
2022-11-04 10:01:11 +01:00
Ricardo Wurmus
213bea02bf
gnu: r-performance: Update to 0.10.0.
...
* gnu/packages/cran.scm (r-performance): Update to 0.10.0.
2022-11-04 10:01:11 +01:00
Ricardo Wurmus
c3d31869bb
gnu: r-emmeans: Update to 1.8.2.
...
* gnu/packages/cran.scm (r-emmeans): Update to 1.8.2.
2022-11-04 10:01:11 +01:00
Ricardo Wurmus
83269963b8
gnu: r-gee: Update to 4.13-25.
...
* gnu/packages/cran.scm (r-gee): Update to 4.13-25.
2022-11-04 10:01:11 +01:00
Ricardo Wurmus
e0f815a765
gnu: r-phyclust: Update to 0.1-32.
...
* gnu/packages/cran.scm (r-phyclust): Update to 0.1-32.
2022-11-04 10:01:10 +01:00
Ricardo Wurmus
aeb7ffa012
gnu: r-mosaic: Update to 1.8.4.2.
...
* gnu/packages/cran.scm (r-mosaic): Update to 1.8.4.2.
2022-11-04 10:01:10 +01:00
Ricardo Wurmus
8ba630c4f5
gnu: r-mosaiccore: Update to 0.9.2.1.
...
* gnu/packages/cran.scm (r-mosaiccore): Update to 0.9.2.1.
2022-11-04 10:01:10 +01:00
Ricardo Wurmus
daa5223b79
gnu: r-cmplot: Update to 4.2.0.
...
* gnu/packages/cran.scm (r-cmplot): Update to 4.2.0.
2022-11-04 10:01:10 +01:00
Ricardo Wurmus
7a31feaa60
gnu: r-doby: Update to 4.6.14.
...
* gnu/packages/cran.scm (r-doby): Update to 4.6.14.
2022-11-04 10:01:10 +01:00
Ricardo Wurmus
1af1258f17
gnu: r-biasedurn: Update to 2.0.8.
...
* gnu/packages/cran.scm (r-biasedurn): Update to 2.0.8.
2022-11-04 10:01:10 +01:00
Ricardo Wurmus
2964471250
gnu: r-writexl: Update to 1.4.1.
...
* gnu/packages/cran.scm (r-writexl): Update to 1.4.1.
2022-11-04 10:01:10 +01:00
Ricardo Wurmus
2f74055cfc
gnu: r-flextable: Update to 0.8.2.
...
* gnu/packages/cran.scm (r-flextable): Update to 0.8.2.
2022-11-04 10:01:10 +01:00
Ricardo Wurmus
e4a1dee4b2
gnu: r-insight: Update to 0.18.6.
...
* gnu/packages/cran.scm (r-insight): Update to 0.18.6.
2022-11-04 10:01:10 +01:00
Ricardo Wurmus
24a126e9a0
gnu: r-hdf5r: Update to 1.3.7.
...
* gnu/packages/cran.scm (r-hdf5r): Update to 1.3.7.
2022-11-04 10:01:10 +01:00
Ricardo Wurmus
3e314fd221
gnu: r-ggsignif: Update to 0.6.4.
...
* gnu/packages/cran.scm (r-ggsignif): Update to 0.6.4.
2022-11-04 10:01:10 +01:00
Ricardo Wurmus
592ec521e2
gnu: r-bibtex: Update to 0.5.0.
...
* gnu/packages/cran.scm (r-bibtex): Update to 0.5.0.
[propagated-inputs]: Remove r-stringr; add r-backports.
2022-11-04 10:01:10 +01:00
Ricardo Wurmus
282407e024
gnu: r-learnr: Update to 0.11.1.
...
* gnu/packages/cran.scm (r-learnr): Update to 0.11.1.
[propagated-inputs]: Add r-curl, r-digest, r-lifecycle, r-promises, and r-rlang.
[native-inputs]: Add r-knitr.
2022-11-04 10:01:09 +01:00
Ricardo Wurmus
51d43b4832
gnu: r-renv: Update to 0.16.0.
...
* gnu/packages/cran.scm (r-renv): Update to 0.16.0.
2022-11-04 10:01:09 +01:00
Ricardo Wurmus
2160d91097
gnu: r-maptools: Update to 1.1-5.
...
* gnu/packages/cran.scm (r-maptools): Update to 1.1-5.
2022-11-04 10:01:09 +01:00
Ricardo Wurmus
933290bcb6
gnu: r-openxlsx: Update to 4.2.5.1.
...
* gnu/packages/cran.scm (r-openxlsx): Update to 4.2.5.1.
2022-11-04 10:01:09 +01:00
Ricardo Wurmus
41512afdc1
gnu: r-zip: Update to 2.2.2.
...
* gnu/packages/cran.scm (r-zip): Update to 2.2.2.
2022-11-04 10:01:09 +01:00
Ricardo Wurmus
ce55e740fb
gnu: r-parsedate: Update to 1.3.1.
...
* gnu/packages/cran.scm (r-parsedate): Update to 1.3.1.
2022-11-04 10:01:09 +01:00
Ricardo Wurmus
7f9d530be0
gnu: r-arules: Update to 1.7-5.
...
* gnu/packages/cran.scm (r-arules): Update to 1.7-5.
2022-11-04 10:01:09 +01:00
Ricardo Wurmus
09ba069eb2
gnu: r-dynutils: Update to 1.0.11.
...
* gnu/packages/cran.scm (r-dynutils): Update to 1.0.11.
2022-11-04 10:01:09 +01:00
Ricardo Wurmus
b042ae66a7
gnu: r-heatmaply: Update to 1.4.0.
...
* gnu/packages/cran.scm (r-heatmaply): Update to 1.4.0.
2022-11-04 10:01:09 +01:00
Ricardo Wurmus
1febddd3fb
gnu: r-np: Update to 0.60-16.
...
* gnu/packages/cran.scm (r-np): Update to 0.60-16.
2022-11-04 10:01:09 +01:00
Ricardo Wurmus
dbbc2ae0f8
gnu: r-tseries: Update to 0.10-52.
...
* gnu/packages/cran.scm (r-tseries): Update to 0.10-52.
2022-11-04 10:01:09 +01:00
Ricardo Wurmus
a29f773856
gnu: r-network: Update to 1.18.0.
...
* gnu/packages/cran.scm (r-network): Update to 1.18.0.
2022-11-04 10:01:09 +01:00
Ricardo Wurmus
1979a1e557
gnu: r-tinytex: Update to 0.42.
...
* gnu/packages/cran.scm (r-tinytex): Update to 0.42.
2022-11-04 10:01:08 +01:00
Ricardo Wurmus
669d3a7570
gnu: r-vctrs: Update to 0.5.0.
...
* gnu/packages/cran.scm (r-vctrs): Update to 0.5.0.
[propagated-inputs]: Add r-lifecycle.
2022-11-04 10:01:08 +01:00
Ricardo Wurmus
f593b5e92b
gnu: r-xfun: Update to 0.34.
...
* gnu/packages/cran.scm (r-xfun): Update to 0.34.
2022-11-04 10:01:08 +01:00
Ricardo Wurmus
80905f72ca
gnu: r-seriation: Update to 1.4.0.
...
* gnu/packages/cran.scm (r-seriation): Update to 1.4.0.
[propagated-inputs]: Add r-ca.
2022-11-04 10:01:08 +01:00
Ricardo Wurmus
0b28bfd2c4
gnu: r-webshot: Update to 0.5.4.
...
* gnu/packages/cran.scm (r-webshot): Update to 0.5.4.
2022-11-04 10:01:08 +01:00
Ricardo Wurmus
bb0c4ff189
gnu: r-processx: Update to 3.8.0.
...
* gnu/packages/cran.scm (r-processx): Update to 3.8.0.
2022-11-04 10:01:08 +01:00
Ricardo Wurmus
a8f7afe2eb
gnu: r-cli: Update to 3.4.1.
...
* gnu/packages/cran.scm (r-cli): Update to 3.4.1.
2022-11-04 10:01:08 +01:00
Ricardo Wurmus
d80e644185
gnu: r-ggridges: Update to 0.5.4.
...
* gnu/packages/cran.scm (r-ggridges): Update to 0.5.4.
[propagated-inputs]: Remove r-plyr.
2022-11-04 10:01:08 +01:00
Ricardo Wurmus
39bbfde4dd
gnu: r-dtw: Update to 1.23-1.
...
* gnu/packages/cran.scm (r-dtw): Update to 1.23-1.
2022-11-04 10:01:08 +01:00
Ricardo Wurmus
8759fd469a
gnu: r-xts: Update to 0.12.2.
...
* gnu/packages/cran.scm (r-xts): Update to 0.12.2.
2022-11-04 10:01:08 +01:00
Ricardo Wurmus
a42a9931d6
gnu: r-smurf: Update to 1.1.3.
...
* gnu/packages/cran.scm (r-smurf): Update to 1.1.3.
2022-11-04 10:01:08 +01:00
Ricardo Wurmus
0091c4bee4
gnu: r-ucminf: Update to 1.1-4.1.
...
* gnu/packages/cran.scm (r-ucminf): Update to 1.1-4.1.
2022-11-04 10:01:08 +01:00
Ricardo Wurmus
1147d13c2b
gnu: r-stringdist: Update to 0.9.9.
...
* gnu/packages/cran.scm (r-stringdist): Update to 0.9.9.
2022-11-04 10:01:07 +01:00
Ricardo Wurmus
388795939b
gnu: r-recipes: Update to 1.0.2.
...
* gnu/packages/cran.scm (r-recipes): Update to 1.0.2.
2022-11-04 10:01:07 +01:00
Ricardo Wurmus
33160ec99a
gnu: r-psych: Update to 2.2.9.
...
* gnu/packages/cran.scm (r-psych): Update to 2.2.9.
2022-11-04 10:01:07 +01:00
Ricardo Wurmus
edfc9661f7
gnu: r-rmysql: Update to 0.10.24.
...
* gnu/packages/cran.scm (r-rmysql): Update to 0.10.24.
2022-11-04 10:01:07 +01:00
Ricardo Wurmus
31b161122c
gnu: r-timedate: Update to 4021.106.
...
* gnu/packages/cran.scm (r-timedate): Update to 4021.106.
2022-11-04 10:01:07 +01:00
Ricardo Wurmus
e17d8388ef
gnu: r-lava: Update to 1.7.0.
...
* gnu/packages/cran.scm (r-lava): Update to 1.7.0.
2022-11-04 10:01:07 +01:00
Ricardo Wurmus
43495bfdd7
gnu: r-lpsolve: Update to 5.6.17.
...
* gnu/packages/cran.scm (r-lpsolve): Update to 5.6.17.
2022-11-04 10:01:07 +01:00
Ricardo Wurmus
147b677f9c
gnu: r-pkgload: Update to 1.3.1.
...
* gnu/packages/cran.scm (r-pkgload): Update to 1.3.1.
2022-11-04 10:01:07 +01:00
Ricardo Wurmus
d517942bdd
gnu: r-ps: Update to 1.7.2.
...
* gnu/packages/cran.scm (r-ps): Update to 1.7.2.
2022-11-04 10:01:07 +01:00
Ricardo Wurmus
5a062d7004
gnu: r-paletteer: Update to 1.5.0.
...
* gnu/packages/cran.scm (r-paletteer): Update to 1.5.0.
2022-11-04 10:01:07 +01:00
Ricardo Wurmus
63265ec416
gnu: r-amap: Update to 0.8-19.
...
* gnu/packages/cran.scm (r-amap): Update to 0.8-19.
2022-11-04 10:01:07 +01:00
Ricardo Wurmus
455dde60c3
gnu: r-mapproj: Update to 1.2.9.
...
* gnu/packages/cran.scm (r-mapproj): Update to 1.2.9.
2022-11-04 10:01:07 +01:00
Ricardo Wurmus
72c23c8139
gnu: r-maps: Update to 3.4.1.
...
* gnu/packages/cran.scm (r-maps): Update to 3.4.1.
2022-11-04 10:01:06 +01:00
Ricardo Wurmus
68448c3e5f
gnu: r-mbess: Update to 4.9.2.
...
* gnu/packages/cran.scm (r-mbess): Update to 4.9.2.
2022-11-04 10:01:06 +01:00
Ricardo Wurmus
3ab86d3ee4
gnu: r-rstpm2: Update to 1.5.8.
...
* gnu/packages/cran.scm (r-rstpm2): Update to 1.5.8.
2022-11-04 10:01:06 +01:00
Ricardo Wurmus
70f519bcfb
gnu: r-curl: Update to 4.3.3.
...
* gnu/packages/cran.scm (r-curl): Update to 4.3.3.
2022-11-04 10:01:06 +01:00
Ricardo Wurmus
5e725bee3c
gnu: r-jsonlite: Update to 1.8.3.
...
* gnu/packages/cran.scm (r-jsonlite): Update to 1.8.3.
2022-11-04 10:01:06 +01:00
Ricardo Wurmus
022c69777c
gnu: r-vegan: Update to 2.6-4.
...
* gnu/packages/cran.scm (r-vegan): Update to 2.6-4.
2022-11-04 10:01:06 +01:00
Ricardo Wurmus
850c72034b
gnu: r-sys: Update to 3.4.1.
...
* gnu/packages/cran.scm (r-sys): Update to 3.4.1.
2022-11-04 10:01:06 +01:00
Ricardo Wurmus
eb14bfe02e
gnu: r-ga: Update to 3.2.3.
...
* gnu/packages/cran.scm (r-ga): Update to 3.2.3.
2022-11-04 10:01:06 +01:00
Ricardo Wurmus
384f203909
gnu: r-ggpmisc: Update to 0.5.1.
...
* gnu/packages/cran.scm (r-ggpmisc): Update to 0.5.1.
2022-11-04 10:01:06 +01:00
Ricardo Wurmus
f197b56e7a
gnu: r-ggpp: Update to 0.4.5.
...
* gnu/packages/cran.scm (r-ggpp): Update to 0.4.5.
2022-11-04 10:01:06 +01:00
Ricardo Wurmus
80a8b165f8
gnu: r-fontawesome: Update to 0.4.0.
...
* gnu/packages/cran.scm (r-fontawesome): Update to 0.4.0.
2022-11-04 10:01:06 +01:00
Ricardo Wurmus
34a4492c7b
gnu: r-dbscan: Update to 1.1-11.
...
* gnu/packages/cran.scm (r-dbscan): Update to 1.1-11.
2022-11-04 10:01:06 +01:00
Ricardo Wurmus
d0a0b5b989
gnu: r-datawizard: Update to 0.6.3.
...
* gnu/packages/cran.scm (r-datawizard): Update to 0.6.3.
2022-11-04 10:01:05 +01:00
Ricardo Wurmus
e3b8b3117c
gnu: r-collections: Update to 0.3.6.
...
* gnu/packages/cran.scm (r-collections): Update to 0.3.6.
2022-11-04 10:01:05 +01:00
Ricardo Wurmus
1b0fea29a0
gnu: r-dyngen: Update to 1.0.5.
...
* gnu/packages/bioinformatics.scm (r-dyngen): Update to 1.0.5.
2022-11-04 10:01:05 +01:00
Ricardo Wurmus
34b78bce57
gnu: r-valr: Update to 0.6.6.
...
* gnu/packages/bioconductor.scm (r-valr): Update to 0.6.6.
[propagated-inputs]: Add r-cli.
2022-11-04 10:01:05 +01:00
Ricardo Wurmus
987fd48c82
gnu: r-gstat: Update to 2.1-0.
...
* gnu/packages/cran.scm (r-gstat): Update to 2.1-0.
[propagated-inputs]: Add r-sf, r-sftime, and r-stars.
[description]: Reformat.
2022-11-04 10:01:05 +01:00
Ricardo Wurmus
20d86e2819
gnu: r-torch: Update to 0.9.0.
...
* gnu/packages/cran.scm (r-torch): Update to 0.9.0.
2022-11-04 10:01:05 +01:00
Ricardo Wurmus
2766235f30
gnu: liblantern: Update to 0.9.0.
...
* gnu/packages/machine-learning.scm (liblantern): Update to 0.9.0.
2022-11-04 10:01:05 +01:00
Ricardo Wurmus
90d7dd1967
gnu: python-pytorch-for-r-torch: Update to 1.12.1.
...
* gnu/packages/machine-learning.scm (python-pytorch-for-r-torch): Update to
1.12.1.
2022-11-04 10:01:05 +01:00
Ricardo Wurmus
b149f6c123
gnu: r-arrow: Update to 10.0.0.
...
* gnu/packages/cran.scm (r-arrow): Update to 10.0.0.
[propagated-inputs]: Add r-glue.
2022-11-04 10:01:05 +01:00
Ricardo Wurmus
2db2a92760
gnu: apache-arrow: Update to 10.0.0.
...
* gnu/packages/databases.scm (apache-arrow): Update to 10.0.0.
(python-pyarrow)[arguments]: Remove 'patch-cmake-variables phase; do not
bundle headers.
[propagated-inputs]: Do not use labels.
[native-inputs]: Remove labels.
2022-11-04 10:01:05 +01:00
Ricardo Wurmus
d206b29c29
gnu: apache-arrow: Do not use %build-inputs.
...
* gnu/packages/databases.scm (apache-arrow)[arguments]: Do not use
%build-inputs, bind inputs instead.
2022-11-04 10:01:05 +01:00
Ricardo Wurmus
d0b7ad1ce5
gnu: Add r-sftime.
...
* gnu/packages/cran.scm (r-sftime): New variable.
2022-11-04 10:01:04 +01:00
Ricardo Wurmus
71a0f7f542
gnu: Add r-ca.
...
* gnu/packages/cran.scm (r-ca): New variable.
2022-11-04 10:01:04 +01:00
Ontje Lünsdorf
41cb392544
gnu: Add paraview 5.9.1.
...
* gnu/packages/image-processing.scm (paraview-5.9): New variable.
Co-authored-by: Ricardo Wurmus <rekado@elephly.net >
2022-11-04 10:01:04 +01:00
Thiago Jung Bauermann
a75deb8844
system: image: Define correct docker image arch when cross building
...
Cross-building a docker image with:
$ guix system image --image-type=docker --target=aarch64-linux-gnu os.scm
results in an image where the architecture declared in its config.json is
the host architecture rather than the target one. The binaries are
correctly cross-compiled, so the image can be loaded and used despite the
warning message shown by docker:
$ docker load -i vcal7bvsqcijchifhqdvprpd1niqh8sk-docker-image.tar.gz
Loaded image: guix:latest
$ docker create guix:latest
WARNING: The requested image's platform (linux/amd64) does not match the
detected host platform (linux/arm64/v8) and no specific platform was
requested
40f06aa869ed690489c4a3824a7f7721bd4bf453b85f25ac7199266939fe2fba
$ echo $?
0
This is fixed by passing the correct triplet to the build-docker-image
function.
* gnu/system/image.scm (system-docker-image) Add ‘image-target’ variable.
[builder]: Pass ‘#:system’ argument to ‘build-docker-image’.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-11-04 08:46:11 +01:00
jgart
e3280ae8b5
gnu: vis: Update to 0.8.
...
* gnu/packages/text-editors.scm (vis): Update to 0.8.
[arguments]: Enable all tests.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-04 09:42:16 +08:00
Antero Mejr
31e46e71e0
gnu: Add uxn.
...
* gnu/packages/emulators.scm (uxn): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-11-04 09:38:43 +08:00
Vagrant Cascadian
bebbf3558f
gnu: Fix various case and whitespace issues in synopsis.
...
* gnu/packages/kodi.scm (fstrcmp)[synopsis]: Fix case.
* gnu/packages/lisp-xyz.scm (sbcl-cl-form-types)[synopsis]: Fix case.
* gnu/packages/machine-learning.scm (python-torchvision)[synopsis]: Remove
leading whitespace.
* gnu/packages/networking.scm (lcrq)[synopsis]: Fix case.
(lcsync)[synopsis]: Likewise.
* gnu/packages/ruby.scm (ruby-mustache)[synopsis]: Fix case.
2022-11-03 18:14:04 -07:00
Tobias Geerinckx-Rice
8315b70fe4
gnu: folly: Update to 2022.10.31.00.
...
* gnu/packages/cpp.scm (folly): Update to 2022.10.31.00.
2022-10-30 02:00:26 +01:00
Tobias Geerinckx-Rice
63d2348aaa
gnu: pam-mount: Use G-expressions.
...
* gnu/packages/admin.scm (pam-mount)[arguments]:
Rewrite as G-expressions.
2022-10-30 02:00:26 +01:00
Tobias Geerinckx-Rice
7174391cac
gnu: pam-mount: Remove input labels.
...
* gnu/packages/admin.scm (pam-mount)[inputs]:
Remove input labels.
[arguments]: Replace the 'fix-program-paths phase with a new
'patch-file-names one. Don't explicitly return #t from it.
2022-10-30 02:00:25 +01:00
Tobias Geerinckx-Rice
f3f0121ba0
gnu: pam-mount: Use HTTPS home page.
...
* gnu/packages/admin.scm (pam-mount)[home-page]:
Follow permanent (HTTPS) redirect.
2022-10-30 02:00:25 +01:00
Tobias Geerinckx-Rice
1cbc19413c
gnu: pam-mount, greetd-pam-mount: Rewrite descriptions.
...
* gnu/packages/admin.scm (pam-mount, greetd-pam-mount)[description]:
Edit for style.
2022-10-30 02:00:20 +01:00
Tobias Geerinckx-Rice
54a31641fd
gnu: steghide: Temper expectation.
...
* gnu/packages/image.scm (steghide)[synopsis, description]: Make clear
that it's two steps above rot13 on the srs bzns cryptography scale.
2022-10-30 02:00:19 +01:00
Tobias Geerinckx-Rice
168b946acd
gnu: steghide: Update package style.
...
* gnu/packages/image.scm (steghide)[arguments]:
Rewrite as G-expressions. Don't explicitly return #t from phases.
[native-inputs, inputs]: Remove input labels.
2022-10-30 02:00:19 +01:00
Vagrant Cascadian
75b538daf4
gnu: Fix various synopsis and description issues.
...
* gnu/packages/admin.scm (greetd-pam-mount)[synopsis]: Base synopsis on
pam-mount synopsis.
[description]: Use two spaces consistently.
(greetd)[synopsis]: Begin sentence with upper-case.
* gnu/packages/xdisorg.scm (wlsunset)[description]: Fix spelling and case of
wlsunsest.
* gnu/packages/mail.scm (libpst): Add synopsis.
* gnu/packages/networking.scm (librecast)[synopsis]: Update synopsis.
(lcrq)[description]: Use two spaces after sentences.
2022-11-03 15:43:18 -07:00
jgart via Guix-patches via
bbac6c5248
gnu: jo: Update to 1.9.
...
* gnu/packages/web.scm (jo): Update to 1.9.
[description]: Use @command{} mark-up.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-10-30 02:00:05 +01:00
Tobias Geerinckx-Rice
c58ff7ea2a
gnu: faudio: Update to 22.11.
...
* gnu/packages/audio.scm (faudio): Update to 22.11.
2022-10-30 02:00:04 +01:00
Tobias Geerinckx-Rice
b721bfe71e
gnu: knot: Update to 3.2.2.
...
* gnu/packages/dns.scm (knot): Update to 3.2.2.
[source]: Remove bundled libngtcp2.
2022-10-30 02:00:04 +01:00
Tobias Geerinckx-Rice
932a60812a
gnu: jgmenu: Update to 4.4.1.
...
* gnu/packages/xdisorg.scm (jgmenu): Update to 4.4.1.
[arguments]: Don't explicitly return #t from phases.
2022-10-30 02:00:04 +01:00
Tobias Geerinckx-Rice
bb453af580
gnu: jetring: Update to 0.31.
...
* gnu/packages/gnupg.scm (jetring): Update to 0.31.
[arguments]: Don't explicitly return #t from phases.
2022-10-30 02:00:03 +01:00
Tobias Geerinckx-Rice
a350ee803c
gnu: libngspice: Update to 38.
...
* gnu/packages/engineering.scm (libngspice): Update to 38.
2022-10-30 02:00:03 +01:00
Tobias Geerinckx-Rice
cc8cc4a821
gnu: inxi-minimal: Update to 3.3.23-1.
...
* gnu/packages/admin.scm (inxi-minimal): Update to 3.3.23-1.
2022-10-30 02:00:03 +01:00
Tobias Geerinckx-Rice
d5ca4c05ec
gnu: python-pyaudio: Update to 0.2.12.
...
* gnu/packages/audio.scm (python-pyaudio): Update to 0.2.12.
2022-10-30 02:00:02 +01:00
Marius Bakke
a9fe9b4684
gnu: ganeti-instance-guix: Update to 0.7.
...
* gnu/packages/virtualization.scm (ganeti-instance-guix): Update to 0.7.
[inputs]: Remove QEMU-MINIMAL. Add BTRFS-PROGS, E2FSPROGS, F2FS-TOOLS, LVM2,
MULTIPATH-TOOLS, PARTED, and XFSPROGS.
2022-11-03 20:00:31 +01:00
Marius Bakke
2017d424e0
gnu: drbd-utils: Update to 9.22.0.
...
* gnu/packages/cluster.scm (drbd-utils): Update to 9.22.0.
2022-11-03 20:00:31 +01:00
Marius Bakke
c552a7e737
gnu: ungoogled-chromium: Update to 107.0.5304.87-1.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 107.0.5304.87.
(%ungoogled-origin, ungoogled-chromium): Update hashes.
2022-11-03 20:00:31 +01:00
Marius Bakke
5a7e90975b
gnu: Open vSwitch: Update to 3.0.1.
...
* gnu/packages/networking.scm (openvswitch): Update to 3.0.1.
2022-11-03 20:00:31 +01:00
Marius Bakke
c1261b3a5d
file-systems: Gracefully handle EMEDIUMTYPE in 'read-partitions'.
...
* gnu/build/file-systems.scm (ENOENT-safe): Catch EMEDIUMTYPE and warn.
2022-11-03 20:00:31 +01:00
Marius Bakke
706f25f24d
services: ganeti: OS variants can be a directory.
...
* gnu/services/ganeti.scm (<ganeti-os>)[extension]: Default to #f.
(ganeti-os->directory): Only add extension if set. Support a file-like object
for VARIANTS.
* doc/guix.texi (Virtualization Services): Document this change and add
example. Update Ganeti URLs while at it.
2022-11-03 20:00:30 +01:00
Danny Milosavljevic
614a92cae8
gnu: nvc: Update to 1.7.2.
...
* gnu/packages/fpga.scm (nvc): Update to 1.7.2.
[inputs]: Add elfutils.
[home-page]: Modify.
2022-11-03 19:46:17 +01:00
jgart
9560932ce0
gnu: Add python-eris.
...
* gnu/packages/python-xyz.scm (python-eris): New variable.
2022-11-03 18:44:59 +01:00
Zhu Zihao
06d02b7a2c
gnu: upx: Update to 4.0.0.
...
* gnu/packages/compression.scm (upx): Update to 4.0.0.
[build-system]: Use cmake-build-system.
[arguments]: Remove all stale arguments.
* gnu/packages/patches/upx-CVE-2021-20285.patch: Delete.
* gnu/local.mk (dist_patch_DATA): Remove corresponding entry.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-03 18:36:22 +01:00
jgart
440a3e8d33
gnu: emacs-next: Update to 29.0.50-3.22e8a77.
...
* gnu/packages/emacs.scm (emacs-next): Update to 29.0.50-3.22e8a77.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-03 18:18:16 +01:00
Z572
fb28e900d4
gnu: ccls: Update to 0.20210330.
...
* gnu/packages/cpp.scm (ccls): Update to 0.20210330.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-03 18:17:52 +01:00
Michael Rohleder
318581c5fc
gnu: strawberry: Remove trailing #t from phases and snippet.
...
* gnu/packages/music.scm (strawberry)[arguments]<#:phases>: Remove trailing #t.
[snippet]: Likewise.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-03 18:17:07 +01:00
Michael Rohleder
7f75be7312
gnu: strawberry: Update to 1.0.10.
...
* gnu/packages/music.scm (strawberry): Update to 1.0.10.
[inputs]: Add gdk-pixbuf.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-03 18:16:50 +01:00
Timotej Lazar
0e392dc35c
gnu: endless-sky: Update to 0.9.16.1, use new package style.
...
* gnu/packages/games.scm (endless-sky): Update to 0.9.16.1.
[arguments]: Use G-expressions. Drop #:scons to use the default version.
[inputs]: Remove labels. Add util-linux:lib.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-03 18:08:58 +01:00
Timotej Lazar
fd83edf8a1
build-system/scons: Allow using a G-exp for scons-flags.
...
* guix/build-system/scons.scm (scons-build): Only call sexp->gexp on
scons-flags when scons-flags is a pair.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-03 18:08:55 +01:00
Christopher Baines
754f260753
gnu: gnome: Include aarch64 in librsvg-for-system.
...
As the current librsvg currently builds for aarch64-linux as well as
x86_64-linux.
* gnu/packages/gnome.scm (librsvg-for-system): Use librsvg for aarch64.
2022-11-03 17:39:45 +01:00
jgart
dde299df48
gnu: Add python-jsonalias.
...
* gnu/packages/python-xyz.scm (python-jsonalias): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-03 17:37:54 +01:00
jgart
2213089280
gnu: Add emacs-flymake-mypy.
...
* gnu/packages/emacs-xyz.scm (emacs-flymake-mypy): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-03 17:36:27 +01:00
jgart
d2cd7a4421
gnu: janet: Update to 1.25.1.
...
* gnu/packages/lisp.scm (janet): Update to 1.25.1.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-03 17:35:32 +01:00
EuAndreh
7bb3644dd0
doc: Change example for special-files-service-type.
...
Also update the default value given in the docs. Change the example since the
base system includes /usr/bin/env by default.
* doc/guix.texi (Base Services): Change the example for
special-files-service-type and update default.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-03 17:32:34 +01:00
Antero Mejr
7a4f858f39
etc: teams: Add help information for commands.
...
* etc/teams.scm.in (main): Add command information to usage help prompt.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-11-03 17:26:52 +01:00
Julien Lepiller
973dc4564e
gnu: josm: Udpate to 18583.
...
* gnu/packages/java.scm (josm): Update to 18583.
2022-11-03 15:12:04 +01:00
Julien Lepiller
10c82778ab
gnu: java-commons-jcs: Update to 3.1.
...
* gnu/packages/java.scm (java-commons-jcs): Update to 3.1.
(josm)[arguments]: Remove now unneeded phase.
2022-11-03 15:11:34 +01:00
Julien Lepiller
82d9fcd9b7
gnu: java-opening-hours-parser: Update to 0.27.0.
...
* gnu/packages/geo.scm (java-opening-hours-parser): Update to 0.27.0.
2022-11-03 15:11:32 +01:00
Julien Lepiller
622042110c
gnu: java-commons-compress: Update to 1.21.
...
* gnu/packages/java.scm (java-commons-compress): Update to 1.21.
(java-osgi-annotation, java-osgi-core): Create pom file and install from
it.
* gnu/packages/maven.scm (java-surefire-parent-pom): Fix pom fixing.
2022-11-03 15:11:30 +01:00
Julien Lepiller
eaf4441b62
gnu: Add java-asm-3.
...
* gnu/packages/java.scm (java-asm): New variable.
2022-11-03 15:11:28 +01:00
Julien Lepiller
cd7f674010
gnu: Add java-ow-util-ant-tasks.
...
* gnu/packages/java.scm (java-ow-util-ant-tasks): New variable.
2022-11-03 15:11:26 +01:00
Julien Lepiller
af82dbe2f9
gnu: Add java-zstd.
...
* gnu/packages/java.scm (java-zstd): New variable.
2022-11-03 15:11:25 +01:00
Julien Lepiller
b347ef494d
gnu: Add java-brotli.
...
* gnu/packages/compression.scm (java-brotli): New variable.
2022-11-03 15:11:20 +01:00
Sharlatan Hellseher
53c8cbb314
gnu: Add cl-hu.dwim.graphviz.
...
* gnu/packages/lisp-xyz.scm (ecl-hu.dwim.graphviz, cl-hu.dwim.graphviz,
sbcl-hu.dwim.graphviz): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-11-03 15:07:16 +01:00
Julien Lepiller
e2802132e3
gnu: dedukti: Update to 2.7.
...
* gnu/packages/ocaml.scm (dedukti): Update to 2.7.
2022-11-03 13:24:42 +01:00
Julien Lepiller
2e67329415
gnu: Remove emacs-dedukti-mode.
...
* gnu/packages/ocaml.scm (emacs-dedukti-mode): Delete variable.
2022-11-03 13:24:34 +01:00
Julien Lepiller
82da66971f
gnu: Remove emacs-flycheck-dedukti.
...
* gnu/packages/ocaml.scm (emacs-flycheck-dedukti): Delete variable.
2022-11-03 13:24:24 +01:00
Julien Lepiller
7c51514f07
gnu: ocaml-ssl: Update to 0.5.13.
...
* gnu/packages/ocaml.scm (ocaml-ssl): Update to 0.5.13.
2022-11-03 13:24:22 +01:00
Julien Lepiller
0e27aa1213
gnu: ocaml-ocp-index: Update to 1.3.4.
...
* gnu/packages/ocaml.scm (ocaml-ocp-index): Update to 1.3.4.
2022-11-03 13:24:19 +01:00
Julien Lepiller
c1cafe27a1
gnu: ocaml-digestif: Update to 1.1.3.
...
* gnu/packages/ocaml.scm (ocaml-digestif): Update to 1.1.3.
2022-11-03 13:24:17 +01:00
Julien Lepiller
0e1b544002
gnu: ocaml-fileutils: Update to 0.6.4.
...
* gnu/packages/ocaml.scm (ocaml-fileutils): Update to 0.6.4.
2022-11-03 13:24:14 +01:00
Julien Lepiller
ba179aa797
gnu: dune-bootstrap: Update to 3.5.0.
...
* gnu/packages/ocaml.scm (dune-bootstrap): Update to 3.5.0.
2022-11-03 13:23:49 +01:00
Pierre Neidhardt
058262eec4
gnu: sbcl: Remove obsolete fix-shared-library-makefile phase.
...
* gnu/packages/lisp.scm (sbcl)[arguments]: Remove phase since "cc" has been
replace by "CC" upstream.
2022-11-03 11:34:42 +01:00
Christopher Baines
e26b529b1a
gnu: coreutils: Disable the test-tls tests on the hurd.
...
These tests seem to lead to both consistent and inconsistent failures, so
marking them as XFAIL as is done with some other tests doesn't help. So this
commit means that they're skipped.
* gnu/packages/base.scm (coreutils)[arguments]: Disable the test-tls tests on
the hurd.
2022-11-02 21:38:55 +01:00
Efraim Flashner
db670af37d
gnu: openconnect-sso: Update to 0.8.0.
...
* gnu/packages/vpn.scm (openconnect-sso): Update to 0.8.0.
[source]: Download using git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments]: Don't skip tests. Remove custom 'check phase. Move custom
'wrap-qt-process-path phase to after 'check.
[inputs]: Add poetry.
[native-inputs]: Remove python-setuptools-scm. Add
python-pytest-asyncio, python-pytest-httpserver.
2022-11-02 19:34:37 +02:00
Guillaume Le Vaillant
6de705f259
gnu: isc-dhcp: Add grep input.
...
The grep program is required by the dhclient script.
* gnu/packages/admin.scm (isc-dhcp)[inputs]: Add grep.
[arguments]: Add grep to wrapping in 'post-install' phase.
2022-11-02 17:30:43 +01:00
Julien Lepiller
853b49c419
gnu: dovecot: Use standard mkdir-p/perms.
...
* gnu/services/mail.scm (%dovecot-activation): Use (gnu build utils).
2022-11-02 16:57:36 +01:00
Mathieu Othacehe
62a3756bd9
installer: Skip the backtrace page on user abort.
...
When the user aborts the installation because a core dump is discovered or the
installation command failed, displaying the abort backtrace doesn't make much
sense. Hide it when the abort condition is &user-abort-error and skip directly
to the dump page.
* gnu/installer/steps.scm (&user-abort-error): New variable.
(user-abort-error?): New procedure.
* gnu/installer/newt/final.scm (run-install-failed-page): Raise a
user-abort-error.
* gnu/installer/newt/welcome.scm (run-welcome-page): Ditto.
* gnu/installer.scm (installer-program): Hide the backtrace page and directly
propose to dump the report when the a &user-abort-error is raised.
2022-11-02 15:52:19 +01:00
Mathieu Othacehe
80387bc7c3
installer: Add core dump support.
...
Fixes: <https://issues.guix.gnu.org/58733 >
* gnu/installer.scm (installer-program): Enable core dump generation.
* gnu/installer/dump.scm (%core-dump): New variable.
(prepare-dump): Copy the core dump file.
* gnu/installer/newt/welcome.scm (run-welcome-page): Propose to report an
installation that previously generated a core dump.
2022-11-02 15:52:19 +01:00
Ricardo Wurmus
868a1e7f32
gnu: randomjungle: Use older gfortran.
...
* gnu/packages/machine-learning.scm (randomjungle)[native-inputs]: Use
gfortran-7.
2022-11-02 12:38:10 +01:00
Ricardo Wurmus
da5df7970f
gnu: randomjungle: Fix unpack by providing a conventional file name.
...
* gnu/packages/machine-learning.scm (randomjungle)[source]: Override file name
to avoid an unpack error.
2022-11-02 12:08:10 +01:00
Ricardo Wurmus
3fbe85366f
gnu: Add cgns.
...
* gnu/packages/engineering.scm (cgns): New variable.
Co-authored-by: Ontje Luensdorf <Ontje.Luensdorf@dlr.de >
2022-11-02 12:08:10 +01:00
Nicolas Goaziou
7e75269b8b
gnu: emacs-evil-traces: Update to 0.2.0.
...
* gnu/packages/emacs-xyz.scm (emacs-evil-traces): Update to 0.2.0.
[arguments]: Use G-expressions. Remove trailing #T.
[synopsis, description]: Rationalize emphasis and capitalization.
2022-11-02 09:26:36 +01:00
Vagrant Cascadian
faa03d1ace
gnu: Shorten package synopsis.
...
* gnu/packages/crates-io.scm (rust-inflections-1): Shorten
synopsis.
(rust-clap-conf-0.1): Likewise.
* gnu/packages/gtk.scm (volctl): Likewise.
* gnu/packages/haskell-xyz.scm (ghc-unliftio): Likewise.
* gnu/packages/kde-pim.scm (korganizer): Likewise.
* gnu/packages/kde.scm (kuserfeedback): Likewise.
* gnu/packages/pascal.scm (p2c): Likewise.
* gnu/packages/python-xyz.scm (python-ttystatus): Likewise.
* gnu/packages/qt.scm (qtwebplugin): Likewise.
2022-11-01 22:08:43 -07:00
Leo Famulari
2fde8cf399
gnu: linux-libre: Add linux-libre 6.0.6.
...
* gnu/packages/linux.scm (linux-libre-6.0-version,
linux-libre-6.0-pristine-source, linux-libre-6.0-source,
linux-libre-headers-6.0, linux-libre-6.0): New variables.
* gnu/packages/aux-files/linux-libre/6.0-arm.conf,
gnu/packages/aux-files/linux-libre/6.0-arm64.conf,
gnu/packages/aux-files/linux-libre/6.0-i686.conf,
gnu/packages/aux-files/linux-libre/6.0-x86_64.conf: New files.
* Makefile.am (AUX_FILES): Add them.
2022-11-02 01:01:51 -04:00
Maxim Cournoyer
c6d9492009
gnu: Add python-autoflake8.
...
* gnu/packages/python-xyz.scm (python-autoflake8): New variable.
2022-11-01 23:48:28 -04:00
Nicolas Goaziou
314b436fe6
gnu: emacs-compat: Update to 28.1.2.2.
...
* gnu/packages/emacs-xyz.scm (emacs-compat): Update to 28.1.2.2.
2022-11-01 22:47:39 +01:00
Nicolas Goaziou
994b9fa07a
gnu: emacs-dockerfile-mode: Update to 1.8.
...
* gnu/packages/emacs-xyz.scm (emacs-dockerfile-mode): Update to 1.8.
2022-11-01 22:47:39 +01:00
Nicolas Goaziou
2c6a6f8743
gnu: emacs-skempo: Update to 0.2.2.
...
* gnu/packages/emacs-xyz.scm (emacs-skempo): Update to 0.2.2.
2022-11-01 22:47:39 +01:00
Nicolas Goaziou
b74cd58692
gnu: emacs-mct: Update to 0.5.1.
...
* gnu/packages/emacs-xyz.scm (emacs-mct): Update to 0.5.1.
2022-11-01 22:47:38 +01:00
Nicolas Goaziou
4931af898e
gnu: emacs-consult-lsp: Update to 1.1.
...
* gnu/packages/emacs-xyz.scm (emacs-consult-lsp): Update to 1.1.
[synopsis]: Use proper capitalization.
2022-11-01 22:47:38 +01:00
Nicolas Goaziou
ffd804b959
gnu: fet: Update to 6.7.0.
...
* gnu/packages/education.scm (fet): Update to 6.7.0.
2022-11-01 22:47:38 +01:00
Nicolas Goaziou
0b8fd1ba8a
gnu: giac: Update to 1.9.0-27.
...
* gnu/packages/algebra.scm (giac): Update to 1.9.0-27.
2022-11-01 22:47:37 +01:00
Maxim Cournoyer
d0917d7782
gnu: Add python-zope-sqlalchemy.
...
* gnu/packages/python-web.scm (python-zope-sqlalchemy): New variable.
2022-11-01 14:17:28 -04:00
Efraim Flashner
088962f3c2
gnu: ncdu-2: Update to 2.2.1.
...
* gnu/packages/ncdu.scm (ncdu-2): Update to 2.2.1.
2022-11-01 19:03:31 +02:00
Tobias Geerinckx-Rice
24f0c34ccb
gnu: openssl: Update to 1.1.1s.
...
* gnu/packages/tls.scm (openssl): Update to 1.1.1s.
2022-10-30 02:00:00 +01:00
Maxim Cournoyer
0b709b1471
gnu: python-keyring: Update to 23.9.3.
...
* gnu/packages/python-crypto.scm (python-keyring): Update to 23.9.3.
[origin]: Fix indentation.
[build-system]: Use pyproject-build-system.
[test-flags]: New argument.
[phases]: Remove check phase. Add workaround-test-failure phase.
[native-inputs]: Remove python-setuptools.
[propagated-inputs]: Add python-importlib-metadata and python-jaraco-classes.
2022-11-01 12:07:12 -04:00
Tobias Geerinckx-Rice
e0b9cd7cc1
gnu: openssl: Update to 3.0.7 [fixes CVE-2022-3786, CVE-2022-3602].
...
* gnu/packages/tls.scm (openssl): Update to 3.0.7.
2022-10-30 02:00:00 +01:00
(
807bfe55dc
doc: contributing: Use proper subsections.
...
* doc/contributing.texi ("Submitting Patches")
["Sending a Patch Series", "Teams"]: Convert to numbered subsections.
Add nodes.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-11-01 13:53:59 +01:00
Nicolas Goaziou
f151a729bf
gnu: emacs-consult-notmuch: Update to 0.8.
...
* gnu/packages/emacs-xyz.scm (emacs-consult-notmuch): Update to 0.8.
[description]: Use proper capitalization.
2022-11-01 09:53:53 +01:00
Nicolas Goaziou
b5238238a9
gnu: Merge EMACS-JANPATH-EVIL-NUMBERS and EMACS-EVIL-NUMBERS.
...
* gnu/packages/emacs-xyz.scm (emacs-evil-numbers): Use
EMACS-JANPATH-EVIL-NUMBERS definition.
(emacs-janpath-evil-numbers): Deprecate package.
Both packages are fork of the same project, the latter being unmaintained.
2022-11-01 09:53:52 +01:00
Nicolas Goaziou
f937885311
gnu: emacs-janpath-evil-numbers: Activate tests.
...
* gnu/packages/emacs-xyz.scm (emacs-janpath-evil-numbers)[arguments]: Activate
tests.
[native-inputs]: Add EMACS-ERT-RUNNER.
2022-11-01 09:53:52 +01:00
Nicolas Goaziou
693509685c
gnu: emacs-janpath-evil-numbers: Update to 0.7.
...
* gnu/packages/emacs-xyz.scm (emacs-janpath-evil-numbers): Update to 0.6.
[source]<origin>: Update upstream URL.
[home-page]: Update URL.
2022-11-01 09:53:52 +01:00
jgart
c62fc6b333
gnu: emacs-alarm-clock: Update to 1.0.3.
...
* gnu/packages/emacs-xyz.scm (emacs-alarm-clock): Update to 1.0.3.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-11-01 09:53:51 +01:00
Vagrant Cascadian
15ff5eebb6
gnu: Fix various lint issues in synopsis and descriptions.
...
* gnu/packages/android.scm (etc1tool)[synopsis]: Drop trailing period.
* gnu/packages/bioinformatics.scm (mudskipper)[synopsis]: Likewise.
* gnu/packages/crates-io.scm (rust-async-log-attributes-1)[synopsis]: Likewise.
(rust-atomic-polyfill-1)[synopsis]: Likewise.
(rust-modifier-0.1)[synopsis]: Likewise.
(rust-openssl-macros-0.1)[synopsis]: Likewise.
(rust-syn-mid-0.5)[synopsis]: Likewise.
(rust-toml-edit-0.14)[synopsis]: Likewise.
(rust-valuable-derive-0.1)[synopsis]: Likewise.
(rust-inflections-1)[synopsis]: Likewise.
* gnu/packages/databases.scm (python-databases)[synopsis]: Likewise.
* gnu/packages/games.scm (liquidwar6)[synopsis]: Likewise.
* gnu/packages/golang.scm (go-golang.org-x-sync-errgroup)[synopsis]: Likewise.
* gnu/packages/guile-xyz.scm (guile-config)[synopsis]: Likewise.
* gnu/packages/haskell-web.scm (ghc-hxt-xpath)[synopsis]: Likewise.
* gnu/packages/haskell-xyz.scm (ghc-string-qq)[synopsis]: Likewise.
* gnu/packages/machine-learning.scm (python-lap)[synopsis]: Likewise.
(python-pyro-api)[synopsis]: Likewise.
* gnu/packages/messaging.scm (python-librecaptcha)[synopsis]: Likewise.
* gnu/packages/python-check.scm (python-pytest-cram)[synopsis]: Likewise.
* gnu/packages/python-web.scm (python-jschema-to-python)[synopsis]: Likewise.
(python-sarif-om)[synopsis]: Likewise.
(python-socksio)[synopsis]: Likewise.
(python-msrest)[synopsis]: Likewise.
* gnu/packages/tor.scm (torsocks)[synopsis]: Likewise.
* gnu/packages/cran.scm (r-rlist)[synopsis]: Remove leading article.
* gnu/packages/crates-io.scm (rust-clippy-lints-0.0.153)[synopsis]: Likewise.
(rust-simplelog-0.11)[synopsis]: Likewise.
* gnu/packages/samba.scm (wsdd)[synopsis]: Likewise.
* gnu/packages/crates-io.scm (rust-spki-0.4)[synopsis]: Remove trailing
whitespace.
* gnu/packages/golang.scm (go-github-com-mattn-go-zglob)[description]: Remove
leading whitespace.
* gnu/packages/haskell-check.scm (ghc-crypto-cipher-tests)[description]:
Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-ctype)[synopsis]: Remove trailing
whitespace.
* gnu/packages/mpi.scm (openmpi-thread-multiple)[description]: Remove leading
whitespace.
* gnu/packages/node-xyz.scm (node-string-decoder)[synopsis]: Remove trailing
whitespace.
2022-10-31 18:13:48 -07:00
Nicolas Goaziou
41a5720be9
gnu: emacs-lice-el: Improve package style.
...
* gnu/packages/emacs-xyz.scm (emacs-lice-el)[arguments]: Use G-expressions.
<#:include>: Add "template" directory instead of installing files manually.
<#:phases>: Use ELPA-DIRECTORY. Remove trailing #T.
2022-11-01 00:46:31 +01:00
Nicolas Goaziou
7fd9c40f60
gnu: emacs-lice-el: Update to 0.3.
...
* gnu/packages/emacs-xyz.scm (emacs-lice-el): Update to 0.3.
2022-11-01 00:46:31 +01:00
Tobias Geerinckx-Rice
bbf9adf525
gnu: ntfs-3g: Update to 2022.10.3 [security fixes].
...
* gnu/packages/linux.scm (ntfs-3g): Update to 2022.10.3.
[source]: Don't explicitly return #t from snippet.
[arguments]: Don't explicitly return #t from phases.
2022-10-30 02:00:00 +01:00
Tobias Geerinckx-Rice
c11f585366
gnu: netdiscover: Update to 0.10.
...
* gnu/packages/networking.scm (netdiscover): Update to 0.10.
2022-10-30 02:00:00 +01:00
Nicolas Goaziou
96387f01b6
gnu: emacs-denote: Update to 1.1.0.
...
* gnu/packages/emacs-xyz.scm (emacs-denote): Update to 1.1.0.
2022-11-01 00:14:26 +01:00
Nicolas Goaziou
ff512401c3
gnu: emacs-detached: Improve package style.
...
* gnu/packages/emacs-xyz.scm (emacs-detached)[arguments]<#:phases>: Remove
unnecessary call to MAKE-FILE-WRITABLE.
[synopsis]: Do not start with an article.
[description]: Use proper capitalization.
2022-11-01 00:11:25 +01:00
Nicolas Goaziou
f9ac8b7666
gnu: emacs-detached: Update to 0.9.1.
...
* gnu/packages/emacs-xyz.scm (emacs-detached): Update to 0.9.1.
2022-11-01 00:10:18 +01:00
Nicolas Goaziou
58e9e52972
gnu: emacs-corfu-terminal: Update to 0.5.
...
* gnu/packages/emacs-xyz.scm (emacs-corfu-terminal): Update to 0.5.
2022-11-01 00:06:44 +01:00
Nicolas Goaziou
8400c26cb5
gnu: emacs-popon: Update to 0.11.
...
* gnu/packages/emacs-xyz.scm (emacs-popon): Update to 0.11.
2022-11-01 00:06:43 +01:00
Nicolas Goaziou
78a517b439
gnu: emacs-pulsar: Update to 0.5.0.
...
* gnu/packages/emacs-xyz.scm (emacs-pulsar): Update to 0.5.0.
2022-11-01 00:01:17 +01:00
Nicolas Goaziou
a66b2f432f
gnu: emacs-logos: Update to 1.0.0.
...
* gnu/packages/emacs-xyz.scm (emacs-logos): Update to 1.0.0.
2022-10-31 23:59:29 +01:00
Nicolas Goaziou
70802fde66
gnu: emacs-prodigy-el: Rename to EMACS-PRODIGY.
...
* gnu/packages/emacs-xyz.scm (emacs-prodigy): Renamed from EMACS-PRODIGY-EL.
(emacs-prodigy-el): Deprecate package.
2022-10-31 23:55:40 +01:00
Nicolas Goaziou
7cbd32d2fc
gnu: emacs-prodigy-el: Update to 1.0.0.
...
* gnu/packages/emacs-xyz.scm (emacs-prodigy-el): Update to 1.0.0.
[propagated-inputs]: Reorder alphabetically.
2022-10-31 23:53:56 +01:00
Nicolas Goaziou
83f65cd1b3
gnu: emacs-lin: Update to 1.0.0.
...
* gnu/packages/emacs-xyz.scm (emacs-lin): Update to 1.0.0.
2022-10-31 23:50:07 +01:00
Nicolas Goaziou
1a734947bc
gnu: emacs-flycheck-cpplint: Update to 1.0.2.
...
* gnu/packages/emacs-xyz.scm (emacs-flycheck-cpplint): Update to 1.0.2.
2022-10-31 23:34:47 +01:00
Nicolas Goaziou
c8140c7230
gnu: mame: Update to 0.249.
...
* gnu/packages/emulators.scm (mame): Update to 0.249.
2022-10-31 23:29:39 +01:00
Tobias Geerinckx-Rice
08d60c8691
gnu: dehydrated: Don't rely on implicit input labels.
...
* gnu/packages/tls.scm (dehydrated)[arguments]:
Use SEARCH-INPUT-FILE instead of ASSOC-REF.
2022-10-30 02:00:01 +01:00
Tobias Geerinckx-Rice
c744992715
gnu: dehydrated: Update to 0.7.1.
...
It's a Halloween miracle.
* gnu/packages/tls.scm (dehydrated): Update to 0.7.1.
[inputs]: Add util-linux+udev.
2022-10-30 02:00:01 +01:00
Tobias Geerinckx-Rice
a7f7079b47
gnu: yt-dlp: Update to 2022.10.04.
...
* gnu/packages/video.scm (yt-dlp): Update to 2022.10.04.
2022-10-30 02:00:01 +01:00
Mădălin Ionel Patrașcu
49b696cb58
gnu: Add r-airpart.
...
* gnu/packages/bioconductor.scm (r-airpart): New variable.
2022-10-31 20:20:21 +01:00
Mădălin Ionel Patrașcu
3d16f748fb
gnu: Add r-smurf.
...
* gnu/packages/cran.scm (r-smurf): New variable.
2022-10-31 20:20:21 +01:00
Ricardo Wurmus
22aee82046
gnu: r-forestplot: Update to 3.1.0.
...
* gnu/packages/cran.scm (r-forestplot): Update to 3.1.0.
[propagated-inputs]: Remove r-magrittr; add r-abind.
2022-10-31 20:14:56 +01:00
Mădălin Ionel Patrașcu
a4c738f40f
gnu: Add r-catdata.
...
* gnu/packages/cran.scm (r-catdata): New variable.
2022-10-31 20:12:27 +01:00
Mădălin Ionel Patrașcu
72315072d6
gnu: Add r-forestplot.
...
* gnu/packages/cran.scm (r-forestplot): New variable.
2022-10-31 20:10:19 +01:00
Mădălin Ionel Patrașcu
6e0361d035
gnu: Add r-decontam.
...
* gnu/packages/bioconductor.scm (r-decontam): New variable.
2022-10-31 20:00:17 +01:00
Mădălin Ionel Patrașcu
fc27bf5d74
gnu: Add r-deconrnaseq.
...
* gnu/packages/bioconductor.scm (r-deconrnaseq): New variable.
2022-10-31 19:59:30 +01:00
Mădălin Ionel Patrașcu
ae94d879a1
gnu: Add r-decomptumor2sig.
...
* gnu/packages/bioconductor.scm (r-decomptumor2sig): New variable.
2022-10-31 19:59:01 +01:00
Mădălin Ionel Patrașcu
a8631c816d
gnu: Add r-decomplexdisease.
...
* gnu/packages/bioconductor.scm (r-decomplexdisease): New variable.
2022-10-31 19:58:32 +01:00
Mădălin Ionel Patrașcu
41461b6e22
gnu: Add r-deco.
...
* gnu/packages/bioconductor.scm (r-deco): New variable.
2022-10-31 19:57:53 +01:00
Ricardo Wurmus
22c8783dff
gnu: Add ghc-6.10.
...
* gnu/packages/haskell.scm (ghc-6.10): New variable.
2022-10-31 19:51:40 +01:00
Ricardo Wurmus
26e1f3ec9a
gnu: ghc-6.6: Patch more references to /bin/sh.
...
* gnu/packages/haskell.scm (ghc-6.6)[arguments]: Patch references to /bin/sh
in Cabal and process internals.
2022-10-31 19:51:36 +01:00
Denis 'GNUtoo' Carikli
eaaba9d62c
gnu: Add wipe.
...
* gnu/packages/disk.scm (wipe): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-31 11:42:25 -04:00
jgart
5da8e1e6e5
gnu: Add cl-airship-scheme.
...
* gnu/packages/scheme.scm (cl-airship-scheme, sbcl-airship-scheme): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-31 16:01:12 +01:00
jgart
2bff470920
gnu: Add cl-zr-utils.
...
* gnu/packages/lisp-xyz.scm (cl-zr-utils, ecl-zr-utils, sbcl-zr-utils): New
variables.
Co-authored-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-31 16:01:12 +01:00
Guillaume Le Vaillant
39816716c3
gnu: stumpwm: Update to 22.05-1.ff6cb73.
...
* gnu/packages/wm.scm (stumpwm): Update to 22.05-1.ff6cb73.
2022-10-31 16:01:12 +01:00
Guillaume Le Vaillant
1eee671d7d
gnu: sbcl: Update to 2.2.10.
...
* gnu/packages/lisp.scm (sbcl): Update to 2.2.10.
[arguments]: Remove obsolete fix from 'build-doc' phase.
2022-10-31 16:01:12 +01:00
Mehmet Tekman
e90e47c00a
gnu: Add x11vnc.
...
* gnu/packages/vnc.scm (x11vnc): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-31 09:48:50 -04:00
Nicolas Goaziou
61c002930e
gnu: silkaj: Update to 0.10.0.
...
* gnu/packages/finance.scm (silkaj): Update to 0.10.0.
[build-system]: Use PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove it.
[native-inputs]: Add PYTHON-POETRY-CORE.
[inputs]: Remove input labels. Remove PYTHON-PYNACL. Add PYTHON-PENDULUM.
[description]: Do not overemphasize project name.
2022-10-31 14:21:48 +01:00
Peter Polidoro
0f902e6a9e
gnu: kicad: Update to 6.0.8.
...
* gnu/packages/engineering.scm (kicad): Update to 6.0.8.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-31 12:57:23 +01:00
jgart
c9fb08a2b1
gnu: Add emacs-hare-mode.
...
* gnu/packages/emacs-xyz.scm (emacs-hare-mode): New variable.
Co-authored-by: ( <paren@disroot.org >
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-31 12:18:06 +01:00
Nicolas Goaziou
a618505eeb
gnu: emacs-pyim: Update to 5.2.7.
...
* gnu/packages/emacs-xyz.scm (emacs-pyim): Update to 5.2.7.
2022-10-31 12:18:06 +01:00
Nicolas Goaziou
2b2564c0d8
gnu: emacs-mint-mode: Remove unnecessary #:INCLUDE.
...
* gnu/packages/emacs-xyz.scm (emacs-mint-mode)[arguments]: Remove it.
Upstream provides no ".txt" and ".el" files are matched in %DEFAULT-INCLUDE.
2022-10-31 12:18:06 +01:00
jgart
7c25c94a27
gnu: emacs-mint-mode: Update to 2.0.0.
...
* gnu/packages/emacs-xyz.scm (emacs-mint-mode): Update to 2.0.0.
[description]: Update description for accuracy with current version.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-31 12:18:05 +01:00
Mathieu Othacehe
ab974ed709
installer: parted: Retry failing read-partition-uuid call.
...
Fixes: <https://issues.guix.gnu.org/53541 >.
* gnu/installer/parted.scm (read-partition-uuid/retry): New procedure.
(check-user-partitions): Use it.
2022-10-31 09:34:13 +01:00
Efraim Flashner
5197b07e0e
gnu: mpv-mpris: Update to 0.9.
...
* gnu/packages/video.scm (mpv-mpris): Update to 0.9.
2022-10-31 08:12:44 +02:00
(unmatched-parenthesis
c3f391376b
* gnu/packages/golang.scm (notmuch-fixtures): New variable here...
...
(go-github-com-zenhack-go-notmuch): ...and here.
Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name >
2022-10-31 02:09:30 -04:00
Tobias Geerinckx-Rice
044985f5f9
gnu: jo: Update to 1.7.
...
* gnu/packages/web.scm (jo): Update to 1.7.
2022-10-23 02:00:00 +02:00
Tobias Geerinckx-Rice
128f3cf8a4
gnu: hamlib: Fix inputs.
...
* gnu/packages/radio.scm (hamlib)[native-inputs]: Move lua and tcl…
[inputs]: …here. Add python.
2022-10-23 02:00:00 +02:00
Tobias Geerinckx-Rice
fad1165fdb
gnu: hamlib: Rebuild broken configure script.
...
* gnu/packages/radio.scm (hamlib)[native-inputs]: Add autoconf, automake, and libtool.
[arguments]: Add a new 'force-bootstrap phase.
2022-10-23 02:00:00 +02:00
Tobias Geerinckx-Rice
157db85f6d
gnu: sdrangel: Don't detect CPU extensions at build time.
...
* gnu/packages/radio.scm (sdrangel)[arguments]:
Add a new 'fix-CPU-extension-detection phase.
2022-10-23 02:00:00 +02:00
Christopher Baines
1f29136e25
gnu: tar: Add chained renames and Directory to hurd skipped tests.
...
* gnu/packages/base.scm (tar)[arguments]: Include chained renames and
Directory in the tests skipped for when building for the hurd.
2022-10-30 20:53:06 +00:00
Christopher Baines
8b8430c0ad
gnu: diffutils: Add large-subopt to XFAIL_TESTS for the hurd.
...
* gnu/packages/base.scm (diffutils)[arguments]: Add large-subopt to
XFAIL_TESTS for the hurd.
2022-10-30 20:52:24 +00:00
Christopher Baines
2b21d60a94
gnu: coreutils: Remove test-tls from XFAIL_TESTS for the hurd.
...
As this test passes.
* gnu/packages/base.scm (coreutils)[arguments]: Remove test-tls from
XFAIL_TESTS for the hurd.
2022-10-30 20:51:26 +00:00
Leo Famulari
5b87c7c1d2
gnu: linux-libre 4.9: Update to 4.9.331.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.331.
(linux-libre-4.9-pristine-source): Update hash.
2022-10-30 14:57:19 -04:00
Leo Famulari
325326f516
gnu: linux-libre 4.14: Update to 4.14.296.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.296.
(linux-libre-4.14-pristine-source): Update hash.
2022-10-30 14:57:19 -04:00
Leo Famulari
1be537bf3d
gnu: linux-libre 4.19: Update to 4.19.262.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.262.
(linux-libre-4.19-pristine-source): Update hash.
2022-10-30 14:57:19 -04:00
Leo Famulari
33bf1e1fed
gnu: linux-libre 5.4: Update to 5.4.221.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.221.
(linux-libre-5.4-pristine-source): Update hash.
2022-10-30 14:57:19 -04:00
Leo Famulari
41d24c88ec
gnu: linux-libre 5.10: Update to 5.10.152.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.152.
(linux-libre-5.10-pristine-source): Update hash.
2022-10-30 14:57:19 -04:00
Leo Famulari
78602aae4e
gnu: linux-libre 5.15: Update to 5.15.76.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.76.
(linux-libre-5.15-pristine-source): Update hash.
2022-10-30 14:57:08 -04:00
jgart
9eabe0e1fd
gnu: Add emacs-flymake-collection.
...
* gnu/packages/emacs-xyz.scm (emacs-flymake-collection): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-30 10:54:01 +01:00
Nicolas Goaziou
631105947f
gnu: emacs-plz: Remove unnecessary call to MAKE-FILE-WRITABLE.
...
* gnu/packages/emacs-xyz.scm (emacs-plz)[arguments]: Remove unnecessary
MAKE-FILE-WRITABLE call.
2022-10-30 10:37:01 +01:00
Michael Rohleder
5b8b38d33a
gnu: emacs-plz: Patch path to curl.
...
* gnu/packages/emacs-xyz.scm (emacs-plz)[arguments]: Add phase substitute-curl-path.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-30 10:34:57 +01:00
Nicolas Goaziou
2727cebef3
gnu: emacs-mentor: Update to 0.5.
...
* gnu/packages/emacs-xyz.scm (emacs-mentor): Update to 0.5.
2022-10-30 10:27:54 +01:00
Nicolas Goaziou
3684d9c119
gnu: wireshark: Update to 4.0.1.
...
* gnu/packages/networking.scm (wireshark): Update to 4.0.1.
2022-10-30 10:23:46 +01:00
Nicolas Goaziou
dc06ddee2e
gnu: keepassxc: Update to 2.7.4.
...
* gnu/packages/password-utils.scm (keepassxc): Update to 2.7.4.
2022-10-30 10:20:50 +01:00
Efraim Flashner
87727b6dcb
gnu: vim: Update to 9.0.0820.
...
* gnu/packages/vim.scm (vim): Update to 9.0.0820.
2022-10-30 09:57:49 +02:00
Efraim Flashner
2facc0eb37
gnu: vim: Patch another '/bin/sh' shebang.
...
* gnu/packages/vim.scm (vim)[arguments]: Adjust custom phase
'patch-absolute-paths to use absolute value when checking for custom
cscope command.
2022-10-30 09:57:46 +02:00
Tobias Geerinckx-Rice
63bf060138
gnu: nginx-documentation: Update to 1.23.1-2898-0b7e004b5061.
...
* gnu/packages/web.scm (nginx-documentation): Update to 1.23.1-2898-0b7e004b5061.
2022-10-23 02:00:27 +02:00
Tobias Geerinckx-Rice
a63f8b89cf
gnu: nginx: Update to 1.23.2.
...
* gnu/packages/web.scm (nginx): Update to 1.23.2.
2022-10-23 02:00:26 +02:00
Tobias Geerinckx-Rice
d03bd43f46
gnu: pgloader: Update to 3.6.9.
...
* gnu/packages/databases.scm (pgloader): Update to 3.6.9.
2022-10-23 02:00:26 +02:00
Tobias Geerinckx-Rice
068f1a1905
etc: systemd services shouldn't ‘RemainAfterExit’.
...
* etc/guix-daemon.service.in (RemainAfterExit): Don't.
* etc/guix-publish.service.in (RemainAfterExit): Likewise don't.
2022-10-23 02:00:26 +02:00
Tobias Geerinckx-Rice
0f6ec662f6
etc: Add ‘Restart=always’ to both systemd services.
...
* etc/guix-daemon.service.in (Restart): ‘Always’ do.
* etc/guix-publish.service.in (Restart): Likewise.
2022-10-23 02:00:25 +02:00
Tobias Geerinckx-Rice
f16d91295a
etc: Add ‘OOMPolicy=continue’ to guix-daemon.service.
...
* etc/guix-daemon.service.in (OOMPolicy): Continue.
2022-10-23 02:00:00 +02:00
Tobias Geerinckx-Rice
086b63b0a9
gnu: libgphoto2: Update to 2.5.30.
...
* gnu/packages/photo.scm (libgphoto2): Update to 2.5.30.
2022-10-23 02:00:00 +02:00
Tobias Geerinckx-Rice
754a6ea6f2
gnu: rsync: Update to 3.2.7.
...
* gnu/packages/rsync.scm (rsync): Update to 3.2.7.
2022-10-23 02:00:00 +02:00
Nicolas Goaziou
adeecacde9
gnu: helm: Improve package style.
...
* gnu/packages/music.scm (helm)[arguments]: Use G-expressions. Remove trailing #T from phases.
[inputs]: Remove labels. Sort alphabetically.
[native-inputs]: Sort alphabetically.
2022-10-29 23:52:15 +02:00
Sughosha via Guix-patches via
6db22e5262
gnu: helm: fix not finding Factory Presets
...
* gnu/packages/music.scm (helm): Fix not finding Factory Presets.
This change fixes hardcoded paths so that Factory Presets can be found.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-29 23:52:15 +02:00
Aleksandr Vityazev
d231651696
gnu: emacs-tmr: Update arguments and license.
...
* gnu/packages/emacs-xyz.scm (emacs-trm): [arguments]:
Rename PATCH-FFPLAY phase to PATCH-PATHS and substitute
TMR-SOUND-FILE variable. Add MAKEINFO phase;
[inputs]: Add SOUND-THEME-FREEDESKTOP;
[license]: Add fdl1.3+;
[use-modules]: Add (gnu packages libcanberra).
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-29 23:52:15 +02:00
(
9ffeec668e
gnu: wesnoth: Update to 1.16.6.
...
* gnu/packages/games.scm (wesnoth): Update to 1.16.6.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-29 23:52:14 +02:00
Tobias Geerinckx-Rice
34e6c5d428
gnu: rapidjson: Fix powerpc64le-linux build.
...
…by avoiding ‘-march=native’, which is an unnecessary risk even if the
result is not installed.
* gnu/packages/web.scm (rapidjson)[arguments]: Replace the outdated
'patch-aarch-march-detection phase with an unconditional
'fix-march=native one.
2022-10-23 02:00:15 +02:00
Tobias Geerinckx-Rice
04ec2a15b9
gnu: dehydrated: ‘Build’ reproducibly.
...
* gnu/packages/tls.scm (dehydrated)[arguments]: Invoke gzip with ‘-n’.
2022-10-23 02:00:15 +02:00
Tobias Geerinckx-Rice
4f5e87f751
gnu: dehydrated: Use G-expressions.
...
* gnu/packages/tls.scm (dehydrated)[arguments]:
Rewrite as G-expressions.
2022-10-23 02:00:15 +02:00
Tobias Geerinckx-Rice
019be3f652
gnu: dehydrated: Update to 0.7.0-0.6fb8eba.
...
* gnu/packages/tls.scm (dehydrated): Update to 0.7.0-0.6fb8eba.
[source]: Use GIT-FETCH & GIT-FILE-NAME.
[arguments]: Adjust accordingly. Don't explicitly return #t from phases.
[native-inputs]: Remove tar.
2022-10-23 02:00:15 +02:00
Tobias Geerinckx-Rice
6e7102c5f7
gnu: pinentry-tty: Update to 1.2.1.
...
* gnu/packages/gnupg.scm (pinentry-tty): Update to 1.2.1.
2022-10-23 02:00:15 +02:00
Tobias Geerinckx-Rice
69521e7adc
gnu: goffice: Update to 0.10.53.
...
* gnu/packages/gnome.scm (goffice): Update to 0.10.53.
2022-10-23 02:00:15 +02:00
Tobias Geerinckx-Rice
4674eb5718
gnu: memtest86+: Build reproducibly.
...
* gnu/packages/hardware.scm (memtest86+)[source]: Add patch.
* gnu/packages/patches/memtest86+-build-reproducibly.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
2022-10-23 02:00:15 +02:00
Guillaume Le Vaillant
1ea1fa96fe
gnu: Add ndppd.
...
* gnu/packages/admin.scm (ndppd): New variable.
2022-10-29 13:58:45 +02:00
Nicolas Goaziou
db3c80e8ab
gnu: emacs-nano-modeline: Update to 0.7.2.
...
* gnu/packages/emacs-xyz.scm (emacs-nano-modeline): Update to 0.7.2.
2022-10-29 10:46:21 +02:00
Christopher Baines
e4fcb6d1b3
gnu: guix-build-coordinator: Update to 0-68.3768aec.
...
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-68.3768aec.
2022-10-29 09:37:43 +01:00
Christopher Baines
067deee14f
gnu: bzip2: Fix script interpreters when cross-compiling.
...
Add bash-minimal as an input fixes the interpreters for various scripts (like
bzdiff and bzgrep) when cross-compiling.
* gnu/packages/compression.scm (bzip2)[inputs]: Add bash-minimal when cross
compiling.
2022-10-29 09:29:32 +01:00
Christopher Baines
a0c5f19dc6
gnu: xz: Fix script interpreters when cross-compiling.
...
Add bash-minimal as an input fixes the interpreters for various scripts (like
xzgrep and xzless) when cross-compiling.
* gnu/packages/compression.scm (xz)[inputs]: Add bash-minimal when cross
compiling.
2022-10-29 09:29:32 +01:00
Christopher Baines
01cfc22700
gnu: gzip: Fix script interpreters when cross-compiling.
...
Add bash-minimal as an input fixes the interpreters for various scripts (like
zcat and zless) when cross-compiling.
* gnu/packages/compression.scm (gzip)[inputs]: Add bash-minimal when cross
compiling.
2022-10-29 09:29:31 +01:00
Christopher Baines
42c8315316
gnu: gnome-control-center: Update to 42.4.
...
* gnu/packages/gnome.scm (gnome-control-center): Update to 42.4.
2022-10-29 09:28:11 +01:00
Danny Milosavljevic
0a604c16b3
gnu: Add seer-gdb.
...
* gnu/packages/debug.scm (seer-gdb): New variable.
2022-10-28 21:55:39 +02:00
Vagrant Cascadian
ed70f80ccd
gnu: texlive-latex-atveryend: Fix typo.
...
* gnu/packages/tex.scm (texlive-latex-atveryend)[description]: Fix incorrectly
pluralized use of "package".
2022-10-28 11:51:00 -07:00
Ricardo Wurmus
b669735356
gnu: python-rpy2: Update to 3.5.5.
...
* gnu/packages/statistics.scm (python-rpy2): Update to 3.5.5.
[arguments]: Run all tests; run them conditionally.
2022-10-28 20:40:47 +02:00
(
8fed831e2a
doc: contributing: Expand "Sending a Patch Series".
...
* doc/contributing.texi: Expand on sending patches and using
git send-email.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-28 17:25:58 +02:00
Christopher Baines
7797570479
gnu: sed: Skip failing test on GNU/Hurd.
...
* gnu/packages/base.scm (sed)[arguments]: Add #:make-flags.
2022-10-28 15:16:54 +01:00
Christopher Baines
2a152e1a42
gnu: diffutils: Skip failing test on GNU/Hurd.
...
* gnu/packages/base.scm (diffutils)[arguments]: Add #:make-flags.
* gnu/packages/commencement.scm (diffutils-boot0)[arguments]: Adjust to always
use substitute-keyword-arguments.
2022-10-28 15:16:54 +01:00
Mădălin Ionel Patrașcu
fe20121dc7
gnu: Add r-damefinder.
...
* gnu/packages/bioconductor.scm (r-damefinder): New variable.
2022-10-28 15:11:29 +02:00
Mădălin Ionel Patrașcu
812cbd9321
gnu: Add r-dama.
...
* gnu/packages/bioconductor.scm (r-dama): New variable.
2022-10-28 15:08:58 +02:00
Ricardo Wurmus
77a81280b2
gnu: Add ghc-6.6.
...
* gnu/packages/haskell.scm (ghc-6.6): New variable.
2022-10-28 15:00:21 +02:00
Ricardo Wurmus
171b729005
gnu: ghc-6.0: Adjust configuration.
...
* gnu/packages/haskell.scm (ghc-6.0)[arguments]: Pass --enable-src-tree-happy
option; remove --with-hc option because we use the same GHC for everything;
add --with-gcc option to embed absolute file name of GCC.
[native-inputs]: Remove unused python-2.
2022-10-28 15:00:21 +02:00
Ricardo Wurmus
65ad002ff1
gnu: ghc-4: Embed absolute file name of GCC in GHC.
...
* gnu/packages/haskell.scm (ghc-4)[arguments]: Pass "--with-gcc" option to
configure script.
2022-10-28 15:00:21 +02:00
Ricardo Wurmus
75b24abf09
gnu: flair: Update to 1.6.4.
...
* gnu/packages/bioinformatics.scm (flair): Update to 1.6.4.
[propagated-inputs]: Add python-numpy and python-scipy.
2022-10-28 15:00:21 +02:00
Ricardo Wurmus
bb4f24b3ae
gnu: flair: Set R_HOME.
...
* gnu/packages/bioinformatics.scm (flair)[arguments]: Set R_HOME.
2022-10-28 15:00:21 +02:00
Ricardo Wurmus
28950ed561
gnu: flair: Add missing R package.
...
* gnu/packages/bioinformatics.scm (flair)[inputs]: Add r-apeglm.
2022-10-28 15:00:20 +02:00
Mădălin Ionel Patrașcu
917b96cef7
gnu: Add r-debcam.
...
* gnu/packages/bioconductor.scm (r-debcam): New variable.
2022-10-28 15:00:20 +02:00
Mădălin Ionel Patrașcu
0d713c865b
gnu: Add r-dmwr2.
...
* gnu/packages/cran.scm (r-dmwr2): New variable.
2022-10-28 15:00:16 +02:00
Nicolas Goaziou
7d92434326
gnu: emacs-modus-themes: Update to 3.0.0.
...
* gnu/packages/emacs-xyz.scm (emacs-modus-themes): Update to 3.0.0.
2022-10-28 11:16:08 +02:00
Nicolas Goaziou
575790f5f5
gnu: emacs-ediprolog: Update to 2.2.
...
* gnu/packages/emacs-xyz.scm (emacs-ediprolog): Update to 2.2.
2022-10-28 11:16:07 +02:00
Nicolas Goaziou
a31c653cb1
gnu: emacs-subed: Update to 1.0.16.
...
* gnu/packages/emacs-xyz.scm (emacs-subed): Update to 1.0.16.
2022-10-28 11:16:07 +02:00
Nicolas Goaziou
8b204f4e94
gnu: emacs-mmm-mode: Update to 0.5.9.
...
* gnu/packages/emacs-xyz.scm (emacs-mmm-mode): Update to 0.5.9.
2022-10-28 11:16:07 +02:00
Nicolas Goaziou
5b86417d91
gnu: emacs-ement: Update to 0.4.1.
...
* gnu/packages/emacs-xyz.scm (emacs-ement): Update to 0.4.1.
2022-10-28 11:16:06 +02:00
Lars-Dominik Braun
652c5d8a01
gnu: r-mixedpower: Fix faulty commit.
...
Fix previous commit, which did not contain the following changes:
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/statistics.scm (r-mixedpower)[source]: Use it.
2022-10-28 10:17:55 +02:00
Jonathan Brielmaier
328fa8b290
gnu: icedove: Update to 102.4.1.
...
* gnu/packages/gnuzilla.scm (%icedove-build-id, %icedove-version) Update to 102.4.1.
2022-10-28 10:02:35 +02:00
Lars-Dominik Braun
332568d3e8
gnu: r-mixedpower: Improve compatibility with R>=4.2.
...
Upstream’s fix is incomplete and thus commit
7871447cf5 was insufficient.
* gnu/packages/patches/r-mixedpower-r2power.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/statistics.scm (r-mixedpower)[source]: Use it.
2022-10-28 09:59:11 +02:00
Maxim Cournoyer
3511ad2857
gnu: rottlog: Apply patch adding a Texinfo direntry.
...
Relates to <https://issues.guix.gnu.org/58821 >.
* gnu/packages/patches/rottlog-direntry.patch: Add patch.
* gnu/packages/admin.scm (rottlog): Apply it.
* gnu/local.mk (dist_patch_DATA): Register it.
2022-10-27 23:34:46 -04:00
Maxim Cournoyer
ff097b450b
gnu: rottlog: Use gexps and bootstrap Autotools build system.
...
* gnu/packages/admin.scm (rottlog) [snippet]: Delete build system files.
Delete trailing #t. Patch Makefile.am instead of Makefile.in. Do not patch
INSTALL_RC and INSTALL_SCRIPT variables default values.
[arguments]: Use gexps. Delete trailing #t.
[make-flags]: Override INSTALL_RC and INSTALL_SCRIPT.
[phases]{fix-configure}: Delete phase.
[native-inputs]: Add autoconf. Sort inputs.
2022-10-27 23:34:46 -04:00
Maxim Cournoyer
b42b0e6d62
profiles: info-dir-file: Remove install-info '--silent' option.
...
Relates to <https://issues.guix.gnu.org/58821 >.
Revert 4fef1e850e , which silenced useful
information such as the following warning:
install-info: warning: no info dir entry in
`/gnu/store/...-rottlog-0.72.2/share/info/rottlog.info.gz'
Rationale: profile hooks output is now hidden by default, and can be made
visible via the --verbosity option.
2022-10-27 23:34:45 -04:00
Leo Famulari
e04baf43ab
gnu: linux-libre: Update to 5.19.17.
...
* gnu/packages/linux.scm (linux-libre-5.19-version): Update to 5.19.17.
(linux-libre-5.19-pristine-source): Update hash.
2022-10-27 21:02:02 -04:00
Ludovic Courtès
d520fdec3c
gnu: findutils: Skip failing test on GNU/Hurd.
...
* gnu/packages/base.scm (findutils)[arguments]: Add #:make-flags.
* gnu/packages/commencement.scm (findutils-boot0)[arguments]: Likewise.
2022-10-28 01:27:22 +02:00
Ludovic Courtès
6c16eb24d1
gnu: grep: Skip failing tests on GNU/Hurd.
...
* gnu/packages/base.scm (grep)[arguments]: Add #:make-flags.
2022-10-28 01:27:22 +02:00
Ludovic Courtès
842b73fd2b
gnu: coreutils: Skip failing tests on GNU/Hurd.
...
* gnu/packages/base.scm (coreutils)[arguments]: Add
"tests/df/unreadable.sh" and "test-perror2" to the 'XFAIL_TESTS' list.
2022-10-28 01:27:21 +02:00
Vagrant Cascadian
ac51b9c86d
gnu: swftools: Fix typos.
...
* gnu/packages/animation.scm (swftools)[description]: Avoid uses of "allows
to".
2022-10-27 14:13:17 -07:00
Marius Bakke
f8ce707252
gnu: pypy: Remove unused module imports.
...
This is a follow-up to commit 6e7ed04033 .
* gnu/packages/pypy.scm: Remove unused modules.
2022-10-27 21:38:56 +02:00
Marius Bakke
e944734ef9
build-system/pyproject: Always run tests verbosely for supported backends.
...
* guix/build-system/pyproject.scm (pyproject-build): Default to '() instead of
#false for TEST-FLAGS.
* guix/build/pyproject-build-system.scm (check): Unconditionally enable
verbose test flags.
* doc/guix.texi (Build Systems): Document this change.
* gnu/packages/fontutils.scm (python-glyphslib)[arguments]: Remove verbosity
from #:test-flags.
* gnu/packages/pdf.scm (python-pydyf, weasyprint)[arguments]: Likewise.
* gnu/packages/python-web.scm (python-openapi-spec-validator)[arguments]: Likewise.
* gnu/packages/python-xyz.scm (python-path, python-tempora)[arguments]: Likewise.
2022-10-27 21:30:03 +02:00
Marius Bakke
6ef998d54e
build-system/pyproject: Adjust indentation.
...
* guix/build/pyproject-build-system.scm: Adjust indentation.
2022-10-27 21:30:03 +02:00
Marius Bakke
f928abac36
gnu: python-deepmerge: Use pyproject-build-system.
...
* gnu/packages/python-xyz.scm (python-deepmerge)[build-system]: Set to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove obsolete phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD and PYTHON-WHEEL.
2022-10-27 19:43:08 +02:00
Marius Bakke
7b83b3a77c
gnu: python-scikit-build: Switch to pyproject-build-system.
...
* gnu/packages/python-xyz.scm (python-scikit-build)[build-system]: Set to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove obsolete phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD and PYTHON-WHEEL.
2022-10-27 19:43:08 +02:00
Marius Bakke
9ffbcb8a06
gnu: python-cattrs: Use pyproject-build-system.
...
* gnu/packages/python-xyz.scm (python-cattrs)[build-system]: Set to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove obsolete phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD.
2022-10-27 19:43:08 +02:00
Marius Bakke
d2e88c383b
gnu: python-path: Use pyproject-build-system.
...
* gnu/packages/python-xyz.scm (python-path-bootstrap)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove #:phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD.
(python-path): Remove #:phases. Add #:test-flags.
2022-10-27 19:43:08 +02:00
Marius Bakke
5e17453f18
gnu: python-openapi-spec-validator: Use pyproject-build-system.
...
* gnu/packages/python-web.scm (python-openapi-spec-validator)[build-system]:
Set to PYPROJECT-BUILD-SYSTEM.
[arguments]: Add #:test-flags. Remove obsolete phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD.
2022-10-27 19:43:08 +02:00
Marius Bakke
3c685772de
gnu: python-openapi-schema-validator: Use pyproject-build-system.
...
* gnu/packages/python-web.scm (python-openapi-schema-validator)[build-system]:
Set to PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove redundant phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD.
2022-10-27 19:43:08 +02:00
Marius Bakke
7b499ef116
gnu: zabbix-cli: Switch to pyproject-build-system.
...
* gnu/packages/monitoring.scm (zabbix-cli)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove check phase.
2022-10-27 19:43:08 +02:00
Marius Bakke
e05e2a7a75
gnu: python-pygmsh: Use pyproject-build-system.
...
* gnu/packages/simulation.scm (python-pygmsh)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove redundant phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD.
2022-10-27 19:43:07 +02:00
Marius Bakke
b8efe89eb4
gnu: python-tempora: Switch to pyproject-build-system.
...
* gnu/packages/python-xyz.scm (python-tempora)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Add #:test-flags. Remove #:phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD.
2022-10-27 19:43:07 +02:00
Marius Bakke
8bdc4c1547
gnu: python-mypy-protobuf: Switch to pyproject-build-system.
...
* gnu/packages/protobuf.scm (python-mypy-protobuf)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove redundant phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD.
2022-10-27 19:43:07 +02:00
Marius Bakke
eecc807ea4
gnu: python-ufolib2: Use pyproject-build-system.
...
* gnu/packages/fontutils.scm (python-ufolib2)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove.
[native-inputs]: Remove PYTHON-PYPA-BUILD and PYTHON-WHEEL.
2022-10-27 19:43:07 +02:00
Marius Bakke
10f8534929
gnu: python-statmake: Use pyproject-build-system.
...
* gnu/packages/fontutils.scm (python-statmake)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove redundant phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD.
2022-10-27 19:43:07 +02:00
Marius Bakke
6f6257a6bc
gnu: python-glyphslib: Use pyproject-build-system.
...
* gnu/packages/fontutils.scm (python-glyphslib)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Add #:test-flags. Remove #:phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD and PYTHON-WHEEL.
2022-10-27 19:43:07 +02:00
Marius Bakke
df095a1813
gnu: weasyprint: Use pyproject-build-system.
...
* gnu/packages/pdf.scm (weasyprint)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove redundant phases. Add #:test-flags.
[native-inputs]: Remove PYTHON-PYPA-BUILD.
2022-10-27 19:43:07 +02:00
Marius Bakke
4c8e0b3274
gnu: python-pydyf: Use pyproject-build-system.
...
* gnu/packages/pdf.scm (python-pydyf)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove #:phases. Add #:test-flags.
[native-inputs]: Remove PYTHON-PYPA-BUILD.
2022-10-27 19:43:07 +02:00
Marius Bakke
ee1f51011c
gnu: python-autopage: Use pyproject-build-system.
...
* gnu/packages/python-xyz.scm (python-autopage)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove redundant phases.
2022-10-27 19:43:07 +02:00
Marius Bakke
a4fd4db6d1
news: Add entry for 'pyproject-build-system'.
...
* etc/news.scm: Add entry.
Co-authored-by: Florian Pelz <pelzflorian@pelzflorian.de >
Co-authored-by: Julien Lepiller <julien@lepiller.eu >
2022-10-27 19:43:07 +02:00
Lars-Dominik Braun
400a7a4c80
build-system: Add pyproject-build-system.
...
This is an experimental build system based on python-build-system
that implements PEP 517-compliant builds.
* doc/guix.texi (Build Systems): Add pyproject-build-system section.
* doc/contributing.texi (Python Modules): Mention pyproject.toml and the
PYTHON-TOOLCHAIN package, as well as differences to python-build-system.
* guix/build-system/pyproject.scm,
guix/build/pyproject-build-system.scm,
gnu/packages/aux-files/python/sanity-check-next.py,
gnu/packages/python-commencement.scm: New files.
* Makefile.am (MODULES): Register the new build systems.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add python-commencement.scm.
* gnu/packages/python.scm (python-sans-pip, python-sans-pip-wrapper): New
variables.
Co-authored-by: Marius Bakke <marius@gnu.org >
2022-10-27 19:43:06 +02:00
Marius Bakke
b4e2effb30
gnu: python-pip: Move to (gnu packages python-build).
...
* gnu/packages/python-xyz.scm (python-pip): Move from here ...
* gnu/packages/python-build.scm (python-pip): ... to here.
2022-10-27 19:43:06 +02:00
Lars-Dominik Braun
6e7ed04033
gnu: pypy: Move to separate module.
...
This removes the need to import (gnu packages python-xyz) in (gnu packages
python), avoiding issues with circular imports.
* gnu/packages/python.scm (pypy): Move…
* gnu/packages/pypy.scm (pypy): …here
* gnu/local.mk: Register new file.
Co-authored-by: Marius Bakke <marius@gnu.org >
2022-10-27 19:43:06 +02:00
Lars-Dominik Braun
c485a9d8af
gnu: python-setuptools: Move to python-build.
...
* gnu/packages/python-xyz.scm (python-setuptools): Move…
* gnu/packages/python-build.scm: …here.
* gnu/packages/chemistry.scm,
gnu/packages/messaging.scm,
gnu/packages/sequoia.scm,
tests/lint.scm: Adjust module imports accordingly.
Co-authored-by: Marius Bakke <marius@gnu.org >
2022-10-27 19:43:06 +02:00
Marius Bakke
cae327a3b0
gnu: Zabbix: Update to 6.0.9.
...
* gnu/packages/monitoring.scm (zabbix-agentd): Update to 6.0.9.
2022-10-27 19:43:06 +02:00
Marius Bakke
593548f063
gnu: zabbix-agentd: Enable TLS support.
...
* gnu/packages/monitoring.scm (zabbix-agentd)[arguments]: Pass "--with-gnutls"
in #:configure-flags.
[inputs]: Add GNUTLS.
(zabbix-server): Inherit these changes.
2022-10-27 19:43:06 +02:00
Ricardo Wurmus
176a501360
gnu: flair: Add missing R packages.
...
* gnu/packages/bioinformatics.scm (flair)[propagated-inputs]: Add python-rpy2.
[inputs]: Add r-minimal, r-deseq2, r-drimseq, r-ggplot2, r-lazyeval, r-qqman,
and r-rlang.
[arguments]: Add phase "wrap-executable".
2022-10-27 18:21:22 +02:00
Nicolas Goaziou
302eae2fc3
gnu: emacs-buttercup: Update to 1.28.
...
* gnu/packages/emacs-xyz.scm (emacs-buttercup): Update to 1.28.
2022-10-27 17:37:40 +02:00
Mădălin Ionel Patrașcu
aef2425666
gnu: Add r-aseb.
...
* gnu/packages/bioconductor.scm (r-aseb): New variable.
2022-10-27 16:40:18 +02:00
Mădălin Ionel Patrașcu
695d7720ef
gnu: Add r-asgsca.
...
* gnu/packages/bioconductor.scm (r-asgsca): New variable.
2022-10-27 16:40:18 +02:00
Mădălin Ionel Patrașcu
b8b91756ab
gnu: Add r-aspli.
...
* gnu/packages/bioconductor.scm (r-aspli): New variable.
2022-10-27 16:40:18 +02:00
Mădălin Ionel Patrașcu
a8e0069f87
gnu: Add r-assessorf.
...
* gnu/packages/bioconductor.scm (r-assessorf): New variable.
2022-10-27 16:40:18 +02:00
Mădălin Ionel Patrașcu
f1750236c1
gnu: Add r-asset.
...
* gnu/packages/bioconductor.scm (r-asset): New variable.
2022-10-27 16:40:18 +02:00
Mădălin Ionel Patrașcu
c0278aa51e
gnu: Add r-atena.
...
* gnu/packages/bioconductor.scm (r-atena): New variable.
2022-10-27 16:40:18 +02:00
Mădălin Ionel Patrașcu
70d30096b3
gnu: Add r-atsnp.
...
* gnu/packages/bioconductor.scm (r-atsnp): New variable.
2022-10-27 16:40:18 +02:00
Mădălin Ionel Patrașcu
599655dc49
gnu: Add r-attract.
...
* gnu/packages/bioconductor.scm (r-attract): New variable.
2022-10-27 16:40:18 +02:00
Mădălin Ionel Patrașcu
3f755098cb
gnu: Add r-awfisher.
...
* gnu/packages/bioconductor.scm (r-awfisher): New variable.
2022-10-27 16:40:18 +02:00
Mădălin Ionel Patrașcu
930b1e0458
gnu: Add r-awst.
...
* gnu/packages/bioconductor.scm (r-awst): New variable.
2022-10-27 16:40:18 +02:00
Marius Bakke
d9686315bd
gnu: ungoogled-chromium: Update to 107.0.5304.68-1.
...
* gnu/packages/chromium.scm (%preserved-third-party-files): Adjust for M107.
(%chromium-version): Set to 107.0.5304.68.
(%ungoogled-origin): Update hash.
(%chromium-gcc-patchset, gcc-patch): Remove.
(%gcc-patches): Empty list.
(ungoogled-chromium)[source]: Update hash.
[arguments]: Add clang_base_path and use_system_libwayland_server to
#:configure-flags. Adjust substitutions.
[inputs]: Add QTBASE-5.
2022-10-27 16:15:09 +02:00
Mădălin Ionel Patrașcu
38cc09493c
gnu: Add r-barcodetrackr.
...
* gnu/packages/bioconductor.scm (r-barcodetrackr): New variable.
2022-10-27 15:58:45 +02:00
Mădălin Ionel Patrașcu
01944e0eb8
gnu: Add r-banocc.
...
* gnu/packages/bioconductor.scm (r-banocc): New variable.
2022-10-27 15:57:30 +02:00
Mădălin Ionel Patrașcu
fe2be9c0cf
gnu: Add r-bandits.
...
* gnu/packages/bioconductor.scm (r-bandits): New variable.
2022-10-27 15:56:40 +02:00
Mădălin Ionel Patrașcu
9b337c2735
gnu: Add r-bambu.
...
* gnu/packages/bioconductor.scm (r-bambu): New variable.
2022-10-27 15:51:55 +02:00
Mădălin Ionel Patrașcu
f0d0b6a0c5
gnu: Add r-badregionfinder.
...
* gnu/packages/bioconductor.scm (r-badregionfinder): New variable.
2022-10-27 15:50:33 +02:00
Mădălin Ionel Patrașcu
c969517cec
gnu: Add r-bader.
...
* gnu/packages/bioconductor.scm (r-bader): New variable.
2022-10-27 15:35:22 +02:00
Mădălin Ionel Patrașcu
0ad89a84c3
gnu: Add r-bac.
...
* gnu/packages/bioconductor.scm (r-bac): New variable.
2022-10-27 15:34:01 +02:00
Mădălin Ionel Patrașcu
f31b494bb6
gnu: Add r-basespacer.
...
* gnu/packages/bioconductor.scm (r-basespacer): New variable.
2022-10-27 15:30:25 +02:00
Mădălin Ionel Patrașcu
3417a28080
gnu: Add r-eulerr.
...
* gnu/packages/cran.scm (r-eulerr): New variable.
2022-10-27 15:28:22 +02:00
Mădălin Ionel Patrașcu
9f8ab16fb5
gnu: Add r-tximportdata.
...
* gnu/packages/bioconductor.scm (r-tximportdata): New variable.
2022-10-27 15:24:06 +02:00
Mădălin Ionel Patrașcu
f180a5990b
gnu: Add r-fishpond.
...
* gnu/packages/bioconductor.scm (r-fishpond): New variable.
2022-10-27 15:19:36 +02:00
Mădălin Ionel Patrașcu
fe7b421d05
gnu: Add python-multivelo.
...
* gnu/packages/bioinformatics.scm (python-multivelo): New variable.
2022-10-27 15:15:19 +02:00
Hong.Li@mdc-berlin.de
358a1fdf7b
gnu: Add r-seuratwrappers.
...
* gnu/packages/bioinformatics.scm (r-seuratwrappers): New variable.
2022-10-27 15:03:21 +02:00
Ricardo Wurmus
87763421a9
gnu: r-seurat: Update to 4.2.0.
...
* gnu/packages/cran.scm (r-seurat): Update to 4.2.0.
2022-10-27 15:03:21 +02:00
Ricardo Wurmus
1cc12eace3
gnu: r-seuratobject: Update to 4.1.2.
...
* gnu/packages/cran.scm (r-seuratobject): Update to 4.1.2.
2022-10-27 15:03:21 +02:00
Mădălin Ionel Patrașcu
4b9fa56cad
gnu: Add r-baalchip.
...
* gnu/packages/bioconductor.scm (r-baalchip): New variable.
2022-10-27 13:54:18 +02:00
Mădălin Ionel Patrașcu
8e6a9b23d0
gnu: Add python-jupytext.
...
* gnu/packages/python-xyz.scm (python-jupytext): New variable.
2022-10-27 13:25:15 +02:00
Mădălin Ionel Patrașcu
c28598db5b
gnu: Add python-mdit-py-plugins.
...
* gnu/packages/python-xyz.scm (python-mdit-py-plugins): New variable.
2022-10-27 13:25:15 +02:00
Mădălin Ionel Patrașcu
447400c853
gnu: Add python-markdown-it-py.
...
* gnu/packages/python-xyz.scm (python-markdown-it-py): New variable.
2022-10-27 13:25:15 +02:00
Mădălin Ionel Patrașcu
d748d4fd6c
gnu: Add python-mdurl.
...
* gnu/packages/python-xyz.scm (python-mdurl): New variable.
2022-10-27 13:25:15 +02:00
Ricardo Wurmus
be51ee7ced
gnu: Add ghc-6.0.
...
* gnu/packages/haskell.scm (ghc-6.0): New variable.
2022-10-27 13:25:15 +02:00
Ricardo Wurmus
82791af033
gnu: ghc-4: Build full compiler using provided *.hc files.
...
* gnu/packages/haskell.scm (ghc-4)[source]: Remove patch.
[arguments]: Change to build full compiler.
[native-inputs]: Remove default binutils and gcc; add tarball for hc files.
* gnu/packages/patches/ghc-4.patch: Delete patch.
* gnu/local.mk (dist_patch_DATA): Remove it.
2022-10-27 13:25:15 +02:00
Efraim Flashner
bbaf3bcb45
gnu: python-afdko: Skip a test.
...
* gnu/packages/fontutils.scm (python-afdko)[arguments]: Adjust custom
'check phase to skip a test.
2022-10-27 14:13:52 +03:00
Andrew Tropin
95d44c0586
gnu: Add emacs-clj-refactor.
...
* gnu/packages/emacs-xyz.scm (emacs-clj-refactor): New variable.
2022-10-27 09:27:40 +04:00
Andrew Tropin
39dfa2947f
gnu: Add emacs-inflections.
...
* gnu/packages/emacs-xyz.scm (emacs-inflections): New variable.
2022-10-27 09:18:53 +04:00
Tobias Geerinckx-Rice
5dda4c69f0
gnu: xorriso: Update to 1.5.4.
...
* gnu/packages/cdrom.scm (xorriso): Update to 1.5.4.
2022-10-23 02:00:07 +02:00
Tobias Geerinckx-Rice
df5cbe529b
gnu: sudo: Update to 1.9.12.
...
* gnu/packages/admin.scm (sudo): Update to 1.9.12.
2022-10-23 02:00:07 +02:00
Tobias Geerinckx-Rice
188acd0aac
gnu: mpv: Prepare for cross-compilation.
...
* gnu/packages/video.scm (mpv)[arguments]: Use CC-FOR-TARGET.
2022-10-23 02:00:07 +02:00
Tobias Geerinckx-Rice
9eea2db6ae
gnu: mpv: Use G-expressions.
...
* gnu/packages/video.scm (mpv)[arguments]:
Rewrite as G-expressions.
2022-10-23 02:00:06 +02:00
Tobias Geerinckx-Rice
51aac125f0
gnu: mpv: Remove input labels.
...
* gnu/packages/video.scm (mpv)[inputs]: Remove input labels.
[arguments]: Use SEARCH-INPUT-FILE instead.
2022-10-23 02:00:06 +02:00
Tobias Geerinckx-Rice
32be0431ff
gnu: mpv: Remove trailing #t from phases.
...
* gnu/packages/video.scm (mpv)[arguments]: Don't explicitly return #t
from phases.
2022-10-23 02:00:06 +02:00
Tobias Geerinckx-Rice
19f3dbcb4d
system: Support bare-bones serial console.
...
* gnu/system/examples/bare-bones.tmpl (operating-system):
Add a ttyS0 console to kernel-arguments.
2022-10-23 02:00:06 +02:00
Tobias Geerinckx-Rice
68f4b7a158
gnu: memtest86+: Include a GRUB-based ISO image.
...
* gnu/packages/hardware.scm (memtest86+)[arguments]: Add a new 'patch-broken-Makefiles and custom 'build phase.
Add "grub-memtest.iso" to the list of files to 'install.
[native-inputs]: Add dosfstools, grub-hybrid, mtools, and xorriso.
2022-10-23 02:00:06 +02:00
Tobias Geerinckx-Rice
634f7cd7df
gnu: memtest86+: Use G-expressions.
...
* gnu/packages/hardware.scm (memtest86+)[arguments]:
Rewrite as G-expressions.
2022-10-23 02:00:06 +02:00
Tobias Geerinckx-Rice
e940828ccf
gnu: memtest86+: Update to 6.00.
...
* gnu/packages/hardware.scm (memtest86+): Update to 6.00.
[source]: Use GIT-FETCH & GIT-FILE-NAME.
[arguments]: Stop forcing #:system i686-linux. Instead, honour the
target word size in a new 'enter-build-directory phase.
Remove custom 'build phase: ‘memtest’ was replaced by ‘memtest.efi’.
Adjust the 'install phase accordingly, and install only ‘README.md’.
[native-inputs]: Remove gcc-4.9.
[description]: Remove obsolete BIOS limitation.
2022-10-23 02:00:06 +02:00
Tobias Geerinckx-Rice
75bf5dac2e
gnu: mu: Update to 1.8.11.
...
* gnu/packages/mail.scm (mu): Update to 1.8.11.
2022-10-23 02:00:05 +02:00
Felix Gruber
c07b55eb94
gnu: oil: Update to 0.12.7.
...
* gnu/packages/shells.scm (oil): Update to 0.12.7.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-26 18:09:10 +03:00
Michael Rohleder
7ffb31d270
gnu: git-remote-gcrypt: Update to 1.5.
...
* gnu/packages/version-control.scm (git-remote-gcrypt): Update to 1.5.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-26 18:09:09 +03:00
Michael Rohleder
abec1f8b29
gnu: git-crypt: Update to 0.7.0.
...
* gnu/packages/version-control.scm (git-crypt): Update to 0.7.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-26 18:09:09 +03:00
ギャラ
594a243f1d
gnu: qpwgragh: Update to 0.3.7.
...
* gnu/packages/audio.scm (qpwgragh): Update to 0.3.7.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-26 18:09:05 +03:00
Liliana Marie Prikler
748684237c
gnu: komikku: Update to 1.2.0.
...
* gnu/packages/gnome.scm (komikku): Update to 1.2.0.
[inputs]: Add ‘python-rarfile’.
2022-10-26 14:18:38 +02:00
cage
ec74eef890
gnu: tinmop: Update to 0.9.9.
...
* gnu/packages/web-browsers.scm (tinmop): Update to 0.9.9.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-26 11:12:46 +02:00
Efraim Flashner
d816693a23
gnu: five-or-more: Fix build.
...
* gnu/packages/gnome.scm (five-or-more)[inputs]: Replace
libgnome-games-support with libgnome-games-support-1.
2022-10-26 11:35:15 +03:00
Efraim Flashner
cbc1f75418
gnu: xpad: Fix build.
...
* gnu/packages/gnome.scm (xpad)[inputs]: Add gtk+. Replace gtksourceview
with gtksourceview-4.
2022-10-26 11:33:32 +03:00
Efraim Flashner
d409a83e7c
gnu: rust-git2: Adjust inputs.
...
* gnu/packages/crates-io.scm (rust-git2-0.15)[inputs]: Replace
libgit2-1.3 with libgit2.
(rust-git2-0.13)[inputs]: Continue with libgit2-1.3.
2022-10-26 11:25:40 +03:00
Efraim Flashner
166da5b2b6
Merge remote-tracking branch 'origin/staging'
2022-10-26 11:15:22 +03:00
Nicolas Goaziou
ab7f79dfc3
gnu: emacs-projectile: Update to 2.6.0.
...
* gnu/packages/emacs-xyz.scm (emacs-projectile): Update to 2.6.0.
2022-10-26 09:07:54 +02:00
Efraim Flashner
6ff203663e
Merge remote-tracking branch 'origin/master' into staging
2022-10-25 21:50:59 +03:00
Andrew Tropin
6c5c464d55
gnu: emacs-git-gutter: Update to 0.92-0.ec28e85.
...
0.92 fails on recent emacs versions because of missing global-linum-mode.
* gnu/packages/emacs-xyz.scm (emacs-git-gutter): Update to 0.92-0.ec28e85.
2022-10-25 22:39:15 +04:00
David Thompson
a0751e3250
gnu: guile-chickadee: Update to 0.9.0.
...
* gnu/packages/game-development.scm (guile-chickadee): Update to 0.9.0.
2022-10-25 09:36:44 -04:00
Nicolas Goaziou
348f70b9f4
gnu: plover: Update to 4.0.0.dev12.
...
* gnu/packages/stenography.scm (plover): Update to 4.0.0.dev12.
[arguments]<#:phases>: Add phase to properly run tests, and skip failing one.
[native-inputs]: Add PYTHON-BABEL, PYTHON-MOCK, PYTHON-PYTEST-QT,
PYTHON,PYTEST-XVFB.
[inputs]: Remove PYTHON-PYQT, PYTHON-BABEL. Add PYTHON-PLOVER-STROKE,
PYTHON-PYQT, PYTHON-RTF-TOKENIZE, QTSVG-5.
(python-plover-stroke): New variable.
2022-10-25 13:57:33 +02:00
Nicolas Goaziou
743e5adf47
gnu: Add python-rtf-tokenize.
...
* gnu/packages/python-xyz.scm (python-rtf-tokenize): New variable.
2022-10-25 13:57:32 +02:00
Andrew Tropin
822166ac31
gnu: emacs-git-gutter-fringe: Update to 0.23-2.648cb5b.
...
* gnu/packages/emacs-xyz.scm (emacs-git-gutter-fringe): Update to
0.23-2.648cb5b.
2022-10-25 14:20:36 +04:00
Nicolas Goaziou
d7b8c03a70
gnu: emacs-subed: Update to 1.0.12.
...
* gnu/packages/emacs-xyz.scm (emacs-subed): Update to 1.0.12.
2022-10-25 12:01:42 +02:00
Nicolas Goaziou
2f6cc86f40
gnu: emacs-csound-mode: Improve package style.
...
* gnu/packages/emacs-xyz.scm (emacs-csound-mode)[arguments]: Use
G-expressions.
<phases>: Use MAKE-FILE-WRITABLE instead of CHMOD. Remove trailing #T.
[description]: Use complete sentences.
2022-10-25 12:01:42 +02:00
Nicolas Goaziou
861a6f7f46
gnu: emacs-csound-mode: Update to 0.2.3.
...
* gnu/packages/emacs-xyz.scm (emacs-csound-mode): Update to 0.2.3.
[inputs]: Remove EMACS-HIGHLIGHT, EMACS-MULTI, EMACS-SHUT-UP.
[propagated-inputs]: Add EMACS-DASH, EMACS-HIGHLIGHT, EMACS-MULTI,
EMACS-SHUT-UP.
2022-10-25 12:01:42 +02:00
Nicolas Goaziou
9b086a1cd7
gnu: emacs-highlight: Update to 0-2.24366df.
...
* gnu/packages/emacs-xyz.scm (emacs-highlight): Update to 0-2.24366df.
[version]: Use GIT-VERSION.
2022-10-25 12:01:41 +02:00
Greg Hogan
a2f6900761
gnu: gron: Update to 0.7.1
...
* gnu/packages/golang.scm (gron): Update to 0.7.1.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-25 10:29:10 +01:00
Felix Lechner
92d2cb0f2b
gnu: go-github-com-sabhiram-go-gitignore: 1.0.2-1.525f6e1.
...
* gnu/packages/golang.scm (go-github-com-sabhiram-go-gitignore): Update to
1.0.2-1.525f6e1.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-25 10:19:45 +01:00
Christopher Baines
793491db0f
gnu: guix: Update to 682639c.
...
This should fix the guix package building on powerpc64le-linux.
* gnu/packages/package-management.scm (guix): Update to 682639c .
2022-10-25 10:17:55 +01:00
Christopher Baines
be9b213c75
maint: Tweak release manifest special case for armhf-linux.
...
Don't remove the emacs package, as it does build and substitutes are
available. Do remove the guix package though, as it doesn't build due to Guile
memory issues while compiling the package modules.
* etc/release-manifest.scm (%base-packages/armhf): Don't replace the emacs
package, remove the guix package.
(%base-manifest): Remove FIXME comment as %base-packages/armhf doesn't relate
to build power.
2022-10-25 10:10:06 +01:00
pelzflorian (Florian Pelz)
682639c107
installer: welcome: Warn when uvesafb gets used.
...
There will be false positives: Because the Guix installer uses the
kernel argument modprobe.blacklist=radeon,amdgpu and some AMD graphics
actually work okay according to h-node, these users will get a
false alarm.
* gnu/installer/newt/welcome.scm (run-welcome-page): Warn before showing
the welcome page.
2022-10-25 10:55:33 +02:00
Efraim Flashner
3f0ea68177
gnu: font-gnu-unifont: Build from source.
...
* gnu/packages/fonts.scm (font-gnu-unifont)[source]: Add snippet to
remove precompiled fonts.
[arguments]: Add make-flag to build fonts. Add custom phase to adjust
shell invocations.
[native-inputs]: Add bdftopcf, console-setup, fontforge.
[inputs]: Add perl-gd.
2022-10-25 09:26:12 +03:00
Efraim Flashner
81c6a28eb0
gnu: font-gnu-unifont: Update to 15.0.01.
...
* gnu/packages/fonts.scm (font-gnu-unifont): Update to 15.0.01.
[arguments]: Adjust custom 'install phase to set install directory for
OTF fonts.
2022-10-25 09:26:11 +03:00
Efraim Flashner
75d4abf2eb
gnu: console-font: Install bdf2psf.
...
* gnu/packages/xorg.scm (console-font)[arguments]: Add custom
'install-bdf2psf phase to install bdf2psf and its manpage.
2022-10-25 09:26:11 +03:00
Efraim Flashner
dec9cb985c
gnu: gama: Update to 2.23.
...
* gnu/packages/gps.scm (gama): Update to 2.23.
2022-10-25 09:26:11 +03:00
Efraim Flashner
0224aa2a71
gnu: freeipmi: Update to 1.6.10.
...
* gnu/packages/freeipmi.scm (freeipmi): Update to 1.6.10.
2022-10-25 09:26:11 +03:00
Efraim Flashner
d6f11bec0f
gnu: gnuastro: Update to 0.19.
...
* gnu/packages/astronomy.scm (gnuastro): Update to 0.19.
2022-10-25 09:26:07 +03:00
Vagrant Cascadian
a2e4e3489b
gnu: Various typo fixes.
...
* gnu/packages/emacs-xyz.scm (emacs-popup-kill-ring)[description]: Fix very
sneaky "This packages" variant. Thanks to nckhexen!
* gnu/packages/bioinformatics.scm (r-icellnet)[description]: Fix use of
"allows to".
* gnu/packages/check.scm (python-pytest-freezegun)[description]: Ditto.
* gnu/packages/linux.scm (tp-smapi-module)[description]: Ditto.
* gnu/packages/mail.scm (procmail): Ditto.
* gnu/packages/maths.scm (maxima): Ditto.
* gnu/packages/samba.scm (wsdd)[description]: Ditto.
* gnu/packages/ssh.scm (openssh): Ditto.
2022-10-24 17:35:19 -07:00
David Thompson
966118da71
gnu: version-control: Add make-gitolite procedure.
...
* gnu/packages/version-control.scm (make-gitolite): New procedure.
(gitolite): Use make-gitolite.
* doc/guix.texi (Gitolite service): Document how to use make-gitolite.
2022-10-24 16:37:22 -04:00
Liliana Marie Prikler
8663be6da7
gnu: Add sumo.
...
* gnu/packages/simulation.scm (sumo): New variable.
2022-10-24 20:31:34 +02:00
Efraim Flashner
24937913fe
gnu: ruby-ruby-prof: Skip tests on i686-linux.
...
* gnu/packages/ruby.scm (ruby-ruby-prof)[arguments]: Skip the tests when
cross-compiling or when targeting i686-linux.
2022-10-24 18:33:06 +03:00
Efraim Flashner
092f400c41
gnu: rust-camino-1: Update to 1.1.1.
...
* gnu/packages/crates-io.scm (rust-camino-1): Update to 1.1.1.
[arguments]: Don't skip build. Remove custom phase.
[cargo-inputs]: Add rust-proptest-1.
[cargo-development-inputs]: Remove field.
2022-10-24 18:10:07 +03:00
Efraim Flashner
9defa11c93
Revert "gnu: rust-camino-1: Update to 1.1.1."
...
This reverts commit 0d9d36d913 .
2022-10-24 18:06:24 +03:00
Efraim Flashner
cb15e7dd34
Revert "gnu: rust-cargo-platform-0.1: Update to 0.1.2."
...
This reverts commit e7bca94dae .
2022-10-24 18:04:19 +03:00
Efraim Flashner
a88beb5d84
Revert "gnu: rust-semver-1: Update to 1.0.14."
...
This reverts commit 70467596b2 .
2022-10-24 17:56:29 +03:00
Efraim Flashner
d9c7435f18
gnu: Remove rust-polars-io-0.14.
...
* gnu/packages/crates-io.scm (rust-polars-io-0.14): Delete variable.
2022-10-24 17:49:58 +03:00
Efraim Flashner
8fa5b02d20
gnu: Remove rust-polars-lazy-0.15.
...
* gnu/packages/crates-io.scm (rust-polars-lazy-0.15): Delete variable.
2022-10-24 17:49:57 +03:00
Efraim Flashner
255a1595f5
gnu: Remove rust-rustc-ap-rustc-data-structures-654.
...
* gnu/packages/crates-io.scm (rust-rustc-ap-rustc-data-structures-654): Delete variable.
2022-10-24 17:49:57 +03:00
Efraim Flashner
b207c409ff
gnu: Remove rust-sha2-asm-0.3.
...
* gnu/packages/crates-io.scm (rust-sha2-asm-0.3): Delete variable.
2022-10-24 17:49:56 +03:00
Efraim Flashner
e38d03bcd4
gnu: Remove rust-smallvec-0.2.
...
* gnu/packages/crates-io.scm (rust-smallvec-0.2): Delete variable.
2022-10-24 17:49:56 +03:00
Efraim Flashner
fc77ba83cd
gnu: Remove rust-tokio-service-0.1.
...
* gnu/packages/crates-io.scm (rust-tokio-service-0.1): Delete variable.
2022-10-24 17:49:55 +03:00
Efraim Flashner
75556af46b
gnu: Remove rust-rustc-ap-arena-654.
...
* gnu/packages/crates-io.scm (rust-rustc-ap-arena-654): Delete variable.
2022-10-24 17:40:59 +03:00
Efraim Flashner
d0ba84d1e2
gnu: Remove rust-rustc-ap-rustc-lexer-721.
...
* gnu/packages/crates-io.scm (rust-rustc-ap-rustc-lexer-721): Delete variable.
2022-10-24 17:40:59 +03:00
Efraim Flashner
b9919d4033
gnu: Remove rust-serde-0.4.
...
* gnu/packages/crates-io.scm (rust-serde-0.4): Delete variable.
2022-10-24 17:40:59 +03:00
Efraim Flashner
3388029f80
gnu: Remove rust-sha2-0.6.
...
* gnu/packages/crates-io.scm (rust-sha2-0.6): Delete variable.
2022-10-24 17:40:59 +03:00
Efraim Flashner
113f63f9cd
gnu: Remove rust-sluice-0.4.
...
* gnu/packages/crates-io.scm (rust-sluice-0.4): Delete variable.
2022-10-24 17:40:58 +03:00
Efraim Flashner
b284c28b1f
gnu: Remove rust-tokio-proto-0.1.
...
* gnu/packages/crates-io.scm (rust-tokio-proto-0.1): Delete variable.
2022-10-24 17:40:58 +03:00
Efraim Flashner
51ea8086d5
gnu: Remove rust-toml-edit-0.3.
...
* gnu/packages/crates-io.scm (rust-toml-edit-0.3): Delete variable.
2022-10-24 17:40:58 +03:00
Efraim Flashner
7e71472411
gnu: Remove rust-ureq-1.
...
* gnu/packages/crates-io.scm (rust-ureq-1): Delete variable.
2022-10-24 17:40:57 +03:00
Efraim Flashner
00068094dc
gnu: Remove rust-want-0.0.
...
* gnu/packages/crates-io.scm (rust-want-0.0): Delete variable.
2022-10-24 17:40:57 +03:00
Efraim Flashner
c21e783f16
gnu: Remove rust-rusqlite-0.25.
...
* gnu/packages/crates-io.scm (rust-rusqlite-0.25): Delete variable.
2022-10-24 17:40:57 +03:00
Efraim Flashner
3b21fa4b29
gnu: Remove rust-rusqlite-0.24.
...
* gnu/packages/crates-io.scm (rust-rusqlite-0.24): Delete variable.
2022-10-24 17:40:56 +03:00
Efraim Flashner
d8422c76fe
gnu: Remove rust-password-hash-0.1.
...
* gnu/packages/crates-io.scm (rust-password-hash-0.1): Delete variable.
2022-10-24 17:40:56 +03:00
Efraim Flashner
bec0f3ef19
gnu: Remove rust-polars-arrow-0.13.
...
* gnu/packages/crates-io.scm (rust-polars-arrow-0.13): Delete variable.
2022-10-24 17:40:56 +03:00
Efraim Flashner
417825f2a0
gnu: Remove rust-polars-core-0.13.
...
* gnu/packages/crates-io.scm (rust-polars-core-0.13): Delete variable.
2022-10-24 17:40:56 +03:00
Efraim Flashner
9341e35f59
gnu: Remove rust-polars-lazy-0.14.
...
* gnu/packages/crates-io.scm (rust-polars-lazy-0.14): Delete variable.
2022-10-24 17:40:55 +03:00
Efraim Flashner
e9930a4cff
gnu: Remove rust-quick-xml-0.12.
...
* gnu/packages/crates-io.scm (rust-quick-xml-0.12): Delete variable.
2022-10-24 17:40:55 +03:00
Efraim Flashner
48afd9938b
gnu: Remove rust-object-0.22.
...
* gnu/packages/crates-io.scm (rust-object-0.22): Delete variable.
2022-10-24 17:40:55 +03:00
Efraim Flashner
ff0023222f
gnu: Remove rust-object-0.12.
...
* gnu/packages/crates-io.scm (rust-object-0.12): Delete variable.
2022-10-24 17:40:54 +03:00
Efraim Flashner
bb913bb266
gnu: Remove rust-abscissa-derive-0.5.
...
* gnu/packages/crates-io.scm (rust-abscissa-derive-0.5): Delete variable.
2022-10-24 17:40:54 +03:00
Efraim Flashner
b928695fa4
gnu: Remove rust-addr2line-0.14.
...
* gnu/packages/crates-io.scm (rust-addr2line-0.14): Delete variable.
2022-10-24 17:40:54 +03:00
Efraim Flashner
f5b64ad721
gnu: Remove rust-bitcoin-hashes-0.9.
...
* gnu/packages/crates-io.scm (rust-bitcoin-hashes-0.9): Delete variable.
2022-10-24 17:40:54 +03:00
Efraim Flashner
44b4d62e9a
gnu: Remove rust-bitflags-0.5.
...
* gnu/packages/crates-io.scm (rust-bitflags-0.5): Delete variable.
2022-10-24 17:40:53 +03:00
Efraim Flashner
96da0fb89e
gnu: Remove rust-capnp-0.10.
...
* gnu/packages/crates-io.scm (rust-capnp-0.10): Delete variable.
2022-10-24 17:40:53 +03:00
Efraim Flashner
693a079485
gnu: Remove rust-color-backtrace-0.3.
...
* gnu/packages/crates-io.scm (rust-color-backtrace-0.3): Delete variable.
2022-10-24 17:40:53 +03:00
Efraim Flashner
ff35a7a434
gnu: Remove rust-cpp-demangle-0.2.
...
* gnu/packages/crates-io.scm (rust-cpp-demangle-0.2): Delete variable.
2022-10-24 17:40:52 +03:00
Efraim Flashner
909c8e3393
gnu: Remove rust-derive-builder-core-0.2.
...
* gnu/packages/crates-io.scm (rust-derive-builder-core-0.2): Delete variable.
2022-10-24 17:40:52 +03:00
Efraim Flashner
ed7f41045a
gnu: Remove rust-findshlibs-0.5.
...
* gnu/packages/crates-io.scm (rust-findshlibs-0.5): Delete variable.
2022-10-24 17:40:52 +03:00
Efraim Flashner
7bb75bcd96
gnu: Remove rust-fragile-0.3.
...
* gnu/packages/crates-io.scm (rust-fragile-0.3): Delete variable.
2022-10-24 17:40:52 +03:00
Efraim Flashner
893e040cc3
gnu: Remove rust-gimli-0.20.
...
* gnu/packages/crates-io.scm (rust-gimli-0.20): Delete variable.
2022-10-24 17:40:51 +03:00
Efraim Flashner
6af911133d
gnu: Remove rust-goblin-0.1.
...
* gnu/packages/crates-io.scm (rust-goblin-0.1): Delete variable.
2022-10-24 17:40:51 +03:00
Efraim Flashner
fc4dacc44c
gnu: Remove rust-gumdrop-0.7.
...
* gnu/packages/crates-io.scm (rust-gumdrop-0.7): Delete variable.
2022-10-24 17:40:51 +03:00
Efraim Flashner
444b930256
gnu: Remove rust-gumdrop-derive-0.7.
...
* gnu/packages/crates-io.scm (rust-gumdrop-derive-0.7): Delete variable.
2022-10-24 17:40:50 +03:00
Efraim Flashner
dbae44e229
gnu: Remove rust-hmac-0.4.
...
* gnu/packages/crates-io.scm (rust-hmac-0.4): Delete variable.
2022-10-24 17:40:50 +03:00
Efraim Flashner
81a474fd72
gnu: Remove rust-hyper-0.11.
...
* gnu/packages/crates-io.scm (rust-hyper-0.11): Delete variable.
2022-10-24 17:40:50 +03:00
Efraim Flashner
bbfb4d0ea4
gnu: Remove rust-iso8601-0.1.
...
* gnu/packages/crates-io.scm (rust-iso8601-0.1): Delete variable.
2022-10-24 17:40:49 +03:00
Efraim Flashner
81a06ee4c8
gnu: Remove rust-libsqlite3-sys-0.18.
...
* gnu/packages/crates-io.scm (rust-libsqlite3-sys-0.18): Delete variable.
2022-10-24 17:40:49 +03:00
Efraim Flashner
a779b7ac84
gnu: rust-cargo-edit: Update to 0.10.4.
...
* gnu/packages/rust-apps.scm (rust-cargo-edit): Update to 0.10.4.
[arguments]: Don't skip build. Don't install source.
[cargo-inputs]: Remove rust-atty-0.2, rust-error-chain-0.12,
rust-structopt-0.3. Replace rust-cargo-metadata-0.14 with 0.15,
rust-crates-index-0.17 with 0.18, rust-git2-0.12 with 0.14,
rust-toml-edit-0.3 with 0.14, rust-ureq-1 with 2. Add rust-anyhow-1,
rust-clap-3, rust-concolor-control-0.0.7, rust-indexmap-1,
rust-native-tls-0.2. Sort alphabetically.
[cargo-development-inputs]: Remove rust-pretty-assertions-0.6. Add
rust-snapbox-0.2, rust-trycmd-0.13, rust-url-2.
[inputs]: Replace libgit2-1.3 with libgit.
2022-10-24 17:40:49 +03:00
Efraim Flashner
70467596b2
gnu: rust-semver-1: Update to 1.0.14.
...
* gnu/packages/crates-io.scm (rust-semver-1): Update to 1.0.14.
[arguments]: Don't skip build.
2022-10-24 17:40:49 +03:00
Efraim Flashner
e7bca94dae
gnu: rust-cargo-platform-0.1: Update to 0.1.2.
...
* gnu/packages/crates-io.scm (rust-cargo-platform-0.1): Update to 0.1.2.
2022-10-24 17:40:48 +03:00
Efraim Flashner
0d9d36d913
gnu: rust-camino-1: Update to 1.1.1.
...
* gnu/packages/crates-io.scm (rust-camino-1): Update to 1.1.1.
[arguments]: Don't skip build. Remove custom phase.
[cargo-inputs]: Add rust-proptest-1.
[cargo-development-inputs]: Remove field.
2022-10-24 17:40:48 +03:00
Efraim Flashner
ac20c4a75d
gnu: rust-toml-edit-0.14: Update to 0.14.4.
...
* gnu/packages/crates-io.scm (rust-toml-edit-0.14): Update to 0.14.4.
2022-10-24 17:40:48 +03:00
Efraim Flashner
a9742f59f6
gnu: rust-assert-fs-1: Update to 1.0.7.
...
* gnu/packages/crates-io.scm (rust-assert-fs-1): Update to 1.0.7.
[cargo-inputs]: Add rust-concolor-0.0.8, rust-yansi-0.5.
2022-10-24 17:40:47 +03:00
Efraim Flashner
616830288d
gnu: Add rust-trycmd-0.13.
...
* gnu/packages/crates-io.scm (rust-trycmd-0.13): New variable.
2022-10-24 17:40:47 +03:00
Efraim Flashner
6b9f99e459
gnu: Add rust-snapbox-0.4.
...
* gnu/packages/crates-io.scm (rust-snapbox-0.4): New variable.
(rust-snapbox-0.2): Inherit from rust-snapbox-0.4.
2022-10-24 17:40:47 +03:00
Efraim Flashner
c6e2637bc1
gnu: Add rust-smartstring-1.
...
* gnu/packages/crates-io.scm (rust-smartstring-1): New variable.
(rust-smartstring-0.2): Inherit from rust-smartstring-1.
2022-10-24 17:40:47 +03:00
Efraim Flashner
1374b93a52
gnu: Add rust-libtest-mimic-0.5.
...
* gnu/packages/crates-io.scm (rust-libtest-mimic-0.5): New variable.
(rust-libtest-mimic-0.3): Inherit from rust-libtest-mimic-0.5.
2022-10-24 17:40:46 +03:00
Efraim Flashner
9867038f31
gnu: Add rust-libgit2-sys-0.13.
...
* gnu/packages/crates-io.scm (rust-libgit2-sys-0.13): New variable.
2022-10-24 17:40:46 +03:00
Efraim Flashner
fbd44e5ac5
gnu: Add rust-libgit2-sys-0.14.
...
* gnu/packages/crates-io.scm (rust-libgit2-sys-0.14): New variable.
(rust-libgit2-sys-0.12): Inherit from rust-libgit2-sys-0.12.
2022-10-24 17:40:46 +03:00
Efraim Flashner
8d685b9d74
gnu: Add rust-git2-0.14.
...
* gnu/packages/crates-io.scm (rust-git2-0.14): New variable.
2022-10-24 17:40:45 +03:00
Efraim Flashner
dbf2f3ef1a
gnu: Add rust-git2-0.15.
...
* gnu/packages/crates-io.scm (rust-git2-0.15): New variable.
(rust-git2-0.13): Inherit from rust-git2-0.15.
2022-10-24 17:40:45 +03:00
Efraim Flashner
819d31c507
gnu: Add rust-derive-builder-macro-0.11.
...
* gnu/packages/crates-io.scm (rust-derive-builder-macro-0.11): New
variable.
(rust-derive-builder-macro-0.10): Inherit from
rust-derive-builder-macro-0.11.
2022-10-24 17:40:45 +03:00
Efraim Flashner
dab464ea86
gnu: Add rust-derive-builder-core-0.11.
...
* gnu/packages/crates-io.scm (rust-derive-builder-core-0.11): New
variable.
(rust-derive-builder-core-0.10): Inherit from
rust-derive-builder-core-0.11.
2022-10-24 17:40:44 +03:00
Efraim Flashner
5f5b74fde2
gnu: Add rust-derive-builder-0.11.
...
* gnu/packages/crates-io.scm (rust-derive-builder-0.11): New variable.
(rust-derive-builder-0.10): Inherit from rust-derive-builder-0.11.
2022-10-24 17:40:44 +03:00
Efraim Flashner
d57ce8d4ef
gnu: Add rust-darling-macro-0.14.
...
* gnu/packages/crates-io.scm (rust-darling-macro-0.14): New variable.
(rust-darling-macro-0.13): Inherit from rust-darling-macro-0.14.
2022-10-24 17:40:44 +03:00
Efraim Flashner
9c406432e5
gnu: Add rust-darling-core-0.14.
...
* gnu/packages/crates-io.scm (rust-darling-core-0.14): New variable.
(rust-darling-core-0.13): Inherit from rust-darling-core-0.14.
2022-10-24 17:40:44 +03:00
Efraim Flashner
891a628c3a
gnu: Add rust-darling-0.14.
...
* gnu/packages/crates-io.scm (rust-darling-0.14): New variable.
(rust-darling-0.13): Inherit from rust-darling-0.13.
2022-10-24 17:40:43 +03:00
Efraim Flashner
a6aa1f7573
gnu: Add rust-crates-index-0.18.
...
* gnu/packages/crates-io.scm (rust-crates-index-0.18): New variable.
(rust-crates-index-0.17): Inherit from rust-crates-index-0.18.
2022-10-24 17:40:43 +03:00
Efraim Flashner
4a3736748c
gnu: Add rust-cargo-metadata-0.15.
...
* gnu/packages/crates-io.scm (rust-cargo-metadata-0.15): New variable.
(rust-cargo-metadata-0.14): Inherit from rust-cargo-metadata-0.15.
2022-10-24 17:40:43 +03:00
Efraim Flashner
f030f66daa
gnu: Add rust-snapbox-macros-0.3.
...
* gnu/packages/crates-io.scm (rust-snapbox-macros-0.3): New variable.
(rust-snapbox-macros-0.2): Inherit from rust-snapbox-macros-0.3.
2022-10-24 17:40:42 +03:00
Efraim Flashner
24964f7360
gnu: rust-cargo-edit: Add missing inputs.
...
* gnu/packages/rust-apps.scm (rust-cargo-edit)[native-inputs]: Add
pkg-config.
[inputs]: Add libgit2-1.3, libssh2, openssl, zlib.
2022-10-24 17:40:42 +03:00
Efraim Flashner
7ace10db60
gnu: rust-cargo-edit: Rename from rust-cargo-edit-0.8.
...
* gnu/packages/rust-apps.scm (rust-cargo-edit): Rename from ...
(rust-cargo-edit-0.8): ... this. Redefine as a deprecated package.
2022-10-24 17:40:42 +03:00
Efraim Flashner
09962d54c1
gnu: rust-cargo-edit-0.8: Move to rust-apps.scm.
...
* gnu/packages/crates-io.scm (rust-cargo-edit-0.8): Move to ...
* gnu/packages/rust-apps.scm (rust-cargo-edit-0.8): ... here.
2022-10-24 17:40:42 +03:00
Efraim Flashner
200405c490
gnu: Remove rust-shell2batch-0.4.
...
* gnu/packages/crates-io.scm (rust-shell2batch-0.4): Delete variable.
* gnu/packages/patches/rust-shell2batch-lint-fix.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2022-10-24 17:40:41 +03:00
Efraim Flashner
9f310ab6ca
gnu: Remove rust-tokio-named-pipes-0.1.
...
* gnu/packages/crates-io.scm (rust-tokio-named-pipes-0.1): Delete variable.
2022-10-24 17:40:41 +03:00
Efraim Flashner
5fd2ffc5b8
gnu: Remove rust-tracing-subscriber-0.1.
...
* gnu/packages/crates-io.scm (rust-tracing-subscriber-0.1): Delete variable.
2022-10-24 17:40:41 +03:00
Efraim Flashner
c9fc414f2c
gnu: Remove rust-tracing-tree-0.1.
...
* gnu/packages/crates-io.scm (rust-tracing-tree-0.1): Delete variable.
2022-10-24 17:40:40 +03:00
Efraim Flashner
636f3aac96
gnu: Remove rust-try-from-0.3.
...
* gnu/packages/crates-io.scm (rust-try-from-0.3): Delete variable.
2022-10-24 17:40:40 +03:00
Efraim Flashner
dc0ecc827e
gnu: Remove rust-unicode-categories-0.1.
...
* gnu/packages/crates-io.scm (rust-unicode-categories-0.1): Delete variable.
2022-10-24 17:40:40 +03:00
Efraim Flashner
242abc7b14
gnu: Remove rust-uom-0.31.
...
* gnu/packages/crates-io.scm (rust-uom-0.31): Delete variable.
2022-10-24 17:40:39 +03:00
Efraim Flashner
9e32b03a85
gnu: Remove rust-vecmath-1.
...
* gnu/packages/crates-io.scm (rust-vecmath-1): Delete variable.
2022-10-24 17:40:39 +03:00
Efraim Flashner
dcb79bacd9
gnu: Remove rust-weedle-0.10.
...
* gnu/packages/crates-io.scm (rust-weedle-0.10): Delete variable.
2022-10-24 17:40:39 +03:00
Efraim Flashner
d91b645df0
gnu: Remove rust-zstd-safe-2.
...
* gnu/packages/crates-io.scm (rust-zstd-safe-2): Delete variable.
2022-10-24 17:40:39 +03:00
Efraim Flashner
fe4abddd5a
gnu: Remove rust-cvss-1.
...
* gnu/packages/crates-io.scm (rust-cvss-1): Delete variable.
2022-10-24 17:40:38 +03:00
Efraim Flashner
cfefe01071
gnu: Remove rust-sysinfo-0.21.
...
* gnu/packages/crates-io.scm (rust-sysinfo-0.21): Delete variable.
2022-10-24 17:40:38 +03:00
Efraim Flashner
cc20d98cee
gnu: Remove rust-sysinfo-0.20.
...
* gnu/packages/crates-io.scm (rust-sysinfo-0.20): Delete variable.
2022-10-24 17:40:38 +03:00
Efraim Flashner
c714f9aba8
gnu: Remove rust-sysinfo-0.18.
...
* gnu/packages/crates-io.scm (rust-sysinfo-0.18): Delete variable.
2022-10-24 17:40:37 +03:00
Efraim Flashner
115ac422e9
gnu: Remove rust-sval-derive-0.5.
...
* gnu/packages/crates-io.scm (rust-sval-derive-0.5): Delete variable.
2022-10-24 17:40:37 +03:00
Efraim Flashner
e2a8393283
gnu: Remove rust-shader-version-0.6.
...
* gnu/packages/crates-io.scm (rust-shader-version-0.6): Delete variable.
2022-10-24 17:40:37 +03:00
Efraim Flashner
a080668a96
gnu: Remove rust-shadow-rs-0.6.
...
* gnu/packages/crates-io.scm (rust-shadow-rs-0.6): Delete variable.
2022-10-24 17:40:36 +03:00
Efraim Flashner
ecca9296d4
gnu: Remove rust-stackvector-1.
...
* gnu/packages/crates-io.scm (rust-stackvector-1): Delete variable.
2022-10-24 17:40:36 +03:00
Efraim Flashner
3809f9b333
gnu: Remove rust-static-assertions-0.3.
...
* gnu/packages/crates-io.scm (rust-static-assertions-0.3): Delete variable.
2022-10-24 17:40:36 +03:00
Efraim Flashner
a5f9e206a1
gnu: Remove rust-sval-0.5.
...
* gnu/packages/crates-io.scm (rust-sval-0.5): Delete variable.
2022-10-24 17:40:36 +03:00
Efraim Flashner
533f0528cc
gnu: Remove rust-sval-derive-0.4.
...
* gnu/packages/crates-io.scm (rust-sval-derive-0.4): Delete variable.
2022-10-24 17:40:35 +03:00
Efraim Flashner
925c0a9283
gnu: Remove rust-servo-freetype-sys-4.
...
* gnu/packages/crates-io.scm (rust-servo-freetype-sys-4): Delete variable.
2022-10-24 17:40:35 +03:00
Efraim Flashner
4c782ca3ff
gnu: Remove rust-serde-urlencoded-0.5.
...
* gnu/packages/crates-io.scm (rust-serde-urlencoded-0.5): Delete variable.
2022-10-24 17:40:35 +03:00
Efraim Flashner
2ba90123db
gnu: Remove rust-serde-value-0.6.
...
* gnu/packages/crates-io.scm (rust-serde-value-0.6): Delete variable.
2022-10-24 17:40:34 +03:00
Efraim Flashner
ef81274fad
gnu: Remove rust-servo-fontconfig-sys-4.
...
* gnu/packages/crates-io.scm (rust-servo-fontconfig-sys-4): Delete variable.
2022-10-24 17:40:34 +03:00
Efraim Flashner
83eac82c5e
gnu: Remove rust-secrecy-0.6.
...
* gnu/packages/crates-io.scm (rust-secrecy-0.6): Delete variable.
2022-10-24 17:40:34 +03:00
Efraim Flashner
814f3fa792
gnu: Remove rust-secp256k1-0.20.
...
* gnu/packages/crates-io.scm (rust-secp256k1-0.20): Delete variable.
2022-10-24 17:40:33 +03:00
Efraim Flashner
56d61009fb
gnu: Remove rust-sema-0.1.
...
* gnu/packages/crates-io.scm (rust-sema-0.1): Delete variable.
2022-10-24 17:40:33 +03:00
Efraim Flashner
c3beeb0e3e
gnu: Remove rust-serde-macros-0.4.
...
* gnu/packages/crates-io.scm (rust-serde-macros-0.4): Delete variable.
2022-10-24 17:40:33 +03:00
Efraim Flashner
8d67db2e69
gnu: Remove rust-s3handler-0.6.
...
* gnu/packages/crates-io.scm (rust-s3handler-0.6): Delete variable.
2022-10-24 17:40:33 +03:00
Efraim Flashner
a10c1f6607
gnu: Remove rust-rustc-ap-rustc-macros-654.
...
* gnu/packages/crates-io.scm (rust-rustc-ap-rustc-macros-654): Delete variable.
2022-10-24 17:40:32 +03:00
Efraim Flashner
872b61d8b0
gnu: Remove rust-polars-io-0.13.
...
* gnu/packages/crates-io.scm (rust-polars-io-0.13): Delete variable.
2022-10-24 17:40:32 +03:00
Efraim Flashner
1f4ce2bbba
gnu: Remove rust-proc-macro-error-0.4.
...
* gnu/packages/crates-io.scm (rust-proc-macro-error-0.4): Delete variable.
2022-10-24 17:40:32 +03:00
Efraim Flashner
988dd70fce
gnu: Remove rust-proc-macro-error-attr-0.4.
...
* gnu/packages/crates-io.scm (rust-proc-macro-error-attr-0.4): Delete variable.
2022-10-24 17:40:31 +03:00
Efraim Flashner
24ec23f5b2
gnu: Remove rust-pulldown-cmark-0.0.8.
...
* gnu/packages/crates-io.scm (rust-pulldown-cmark-0.0.8): Delete variable.
2022-10-24 17:40:31 +03:00
Efraim Flashner
cc1e9b5f36
gnu: Remove rust-racer-interner-0.1.
...
* gnu/packages/crates-io.scm (rust-racer-interner-0.1): Delete variable.
2022-10-24 17:40:31 +03:00
Efraim Flashner
e75d93f47d
gnu: Remove rust-read-color-1.
...
* gnu/packages/crates-io.scm (rust-read-color-1): Delete variable.
2022-10-24 17:40:31 +03:00
Efraim Flashner
dbf5817a29
gnu: Remove rust-ripemd-0.1.
...
* gnu/packages/crates-io.scm (rust-ripemd-0.1): Delete variable.
2022-10-24 17:40:30 +03:00
Efraim Flashner
641c5ce79c
gnu: Remove rust-rpassword-3.
...
* gnu/packages/crates-io.scm (rust-rpassword-3): Delete variable.
2022-10-24 17:40:30 +03:00
Efraim Flashner
7d22b49b6b
gnu: Remove rust-runtime-tokio-0.3.
...
* gnu/packages/crates-io.scm (rust-runtime-tokio-0.3): Delete variable.
2022-10-24 17:40:30 +03:00
Efraim Flashner
af965b6daf
gnu: Remove rust-rusqlite-0.23.
...
* gnu/packages/crates-io.scm (rust-rusqlite-0.23): Delete variable.
2022-10-24 17:40:29 +03:00
Efraim Flashner
184bff3638
gnu: Remove rust-rustc-ap-rustc-lexer-654.
...
* gnu/packages/crates-io.scm (rust-rustc-ap-rustc-lexer-654): Delete variable.
2022-10-24 17:40:29 +03:00
Efraim Flashner
0c04a11d28
gnu: Remove rust-rustc-ap-rustc-span-654.
...
* gnu/packages/crates-io.scm (rust-rustc-ap-rustc-span-654): Delete variable.
2022-10-24 17:40:29 +03:00
Efraim Flashner
61235ff700
gnu: Remove rust-polars-0.16.
...
* gnu/packages/crates-io.scm (rust-polars-0.16): Delete variable.
2022-10-24 17:40:28 +03:00
Efraim Flashner
5c514e00c3
gnu: Remove rust-polars-lazy-0.13.
...
* gnu/packages/crates-io.scm (rust-polars-lazy-0.13): Delete variable.
2022-10-24 17:40:28 +03:00
Efraim Flashner
283f4d0427
gnu: Remove rust-polars-0.15.
...
* gnu/packages/crates-io.scm (rust-polars-0.15): Delete variable.
2022-10-24 17:40:28 +03:00
Efraim Flashner
5e079c9285
gnu: Remove rust-mockito-0.23.
...
* gnu/packages/crates-io.scm (rust-mockito-0.23): Delete variable.
2022-10-24 17:40:28 +03:00
Efraim Flashner
abfd3a03c5
gnu: Remove rust-object-0.17.
...
* gnu/packages/crates-io.scm (rust-object-0.17): Delete variable.
2022-10-24 17:40:27 +03:00
Efraim Flashner
fd71ad0c98
gnu: Remove rust-onig-5.
...
* gnu/packages/crates-io.scm (rust-onig-5): Delete variable.
2022-10-24 17:40:27 +03:00
Efraim Flashner
192f6edcf9
gnu: Remove rust-onig-sys-69.2.
...
* gnu/packages/crates-io.scm (rust-onig-sys-69.2): Delete variable.
2022-10-24 17:40:27 +03:00
Efraim Flashner
bf24ffc44d
gnu: Remove rust-once-cell-0.1.
...
* gnu/packages/crates-io.scm (rust-once-cell-0.1): Delete variable.
2022-10-24 17:40:26 +03:00
Efraim Flashner
77359ddf0e
gnu: Remove rust-palette-derive-0.5.
...
* gnu/packages/crates-io.scm (rust-palette-derive-0.5): Delete variable.
2022-10-24 17:40:26 +03:00
Efraim Flashner
4836498c64
gnu: Remove rust-pbkdf2-0.7.
...
* gnu/packages/crates-io.scm (rust-pbkdf2-0.7): Delete variable.
2022-10-24 17:40:26 +03:00
Efraim Flashner
4e895062fe
gnu: Remove rust-pbkdf2-0.3.
...
* gnu/packages/crates-io.scm (rust-pbkdf2-0.3): Delete variable.
2022-10-24 17:40:25 +03:00
Efraim Flashner
db49befefb
gnu: Remove rust-platforms-2.
...
* gnu/packages/crates-io.scm (rust-platforms-2): Delete variable.
2022-10-24 17:40:25 +03:00
Efraim Flashner
7fc59c17f2
gnu: Remove rust-plist-0.4.
...
* gnu/packages/crates-io.scm (rust-plist-0.4): Delete variable.
2022-10-24 17:40:25 +03:00
Efraim Flashner
4c6185f948
gnu: Remove rust-polars-0.14.
...
* gnu/packages/crates-io.scm (rust-polars-0.14): Delete variable.
2022-10-24 17:40:25 +03:00
Efraim Flashner
1dcf027835
gnu: Remove rust-mockall-double-0.2.
...
* gnu/packages/crates-io.scm (rust-mockall-double-0.2): Delete variable.
2022-10-24 17:40:24 +03:00
Efraim Flashner
de7c2a0eb9
gnu: Remove rust-lmdb-rkv-sys-0.11.
...
* gnu/packages/crates-io.scm (rust-lmdb-rkv-sys-0.11): Delete variable.
2022-10-24 17:40:24 +03:00
Efraim Flashner
7a3263e046
gnu: Remove rust-locale-config-0.2.
...
* gnu/packages/crates-io.scm (rust-locale-config-0.2): Delete variable.
2022-10-24 17:40:24 +03:00
Efraim Flashner
61222872be
gnu: Remove rust-log-mdc-0.1.
...
* gnu/packages/crates-io.scm (rust-log-mdc-0.1): Delete variable.
2022-10-24 17:40:23 +03:00
Efraim Flashner
76872faa77
gnu: Remove rust-miniz-oxide-0.2.
...
* gnu/packages/crates-io.scm (rust-miniz-oxide-0.2): Delete variable.
2022-10-24 17:40:23 +03:00
Efraim Flashner
e9c424fa74
gnu: Remove rust-mockall-derive-0.10.
...
* gnu/packages/crates-io.scm (rust-mockall-derive-0.10): Delete variable.
2022-10-24 17:40:23 +03:00
Efraim Flashner
26f1da18c3
gnu: Remove rust-intervaltree-0.2.
...
* gnu/packages/crates-io.scm (rust-intervaltree-0.2): Delete variable.
2022-10-24 17:40:23 +03:00
Efraim Flashner
9414952ab3
gnu: Remove rust-isahc-0.7.
...
* gnu/packages/crates-io.scm (rust-isahc-0.7): Delete variable.
2022-10-24 17:40:22 +03:00
Efraim Flashner
68b3d41f11
gnu: Remove rust-lab-0.7.
...
* gnu/packages/crates-io.scm (rust-lab-0.7): Delete variable.
2022-10-24 17:40:22 +03:00
Efraim Flashner
24e56591b8
gnu: Remove rust-libsqlite3-sys-0.15.
...
* gnu/packages/crates-io.scm (rust-libsqlite3-sys-0.15): Delete variable.
2022-10-24 17:40:22 +03:00
Efraim Flashner
5aec81a175
gnu: Remove rust-lmdb-rkv-0.14.
...
* gnu/packages/crates-io.scm (rust-lmdb-rkv-0.14): Delete variable.
2022-10-24 17:40:21 +03:00
Efraim Flashner
a9ad62c929
gnu: Remove rust-crossterm-0.13.
...
* gnu/packages/crates-io.scm (rust-crossterm-0.13): Delete variable.
2022-10-24 17:40:21 +03:00
Efraim Flashner
36e9ed87ae
gnu: Remove rust-datetime-0.4.
...
* gnu/packages/crates-io.scm (rust-datetime-0.4): Delete variable.
2022-10-24 17:40:21 +03:00
Efraim Flashner
fcf7602a3b
gnu: Remove rust-dbus-0.6.
...
* gnu/packages/crates-io.scm (rust-dbus-0.6): Delete variable.
2022-10-24 17:40:20 +03:00
Efraim Flashner
6b2ea83c88
gnu: Remove rust-dialoguer-0.6.
...
* gnu/packages/crates-io.scm (rust-dialoguer-0.6): Delete variable.
2022-10-24 17:40:20 +03:00
Efraim Flashner
c56fa4eaef
gnu: Remove rust-diffus-derive-0.10.
...
* gnu/packages/crates-io.scm (rust-diffus-derive-0.10): Delete variable.
2022-10-24 17:40:20 +03:00
Efraim Flashner
edcca14fd5
gnu: Remove rust-directories-2.
...
* gnu/packages/crates-io.scm (rust-directories-2): Delete variable.
2022-10-24 17:40:19 +03:00
Efraim Flashner
782a6c34d0
gnu: Remove rust-downcast-0.10.
...
* gnu/packages/crates-io.scm (rust-downcast-0.10): Delete variable.
2022-10-24 17:40:19 +03:00
Efraim Flashner
701c8bd929
gnu: Remove rust-dtoa-0.2.
...
* gnu/packages/crates-io.scm (rust-dtoa-0.2): Delete variable.
2022-10-24 17:40:19 +03:00
Efraim Flashner
4de503990a
gnu: Remove rust-enumflags2-derive-0.6.
...
* gnu/packages/crates-io.scm (rust-enumflags2-derive-0.6): Delete variable.
2022-10-24 17:40:19 +03:00
Efraim Flashner
d4d881dd6f
gnu: Remove rust-ethereum-types-0.4.
...
* gnu/packages/crates-io.scm (rust-ethereum-types-0.4): Delete variable.
2022-10-24 17:40:18 +03:00
Efraim Flashner
15575fa6ec
gnu: Remove rust-float-next-after-0.1.
...
* gnu/packages/crates-io.scm (rust-float-next-after-0.1): Delete variable.
2022-10-24 17:40:18 +03:00
Efraim Flashner
adbf7887dc
gnu: Remove rust-freetype-sys-0.9.
...
* gnu/packages/crates-io.scm (rust-freetype-sys-0.9): Delete variable.
2022-10-24 17:40:18 +03:00
Efraim Flashner
dc24ad9127
gnu: Remove rust-fs-err-2.
...
* gnu/packages/crates-io.scm (rust-fs-err-2): Delete variable.
2022-10-24 17:40:17 +03:00
Efraim Flashner
36d0c3c5b5
gnu: Remove rust-gettext-rs-0.5.
...
* gnu/packages/crates-io.scm (rust-gettext-rs-0.5): Delete variable.
2022-10-24 17:40:17 +03:00
Efraim Flashner
9d25a6b54f
gnu: Remove rust-gfa-0.6.
...
* gnu/packages/crates-io.scm (rust-gfa-0.6): Delete variable.
2022-10-24 17:40:17 +03:00
Efraim Flashner
f10d1fac16
gnu: Remove rust-gimli-0.18.
...
* gnu/packages/crates-io.scm (rust-gimli-0.18): Delete variable.
2022-10-24 17:40:17 +03:00
Efraim Flashner
fe372c7cd1
gnu: Remove rust-globwalk-0.5.
...
* gnu/packages/crates-io.scm (rust-globwalk-0.5): Delete variable.
2022-10-24 17:40:16 +03:00
Efraim Flashner
f8b5638594
gnu: Remove rust-hyper-old-types-0.11.
...
* gnu/packages/crates-io.scm (rust-hyper-old-types-0.11): Delete variable.
2022-10-24 17:40:16 +03:00
Efraim Flashner
0468d4ab6e
gnu: Remove rust-hyper-tls-0.3.
...
* gnu/packages/crates-io.scm (rust-hyper-tls-0.3): Delete variable.
2022-10-24 17:40:16 +03:00
Efraim Flashner
32645391b9
gnu: Remove rust-integer-sqrt-0.1.
...
* gnu/packages/crates-io.scm (rust-integer-sqrt-0.1): Delete variable.
2022-10-24 17:40:15 +03:00
Efraim Flashner
78477f5097
gnu: Remove rust-interpolation-0.2.
...
* gnu/packages/crates-io.scm (rust-interpolation-0.2): Delete variable.
2022-10-24 17:40:15 +03:00
Efraim Flashner
d751b548b2
gnu: Remove rust-cloudflare-zlib-sys-0.2.
...
* gnu/packages/crates-io.scm (rust-cloudflare-zlib-sys-0.2): Delete variable.
2022-10-24 17:40:15 +03:00
Efraim Flashner
3ca578b074
gnu: Remove rust-cookie-store-0.7.
...
* gnu/packages/crates-io.scm (rust-cookie-store-0.7): Delete variable.
2022-10-24 17:40:14 +03:00
Efraim Flashner
ead7bf9f7d
gnu: Remove rust-countme-2.
...
* gnu/packages/crates-io.scm (rust-countme-2): Delete variable.
2022-10-24 17:40:14 +03:00
Efraim Flashner
e97a90943c
gnu: Remove rust-crates-io-0.31.
...
* gnu/packages/crates-io.scm (rust-crates-io-0.31): Delete variable.
2022-10-24 17:40:14 +03:00
Efraim Flashner
14ae9cbcb4
gnu: Remove rust-crossbeam-epoch-0.7.
...
* gnu/packages/crates-io.scm (rust-crossbeam-epoch-0.7): Delete variable.
2022-10-24 17:40:13 +03:00
Efraim Flashner
771c145c95
gnu: Remove rust-crossfont-0.2.
...
* gnu/packages/crates-io.scm (rust-crossfont-0.2): Delete variable.
2022-10-24 17:40:13 +03:00
Efraim Flashner
29f588867c
gnu: Remove rust-crossterm-0.18.
...
* gnu/packages/crates-io.scm (rust-crossterm-0.18): Delete variable.
2022-10-24 17:40:13 +03:00
Efraim Flashner
9e5f71ac1b
gnu: Remove rust-blake2-rfc-0.2.
...
* gnu/packages/crates-io.scm (rust-blake2-rfc-0.2): Delete variable.
2022-10-24 17:40:13 +03:00
Efraim Flashner
2a671f2a9c
gnu: Remove rust-blas-sys-0.7.
...
* gnu/packages/crates-io.scm (rust-blas-sys-0.7): Delete variable.
2022-10-24 17:40:12 +03:00
Efraim Flashner
5b7b3de84e
gnu: Remove rust-calamine-0.17.
...
* gnu/packages/crates-io.scm (rust-calamine-0.17): Delete variable.
2022-10-24 17:40:12 +03:00
Efraim Flashner
cd929b2039
gnu: Remove rust-capnp-futures-0.10.
...
* gnu/packages/crates-io.scm (rust-capnp-futures-0.10): Delete variable.
2022-10-24 17:40:12 +03:00
Efraim Flashner
bc672998b3
gnu: Remove rust-capnpc-0.10.
...
* gnu/packages/crates-io.scm (rust-capnpc-0.10): Delete variable.
2022-10-24 17:40:11 +03:00
Efraim Flashner
789a7a3d67
gnu: Remove rust-cargon-0.0.
...
* gnu/packages/crates-io.scm (rust-cargon-0.0): Delete variable.
2022-10-24 17:40:11 +03:00
Efraim Flashner
ab7c4c5a04
gnu: Remove rust-chalk-solve-0.68.
...
* gnu/packages/crates-io.scm (rust-chalk-solve-0.68): Delete variable.
2022-10-24 17:40:11 +03:00
Efraim Flashner
d5017df2df
gnu: Remove rust-cmac-0.5.
...
* gnu/packages/crates-io.scm (rust-cmac-0.5): Delete variable.
2022-10-24 17:40:11 +03:00
Efraim Flashner
dc0d73a2f5
gnu: rust-bindgen-0.49: Sort alphabetically in module.
...
* gnu/packages/crates-io.scm (rust-bindgen-0.49): Sort alphabetically in
module.
2022-10-24 17:40:10 +03:00
Efraim Flashner
043fdaeac9
gnu: Remove rust-piston2d-graphics-0.35.
...
* gnu/packages/crates-graphics.scm (rust-piston2d-graphics-0.35): Delete variable.
2022-10-24 17:40:10 +03:00
Efraim Flashner
7d7a4f13b1
gnu: Remove rust-pistoncore-glutin-window-0.63.
...
* gnu/packages/crates-graphics.scm (rust-pistoncore-glutin-window-0.63): Delete variable.
2022-10-24 17:40:10 +03:00
Efraim Flashner
5aeb4e2b5b
gnu: Remove rust-resize-0.3.
...
* gnu/packages/crates-graphics.scm (rust-resize-0.3): Delete variable.
2022-10-24 17:40:09 +03:00
Efraim Flashner
935ac2f449
gnu: Remove rust-cairo-rs-0.7.
...
* gnu/packages/crates-gtk.scm (rust-cairo-rs-0.7): Delete variable.
2022-10-24 17:40:09 +03:00
Efraim Flashner
1a7b2cb28c
gnu: Remove rust-gio-0.7.
...
* gnu/packages/crates-gtk.scm (rust-gio-0.7): Delete variable.
2022-10-24 17:40:09 +03:00
Efraim Flashner
84f2bc02b7
gnu: Remove rust-pango-0.7.
...
* gnu/packages/crates-gtk.scm (rust-pango-0.7): Delete variable.
2022-10-24 17:40:09 +03:00
Efraim Flashner
6a2561dc69
gnu: Remove rust-abscissa-core-0.5.
...
* gnu/packages/crates-io.scm (rust-abscissa-core-0.5): Delete variable.
2022-10-24 17:40:08 +03:00
Efraim Flashner
d18c601c22
gnu: Remove rust-addr2line-0.11.
...
* gnu/packages/crates-io.scm (rust-addr2line-0.11): Delete variable.
2022-10-24 17:40:08 +03:00
Efraim Flashner
d71fab1fcb
gnu: Remove rust-afl-0.5.
...
* gnu/packages/crates-io.scm (rust-afl-0.5): Delete variable.
2022-10-24 17:40:08 +03:00
Efraim Flashner
b032541125
gnu: Remove rust-bindgen-0.33.
...
* gnu/packages/crates-io.scm (rust-bindgen-0.33): Delete variable.
2022-10-24 17:40:07 +03:00
Efraim Flashner
157595a772
gnu: Remove rust-gfx-device-gl-0.16.
...
* gnu/packages/crates-graphics.scm (rust-gfx-device-gl-0.16): Delete variable.
2022-10-24 17:40:07 +03:00
Efraim Flashner
0b666b5624
gnu: Remove rust-lyon-extra-0.17.
...
* gnu/packages/crates-graphics.scm (rust-lyon-extra-0.17): Delete variable.
2022-10-24 17:40:07 +03:00
Efraim Flashner
00fa043936
gnu: Remove rust-piston-0.49.
...
* gnu/packages/crates-graphics.scm (rust-piston-0.49): Delete variable.
2022-10-24 17:40:06 +03:00
Efraim Flashner
abc613f1bd
gnu: Remove rust-piston2d-gfx-graphics-0.66.
...
* gnu/packages/crates-graphics.scm (rust-piston2d-gfx-graphics-0.66): Delete variable.
2022-10-24 17:40:06 +03:00
Nicolas Goaziou
ff69890d87
gnu: keepassxc: Update to 2.7.3.
...
* gnu/packages/password-utils.scm (keepassxc): Update to 2.7.3.
2022-10-24 16:21:17 +02:00
Nicolas Goaziou
6def368fe2
gnu: emacs-editorconfig: Update to 0.9.0.
...
* gnu/packages/emacs-xyz.scm (emacs-editorconfig): Update to 0.9.0.
2022-10-24 16:21:09 +02:00
Nicolas Goaziou
7c1d07eef3
gnu: giac: Update to 1.9.0-25.
...
* gnu/packages/algebra.scm (giac): Update to 1.9.0-25.
[source]<origin>: Remove patches.
* gnu/packages/patches/giac-pari-gp-anyarg.patch: Delete file.
* gnu/local.mk: Apply removal.
2022-10-24 16:20:05 +02:00
jgart
c1154c2aac
gnu: Add cl-langutils.
...
* gnu/packages/lisp-xyz.scm (cl-langutils, ecl-langutils, sbcl-langutils): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-24 14:12:49 +02:00
jgart
de50d00ca8
gnu: Add cl-stdutils.
...
* gnu/packages/lisp-xyz.scm (cl-stdutils, ecl-stdutils, sbcl-stdutils): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-24 14:04:30 +02:00
cage
8d4f598ba6
gnu: cl-purgatory: Update to 0.1.2.
...
* gnu/package/lisp-xyz.scm (sbcl-purgatory): Update to 0.1.2.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-24 13:54:42 +02:00
cage
daf60c59ab
gnu: cl-i18n: Update to 0.5.2.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-i18n): Update to 0.5.2.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-24 13:47:03 +02:00
cage
541c4998a8
gnu: cl+ssl: Update to 0.0.0-4.8c13317.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl+ssl): Update to 0.0.0-4.8c13317.
[native-inputs]: Add sbcl-trivial-sockets.
(ecl-cl+ssl)[native-inputs]: Remove sbcl-trivial-sockets.
[arguments]: Disable tests.
Co-authored-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-24 13:38:36 +02:00
jgart
343b745b0d
gnu: Add cl-select.
...
* gnu/packages/lisp-xyz.scm (cl-select, ecl-select, sbcl-select): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-24 13:17:08 +02:00
jgart
e3bb2acbfa
gnu: Add cl-eris.
...
* gnu/packages/lisp-xyz.scm (cl-eris, sbcl-eris): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-24 13:16:46 +02:00
Guillaume Le Vaillant
2435c431c7
gnu: cl-ironclad: Update to 0.58.
...
* gnu/packages/lisp-xyz.scm (sbcl-ironclad): Update to 0.58.
2022-10-24 11:53:28 +02:00
kiasoc5
569ba57aa3
gnu: bemenu: Update to 0.6.13.
...
* gnu/packages/xdisorg.scm (bemenu): Update to 0.6.13.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-10-24 15:54:14 +08:00
kiasoc5
7fcb2d4579
gnu: blueman: Update to 2.3.4.
...
* gnu/packages/networking.scm (blueman): Update to 2.3.4.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-10-24 15:54:14 +08:00
kiasoc5
3bc5413d2f
gnu: libostree: Update to 2022.6.
...
* gnu/packages/package-management.scm (libostree): Update to 2022.6.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-10-24 15:54:14 +08:00
Efraim Flashner
569edeb4d6
gnu: rust-swc: Add missing inputs.
...
* gnu/packages/rust-apps.scm (rust-swc)[cargo-inputs]: Add
rust-ordered-float-1, rust-phf-0.8.
2022-10-24 10:46:38 +03:00
Efraim Flashner
f2835233a1
gnu: rust-swc: Rename from rust-swc-1.
...
* gnu/packages/rust-apps.scm (rust-swc-1): Rename to ...
(rust-swc): ... this.
(rust-swc-1): Add as deprecated package.
2022-10-24 10:46:38 +03:00
Efraim Flashner
41659f9c1d
gnu: rust-swc-1: Move to rust-apps.
...
* gnu/packages/crates-io.scm (rust-swc-1): Move from here ...
* gnu/packages/rust-apps.scm (rust-swc-1): ... to here.
2022-10-24 10:46:38 +03:00
Efraim Flashner
a869340849
gnu: rust-news-flash-1: Add note to not remove package.
...
* gnu/packages/crates-io.scm (rust-news-flash-1): Add a comment to not
remove this package.
2022-10-24 10:46:37 +03:00
Efraim Flashner
79e616fd76
gnu: rust-libpijul-0.12: Add note to not remove package.
...
* gnu/packages/crates-io.scm (rust-libpijul-0.12): Add a comment to not
remove this package.
2022-10-24 10:46:37 +03:00
Efraim Flashner
b3148f668c
gnu: Remove rust-winpty-sys-0.4.
...
* gnu/packages/crates-io.scm (rust-winpty-sys-0.4): Delete variable.
2022-10-24 10:46:37 +03:00
Efraim Flashner
4103d3d729
gnu: Remove rust-yeslogic-fontconfig-sys-2.
...
* gnu/packages/crates-io.scm (rust-yeslogic-fontconfig-sys-2): Delete variable.
2022-10-24 10:46:36 +03:00
Efraim Flashner
3db2f48c07
gnu: Remove rust-zoneinfo-compiled-0.4.
...
* gnu/packages/crates-io.scm (rust-zoneinfo-compiled-0.4): Delete variable.
2022-10-24 10:46:36 +03:00
Efraim Flashner
5aa9b4dfa8
gnu: Remove rust-zstd-0.5.
...
* gnu/packages/crates-io.scm (rust-zstd-0.5): Delete variable.
2022-10-24 10:46:36 +03:00
Efraim Flashner
447a1d9223
gnu: Remove rust-ptree-0.3.
...
* gnu/packages/crates-io.scm (rust-ptree-0.3): Delete variable.
2022-10-24 10:46:36 +03:00
Efraim Flashner
33ce969b74
gnu: Remove rust-impl-num-traits-0.1.
...
* gnu/packages/crates-io.scm (rust-impl-num-traits-0.1): Delete variable.
2022-10-24 10:46:35 +03:00
Efraim Flashner
ce618da813
gnu: Remove rust-temporary-0.6.
...
* gnu/packages/crates-io.scm (rust-temporary-0.6): Delete variable.
2022-10-24 10:46:35 +03:00
Efraim Flashner
af3043d540
gnu: Remove rust-terminfo-0.6.
...
* gnu/packages/crates-io.scm (rust-terminfo-0.6): Delete variable.
2022-10-24 10:46:35 +03:00
Efraim Flashner
dfe71ec020
gnu: Remove rust-termios-0.2.
...
* gnu/packages/crates-io.scm (rust-termios-0.2): Delete variable.
2022-10-24 10:46:34 +03:00
Efraim Flashner
063f8b5e2a
gnu: Remove rust-test-generator-0.3.
...
* gnu/packages/crates-io.scm (rust-test-generator-0.3): Delete variable.
2022-10-24 10:46:34 +03:00
Efraim Flashner
e3f2ae6bd2
gnu: Remove rust-thrussh-libsodium-0.1.
...
* gnu/packages/crates-io.scm (rust-thrussh-libsodium-0.1): Delete variable.
2022-10-24 10:46:34 +03:00
Efraim Flashner
9a60d27dce
gnu: Remove rust-tokio-net-0.2.
...
* gnu/packages/crates-io.scm (rust-tokio-net-0.2): Delete variable.
2022-10-24 10:46:34 +03:00
Efraim Flashner
3bda43cda2
gnu: Remove rust-tokio-socks-0.2.
...
* gnu/packages/crates-io.scm (rust-tokio-socks-0.2): Delete variable.
2022-10-24 10:46:33 +03:00
Efraim Flashner
c20148e034
gnu: Remove rust-tracing-fmt-0.1.
...
* gnu/packages/crates-io.scm (rust-tracing-fmt-0.1): Delete variable.
2022-10-24 10:46:33 +03:00
Efraim Flashner
40c72809b3
gnu: Remove rust-trash-1.
...
* gnu/packages/crates-io.scm (rust-trash-1): Delete variable.
2022-10-24 10:46:33 +03:00
Efraim Flashner
44ac2bddca
gnu: Remove rust-trycmd-0.13.
...
* gnu/packages/crates-io.scm (rust-trycmd-0.13): Delete variable.
2022-10-24 10:46:32 +03:00
Efraim Flashner
4252b8979b
gnu: Remove rust-tui-0.14.
...
* gnu/packages/crates-io.scm (rust-tui-0.14): Delete variable.
2022-10-24 10:46:32 +03:00
Efraim Flashner
9b9765b03a
gnu: Remove rust-uom-0.30.
...
* gnu/packages/crates-io.scm (rust-uom-0.30): Delete variable.
2022-10-24 10:46:32 +03:00
Efraim Flashner
2eaa7f1d4c
gnu: Remove rust-users-0.9.
...
* gnu/packages/crates-io.scm (rust-users-0.9): Delete variable.
2022-10-24 10:46:31 +03:00
Efraim Flashner
766c06fc83
gnu: Remove rust-versions-3.
...
* gnu/packages/crates-io.scm (rust-versions-3): Delete variable.
2022-10-24 10:46:31 +03:00
Efraim Flashner
cc4b62a4ed
gnu: Remove rust-wasi-0.5.
...
* gnu/packages/crates-io.scm (rust-wasi-0.5): Delete variable.
2022-10-24 10:46:31 +03:00
Efraim Flashner
662d50ae5a
gnu: Remove rust-wasm-bindgen-console-logger-0.1.
...
* gnu/packages/crates-io.scm (rust-wasm-bindgen-console-logger-0.1): Delete variable.
2022-10-24 10:46:31 +03:00
Efraim Flashner
4e9471f9ce
gnu: Remove rust-wasm-bindgen-webidl-0.2.
...
* gnu/packages/crates-io.scm (rust-wasm-bindgen-webidl-0.2): Delete variable.
2022-10-24 10:46:30 +03:00
Efraim Flashner
5f23551e6d
gnu: Remove rust-win-crypto-ng-0.4.
...
* gnu/packages/crates-io.scm (rust-win-crypto-ng-0.4): Delete variable.
2022-10-24 10:46:30 +03:00
Efraim Flashner
1f6981d332
gnu: Remove rust-syn-test-suite-0.
...
* gnu/packages/crates-io.scm (rust-syn-test-suite-0): Delete variable.
2022-10-24 10:46:30 +03:00
Efraim Flashner
8e323ba986
gnu: Remove rust-synstructure-0.10.
...
* gnu/packages/crates-io.scm (rust-synstructure-0.10): Delete variable.
2022-10-24 10:46:29 +03:00
Efraim Flashner
6330e3f60f
gnu: Remove rust-syntect-3.
...
* gnu/packages/crates-io.scm (rust-syntect-3): Delete variable.
2022-10-24 10:46:29 +03:00
Efraim Flashner
981e1f54df
gnu: Remove rust-sys-info-0.7.
...
* gnu/packages/crates-io.scm (rust-sys-info-0.7): Delete variable.
2022-10-24 10:46:29 +03:00
Efraim Flashner
0d05a9b6d5
gnu: Remove rust-sysinfo-0.16.
...
* gnu/packages/crates-io.scm (rust-sysinfo-0.16): Delete variable.
2022-10-24 10:46:29 +03:00
Efraim Flashner
e010880b09
gnu: Remove rust-target-lexicon-0.11.
...
* gnu/packages/crates-io.scm (rust-target-lexicon-0.11): Delete variable.
2022-10-24 10:46:28 +03:00
Efraim Flashner
0ab0ae1ca6
gnu: Remove rust-tempfile-2.
...
* gnu/packages/crates-io.scm (rust-tempfile-2): Delete variable.
2022-10-24 10:46:28 +03:00
Efraim Flashner
5818fbcbbe
gnu: Remove rust-snake-case-0.3.
...
* gnu/packages/crates-io.scm (rust-snake-case-0.3): Delete variable.
2022-10-24 10:46:28 +03:00
Efraim Flashner
14a43d6a11
gnu: Remove rust-sourcefile-0.1.
...
* gnu/packages/crates-io.scm (rust-sourcefile-0.1): Delete variable.
2022-10-24 10:46:27 +03:00
Efraim Flashner
0b59d10382
gnu: Remove rust-spin-0.7.
...
* gnu/packages/crates-io.scm (rust-spin-0.7): Delete variable.
2022-10-24 10:46:27 +03:00
Efraim Flashner
8bf35a9823
gnu: Remove rust-starship-module-config-derive-0.2.
...
* gnu/packages/crates-io.scm (rust-starship-module-config-derive-0.2): Delete variable.
2022-10-24 10:46:27 +03:00
Efraim Flashner
9ef79c14ef
gnu: Remove rust-succinct-0.5.
...
* gnu/packages/crates-io.scm (rust-succinct-0.5): Delete variable.
2022-10-24 10:46:26 +03:00
Efraim Flashner
db3141eabb
gnu: Remove rust-surf-1.
...
* gnu/packages/crates-io.scm (rust-surf-1): Delete variable.
2022-10-24 10:46:26 +03:00
Efraim Flashner
404c9bd588
gnu: Remove rust-sval-0.4.
...
* gnu/packages/crates-io.scm (rust-sval-0.4): Delete variable.
2022-10-24 10:46:26 +03:00
Efraim Flashner
636854c747
gnu: Remove rust-rpassword-2.
...
* gnu/packages/crates-io.scm (rust-rpassword-2): Delete variable.
2022-10-24 10:46:26 +03:00
Efraim Flashner
9507a13d2b
gnu: Remove rust-rusqlite-0.19.
...
* gnu/packages/crates-io.scm (rust-rusqlite-0.19): Delete variable.
2022-10-24 10:46:25 +03:00
Efraim Flashner
bba8ab4128
gnu: Remove rust-rustsec-0.25.
...
* gnu/packages/crates-io.scm (rust-rustsec-0.25): Delete variable.
2022-10-24 10:46:25 +03:00
Efraim Flashner
eb3c379477
gnu: Remove rust-rust-argon2-0.5.
...
* gnu/packages/crates-io.scm (rust-rust-argon2-0.5): Delete variable.
2022-10-24 10:46:25 +03:00
Efraim Flashner
3d77941b6f
gnu: Remove rust-rustc-ap-rustc-ast-654.
...
* gnu/packages/crates-io.scm (rust-rustc-ap-rustc-ast-654): Delete variable.
2022-10-24 10:46:24 +03:00
Efraim Flashner
0752c4f473
gnu: Remove rust-rustc-ap-rustc-target-654.
...
* gnu/packages/crates-io.scm (rust-rustc-ap-rustc-target-654): Delete variable.
2022-10-24 10:46:24 +03:00
Efraim Flashner
4a00971ecc
gnu: Remove rust-rustc-tools-util-0.2.
...
* gnu/packages/crates-io.scm (rust-rustc-tools-util-0.2): Delete variable.
2022-10-24 10:46:24 +03:00
Efraim Flashner
90126f5f56
gnu: Remove rust-rustls-ffi-0.8.
...
* gnu/packages/crates-io.scm (rust-rustls-ffi-0.8): Delete variable.
2022-10-24 10:46:24 +03:00
Efraim Flashner
590e92562b
gnu: Remove rust-s3handler-0.5.
...
* gnu/packages/crates-io.scm (rust-s3handler-0.5): Delete variable.
2022-10-24 10:46:23 +03:00
Efraim Flashner
ede79f7e9e
gnu: Remove rust-scrypt-0.2.
...
* gnu/packages/crates-io.scm (rust-scrypt-0.2): Delete variable.
2022-10-24 10:46:23 +03:00
Efraim Flashner
62fc55529d
gnu: Remove rust-serde-cbor-0.10.
...
* gnu/packages/crates-io.scm (rust-serde-cbor-0.10): Delete variable.
2022-10-24 10:46:23 +03:00
Efraim Flashner
cd49b60126
gnu: Remove rust-serde-regex-1.
...
* gnu/packages/crates-io.scm (rust-serde-regex-1): Delete variable.
2022-10-24 10:46:22 +03:00
Efraim Flashner
78db28b603
gnu: Remove rust-serde-xml-rs-0.4.
...
* gnu/packages/crates-io.scm (rust-serde-xml-rs-0.4): Delete variable.
2022-10-24 10:46:22 +03:00
Efraim Flashner
92fc531a99
gnu: Remove rust-servo-fontconfig-0.4.
...
* gnu/packages/crates-io.scm (rust-servo-fontconfig-0.4): Delete variable.
2022-10-24 10:46:22 +03:00
Efraim Flashner
dacfecff22
gnu: Remove rust-shadow-rs-0.5.
...
* gnu/packages/crates-io.scm (rust-shadow-rs-0.5): Delete variable.
2022-10-24 10:46:22 +03:00
Efraim Flashner
4c867f6f06
gnu: Remove rust-simd-0.1.
...
* gnu/packages/crates-io.scm (rust-simd-0.1): Delete variable.
2022-10-24 10:46:21 +03:00
Efraim Flashner
0597b98385
gnu: Remove rust-size-format-1.
...
* gnu/packages/crates-io.scm (rust-size-format-1): Delete variable.
2022-10-24 10:46:21 +03:00
Efraim Flashner
fe32ddbc02
gnu: Remove rust-skeptic-0.9.
...
* gnu/packages/crates-io.scm (rust-skeptic-0.9): Delete variable.
2022-10-24 10:46:21 +03:00
Efraim Flashner
a47c902755
gnu: Remove rust-path-slash-0.1.
...
* gnu/packages/crates-io.scm (rust-path-slash-0.1): Delete variable.
2022-10-24 10:46:20 +03:00
Efraim Flashner
68fa820422
gnu: Remove rust-smallbitvec-2.
...
* gnu/packages/crates-io.scm (rust-smallbitvec-2): Delete variable.
2022-10-24 10:46:20 +03:00
Efraim Flashner
8ed2d5dc3d
gnu: Remove rust-snailquote-0.3.
...
* gnu/packages/crates-io.scm (rust-snailquote-0.3): Delete variable.
2022-10-24 10:46:20 +03:00
Efraim Flashner
20693f7783
gnu: Remove rust-rkv-0.10.
...
* gnu/packages/crates-io.scm (rust-rkv-0.10): Delete variable.
2022-10-24 10:46:19 +03:00
Efraim Flashner
b2dc3f1d91
gnu: Remove rust-route-recognizer-0.2.
...
* gnu/packages/crates-io.scm (rust-route-recognizer-0.2): Delete variable.
2022-10-24 10:46:19 +03:00
Efraim Flashner
29ec99dad9
gnu: Remove rust-rowan-0.13.
...
* gnu/packages/crates-io.scm (rust-rowan-0.13): Delete variable.
2022-10-24 10:46:19 +03:00
Efraim Flashner
2b6f344918
gnu: Remove rust-rls-span-0.5.
...
* gnu/packages/crates-io.scm (rust-rls-span-0.5): Delete variable.
2022-10-24 10:46:19 +03:00
Efraim Flashner
2e5c08bb05
gnu: Remove rust-quick-csv-0.1.
...
* gnu/packages/crates-io.scm (rust-quick-csv-0.1): Delete variable.
2022-10-24 10:46:18 +03:00
Efraim Flashner
1972dffe00
gnu: Remove rust-racer-cargo-metadata-0.1.
...
* gnu/packages/crates-io.scm (rust-racer-cargo-metadata-0.1): Delete variable.
2022-10-24 10:46:18 +03:00
Efraim Flashner
8e53b618e9
gnu: Remove rust-rand-xoshiro-0.3.
...
* gnu/packages/crates-io.scm (rust-rand-xoshiro-0.3): Delete variable.
2022-10-24 10:46:18 +03:00
Efraim Flashner
5d7abeaa66
gnu: Remove rust-randomize-3.
...
* gnu/packages/crates-io.scm (rust-randomize-3): Delete variable.
2022-10-24 10:46:17 +03:00
Efraim Flashner
f90ac83f09
gnu: Remove rust-reqwest-0.9.
...
* gnu/packages/crates-io.scm (rust-reqwest-0.9): Delete variable.
2022-10-24 10:46:17 +03:00
Efraim Flashner
bdb5192306
gnu: Remove rust-rlp-0.3.
...
* gnu/packages/crates-io.scm (rust-rlp-0.3): Delete variable.
2022-10-24 10:46:17 +03:00
Efraim Flashner
2fbcb523fa
gnu: Remove rust-parity-crypto-0.9.
...
* gnu/packages/crates-io.scm (rust-parity-crypto-0.9): Delete variable.
2022-10-24 10:46:17 +03:00
Efraim Flashner
988f8873ef
gnu: Remove rust-pathdiff-0.1.
...
* gnu/packages/crates-io.scm (rust-pathdiff-0.1): Delete variable.
2022-10-24 10:46:16 +03:00
Efraim Flashner
593233cab8
gnu: Remove rust-pnacl-build-helper-1.
...
* gnu/packages/crates-io.scm (rust-pnacl-build-helper-1): Delete variable.
2022-10-24 10:46:16 +03:00
Efraim Flashner
23dfc00197
gnu: Remove rust-podio-0.1.
...
* gnu/packages/crates-io.scm (rust-podio-0.1): Delete variable.
2022-10-24 10:46:16 +03:00
Efraim Flashner
8903abe31d
gnu: Remove rust-polars-0.13.
...
* gnu/packages/crates-io.scm (rust-polars-0.13): Delete variable.
2022-10-24 10:46:15 +03:00
Efraim Flashner
807afdd8e3
gnu: Remove rust-portpicker-0.1.
...
* gnu/packages/crates-io.scm (rust-portpicker-0.1): Delete variable.
2022-10-24 10:46:15 +03:00
Efraim Flashner
b835631563
gnu: Remove rust-pretty-hex-0.2.
...
* gnu/packages/crates-io.scm (rust-pretty-hex-0.2): Delete variable.
2022-10-24 10:46:15 +03:00
Efraim Flashner
7646a364da
gnu: Remove rust-process-control-3.
...
* gnu/packages/crates-io.scm (rust-process-control-3): Delete variable.
2022-10-24 10:46:15 +03:00
Efraim Flashner
c9d9db88da
gnu: Remove rust-progrs-0.1.
...
* gnu/packages/crates-io.scm (rust-progrs-0.1): Delete variable.
2022-10-24 10:46:14 +03:00
Efraim Flashner
6549d6af2b
gnu: Remove rust-pulldown-cmark-to-cmark-6.
...
* gnu/packages/crates-io.scm (rust-pulldown-cmark-to-cmark-6): Delete variable.
2022-10-24 10:46:14 +03:00
Efraim Flashner
26cec7549f
gnu: Remove rust-query-interface-0.3.
...
* gnu/packages/crates-io.scm (rust-query-interface-0.3): Delete variable.
2022-10-24 10:46:14 +03:00
Efraim Flashner
f07695705c
gnu: Remove rust-multi-default-trait-impl-0.1.
...
* gnu/packages/crates-io.scm (rust-multi-default-trait-impl-0.1): Delete variable.
2022-10-24 10:46:13 +03:00
Efraim Flashner
426bb5c1ec
gnu: Remove rust-nasm-rs-0.1.
...
* gnu/packages/crates-io.scm (rust-nasm-rs-0.1): Delete variable.
2022-10-24 10:46:13 +03:00
Efraim Flashner
58529b8327
gnu: Remove rust-nalgebra-0.18.
...
* gnu/packages/crates-io.scm (rust-nalgebra-0.18): Delete variable.
2022-10-24 10:46:13 +03:00
Efraim Flashner
616b9f7b4d
gnu: Remove rust-named-pipe-0.4.
...
* gnu/packages/crates-io.scm (rust-named-pipe-0.4): Delete variable.
2022-10-24 10:46:12 +03:00
Efraim Flashner
3f0ff3db2a
gnu: Remove rust-nipper-0.1.
...
* gnu/packages/crates-io.scm (rust-nipper-0.1): Delete variable.
2022-10-24 10:46:12 +03:00
Efraim Flashner
e92850e6bf
gnu: Remove rust-nom-2.
...
* gnu/packages/crates-io.scm (rust-nom-2): Delete variable.
2022-10-24 10:46:12 +03:00
Efraim Flashner
1aa1c0ccc7
gnu: Remove rust-nom-locate-4.
...
* gnu/packages/crates-io.scm (rust-nom-locate-4): Delete variable.
2022-10-24 10:46:12 +03:00
Efraim Flashner
4b7661aa34
gnu: Remove rust-noop-proc-macro-0.2.
...
* gnu/packages/crates-io.scm (rust-noop-proc-macro-0.2): Delete variable.
2022-10-24 10:46:11 +03:00
Efraim Flashner
4de2916d38
gnu: Remove rust-noise-0.7.
...
* gnu/packages/crates-io.scm (rust-noise-0.7): Delete variable.
2022-10-24 10:46:11 +03:00
Efraim Flashner
dc1240caea
gnu: Remove rust-num-bigint-dig-0.6.
...
* gnu/packages/crates-io.scm (rust-num-bigint-dig-0.6): Delete variable.
2022-10-24 10:46:11 +03:00
Efraim Flashner
3fdfffb513
gnu: Remove rust-os-info-3.
...
* gnu/packages/crates-io.scm (rust-os-info-3): Delete variable.
2022-10-24 10:46:10 +03:00
Efraim Flashner
ebb9961c26
gnu: Remove rust-palette-0.5.
...
* gnu/packages/crates-io.scm (rust-palette-0.5): Delete variable.
2022-10-24 10:46:10 +03:00
Efraim Flashner
3666f7f812
gnu: Remove rust-parity-bytes-0.1.
...
* gnu/packages/crates-io.scm (rust-parity-bytes-0.1): Delete variable.
2022-10-24 10:46:10 +03:00
Efraim Flashner
cc2632b3c3
gnu: Remove rust-parity-tokio-ipc-0.4.
...
* gnu/packages/crates-io.scm (rust-parity-tokio-ipc-0.4): Delete variable.
2022-10-24 10:46:10 +03:00
Efraim Flashner
4d7ebdd78d
gnu: Remove rust-mpris-player-0.6.
...
* gnu/packages/crates-io.scm (rust-mpris-player-0.6): Delete variable.
2022-10-24 10:46:09 +03:00
Efraim Flashner
9e805dea3d
gnu: Remove rust-mp4parse-0.11.
...
* gnu/packages/crates-io.scm (rust-mp4parse-0.11): Delete variable.
2022-10-24 10:46:09 +03:00
Efraim Flashner
bd108cb2c9
gnu: Remove rust-logtest-2.
...
* gnu/packages/crates-io.scm (rust-logtest-2): Delete variable.
2022-10-24 10:46:09 +03:00
Efraim Flashner
c5a52ba3b8
gnu: Remove rust-lscolors-0.6.
...
* gnu/packages/crates-io.scm (rust-lscolors-0.6): Delete variable.
2022-10-24 10:46:08 +03:00
Efraim Flashner
7683e9f526
gnu: Remove rust-make-cmd-0.1.
...
* gnu/packages/crates-io.scm (rust-make-cmd-0.1): Delete variable.
2022-10-24 10:46:08 +03:00
Efraim Flashner
857e3f8b3f
gnu: Remove rust-mdns-0.3.
...
* gnu/packages/crates-io.scm (rust-mdns-0.3): Delete variable.
2022-10-24 10:46:08 +03:00
Efraim Flashner
cf19b6b8df
gnu: Remove rust-memoffset-0.2.
...
* gnu/packages/crates-io.scm (rust-memoffset-0.2): Delete variable.
2022-10-24 10:46:07 +03:00
Efraim Flashner
12b4572d95
gnu: Remove rust-metal-0.14.
...
* gnu/packages/crates-io.scm (rust-metal-0.14): Delete variable.
2022-10-24 10:46:07 +03:00
Efraim Flashner
b4f0428383
gnu: Remove rust-minimal-lexical-0.1.
...
* gnu/packages/crates-io.scm (rust-minimal-lexical-0.1): Delete variable.
2022-10-24 10:46:07 +03:00
Efraim Flashner
31eec02654
gnu: Remove rust-miniz-oxide-c-api-0.2.
...
* gnu/packages/crates-io.scm (rust-miniz-oxide-c-api-0.2): Delete variable.
2022-10-24 10:46:07 +03:00
Efraim Flashner
bc1f3f7218
gnu: Remove rust-minus-3.
...
* gnu/packages/crates-io.scm (rust-minus-3): Delete variable.
2022-10-24 10:46:06 +03:00
Efraim Flashner
1283d99549
gnu: Remove rust-mio-anonymous-pipes-0.1.
...
* gnu/packages/crates-io.scm (rust-mio-anonymous-pipes-0.1): Delete variable.
2022-10-24 10:46:06 +03:00
Efraim Flashner
7a0e120677
gnu: Remove rust-mockall-0.10.
...
* gnu/packages/crates-io.scm (rust-mockall-0.10): Delete variable.
2022-10-24 10:46:06 +03:00
Efraim Flashner
a5d23b79eb
gnu: Remove rust-mp4-0.8.
...
* gnu/packages/crates-io.scm (rust-mp4-0.8): Delete variable.
2022-10-24 10:46:05 +03:00
Efraim Flashner
aaa1b14d6d
gnu: Remove rust-dav1d-0.6.
...
* gnu/packages/crates-graphics.scm (rust-dav1d-0.6): Delete variable.
2022-10-24 10:46:05 +03:00
Efraim Flashner
1ca0e31322
gnu: Remove rust-dcv-color-primitives-0.1.
...
* gnu/packages/crates-graphics.scm (rust-dcv-color-primitives-0.1): Delete variable.
2022-10-24 10:46:05 +03:00
Efraim Flashner
f2c54348c9
gnu: Remove rust-ichwh-0.3.
...
* gnu/packages/crates-graphics.scm (rust-ichwh-0.3): Delete variable.
2022-10-24 10:46:05 +03:00
Efraim Flashner
7dbe78488c
gnu: Remove rust-lyon-tessellation-0.17.
...
* gnu/packages/crates-graphics.scm (rust-lyon-tessellation-0.17): Delete variable.
2022-10-24 10:46:04 +03:00
Efraim Flashner
c974ba44b8
gnu: Remove rust-piston-window-0.105.
...
* gnu/packages/crates-graphics.scm (rust-piston-window-0.105): Delete variable.
2022-10-24 10:46:04 +03:00
Efraim Flashner
a417c6fb51
gnu: Remove rust-smithay-clipboard-0.3.
...
* gnu/packages/crates-graphics.scm (rust-smithay-clipboard-0.3): Delete variable.
2022-10-24 10:46:04 +03:00
Efraim Flashner
858a704a23
gnu: Remove rust-x11-clipboard-0.4.
...
* gnu/packages/crates-graphics.scm (rust-x11-clipboard-0.4): Delete variable.
2022-10-24 10:46:04 +03:00
Efraim Flashner
c0a2998bee
gnu: Remove rust-y4m-0.5.
...
* gnu/packages/crates-graphics.scm (rust-y4m-0.5): Delete variable.
2022-10-24 10:46:03 +03:00
Efraim Flashner
66bcbea9a3
gnu: Remove rust-gdk-pixbuf-0.7.
...
* gnu/packages/crates-gtk.scm (rust-gdk-pixbuf-0.7): Delete variable.
2022-10-24 10:46:03 +03:00
Efraim Flashner
853efcd3d0
gnu: Remove rust-pangocairo-0.8.
...
* gnu/packages/crates-gtk.scm (rust-pangocairo-0.8): Delete variable.
2022-10-24 10:46:03 +03:00
Efraim Flashner
c2475eaf18
gnu: Remove rust-addr2line-0.9.
...
* gnu/packages/crates-io.scm (rust-addr2line-0.9): Delete variable.
2022-10-24 10:46:02 +03:00
Efraim Flashner
7e2ecaa745
gnu: Remove rust-afl-0.4.
...
* gnu/packages/crates-io.scm (rust-afl-0.4): Delete variable.
2022-10-24 10:46:02 +03:00
Efraim Flashner
b157f6e3f3
gnu: Remove rust-arbitrary-0.2.
...
* gnu/packages/crates-io.scm (rust-arbitrary-0.2): Delete variable.
2022-10-24 10:46:02 +03:00
Efraim Flashner
79b402cb9b
gnu: Remove rust-argon2rs-0.2.
...
* gnu/packages/crates-io.scm (rust-argon2rs-0.2): Delete variable.
2022-10-24 10:46:02 +03:00
Efraim Flashner
7d38ae4c52
gnu: Remove rust-assert-impl-0.1.
...
* gnu/packages/crates-io.scm (rust-assert-impl-0.1): Delete variable.
2022-10-24 10:46:01 +03:00
Efraim Flashner
c99debc1d6
gnu: Remove rust-assert-fs-0.11.
...
* gnu/packages/crates-io.scm (rust-assert-fs-0.11): Delete variable.
2022-10-24 10:46:01 +03:00
Efraim Flashner
bf6c822cd3
gnu: Remove rust-async-global-executor-1.
...
* gnu/packages/crates-io.scm (rust-async-global-executor-1): Delete variable.
2022-10-24 10:46:01 +03:00
Efraim Flashner
2faa7b2800
gnu: Remove rust-async-recursion-0.3.
...
* gnu/packages/crates-io.scm (rust-async-recursion-0.3): Delete variable.
2022-10-24 10:46:00 +03:00
Efraim Flashner
f643a86c45
gnu: Remove rust-backtrace-sys-0.1.
...
* gnu/packages/crates-io.scm (rust-backtrace-sys-0.1): Delete variable.
2022-10-24 10:46:00 +03:00
Efraim Flashner
e6cb293798
gnu: Remove rust-battery-0.7.
...
* gnu/packages/crates-io.scm (rust-battery-0.7): Delete variable.
2022-10-24 10:46:00 +03:00
Efraim Flashner
eac0f4dbfa
gnu: Remove rust-better-panic-0.2.
...
* gnu/packages/crates-io.scm (rust-better-panic-0.2): Delete variable.
2022-10-24 10:46:00 +03:00
Efraim Flashner
386e769b21
gnu: Remove rust-bigdecimal-rs-0.2.
...
* gnu/packages/crates-io.scm (rust-bigdecimal-rs-0.2): Delete variable.
2022-10-24 10:45:59 +03:00
Efraim Flashner
d4f7250066
gnu: Remove rust-block-buffer-0.8.
...
* gnu/packages/crates-io.scm (rust-block-buffer-0.8): Delete variable.
2022-10-24 10:45:59 +03:00
Efraim Flashner
1a565cdaa3
gnu: Remove rust-boomphf-0.5.
...
* gnu/packages/crates-io.scm (rust-boomphf-0.5): Delete variable.
2022-10-24 10:45:59 +03:00
Efraim Flashner
f93e9b9d8b
gnu: Remove rust-bson-0.14.
...
* gnu/packages/crates-io.scm (rust-bson-0.14): Delete variable.
2022-10-24 10:45:58 +03:00
Efraim Flashner
60a665aebc
gnu: Remove rust-bstr-0.1.
...
* gnu/packages/crates-io.scm (rust-bstr-0.1): Delete variable.
2022-10-24 10:45:58 +03:00
Efraim Flashner
2444d01bca
gnu: Remove rust-bugreport-0.3.
...
* gnu/packages/crates-io.scm (rust-bugreport-0.3): Delete variable.
2022-10-24 10:45:58 +03:00
Efraim Flashner
f2d7cbe261
gnu: Remove rust-bumpalo-2.
...
* gnu/packages/crates-io.scm (rust-bumpalo-2): Delete variable.
2022-10-24 10:45:57 +03:00
Efraim Flashner
a64f71e020
gnu: Remove rust-cachedir-0.1.
...
* gnu/packages/crates-io.scm (rust-cachedir-0.1): Delete variable.
2022-10-24 10:45:57 +03:00
Efraim Flashner
75b52f4b20
gnu: Remove rust-calamine-0.16.
...
* gnu/packages/crates-io.scm (rust-calamine-0.16): Delete variable.
2022-10-24 10:45:57 +03:00
Efraim Flashner
e48bbed988
gnu: Remove rust-capnp-rpc-0.10.
...
* gnu/packages/crates-io.scm (rust-capnp-rpc-0.10): Delete variable.
2022-10-24 10:45:57 +03:00
Efraim Flashner
35a6faa448
gnu: Remove rust-cargo-audit-0.16.
...
* gnu/packages/crates-io.scm (rust-cargo-audit-0.16): Delete variable.
2022-10-24 10:45:56 +03:00
Efraim Flashner
fe6de8dd63
gnu: Remove rust-cargo-0.51.
...
* gnu/packages/crates-io.scm (rust-cargo-0.51): Delete variable.
2022-10-24 10:45:56 +03:00
Efraim Flashner
4ed04cf1ff
gnu: Remove rust-cfg-expr-0.7.
...
* gnu/packages/crates-io.scm (rust-cfg-expr-0.7): Delete variable.
2022-10-24 10:45:56 +03:00
Efraim Flashner
49c601c85a
gnu: Remove rust-chalk-recursive-0.68.
...
* gnu/packages/crates-io.scm (rust-chalk-recursive-0.68): Delete variable.
2022-10-24 10:45:55 +03:00
Efraim Flashner
5179f3df92
gnu: Remove rust-clipboard-win-2.
...
* gnu/packages/crates-io.scm (rust-clipboard-win-2): Delete variable.
2022-10-24 10:45:55 +03:00
Efraim Flashner
cfbaf0332f
gnu: Remove rust-colored-1.9.1.
...
* gnu/packages/crates-io.scm (rust-colored-1.9.1): Delete variable.
2022-10-24 10:45:55 +03:00
Efraim Flashner
e5f03e9b19
gnu: Remove rust-core-text-13.
...
* gnu/packages/crates-io.scm (rust-core-text-13): Delete variable.
2022-10-24 10:45:55 +03:00
Efraim Flashner
0c4e1174cc
gnu: Remove rust-cov-mark-1.
...
* gnu/packages/crates-io.scm (rust-cov-mark-1): Delete variable.
2022-10-24 10:45:54 +03:00
Efraim Flashner
7207787815
gnu: Remove rust-cpuid-bool-0.1.
...
* gnu/packages/crates-io.scm (rust-cpuid-bool-0.1): Delete variable.
2022-10-24 10:45:54 +03:00
Efraim Flashner
fce5c723b4
gnu: Remove rust-crossbeam-deque-0.6.
...
* gnu/packages/crates-io.scm (rust-crossbeam-deque-0.6): Delete variable.
2022-10-24 10:45:54 +03:00
Efraim Flashner
f9fb4f958d
gnu: Remove rust-cryptovec-0.4.
...
* gnu/packages/crates-io.scm (rust-cryptovec-0.4): Delete variable.
2022-10-24 10:45:53 +03:00
Efraim Flashner
38c689e452
gnu: Remove rust-delta-e-0.2.
...
* gnu/packages/crates-io.scm (rust-delta-e-0.2): Delete variable.
2022-10-24 10:45:53 +03:00
Efraim Flashner
7d9fbac873
gnu: Remove rust-derive-builder-0.5.
...
* gnu/packages/crates-io.scm (rust-derive-builder-0.5): Delete variable.
2022-10-24 10:45:53 +03:00
Efraim Flashner
c751a2beb9
gnu: Remove rust-derive-is-enum-variant-0.1.
...
* gnu/packages/crates-io.scm (rust-derive-is-enum-variant-0.1): Delete variable.
2022-10-24 10:45:53 +03:00
Efraim Flashner
33616a129f
gnu: Remove rust-dialoguer-0.3.
...
* gnu/packages/crates-io.scm (rust-dialoguer-0.3): Delete variable.
2022-10-24 10:45:52 +03:00
Efraim Flashner
b8d2c2cac7
gnu: Remove rust-diffus-0.10.
...
* gnu/packages/crates-io.scm (rust-diffus-0.10): Delete variable.
2022-10-24 10:45:52 +03:00
Efraim Flashner
16ad1c11f6
gnu: Remove rust-directories-next-1.
...
* gnu/packages/crates-io.scm (rust-directories-next-1): Delete variable.
2022-10-24 10:45:52 +03:00
Efraim Flashner
fbca7ad0c6
gnu: Remove rust-dwrote-0.9.
...
* gnu/packages/crates-io.scm (rust-dwrote-0.9): Delete variable.
2022-10-24 10:45:51 +03:00
Efraim Flashner
c59a06152f
gnu: Remove rust-eax-0.3.
...
* gnu/packages/crates-io.scm (rust-eax-0.3): Delete variable.
2022-10-24 10:45:51 +03:00
Efraim Flashner
1ae72fac34
gnu: Remove rust-enumflags2-0.6.
...
* gnu/packages/crates-io.scm (rust-enumflags2-0.6): Delete variable.
2022-10-24 10:45:51 +03:00
Efraim Flashner
28f8db03c7
gnu: Remove rust-envmnt-0.6.
...
* gnu/packages/crates-io.scm (rust-envmnt-0.6): Delete variable.
2022-10-24 10:45:51 +03:00
Efraim Flashner
ec5e854147
gnu: Remove rust-err-derive-0.2.
...
* gnu/packages/crates-io.scm (rust-err-derive-0.2): Delete variable.
2022-10-24 10:45:50 +03:00
Efraim Flashner
7640e0c924
gnu: Remove rust-expectest-0.9.
...
* gnu/packages/crates-io.scm (rust-expectest-0.9): Delete variable.
2022-10-24 10:45:50 +03:00
Efraim Flashner
2588fa3680
gnu: Remove rust-fallible-collections-0.3.
...
* gnu/packages/crates-io.scm (rust-fallible-collections-0.3): Delete variable.
2022-10-24 10:45:50 +03:00
Efraim Flashner
bea2f0a404
gnu: Remove rust-fancy-regex-0.3.
...
* gnu/packages/crates-io.scm (rust-fancy-regex-0.3): Delete variable.
2022-10-24 10:45:49 +03:00
Efraim Flashner
aa48a6c91e
gnu: Remove rust-fern-0.5.
...
* gnu/packages/crates-io.scm (rust-fern-0.5): Delete variable.
2022-10-24 10:45:49 +03:00
Efraim Flashner
536d49fdbd
gnu: Remove rust-freetype-0.4.
...
* gnu/packages/crates-io.scm (rust-freetype-0.4): Delete variable.
2022-10-24 10:45:49 +03:00
Efraim Flashner
11f01b37c0
gnu: Remove rust-freetype-rs-0.23.
...
* gnu/packages/crates-io.scm (rust-freetype-rs-0.23): Delete variable.
2022-10-24 10:45:48 +03:00
Efraim Flashner
d1070e73bf
gnu: Remove rust-futures-codec-0.4.
...
* gnu/packages/crates-io.scm (rust-futures-codec-0.4): Delete variable.
2022-10-24 10:45:48 +03:00
Efraim Flashner
8f3982de44
gnu: Remove rust-getch-0.2.
...
* gnu/packages/crates-io.scm (rust-getch-0.2): Delete variable.
2022-10-24 10:45:48 +03:00
Efraim Flashner
2b57864eed
gnu: Remove rust-gettext-rs-0.6.
...
* gnu/packages/crates-io.scm (rust-gettext-rs-0.6): Delete variable.
2022-10-24 10:45:48 +03:00
Efraim Flashner
520fe8f314
gnu: Remove rust-gettext-rs-0.4.
...
* gnu/packages/crates-io.scm (rust-gettext-rs-0.4): Delete variable.
2022-10-24 10:45:47 +03:00
Efraim Flashner
0e63922500
gnu: Remove rust-gjson-0.7.
...
* gnu/packages/crates-io.scm (rust-gjson-0.7): Delete variable.
2022-10-24 10:45:47 +03:00
Efraim Flashner
575a219dd9
gnu: Remove rust-handlegraph-0.3.
...
* gnu/packages/crates-io.scm (rust-handlegraph-0.3): Delete variable.
2022-10-24 10:45:47 +03:00
Efraim Flashner
816e689163
gnu: Remove rust-handlebars-2.
...
* gnu/packages/crates-io.scm (rust-handlebars-2): Delete variable.
2022-10-24 10:45:46 +03:00
Efraim Flashner
54f908b639
gnu: Remove rust-html-escape-0.2.
...
* gnu/packages/crates-io.scm (rust-html-escape-0.2): Delete variable.
2022-10-24 10:45:46 +03:00
Efraim Flashner
c1c84794f8
gnu: Remove rust-http-req-0.5.
...
* gnu/packages/crates-io.scm (rust-http-req-0.5): Delete variable.
2022-10-24 10:45:46 +03:00
Efraim Flashner
1a12914092
gnu: Remove rust-httpdate-0.3.
...
* gnu/packages/crates-io.scm (rust-httpdate-0.3): Delete variable.
2022-10-24 10:45:46 +03:00
Efraim Flashner
3ee3d9d548
gnu: Remove rust-inotify-0.6.
...
* gnu/packages/crates-io.scm (rust-inotify-0.6): Delete variable.
2022-10-24 10:45:45 +03:00
Efraim Flashner
48e06fa237
gnu: Remove rust-itoa-0.1.
...
* gnu/packages/crates-io.scm (rust-itoa-0.1): Delete variable.
2022-10-24 10:45:45 +03:00
Efraim Flashner
0997da74eb
gnu: Remove rust-kstring-1.
...
* gnu/packages/crates-io.scm (rust-kstring-1): Delete variable.
2022-10-24 10:45:45 +03:00
Efraim Flashner
3fc345d66e
gnu: Remove rust-lab-0.4.
...
* gnu/packages/crates-io.scm (rust-lab-0.4): Delete variable.
2022-10-24 10:45:44 +03:00
Efraim Flashner
e15eb6c666
gnu: Remove rust-lexical-core-0.4.
...
* gnu/packages/crates-io.scm (rust-lexical-core-0.4): Delete variable.
2022-10-24 10:45:44 +03:00
Efraim Flashner
32bbdb1765
gnu: Remove rust-libz-ng-sys-1.
...
* gnu/packages/crates-io.scm (rust-libz-ng-sys-1): Delete variable.
2022-10-24 10:45:44 +03:00
Efraim Flashner
e20f847f64
gnu: Remove rust-line-0.1.
...
* gnu/packages/crates-io.scm (rust-line-0.1): Delete variable.
2022-10-24 10:45:44 +03:00
Efraim Flashner
b07326f1a5
gnu: Remove rust-lipsum-0.8.
...
* gnu/packages/crates-io.scm (rust-lipsum-0.8): Delete variable.
2022-10-24 10:45:43 +03:00
Efraim Flashner
60f118e7a9
gnu: Remove rust-located-yaml-0.2.
...
* gnu/packages/crates-io.scm (rust-located-yaml-0.2): Delete variable.
2022-10-24 10:45:43 +03:00
Efraim Flashner
2f29b57dba
gnu: Remove rust-log4rs-1.
...
* gnu/packages/crates-io.scm (rust-log4rs-1): Delete variable.
2022-10-24 10:45:43 +03:00
Efraim Flashner
516b0a9032
gnu: font-culmus: Update home-page.
...
* gnu/packages/fonts.scm (font-culmus)[home-page]: Follow redirect.
2022-10-24 10:45:42 +03:00
kiasoc5
2bf8a6b801
gnu: ugrep: Update to 3.9.2.
...
* gnu/packages/search.scm (ugrep): Update to 3.9.2.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-10-24 15:40:02 +08:00
Lars-Dominik Braun
9927786f33
gnu: r-data-table: Add upstream-name.
...
* gnu/packages/statistics.scm (r-data-table): Add upstream-name.
2022-10-24 08:59:11 +02:00
Lars-Dominik Braun
7871447cf5
gnu: r-mixedpower: Update to 2.0-1.6520195.
...
Fixes issues with R>=4.2.
* gnu/packages/statistics.scm (r-mixedpower): Update to 2.0-1.6520195.
2022-10-24 08:59:06 +02:00
Vagrant Cascadian
d3e982dccb
gnu: Fix typos.
...
* gnu/packages/emacs-xyz.scm (emacs-piem)[description]: Fix use of "This
packages".
* gnu/packages/tex.scm (texlive-hardwrap)[description]: Fix spelling of
"arbitrary".
* gnu/packages/cran.scm (r-shinymanager)[description]: Fix spelling of
"authentication".
* gnu/packages/lisp-xyz.scm (sbcl-utils-kt)[description]: Fix spelling of
"developed".
* gnu/packages/crates-io.scm (rust-fs-utils-1)[description]: Fix spelling of
"filesystem".
[synopsis]: Likewise.
* gnu/packages/haxe.scm (neko)[description]: Fix spelling of "functions".
* gnu/packages/animation.scm (swftools)[description]: Fix needless
pluralization of "information".
* gnu/packages/lisp-xyz.scm (sbcl-slot-extra-options)[description]: Fix
spelling of "inheritance".
* gnu/packages/emacs-xyz.scm (emacs-js-comint)[description]: Fix spelling of
"interpreter".
* gnu/packages/coq.scm (coq-mathcomp-finmap)[description]: Fix spelling of
"library".
* gnu/services/lightdm.scm (lightdm-configuration): Fix spelling of
"mechanism".
* gnu/packages/emacs-xyz.scm (emacs-citar-org-roam)[synopsis]: Fix spelling of
"package".
* gnu/packages/games.scm (freerct)[description]: Fix spelling of
"responsibilities".
* gnu/packages/statistics.scm (r-mixedpower)[description]: Fix spelling of
"separate".
* gnu/packages/accessibility.scm (espeakup)[description]: Fix spelling of
"speech".
* gnu/packages/bioinformatics.scm (r-skitools)[synopsis]: Fix spelling of
"utilities".
* gnu/packages/golang.scm (go-github-com-savsgio-gotils)[synopsis]: Fix
spelling of "utilities".
[description]: Likewise.
* gnu/system.scm (boot-file-system-service os): Fix spelling of "utilities".
2022-10-23 17:03:09 -07:00
Ludovic Courtès
3734857fc5
gnu: libevent: Prefix (guix licenses) bindings.
...
* gnu/packages/libevent.scm: Import (guix licenses) with the 'license:'
prefix.
2022-10-23 15:56:19 +02:00
Thomas Albers
d117d225d9
gnu: Add coturn.
...
* gnu/packages/telephony.scm (coturn): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-23 15:56:19 +02:00
Thomas Albers
9ed4251d70
gnu: Add libevent-with-openssl.
...
* gnu/packages/libevent.scm (libevent-with-openssl): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-10-23 15:56:19 +02:00
Michael Rohleder
1de153c11f
gnu: weasyprint: Update to 56.1.
...
* gnu/packages/pdf.scm (weasyprint): Update to 56.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-23 15:56:19 +02:00
Matthew James Kraai
5bf34e36b1
gnu: Add doctl.
...
* gnu/packages/admin.scm (doctl): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-23 15:56:18 +02:00
Ludovic Courtès
3fb3bd3da5
system: hurd: Boot with the statically-linked 'exec' server.
...
This works around <https://issues.guix.gnu.org/58631 >.
* gnu/system.scm (hurd-multiboot-modules): Use '/hurd/exec.static'
instead of 'ld.so /hurd/exec'.
2022-10-23 15:56:18 +02:00
Nicolas Goaziou
b741f30572
gnu: giac: Update to 1.9.0-23.
...
* gnu/packages/algebra.scm (giac): Update to 1.9.0-23.
2022-10-23 15:51:17 +02:00
Nicolas Goaziou
3380f52e6f
gnu: emacs-pubmed: Update to 0.6.2.
...
* gnu/packages/emacs-xyz.scm (emacs-pubmed): Update to 0.6.2.
2022-10-23 15:51:17 +02:00
Nicolas Goaziou
27bda6c5f9
gnu: emacs-ement: Update to 0.4.
...
* gnu/packages/emacs-xyz.scm (emacs-ement): Update to 0.4.
2022-10-23 15:51:17 +02:00
Nicolas Goaziou
48b643f5fa
gnu: emacs-map: Update to 3.3.1.
...
* gnu/packages/emacs-xyz.scm (emacs-map): Update to 3.3.1.
2022-10-23 15:51:16 +02:00
Mathieu Othacehe
bf5e78d59f
installer: Resume newt in exit-error procedure.
...
Fixes: <https://issues.guix.gnu.org/58734 >
* gnu/installer/newt.scm (exit-error): Resume it.
2022-10-23 15:37:57 +02:00
Liliana Marie Prikler
88fa3e6c3e
gnu: tsukundere: Update to 0.4.3.
...
* gnu/packages/game-development.scm (tsukundere): Update to 0.4.3.
2022-10-23 15:07:56 +02:00
Liliana Marie Prikler
083e6b209b
gnu: guile-sdl2: Update to 0.8.0.
...
* gnu/packages/sdl.scm (guile-sdl2): Update to 0.8.0.
2022-10-23 14:40:32 +02:00
kiasoc5
dbc9a9a81b
gnu: usbguard: Update to 1.1.2.
...
* gnu/packages/hardware.scm (usbguard): Update to 1.1.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-23 14:29:21 +03:00
kiasoc5
564baef89c
gnu: ddcui: Update to 0.3.0.
...
* gnu/packages/hardware.scm (ddcui): Update to 0.3.0.
[arguments]: Use new style for arguments.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-23 14:25:21 +03:00
kiasoc5
e046eb02e3
gnu: ddcutil: Update to 1.3.2.
...
* gnu/packages/hardware.scm (ddcutil): Update to 1.3.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-23 14:25:18 +03:00
kiasoc5
6530055df5
gnu: mpd: Update to 0.23.10.
...
* gnu/packages/mpd.scm (mpd): Update to 0.23.10.
[inputs]: Add pipewire-0.3.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-23 14:22:11 +03:00
Efraim Flashner
408a4ed071
build-system/cargo: Unpack crates less verbosely.
...
* guix/build/cargo-build-system.scm (configure): Print the crate being
unpacked but don't print the contents of each crate.
2022-10-20 12:23:52 +03:00
Mark H Weaver
3d6f6d3b45
gnu: rust: Disable debug info to reduce build memory requirements.
...
* gnu/packages/rust.scm (rust-1.55)[arguments]: In custom 'configure
phase adjust rust's config.toml to disable debug info.
2022-10-20 12:23:51 +03:00
Mark H Weaver
01be1973f4
gnu: rust-bootstrap: Disable debug info during build.
...
This dramatically reduces the memory required to build Rust, and also
speeds up the build.
* gnu/packages/rust.scm (mrustc)[source]: Add snippet to remove building
debug info with mrustc.
2022-10-20 12:23:51 +03:00
Efraim Flashner
bf8b03667f
gnu: mrustc: Update to 0.10.0-2.597593a.
...
* gnu/packages/rust.scm (mrustc): Update to 0.10.0-2.597593a.
[source]: Remove patch.
(rust-bootstrap)[arguments]: Adjust custom 'patch-makefiles phase for
changes in source.
* gnu/packages/patches/mrustc-riscv64-support.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2022-10-20 10:08:54 +03:00
Marius Bakke
270eb27b20
gnu: kwayland: Skip flaky test.
...
* gnu/packages/kde-frameworks.scm (kwayland)[source](patches): New field.
* gnu/packages/patches/kwayland-skip-flaky-test.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-10-16 03:27:33 +02:00
Tobias Geerinckx-Rice
1f734a6f0a
gnu: parallel: Update to 20221022.
...
* gnu/packages/parallel.scm (parallel): Update to 20221022.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
c646d8c32d
gnu: mtools: Update to 4.0.42.
...
* gnu/packages/mtools.scm (mtools): Update to 4.0.42.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
0a852deec5
gnu: xlsxio: Update to 0.2.33.
...
* gnu/packages/xml.scm (xlsxio): Update to 0.2.33.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
7be1a73ea2
gnu: xlsxio: Remove ad hoc 'install phase.
...
* gnu/packages/xml.scm (xlsxio)[arguments]: Use #:make-flags instead
of an ad hoc 'install phase.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
3fae4f64ba
gnu: xlsxio: Use G-expressions.
...
* gnu/packages/xml.scm (xlsxio)[arguments]:
Rewrite as G-expressions.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
fa1cd5b31f
gnu: pass-age: Add age-keygen to inputs.
...
* gnu/packages/password-utils.scm (pass-age)[inputs]: Add age-keygen.
[arguments]: Wrap with it.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
55c7b83b5a
gnu: xcb-util-cursor: Update to 0.1.4.
...
* gnu/packages/xorg.scm (xcb-util-cursor): Update to 0.1.4.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
efd56f957b
gnu: xterm: Update to 374.
...
* gnu/packages/xorg.scm (xterm): Update to 374.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
928d9381b7
gnu: xrefresh: Update to 1.0.7.
...
* gnu/packages/xorg.scm (xrefresh): Update to 1.0.7.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
040bef561d
gnu: xmessage: Update to 1.0.6.
...
* gnu/packages/xorg.scm (xmessage): Update to 1.0.6.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
a8625dbbc1
gnu: smproxy: Update to 1.0.7.
...
* gnu/packages/xorg.scm (smproxy): Update to 1.0.7.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
9329b8fe0e
gnu: xmag: Use G-expressions.
...
* gnu/packages/xorg.scm (xmag)[arguments]:
Rewrite as G-expressions.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
92bb58e5e7
gnu: xmag: Update to 1.0.7.
...
* gnu/packages/xorg.scm (xmag): Update to 1.0.7.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
a472deca27
gnu: xkbutils: Update to 1.0.5.
...
* gnu/packages/xorg.scm (xkbutils): Update to 1.0.5.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
a2c78869e7
gnu: xev: Update to 1.2.5.
...
* gnu/packages/xorg.scm (xev): Update to 1.2.5.
2022-10-16 02:00:00 +02:00
Efraim Flashner
1484e5f559
gnu: git-interactive-rebase-tool: Fix build.
...
* gnu/packages/rust-apps.scm (git-interactive-rebase-tool)
[native-inputs]: Add pkg-config.
[inputs]: Add libgit2-1.3.
2022-10-22 23:49:07 +03:00
Efraim Flashner
0aa4140f02
gnu: git-absorb: Fix build.
...
* gnu/packages/rust-apps.scm (git-absorb)[arguments]: Adjust custom
'relax-version-requirements phase to make all crate requirements follow
standard cargo semver levels.
[native-inputs]: Add pkg-config.
[inputs]: Add libgit2-1.3.
2022-10-22 23:15:57 +03:00
Nicolas Goaziou
bb2701b911
gnu: borg: Improve package style.
...
* gnu/packages/backup.scm (borg)[origin]<snippet>: Use G-expressions. Remove
trailing #T.
[arguments]: Use G-expressions.
2022-10-22 18:37:02 +02:00
Nicolas Goaziou
63bb2b965c
gnu: borg: Update to 1.2.2.
...
* gnu/packages/backup.scm (borg): Update to 1.2.2.
2022-10-22 18:37:02 +02:00
Liliana Marie Prikler
85aff4de30
snippets: Harden for review activity.
...
When reviewing patches, whose commit logs don't follow the structure outlined
in “Submitting Patches”, a reviewer might be tempted to use snippets to
rewrite them. This makes it so that their attempt, while not immediately
succeeding, isn't completely thwarted.
* etc/snippets/tempel/text-mode (add\ , remove\ , rename\ , update\ )
(addcl\ , https\ ): Use an empty "p" field if (car (magit-staged-files))
fails.
2022-10-22 14:16:13 +02:00
Jacob Hrbek
28270e1e03
gnu: unbound: Update to 1.17.0.
...
* gnu/packages/dns.scm (unbound): Update to 1.17.0.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-22 14:16:13 +02:00
Tobias Geerinckx-Rice
8cfcb3b043
gnu: claws-mail: Update to 4.1.1.
...
* gnu/packages/mail.scm (claws-mail): Update to 4.1.1.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
5651a6d0aa
gnu: openssh: Update to 9.1p1.
...
* gnu/packages/ssh.scm (openssh): Update to 9.1p1.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
591966d2d6
gnu: binwalk: Update to 2.3.3.
...
* gnu/packages/python-xyz.scm (binwalk): Update to 2.3.3.
[source]: Add snippet.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
2e7ac36734
gnu: ptpython: Update to 3.0.20.
...
* gnu/packages/python-xyz.scm (ptpython): Update to 3.0.20.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
b4c5eb7a7c
gnu: qtractor: Update to 0.9.29.
...
* gnu/packages/music.scm (qtractor): Update to 0.9.29.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
b1aedf6ab4
gnu: minixml: Use G-expressions.
...
* gnu/packages/xml.scm (minixml)[arguments]:
Rewrite as G-expressions.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
dc6186f7eb
gnu: minixml: Update to 3.3.1.
...
* gnu/packages/xml.scm (minixml): Update to 3.3.1.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
6091c7ae63
gnu: libebml: Update to 1.4.4.
...
* gnu/packages/xml.scm (libebml): Update to 1.4.4.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
4f276192b2
gnu: libxp: Update to 1.0.4.
...
* gnu/packages/xorg.scm (libxp): Update to 1.0.4.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
004423683d
gnu: bcachefs-tools: Update to 0.1-15.494421e.
...
* gnu/packages/file-systems.scm (bcachefs-tools): Update to 0.1-15.494421e.
[arguments]: Skip problematic tests in PYTEST_ARGS.
2022-10-16 02:00:00 +02:00
Sharlatan Hellseher
7513cc6dd9
gnu: python-regions: Update to 0.6.
...
* gnu/packages/astronomy.scm (python-regions): Update to 0.6.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-22 13:50:50 +02:00
Sharlatan Hellseher
63c113976c
gnu: python-astropy-healpix: Update to 0.7.
...
* gnu/packages/astronomy.scm (python-astropy-healpix): Update to 0.7.
[source]: Change pypy-uri from astropy-healpix to astropy_healpix.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-22 13:50:50 +02:00
Sharlatan Hellseher
0d3f7de088
gnu: python-photuils: Update to 1.5.0.
...
* gnu/packages/astronomy.scm (python-photutils): Update to 1.5.0.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-22 13:50:50 +02:00
Sharlatan Hellseher
2a87e497ec
gnu: python-astropy: Update to 5.1.
...
* gnu/packages/astronomy.scm (python-astropy): Update to 5.1.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-22 13:50:50 +02:00
Sharlatan Hellseher
dd69af5ddc
gnu: python-pytest-astropy-header: Update to 0.2.2.
...
* gnu/packages/python-check.scm (python-pytest-astropy-header): Update
to 0.2.2.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-22 13:50:50 +02:00
Sharlatan Hellseher
1eaacdb6ad
gnu: python-pytest-astropy: Update to 0.10.0.
...
* gnu/packages/python-check.scm (python-pytest-astropy): Update to 0.10.0.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-22 13:50:50 +02:00
Sharlatan Hellseher
64b342ab32
gnu: Add pytest-7.1.
...
* gnu/packages/check.scm (python-pytest-7.1): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-22 13:50:50 +02:00
Andrew Whatson
d49d21654a
gnu: libresprite: Install a desktop icon.
...
* gnu/packages/game-development.scm (libresprite)[arguments]
<#:configure-flags>: Add “-DWITH_DESKTOP_INTEGRATION=1”.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-22 13:50:49 +02:00
Christopher Baines
efaefc1deb
gnu: guix-build-coordinator: Update to 0-67.6cd8bd8.
...
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-67.6cd8bd8.
2022-10-22 10:24:25 +01:00
Greg Hogan
cba91975d0
gnu: fio: Update to 3.32.
...
* gnu/packages/benchmark.scm (fio): Update to 3.32.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-22 10:24:25 +01:00
Greg Hogan
add66292de
gnu: python-yq: Update to 3.1.0.
...
* gnu/packages/python-xyz.scm (python-yq): Update to 3.1.0.
[inputs]: Add python-toml.
[native-inputs]: Add python-setuptools-scm.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-22 10:24:25 +01:00
John Kehayias
95ffc45646
gnu: darktable: Update to 4.0.1.
...
* gnu/packages/photo.scm (darktable): Update to 4.0.1.
[phases]{fix-missing-include}: New phase to work around an upstream bug of a
missing include statement.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-22 10:24:22 +01:00
jgart
c2b263fcb7
gnu: Add emacs-tokei.
...
* gnu/packages/emacs-xyz.scm (emacs-tokei): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-22 11:12:11 +02:00
Charles
2902def73e
gnu: gnome-shell-extension-blur-my-shell: Update to 44.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-blur-my-shell): Update
to 44.
[source]: Remove snippet to delete compiled schemas.
[arguments]<#:install-plan>: Update accordingly.
<#:phases>: Remove ‘cd-src’.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-22 10:41:09 +02:00
Ludovic Courtès
863c228bfd
grafts: Rewrite using gexps.
...
Fixes <https://issues.guix.gnu.org/58419 >.
* guix/grafts.scm (graft-derivation/shallow): Rewrite using gexps and
remove 'store' parameter.
(graft-derivation/shallow*): New variable.
(cumulative-grafts): Use it instead of 'graft-derivation/shallow'.
2022-10-22 01:49:57 +02:00
Ludovic Courtès
a3619079f9
Remove now unnecessary uses of (guix grafts).
...
These modules would use (guix grafts) just to access '%graft?' and
related bindings, which are now in (guix store).
* gnu/ci.scm,
guix/gexp.scm,
guix/lint.scm,
guix/scripts.scm,
guix/scripts/archive.scm,
guix/scripts/build.scm,
guix/scripts/challenge.scm,
guix/scripts/deploy.scm,
guix/scripts/environment.scm,
guix/scripts/home.scm,
guix/scripts/pack.scm,
guix/scripts/package.scm,
guix/scripts/pull.scm,
guix/scripts/size.scm,
guix/scripts/system.scm,
guix/scripts/weather.scm,
tests/builders.scm,
tests/channels.scm,
tests/cpan.scm,
tests/derivations.scm,
tests/gexp.scm,
tests/graph.scm,
tests/guix-daemon.sh,
tests/monads.scm,
tests/pack.scm,
tests/packages.scm,
tests/profiles.scm,
tests/system.scm: Remove #:use-module (guix grafts).
2022-10-22 01:46:55 +02:00
Ludovic Courtès
5f0febcd45
grafts: Move '%graft?' and related bindings to (guix store).
...
The goal is to allow (guix grafts) to use (guix gexp) without
introducing a cycle between these two modules.
* guix/grafts.scm (%graft?, call-without-grafting, without-grafting)
(set-grafting, grafting?): Move to...
* guix/store.scm: ... here.
2022-10-22 01:46:54 +02:00
Ludovic Courtès
b544f46098
build-system/python: Disable grafts.
...
This is consistent with what 'gnu-build' does and makes sure origins
aren't getting lowered with #:graft? #t in one case and not in the
other.
This is a followup to df46bef48e and
dada5e86ed .
* guix/build-system/python.scm (python-build): Pass #:graft? #f.
2022-10-22 01:46:54 +02:00
Ludovic Courtès
fa6566bdc0
tests: 'guix build --with-commit' output no longer refers to the tag ID.
...
This is a followup to 46f7011591 .
* tests/guix-build-branch.sh: Replace tag ID by commit ID.
2022-10-22 01:46:54 +02:00
Tobias Geerinckx-Rice
78d4a08ac3
gnu: libfs: Update to 1.0.9.
...
* gnu/packages/xorg.scm (libfs): Update to 1.0.9.
2022-10-16 02:00:29 +02:00
Tobias Geerinckx-Rice
775c83c4fc
gnu: dmenu: Update to 5.2.
...
* gnu/packages/suckless.scm (dmenu): Update to 5.2.
2022-10-16 02:00:29 +02:00
Tobias Geerinckx-Rice
ac24de553a
gnu: cloc: Update to 1.94.
...
* gnu/packages/code.scm (cloc): Update to 1.94.
2022-10-16 02:00:29 +02:00
Tobias Geerinckx-Rice
ada683cb31
gnu: console-setup: Update to 1.210.
...
* gnu/packages/xorg.scm (console-setup): Update to 1.210.
2022-10-16 02:00:29 +02:00
Tobias Geerinckx-Rice
dca864e483
gnu: ccache: Update to 4.6.3.
...
* gnu/packages/ccache.scm (ccache): Update to 4.6.3.
2022-10-16 02:00:29 +02:00
Tobias Geerinckx-Rice
4a09cbbbd3
gnu: headsetcontrol: Update to 2.6.1.
...
* gnu/packages/hardware.scm (headsetcontrol): Update to 2.6.1.
2022-10-16 02:00:29 +02:00
Tobias Geerinckx-Rice
45eda17644
gnu: diffoscope: Update to 224.
...
* gnu/packages/diffoscope.scm (diffoscope): Update to 224.
* gnu/packages/patches/diffoscope-fix-llvm-test.patch:
Adjust accordingly.
2022-10-16 02:00:29 +02:00
Tobias Geerinckx-Rice
0d2ad16c07
guix-install.sh: Cosmetically tweak non-interactive output.
...
Avoid printing
Press return to continue...[1666352494.051]: Starting installation…
[1666352648.869]: …
when the return itself wasn't echoed on the console.
* etc/guix-install.sh (welcome): Add a carriage return to the prompt,
so that the next line of output may overwrite it.
2022-10-16 02:00:29 +02:00
Tobias Geerinckx-Rice
a326e3085d
guix-install.sh: Warn if we suspect dodgy automation.
...
This doesn't affect the installation (yet), but reserves the right to
default to safe values other than ‘y’ in future.
* etc/guix-install.sh (welcome): Warn if the ‘return’ wasn't.
2022-10-16 02:00:28 +02:00
Tobias Geerinckx-Rice
1e8e84b286
guix-install.sh: Treat all uncaught errors as fatal.
...
* etc/guix-install.sh: Set -o pipefail.
2022-10-16 02:00:28 +02:00
Tobias Geerinckx-Rice
54c0b5c457
guix-install.sh: Suggest what to do if fetching OpenPGP key(s) fails.
...
* etc/guix-install.sh (chk_gpg_keyring): Report an _err and set the
exit_flag if wget | gpg --import fails.
2022-10-16 02:00:28 +02:00
Tobias Geerinckx-Rice
9a0a786c25
guix-install.sh: Time out fetching OpenPGP keys.
...
The default 900s provide no useful backstop in interactive use.
* etc/guix-install.sh (chk_gpg_keyring): Add a 30s wget --timeout.
2022-10-16 02:00:28 +02:00
Tobias Geerinckx-Rice
88ec7bf616
gnu: lldpd: Update to 1.0.15.
...
* gnu/packages/networking.scm (lldpd): Update to 1.0.15.
2022-10-16 02:00:28 +02:00
Tobias Geerinckx-Rice
db1265fa8f
gnu: imapfilter: Use G-expressions.
...
* gnu/packages/mail.scm (imapfilter)[arguments]:
Rewrite as G-expressions.
2022-10-16 02:00:28 +02:00
Tobias Geerinckx-Rice
6832a4140f
gnu: imapfilter: Update to 2.7.6.
...
* gnu/packages/mail.scm (imapfilter): Update to 2.7.6.
2022-10-16 02:00:27 +02:00
Tobias Geerinckx-Rice
f228c39e2e
gnu: mpop: Update to 1.4.17.
...
* gnu/packages/mail.scm (mpop): Update to 1.4.17.
2022-10-16 02:00:27 +02:00
Tobias Geerinckx-Rice
b950be970a
gnu: dnsmasq: Update to 2.87.
...
* gnu/packages/dns.scm (dnsmasq): Update to 2.87.
2022-10-16 02:00:27 +02:00
Tobias Geerinckx-Rice
6f7678e493
gnu: maradns: Update to 3.5.0022.
...
* gnu/packages/dns.scm (maradns): Update to 3.5.0022.
2022-10-16 02:00:27 +02:00
Tobias Geerinckx-Rice
71c561f133
gnu: dosbox-staging: Update to 0.79.1.
...
* gnu/packages/emulators.scm (dosbox-staging): Update to 0.79.1.
[arguments]: Delete a problematic file in the 'fix-includes phase.
[inputs]: Add iir & speexdsp.
2022-10-16 02:00:27 +02:00
Tobias Geerinckx-Rice
5a94c6cb36
gnu: dosbox-staging: Remove input labels.
...
* gnu/packages/emulators.scm (dosbox-staging)[inputs]:
Remove input labels.
2022-10-16 02:00:27 +02:00
Tobias Geerinckx-Rice
9af6f1b624
gnu: Add iir.
...
* gnu/packages/audio.scm (iir): New public variable.
2022-10-16 02:00:26 +02:00
Tobias Geerinckx-Rice
cf6b06c103
gnu: audacious: Update to 4.2.
...
* gnu/packages/music.scm (audacious): Update to 4.2.
[arguments]: Don't explicitly return #t from phases.
2022-10-16 02:00:26 +02:00
Tobias Geerinckx-Rice
a0625f70f5
gnu: pd: Use G-expressions.
...
* gnu/packages/music.scm (pd)[arguments]: Rewrite as G-expressions,
and use SEARCH-INPUT-FILE.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
4fad3eb016
gnu: pd: Remove input labels.
...
* gnu/packages/music.scm (pd)[native-inputs]:
Remove input labels.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
9d0e389053
gnu: pd: Remove trailing #t from phases.
...
* gnu/packages/music.scm (pd)[arguments]: Don't explicitly return #t from phases.
2022-10-16 02:00:01 +02:00
Sughosha via Guix-patches via
7b7aee6af9
gnu: pd: Update to 0.52-2.
...
* gnu/packages/music.scm (pd): Update to 0.52-2.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
511b7e0ce6
gnu: hdparm: Update to 9.65.
...
* gnu/packages/linux.scm (hdparm): Update to 9.65.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
061c45c535
gnu: acpid: Update to 2.0.34.
...
* gnu/packages/linux.scm (acpid): Update to 2.0.34.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
fa7e2978b9
gnu: numactl: Update to 2.0.16.
...
* gnu/packages/linux.scm (numactl): Update to 2.0.16.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
9dac05cb9a
gnu: criu: Update to 3.17.1.
...
* gnu/packages/virtualization.scm (criu): Update to 3.17.1.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
115f92af62
gnu: jitterentropy-rngd: Use G-expressions.
...
* gnu/packages/linux.scm (jitterentropy-rngd)[arguments]:
Rewrite as G-expressions.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
b4a62d7e88
gnu: jitterentropy-rngd: Update to 1.2.8.
...
* gnu/packages/linux.scm (jitterentropy-rngd): Update to 1.2.8.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
408da03c19
gnu: audit: Update to 3.0.9.
...
* gnu/packages/admin.scm (audit): Update to 3.0.9.
2022-10-16 02:00:00 +02:00
Christopher Baines
c7e6d72a08
gnu: guix-build-coordinator: Update to 0-66.a410ff4.
...
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-66.a410ff4.
2022-10-21 17:27:38 +01:00
Hilton Chain
2edd7cd00c
gnu: Add shrinkwrap.
...
* gnu/packages/python-xyz.scm (shrinkwrap): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-21 17:23:46 +01:00
Hilton Chain
3451b4adb7
gnu: python-lief: Update to 0.12.2.
...
* gnu/packages/python-xyz.scm (python-lief): Update to 0.12.2.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-21 17:23:45 +01:00
EuAndreh
77391a1d52
gnu: Add grap.
...
* gnu/packages/groff.scm (grap): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-21 17:08:40 +01:00
Jonathan Brielmaier
e94d63d49e
gnu: icedove: Update to 102.4.0.
...
* gnu/packages/gnuzilla.scm (%icedove-build-id, %icedove-version) Update to 102.4.0.
2022-10-21 13:27:56 +02:00
Jonathan Brielmaier
64562d0c43
gnu: icedove: Simplify native inputs.
...
Moving the thunderbird-source out of native-inputs makes the transition
to simplified inputs easier (at least for me).
* gnu/packages/gnuzilla.scm (%icedove-version, thunderbird-source): New
variables. Move out of the package definition.
(icedove)[arguments]: Adapt 'prepare-thunderbird-sources phase to gexp.
[native-inputs]: Simplify and remove thunderbird-source.
2022-10-21 12:15:39 +02:00
Nicolas Goaziou
98c4f0135c
gnu: emacs-org-cliplink: Improve a phase.
...
* gnu/packages/emacs-xyz.scm (emacs-org-cliplink)[arguments]<#:phases>: Fix
phase name. Clarify substitution done in the phase.
2022-10-21 10:10:46 +02:00
jgart
6b915fe58b
gnu: Add emacs-org-cliplink.
...
* gnu/packages/emacs-xyz.scm (emacs-org-cliplink): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-21 09:55:01 +02:00
jgart
9365d0e16b
gnu: Add emacs-purs-mode.
...
* gnu/packages/emacs-xyz.scm (emacs-purs-mode): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-21 09:55:01 +02:00
Nicolas Goaziou
928cae3443
gnu: emacs-pyim: Update to 5.2.6.
...
* gnu/packages/emacs-xyz.scm (emacs-pyim): Update to 5.2.6.
2022-10-21 09:55:00 +02:00
Nicolas Goaziou
9e538b4007
gnu: emacs-auctex: Update to 13.1.5.
...
* gnu/packages/emacs-xyz.scm (emacs-auctex): Update to 13.1.5.
2022-10-21 09:55:00 +02:00
Ludovic Courtès
e0b414fc59
lint: source: Handle <svn-multi-reference> origins.
...
This is a followup to 2383e14518 .
* guix/lint.scm (svn-reference-uri-with-userinfo): Accept REF being
an <svn-multi-reference> record.
(check-source): Handle 'svn-multi-reference?' origins like
'svn-reference?' origins.
2022-10-20 23:07:38 +02:00
Ludovic Courtès
c077345539
file-systems: Support the 'no-diratime' mount flag.
...
* gnu/build/file-systems.scm (mount-flags->bit-mask): Handle 'no-diratime'.
* doc/guix.texi (File Systems): Document it.
2022-10-20 23:07:37 +02:00
Ludovic Courtès
6352e3a17b
syscalls: Define 'MS_NODIRATIME' and recognize "nodiratime".
...
Fixes <https://issues.guix.gnu.org/58663 >.
This is a followup to b665dd4a99 and
dcb640f02b , allowing "nodiratime" to be
preserved for bind mounts.
* guix/build/syscalls.scm (MS_NODIRATIME): New variable.
(option-string->mount-flags): Recognize it.
(statfs-flags->mount-flags): Likewise.
2022-10-20 23:07:37 +02:00
Ludovic Courtès
4056cd9480
ci: Add 'start-time' and 'stop-time' to <build> records.
...
* guix/ci.scm (seconds->date): New procedure.
(<build>)[start-time, stop-time]: New fields.
(build-duration): New procedure.
2022-10-20 23:07:37 +02:00
Ludovic Courtès
c5d83bee93
environment: Update docstring of 'launch-environment'.
...
This is a followup to 78d55b703d .
Reported by Maxim Cournoyer.
* guix/scripts/environment.scm (launch-environment): Update docstring.
2022-10-20 23:07:37 +02:00
Mathieu Othacehe
00ff6f7c39
installer: Add a missing confirmation page before formatting.
...
This is a follow-up of: <https://issues.guix.gnu.org/57232 >
* gnu/installer/newt/partition.scm (run-label-page): Add a confirmation page
when dealing with an EFI installation.
2022-10-20 17:28:11 +02:00
Mark H Weaver
b172241134
gnu: icecat: Update to 102.4.0-guix0-preview1 [security fixes].
...
Includes fixes for CVE-2022-42927, CVE-2022-42928, CVE-2022-42929, and
CVE-2022-42932.
* gnu/packages/gnuzilla.scm (%icecat-version, %icecat-build-id): Update.
(icecat-source): Update gnuzilla commit, base version, and hashes.
2022-10-20 11:15:22 -04:00
Mathieu Othacehe
7ee77dc6df
services: wireguard: Add more configuration fields.
...
* gnu/services/vpn.scm (<wireguard-configuration>)[pre-up, post-up, pre-down,
post-down, table]: New fields.
(wireguard-configuration-file): Take them into account.
* doc/guix.texi (Wireguard): Update it.
2022-10-20 13:07:46 +02:00
Mathieu Othacehe
2a5c2a6184
installer: Propose the user to report a "guix system init" failure.
...
* gnu/installer/newt/final.scm (run-install-failed-page): Add a "Report the
failure" button.
2022-10-20 10:50:50 +02:00
Mathieu Othacehe
96bb00d203
installer: Run the "guix system init" command in a PTY.
...
Fixes: <https://issues.guix.gnu.org/55360 >
* gnu/installer/utils.scm (run-external-command-with-handler/tty): New
procedure.
(run-external-command-with-line-hooks, run-command): Add a TTY? argument.
* gnu/installer/final.scm (install-system): Call run-command with TTY?
argument set to #true.
2022-10-20 10:50:50 +02:00
cage
4716cea625
gnu: Add cl-trivial-sockets.
...
* gnu/packages/lisp-xyz.scm (cl-trivial-sockets, sbcl-trivial-sockets): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-20 10:04:05 +02:00
Leo Famulari
16d4ded630
gnu: linux-libre 5.4: Update to 5.4.219.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.219.
(linux-libre-5.4-pristine-source): Update hash.
2022-10-19 22:08:42 -04:00
Leo Famulari
f5c9379132
gnu: linux-libre 5.10: Update to 5.10.149.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.149.
(linux-libre-5.10-pristine-source): Update hash.
2022-10-19 22:08:35 -04:00
Tobias Geerinckx-Rice
e61660c78f
gnu: adcli: Update to 0.9.2.
...
* gnu/packages/sssd.scm (adcli): Update to 0.9.2.
2022-10-16 02:00:43 +02:00
Tobias Geerinckx-Rice
64a5cafb55
gnu: ne: Cross-compile.
...
* gnu/packages/text-editors.scm (ne)[arguments]: Use CC-FOR-TARGET and
don't strip binaries.
2022-10-16 02:00:43 +02:00
Tobias Geerinckx-Rice
e02a49e11d
gnu: Add age-keygen.
...
* gnu/packages/golang.scm (age-keygen): New public variable.
2022-10-16 02:00:33 +02:00
Tobias Geerinckx-Rice
d618307725
gnu: Add go-filippo-io-age.
...
* gnu/packages/password-utils.scm (age): Move from here…
* gnu/packages/golang.scm (age): …to here, and inherit from…
(go-filippo-io-age): …this new source-only package variable.
2022-10-16 02:00:33 +02:00
Tobias Geerinckx-Rice
07232e6b17
gnu: pass-age: Unpropagate inputs.
...
* gnu/packages/password-utils.scm (pass-age)[arguments]:
Add a new 'wrap-script phase.
[propagated-inputs]: Move them all from here…
[inputs]: …to here. Add missing procps for /bin/pkill.
2022-10-16 02:00:29 +02:00
Greg Hogan
88746cd80b
gnu: tmux: Update to 3.3a.
...
* gnu/packages/tmux.scm (tmux): Update to 3.3a.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-10-16 02:00:13 +02:00
Nicolas Graves
ac553ba68e
gnu: Add pass-age.
...
* gnu/packages/password-utils.scm (pass-age): New variable.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-10-16 02:00:03 +02:00
Nicolas Graves
4daa160b7b
gnu: Add age.
...
* gnu/packages/password-utils.scm (age): New variable.
2022-10-16 02:00:02 +02:00
Nicolas Graves
638d60c4a2
gnu: Add go-filippo-io-edwards25519.
...
* gnu/packages/golang.scm (go-filippo-io-edwards25519): New variable.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-10-16 02:00:02 +02:00
Tobias Geerinckx-Rice
c585582fc1
gnu: python-curtsies: Update to 0.4.0.
...
* gnu/packages/terminals.scm (python-curtsies): Update to 0.4.0.
[propagated-inputs]: Replace python-blessings with python-blessed.
[native-inputs]: Remove python-mock.
2022-10-16 02:00:02 +02:00
Tobias Geerinckx-Rice
fea40a0ceb
gnu: bpython: Update to 0.23.
...
* gnu/packages/python-xyz.scm (bpython): Update to 0.23.
2022-10-16 02:00:02 +02:00
Tobias Geerinckx-Rice
af01ce15a8
gnu: pass-tomb: Update to 1.3.
...
* gnu/packages/password-utils.scm (pass-tomb): Update to 1.3.
2022-10-16 02:00:02 +02:00
Tobias Geerinckx-Rice
0627af4db2
gnu: cracklib: Update to 2.9.8.
...
* gnu/packages/password-utils.scm (cracklib): Update to 2.9.8.
2022-10-16 02:00:02 +02:00
Tobias Geerinckx-Rice
14bcee508e
gnu: iperf: Update to 3.12.
...
* gnu/packages/networking.scm (iperf): Update to 3.12.
2022-10-16 02:00:02 +02:00
Tobias Geerinckx-Rice
9f3d6e2885
gnu: qtractor: Update to 0.9.28.
...
* gnu/packages/music.scm (qtractor): Update to 0.9.28.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
8c4ef41622
gnu: padthv1: Update to 0.9.27.
...
* gnu/packages/music.scm (padthv1): Update to 0.9.27.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
884e7b2e47
gnu: samplv1: Update to 0.9.27.
...
* gnu/packages/music.scm (samplv1): Update to 0.9.27.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
e63e2518c2
gnu: drumkv1: Update to 0.9.27.
...
* gnu/packages/music.scm (drumkv1): Update to 0.9.27.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
060a154aad
gnu: synthv1: Update to 0.9.27.
...
* gnu/packages/music.scm (synthv1): Update to 0.9.27.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
0c5bc867a1
gnu: mtools: Update to 4.0.41.
...
* gnu/packages/mtools.scm (mtools): Update to 4.0.41.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
f6d784b3b5
gnu: cpuid: Update to 20221003.
...
* gnu/packages/linux.scm (cpuid): Update to 20221003.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
e3674f83b2
gnu: mcelog: Update to 189.
...
* gnu/packages/linux.scm (mcelog): Update to 189.
2022-10-16 02:00:01 +02:00
Tobias Geerinckx-Rice
f8a29a4163
gnu: qjackctl: Remove unused qtx11extras input.
...
* gnu/packages/audio.scm (qjackctl)[inputs]: Remove qtx11extras.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
d7e59fb2ad
gnu: qjackctl: Update to 0.9.8.
...
* gnu/packages/audio.scm (qjackctl): Update to 0.9.8.
[inputs]: Add qtsvg-5.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
dd9b31254b
gnu: cryfs: Remove trailing #t.
...
* gnu/packages/crypto.scm (cryfs)[arguments]:
Don't explicitly return #t from phases.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
d90d24bcbc
gnu: cryfs: Remove input labels.
...
* gnu/packages/crypto.scm (cryfs)[native-inputs]: Remove label strings.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
9923bf62dc
gnu: cryfs: Update to 0.11.3.
...
* gnu/packages/crypto.scm (cryfs): Update to 0.11.3.
2022-10-16 02:00:00 +02:00
Tobias Geerinckx-Rice
e0f12e0f99
gnu: bind: Update to 9.16.34.
...
* gnu/packages/dns.scm (isc-bind): Update to 9.16.34.
2022-10-16 02:00:00 +02:00
Artyom Bologov
7ecd85eacb
gnu: cl-webkit: Update to 3.5.5.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-webkit): Update to 3.5.5.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-10-19 16:33:55 +02:00
Maxim Cournoyer
3bb145b6e2
gnu: python-robotframework-pabot: Update to 2.7.0.
...
* gnu/packages/python-xyz.scm (python-robotframework-pabot): Update to 2.7.0.
2022-10-18 13:01:49 -04:00
Maxim Cournoyer
e2c55a679d
gnu: python-robotframework-datadriver: Update to 1.6.1.
...
* gnu/packages/python-xyz.scm (python-robotframework-datadriver): Update to 1.6.1.
2022-10-18 13:01:49 -04:00
Maxim Cournoyer
190be4921c
gnu: python-robotframework: Update to 5.0.1.
...
* gnu/packages/python-xyz.scm (python-robotframework): Update to 5.0.1.
[phases] {delete-problematic-tests}: Re-instate the sending_signal.robot
tests, fixed upstream.
[native-inputs]: Replace python-jsonschema with python-jsonschema-next.
2022-10-18 13:01:49 -04:00
Tobias Geerinckx-Rice
033cbd11a8
gnu: libksba: Graft to 1.6.2 [fixes CVE-2022-3515].
...
* gnu/packages/gnupg.scm (libksba/fixed): New variable.
(libksba): Use it as grafted replacement.
2022-10-16 02:00:00 +02:00
Nicolas Goaziou
7fdbd37e12
gnu: notmuch: Update to 0.37.
...
* gnu/packages/mail.scm (notmuch): Update to 0.37.
2022-10-18 18:40:01 +02:00
Nicolas Goaziou
c9eac0c355
gnu: emacs-org-modern: Update to 0.5.
...
* gnu/packages/emacs-xyz.scm (emacs-org-modern): Update to 0.5.
2022-10-18 18:32:16 +02:00
Nicolas Goaziou
2589997fab
gnu: xournalpp: Update to 1.1.2.
...
* gnu/packages/pdf.scm (xournalpp): Update to 1.1.2.
2022-10-18 18:22:19 +02:00
Nicolas Goaziou
e39b4902a0
gnu: scummvm: Use G-expressions.
...
* gnu/packages/emulators.scm (scummvm)[arguments]: Use G-expressions.
2022-10-18 18:22:19 +02:00
Nicolas Goaziou
e598e2a57b
gnu: scummvm: Update to 2.6.1.
...
* gnu/packages/emulators.scm (scummvm): Update to 2.6.1.
2022-10-18 18:22:19 +02:00
florhizome
72a41c4012
gnu: Add nbfc-linux.
...
* gnu/packages/linux.scm (nbfc-linux): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-18 14:55:29 +02:00
Felix Lechner
b8dd3e59ce
gnu: wolfssl: Update to 5.5.1 [security fixes].
...
* gnu/packages/tls.scm (wolfssl): Update to 5.5.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-18 14:43:08 +02:00
jgart
70cac2829f
gnu: Add python-simple-pid.
...
* gnu/packages/python-science.scm (python-simple-pid): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-18 14:41:10 +02:00
Ludovic Courtès
7460b06a2d
doc: Mention Guile-GnuTLS in the requirements.
...
* doc/guix.texi (Requirements): Update.
2022-10-18 14:27:01 +02:00
Ludovic Courtès
c340c24a8d
gnu: hpcguix-web: Remove input labels.
...
* gnu/packages/web.scm (hpcguix-web)[native-inputs, inputs]: Remove labels.
2022-10-18 14:27:01 +02:00
Ludovic Courtès
6476f33f31
self: Switch to Guile-GnuTLS.
...
* guix/self.scm (specification->package, compiled-guix): Replace
"gnutls" with "guile-gnutls".
2022-10-18 14:27:01 +02:00
Ludovic Courtès
7c60e8f808
gnu: guix: Switch to Guile-GnuTLS.
...
This is a followup to a1cd93083b .
* gnu/packages/package-management.scm (guix)[arguments]: Refer to
"guile-gnutls" instead of "gnutls".
[native-inputs, propagated-inputs]: Replace 'gnutls' with 'guile-gnutls'.
[inputs]: Add 'zlib'.
(guix-daemon): Replace 'gnutls' with 'guile-gnutls'.
(guix-build-coordinator)[arguments, propagated-inputs, native-inputs]:
Replace 'gnutls' with 'guile-gnutls'.
(guix-build-coordinator/agent-only): Likewise.
(nar-herder): Likewise.
2022-10-18 14:27:01 +02:00
Ludovic Courtès
69ed946bbc
gnu: gnutls-latest: Remove dependency on Guile.
...
* gnu/packages/tls.scm (gnutls-latest)[inputs]: Remove 'guile' and add
'libunistring'.
[native-inputs]: Remove 'guile'.
2022-10-18 14:27:01 +02:00
Ludovic Courtès
d5f07aa832
gnu: guile-gnutls: Fix cross-crompilation.
...
* gnu/packages/tls.scm (guile-gnutls)[source]: Add "gnutls-cross.patch".
[native-inputs]: Add 'gnutls'.
[inputs]: Add 'guile-3.0'.
2022-10-18 14:26:46 +02:00
Christopher Baines
0289312bc9
gnu: guix-build-coordinator: Update to 0-65.26fe4a7.
...
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-65.26fe4a7.
2022-10-18 11:05:23 +01:00
EuAndreh
b857d239e7
gnu: Add perl-critic.
...
* gnu/packages/perl.scm (perl-critic): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:58:49 +01:00
EuAndreh
dfbeb5d1ce
gnu: Add perl-ppix-utilities.
...
* gnu/packages/perl.scm (perl-ppix-utilities): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:58:48 +01:00
EuAndreh
d45c5a47ba
gnu: Add perl-ppix-quotelike.
...
* gnu/packages/perl.scm (perl-ppix-quotelike): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:58:48 +01:00
EuAndreh
4acc8a9019
gnu: Add perl-ppix-regexp.
...
* gnu/packages/perl.scm (perl-ppix-regexp): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:58:48 +01:00
EuAndreh
2a531bfb34
gnu: Add perl-string-format.
...
* gnu/packages/perl.scm (perl-string-format): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:58:48 +01:00
EuAndreh
b91a5667c6
gnu: Add perl-readonly-xs.
...
* gnu/packages/perl.scm (perl-readonly-xs): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:58:48 +01:00
EuAndreh
885944bc10
gnu: Add perl-pod-spell.
...
* gnu/packages/perl.scm (perl-pod-spell): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:58:48 +01:00
EuAndreh
5f30ce0314
gnu: Add perl-config-tiny.
...
* gnu/packages/perl.scm (perl-config-tiny): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:58:47 +01:00
EuAndreh
5595aa9a75
gnu: Add perl-regexp-grammars.
...
* gnu/packages/perl.scm (perl-regexp-grammars): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:56:49 +01:00
EuAndreh
6d32d835aa
gnu: Add perl-commonmark.
...
* gnu/packages/markup.scm (perl-commonmark): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:56:30 +01:00
ROCKTAKEY
c844489350
gnu: Add skk-jisyo.
...
* gnu/packages/dictionaries.scm (skk-jisyo): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:52:25 +01:00
EuAndreh via Guix-patches via
dbdc8f64e7
services: nginx: Improve reload action documentation.
...
* gnu/services/web.scm (nginx-shepherd-service): Be explicit about the
reload action not changing the configuration file, but instead
respawning worker processes.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:48:32 +01:00
EuAndreh via Guix-patches via
117b0a65c8
services: nginx: Use nginx-action over inline gexp.
...
* gnu/services/web.scm (nginx-shepherd-service): Use the simpler
"nginx-action" helper, for the same reload side-effect.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:48:14 +01:00
Sughosha
3c7d4fdc30
gnu: textpieces: Reorder dependencies and fix description.
...
* gnu/packages/textpieces.scm (textpieces)[description]: Add missing "is a".
[inputs, native-inputs]: Reorder.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-18 10:45:58 +01:00
Efraim Flashner
054ddcbbc6
gnu: ncdu-2: Update to 2.2.
...
* gnu/packages/ncdu.scm (ncdu-2): Update to 2.2.
2022-10-18 09:22:39 +03:00
Efraim Flashner
b41ff1a00d
gnu: gcc-2.95: Add initial work toward building for arm.
...
* gnu/packages/gcc.scm (gcc-2.95)[source]: Adjust source to use newer
macros from more recent versions of GCC.
2022-10-18 08:41:48 +03:00
Efraim Flashner
96f8945425
gnu: gcc-2.95: Add substitution for the Hurd's linker.
...
* gnu/packages/gcc.scm (gcc-2.95)[arguments]: Adjust custom
'set-dynamic-linker-file-name phase to also substitute the Hurd's
linker.
2022-10-18 08:41:44 +03:00
Leo Famulari
d85c254319
gnu: nginx: Support SSL / TLS for stream proxies.
...
* gnu/packages/web.scm (nginx)[arguments]: Add "--with-stream_ssl_module"
to #:configure-flags.
2022-10-17 17:23:20 -04:00
Leo Famulari
e9dcd4a3e4
gnu: linux-libre 5.4: Update to 5.4.218.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.218.
(linux-libre-5.4-pristine-source): Update hash.
2022-10-17 17:23:20 -04:00
Leo Famulari
9803ac71bd
gnu: linux-libre 5.10: Update to 5.10.148.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.148.
(linux-libre-5.10-pristine-source): Update hash.
2022-10-17 17:23:20 -04:00
Leo Famulari
73e3e1c08a
gnu: linux-libre 5.15: Update to 5.15.74.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.74.
(linux-libre-5.15-pristine-source): Update hash.
2022-10-17 17:23:19 -04:00
Leo Famulari
92a71b46d8
gnu: linux-libre 5.19: Update to 5.19.16.
...
* gnu/packages/linux.scm (linux-libre-5.19-version): Update to 5.19.16.
(linux-libre-5.19-pristine-source): Update hash.
2022-10-17 17:23:19 -04:00
Ludovic Courtès
2383e14518
lint: source: Add check for <svn-reference> over HTTP(S).
...
* guix/lint.scm (svn-reference-uri-with-userinfo): New procedure.
(check-source): Add 'svn-reference?' clause.
* tests/lint.scm ("source: svn-reference, HTTP 200")
("source: svn-reference, HTTP 404"): New tests.
2022-10-17 23:15:08 +02:00
Ludovic Courtès
ec73570be5
lint: 'probe-uri' honors the 'userinfo' part of URIs.
...
* guix/lint.scm (probe-uri): Honor the 'userinfo' part of URI.
2022-10-17 23:15:08 +02:00
Ludovic Courtès
257917d08b
svn-download: Add missing exports.
...
* guix/svn-download.scm: Export more <svn-reference> and
<svn-multi-reference> accessors.
2022-10-17 23:15:08 +02:00
Ludovic Courtès
dada5e86ed
build-system/qt: Disable grafts.
...
Fixes <https://issues.guix.gnu.org/58567 >.
Reported by Marius Bakke <marius@gnu.org >.
This is a followup to df46bef48e .
* guix/build-system/qt.scm (qt-build, qt-cross-build): Pass #:graft? #f
to 'gexp->derivation'.
2022-10-17 23:15:07 +02:00
Ludovic Courtès
a1cd93083b
gnu: Add Guile-GnuTLS.
...
* gnu/packages/tls.scm (guile-gnutls): New variable.
2022-10-17 23:15:07 +02:00
Ludovic Courtès
30ac571eac
svn-download: Pass multi-fetch parameters through environment variables.
...
* guix/svn-download.scm (svn-multi-fetch)[build]: Check for environment
variables instead of splicing REF fields.
Pass #:script-name and #:env-vars to 'gexp->derivation'.
2022-10-17 23:15:07 +02:00
Ludovic Courtès
8599fccef8
svn-download: Pass parameters through environment variables.
...
This ensures a single "svn-download" script is created in the store for
all the origins that use 'svn-fetch'.
* guix/svn-download.scm (svn-fetch)[build]: Check for environment
variables instead of splicing REF fields.
Pass #:script-name and #:env-vars to 'gexp->derivation'.
2022-10-17 23:15:07 +02:00
Nicolas Goaziou
ec7ba6ae53
gnu: emacs-ob-sclang: Fix build.
...
* gnu/packages/emacs-xyz.scm (emacs-ob-sclang)[source]<origin>: Use new
upstream repository.
[home-page]: Set to new upstream repository.
The package is no longer extracted from Org Contrib.
2022-10-17 20:02:39 +02:00
Nicolas Goaziou
81228a1f50
gnu: emacs-hierarchy: Remove variable.
...
* gnu/packages/emacs-xyz.scm (emacs-hierarchy): Remove variable.
Library was integrated into Emacs 28.1 and is developed there from now on.
See <https://github.com/DamienCassou/hierarchy >.
2022-10-17 19:52:13 +02:00
Nicolas Goaziou
5a5b93304d
gnu: emacs-md4rd: Remove emacs-hierarchy input.
...
* gnu/packages/emacs-xyz.scm (emacs-md4rd)[propagated-inputs]: Remove
EMACS-HIERARCHY. Re-order files alphabetically.
2022-10-17 19:51:00 +02:00
Nicolas Goaziou
30bdeb8842
gnu: emacs-vertico: Update to 0.28.
...
* gnu/packages/emacs-xyz.scm (emacs-vertico): Update to 0.28.
2022-10-17 18:43:48 +02:00
Nicolas Goaziou
468ac3067d
gnu: emacs-focus: Update to 1.0.1.
...
* gnu/packages/emacs-xyz.scm (emacs-focus): Update to 1.0.1.
2022-10-17 18:43:48 +02:00
Nicolas Goaziou
5ef2d3685c
gnu: emacs-corfu: Update to 0.28.
...
* gnu/packages/emacs-xyz.scm (emacs-corfu): Update to 0.28.
2022-10-17 18:43:47 +02:00
Nicolas Goaziou
a1c0181617
gnu: emacs-buttercup: Update to 1.27.
...
* gnu/packages/emacs-xyz.scm (emacs-buttercup): Update to 1.27.
2022-10-17 18:43:47 +02:00
Efraim Flashner
93d257c3cb
gnu: git-annex: Update to 10.20221003.
...
* gnu/packages/haskell-apps.scm (git-annex): Update to 10.20221003.
2022-10-17 19:16:42 +03:00
Jan (janneke) Nieuwenhuizen
fd4cbcbed7
gnu: dezyne: Update to 2.16.2.
...
* gnu/packages/dezyne.scm (dezyne): Update to 2.16.2.
2022-10-17 14:55:45 +02:00
Marius Bakke
b13362107d
gnu: emacs-eglot: Update source hash.
...
Upstream moved the 1.9 tag to a newer commit that updates the version comment
in the source code:
https://github.com/joaotavora/eglot/releases/tag/1.9
The 1.9 update in Guix was done one day prior to the current tag.
* gnu/packages/emacs-xyz.scm (emacs-eglot)[source](sha256): Update.
2022-10-17 14:49:41 +02:00
Marius Bakke
6ecf88a6a1
gnu: poppler-next: Don't use 'package/inherit'.
...
* gnu/packages/pdf.scm (poppler-next): Use object inheritance instead of
PACKAGE/INHERIT because it is a different version, so replacement of the
original should not be inherited.
2022-10-17 14:49:41 +02:00
Marius Bakke
5a5b729d66
gnu: abseil-cpp: Don't use 'package/inherit'.
...
* gnu/packages/cpp.scm (abseil-cpp): Use object inheritance instead of
PACKAGE/INHERIT because the inherited package has a different source, thus
replacements should not be inherited.
2022-10-17 14:49:41 +02:00
Andrew Tropin
883fb8f41b
installer: Factorize url-alive? in internet check.
...
* gnu/installer/newt/network.scm (wait-service-online): Factorize url-alive?
in internet check.
2022-10-17 16:34:07 +04:00
Andrew Tropin
3ab14386cd
home: dbus: Inherit environment variables from shepherd.
...
* gnu/home/services/desktop.scm (home-dbus-shepherd-services)[start]
<#:environment-variables>: Inherit environment variables from shepherd.
2022-10-17 15:49:27 +04:00
Andrew Tropin
6fad3d5985
home: dbus: Remove unecessary list call.
...
* gnu/home/services/desktop.scm (home-dbus-shepherd-services)[start]
<#:environment-variables>: Remove unecessary list call.
2022-10-17 15:18:55 +04:00
Attila Lendvai
c2cb116032
gnu: Add hunspell-dict-hu.
...
* gnu/packages/libreoffice.scm (hunspell-dict-hu): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-17 10:45:10 +02:00
Michael Rohleder
76de39c340
gnu: nheko: Do not build api docs.
...
* gnu/packages/messaging.scm (nheko)[arguments]<#:configure-flags>: Remove -DBUILD_DOCS=ON.
[native-inputs]: Remove doxygen, graphviz.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-17 10:36:23 +02:00
Konrad Hinsen
cc45fa70f3
gnu: git-annex: Promote git to propagated input
...
* gnu/packages/haskell-apps.scm (git-annex): changed inputs
[propagated-inputs]: Add git
[inputs]: Remove git
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-17 10:06:00 +02:00
Ludovic Courtès
8c90196f1a
read-print: Recognize 'define-record-type' and 'define-record-type*'.
...
* guix/read-print.scm (%special-forms): Add 'define-record-type' and
'define-record-type*'.
2022-10-17 10:00:50 +02:00
Nicolas Graves
d5b54e0137
gnu: Add nerd-dictation/wayland.
...
* gnu/packages/machine-learning.scm (nerd-dictation/wayland): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-17 09:47:51 +02:00
Nicolas Graves
eecb288ca2
gnu: Add nerd-dictation.
...
* gnu/packages/machine-learning.scm (nerd-dictation): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-17 09:47:49 +02:00
Nicolas Graves
a3e20f35f5
gnu: Add python-vosk.
...
* gnu/packages/machine-learning.scm (python-vosk): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-17 09:47:44 +02:00
Nicolas Graves
fadfeeede5
gnu: Add vosk-api.
...
* gnu/packages/machine-learning.scm (vosk-api): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-17 09:47:38 +02:00
Nicolas Graves
0c7a2639bb
gnu: Add kaldi-for-vosk.
...
* gnu/packages/machine-learning.scm (kaldi-for-vosk): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-17 09:47:31 +02:00
Nicolas Graves
9ca6416a19
gnu: Add openfst-for-vosk.
...
* gnu/packages/machine-learning.scm (openfst-for-vosk): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-17 09:47:23 +02:00
Ludovic Courtès
f36522416e
channels: Interpret the 'commit' field of channel as a tag or commit.
...
Previously the 'commit' field would always be interpreted as a commit
ID. This change adds flexibility, allowing for things like:
guix time-machine --commit=v1.2.0 -- describe
* guix/channels.scm (channel-reference): Use 'tag-or-commit' rather than 'commit'.
* guix/inferior.scm (channel-full-commit): Likewise.
* doc/guix.texi (Invoking guix pull): Document it.
(Invoking guix time-machine): Likewise.
2022-10-17 09:37:27 +02:00
Ludovic Courtès
46f7011591
git: 'update-cached-checkout' returns the commit ID when given a tag.
...
Previously, starting with commit
efa578ecae , 'update-cached-checkout' would
return the OID of the annotated tag the tag points to. With this change
it returns the OID of the commit object in all cases.
* guix/git.scm (resolve-reference): In the 'tag' case, call
'tag-target-id' and 'tag-lookup' when OID designates an annotated tag.
* tests/git.scm ("update-cached-checkout, tag"): New test.
2022-10-17 09:37:27 +02:00
Ludovic Courtès
eec920ba93
Revert "nix: Guard against removing temporary roots of living processes."
...
This reverts commit bb0beaecde . This
change broke a number of tests that assumed the previous behavior.
2022-10-17 09:37:27 +02:00
aleksandr barakin
094b357783
installer: Relax internet check availability criteria.
...
Checks the availability of the mirror bordeaux.guix.gnu.org in addition to
ci.guix.gnu.org. This allows to proceed the installation if the
ci.guix.gnu.org is unavailable.
* gnu/installer/newt/network.scm (wait-service-online): Relax internet check
availability criteria.
Signed-off-by: Andrew Tropin <andrew@trop.in >
2022-10-17 10:22:15 +04:00
Thiago Jung Bauermann
6f7b44e42e
news: Add 'pt' translation.
...
* etc/news.scm: Add Portuguese translation of entry about the new
--emulate-fhs option.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-10-17 07:32:47 +02:00
Julien Lepiller
63bb79fa38
doc: Fix typos.
...
These typos were found and reported on weblate.
* doc/guix.texi: Fix typos.
2022-10-17 07:29:51 +02:00
Julien Lepiller
82b0f3755d
guix: Fix typos.
...
These typos were found and reported through weblate.
* gnu/packages/audio.scm (wildmidi)[description]: Fix typo.
* gnu/packages/games.scm (cgoban)[description]: Fix typo.
* gnu/services/version-control.scm (gitolite-service-type)[description]:
Fix typo.
* gnu/installer/newt/substitutes.scm (run-substitutes-page): Remove full
stop at end of title.
* gnu/machine/ssh.scm (machine-ssh-configuration-system): Move
punctuation outside of quotes.
* guix/scripts/home.scm (process-action): Remove trailing space before
newline.
* guix/scripts/system.scm (show-help): Fix typo.
* guix/scripts/environment.scm (with-store/maybe): Fix typo.
2022-10-17 07:29:09 +02:00
Nicolas Goaziou
46b0143714
gnu: Add dds.
...
* gnu/packages/game-development.scm (dds): New variable.
2022-10-16 21:15:10 +02:00
Nicolas Goaziou
e0b11d9e7e
gnu: emacs-tempel: Update to 0.5.
...
* gnu/packages/emacs-xyz.scm (emacs-tempel): Update to 0.5.
2022-10-16 21:08:50 +02:00
Nicolas Goaziou
7d48c651ac
gnu: emacs-marginalia: Update to 0.15.
...
* gnu/packages/emacs-xyz.scm (emacs-marginalia): Update to 0.15.
2022-10-16 21:08:50 +02:00
Nicolas Goaziou
c49bf4814d
gnu: emacs-consult: Update to 0.20.
...
* gnu/packages/emacs-xyz.scm (emacs-consult): Update to 0.20.
2022-10-16 21:08:49 +02:00
Christopher Baines
8bbfa8b26f
gnu: guix-build-coordinator: Update to 0-64.f051c28.
...
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-64.f051c28.
2022-10-16 19:13:53 +01:00
Brendan Tildesley
8935049db9
gnu: 0ad: Update to 0.0.26-alpha.
...
* gnu/packages/games.scm (0ad): Update to 0.0.26-alpha.
[inputs]: Add freetype.
(0ad-data): Update to 0.0.26-alpha.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-16 19:12:59 +01:00
Matthew James Kraai
cf19228932
gnu: Add s3cmd.
...
* gnu/packages/python-xyz.scm (s3cmd): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-16 18:24:26 +01:00
Christopher Baines
c3e103129d
gnu: lziprecover: Fix cross-compilation.
...
* gnu/packages/comression.scm (lziprecover)[arguments]: Set CXX when cross
compiling.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-16 18:18:37 +01:00
Christopher Baines
69bbb720db
gnu: lzip: Fix cross-compilation.
...
Previously the package would build, but the binaries would be build for the
host system, rather than the target.
* gnu/packages/compression.scm (lzip)[arguments]: Set CXX when cross
compiling.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-16 18:15:15 +01:00
Ryan Tolboom
cbaf47bb8b
gnu: Add python-dotmap
...
* gnu/packages/python-xyz.scm: New variable
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-16 18:15:03 +01:00
Sughosha
fc68b97db1
gnu: Add textpieces.
...
* gnu/packages/text-editors.scm (textpieces): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-16 18:09:56 +01:00
Ricardo Wurmus
8488fa5df3
gnu: ghc-4: Use Perl 5.6
...
* gnu/packages/haskell.scm (ghc-4)[native-inputs]: Replace perl-5.14 with
perl-5.6.
2022-10-16 17:36:00 +02:00
Ricardo Wurmus
324e056ba0
gnu: Add perl-5.6.
...
* gnu/packages/perl.scm (perl-5.6): New variable.
2022-10-16 17:36:00 +02:00
Marius Bakke
3d8c243efb
gnu: akgregator: Fix build.
...
* gnu/packages/kde.scm (akregator)[arguments]: Use SEARCH-INPUT-FILE to locate
QtWebEngine instead of referring to non-existent label.
2022-10-16 15:14:38 +02:00
Marius Bakke
8681d90d50
gnu: akgregator: Fix source hash.
...
This is a follow-up to commit 6971feca53 .
* gnu/packages/kde.scm (akregator)[source](sha256): Update.
2022-10-16 15:14:38 +02:00
Marius Bakke
bf30303c17
gnu: gst-plugins-bad: Build without faac.
...
This is a follow-up to commit fe0ab5dbea .
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Remove FAAC.
2022-10-16 15:14:38 +02:00
Liliana Marie Prikler
fe0ab5dbea
gnu: Remove faac.
...
Contrary to the misleading license field, the ISO MPEG-4 code is not actually
GPL-licensed, but actually contradicts freedom 0.
For further information, see <https://issues.guix.gnu.org/58147 >.
* gnu/packages/audio.scm (faac): Delete variable.
2022-10-16 13:58:56 +02:00
Liliana Marie Prikler
1229979232
gnu: transcode: Build without faac.
...
* gnu/packages/video.scm (transcode)[#:configure-flags]: Remove
“--enable-faac”.
[inputs]: Remove faac.
2022-10-16 13:58:56 +02:00
Liliana Marie Prikler
72865a2e8a
gnu: ffmpeg: Don't mention libfaac.
...
* gnu/packages/video.scm (ffmpeg-5): Remove comment mentioning faac.
2022-10-16 13:58:56 +02:00
Julien Lepiller
26ff45cb03
gnu: lablgtk3: Update to 3.1.3.
...
* gnu/packages/ocaml.scm (lablgtk3): Update to 3.1.3.
[propagated-inputs]: Add ocaml-camlp-streams.
2022-10-16 12:21:49 +02:00
Julien Lepiller
3ad8ab8404
gnu: ocaml-core: Update to 0.15.1.
...
* gnu/packages/ocaml.scm (ocaml-core): Update to 0.15.1.
2022-10-16 12:21:28 +02:00
Liliana Marie Prikler
4c43c79e40
gnu: emacs: Update to 28.2.
...
* gnu/packages/emacs.scm (emacs): Update to 28.2.
2022-10-16 11:23:58 +02:00
Marius Bakke
617c083e7b
gnu: kwayland: Use qt-build-system and enable all tests.
...
* gnu/packages/kde-frameworks.scm (kwayland)[build-system]: Change to
QT-BUILD-SYSTEM to avoid overriding the check phase, and to get verbose output
on failure.
[arguments]: Add #:parallel-build?. Remove skip-specific-tests phase. Don't
override check phase, but add new to set XDG_RUNTIME_DIR.
2022-10-16 01:12:35 +02:00
Marius Bakke
c567a82a69
Merge branch 'staging'
2022-10-16 00:10:07 +02:00
Marius Bakke
3a84b4ec4c
gnu: ghc-cryptohash-sha256: Update cabal revision metadata.
...
Before this commit, the .cabal metadata file referred to the previous version,
but was not noticed because it had no incompatible changes, and was 404
upstream (thus falling back to cache) until recently a new metadata revision
was made for 0.11.102.1.
https://hackage.haskell.org/package/cryptohash-sha256-0.11.102.1/revisions/
This is a follow-up to commit 54f4502e45 , which
should have reset #:cabal-revision to 0 and changed the hash.
* gnu/packages/haskell-crypto.scm (ghc-cryptohash-sha256)[arguments]: Update
#:cabal-revision hash.
2022-10-16 00:06:03 +02:00
Marius Bakke
d799c8a5f6
gnu: fp16: Fix build on i686-linux.
...
* gnu/packages/patches/fp16-implicit-double.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/maths.scm (fp16)[source](patches): Add it.
2022-10-15 23:26:59 +02:00
Mădălin Ionel Patrașcu
5d58d20684
gnu: Add r-macrophage.
...
X-Debbugs-Cc: rekado@elephly.net
* gnu/packages/bioconductor.scm (r-macrophage): New variable.
2022-10-15 21:07:24 +02:00
Liliana Marie Prikler
1682aba247
gnu: emacs-next: Update to 29.0.50-2.4aeb80c.
...
* gnu/packages/patches/emacs-native-comp-driver-options.patch: New file.
* gnu/local.mk: Register it here.
* gnu/packages/emacs.scm (emacs-next): Update to 29.0.50-2.4aeb80c.
2022-10-15 16:32:04 +02:00
zimoun
4cb5144df0
doc: Explain Emacs native-compilation.
...
* doc/guix.texi ("Application Setup")["Emacs Packages"]: Add a note
explaining that Emacs can compile packages to native code now.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 15:34:56 +02:00
David Elsing
18f95f9335
gnu: Add rdkit.
...
* gnu/packages/chemistry.scm (rdkit): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:05:15 +02:00
David Elsing
175d1a0151
gnu: Add ringdecomposerlib.
...
* gnu/packages/chemistry.scm (ringdecomposerlib): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:05:15 +02:00
David Elsing
a3844f8a18
gnu: Add avalon-toolkit.
...
* gnu/packages/chemistry.scm (avalon-toolkit): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:05:15 +02:00
David Elsing
cfd62fdf86
gnu: Add yaehmop.
...
* gnu/packages/chemistry.scm (yaehmop): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:05:15 +02:00
David Elsing
697f0c8a6a
gnu: Add coordgenlibs.
...
* gnu/packages/chemistry.scm (coordgenlibs): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:05:15 +02:00
David Elsing
f170715398
gnu: Add maeparser.
...
* gnu/packages/chemistry.scm (maeparser): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:05:15 +02:00
David Elsing
06358ee715
gnu: Add freesasa.
...
* gnu/packages/chemistry.scm (freesasa): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:05:15 +02:00
David Elsing
696f20f0f6
gnu: Add gemmi.
...
* gnu/packages/patches/gemmi-fix-pegtl-usage.patch: New file.
* gnu/packages/patches/gemmi-fix-sajson-types.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register them here.
* gnu/packages/chemistry.scm (gemmi): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:04:54 +02:00
David Elsing
3cbb634a89
gnu: Add sajson-for-gemmi.
...
* gnu/packages/cpp.scm (sajson-for-gemmi): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:01:34 +02:00
David Elsing
fd4342728d
gnu: Add optionparser.
...
* gnu/packages/cpp.scm (optionparser): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:01:34 +02:00
David Elsing
d42f648c0c
gnu: Add tinydir.
...
* gnu/packages/c.scm (tinydir): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:01:34 +02:00
David Elsing
f169d7a128
gnu: Add cbehave.
...
* gnu/packages/check.scm (cbehave): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:01:34 +02:00
David Elsing
e34bf9b634
gnu: Add sajson.
...
* gnu/packages/cpp.scm (sajson): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:01:34 +02:00
David Elsing
c152902191
gnu: Add pocketfft-cpp.
...
* gnu/packages/patches/pocketfft-cpp-prefer-preprocessor-if.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it here.
* gnu/packages/cpp.scm (pocketfft-cpp): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:01:33 +02:00
David Elsing
afd853977a
gnu: Add fast-float.
...
* gnu/packages/cpp.scm (fast-float-test-files, fast-float): New variables.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-15 12:01:33 +02:00
Pierre-Henry Fröhring
d923cf1dea
gnu: ghc-lucid: Fix cabal-revision.
...
Was not updated after update in commit b97f549b14 .
* gnu/packages/haskell-xyz.scm (ghc-lucid)[arguments]: Update
cabal-revision.
Signed-off-by: Lars-Dominik Braun <lars@6xq.net >
2022-10-15 10:25:21 +02:00
Arun Isaac
5f414c8edb
gnu: font-ibm-plex: Use git source.
...
* gnu/packages/fonts.scm (font-ibm-plex)[source]: Use git source.
2022-10-15 11:56:14 +05:30
Brian Kubisiak
4dfaddfc44
gnu: Add python-crossenv.
...
* gnu/packages/python-xyz.scm (python-crossenv): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-15 00:44:09 +02:00
kiasoc5
8fbbb8fc31
gnu: bemenu: Update to 0.6.10, use new package style.
...
* gnu/packages/xdisorg.scm (bemenu): Update to 0.6.10.
[arguments]: Use G-expressions. Use #$output instead of assoc-ref.
[inputs]: Remove labels.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-15 00:44:09 +02:00
Hilton Chain
807c0658c8
gnu: libglvnd: Update to 1.5.0.
...
* gnu/packages/gl.scm (libglvnd): Update to 1.5.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-15 00:44:09 +02:00
Ludovic Courtès
26965563ef
git: 'update-cached-checkout' recognizes truncated commit IDs.
...
Fixes a regression introduced in
602527ab97 that broke
'tests/guix-build-branch.sh'.
* guix/git.scm (resolve-reference): Revert change from
602527ab97 .
2022-10-15 00:44:09 +02:00
Brian Kubisiak
a11522a024
gnu: emacs-eval-in-repl-erlang: Fix unbound variable.
...
Commit 0b120ad5f8 introduced a circular
dependency where (gnu packages erlang) would transitively load
(gnu packages emacs-xyz) before the emacs-erlang package was defined.
* gnu/packages/emacs-xyz.scm (emacs-eval-in-repl-erlang)[#:inputs]: Wrap in
delay.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-14 23:49:51 +02:00
Liliana Marie Prikler
cd0d27f30d
gnu: emacs-ido-completing-read+: Disable native compilation.
...
This fixes an issue, wherein inadvertent native compilation leads to
system crashes. See <https://bugs.gnu.org/57878 > for a discussion.
* gnu/packages/emacs-xyz.scm (emacs-ido-completing-read+)[arguments]:
Add a phase to disable native compilation.
2022-10-14 21:02:24 +02:00
Liliana Marie Prikler
8b809a31fa
guix: emacs-utils: Support disabling native-compilation.
...
* guix/build/emacs-utils.scm (emacs-batch-disable-compilation): Add ‘native?’
argument and honour it.
2022-10-14 20:41:33 +02:00
Efraim Flashner
322917aeb8
Merge remote-tracking branch 'origin/master' into staging
...
Conflicts:
gnu/packages/gnuzilla.scm
gnu/packages/graphics.scm
gnu/packages/gstreamer.scm
gnu/packages/gtk.scm
gnu/packages/kde-frameworks.scm
gnu/packages/video.scm
2022-10-12 14:36:44 +03:00
Marius Bakke
e1baf802cc
gnu: Register (gnu packages bqn) in build infrastructure.
...
This is a follow-up to commit 9aa2a41b47 .
* gnu/local.mk (GNU_SYSTEM_MODULES): Add gnu/packages/bqn.scm.
2022-10-12 11:09:38 +02:00
Marius Bakke
2d2afb4cf3
gnu: ungoogled-chromium: Update to 106.0.5249.103-1.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 106.0.5249.103.
(%ungoogled-origin, ungoogled-chromium): Update hashes.
2022-10-12 10:46:36 +02:00
Maxim Cournoyer
e46bb5fd5a
guix-install.sh: Restore compatibility with "yes" invocation.
...
Commit 6a2e303d3a had modified prompt_yes_no to only read a single character,
aiming to ease the user experience. This was, in retrospect, a bad idea, as
it makes user input error more likely and introduces complexity.
This commit reverts to line-oriented input, while preserving the default yes
value so that a user can simply hit 'Enter' at the prompt in place of typing
"yes".
* etc/guix-install.sh (_flush): Delete function.
(prompt_yes_no): Restore line-oriented read. Remove loop. Make anything else
than yes means no. Use Bash features to streamline definition.
Reported-by: Lars-Dominik Braun <lars@6xq.net > and others.
2022-10-11 12:00:44 -04:00
mirlan
68d79a8b60
gnu: Add libskk.
...
* gnu/packages/language.scm (libskk): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-11 16:05:32 +02:00
Tanguy Le Carrour
f5fd741474
gnu: profanity: Update to 0.13.0.
...
* gnu/packages/messaging.scm (profanity): Update to 0.13.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-11 16:05:32 +02:00
Tanguy Le Carrour
4e769c1d27
gnu: libstrophe: Update to 0.12.2.
...
* gnu/packages/messaging.scm (libstrophe): Update to 0.12.2.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-11 16:05:32 +02:00
Ludovic Courtès
ff324d3814
gnu: mmg: Add dependency on Perl.
...
* gnu/packages/graphics.scm (mmg)[native-inputs]: Add PERL.
2022-10-11 16:05:32 +02:00
jgart
f8529b9eec
gnu: gtkwave: Update to 3.3.113.
...
* gnu/packages/fpga.scm (gtkwave): Update to 3.3.113.
[inputs]: Use new style.
[arguments]: Use gexp.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-11 16:05:32 +02:00
Michael Rohleder
49ed67692d
gnu: python-pydyf: Update to 0.3.0.
...
* gnu/packages/pdf.scm (python-pydyf): Update to 0.3.0.
[arguments]: Add phases to replace build and install phases.
[native-inputs]: Add python-flit-core, python-pypa-build.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-11 16:05:32 +02:00
Ludovic Courtès
ac338620bc
gnu: emacs-guix: Remove input labels.
...
* gnu/packages/emacs-xyz.scm (emacs-guix)[inputs]: Remove labels.
2022-10-11 16:05:32 +02:00
Ludovic Courtès
58a671f344
gnu: emacs-guix: Update to cf5b7a4.
...
* gnu/packages/emacs-xyz.scm (emacs-guix): Update to cf5b7a4.
[home-page]: Update.
2022-10-11 16:05:31 +02:00
Ludovic Courtès
22b9734b67
Revert "guix system: Remove unused 'read-operating-system' procedure."
...
This reverts commit d11a432adf .
The 'read-operating-system' is used in Emacs-Guix.
2022-10-11 16:05:31 +02:00
Ludovic Courtès
602527ab97
git: Factorize 'commit-id?' predicate.
...
* guix/git.scm (commit-id?): New procedure, copied from (guix swh).
(resolve-reference): Use it instead of inline code.
* guix/inferior.scm (channel-full-commit): Likewise.
2022-10-11 16:05:31 +02:00
Ludovic Courtès
7d9fd1d7b7
guix import: Add a blank line after each package definition.
...
Starting from commit 371a83b764 , 'guix
import crate -r' (or similar) would no longer print a blank line in
between definitions. This patch fixes it.
Reported by jgart <jgart@dismail.de >.
* guix/scripts/import.scm (guix-import): Add second 'newline' call.
2022-10-11 16:05:31 +02:00
Maxim Cournoyer
f78cfcd7d3
system: operating-system: Make the timezone field default to Etc/UTC.
...
* gnu/system.scm (<operating-system>) [timezone]: Default to "Etc/UTC".
2022-10-11 11:29:03 +00:00
Maxim Cournoyer
683558e2ed
services: slim-service-type: Do not extend profile with xterm.
...
This is not done for gdm-service-type, so do not do it here either, for
consistency. Perhaps that change had been motivated by the fact that using
ratpoison without a default terminal makes for a poor user experience (one
cannot even view the help screen without a terminal); this was fixed with the
preceding commit.
* gnu/services/xorg.scm (slim-service-type)
[profile-service-type]: Remove extension.
2022-10-11 11:29:03 +00:00
Maxim Cournoyer
6b650fde41
gnu: ratpoison: Reference xterm absolutely.
...
* gnu/packages/ratpoison.scm (ratpoison) [configure-flags]: Specify the
'--with-xterm' configure flag.
[inputs]: Add xterm.
2022-10-11 11:29:02 +00:00
Maxim Cournoyer
a664f453d5
gnu: ratpoison: Use gexps and remove input labels.
...
* gnu/packages/ratpoison.scm (ratpoison) [phases]: Use gexps.
[inputs, native-inputs]: Remove input labels.
2022-10-11 11:29:02 +00:00
Maxim Cournoyer
64e8ed1061
gnu: icedove: Use gexps.
...
* gnu/packages/gnuzilla.scm (icedove) [arguments]: Use gexps, adjusting phases
as needed.
2022-10-11 11:29:02 +00:00
Maxim Cournoyer
f81abf3898
gnu: libreoffice: Move inputs below arguments and fix indentation.
...
* gnu/packages/libreoffice.scm (libreoffice) Fix indentation.
[native-inputs, inputs]: Move below...
[arguments]: ... this field.
2022-10-11 11:29:02 +00:00
pukkamustard
59911ae294
gnu: Update guile-eris to 1.0.0.
...
* gnu/packages/guile-xyz.scm (guile-eris): Update to 1.0.0.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-11 12:05:59 +01:00
M
fcbe9cf6f8
gnu: Add python-cobib.
...
* gnu/packages/python-xyz.scm (python-cobib): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-11 12:03:30 +01:00
M
f40b7ed376
gnu: Add python-pylatexenc.
...
* gnu/packages/python-xyz.scm (python-pylatexenc): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-11 12:02:28 +01:00
(
ba6ea435e2
gnu: base: Add greetd-wlgreet-sway-session.
...
* gnu/services/base.scm (greetd-wlgreet-session): New data type.
(greetd-wlgreet-sway-session): Likewise.
* doc/guix.texi ("Base Services")[greetd-service-type]: Document
them.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-11 11:43:01 +01:00
Christopher Baines
e83b9fe44e
services: guix: Include max-allocated-builds gbc agent option.
...
* gnu/services/guix.scm (guix-build-coordinator-agent-configuration-max-allocated-builds):
New procedure.
(guix-build-coordinator-agent-shepherd-services): Use max-allocated-builds.
* doc/guix.texi (Guix Build Coordinator): Document this new field.
2022-10-11 11:41:15 +01:00
Christopher Baines
4230de5b98
gnu: guix-build-coordinator: Update to 0-62.2cd06f2.
...
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-62.2cd06f2.
2022-10-11 11:40:22 +01:00
Efraim Flashner
ff19460696
gnu: vim: Update to 9.0.0719.
...
* gnu/packages/vim.scm (vim): Update to 9.0.0719.
[arguments]: Adjust custom 'skip-or-fix-failing-tests to skip another
test assuming shell path filelength.
2022-10-11 11:40:46 +03:00
Lars-Dominik Braun
b73814872e
gnu: texlive-apa6: Propagate dependencies.
...
* gnu/packages/tex.scm (texlive-apa6)[propagated-inputs]: Add runtime
dependencies loaded via \RequirePackage.
2022-10-11 10:13:53 +02:00
Lars-Dominik Braun
9537ab6660
gnu: Add texlive-substr.
...
* gnu/packages/tex.scm (texlive-substr): New variable.
2022-10-11 10:13:30 +02:00
Lars-Dominik Braun
ec09fba042
gnu: Add texlive-apacite.
...
* gnu/packages/tex.scm (texlive-apacite): New variable.
2022-10-11 10:13:05 +02:00
Lars-Dominik Braun
043ac1360e
gnu: Add texlive-endnotes.
...
* gnu/packages/tex.scm (texlive-endnotes): New variable.
2022-10-11 10:12:37 +02:00
Efraim Flashner
d104aca167
gnu: public-inbox: Fix build on 32-bit systems.
...
* gnu/packages/mail.scm (public-inbox)[inputs]: Add perl-file-fcntllock
on all 32-bit systems.
2022-10-11 07:35:04 +03:00
Nicolas Goaziou
a01e7f09cb
gnu: open-adventure: Improve package style.
...
* gnu/packages/games.scm (open-adventure)[arguments]: Use G-expressions.
<#:make-flags>: Be nicer with cross-compilation.
<#:phases>: Remove trailing #T.
[native-inputs]: Remove labels. Re-order alphabetically.
2022-10-11 00:16:30 +02:00
Nicolas Goaziou
8fc86d1f6f
gnu: open-adventure: Update to 1.11.
...
* gnu/packages/games.scm (open-adventure): Update to 1.11.
[arguments]<#:parallel-tests>: Set to #F.
<#:phases>: Fix ECHO filename in an additional file.
2022-10-11 00:10:49 +02:00
Nicolas Goaziou
1e841bb848
gnu: emacs-eglot: Update to 1.9.
...
* gnu/packages/emacs-xyz.scm (emacs-eglot): Update to 1.9.
[source]<origin>: Switch URL to GitHub.
[arguments]: Activate tests.
2022-10-10 23:42:08 +02:00
Nicolas Goaziou
40f23e8413
gnu: pdfarranger: Improve package style.
...
* gnu/packages/pdf.scm (pdfarranger)[arguments]: Use G-expressions.
2022-10-10 23:25:53 +02:00
Nicolas Goaziou
c05ef5cfc4
gnu: pdfarranger: Update to 1.9.1.
...
* gnu/packages/pdf.scm (pdfarranger): Update to 1.9.1.
2022-10-10 23:24:01 +02:00
Nicolas Goaziou
363b476910
gnu: python-folium: Update to 0.13.0.
...
* gnu/packages/python-xyz.scm (python-folium): Update to 0.13.0.
2022-10-10 23:20:42 +02:00
Julien Lepiller
dbb35cd2e8
gnu: ocaml-cairo2: Update to 0.6.4.
...
* gnu/packages/ocaml.scm (ocaml-cairo2): Update to 0.6.4.
2022-10-10 20:31:16 +02:00
Julien Lepiller
3402f53e99
gnu: ocaml-ppx-tools: Update to 6.6.
...
* gnu/packages/ocaml.scm (ocaml-ppx-tools): Update to 6.6.
2022-10-10 20:30:46 +02:00
Nicolas Goaziou
f0a6aafa22
gnu: emacs-password-store: Fix license.
...
* gnu/packages/emacs-xyz.scm (emacs-password-store)[license]: Set to GPL3+.
2022-10-10 18:28:37 +02:00
(
fc6bf5d1f9
gnu: emacs-ivy-pass: Don't propagate password-store.
...
* gnu/packages/emacs-xyz.scm (emacs-ivy-pass)[propagated-inputs]:
Delete PASSWORD-STORE.
[synopsis, description]: Use @code when referring to pass.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-10 17:55:19 +02:00
( via Guix-patches via
0bb5a235c3
gnu: emacs-password-store: Refer directly to password-store.
...
* gnu/packages/emacs-xyz.scm (emacs-password-store)[arguments]:
Use gexp style.
<#:phases>{'extract-el-file}: New phase.
[propagated-inputs]<password-store>: Move it...
[inputs]: ...here.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-10 17:55:18 +02:00
Nicolas Goaziou
fd024ba0f5
gnu: wireshark: Update to 4.0.0.
...
* gnu/packages/networking.scm (wireshark): Update to 4.0.0.
[arguments]<#:phases>: Skip checks differently, as the previous way doesn't
work anymore.
[inputs]: Add pcre2.
2022-10-10 17:55:18 +02:00
Nicolas Goaziou
4459c05af7
gnu: fet: Update to 6.6.2.
...
* gnu/packages/education.scm (fet): Update to 6.6.2.
2022-10-10 17:55:18 +02:00
Nicolas Goaziou
1933a3cb7f
gnu: emacs-posframe: Update to 1.1.8.
...
* gnu/packages/emacs-xyz.scm (emacs-posframe): Update to 1.1.8.
2022-10-10 17:55:18 +02:00
Sharlatan Hellseher
5f856c5954
gnu: Add pacemaker.
...
* gnu/pacemaker/high-availability.scm (pacemaker): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-10 11:16:08 +02:00
Sharlatan Hellseher
be3bfce295
gnu: Add corosync.
...
* gnu/packages/high-availability.scm (corosync): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-10 11:16:08 +02:00
Sharlatan Hellseher
b72e6036dd
gnu: Add kronosnet.
...
* gnu/packages/high-availability.scm (kronosnet): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-10-10 11:16:08 +02:00
Sharlatan Hellseher
1589a825da
gnu: libqb: Update to 2.0.6.
...
* gnu/packages/high-availability.scm (libqb): Update to 2.0.6.
Run `guix style' over the package.
[native-inputs]: Add autoconf, automake, libtools to fix configure and
build phases.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-10 11:16:08 +02:00
Sharlatan Hellseher
69598d8489
gnu: Move libqb to high-availability.
...
* gnu/packages/hardware.scm (libqb): Move to high-availability.scm.
* gnu/packages/high-availability.scm: New file.
* gnu/local.mk: Add high-availability.scm to GNU_SYSTEM_MODULES list.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-10 11:16:07 +02:00
Pavel Shlyak
f8bc5b13ad
gnu: Add nm-tray.
...
* gnu/packages/networking.scm (nm-tray): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-10 11:16:07 +02:00
Denis 'GNUtoo' Carikli
75e24eec1e
gnu: gtk: Use librsvg-2.40 for non-x86_64.
...
* gnu/packages/gtk.scm (gtk)[propagated-inputs]:
Use librsvg-2.40 for non-x86_64.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-10 11:16:07 +02:00
Denis 'GNUtoo' Carikli
4133e50026
gnu: openexr: Skip failing tests on i686.
...
* gnu/packages/graphics.scm (openexr)[arguments]: Add
'disable-broken-tests' phase.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-10-10 11:16:07 +02:00
Denis 'GNUtoo' Carikli
831e038dff
gnu: openexr: Apply 'guix style'.
...
* gnu/packages/graphics.scm (openexr): apply guix style.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org >
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-10 11:16:07 +02:00
Ludovic Courtès
b6bc4c109b
packages: Raise an exception for invalid 'license' values.
...
This is written in such a way that the type check turns into a no-op at
macro-expansion time for trivial cases:
> ,optimize (validate-license gpl3+)
$18 = gpl3+
> ,optimize (validate-license (list gpl3+ gpl2+))
$19 = (list gpl3+ gpl2+)
* guix/packages.scm (valid-license-value?, validate-license): New
macros.
(<package>)[license]: Add 'sanitize' option.
(&package-license-error): New error condition type.
* tests/packages.scm ("license type checking"): New test.
2022-10-10 11:16:07 +02:00
Ludovic Courtès
79b390a207
licenses: Let 'license?' expand to #t in trivial cases.
...
With this change, we have:
> ,expand (license? gpl3+)
$2 = #t
> ,expand (license? something-else)
$3 = (let ((obj something-else))
(and ((@@ (srfi srfi-9) struct?) obj)
((@@ (srfi srfi-9) eq?)
((@@ (srfi srfi-9) struct-vtable) obj)
(@@ (guix licenses) <license>))))
* guix/licenses.scm (define-license-predicate)
(begin-license-definitions): New macros
<top level>: Wrap definitions in 'begin-license-definitions'.
2022-10-10 11:16:06 +02:00
Julien Lepiller
3c54b28ea3
gnu: ocamlbuild: Update to 0.14.2.
...
* gnu/packages/ocaml.scm (ocamlbuild): Update to 0.14.2.
2022-10-10 08:25:51 +02:00
Julien Lepiller
92f575019c
gnu: ocaml-ansiterminal: Add upstream name.
...
* gnu/packages/ocaml.scm (ocaml-ansiterminal)[properties]: Add
`upstream-name'.
2022-10-10 08:25:48 +02:00
Julien Lepiller
7c1c144ce6
gnu: ocaml-uuseg: Update to 15.0.0.
...
* gnu/packages/ocaml.scm (ocaml-uuseg): Update to 15.0.0.
2022-10-10 08:25:19 +02:00
Maxim Cournoyer
b2b838b2b4
gnu: python-pyotp: Update to 2.7.0.
...
* gnu/packages/python-crypto.scm (python-pyotp): Update to 2.7.0.
2022-10-10 01:07:09 -04:00
Maxim Cournoyer
e4dbc25794
gnu: Add python-zxcvbn.
...
* gnu/packages/python-crypto.scm (python-zxcvbn): New variable.
2022-10-10 01:03:33 -04:00
Maxim Cournoyer
4451d08828
gnu: endeavour: Propagate evolution-data-server.
...
Fixes <https://issues.guix.gnu.org/36869 >.
* gnu/packages/gnome.scm (endeavour) [inputs]: Move evolution-data-server...
[propagated-inputs]: ... here.
Reported-by: Jesse Gibbons <jgibbons2357+guix@gmail.com >
2022-10-10 00:31:09 -04:00
Dhruvin Gandhi
8b0e86017f
gnu: hut: Update to 0.2.0.
...
* gnu/packages/version-control.scm (hut): Update to 0.2.0.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-10 00:02:04 -04:00
Dhruvin Gandhi
0ef69fb724
gnu: go-github-com-spf13-cobra: Update to 1.5.0.
...
* gnu/packages/golang.scm (go-github-com-spf13-cobra): Update to 1.5.0.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-10 00:02:04 -04:00
jgart
e827d45db9
gnu: Add go-webring.
...
* gnu/packages/web.scm (go-webring): New variable.
Hi paren,
Thanks for the review. I changed everything but the blog stuff because
go-webring is not necessarily used in the context of a blog. A webring
can stand on it's own without being associated with a blog. A webring
can associate websites that are not blogs or Guix channels ;()
Here's v2
all best,
jgart
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-09 22:32:14 +02:00
Thiago Jung Bauermann
bdb13dfd29
gnu: public-inbox: Update to 1.9.0.
...
The patch is included in version 1.9.0, so remove it from Guix.
On i686-linux, test t/pop3d.t fails unless the File::FcntlLock module is
present so add it.
* gnu/packages/patches/public-inbox-fix-spawn-test.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove patch.
* gnu/packages/mail.scm (public-inbox)[version]: Change to 1.9.0.
[source]: Update hash. Remove patch.
[inputs]: Add perl-file-fcntllock if target is x86-32.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-09 22:32:14 +02:00
Thiago Jung Bauermann
fa3ba0143f
gnu: Add perl-file-fcntllock.
...
* gnu/packages/perl.scm (perl-file-fcntllock): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-09 22:32:14 +02:00
J. Sims
31f0e46bea
gnu: Add genie.
...
* gnu/packages/build-tools.scm (genie): Add genie.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-09 22:32:14 +02:00
kiasoc5
b5e83548fb
gnu: blesh: Substitute with readlink directly.
...
Fixes <https://issues.guix.gnu.org/57659#6 >.
* gnu/packages/bash.scm (blesh)[arguments]: In 'make-readlink-work',
remove use of 'search-input-file'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-09 22:32:14 +02:00
Ludovic Courtès
27a3a5d193
gnu: svt-hevc: Mark as supported on x86_64-linux only.
...
This package fails to build on i686-linux: it makes use of SSE2 and
related intrinsics not supported on i686.
* gnu/packages/video.scm (svt-hevc)[supported-systems]: Remove
"i686-linux".
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Adjust condition
accordingly.
2022-10-09 22:32:14 +02:00
Ludovic Courtès
e3362e249a
gnu: directfb: Remove input labels.
...
* gnu/packages/graphics.scm (directfb)[inputs]: Remove labels.
2022-10-09 22:32:13 +02:00
Ludovic Courtès
3714c8bdcd
gnu: gst-plugins-bad: Use 'librsvg-for-system'.
...
This fixes compilation on i686-linux.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Use
'librsvg-for-system' instead of 'librsvg'.
2022-10-09 22:32:13 +02:00
Ludovic Courtès
c3b0be1fa2
gnu: directfb: Use 'librsvg-for-system'.
...
This fixes compilation on i686-linux.
* gnu/packages/graphics.scm (directfb)[inputs]: Use 'librsvg-for-system'
instead of 'librsvg'.
2022-10-09 22:32:13 +02:00
Lars-Dominik Braun
b310afde26
gnu: mergerfs: Hard-code output path in mount.mergerfs.
...
This allows using mergerfs filesystems in /etc/fstab.
* gnu/packages/file-systems.scm (mergerfs)[arguments]: Add clause to
existing SUBSTITUTE*.
2022-10-09 13:18:02 +02:00
Mark H Weaver
d3d3caeeeb
gnu: icecat: Remove vestigial patch.
...
This is a followup to commit bb762ac517 .
* gnu/packages/patches/icecat-use-older-reveal-hidden-html.patch:
Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2022-10-09 02:17:55 -04:00
Maxim Cournoyer
79358a99cd
gnu: btrbk: Update to 0.32.4.
...
* gnu/packages/backup.scm (btrbk): Update to 0.32.4.
2022-10-08 22:21:43 -04:00
Hunter Jozwiak
a86979b41a
gnu: linux-libre: Enable accessibility features.
...
* gnu/packages/linux.scm (%default-extra-linux-options): Enable
speakup and Braille console options by default.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-10-09 02:00:10 +02:00
Efraim Flashner
f2af4ca71f
gnu: links: Update to 2.28.
...
* gnu/packages/web-browsers.scm (links): Update to 2.28.
2022-10-14 15:29:27 +03:00
Florian Pelz
759d365cd2
news: Add 'de' translation.
...
* etc/news.scm: Add German translation of '--emulate-fhs' entry.
2022-10-14 12:37:15 +02:00
Nicolas Goaziou
4940d7e289
gnu: emacs-libmpdel: Run tests.
...
* gnu/packages/emacs-xyz.scm (emacs-libmpdel)[arguments]: Run tests.
[native-inputs]: Add EMACS-ERT-RUNNER.
2022-10-14 09:15:41 +02:00
Nicolas Goaziou
b614a63bfd
gnu: emacs-mpdel: Update to 2.0.0.
...
* gnu/packages/emacs-xyz.scm (emacs-mpdel): Update to 2.0.0.
[source]<origin>: Update upstream repository.
[inputs]: Remove EMACS-LIBMPDEL.
[propagated-inputs]: Add EMACS-LIBMPDEL, EMACS-NAVIGEL.
[home-page]: Update URL.
2022-10-14 09:15:40 +02:00
Nicolas Goaziou
ceb6fbd60d
gnu: Add emacs-navigel.
...
* gnu/packages/emacs-xyz.scm (emacs-navigel): New variable.
2022-10-14 09:15:40 +02:00
Nicolas Goaziou
9302788ff7
gnu: emacs-libmpdel: Update to 1.3.1.
...
* gnu/packages/emacs-xyz.scm (emacs-libmpdel): Update to 1.3.1.
[source]<origin>: Change upstream repository.
[home-page]: Update URL.
2022-10-14 09:15:39 +02:00
(
27c4f396b7
home: home-dbus-service-type: Fix make-forkexec-constructor call.
...
* gnu/home/services/desktop.scm (home-dbus-shepherd-services)[start]
<#:environment-variables>: Use a quote instead of a gexp.
Signed-off-by: Andrew Tropin <andrew@trop.in >
2022-10-14 11:06:07 +04:00
Efraim Flashner
cfd74630dd
gnu: gnucobol: Use G-expressions.
...
* gnu/packages/cobol.scm (gnucobol)[arguments]: Rewrite using
G-expressions.
2022-10-14 07:54:53 +03:00
Efraim Flashner
2b7d89bed6
gnu: gnucobol: Update description.
...
* gnu/packages/cobol.scm (gnucobol)[description]: Use upstream's
description.
2022-10-14 07:46:07 +03:00
Marius Bakke
b3fbd25fec
gnu: ungoogled-chromium: Update to 106.0.5249.119-1.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 106.0.5249.119.
(%ungoogled-origin, ungoogled-chromium): Update hashes.
2022-10-13 22:26:26 +02:00
Nicolas Goaziou
bf5e83aeab
gnu: emacs-forge: Update to 0.3.2.
...
* gnu/packages/emacs-xyz.scm (emacs-forge): Update to 0.3.2.
2022-10-13 22:16:34 +02:00
Nicolas Goaziou
7047c2b652
gnu: emacs-evil-escape: Update to 3.16.
...
* gnu/packages/emacs-xyz.scm (emacs-evil-escape): Update to 3.16.
[source]<origin>: Change upstream repository.
[home-page]: Apply repository update.
2022-10-13 22:16:33 +02:00
Nicolas Goaziou
ab56022c4e
gnu: emacs-emacsql: Update to 3.1.1.
...
* gnu/packages/emacs-xyz.scm (emacs-emacsql): Update to 3.1.1.
2022-10-13 22:16:33 +02:00
Nicolas Goaziou
21b698c503
gnu: emacs-emacsql: Improve package style.
...
* gnu/packages/emacs-xyz.scm (emacs-emacsql)[arguments]: Use G-expressions.
<#:phases>: Use EMACS-SUBSTITUTE-VARIABLES instead of EMACS-SUBSTITUTE-SEXPS.
2022-10-13 22:16:33 +02:00
Nicolas Goaziou
00fa377710
build: emacs-utils: Fix `emacs-substitute-variables'.
...
* guix/build/emacs-utils.scm (emacs-substitute-variables): Fix the regexp
matching variable name.
With end-of-word regexp ("\>"), the previous regexp may match the prefix of
a variable only, effectively deleting the rest of its name.
For example,
(emacs-substitute-variables "file.el"
("foo" ...))
could match (defvar foo-bar ...) and replace it with (defvar foo ...).
2022-10-13 22:16:32 +02:00
Leo Famulari
cf98a72774
gnu: linux-libre 5.15: Update to 5.15.73.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.73.
(linux-libre-5.15-pristine-source): Update hash.
2022-10-13 14:36:09 -04:00
Leo Famulari
75b2511cc1
gnu: linux-libre 5.19: Update to 5.19.15.
...
* gnu/packages/linux.scm (linux-libre-5.19-version): Update to 5.19.15.
(linux-libre-5.19-pristine-source): Update hash.
2022-10-13 14:36:06 -04:00
Ricardo Wurmus
56915dc275
doc: Add chapter on containers to Cookbook.
...
* doc/guix-cookbook.texi (Containers): New chapter.
2022-10-13 17:42:05 +02:00
Ricardo Wurmus
9c97647446
system: Use a valid license as the dummy license.
...
* gnu/system/images/wsl2.scm (dummy-package)[license]: Do not use #F.
2022-10-13 17:41:59 +02:00
Mathieu Othacehe
7c2b09f924
ci: Honor the system passed to image->job.
...
Fixes: <https://issues.guix.gnu.org/53480 >.
* gnu/ci.scm (image->job): Pass the system argument to the underlying
lower-object call.
2022-10-13 17:28:46 +02:00
Ludovic Courtès
8b192c5550
shell: Handle '--emulate-fhs' in 'guix shell', not in 'guix environment'.
...
Previously, using 'guix shell -CF coreutils' twice (such that the
profile is cache) would result in:
guix shell: error: '--profile' cannot be used with package options
This patch fixes it by moving argument handling to (guix scripts shell),
before 'options-with-caching' is called.
* guix/scripts/environment.scm (show-environment-options-help)
(%options): Remove '--emulate-fhs'.
(guix-environment*): Pass OPTS as-is to 'options/resolve-packages'.
* guix/scripts/shell.scm (show-help, %options): Add '--emulate-fhs'.
Add the (expression . ...) component to RESULT right from the argument
handler.
* tests/guix-environment-container.sh: Change '--emulate-fhs' tests to
use 'guix shell' instead of 'guix environment'.
2022-10-13 15:56:56 +02:00
jgart
10d429f2fc
gnu: entr: Update to 5.2.
...
* gnu/packages/entr.scm (entr): Update to 5.2.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-13 12:28:16 +01:00
jgart
f22bc5fd5e
gnu: micropython: Update to 1.19.
...
* gnu/packages/python.scm (micropython): Update to 1.19.
v2 adds my copyright declaration. thnx!
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-13 12:28:15 +01:00
Simon Streit
5dec941818
gnu: cantata: Update to 2.5.0.
...
* gnu/packages/mpd.scm (cantata): Update to 2.5.0.
[inputs]: Add "avahi" and "musicbrainz".
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-13 12:28:15 +01:00
Michael Rohleder
d1ad0a2ec2
gnu: nheko: Update to 0.10.2.
...
* gnu/packages/messaging.scm (nheko): Update to 0.10.2.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-13 12:28:15 +01:00
Adam Kandur
bf59d83699
gnu: Add go-github-com-savsgio-gotils.
...
* gnu/packages/golang.scm (go-github-com-savsgio-gotils): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-13 12:28:15 +01:00
Nicolas Graves
33f56db654
gnu: libfido2: Install udev rules.
...
* gnu/packages/security-token.scm (libfido2)[arguments]: Add a configure flag
specifying the installation directory of the udev rule.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-13 12:27:52 +01:00
EuAndreh
a9268695e0
services: nginx: Add reload action.
...
In a new "reload" shepherd-action, send a SIGHUP to the NGINX master process,
so that it can re-read the configuration file and start new worker processes.
* gnu/services/web.scm (nginx-shepherd-service): Add the "reload"
shepherd-action.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-13 12:27:35 +01:00
Nicolas Goaziou
d8271d8193
gnu: emacs-emacsql: Update to 3.1.0.
...
* gnu/packages/emacs-xyz.scm (emacs-emacsql): Update to 3.1.0.
2022-10-13 12:53:09 +02:00
Nicolas Goaziou
88ed4692d1
gnu: emacs-lcr: Update to 1.5.
...
* gnu/packages/emacs-xyz.scm (emacs-lcr): Update to 1.5.
2022-10-13 12:53:08 +02:00
Nicolas Goaziou
6bb130d64b
gnu: mgba: Update to 0.10.0.
...
* gnu/packages/emulators.scm (mgba): Update to 0.10.0.
2022-10-13 12:53:08 +02:00
Nicolas Goaziou
7ca86fdf20
gnu: emacs-taxy-magit-section: Update to 0.12.
...
* gnu/packages/emacs-xyz.scm (emacs-taxy-magit-section): Update to 0.12.
2022-10-13 12:53:08 +02:00
Nicolas Goaziou
dcdb074ecf
gnu: emacs-project: Update to 0.8.2.
...
* gnu/packages/emacs-xyz.scm (emacs-project): Update to 0.8.2.
2022-10-13 12:52:59 +02:00
Denis 'GNUtoo' Carikli
cc58a0c627
gnu: epiphany: Use 'librsvg-for-system'.
...
This adds support for non x86_64 architectures.
* gnu/packages/gnome.scm (epiphany)[inputs]: Use
'librsvg-for-system' instead of 'librsvg'.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org >
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-13 11:08:13 +01:00
jgart
7db94d8e54
gnu: Add ghc-open-browser.
...
* gnu/packages/haskell-xyz.scm (ghc-open-browser): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-13 11:08:13 +01:00
Thomas Albers
8559b70031
gnu: Add hiredis.
...
* gnu/packages/databases.scm (hiredis): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-13 11:08:09 +01:00
Christopher Baines
aabd7a0526
gnu: guix-build-coordinator: Update to 0-63.b15be71.
...
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-63.b15be71.
2022-10-13 10:44:23 +01:00
Christopher Baines
166faae8d8
gnu: linux: Add powerpc64le-linux as a supported system.
...
To the generic kernel packages.
I noticed this was lacking because of a test failure when building the guix
package for powerpc64le-linux, but it should be a generally useful change.
* gnu/packages/linux.scm (linux-libre-5.19, linux-libre-5.15,
linux-libre-5.10, linux-libre-5.4, linux-libre-4.19, linux-libre-4.14,
linux-libre-4.9): Include powerpc64le-linux as a supported system.
2022-10-13 10:39:24 +01:00
Mathieu Othacehe
d2ca9334a3
NEWS: Update it.
...
* NEWS: Add an entry about 'guix shell' --emulate-fhs option.
2022-10-13 10:49:19 +02:00
Mathieu Othacehe
91d817cc17
installer: partition: Add a confirmation page before formatting.
...
Fixes: <https://issues.guix.gnu.org/57232 >.
* gnu/installer/newt/partition.scm (run-label-confirmation-page): New
procedure.
(run-label-page): Call the above procedure before proceeding.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-10-13 10:48:08 +02:00
Ludovic Courtès
2c11e857af
news: Add entry for 'guix shell --emulate-fhs'.
...
* etc/news.scm: Add entry.
2022-10-13 09:34:15 +02:00
John Kehayias
c7ba5f38b8
environment: Add '--emulate-fhs'.
...
* guix/scripts/environment.scm (show-environment-options-help, %options): Add
'--emulate-fhs'.
(setup-fhs): New procedure. Setup for the Filesystem Hierarchy Standard (FHS)
container. Defines and uses FHS-SYMLINKS and LINK-CONTENTS to create FHS
expected directories and creates /etc/ld.so.conf.
(launch-environment): Add 'emulate-fhs?' key and implement it to set $PATH and
generate /etc/ld.so.cache before calling COMMAND.
(launch-environment/container): Add 'emulate-fhs?' and 'setup-hook' keys and
implement them. Define and use FHS-MAPPINGS, to set up additional bind mounts
in the container to follow FHS expectations.
(guix-environment*): Add glibc-for-fhs to the container packages when
'emulate-fhs?' key is in OPTS.
* doc/guix.texi (Invoking guix shell): Document '--emulate-fhs'.
(Invoking guix environment): Document '--emulate-fhs'.
* tests/guix-environment-container.sh: Add tests for '--emulate-fhs'.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-10-13 09:19:08 +02:00
John Kehayias
3d1d29e440
gnu: Add glibc-for-fhs.
...
* gnu/packages/base.scm (glibc-for-fhs): New variable. Hidden package for use
in forthcoming --emulate-fhs option for guix containers.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-10-13 09:19:08 +02:00
Nicolas Graves via Guix-patches via
910f2b5d88
gnu: Add ydotool.
...
* gnu/packages/xdisorg.scm (ydotool): New variable.
Signed-off-by: Andrew Tropin <andrew@trop.in >
2022-10-13 11:09:29 +04:00
( via Guix-patches via
4ab434958b
gnu: home: Add home-dbus-service-type.
...
* gnu/home/services/desktop.scm (home-dbus-service-type): New variable.
(home-dbus-configuration): New record type.
* doc/guix.texi: Document them.
Signed-off-by: Andrew Tropin <andrew@trop.in >
2022-10-13 09:05:46 +04:00
Liliana Marie Prikler
4bc5383b3b
gnu: mcg: Cleanup style.
...
* gnu/packages/mpd.scm (mcg)[source]: Indent as with ‘guix style’.
[arguments]: Convert to list of G-Expressions.
[inputs, native-inputs]: Move below arguments.
2022-10-12 21:14:12 +02:00
Simon Streit
24418eeb00
gnu: mcg: Update to 3.1.
...
* gnu/packages/mpd.scm (mcg): Update to 3.1.
[native-inputs]: Use the new inputs style.
Add desktop-file-utils, gettext-minimal and gtk+:bin.
[inputs]: Add python.
[build-system]: Change to meson-build-system.
[arguments]<#:imported-modules,#:modules>: Remove.
<#:glib-or-gtk?>: Set to #t.
<#:phases>: Delete ‘glib-or-gtk-wrap’.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-10-12 21:12:38 +02:00
Liliana Marie Prikler
df9f0ac254
gnu: mcg: Use new input style.
...
* gnu/packages/mpd.scm (mcg)[inputs]: Re-indent according to ‘guix style’.
[native-inputs]: Drop labels.
2022-10-12 21:09:33 +02:00
Eric Bavier
86ec52f667
gnu: cool-retro-term: Fixes font loading.
...
This addresses <https://issues.guix.gnu.org/58451 >
* gnu/packages/terminals.scm (cool-retro-term)[source]: In snippet for font
handling, adjust regexp to account for possible presence of whitespace.
2022-10-12 09:28:48 -05:00
Tobias Geerinckx-Rice
ca73325d75
gnu: man-pages: Use LIST of arguments.
...
We're already using a Gexp for #:make-flags; this unweirds that ,#~.
* gnu/packages/man.scm (man-pages)[arguments]: Use LIST & G-expressions.
2022-10-09 02:00:00 +02:00
Tobias Geerinckx-Rice
bc435c595f
gnu: man-pages: Update to 6.00.
...
* gnu/packages/man.scm (man-pages): Update to 6.00.
[arguments]: Add a new 'skip-html phase.
2022-10-09 02:00:00 +02:00
Michael Rohleder
09bab971aa
gnu: emacs-puni: Update to 0-1.28836e98.
...
* gnu/packages/emacs-xyz.scm (emacs-puni): Update to 0-1.28836e98.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-16 10:43:19 +02:00
Nicolas Goaziou
dba89d11f9
gnu: emacs-evil-nerd-commenter: Update to 3.5.8.
...
* gnu/packages/emacs-xyz.scm (emacs-evil-nerd-commenter): Update to 3.5.8.
2022-10-16 10:43:18 +02:00
Nicolas Goaziou
2a929636b4
gnu: emacs-geiser: Update to 0.27.
...
* gnu/packages/emacs-xyz.scm (emacs-geiser): Update to 0.27.
2022-10-16 10:43:18 +02:00
Nicolas Goaziou
8ede54df40
gnu: emacs-taxy-magit-section: Update to 0.12.1.
...
* gnu/packages/emacs-xyz.scm (emacs-taxy-magit-section): Update to 0.12.1.
2022-10-16 10:43:18 +02:00
Arun Isaac
08f2a06d26
gnu: Add guile-dns.
...
* gnu/packages/guile-xyz.scm (guile-dns): New variable.
2022-10-16 14:05:21 +05:30
Jan (janneke) Nieuwenhuizen
67a2049202
gnu: mes: Update to 0.24.1.
...
* gnu/packages/mes.scm (mes): Update to 0.24.1.
2022-10-16 10:31:00 +02:00
Jonathan Brielmaier
a73cb189c3
gnu: icedove: Update to 102.3.3.
...
* gnu/packages/gnuzilla.scm (icedove): Update to 102.3.3.
2022-10-16 08:26:43 +02:00
Felix Gruber
68f09d1f91
gnu: sameboy: Update to 0.15.6.
...
* gnu/packages/emulators.scm (sameboy): Update to 0.15.6.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-08 21:04:40 +02:00
Nicolas Goaziou
74f94e9ada
gnu: emacs-org-re-reveal: Update to 3.16.1.
...
* gnu/packages/emacs-xyz.scm (emacs-org-re-reveal): Update to 3.16.1.
2022-10-08 21:04:40 +02:00
Nicolas Goaziou
0b7abd5ab7
gnu: emacs-lcr: Update to 1.3.
...
* gnu/packages/emacs-xyz.scm (emacs-lcr): Update to 1.3.
2022-10-08 21:04:39 +02:00
Nicolas Goaziou
650c9c2400
gnu: emacs-dante: Update to 1.7.
...
* gnu/packages/emacs-xyz.scm (emacs-dante): Update to 1.7.
[propagated-inputs]: Order alphabetically.
2022-10-08 21:04:39 +02:00
Lu Hui
14afaa5381
gnu: bdb: Fix targeting riscv64.
...
* gnu/packages/libdaemon.scm (bdb)[native-inputs,arguments]: Treat targeting
riscv64 like aarch64 is handled.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-08 12:02:19 +01:00
Alice BRENON
2f13e8fb4d
gnu: Add ghc-hxt-xpath.
...
* gnu/packages/haskell-web.scm (ghc-hxt-xpath): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-08 12:02:19 +01:00
Christopher Baines
ff5cbe3205
gnu: guix-build-coordinator: Update to 0-61.ed52f0b.
...
* gnu/packages/package-management.scm (guix-build-coordinator): Update to 0-61.ed52f0b.
2022-10-08 12:02:15 +01:00
Ludovic Courtès
5c4b76ce37
gnu: libgme: Do not retain reference on GCC.
...
This reduces the closure size of libgme from 221MiB to 72MiB.
* gnu/packages/audio.scm (libgme)[arguments]: Add #:configure-flags.
2022-10-08 12:27:01 +02:00
Ludovic Courtès
4b2b8b31d7
gnu: upower: Fix test failure on i686-linux.
...
* gnu/packages/gnome.scm (upower)[arguments]: Add
'adjust-test-for-excess-precision' when 'target-x86-32?' returns true.
2022-10-08 12:27:01 +02:00
Ludovic Courtès
e49255ff18
gnu: guix: Update to 3170843.
...
Fixes <https://issues.guix.gnu.org/58352 >.
* gnu/packages/package-management.scm (guix): Update to 3170843 .
2022-10-08 12:27:01 +02:00
Ricardo Wurmus
f24b66bf4a
gnu: pigx-sars-cov-2: Update to 0.0.8.
...
* gnu/packages/bioinformatics.scm (pigx-sars-cov-2): Update to 0.0.8.
[arguments]: Add build phase 'unpack-databases; enable tests.
[native-inputs]: Add origins for databases; remove automake and autoconf.
[inputs]: Add r-data-table, r-deconvr, r-htmltools, r-jsonlite, r-knitr, and
r-mass.
2022-10-08 12:06:41 +02:00
Ricardo Wurmus
9e1c255b35
gnu: weston: Use G-expression.
...
* gnu/packages/freedesktop.scm (weston)[arguments]: Use gexp to remove
references to %outputs and %build-inputs.
2022-10-08 10:10:06 +02:00
Ricardo Wurmus
4678f77b49
gnu: weston: Use plain list of inputs.
...
* gnu/packages/freedesktop.scm (weston)[inputs]: Use new style.
2022-10-08 10:10:06 +02:00
Ricardo Wurmus
e1ee64b55a
gnu: weston: Remove trailing #T from build phases.
...
* gnu/packages/freedesktop.scm (weston)[arguments]: Remove trailing #T from
build phases.
2022-10-08 10:10:06 +02:00
Kaelyn Takata
a868595ebb
gnu: weston: Update to 10.0.2.
...
* gnu/packages/freedesktop.scm (weston): Update to 10.0.2.
[inputs] Switch from pipewire to pipewire-0.3, use wayland-protocols-next.
[native-inputs]: Add python-3.
2022-10-08 10:10:06 +02:00
Hilton Chain
0b07c6febb
gnu: wl-clipboard: Update to 2.1.0.
...
* gnu/packages/xdisorg.scm (wl-clipboard): Update to 2.1.0.
[arguments]<#:configure-flags>: Set completion files' installdir.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-08 01:26:06 -04:00
Hilton Chain
59ce7ab95a
gnu: egl-wayland: Update to 1.1.11.
...
* gnu/packages/xorg.scm (egl-wayland): Update to 1.1.11.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-08 01:18:28 -04:00
Zheng Junjie
c9d955d51e
gnu: Add ktimer.
...
* gnu/packages/kde.scm (ktimer): New variable.
2022-10-08 00:49:12 -04:00
Greg Hogan
2cdd60dea1
gnu: git: Update to 2.38.0.
...
* gnu/packages/version-control.scm (git): Update to 2.38.0.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-08 00:34:21 -04:00
Dhruvin Gandhi
c20d684cc8
gnu: Add hut.
...
* gnu/packages/version-control.scm (hut): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-08 00:10:30 -04:00
Dhruvin Gandhi
5002e1ac05
gnu: Add go-github-com-juju-ansiterm.
...
* gnu/packages/golang.scm (go-github-com-juju-ansiterm): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-08 00:10:30 -04:00
Dhruvin Gandhi
feee342b66
gnu: Add go-github-com-lunixbochs-vtclean.
...
* gnu/packages/golang.scm (go-github-com-lunixbochs-vtclean): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-08 00:10:30 -04:00
Dhruvin Gandhi
f0902bd2c0
gnu: Add go-git-sr-ht-emersion-gqlclient.
...
* gnu/packages/golang.scm (go-git-sr-ht-emersion-gqlclient): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-08 00:10:30 -04:00
Dhruvin Gandhi
ddc59a63b7
gnu: Add go-git-sr-ht-emersion-go-scfg.
...
* gnu/packages/golang.scm (go-git-sr-ht-emersion-go-scfg): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-08 00:10:30 -04:00
Dhruvin Gandhi
4a47fcbdb4
gnu: Add go-github-com-google-shlex.
...
* gnu/packages/golang.scm (go-github-com-google-shlex): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-08 00:10:29 -04:00
Leo Famulari
dbdba682ed
gnu: linux-libre 5.4: Update to 5.4.217.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.217.
(linux-libre-5.4-pristine-source): Update hash.
2022-10-07 22:17:56 -04:00
Ricardo Wurmus
5463bdded1
gnu: Add font-arphic-ukai.
...
* gnu/packages/fonts.scm (font-arphic-ukai): New variable.
2022-10-08 01:22:28 +02:00
Ricardo Wurmus
2da9ceaeb9
gnu: Add font-google-noto-serif-cjk.
...
* gnu/packages/fonts.scm (font-google-noto-serif-cjk): New variable.
2022-10-08 01:22:28 +02:00
Ricardo Wurmus
91334d36a4
gnu: Add font-google-noto-sans-cjk.
...
* gnu/packages/fonts.scm (font-google-noto-sans-cjk): New variable.
2022-10-08 01:22:28 +02:00
Ricardo Wurmus
39311c9a8b
po: Fix syntax error in French translation.
...
* po/doc/guix-manual.fr.po: Add missing space.
2022-10-08 01:22:27 +02:00
Ricardo Wurmus
b60aa60590
po: Fix syntax error in German translation.
...
* po/doc/guix-manual.de.po: Remove double wrapping of @uref.
2022-10-08 01:22:27 +02:00
Ricardo Wurmus
c78a1d250f
gnu: Add texlive-zhspacing.
...
* gnu/packages/tex.scm (texlive-zhspacing): New variable.
2022-10-08 01:22:23 +02:00
Ludovic Courtès
bb0beaecde
nix: Guard against removing temporary roots of living processes.
...
Fixes <https://issues.guix.gnu.org/25018 >.
* nix/libstore/gc.cc (readTempRoots): Add a check to guard against removing
the temporary roots of a living process.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-10-07 16:54:20 -04:00
Nicolas Goaziou
00ef6c18d5
gnu: giac: Fix build.
...
* gnu/packages/algebra.scm (giac)[source]<origin>: Add a patch to fix build
issue with Pari-GP 2.15.
[arguments]<#:phase>: Skip another test.
* gnu/packages/patches/giac-pari-gp-anyarg.patch: New file.
* gnu/local.mk: Register it.
This fixes <https://issues.guix.gnu.org/58274 >.
2022-10-07 21:54:50 +02:00
Maxim Cournoyer
0169aee33e
tests: xvnc: Do not use specification->package in OS definition.
...
Doing so would cause the extra package dependencies to not be
correctly registered as dependencies, which would lead to a silent
failure when attempting to load or byte compile the module at the time
guix build itself (e.g., when running 'guix pull').
* gnu/tests/vnc.scm (%xvnc-os) [packages]: Turn the the
specification->package declaration into a list of package objects.
2022-10-07 15:08:05 -04:00
Maxim Cournoyer
00e8430500
Revert "Revert "services: Add xvnc-service-type.""
...
This reverts commit 0c49661600 . The fix appears
in the subsequent commit, for clarity.
2022-10-07 15:07:48 -04:00
Maxim Cournoyer
0c49661600
Revert "services: Add xvnc-service-type."
...
This reverts commit 1c528a95cb . This broke
'guix pull', for (yet) unknown reasons.
2022-10-07 12:53:22 -04:00
Maxim Cournoyer
6e3dab4737
Update NEWS.
...
* NEWS: Add new entry for installation script improvements.
2022-10-07 10:11:13 -04:00
Maxim Cournoyer
1c528a95cb
services: Add xvnc-service-type.
...
* gnu/services/vnc.scm: New file.
* gnu/tests/vnc.scm: Likewise.
* gnu/local.mk: Register them.
2022-10-07 10:11:13 -04:00
Maxim Cournoyer
aad4e4fc6b
services: xorg: Add auto-suspend? field to <gdm-configuration>.
...
* gnu/services/xorg.scm (<gdm-configuration>)
<auto-suspend?>: New field.
(gdm-dconf-profiles): New variable.
* gnu/services/xorg.scm (gdm-shepherd-service)
<environment-variables> [!auto-suspend?]: Specify DCONF_PROFILE.
(gdm-service-type): Extend DCONF-SERVICE-TYPE.
* doc/guix.texi (X Window): Document the new field.
2022-10-07 10:11:13 -04:00
Maxim Cournoyer
7b896a26b8
services: Add dconf-service-type.
...
This allows the dconf profile directive "system-db:" to look up profiles by
name from under /etc/dconf/db/.
* gnu/services/xorg.scm (dconf-keyfile, dconf-profile): New procedures.
(dconf-profiles?): New predicate.
(dconf-configuration): New procedure.
(dconf-profile->profile-file): Likewise.
(dconf-profile->db-keyfile): Likewise.
(dconf-profile->db-keyfile-dir): Likewise.
(dconf-profile->db): Likewise.
(dconf-profile->files): Likewise.
(dconf-service-type): New service type.
2022-10-07 10:11:12 -04:00
Maxim Cournoyer
0503b104d6
gnu: dconf: Set sysconfdir to /etc.
...
* gnu/packages/gnome.scm (dconf) [arguments]: Use gexps.
[configure-flags]: Add --sysconfdir=/etc.
[native-inputs]: Remove labels.
2022-10-07 10:11:12 -04:00
Maxim Cournoyer
133901a396
marionette: Add a callback arguments to wait-for-screen-text.
...
* gnu/build/marionette.scm (wait-for-screen-text): New 'pre-action' and
'post-action' arguments. Update doc. Call the procedures before and after
the OCR occurs, respectively.
2022-10-07 10:11:12 -04:00
Maxim Cournoyer
f24e0fc233
marionette: Define keystrokes for typing colons and exclamation marks.
...
* gnu/build/marionette.scm (%qwerty-us-keystrokes): Register keystrokes for
the ':' and '!' characters.
2022-10-07 10:11:12 -04:00
Maxim Cournoyer
4cce84b247
marionette: Preserve screen dumps on failures.
...
This is to make it easier to debug test failures involving
'wait-for-screen-text': the screendump image used for the OCR is now preserved
for inspection when 'wait-for-screen-text' fails.
* gnu/build/marionette.scm (marionette-screen-text): Return the screendump
image file as the second value. Adjust doc.
(wait-for-screen-text): Add the preserved screendump image file name to the
error message. Adjust doc.
2022-10-07 10:11:12 -04:00
Maxim Cournoyer
21f641e9fa
marionette: Make marionette-screen-text private.
...
It has only one user, which is better suited for wait-for-screen-text anyway.
* gnu/tests/base.scm (run-basic-test): Refactor to use wait-for-screen-text
instead of marionette-screen-text.
2022-10-07 10:11:11 -04:00
Maxim Cournoyer
1936668f5b
services: gdm: Add a configuration field to enable XDMCP.
...
* gnu/services/xorg.scm (<gdm-configuration>)[xdmcp?]: New field.
* gnu/services/xorg.scm (gdm-configuration-file): Use it. Use (ice-9 format)
to serialize boolean.
(gdm-polkit-rules): New variable.
(gdm-service-type): Use it to extend polkit.
* doc/guix.texi (X Window): Document it.
2022-10-07 10:11:11 -04:00
Maxim Cournoyer
f3e9b069b1
gnu: gdm: Patch an extra reference to the Xsession script.
...
Without this change, attempting to start a remote session over VNC would fail
with:
Sep 19 19:54:04 localhost gdm-session-worker: Gdm: GdmSessionWorker: child
'/gnu/store/yy9wq647l37658vgi291a287ll9iw6dc-gdm-42.0/etc/gdm/Xsession' could
not be started: No such file or directory
* gnu/packages/gnome.scm (gdm)[phases]{patch-paths}
<daemon/gdm-session.c>: Patch a reference in so the Xsession script is
correctly found via the GDM_X_SESSION environment variable.
2022-10-07 10:11:11 -04:00
Maxim Cournoyer
447c20db7e
gnu: tigervnc-server: Patch and wrap vncserver script.
...
* gnu/packages/vnc.scm (tigervnc-server):
[phases]{patch-paths, wrap-vncserver}: New phases.
[inputs]: Add font-alias, guile-3.0, util-linux and xinit.
2022-10-07 10:11:11 -04:00
Maxim Cournoyer
ff33b8698a
gnu: tigervnc-server: Disable tests via #:tests?.
...
* gnu/packages/vnc.scm (tigervnc-server)
[tests?]: Set to #f.
[phases]: Restore check phase.
2022-10-07 10:11:11 -04:00
Maxim Cournoyer
a7bfc9d68f
gnu: tigervnc-server: Adjust PAM config.
...
* gnu/packages/vnc.scm (tigervnc-server)
[phases]{adjust-pam-config}: New phase.
2022-10-07 10:11:10 -04:00
Maxim Cournoyer
0debec9f2d
gnu: tigervnc-server: Move source production into origin snippet.
...
This will make it possible to patch command references in source files, and
also makes it more transparent as to what sources get used.
* gnu/packages/vnc.scm (tigervnc-server): Re-flow comment.
[source]: Inherit from xorg-server. Add a snippet. Use a patch to apply the
xserver patch. Fix file name.
[phases]{copy-tvnc-xserver, patch-xserver}: Delete phases.
{build-tigervnc, install-tigervnc-aux}: Adjust accordingly.
2022-10-07 10:11:10 -04:00
Maxim Cournoyer
c93b249dc0
gnu: tigervnc-server: Use new style inputs, gexps.
...
* gnu/packages/vnc.scm (%tigervnc-client-source): New variable.
(tigervnc-server): Move input fields after arguments.
[native-inputs]: Use new style and 'modify-inputs'. Do not add
tigervnc-client regular inputs.
[configure-flags]: Use gexps, cons* instead of append.
[phases]: Use gexps.
{check}: Replace smiley with an explanatory comment.
{copy-tvnc-xserver}: Adjust default Makefile variables, which simplifies
needed bindings in other phases.
{build-tigervnc, build, install-tigervnc-aux, install}: Remove let*-bound
variables.
{build-tigervnc, build}: Honor PARALLEL-BUILD?.
2022-10-07 10:11:10 -04:00
Ludovic Courtès
31708431c5
tests: Attempt to build 'desktop.tmpl' on all major architectures.
...
Partly fixes <https://issues.guix.gnu.org/58352 >.
* tests/guix-system.sh: Try to build 'desktop.tmpl' for x86_64, i686, and aarch64.
2022-10-07 16:01:39 +02:00
Ludovic Courtès
06deab3321
gnu: libnma: Depend on GTK 4.x only on supported platforms.
...
Partly fixes <https://issues.guix.gnu.org/58352 >.
* gnu/packages/gnome.scm (libnma)[arguments]: Set "-Dlibnma_gtk4=false"
when (supported-package? gtk) returns #f.
[inputs]: Adjust accordingly.
2022-10-07 16:01:39 +02:00
Ludovic Courtès
a52f39ad0c
gnu: rest@0.9.1: Remove dependency on gtksourceview and libadwaita.
...
Partly fixes <https://issues.guix.gnu.org/58352 >.
This also reduces the closure size of rest@0.9.1 from 2.1GiB to
498MiB (on x86_64-linux).
* gnu/packages/gnome.scm (rest-next)[arguments]: Pass the
"-Dexamples=false" config flag.
* gnu/packages/gnome.scm (rest-next)[inputs]: Remove GTKSOURCEVIEW and
LIBADWAITA.
2022-10-07 16:01:39 +02:00
Maxim Cournoyer
f9694a04ab
doc: Add git send-email tip in 'Submitting Patches' section.
...
* doc/contributing.texi (Submitting Patches): Add a tip detailing how to
prefix the subject line with the branch name the change should be installed
to.
2022-10-07 09:17:11 -04:00
Maxim Cournoyer
9ca0f9e5a9
guix-install.sh: Add Bash prompt customization option.
...
Fixes <https://issues.guix.gnu.org/55484 >.
* etc/guix-install.sh (sys_customize_bashrc): New function.
(main): Use it.
2022-10-07 08:25:40 -04:00
Maxim Cournoyer
231e5f29ae
guix-install.sh: Introduce 'die' utility function.
...
* etc/guix-install.sh (die): New function.
(chk_sys_arch): Use it.
(guix_get_bin_list, guix_get_bin, sys_create_store): Likewise.
2022-10-07 08:20:33 -04:00
Maxim Cournoyer
6a2e303d3a
guix-install.sh: Improve prompt_yes_no procedure.
...
* etc/guix-install.sh (_flush): New function.
(prompt_yes_no): Clear input, then only read the first character, silently.
Add the [Yes/no] string to the message. When a newline is entered by the
user, treat it as the default value, which is "yes".
(chk_gpg_keyring): Remove "(yes/no)" from the prompt message.
(configure_substitute_discovery): Likewise.
(sys_authorize_build_farms): Likewise.
2022-10-07 01:23:05 -04:00
Nicolas Goaziou
8319be779f
gnu: extractpdfmark: Improve package style.
...
* gnu/packages/pdf.scm (extractpdfmark)[arguments]: Use G-expressions. Fix
phase name.
[native-inputs]: Remove labels.
2022-10-07 00:53:32 +02:00
Nicolas Goaziou
eea2d5b6f7
gnu: extractpdfmark: Update to 1.1.1.
...
* gnu/packages/pdf.scm (extractpdfmark): Update to 1.1.1.
2022-10-07 00:53:31 +02:00
Nicolas Goaziou
63cece5787
gnu: emacs-lcr: Update to 1.2.
...
* gnu/packages/emacs-xyz.scm (emacs-lcr): Update to 1.2.
2022-10-07 00:53:31 +02:00
Nicolas Goaziou
c558fed4db
gnu: emacs-org-re-reveal: Update to 3.16.0.
...
* gnu/packages/emacs-xyz.scm (emacs-org-re-reveal): Update to 3.16.0.
2022-10-07 00:53:31 +02:00
Nicolas Goaziou
23c97e2e88
gnu: emacs-ement: Update to 0.3.1.
...
* gnu/packages/emacs-xyz.scm (emacs-ement): Update to 0.3.1.
2022-10-07 00:53:30 +02:00
Nicolas Goaziou
22498be0a1
gnu: emacs-emms: Update to 12.
...
* gnu/packages/emacs-xyz.scm (emacs-emms): Update to 12.
2022-10-07 00:53:30 +02:00
Nicolas Goaziou
9cd3c2dc18
gnu: emacs-debbugs: Update to 0.34.
...
* gnu/packages/emacs-xyz.scm (emacs-debbugs): Update to 0.34.
2022-10-07 00:53:30 +02:00
Timotej Lazar
cb731c80ff
gnu: julius: Update to 1.7.0.
...
* gnu/packages/games.scm (julius): Update to 1.7.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-06 23:17:05 +02:00
Sergey Trofimov
37ed844711
gnu: squid: Enable TLS features.
...
Despite openssl being listed as an input, it was not actually enabled by
default. Fixing that using a configure flag.
* gnu/packages/networking.scm (squid)[arguments]: Add "--with-openssl"
to #:configure-flags.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-06 23:17:05 +02:00
Felix Lechner
2a51fb1d29
gnu: nyacc: Update to 1.07.4.
...
* gnu/packages/mes.scm (nyacc): Update to 1.07.4.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-06 23:17:05 +02:00
Timotej Lazar
3a5ae8c070
gnu: sssd: Update to 2.7.4.
...
* gnu/packages/sssd.scm (sssd): Update to 2.7.4.
* gnu/packages/patches/sssd-optional-systemd.patch: Update patch.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-06 23:17:05 +02:00
Ludovic Courtès
a0c83aa04b
gnu: python-textual: Remove input labels.
...
* gnu/packages/python-xyz.scm (python-textual)[arguments]: Define the
'tests' origin here.
[native-inputs]: Remove "tests" input and remove input labels.
2022-10-06 23:17:04 +02:00
Brian Kubisiak
96cbfc6202
gnu: Add python-textual.
...
* gnu/packages/python-xyz.scm (python-textual): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-06 23:17:04 +02:00
Liliana Marie Prikler
5e63e51afe
snippets: Fix move.
...
The current move is never correct. It flip-flops between car and cadr for
the destination. Since the position of the destination is not actually a
fixed point in the list of changes, use a more robust method of inferring it.
* etc/snippets/tempel/text-mode (move\ ): Infer source and destination from
washed diffs. Process new module before destination.
2022-10-06 21:16:46 +02:00
Liliana Marie Prikler
da281417cc
snippets: tempel: Reformat.
...
This makes it so that ‘indent-region’ and ‘delete-trailing-whitespace’ do not
change the file.
* etc/snippets/tempel/text-mode: Reformat.
2022-10-06 21:16:46 +02:00
Liliana Marie Prikler
980c34853e
snippets: tempel: Fix calls to mapconcat.
...
* etc/snippets/tempel/text-mode (update\ ,https\ ): Add "\n" as separator
argument to mapconcat.
2022-10-06 21:16:45 +02:00
Liliana Marie Prikler
e4951f7c71
gnu: python-renpy: Update to 8.0.3.
...
* gnu/packages/game-development.scm (python-renpy): Update to 8.0.3.
2022-10-06 21:16:45 +02:00
Liliana Marie Prikler
b60b756226
gnu: python-pygame-sdl2: Update to 2.1.0-for-renpy-8.0.3.
...
* gnu/packages/game-development.scm (python-pygame-sdl2): Update to
2.1.0-for-renpy-8.0.3.
2022-10-06 21:16:45 +02:00
Tanguy Le Carrour
3657b4daea
gnu: tessen: Update to 2.1.2.
...
* gnu/packages/password-utils.scm (tessen): Update to 2.1.2.
[arguments]: Substitute notify-send, wl-copy and xdg-open.
[inputs] Add libnotify, wl-clipboard and xdg-utils.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-06 19:49:33 +03:00
itd
0179b21641
gnu: weechat-wee-slack: Update to 2.9.0.
...
* gnu/packages/messaging.scm (weechat-wee-slack): Update to 2.9.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-06 19:35:01 +03:00
Brian Cully
ac3582f990
gnu: zfs: Update to 2.1.6.
...
* gnu/packages/file-systems.scm (zfs): Update to 2.1.6.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-06 19:27:44 +03:00
Liliana Marie Prikler
2f88f5c06f
gnu: komikku: Update to 1.1.0.
...
* gnu/packages/gnome.scm (komikku): Update to 1.1.0.
2022-10-06 17:25:35 +02:00
Taiju HIGASHI
5b42b64ea8
doc: Fix missing package name.
...
* doc/guix.texi (Invoking guix import): Fix missing package name for gem
importer.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-06 15:08:04 +01:00
Fredrik Salomonsson
53e086c5c6
gnu: Add waybar-cpu-histogram.
...
* gnu/packages/wm.scm (waybar-cpu-histogram): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-06 15:08:03 +01:00
Lu Hui
eb5b104ca8
gnu: libdaemon: Fix targeting riscv64.
...
* gnu/packages/libdaemon.scm (libdaemon)[native-inputs,arguments]: Treat
targeting riscv64 like aarch64 is handled.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-06 15:08:03 +01:00
Paul A. Patience
52b9f0ef1e
gnu: Add discregrid.
...
* gnu/packages/graphics.scm (discregrid): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-06 15:08:03 +01:00
Wiktor Żelazny
e4593e2114
gnu: Add r-gldex.
...
* gnu/packages/cran.scm (r-gldex): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-06 15:08:03 +01:00
Wiktor Żelazny
53eea4d657
gnu: Add r-spacefillr.
...
* gnu/packages/cran.scm (r-spacefillr): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-06 15:08:03 +01:00
(
7a271e6886
gnu: Add cpass.
...
* gnu/packages/password-utils.scm (cpass): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-06 15:08:03 +01:00
(
44f8aa26bc
gnu: Add wlgreet.
...
* gnu/packages/admin.scm (wlgreet): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-06 15:08:03 +01:00
(
829c2eaa7f
gnu: Add rust-os-pipe-0.8.
...
* gnu/packages/crates-io.scm (rust-os-pipe-0.8): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-06 15:08:02 +01:00
(
b370ac2103
gnu: Add rust-greetd-ipc-0.8.
...
* gnu/packages/crates-io.scm (rust-greetd-ipc-0.8): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-10-06 15:08:02 +01:00
Christopher Baines
020dc0a1f1
gnu: plink: Change origin URL.
...
pngu.mgh.harvard.edu seems to time out.
* gnu/packages/bioinformatics.scm (plink)[origin]. Change URL.
2022-10-06 15:08:02 +01:00
Michael Rohleder
b86867417f
gnu: celluloid: Do not install icon cache.
...
Fixes <https://issues.guix.gnu.org/58207 >.
* gnu/packages/video.scm (celluloid)[arguments]: Add phase
disable-postinstall-script so postinstall-script does nothing. Build
with glib-or-gtk meson option.
[native-inputs]: Remove desktop-file-utils, gtk:bin.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-06 16:58:15 +03:00
Michael Rohleder
2408a10325
gnu: quaternion: Update to 0.0.95.1.
...
* gnu/packages/messaging.scm (quaternion): Update to 0.0.95.1.
[inputs]: Add qtgraphicaleffects.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-06 16:26:17 +03:00
Michael Rohleder
dd7c8537d2
gnu: libqmatrixclient: Update to 0.6.11.
...
* gnu/packages/messaging.scm (libqmatrixclient): Update to 0.6.11.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-06 16:26:11 +03:00
David Thompson
a503d0ba8c
gnu: gitolite: Switch to G-expressions.
...
* gnu/packages/version-control.scm (gitolite)[arguments]: Use G-expressions.
[inputs]: Add grep and sed.
2022-10-06 08:38:50 -04:00
Ricardo Wurmus
e069c6df5e
gnu: Add r-dada2.
...
* gnu/packages/bioconductor.scm (r-dada2): New variable.
2022-10-06 12:38:34 +02:00
Ricardo Wurmus
e351749c44
doc: Add terms to concept index for "guix style".
...
* doc/guix.texi (Invoking guix style): Add terms to concept index.
2022-10-06 12:22:49 +02:00
Ricardo Wurmus
6ede81b6a4
doc: Add concept index terms for "guix archive".
...
* doc/guix.texi (Invoking guix archive): Add terms to concept index.
2022-10-06 12:22:49 +02:00
Ricardo Wurmus
b310c4f02a
doc: Add every command name to concept index.
...
* doc/guix.texi: Add an entry for each Guix command to the concept index.
2022-10-06 12:22:49 +02:00
Ricardo Wurmus
32ba74ab48
doc: Use @command instead of @code.
...
* doc/guix.texi: Use @command to refer to Guix commands.
2022-10-06 12:22:48 +02:00
Efraim Flashner
40a42c4348
gnu: linux-libre: Support zram on all kernels.
...
* gnu/packages/linux.scm (%default-extra-linux-options): Add config
options to add zram support.
2022-10-06 09:44:54 +03:00
Julien Lepiller
70fc8f6d61
nls: Update translations.
2022-10-06 08:20:20 +02:00
Leo Famulari
e543bd8321
gnu: linux-libre 4.19: Update to 4.19.261.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.261.
(linux-libre-4.19-pristine-source): Update hash.
2022-10-06 00:57:06 -04:00
Leo Famulari
1b7cb8a977
gnu: linux-libre 5.4: Update to 5.4.216.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.216.
(linux-libre-5.4-pristine-source, deblob-scripts-5.4): Update hashes.
2022-10-06 00:57:06 -04:00
Leo Famulari
93852b83ec
gnu: linux-libre 5.10: Update to 5.10.147.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.147.
(linux-libre-5.10-pristine-source): Update hash.
2022-10-06 00:57:06 -04:00
Leo Famulari
a175ef12b6
gnu: linux-libre 5.15: Update to 5.15.72.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.72.
(linux-libre-5.15-pristine-source): Update hash.
2022-10-06 00:57:05 -04:00
Leo Famulari
d912c36330
gnu: linux-libre 5.19: Update to 5.19.14.
...
* gnu/packages/linux.scm (linux-libre-5.19-version): Update to 5.19.14.
(linux-libre-5.19-pristine-source): Update hash.
2022-10-06 00:57:02 -04:00
Sharlatan Hellseher
43b8df4bec
gnu: Add splash.
...
* gnu/packages/astronomy.scm (splash): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-06 00:11:18 +02:00
Alexey Abramov
40ad967322
services: dhcp-client: Implement and use a configuration record.
...
* gnu/services/networking.scm (dhcp-client-configuration): New record
configuration.
(dhcp-client-shepherd-service): Implement a shepher service. Provide a
deprication message for legacy configurations.
(dhcp-client-service-type): Use dhcp-client-shepherd-service.
* doc/guix.texi (Networking Setup): Update.
* po/guix/POTFILES.in: Add 'gnu/services/networking.scm'.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-10-06 00:11:18 +02:00
Ricardo Wurmus
7d04f3ad28
import/utils: beautify-description: Update to pass tests.
...
* guix/import/utils.scm (beautify-description): Remove single quote wrapping;
escape @; exclude common abbreviations and titles from double-spacing; detect
more sentence fragments.
2022-10-05 23:59:48 +02:00
Ricardo Wurmus
421a87a68a
tests: Add new test cases for beautify-description.
...
* tests/import-utils.scm ("beautify-description: use double spacing"): Update.
("beautify-description: remove single quotes",
"beautify-description: escape @"): New tests.
2022-10-05 23:59:48 +02:00
Liliana Marie Prikler
9be5f88e18
gnu: gnome-maps: Properly wrap GI_TYPELIB_PATH.
...
This fixes a bug reported by pkill9 and tschilptschilp23 in IRC.
See <http://logs.guix.gnu.org/guix/2022-10-01.log#031053 > and
<http://logs.guix.gnu.org/guix/2022-10-05.log#214334 >.
It does so by using a snippet that's also applied in gnome-shell.
* gnu/packages/geo.scm (gnome-maps)[#:phases]: Remove ‘patch-dbus-service’.
Update ‘wrap’ so that it uses GJS-specific wrapping code rather than
wrap-program.
2022-10-05 22:05:43 +02:00
Liliana Marie Prikler
ccbeb3fde6
gnu: gnome-maps: Delete trailing space.
...
* gnu/packages/geo.scm (gnome-maps)[inputs]: Delete trailing spaces.
2022-10-05 21:45:18 +02:00
Liliana Marie Prikler
7ddba7bf66
gnu: gnome-maps: Update to 43.0.
...
* gnu/packages/geo.scm (gnome-maps): Update to 43.0.
[arguments]<#:meson>: Use meson-0.63.
<#:phases>: Replace ‘skip-gtk-update-icon-cache’ with
‘skip-cache-and-database-updates’. Update accordingly.
2022-10-05 21:44:00 +02:00
Ricardo Wurmus
fd6cd9de86
gnu: Add megahit.
...
* gnu/packages/bioinformatics.scm (megahit): New variable.
2022-10-05 17:59:04 +02:00
Ricardo Wurmus
be1d561f1a
gnu: Add cd-hit-auxtools.
...
* gnu/packages/bioinformatics.scm (cd-hit-auxtools): New variable.
2022-10-05 14:28:24 +02:00
Ricardo Wurmus
3f627bf56b
gnu: cd-hit: Update to 4.8.1.
...
* gnu/packages/bioinformatics.scm (cd-hit): Update to 4.8.1.
[arguments]: Do not use quasiquote; remove trailing #T from build phases.
[inputs]: Add zlib.
2022-10-05 13:47:57 +02:00
Ricardo Wurmus
9ed65e6af7
gnu: kaiju: Update to 1.9.0.
...
* gnu/packages/bioinformatics.scm (kaiju): Update to 1.9.0.
[arguments]: Use gexps; wrap scripts in install phase.
[inputs]: Add bzip2, coreutils, curl, gawk, guile-3.0, gzip,
python-wrapper, tar, and wget.
2022-10-04 23:10:56 +02:00
Liliana Marie Prikler
a96ebe47b0
gnu: ibus: Build with GTK4.
...
* gnu/packages/ibus.scm (ibus)[arguments]: Add “--enable-gtk4”.
[inputs]: Add gtk and pango-next.
2022-10-04 20:40:46 +02:00
Liliana Marie Prikler
c264265abd
gnu: sdl2: Use ibus-minimal instead of ibus.
...
This prevents an input cycle between GTK -> ffmpeg -> sdl2 -> ibus -> GTK.
* gnu/packages/sdl.scm (sdl2)[inputs]: Replace ibus with ibus-minimal.
2022-10-04 20:40:46 +02:00
Liliana Marie Prikler
ef53c075a1
gnu: Add ibus-minimal.
...
* gnu/packages/ibus.scm (ibus-minimal): New variable.
(ibus): Inherit from ibus-minimal.
2022-10-04 20:40:45 +02:00
Jonathan Brielmaier
1c821a3a63
gnu: icedove: Update to 102.3.1 [security fixes].
...
Fixes CVE-2022-39236, CVE-2022-39249, CVE-2022-39250 and CVE-2022-39251.
* gnu/packages/gnuzilla.scm (icedove): Update to 102.3.1.
2022-10-04 20:36:24 +02:00
Ludovic Courtès
ecee392ef1
gnu: eog-plugins: Fix source URL.
...
The incorrect URL was introduced in
d6d861c615 .
* gnu/packages/gnome.scm (eog-plugins)[source]: Change directory in URL.
2022-10-04 18:15:36 +02:00
Zzull
58f6b246a6
gnu: Add awscli-2.
...
* gnu/packages/python-web.scm (awscli-2): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-04 18:15:36 +02:00
Zzull
d7932b731f
gnu: Add python-executor.
...
* gnu/packages/python-xyz.scm (python-executor): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-04 18:15:36 +02:00
Zzull
0669bf64f7
gnu: Add python-property-manager.
...
* gnu/packages/python-xyz.scm (python-property-manager): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-04 18:15:35 +02:00
Ludovic Courtès
f83622f17d
services: anonip: Bail out when the input is not a FIFO.
...
* gnu/services/web.scm (anonip-shepherd-service)[start]: Accept zero
arguments. Define 'spawn'. Print a message and return #f when #$INPUT
does not denote a FIFO.
2022-10-04 18:15:35 +02:00
Ludovic Courtès
5bc4b8e8e3
channels: Warn about missing introductions.
...
* guix/channels.scm (latest-channel-instance): Warn when CHANNEL has no
introduction and CHECKOUT contains '.guix-authorizations'.
2022-10-04 18:15:35 +02:00
Ludovic Courtès
ae1af5d787
gnu: guix: Update to 17134b9.
...
* gnu/packages/package-management.scm (guix): Update to 17134b9 .
2022-10-04 18:15:35 +02:00
( via Guix-patches via
7030f592c6
home: Add home-batsignal-service-type.
...
* gnu/home/services/pm.scm (home-batsignal-service-type): New variable.
(home-batsignal-configuration): New record type.
* doc/guix.texi: Document them.
* gnu/local.mk: Add gnu/home/services/pm.scm.
2022-10-04 17:04:45 +04:00
Andrew Tropin
224fd038f2
doc: Mention network mask in network-route.
...
* doc/guix.texi (Networking Setup): Mention network mask in network-route.
2022-10-04 16:51:22 +04:00
Andrew Tropin
64213a0b66
deploy: Fix error message.
...
* guix/scripts/deploy.scm (guix-deploy): Fix error message.
2022-10-04 16:46:33 +04:00
Timotej Lazar
ba84c8c448
gnu: augustus: Update to 3.2.0.
...
* gnu/packages/games.scm (augustus): Update to 3.2.0.
[inputs]: Add expat.
[snippet]: Unbundle it. Drop trailing #t.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-04 13:37:43 +02:00
jgart
31e19fd874
gnu: emacs-lsp-mode: Update to 26c4d3e.
...
* gnu/packages/emacs-xyz.scm (emacs-lsp-mode): Update to 26c4d3e.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-04 13:37:43 +02:00
Michael Rohleder
7e9534150b
gnu: emacs-nov-el: Update to 0.4.0 and use gexps.
...
* gnu/packages/emacs-xyz.scm (emacs-nov-el): Update to 0.4.0.
[arguments]: Use gexps.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-04 13:37:42 +02:00
Nicolas Goaziou
df5a021f66
gnu: emacs-modus-themes: Update to 2.7.1.
...
* gnu/packages/emacs-xyz.scm (emacs-modus-themes): Update to 2.7.1.
2022-10-04 13:37:42 +02:00
Nicolas Goaziou
5e8221822e
gnu: emacs-org-mime: Update to 0.3.2.
...
* gnu/packages/emacs-xyz.scm (emacs-org-mime): Update to 0.3.2.
2022-10-04 13:37:42 +02:00
kiasoc5
fd7c34f2bf
gnu: Add emacs-circadian.
...
* gnu/packages/emacs-xyz.scm (emacs-circadian): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-10-04 13:37:41 +02:00
Ricardo Wurmus
17134b9ec1
gnu: r-tximeta: Update to 1.14.1.
...
* gnu/packages/bioconductor.scm (r-tximeta): Update to 1.14.1.
2022-10-03 19:08:09 +02:00
Ricardo Wurmus
94693d1980
gnu: r-bionero: Update to 1.4.2.
...
* gnu/packages/bioconductor.scm (r-bionero): Update to 1.4.2.
[propagated-inputs]: Remove r-deseq2 and r-ggpubr; add r-ggrepel and r-patchwork.
2022-10-03 19:08:09 +02:00
Ricardo Wurmus
202fd44ca0
gnu: r-biodb: Update to 1.4.2.
...
* gnu/packages/bioconductor.scm (r-biodb): Update to 1.4.2.
2022-10-03 19:08:09 +02:00
Ricardo Wurmus
87c097631f
gnu: r-biocdockermanager: Update to 1.8.1.
...
* gnu/packages/bioconductor.scm (r-biocdockermanager): Update to 1.8.1.
2022-10-03 19:08:09 +02:00
Ricardo Wurmus
6bf59194a6
gnu: r-basilisk: Update to 1.8.1.
...
* gnu/packages/bioconductor.scm (r-basilisk): Update to 1.8.1.
2022-10-03 19:08:09 +02:00
Ricardo Wurmus
2e7872f6c9
gnu: r-bgeecall: Update to 1.12.2.
...
* gnu/packages/bioconductor.scm (r-bgeecall): Update to 1.12.2.
2022-10-03 19:08:09 +02:00
Ricardo Wurmus
869b1f9f5c
gnu: r-pathview: Update to 1.36.1.
...
* gnu/packages/bioconductor.scm (r-pathview): Update to 1.36.1.
2022-10-03 19:08:09 +02:00
Ricardo Wurmus
547d4670e7
gnu: r-delayedmatrixstats: Update to 1.18.1.
...
* gnu/packages/bioconductor.scm (r-delayedmatrixstats): Update to 1.18.1.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
cc719399c9
gnu: r-scran: Update to 1.24.1.
...
* gnu/packages/bioconductor.scm (r-scran): Update to 1.24.1.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
1527d2e9df
gnu: r-scuttle: Update to 1.6.3.
...
* gnu/packages/bioconductor.scm (r-scuttle): Update to 1.6.3.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
d66a466909
gnu: r-hdf5array: Update to 1.24.2.
...
* gnu/packages/bioconductor.scm (r-hdf5array): Update to 1.24.2.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
78ff15ae42
gnu: r-biocpkgtools: Update to 1.14.1.
...
* gnu/packages/bioconductor.scm (r-biocpkgtools): Update to 1.14.1.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
9af834ad37
gnu: r-biocviews: Update to 1.64.1.
...
* gnu/packages/bioconductor.scm (r-biocviews): Update to 1.64.1.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
8441c1f9ea
gnu: r-bioccheck: Update to 1.32.1.
...
* gnu/packages/bioconductor.scm (r-bioccheck): Update to 1.32.1.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
e30b2aeaa2
gnu: r-cytoml: Update to 2.8.1.
...
* gnu/packages/bioconductor.scm (r-cytoml): Update to 2.8.1.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
10c006c21d
gnu: r-opencyto: Update to 2.8.4.
...
* gnu/packages/bioconductor.scm (r-opencyto): Update to 2.8.4.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
bceed10243
gnu: r-flowstats: Update to 4.8.2.
...
* gnu/packages/bioconductor.scm (r-flowstats): Update to 4.8.2.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
eed76ad91a
gnu: r-flowviz: Update to 1.60.2.
...
* gnu/packages/bioconductor.scm (r-flowviz): Update to 1.60.2.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
f82d20caae
gnu: r-ggcyto: Update to 1.24.1.
...
* gnu/packages/bioconductor.scm (r-ggcyto): Update to 1.24.1.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
1c3750c9ea
gnu: r-ncdfflow: Update to 2.42.1.
...
* gnu/packages/bioconductor.scm (r-ncdfflow): Update to 2.42.1.
2022-10-03 19:08:08 +02:00
Ricardo Wurmus
23e42e77d4
gnu: r-rsubread: Update to 2.10.5.
...
* gnu/packages/bioconductor.scm (r-rsubread): Update to 2.10.5.
2022-10-03 19:08:07 +02:00
Ricardo Wurmus
597106f234
gnu: r-rgadem: Update to 2.44.1.
...
* gnu/packages/bioconductor.scm (r-rgadem): Update to 2.44.1.
2022-10-03 19:08:07 +02:00
Ricardo Wurmus
83f0c1a39d
gnu: r-enrichplot: Update to 1.16.2.
...
* gnu/packages/bioconductor.scm (r-enrichplot): Update to 1.16.2.
2022-10-03 19:08:07 +02:00
Ricardo Wurmus
842431a036
gnu: r-dose: Update to 3.22.1.
...
* gnu/packages/bioconductor.scm (r-dose): Update to 3.22.1.
2022-10-03 19:08:07 +02:00
Ricardo Wurmus
2b4a7fa22e
gnu: r-residualmatrix: Update to 1.6.1.
...
* gnu/packages/bioconductor.scm (r-residualmatrix): Update to 1.6.1.
2022-10-03 19:08:07 +02:00
Ricardo Wurmus
1cb30ba714
gnu: r-ggtree: Update to 3.4.4.
...
* gnu/packages/bioconductor.scm (r-ggtree): Update to 3.4.4.
2022-10-03 19:08:07 +02:00
Ricardo Wurmus
a047448aad
gnu: r-treeio: Update to 1.20.2.
...
* gnu/packages/bioconductor.scm (r-treeio): Update to 1.20.2.
2022-10-03 19:08:07 +02:00
Ricardo Wurmus
41f029c12a
gnu: r-scaledmatrix: Update to 1.4.1.
...
* gnu/packages/bioconductor.scm (r-scaledmatrix): Update to 1.4.1.
2022-10-03 19:08:07 +02:00
Ricardo Wurmus
e581479be8
gnu: r-diffbind: Update to 3.6.4.
...
* gnu/packages/bioconductor.scm (r-diffbind): Update to 3.6.4.
2022-10-03 19:08:07 +02:00
Ricardo Wurmus
309cfcedca
gnu: r-zellkonverter: Update to 1.6.5.
...
* gnu/packages/bioconductor.scm (r-zellkonverter): Update to 1.6.5.
2022-10-03 19:08:07 +02:00
Ricardo Wurmus
039d894b9d
gnu: r-limma: Update to 3.52.4.
...
* gnu/packages/bioconductor.scm (r-limma): Update to 3.52.4.
2022-10-03 19:08:07 +02:00
Ricardo Wurmus
a16c87fae1
gnu: r-genomicfeatures: Update to 1.48.4.
...
* gnu/packages/bioconductor.scm (r-genomicfeatures): Update to 1.48.4.
2022-10-03 19:08:06 +02:00
Ricardo Wurmus
a15ad5ebe3
gnu: r-genomeinfodb: Update to 1.32.4.
...
* gnu/packages/bioconductor.scm (r-genomeinfodb): Update to 1.32.4.
2022-10-03 19:08:06 +02:00
Ricardo Wurmus
ba6a3e7d39
gnu: r-gage: Update to 2.46.1.
...
* gnu/packages/bioconductor.scm (r-gage): Update to 2.46.1.
2022-10-03 19:08:06 +02:00
Ricardo Wurmus
c82320aa21
gnu: r-complexheatmap: Update to 2.12.1.
...
* gnu/packages/bioconductor.scm (r-complexheatmap): Update to 2.12.1.
2022-10-03 19:08:06 +02:00
Ricardo Wurmus
038eeeaf2a
gnu: r-chipseeker: Update to 1.32.1.
...
* gnu/packages/bioconductor.scm (r-chipseeker): Update to 1.32.1.
[propagated-inputs]: Add r-ggvenndiagram.
2022-10-03 19:08:06 +02:00
Ricardo Wurmus
15243c2f84
gnu: r-biostrings: Update to 2.64.1.
...
* gnu/packages/bioconductor.scm (r-biostrings): Update to 2.64.1.
2022-10-03 19:08:06 +02:00
Ricardo Wurmus
29a947216c
gnu: r-annotationforge: Update to 1.38.1.
...
* gnu/packages/bioconductor.scm (r-annotationforge): Update to 1.38.1.
2022-10-03 19:08:06 +02:00
Ricardo Wurmus
96b560ac8b
gnu: r-dearseq: Update to 1.8.4.
...
* gnu/packages/bioconductor.scm (r-dearseq): Update to 1.8.4.
2022-10-03 19:08:03 +02:00
Maxim Cournoyer
d573494387
doc: Mention sourcing system profile when chrooting.
...
* doc/guix.texi (Chrooting into an existing system): Add sourcing of system
profile along user profile.
2022-10-03 11:22:19 -04:00
Maxim Cournoyer
06201b76e5
gnu: Remove ocaml-craml.
...
The package doesn't build from source and is unmaintained according to its
maintainer:
https://github.com/realworldocaml/craml/pull/8#issuecomment-529235628 .
* gnu/packages/ocaml.scm (ocaml-craml): Delete variable.
2022-10-03 11:16:15 -04:00
Maxim Cournoyer
67e9513e40
gnu: r-spams: Update to 2.6.1.
...
* gnu/packages/statistics.scm (r-spams): Update to 2.6.1.
[source]: Migrate from gforge.inria.fr to gitlab.inria.fr, fetching from git.
[phases]: Use gexps.
{patch-paths, mkdist}: New phases.
{no-mtune}: Delete trailing #t.
[native-inputs]: New field.
[home-page]: Update URL.
2022-10-03 11:16:15 -04:00
Maxim Cournoyer
1390e38264
gnu: ocaml-dose3: Migrate from gforce.inria.fr.
...
* gnu/packages/ocaml.scm (ocaml-dose3) [source]: Fetch from git from inill's gitlab
instance.
2022-10-03 11:16:15 -04:00
Maxim Cournoyer
a93781b83c
gnu: Remove unused scotch patches.
...
* gnu/packages/patches/scotch-build-parallelism.patch: Delete file.
* gnu/packages/patches/scotch-integer-declarations.patch: Likewise.
* gnu/local.mk (dist_patch_DATA): De-register them.
2022-10-03 11:16:15 -04:00
Maxim Cournoyer
8ad1978695
gnu: mpfi: Update to 1.5.4-1.b982534.
...
* gnu/packages/multiprecision.scm (mpfi): Update to 1.5.4-1.b982534.
[source]: Fetch from git and use latest commit available.
[tests?]: Delete argument, enabling test suite.
[phases]: New argument.
[native-inputs]: New field.
2022-10-03 11:16:15 -04:00
Maxim Cournoyer
a001be9664
gnu: mpfi: Use gexps and remove input labels.
...
* gnu/packages/multiprecision.scm (mpfi) [source]: Re-indentation.
[configure-flags]: Use gexps.
[native-inputs]: Remove labels.
2022-10-03 11:16:15 -04:00
Maxim Cournoyer
efb974a6fa
gnu: isl: Remove outdated comment.
...
* gnu/packages/gcc.scm (isl) [source]: Remove outdated comment.
2022-10-03 11:16:14 -04:00
Maxim Cournoyer
384b98028c
gnu: gappa: Honor TESTS?.
...
* gnu/packages/algebra.scm (gappa) [phases] {check}: Honor TESTS?.
2022-10-03 11:16:14 -04:00
Maxim Cournoyer
0f46559331
gnu: gappa: Update to 1.4.1.
...
* gnu/packages/algebra.scm (gappa): Update to 1.4.1.
[source]: Fetch from git.
[arguments]: Use gexps.
[phases]: Delete trailing #t.
[native-inputs]: New field.
2022-10-03 11:16:14 -04:00
Maxim Cournoyer
bcc61c08be
gnu: gmp-ecm: Update to 7.0.5.
...
* gnu/packages/algebra.scm (gmp-ecm): Update to 7.0.5.
[source]: Fetch from git from gitlab.inria.fr.
[arguments]: Use gexps.
[phases] {patch-paths}: New phase
[native-inputs]: New field.
[home-page]: Update URL.
2022-10-03 11:16:14 -04:00
Maxim Cournoyer
795f90ea4e
gnu: gf2x: Update to 1.3.0.
...
* gnu/packages/algebra.scm (gf2x): Update to 1.3.0.
2022-10-03 11:16:13 -04:00
Maxim Cournoyer
2b08945cbb
gnu: gf2x: Migrate from gforge.inria.fr to gitlab.inria.fr.
...
* gnu/packages/algebra.scm (gf2x) [source]: Fetch from git, adjust URL.
[native-inputs]: Add autoconf, automake and libtool.
[home-site]: Update URL.
2022-10-03 11:16:13 -04:00
Maxim Cournoyer
9945f9419d
gnu-maintenance: Remove retired 'gforge.inria.fr' site.
...
* guix/gnu-maintenance.scm (html-updatable-package?): Remove "gforge.inria.fr".
2022-10-03 11:16:13 -04:00
Thiago Jung Bauermann
aeaabc4253
news: Add 'pt' translation.
...
* etc/news.scm: Add Portuguese translation of entry about the --with-source
option being recursive.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-10-03 16:23:16 +02:00
Thiago Jung Bauermann
ee8211a62c
etc: teams: Add news.scm to translations team scope.
...
* etc/teams.scm.in (translations)[#:scope]: Add etc/news.scm.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-10-03 15:33:29 +02:00
Michael Rohleder
f64c80a538
gnu: emacs-ag: Do not propagate the-silver-searcher.
...
* gnu/packages/emacs-xyz.scm (emacs-ag)[phases]: Add phase substitute-ag-path
to avoid propagating ag.
[inputs]: Add the-silver-searcher.
[propagated-inputs]: Remove the-silver-searcher.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-03 10:26:42 +03:00
Michael Rohleder
3fbe68d9fc
gnu: emacs-ag: Use gexps.
...
* gnu/packages/emacs-xyz.scm (emacs-ag)[phases]: Use gexps.
{install-info}: Adjust for gexps.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-03 10:26:41 +03:00
Greg Hogan
582b1f626f
gnu: python-louvain: Fix test.
...
* gnu/packages/graph.scm (python-louvain)[source]: Add patch.
* gnu/packages/patches/python-louvain-fix-test.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register patch.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-02 23:22:07 +02:00
Greg Hogan
d1c3de6583
gnu: python-setools: Update to 4.4.0.
...
* gnu/packages/selinux.scm (python-setools): Update to 4.4.0.
[source, home-page]: Update url.
[inputs]: Add python-pyqt.
[native-inputs]: Add python-cython.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-02 23:21:58 +02:00
Greg Hogan
35c92a6324
gnu: python-cfn-lint: Update to 0.65.0.
...
* gnu/packages/python-web.scm (python-cfn-lint): Update to 0.65.0.
[arguments]<#:phases>: Add 'skip-network-test.
[propagated-inputs]: Add python-importlib-resources,
python-jschema-to-python, python-sarif-om.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-02 23:21:51 +02:00
Greg Hogan
56d8907c5f
gnu: Add python-sarif-om.
...
* gnu/packages/python-web.scm (python-sarif-om): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-02 23:21:47 +02:00
Greg Hogan
dec74d4563
gnu: Add python-jschema-to-python.
...
* gnu/packages/python-web.scm (python-jschema-to-python): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-02 23:21:38 +02:00
Greg Hogan
2070ce84ec
gnu: python-aws-sam-translator: Update to 1.51.0.
...
* gnu/packages/python-web.scm (python-aws-sam-translator): Update to 1.51.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-02 23:21:34 +02:00
Greg Hogan
5440d6be78
gnu: python-networkx: Update to 2.8.6.
...
* gnu/packages/python-xyz.scm (python-networkx): Update to 2.8.6.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-02 23:21:29 +02:00
Wiktor Żelazny
b479089fdc
gnu: Add texlive-generic-xstring.
...
* gnu/packages/tex.scm (texlive-generic-xstring): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-02 23:20:05 +02:00
Giovanni Biscuolo
69aa41e405
gnu: emacs-telega: Use tdlib-1.8.0
...
emacs-telega is compatible with the latest TDLib major release 1.8.0
* gnu/packages/emacs-xyz.scm: (emacs-telega) Use tdlib-1.8.0 instead of latest tdlib
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-02 23:18:43 +02:00
Giovanni Biscuolo
abc232c42d
gnu: Add tdlib-1.8.0.
...
This is needed for emacs-telega 0.8.3
* gnu/packages/messaging.scm (tdlib-1.8.0): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-10-02 23:18:43 +02:00
Ludovic Courtès
782c7455e1
gnu: ffmpeg@4: Build against SDL2 2.0 so 'ffplay' gets built.
...
Fixes <https://issues.guix.gnu.org/58090 >.
Reported by Zhu Zihao <all_but_last@163.com >.
* gnu/packages/sdl.scm (sdl2-2.0): New variable.
* gnu/packages/video.scm (ffmpeg-4)[inputs]: New field.
2022-10-02 23:18:42 +02:00
Ludovic Courtès
4bd75d79e5
read-print: Fix indentation rule for 'match-lambda*'.
...
Fixes <https://issues.guix.gnu.org/58040 >.
Reported by Maxime Devos <maximedevos@telenet.be >.
* guix/read-print.scm (%special-forms): Set 'match-lambda*' parameter
count to 1.
2022-10-02 22:27:55 +02:00
Ludovic Courtès
3624f4358c
doc: Update the URL of ISC DHCP.
...
* doc/guix.texi (Networking Services): Update ISC DHCP URL.
2022-10-02 22:14:45 +02:00
Ludovic Courtès
6a04bc8a6d
transformations: Switch to SRFI-71.
...
* guix/transformations.scm (package-with-source)
(evaluate-source-replacement-specs): Use SRFI-71 'let' instead of
'let-values'.
2022-10-02 22:14:45 +02:00
Liliana Marie Prikler
407f017663
gnu: emacs-minimal: Reduce to minimal inputs.
...
This partly reverts dbcba75c0e . In that commit,
emacs-minimal gained a few inputs that weren't actually used as native
compilation is disabled.
Discovered by djeis in IRC, see also
<http://logs.guix.gnu.org/guix/2022-10-02.log#170047 >.
* gnu/packages/emacs.scm (emacs-minimal)[inputs]: Remove ld-wrapper, binutils,
glibc, libgccjit, and zlib.
[arguments]<#:phases>: Delete ‘set-libgccjit-path’.
2022-10-02 18:30:02 +02:00
Michael Rohleder
bb3b810167
gnu: emacs-scratch-el: Update source and homepage.
...
* gnu/packages/emacs-xyz.scm (emacs-scratch-el)[source, homepage]: Update URL.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-02 15:40:17 +03:00
Michael Rohleder
6fc185bc79
gnu: pantalaimon: Update to 0.10.5.
...
* gnu/packages/matrix.scm (pantalaimon): Update to 0.10.5.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-02 15:34:40 +03:00
Michael Rohleder
d37f4f4ac7
gnu: python-matrix-nio: Update to 0.20.0.
...
* gnu/packages/matrix.scm (python-matrix-nio): Update to 0.20.0.
[native-inputs]: Add python-pytest-asyncio.
[propagated-inputs]: Changed python-jsonschema to python-jsonschema-next.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-02 15:34:38 +03:00
Michael Rohleder
357bd133d8
gnu: python-aiohttp-socks: Update to 0.7.1.
...
* gnu/packages/python-web.scm (python-aiohttp-socks): Update to 0.7.1.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-02 15:34:36 +03:00
Michael Rohleder
6448abe39a
gnu: python-socks: Update to 2.0.3.
...
* gnu/packages/python-web.scm (python-socks): Update to 2.0.3.
[arguments]<#:phases>: Remove trailing #t.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-02 15:34:30 +03:00
Hilton Chain
5bd048debf
gnu: Add go-1.19.
...
* gnu/packages/golang (go-1.19,go-std-1.19): New variables.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-02 15:23:07 +03:00
Hilton Chain
f44ba4a1ad
gnu: Add go-1.18.
...
* gnu/packages/golang (go-1.18,go-std-1.18): New variables.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-02 15:22:53 +03:00
itd
2ac5da4b5a
gnu: Add ghc-9.0.
...
* gnu/packages/haskell.scm (ghc-9.0): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-02 15:16:18 +03:00
Fulbert
ae22181374
gnu: csound: Update to 6.16.2.
...
* gnu/packages/audio.scm (csound): Update to 6.16.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-02 14:54:21 +03:00
Mike Swanson
77bcdb7439
gnu: units: Update to 2.22.
...
* gnu/packages/maths.scm (units): Update to 2.22.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-02 14:36:23 +03:00
ギャラ
1df3af9bdf
gnu: neovim: Update to 0.8.0.
...
* gnu/packages/vim.scm (neovim): Update to 0.8.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-02 14:31:45 +03:00
ギャラ
09e5f9e38e
gnu: libvterm: Update to 0.3.0.
...
* gnu/packages/terminals.scm (libvterm): Update to 0.3.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-10-02 14:31:41 +03:00
Marius Bakke
78176e3a81
gnu: ungoogled-chromium: Update to 106.0.5249.91-1.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 106.0.5249.91.
(%ungoogled-origin, ungoogled-chromium): Update hashes.
2022-10-01 23:13:13 +02:00
Efraim Flashner
821cd5651a
gnu: exercism: Remove input labels.
...
* gnu/packages/education.scm (exercism)[inputs]: Remove input labels.
2022-10-01 23:48:02 +03:00
Efraim Flashner
04516a7adf
gnu: exercism: Update home-page.
...
* gnu/packages/education.scm (exercism)[home-page]: Follow redirect.
2022-10-01 23:47:06 +03:00
Efraim Flashner
4b5ac6b226
gnu: exercism: Install shell completions.
...
* gnu/packages/education.scm (exercism)[arguments]: Add a phase to build
and install shell completions.
2022-10-01 23:46:12 +03:00
Guillaume Le Vaillant
461b1e4909
gnu: nanovna-saver: Update to 0.5.3.
...
* gnu/packages/radio.scm (nanovna-saver): Update to 0.5.3.
2022-10-01 18:22:53 +02:00
Liliana Marie Prikler
4b3493ed01
gnu: komikku: Update to 1.0.0.
...
* gnu/packages/gnome.scm (komikku): Update to 1.0.0.
[arguments]<#:meson>: Use meson-0.63.
<#:phases>: Adjust ‘skip-gtk-update-icon-cache’
[inputs]: Replace gtk+ with gtk.
Replace libhandy with libadwaita.
Replace webkitgtk-with-libsoup2 with webkitgtk-next.
2022-10-01 18:10:01 +02:00
Liliana Marie Prikler
46e1eb48c9
gnu: komikku: Use G-Expressions.
...
* gnu/packages/gnome.scm (komikku)[arguments]: Convert to list of G-Expressions.
2022-10-01 18:10:01 +02:00
Liliana Marie Prikler
7f0ff90538
gnu: gfeeds: Update to 1.0.3.
...
* gnu/packages/syndication.scm (gfeeds): Update to 1.0.3.
[arguments]<#:phases>: Add ‘skip-icon-cache’.
[native-inputs]: Remove gtk+:bin. Add blueprint-compiler.
[inputs]: Replace gtk+ with gtk.
Replace libhandy with libadwaita.
Replace python-readability with python-readability-lxml.
Replace webkitgtk with webkitgtk-next.
Add python-humanize, python-magic, python-pygobject, and
syndication-domination.
2022-10-01 18:10:01 +02:00
Liliana Marie Prikler
9619a31dc3
gnu: gfeeds: Modernize package description.
...
* gnu/packages/syndication.scm (gfeeds)[arguments]: Convert to list of
G-Expressions. Drop trailing #t.
[native-inputs]: Drop labels.
[inputs]: Add bash-minimal.
2022-10-01 17:56:01 +02:00
Liliana Marie Prikler
e90509b627
gnu: gfeeds: Use git origin.
...
* gnu/packages/syndication.scm (gfeeds)[origin]: Use git-fetch and
git-reference.
2022-10-01 17:56:00 +02:00
Liliana Marie Prikler
99af12e826
gnu: Add syndication-domination.
...
* gnu/packages/syndication.scm (syndication-domination): New variable.
2022-10-01 17:56:00 +02:00
Liliana Marie Prikler
7b7562d930
gnu: Add python-readability-lxml.
...
* gnu/packages/python-xyz.scm (python-readability-lxml): New variable.
2022-10-01 17:56:00 +02:00
Liliana Marie Prikler
b6b09a93fd
gnu: Add python-timeout-decorator.
...
* gnu/packages/python-xyz.scm (python-timeout-decorator): New variable.
2022-10-01 17:56:00 +02:00
Liliana Marie Prikler
16be8d4e7b
gnu: pugixml: Update to 1.12.1.
...
* gnu/packages/xml.scm (pugixml): Update to 1.12.1.
2022-10-01 17:56:00 +02:00
Liliana Marie Prikler
a70372b4aa
gnu: blueprint-compiler: Wrap GUIX_PYTHONPATH and GI_TYPELIB_PATH.
...
* gnu/packages/gnome.scm (blueprint-compiler)[arguments]: Add
python-build-system's wrap phase, as well as a phase for GI_TYPELIB_PATH.
2022-10-01 17:56:00 +02:00
Liliana Marie Prikler
95a216c4f0
gnu: libadwaita: Update to 1.2.0.
...
* gnu/packages/gnome.scm (libadwaita): Update to 1.2.0.
2022-10-01 17:56:00 +02:00
Liliana Marie Prikler
b3d3012f11
gnu: webkitgtk: Update to 2.38.0.
...
* gnu/packages/webkit.scm (webkitgtk): Update to 2.38.0.
2022-10-01 17:56:00 +02:00
Liliana Marie Prikler
85e7d3e83a
gnu: gtk: Update to 4.8.1.
...
* gnu/packages/gtk.scm (gtk): Update to 4.8.1.
2022-10-01 17:56:00 +02:00
Guillaume Le Vaillant
225e00bd19
gnu: monero-gui: Update to 0.18.1.2.
...
* gnu/packages/finance.scm (monero-gui): Update to 0.18.1.2.
2022-10-01 10:03:30 +02:00
Guillaume Le Vaillant
68d3ec6ad7
gnu: monero: Update to 0.18.1.2.
...
* gnu/packages/finance.scm (monero): Update to 0.18.1.2.
2022-10-01 09:32:10 +02:00
Florian Pelz
0dec41f329
news: Add 'de' translation.
...
* etc/news.scm: Add German translation of '--with-source' entry.
2022-10-01 00:55:28 +02:00
Ricardo Wurmus
1266b9ed11
gnu: salmon: Update to 1.9.0.
...
* gnu/packages/bioinformatics.scm (salmon): Update to 1.9.0.
[arguments]: Remove -DTBB_LIBRARIES from configure flags; copy pufferfish
itlib headers.
[inputs]: Use new label-less list; move pufferfish origin from here...
[native-inputs]: ...to here.
2022-09-30 22:43:21 +02:00
Ricardo Wurmus
729ce5fcf8
gnu: Add centrifuge.
...
* gnu/packages/bioinformatics.scm (centrifuge): New variable.
2022-09-30 16:59:18 +02:00
Efraim Flashner
71247a8e65
gnu: newsboat: Update to 2.29.
...
* gnu/packages/syndication.scm (newsboat): Update to 2.29.
[cargo-development-inputs]: Move rust-cxx-build-1 ...
[cargo-inputs]: ... to here.
2022-09-30 17:11:36 +03:00
Efraim Flashner
a3b6b7e91f
gnu: rust-unicode-width-0.1: Update to 0.1.10.
...
* gnu/packages/crates-io.scm (rust-unicode-width-0.1): Update to 0.1.10.
2022-09-30 17:11:36 +03:00
Efraim Flashner
6a1b3e30c2
gnu: rust-regex-syntax-0.6: Update to 0.6.27.
...
* gnu/packages/crates-io.scm (rust-regex-syntax-0.6): Update to 0.6.27.
2022-09-30 17:11:35 +03:00
Efraim Flashner
3a00bcc252
gnu: rust-regex-1: Update to 1.6.0.
...
* gnu/packages/crates-io.scm (rust-regex-1): Update to 1.6.0.
2022-09-30 17:11:35 +03:00
Efraim Flashner
f4715b2f0a
gnu: rust-quote-1: Update to 1.0.21.
...
* gnu/packages/crates-io.scm (rust-quote-1): Update to 1.0.21.
2022-09-30 17:11:35 +03:00
Efraim Flashner
91e1dc05da
gnu: rust-percent-encoding-2: Update to 2.2.0.
...
* gnu/packages/crates-io.scm (rust-percent-encoding-2): Update to 2.2.0.
2022-09-30 17:11:35 +03:00
Efraim Flashner
2e6fd5bd58
gnu: rust-lexopt-0.2: Update to 0.2.1.
...
* gnu/packages/crates-io.scm (rust-lexopt-0.2): Update to 0.2.1.
2022-09-30 17:11:34 +03:00
Efraim Flashner
b3c55e94ab
gnu: rust-fastrand-1: Update to 1.8.0.
...
* gnu/packages/crates-io.scm (rust-fastrand-1): Update to 1.8.0.
2022-09-30 17:11:34 +03:00
Efraim Flashner
97666b13d5
gnu: rust-url-2: Update to 2.3.1.
...
* gnu/packages/crates-io.scm (rust-url-2): Update to 2.3.1.
[arguments]: Don't skip build.
[cargo-inputs]: Replace rust-idna-0.2 with 0.3. Remove rust-matches-0.1.
[cargo-development-inputs]: Remove rust-rustc-test-0.3. Add
rust-debugger-test-0.1, rust-debugger-test-parser-0.1.
2022-09-30 17:11:34 +03:00
Efraim Flashner
7298371ca2
gnu: Add rust-tester-0.9.
...
* gnu/packages/crates-io.scm (rust-tester-0.9): New variable.
(rust-tester-0.5): Inherit from rust-tester-0.9.
2022-09-30 17:11:33 +03:00
Efraim Flashner
9ebdd45123
gnu: Add rust-idna-0.3.
...
* gnu/packages/crates-io.scm (rust-idna-0.3): New variable.
(rust-idna-0.2): Inherit from rust-idna-0.3.
2022-09-30 17:11:33 +03:00
Efraim Flashner
f9b8b5ac0e
gnu: rust-xdg-2: Update to 2.4.1.
...
* gnu/packages/crates-io.scm (rust-xdg-2): Update to 2.4.1.
[cargo-inputs]: Replace rust-dirs-3 with 4.
2022-09-30 17:11:33 +03:00
Efraim Flashner
a9ac10ba2c
gnu: rust-rustversion-1: Update to 1.0.9.
...
* gnu/packages/crates-io.scm (rust-rustversion-1): Update to 1.0.9.
[cargo-inputs]: Remove rust-proc-macro2-1, rust-quote-1, rust-syn-1.
[cargo-development-inputs]: Add rust-trybuild-1.
2022-09-30 17:11:33 +03:00
Efraim Flashner
a830bbf433
gnu: rust-form-urlencoded-1: Update to 1.1.0.
...
* gnu/packages/crates-io.scm (rust-form-urlencoded-1): Update to 1.1.0.
[cargo-inputs]: Remove rust-matches-0.1.
2022-09-30 17:11:32 +03:00
Efraim Flashner
ddc7c84efd
gnu: rust-anyhow-1: Update to 1.0.65.
...
* gnu/packages/crates-io.scm (rust-anyhow-1): Update to 1.0.65.
[cargo-inputs]: Add rust-backtrace-0.3.
[cargo-development-inputs]: Add rust-syn-1.
2022-09-30 17:11:32 +03:00
Efraim Flashner
8b6d4d3eba
gnu: Add rust-debugger-test-0.1.
...
* gnu/packages/crates-io.scm (rust-debugger-test-0.1): New variable.
2022-09-30 17:11:32 +03:00
Efraim Flashner
83dd03f12f
gnu: Add rust-debugger-test-parser-0.1.
...
* gnu/packages/crates-io.scm (rust-debugger-test-parser-0.1): New
variable.
2022-09-30 17:11:32 +03:00
Efraim Flashner
784f45db06
gnu: rust-dirs-3: Update to 3.0.2.
...
* gnu/packages/crates-io.scm (rust-dirs-3): Update to 3.0.2.
2022-09-30 17:11:31 +03:00
Efraim Flashner
af45ac7526
gnu: Add rust-dirs-4.
...
* gnu/packages/crates-io.scm (rust-dirs-4): New variable.
(rust-dirs-3): Inherit from rust-dirs-4.
2022-09-30 17:11:31 +03:00
Efraim Flashner
ac4be035f2
gnu: rust-once-cell-1: Update to 1.15.0.
...
* gnu/packages/crates-io.scm (rust-once-cell-1): Update to 1.15.0.
[cargo-inputs]: Replace rust-atomic-polyfill-0.1 with 1.
2022-09-30 17:11:31 +03:00
Efraim Flashner
730f7c096d
gnu: rav1e: Force building with rust edition 2018.
...
* gnu/packages/video.scm (rav1e)[arguments]: Add phase to force all
input crates to be built with rust edition 2018.
2022-09-30 17:11:25 +03:00
Leo Famulari
9d9b53ed5f
gnu: linux-libre 4.9: Update to 4.9.330.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.330.
(linux-libre-4.9-pristine-source): Update hash.
2022-09-30 10:10:44 -04:00
Leo Famulari
2fbd7862d0
gnu: linux-libre 4.14: Update to 4.14.295.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.295.
(linux-libre-4.14-pristine-source): Update hash.
2022-09-30 10:10:43 -04:00
Leo Famulari
e0d699bb17
gnu: linux-libre 4.19: Update to 4.19.260.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.260.
(linux-libre-4.19-pristine-source): Update hash.
2022-09-30 10:10:43 -04:00
Leo Famulari
7ff6569afe
gnu: linux-libre 5.4: Update to 5.4.215.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.215.
(linux-libre-5.4-pristine-source, deblob-scripts-5.4): Update hashes.
2022-09-30 10:10:43 -04:00
Leo Famulari
de6276db4e
gnu: linux-libre 5.10: Update to 5.10.146.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.146.
(linux-libre-5.10-pristine-source): Update hash.
2022-09-30 10:10:43 -04:00
Leo Famulari
918bd1020a
gnu: linux-libre 5.15: Update to 5.15.71.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.71.
(linux-libre-5.15-pristine-source): Update hash.
2022-09-30 10:10:42 -04:00
Leo Famulari
aab06a959b
gnu: linux-libre: Update to 5.19.12.
...
* gnu/packages/linux.scm (linux-libre-5.19-version): Update to 5.19.12.
(linux-libre-5.19-pristine-source): Update hash.
2022-09-30 10:10:42 -04:00
Zhu Zihao
9022b942ec
scripts: build: Format strings before calling display-hint.
...
* guix/scripts/build.scm(%standard-cross-build-options): Format hint string.
%standard-cross-build-options: Ditto.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-30 16:04:46 +02:00
Remco van 't Veer
51ab8b8553
gnu: quodlibet: Fix build.
...
Some tests fail because adwaita-icon-theme doesn't ship legacy icons
anymore since version 42. Application runs fine without visual defects.
* gnu/packages/music.scm (quodlibet): Skip trayicon tests.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-30 15:48:39 +02:00
kiasoc5
a47a051e3d
gnu: picard: Update to 2.8.3, modernize package.
...
* gnu/packages/music.scm (picard): Update to 2.8.3.
[source]: Remove patch.
[arguments]: Use G-expressions. Remove trailing #t.
[native-inputs]: Remove input labels.
[inputs]: Add python-fasteners, python-pyyaml, python-markdown, python-pyjwt. Remove a transitive
dependency on QtWebKit. See <https://issues.guix.gnu.org/53289 > for more information about this change.
* gnu/packages/patches/picard-fix-id3-rename-test.patch: Remove it.
* gnu/local.mk (dist_path_DATA): Update accordingly.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-30 15:43:35 +02:00
Mathieu Othacehe
0f66ef9aa9
tests: install: Fix iso-image-installer test.
...
This is a follow-up of: 45eac6cdf5 .
It fixes the following error:
+ mkfs.ext4 -L my-root /dev/vda2
sh: line 12: mkfs.ext4: command not found
* gnu/tests/install.scm (%test-iso-image-installer): Add e2fsprogs to the
appended packages.
2022-09-30 15:21:36 +02:00
Ryan Tolboom
df485be2f7
gnu: Add qdmr.
...
* gnu/packages/radio.scm (qdmr): New variable.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-30 12:54:00 +02:00
jgart via Guix-patches via
bcf7dc6c56
gnu: Add emacs-new-purescript-mode.
...
* gnu/packages/emacs-xyz.scm (emacs-new-purescript-mode): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-30 09:00:45 +02:00
Nicolas Goaziou
16df0649bd
gnu: emacs-tuareg: Update to 3.0.1.
...
* gnu/packages/ocaml.scm (emacs-tuareg): Update to 3.0.1.
2022-09-30 09:00:45 +02:00
Nicolas Goaziou
77a075e9ae
gnu: emacs-ement: Update to 0.3.
...
* gnu/packages/emacs-xyz.scm (emacs-ement): Update to 0.3.
2022-09-30 09:00:44 +02:00
Nicolas Goaziou
b5b5f5fff3
gnu: emacs-tramp: Update to 2.5.3.3.
...
* gnu/packages/emacs-xyz.scm (emacs-tramp): Update to 2.5.3.3.
2022-09-30 09:00:44 +02:00
Nicolas Goaziou
c3020f3d37
gnu: emacs-taxy-magit-section: Update to 0.11.
...
* gnu/packages/emacs-xyz.scm (emacs-taxy-magit-section): Update to 0.11.
2022-09-30 09:00:44 +02:00
Nicolas Goaziou
a233b9e89f
gnu: emacs-helm: Update to 3.8.8.
...
* gnu/packages/emacs-xyz.scm (emacs-helm): Update to 3.8.8.
2022-09-30 09:00:44 +02:00
Nicolas Goaziou
575da30495
gnu: emacs-pg: Update to 0.16.
...
* gnu/packages/emacs-xyz.scm (emacs-pg): Update to 0.16.
[source]<origin>: Change upstream repository, the older one being
unmaintained.
[home-page]: Update accordingly.
[description]: Expound it.
[license]: Set to GPL2+.
2022-09-30 09:00:43 +02:00
Hilton Chain
a70c67cfe7
gnu: Add qtwayland, version 6.3.1.
...
* gnu/packages/qt.scm (qtwayland): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-29 23:19:55 -04:00
Hilton Chain
034f68bac3
gnu: qtwayland: Rename to qtwayland-5.
...
Automated via:
git grep -l qtwayland | xargs sed 's/\qtwayland\b/\0-5/g' -i
git checkout NEWS
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-29 23:19:55 -04:00
Ricardo Wurmus
1ee2d117d8
gnu: blast+: Build reproducibly.
...
Fixes <https://issues.guix.gnu.org/42141 >.
* gnu/packages/bioinformatics.scm (blast+)[source]: Do not record kernel
version and use fix set of random numbers.
2022-09-29 23:21:16 +02:00
Jesse Gibbons
4244f5e9a7
news: Add entry for '--with-source'.
...
* etc/news.scm: Add entry.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-09-29 23:10:25 +02:00
Ludovic Courtès
28ade1bab2
transformations: '--with-source' now operates in depth.
...
The '--with-source' option is the first one that was implemented, and
it's the only one that would operate only on leaf packages rather than
traversing the dependency graph. This change makes it consistent with
the rest of the transformation options.
* guix/transformations.scm (evaluate-source-replacement-specs): New
procedure.
(transform-package-source): Rewrite using it.
* tests/transformations.scm ("options->transformation, with-source, no
matches"): Rewrite since we no longer get a warning.
("options->transformation, with-source, in depth"): New test.
* doc/guix.texi (Package Transformation Options): Adjust examples.
2022-09-29 22:59:49 +02:00
Mája Tomášek
1bf18818c6
services: certbot: Create "live" directory during activation.
...
When trying to run certbot, the mcron command fails, as
/etc/letsencrypt/live is missing. This patch adds it into the certbot
activation service.
* gnu/services/certbot.scm (certbot-activation): Make /etc/letsencrypt/live.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-29 22:59:48 +02:00
zamfofex
6943f22ee6
gnu: Add lite-xl.
...
* gnu/packages/text-editors.scm (lite-xl): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-29 22:59:48 +02:00
itd
8b2119a5e4
import: print: Quasiquote properties
...
* guix/import/print.scm (package->code): Quasiquote properties.
* tests/print.scm (pkg-with-properties, pkg-with-properties-source):
New variables.
("package with properties"): New test
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-29 22:59:48 +02:00
itd
61bd7bf469
import/utils: alist->package: Include properties.
...
* guix/import/utils.scm (alist->package): Process properties field in input
data and include it in the generated package.
* tests/import-utils.scm ("alist->package with properties"): New test.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-29 22:59:48 +02:00
Ludovic Courtès
168a7933c0
services: shepherd: Leave the finalization thread in peace.
...
This gets rid of that (in)famous at boot time:
error in finalization thread: Success
This was caused by the file-descriptor closing loop, which would clause
the finalization pipe, leading the finalization thread to (erroneously)
error out.
Thanks to Josselin Poiret for locating the problem!
* gnu/services/shepherd.scm (shepherd-boot-gexp): In 'loop', replace
'close-fdes' with a pair of 'fcntl' calls to add FD_CLOEXEC.
2022-09-29 22:56:56 +02:00
Marius Bakke
e0546a11f0
gnu: IceCat, Icedove: Use the default 'rust'.
...
* gnu/packages/gnuzilla.scm (rust-1.58-promise, rust-1.59-promise): Remove variables.
(icecat, icedove)[native-inputs]: Change from RUST-1.59-PROMISE to RUST.
2022-09-29 21:03:45 +02:00
jgart
e6777cfa5e
gnu: Add emacs-cov.
...
* gnu/packages/emacs-xyz.scm (emacs-cov): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-29 11:39:12 +02:00
jgart
c9f02fb44f
gnu: Add emacs-elquery.
...
* gnu/packages/emacs-xyz.scm (emacs-elquery): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-29 11:39:12 +02:00
Nicolas Goaziou
97a2f8e48e
gnu: emacs-popup: Update to 0.5.9.
...
* gnu/packages/emacs-xyz.scm (emacs-popup): Update to 0.5.9.
2022-09-29 11:39:11 +02:00
Nicolas Goaziou
38f2cbda71
gnu: emacs-async: Update to 1.9.7.
...
* gnu/packages/emacs-xyz.scm (emacs-async): Update to 1.9.7.
2022-09-29 11:39:11 +02:00
Marius Bakke
f66067febc
Merge branch 'master' into staging
2022-09-29 07:26:37 +02:00
Brice Waegeneire
45eac6cdf5
services: Add file system utilities to profile.
...
* gnu/services/base.scm (file-system-type->utilities)
(file-system-utilities): New procedures.
(file-system-service-type): Extend 'profile-service-type' with
'file-system-utilities'.
* gnu/system.scm (boot-file-system-service): New procedure.
(operating-system-default-essential-services): Use it.
(%base-packages): Remove 'e2fsprogs'.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-28 19:45:38 -04:00
Jonathan Brielmaier
bb762ac517
gnu: icecat: Remove leftovers from version 91.
...
* gnu/packages/gnuzilla.scm (all-mozilla-91-locales, %icecat-91-version,
icecat-91-source): Remove variables.
2022-09-28 23:50:36 +02:00
Jonathan Brielmaier
16447da515
gnu: icedove: Update to 102.3.0.
...
* gnu/packages/gnuzilla.scm (icedove): Update to 102.3.0.
[source]: Use icecat-source again.
[arguments]: Remove `--frozen` flag from cargo invokation.
Remove `--with-user-appdir` flag (no longer honoured since TB91). Disable
WASM sandbox for now (needs more dependencies).
[inputs]: Add alsa-lib. Use icu4c-71.
[native-inputs]: Update hg-reference link. Use rust@1.59 and
rust-cbindgen@0.23 .
2022-09-28 23:50:36 +02:00
Trevor Richards
0e36779986
gnu: Add gnome-shell-extension-unite-shell.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-unite-shell): New
variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-28 23:20:45 +02:00
Wiktor Żelazny
48c938fbc7
gnu: Add texlive-babel-czech.
...
* gnu/packages/tex.scm (texlive-babel-czech): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-28 23:15:29 +02:00
Ludovic Courtès
f63adbf6f9
doc: Tweak wsdd wording.
...
* doc/guix.texi (Samba Services)[Web Service Discovery Daemon]: Tweak
wording.
2022-09-28 22:58:10 +02:00
Ludovic Courtès
67cf25e6cd
doc: Fix syntax for 'wsdd-configuration'.
...
* doc/guix.texi (Samba Services): Fix syntax of 'wsdd-configuration'
data type definition.
2022-09-28 22:53:35 +02:00
Andreas Rammhold
f33733785a
gnu: wpa-supplicant: Enable OWE support.
...
With OWE support users are enable to connect to "Opportunistic Wireless
Encryption" networks. This means users are able to have an encrypted
data channel in an otherwise open wireless network.
* gnu/packages/admin.scm (wpa-supplicant)[arguments]: Rename
'configure-for-dbus' phase to 'set-config-options'. Set CONFIG_OWE=y.
Remove trailing #t.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-09-28 22:41:49 +02:00
Ludovic Courtès
8bd4126917
substitute: Retry downloading when a nar is unavailable.
...
Fixes <https://issues.guix.gnu.org/57978 >
Reported by Attila Lendvai <attila@lendvai.name >.
Previously, if a narinfo was available but its corresponding nar was
missing (for instance because the narinfo was cached and the server
became unreachable in the meantime), 'guix substitute --substitute'
would try to download the nar from its preferred location and abort when
that fails. This change forces one retry with each of the URLs.
* guix/scripts/substitute.scm (download-nar): Do not catch
'http-get-error?' exceptions.
(system-error?, network-error?, process-substitution/fallback): New
procedures.
(process-substitution): Call 'process-substitution/fallback' upon
'network-error?'.
* tests/substitute.scm ("substitute, first URL has narinfo but lacks nar, second URL unauthorized")
("substitute, first URL has narinfo but nar is 404, both URLs authorized")
("substitute, first URL has narinfo but nar is 404, one URL authorized")
("substitute, narinfo is available but nar is missing"): New tests.
2022-09-28 22:28:27 +02:00
Ludovic Courtès
f75592533e
substitute: Split nar download.
...
* guix/scripts/substitute.scm (download-nar): New procedure, with most
of the code moved from...
(process-substitution): ... here. Call it.
2022-09-28 22:28:24 +02:00
Ricardo Wurmus
afcc6d636f
import/cran: Process more complex license strings.
...
* guix/import/cran.scm (string->license): Add more match clauses.
(string->licenses): Split license conjunctions at "|" and apply
string->license on each license.
(description->package): Use string->licenses.
2022-09-28 22:10:33 +02:00
Ricardo Wurmus
19ea75aa4f
import/cran: Use beautify-synopsis.
...
* guix/import/cran.scm (description->package): Use beautify-synopsis.
2022-09-28 22:10:33 +02:00
Ricardo Wurmus
7ea6e9f79f
import/utils: Add beautify-synopsis.
...
* guix/import/utils.scm (beautify-synopsis): New procedure.
2022-09-28 22:10:33 +02:00
Ricardo Wurmus
e761ed7384
import/cran: Transform external package names to Guix names.
...
* guix/import/cran.scm (transform-sysname): New procedure.
(description->package): Use it on inputs that are derived from "sysdepends".
2022-09-28 22:10:33 +02:00
Ricardo Wurmus
9d86052c22
import/cran: Add more strings to invalid-packages.
...
* guix/import/cran.scm (invalid-packages): Add none, windows, and xcode.
2022-09-28 22:10:33 +02:00
Ricardo Wurmus
352e02a768
gnu: Add r-ggghost.
...
* gnu/packages/cran.scm (r-ggghost): New variable.
2022-09-28 22:10:33 +02:00
Ricardo Wurmus
190c48c6ba
gnu: Add r-animation.
...
* gnu/packages/cran.scm (r-animation): New variable.
2022-09-28 22:10:33 +02:00
Ricardo Wurmus
2995865758
gnu: Add js-scianimator.
...
* gnu/packages/javascript.scm (js-scianimator): New variable.
2022-09-28 22:10:33 +02:00
Ricardo Wurmus
1e7696a95b
gnu: Add r-ggthemeassist.
...
* gnu/packages/cran.scm (r-ggthemeassist): New variable.
2022-09-28 22:10:33 +02:00
Ricardo Wurmus
211031ca0d
gnu: Add r-bundesligr.
...
* gnu/packages/cran.scm (r-bundesligr): New variable.
2022-09-28 22:10:33 +02:00
Ricardo Wurmus
c592eb6980
gnu: Add r-pbdmpi.
...
* gnu/packages/cran.scm (r-pbdmpi): New variable.
2022-09-28 22:10:33 +02:00
Ricardo Wurmus
d1f1947a46
gnu: Add r-rlecuyer.
...
* gnu/packages/cran.scm (r-rlecuyer): New variable.
2022-09-28 22:10:33 +02:00
Brice Waegeneire
f4442721eb
gnu: Add acpilight.
...
* gnu/packages/linux.scm (acpilight): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-28 15:55:28 -04:00
Liliana Marie Prikler
86d91c4411
gnu: evolution: Add missing input.
...
In commit e4bf10ab0b , libnotify was removed
(and the removal documented). This led to desktop notifications no longer
popping up for received emails. Re-adding libnotify fixes this.
* gnu/packages/gnome.scm (evolution)[inputs]: Add libnotify.
2022-09-28 21:28:57 +02:00
Petr Hodina
3fb7add10f
gnu: Add btop.
...
* gnu/packages/admin.scm (btop): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-28 15:15:15 -04:00
jgart
7d27a5322c
gnu: Add elm-community-random-extra.
...
* gnu/packages/elm.scm (elm-community-random-extra): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-28 15:15:15 -04:00
Marius Bakke
a065c6e0fd
gnu: ungoogled-chromium: Update to 106.0.5249.61-1.
...
* gnu/packages/chromium.scm (%preserved-third-party-files): Adjust for M106.
(%chromium-version): Set to 106.0.5249.61.
(%arch-revision): New variable.
(%ungoogled-origin): Update hash.
(%chromium-gcc-patchset): Update to chromium-106-patchset-3.
(%gcc-patches): Adjust accordingly.
(arch-patch): New procedure.
(%ungoogled-chromium-unroll-ffmpeg.patch): Remove variable.
(%reverse-patches): New variable.
(ungoogled-chromium-snippet): Apply %REVERSE-PATCHES instead of just the one.
(ungoogled-chromium): Update hash.
[arguments]: Adjust compiler flags and header inclusions.
2022-09-28 21:04:23 +02:00
Liliana Marie Prikler
eca27032d9
gnu: expat: Update replacement to 2.4.9 [fixes CVE-2022-40674].
...
* gnu/packages/xml.scm (expat/fixed): Update to 2.4.9.
2022-09-28 20:56:04 +02:00
Liliana Marie Prikler
c67d462c53
gnu: gnome: Sort propagated inputs alphabetically within categories.
...
* gnu/packages/gnome.scm (gnome)[propagated-inputs]: Sort alphabetically
within categories.
2022-09-28 20:28:28 +02:00
Hilton Chain
c59653b19e
gnu: telegram: Remove unused variables.
...
* gnu/packages/telegram.scm (lib-rlottie-for-telegram-desktop)
(lib-waylandshells-for-telegram-desktop,libtgvoip-for-telegram-desktop):
Remove variables.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-28 20:22:38 +02:00
Hilton Chain
b906aa6a7c
gnu: telegram-desktop: Sort inputs alphabetically.
...
* gnu/packages/telegram.scm (telegram-desktop)[inputs]: Sort inputs
alphabetically.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-28 20:22:38 +02:00
Hilton Chain
08abd3e56b
gnu: telegram-desktop: Update to 4.2.2.
...
* gnu/packages/patches/telegram-desktop-allow-disable-libtgvoip.patch: New
file.
* gnu/local.mk (dist_patch_DATA): Add patch.
* gnu/packages/telegram.scm (tgcalls-for-telegram-desktop)
(codegen-for-telegram-desktop,lib-base-for-telegram-desktop)
(lib-crl-for-telegram-desktop,lib-lottie-for-telegram-desktop)
(lib-qr-for-telegram-desktop,lib-rpl-for-telegram-desktop)
(lib-spellcheck-for-telegram-desktop,lib-storage-for-telegram-desktop)
(lib-tl-for-telegram-desktop,lib-ui-for-telegram-desktop)
(lib-webrtc-for-telegram-desktop,lib-webview-for-telegram-desktop)
(cmake-helpers-for-telegram-desktop): Bump to submodule checkout.
(rlottie-for-telegram-desktop): Bump to submodule checkout.
[snippet]: Switch off werror.
[arguments]: Inherit from rlottie.
(telegram-desktop): Update to 4.2.2.
[patches]: Add telegram-desktop-allow-disable-libtgvoip.patch.
[arguments]<#:configure-flags>: Unbundle rlottie.
<#:phases>: Adjusted accordingly.
[native-inputs]: Add clang-toolchain.
Remove cmake-shared, extra-cmake-modules and qttools-5.
[inputs]: Add abseil-cpp-cxxstd17, kcoreaddons, libdispatch, libvpx, wayland,
webkitgtk.
Remove catch2, kwayland, libdbusmenu-qt, libtgvoip-for-telegram-desktop,
libx11, materialdecoration and qt5ct.
[propagated-inputs]: Remove dconf.
[license]: Adjust accordingly.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-28 20:22:38 +02:00
Hilton Chain
c59d3d67fd
gnu: Add libdispatch.
...
* gnu/packages/c.scm (libdispatch): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-28 20:22:38 +02:00
Hilton Chain
c9bd729dd1
gnu: Remove libvpx-for-telegram-desktop.
...
* gnu/packages/telegram.scm (libvpx-for-telegram-desktop): Remove variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-28 20:22:38 +02:00
Hilton Chain
4531a6c3df
gnu: webrtc-for-telegram-desktop: Sort inputs alphabetically.
...
* gnu/packages/telegram.scm (webrtc-for-telegram-desktop)[inputs]: Sort
inputs alphabetically.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-28 20:22:38 +02:00
Hilton Chain
adc3b7d31d
gnu: webrtc-for-telegram-desktop: Update to 621f3da5.
...
* gnu/packages/patches/webrtc-for-telegram-desktop-fix-gcc12-cstdint.patch:
New file.
* gnu/local.mk (dist_patch_DATA): Register it here.
* gnu/packages/telegram.scm (webrtc-for-telegram-desktop): Update to 621f3da5.
[patches]: Add webrtc-for-telegram-desktop-fix-gcc12-cstdint.patch.
[snippet]: Unbundle libvpx and openh264.
[native-inputs]: Remove perl.
[inputs]: Replace pipewire with pipewire-0.3.
Add abseil-cpp-cxxstd17, libdrm, libglvnd, libvpx, libxfixes, mesa, openh264.
Remove alsa-lib, libx11 and pulseaudio.
[arguments]<#:phases>: Adjust accordingly.
[license]: Likewise.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-28 20:22:38 +02:00
Hilton Chain
dc07a4ce6c
gnu: Add crc32c.
...
* gnu/packages/cpp.scm (crc32c): New variable.
* gnu/packages/patches/crc32c-unbundle-googletest.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it here.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-28 20:22:38 +02:00
Hilton Chain
7bcfdebc55
gnu: Add abseil-cpp-cxxstd17.
...
* gnu/packages/cpp.scm (abseil-cpp-cxxstd17): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-28 20:22:38 +02:00
Hilton Chain
b23985dc80
gnu: kcoreaddons: Update to 5.98.0.
...
* gnu/packages/kde-frameworks.scm (kcoreaddons): Update to 5.98.0.
[arguments]<#:phases>: Update blocklist for failing tests.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-28 20:22:37 +02:00
Hilton Chain
98e2629165
gnu: kcoreaddons: Remove trailing #t.
...
* gnu/packages/kde-frameworks.scm (kcoreaddons)[arguments]<#:phases>: Remove
trailing #t.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-28 20:22:37 +02:00
Hilton Chain
d0975b4e7e
gnu: extra-cmake-modules: Update to 5.98.0.
...
* gnu/packages/kde-frameworks.scm (extra-cmake-modules): Update to 5.98.0.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-28 20:22:37 +02:00
Sughosha
2adb33279a
gnu: zplugins: Update to 0.2.4
...
* gnu/packages/music (zplugins): Update to 0.2.4
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-28 13:01:25 -04:00
Maxim Cournoyer
12b55f1b32
gnu: gnome: Remove input labels.
...
* gnu/packages/gnome.scm (gnome)[propagated-inputs]: Remove labels.
2022-09-28 12:59:06 -04:00
Sughosha
103d8229cb
gnu: gnome: Update propagated dependencies.
...
* gnu/packages/gnome.scm (gnome)
[propgated-inputs]: Remove gnome-terminal and gedit. And add
gnome-console and gnome-text-editor.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-28 12:48:40 -04:00
Maxim Cournoyer
b43ed95028
doc: Mention where one can learn more about the samba config file syntax.
...
* doc/guix.texi (Samba Services): Refer users to "man smb.conf" to learn more
about the Samba config file format.
2022-09-28 09:57:31 -04:00
Maxim Cournoyer
f2d071c832
doc: Add a simple Samba share example.
...
* doc/guix.texi (Samba Services): Add a configuration example.
2022-09-28 09:57:31 -04:00
Maxim Cournoyer
13ed651870
doc: Clarify Samba Services configuration.
...
* doc/guix.texi (Samba Services): Explicit the fact that no daemons are
automatically run. Remove the word "Manually", that suggested otherwise.
2022-09-28 09:57:30 -04:00
Maxim Cournoyer
2703b16005
services: samba: Remove unused variables and modules.
...
* gnu/services/samba.scm (%smb-conf): Delete unused variable.
2022-09-28 09:57:30 -04:00
Efraim Flashner
5723c511c2
gnu: ffmpeg-5: Update to 5.1.2.
...
* gnu/packages/video.scm (ffmpeg-5): Update to 5.1.2.
2022-09-28 15:45:49 +03:00
Efraim Flashner
0b59e22c16
gnu: parallel: Update to 20220922.
...
* gnu/packages/parallel.scm (parallel): Update to 20220922.
2022-09-28 15:45:49 +03:00
Efraim Flashner
9bd8e14550
gnu: git-annex: Update to 10.20220927.
...
* gnu/packages/haskell-apps.scm (git-annex): Update to 10.20220927.
[inputs]: Add ghc-clientsession, ghc-wai, ghc-wai-extra, ghc-warp,
ghc-warp-tls, ghc-yesod, ghc-yesod-core, ghc-yesod-form, and
ghc-yesod-static.
2022-09-28 15:45:48 +03:00
Efraim Flashner
c249927ebb
gnu: vim: Update to 9.0.0594.
...
* gnu/packages/vim.scm (vim): Update to 9.0.0594.
[arguments]: Adjust custom 'patch-absolute-paths phase to add another
file to patch.
2022-09-28 14:53:03 +03:00
Efraim Flashner
f0136c8805
Revert "gnu: Add rust-number-prefix-0.4."
...
This reverts commit 3ff582b82b .
This package was already included in Guix.
2022-09-28 13:55:15 +03:00
Efraim Flashner
1590d6d58e
gnu: exa: Only build with pandoc when supported.
...
* gnu/packages/rust-apps.scm (exa)[arguments]: Adjust custom
'build-manual phase to only build when pandoc is available. Adjust
custom 'install-extras to only install man pages when they are
available.
[native-inputs]: Only include pandoc on systems where it is supported.
2022-09-28 13:52:12 +03:00
Efraim Flashner
62f80d215e
gnu: exa: Don't install source.
...
* gnu/packages/rust-apps.scm (exa)[arguments]: Add flag to not install
the package source.
2022-09-28 13:52:12 +03:00
gyara
31889c7964
gnu: exa: Update to 0.10.1.
...
* gnu/packages/rust-apps.scm (exa): Update to 0.10.1.
[arguments]: Delete custom phase 'disable-failing-tests. Add custom
'build-manual phase. Remove trailing #t from phases.
[cargo-inputs]: Replace rust-datetime-0.4 with 0.5, rust-git2-0.9 with
0.13, rust-number-prefix-0.3 with 0.4, rust-users-0.9 with 0.11,
rust-zoneinfo-compiled-0.4 with 0.5.
[cargo-native-inputs]: Replace rust-datetime-0.4 with 0.5.
[native-inputs]: Add pandoc.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-09-28 13:52:11 +03:00
gyara
7d60052de8
gnu: Add rust-zoneinfo-compiled-0.5.
...
* gnu/packages/crates-io.scm (rust-zoneinfo-compiled-0.5): New variable.
(rust-zoneinfo-compiled-0.4): Inherit from rust-zoneinfo-compiled-0.5.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-09-28 13:52:11 +03:00
gyara
b3157f6ba4
gnu: Add rust-datetime-0.5.
...
* gnu/packages/crates-io.scm (rust-datetime-0.5): New variable.
(rust-datetime-0.4): Inherit from rust-datetime-0.5.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-09-28 13:52:11 +03:00
gyara
e9352c6475
gnu: Add rust-iso8601-0.3.
...
* gnu/packages/crates-io.scm (rust-iso8601-0.3): New variable.
(rust-iso8601-0.1): Inherit from rust-iso8601-0.3.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-09-28 13:52:11 +03:00
gyara
3ff582b82b
gnu: Add rust-number-prefix-0.4.
...
* gnu/packages/crates-io.scm (rust-number-prefix-0.4): New variable.
(rust-number-prefix-0.3): Inherit from rust-number-prefix-0.4.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-09-28 13:52:10 +03:00
Guillaume Le Vaillant
a8ff78eaf5
gnu: Add qspectrumanalyzer.
...
* gnu/packages/radio.scm (qspectrumanalyzer): New variable.
2022-09-28 11:31:49 +02:00
Guillaume Le Vaillant
a9c4040710
gnu: Add python-qt.py.
...
* gnu/packages/qt.scm (python-qt.py): New variable.
2022-09-28 11:31:49 +02:00
Guillaume Le Vaillant
6545438ccc
gnu: Add soapy-power.
...
* gnu/packages/radio.scm (soapy-power): New variable.
2022-09-28 11:31:49 +02:00
Guillaume Le Vaillant
05c13b3149
gnu: Add python-simplespectral.
...
* gnu/packages/python-science.scm (python-simplespectral): New variable.
2022-09-28 11:31:49 +02:00
Guillaume Le Vaillant
6262801bb2
gnu: Add python-simplesoapy.
...
* gnu/packages/radio.scm (python-simplesoapy): New variable.
2022-09-28 11:31:39 +02:00
Mathieu Othacehe
70a593242e
Update NEWS.
...
* NEWS: Add new services for the 1.4.0.
2022-09-28 09:06:10 +02:00
zimoun
ea49070a36
teams: Add Simon Tournier.
...
* etc/teams.scm.in: Add Simon Tournier.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-28 09:03:22 +02:00
(
8710f01e04
etc: teams: Add (.
...
* etc/teams.scm.in: Add (.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-28 09:03:22 +02:00
(
fb9f51a81f
etc: teams: Add more scopes to teams.
...
* etc/teams.scm.in (r, julia, ruby, go, rust, kernel, translations,
home, mozilla, racket): Add scopes.
(emacs)[scope]: Add ``guix import elpa''-related files.
(installer)[scope]: Correct ``guix/installer'' to ``gnu/installer''.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-28 09:03:22 +02:00
Thiago Jung Bauermann
e122c7b834
news: Add 'pt' translation.
...
* etc/news.scm: Add Portuguese translation of entries about WSL system images
and about Guix System image API documentation.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-28 09:03:22 +02:00
kiasoc5
a5ae3d781b
gnu: swaylock-effects: Update to 1.6.10, use G-expressions.
...
* gnu/packages/wm.scm (swaylock-effects): Update to 1.6.10.
[source]: Switch from commit to release tag.
[arguments]: Use G-expressions.
[home-page]: Switch to maintained fork.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-09-28 10:36:59 +08:00
Hilton Chain
12fd8b5280
gnu: font-lxgw-wenkai: Update to 1.245.1.
...
* gnu/packages/fonts (font-lxgw-wenkai): Update to 1.245.1.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-09-28 10:06:31 +08:00
Hilton Chain
1b85131f63
gnu: font-lxgw-wenkai-tc: Update to 0.922.1.
...
* gnu/packages/fonts (font-lxgw-wenkai-tc): Update to 0.922.1.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-09-28 10:06:24 +08:00
宋文武
ec8c77b8ed
gnu: python-pyvips: Update to 2.2.1.
...
* gnu/packages/python-xyz.scm (python-pyvips): Update to 2.2.1.
2022-09-28 09:48:01 +08:00
Hendursaga
7b016d179c
gnu: vips: Update to 8.13.1.
...
* gnu/packages/image-processing.scm (vips): Update to 8.13.1.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-09-28 09:33:30 +08:00
Maxim Cournoyer
5dc5d6fa81
Merge branch 'master' into staging
2022-09-27 15:50:11 -04:00
Maxim Cournoyer
16f535713e
Re-instate "gnu: samba: Fix corrupted man pages."
...
This reverts commit 968ec0a87 , which was itself a revert of 62048ff9fc .
2022-09-27 15:45:29 -04:00
Maxim Cournoyer
2e5d79aca2
gnu: samba/fixed: Do not inherit native-inputs.
...
* gnu/packages/samba.scm (samba/fixed): Add a FIXME comment.
[native-inputs]: Copy the complete native inputs from samba, to protect against
unintended changes in the inherited package.
2022-09-27 15:45:21 -04:00
Maxim Cournoyer
968ec0a870
Revert "gnu: samba: Fix corrupted man pages."
...
This reverts commit 62048ff9fc . This caused a
half world rebuild (9K packages).
2022-09-27 15:38:10 -04:00
Maxim Cournoyer
3c6e220d81
Merge branch 'master' into staging.
...
With resolved conflicts in:
gnu/local.mk
gnu/packages/crates-io.scm
2022-09-27 14:27:28 -04:00
Maxim Cournoyer
62048ff9fc
gnu: samba: Fix corrupted man pages.
...
* gnu/packages/samba.scm (samba) [native-inputs]: Replace docbook-xsl with
docbook-xsl-next.
2022-09-27 14:09:50 -04:00
Maxim Cournoyer
0ab4996b3e
gnu: Add docbook-xsl-next.
...
* gnu/packages/docbook.scm (docbook-xsl-next): New variable.
2022-09-27 14:09:49 -04:00
Nicolas Goaziou
459e0f9bea
gnu: emacs-plz: Update to 0.2.1.
...
* gnu/packages/emacs-xyz.scm (emacs-plz): Update to 0.2.1.
2022-09-27 19:29:29 +02:00
Nicolas Goaziou
8b4e7892f5
gnu: emacs-tuareg: Improve package style.
...
* gnu/packages/ocaml.scm (emacs-tuareg)[arguments]<#:imported-modules,
<#:phases>: Use G-expressions. Remove trailing #T at the end of phases. Use
ELPA-DIRECTORY function.
[native-inputs]: Remove input labels.
2022-09-27 19:29:29 +02:00
Nicolas Goaziou
32135b0357
gnu: emacs-tuareg: Update to 3.0.0.
...
* gnu/packages/ocaml.scm (emacs-tuareg): Update to 3.0.0.
2022-09-27 19:29:29 +02:00
Nicolas Goaziou
6e4f9e2929
gnu: emacs-pyim: Update to 5.2.5.
...
* gnu/packages/emacs-xyz.scm (emacs-pyim): Update to 5.2.5.
2022-09-27 19:29:29 +02:00
Maxim Cournoyer
052c1b0643
gnu: colord: Update to 1.4.6.
...
* gnu/packages/gnome.scm (colord): Update to 1.4.6.
[source]: Override inherited field.
[configure-flags]: Use gexps.
[phases]: Likewise.
[native-inputs]: Remove labels.
2022-09-27 10:05:55 -04:00
Maxim Cournoyer
1fe766fbe7
gnu: docbook-xsl-ns: Rename to docbook-xsl-1.79.1 and use gexps.
...
* gnu/packages/docbook.scm (docbook-xsl-ns): Rename to...
(docbook-xsl-1.79.1): ... this.
[source]: Adjust URL and add a comment.
[arguments]: Use gexps and adjust phases accordingly.
* gnu/packages/gnome.scm (colord)[native-inputs]: Replace docbook-xsl-ns with
docbook-xsl-1.79.1.
2022-09-27 10:05:54 -04:00
Maxim Cournoyer
fb6173b7c0
gnu: openjdk: Update to 18.
...
* gnu/packages/java.scm (openjdk): Update to 18.
(openjdk18): New variable.
2022-09-27 10:05:54 -04:00
Maxim Cournoyer
b2aa42435b
gnu: openjdk17: Define with make-openjdk.
...
* gnu/packages/java.scm (openjdk17): Define with make-openjdk.
[phases]: Use gexps.
2022-09-27 10:05:54 -04:00
Maxim Cournoyer
c5fb7bb7f7
gnu: openjdk16: Define with make-openjdk.
...
* gnu/packages/java.scm (openjdk16): Define with make-openjdk.
2022-09-27 10:05:54 -04:00
Maxim Cournoyer
216a7d8197
gnu: openjdk15: Define with make-openjdk.
...
* gnu/packages/java.scm (openjdk15): Define with make-openjdk.
[source]: Clear snippet and modules fields.
[native-inputs]: Rewrite using modify-inputs.
2022-09-27 10:05:54 -04:00
Maxim Cournoyer
068dfa33de
gnu: openjdk14: Define with make-openjdk.
...
* gnu/packages/java.scm (openjdk14): Define with make-openjdk.
[source]: Remove trailing #t from snippet field and improve regexp.
2022-09-27 10:05:53 -04:00
Maxim Cournoyer
26dd4ce571
gnu: openjdk13: Define with make-openjdk.
...
* gnu/packages/java.scm (openjdk13): Define with make-openjdk.
2022-09-27 10:05:53 -04:00
Maxim Cournoyer
f0280f6245
gnu: openjdk12: Introduce 'make-openjdk' syntax and use it.
...
* gnu/packages/java.scm (make-openjdk): New syntax.
(openjdk12): Use it to define package.
[source]: Remove trailing #t from snippet field and improve regexp.
[phases]: Use gexps.
2022-09-27 10:05:53 -04:00
Maxim Cournoyer
6bf7467b07
gnu: opendjk11: Reduce size by removing extraneous files.
...
By removing the *.diz and src.zip files, the size of the main output of
OpenJDK 11 is reduced from 345 MiB to 116 MiB for OpenJDK 11, while the 'jdk'
output is reduced from 805 MiB to 353 MiB.
* gnu/packages/java.scm (openjdk11)[modules]: New field.
[phases]{remove-diz-files}: New phase.
{strip-character-data-timestamps}: Order after remove-diz-files.
2022-09-27 10:05:53 -04:00
Maxim Cournoyer
6193d98717
gnu: opendjk11: Improve regular expressions.
...
* gnu/packages/java.scm (openjdk11)
[phases]{strip-archive-timestamps}: Replace '.*.' with '\\.' in regexps.
2022-09-27 10:05:53 -04:00
Maxim Cournoyer
7ac7a6d103
gnu: opendjk11: Remove input labels.
...
* gnu/packages/java.scm (openjdk11)[inputs, native-inputs]: Remove labels.
2022-09-27 10:05:52 -04:00
Maxim Cournoyer
e33ab2dd9e
gnu: opendjk11: Remove trailing #t and use gexps.
...
* gnu/packages/java.scm (openjdk11): Properly punctuate comments.
[source]: Remove trailing #t in snippet.
[configure-flags]: Use gexps and this-package-input.
[phases]: Delete trailing #t and use gexps to refer to outputs.
2022-09-27 10:05:52 -04:00
Tobias Geerinckx-Rice
79b8e52e64
Revert "gnu: source-highlight: Fix lesspipe file name and use gexps."
...
This reverts commit 74f07348e9 .
It is a core-updates change.
2022-09-25 02:00:11 +02:00
kiasoc5
74f07348e9
gnu: source-highlight: Fix lesspipe file name and use gexps.
...
This fixes src-hilite-lesspipe.sh so that lesspipe.sh is called instead of lesspipe.
* gnu/packages/pretty-print.scm (source-highlight):
[arguments]: Use gexps, remove trailing #ts.
[phases]: Add phase to make src-highlight-lesspipe.sh work.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 11:08:55 +02:00
kiasoc5
2e20eb7818
gnu: gnome-shell-extension-clipboard-indicator: Update to 42.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-clipboard-indicator): Update to 42.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 11:05:06 +02:00
Hilton Chain
ed5e90db01
gnu: font-lxgw-wenkai-tc: Update to 0.922.
...
* gnu/packages/fonts.scm (font-lxgw-wenkai-tc): Update to 0.922.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 11:04:30 +02:00
Hilton Chain
174fa34054
gnu: font-lxgw-wenkai: Update to 1.245.
...
* gnu/packages/fonts.scm (font-lxgw-wenkai): Update to 1.245
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 11:04:30 +02:00
Hilton Chain
5725e0d9c9
gnu: font-chiron-hei-hk: Update to 2.504.
...
* gnu/packages/fonts.scm (font-chiron-hei-hk): Update to 2.504.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 11:04:30 +02:00
Hilton Chain
c99f488269
gnu: font-chiron-sung-hk: Update to 1.006.
...
* gnu/packages/fonts.scm (font-chiron-sung-hk): Update to 1.006.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 11:04:30 +02:00
Hilton Chain
351498ee45
gnu: podman: Update to 4.2.1.
...
* gnu/packages/containers.scm (podman): Update to 4.2.1.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 11:04:30 +02:00
Denis 'GNUtoo' Carikli
66edcdda1c
gnu: matterbridge: Update to 1.25.2.
...
* gnu/packages/messaging.scm (matterbridge): Update it.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 11:04:28 +02:00
kiasoc5
82ab5f3965
gnu: vim-nerdcommenter: Update to 2.6.0, use G-expressions.
...
* gnu/packages/vim.scm (vim-nerdcommenter): Update to 2.6.0.
[source]: Use release tag.
[arguments]: Use G-expressions.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 10:57:21 +02:00
kiasoc5
c3d2b20b1b
gnu: blueman: Update to 2.3.2.
...
* gnu/packages/networking.scm (blueman): Update to 2.3.2.
[native-inputs]: Remove input labels.
[inputs]: Likewise.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 10:53:44 +02:00
Josselin Poiret
cffc24e0de
gnu: pipewire-0.3: Add man pages.
...
* gnu/packages/linux.scm (pipewire-0.3): Add man pages generation.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 10:51:37 +02:00
pukkamustard
f5ffaacd55
teams: Add pukkamustard.
...
* etc/teams.scm.in: Add pukkamustard.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 08:42:51 +02:00
Josselin Poiret
b4de11b5dc
teams: Add Josselin Poiret.
...
* etc/teams.scm.in: Add Josselin Poiret.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-27 08:40:48 +02:00
Hilton Chain
f15a141cf3
file-systems: Add cgroup2 to %pseudo-file-system-types.
...
* gnu/system/file-systems.scm (%pseudo-file-system-types): Add cgroup2.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:38 +02:00
Lu Hui
e5fc55493d
gnu: busybox: Fix cross-compilation.
...
* gnu/packages/busybox.scm (busybox)[arguments]: Switch to gexps.
Honor #:tests? in 'check' phase. Add #:make-flags.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:38 +02:00
Simen Endsjø
75e7c09461
services: nginx: Don't emit empty fields
...
An empty root or index field is an error in nginx.
* gnu/services/web.scm (emit-nginx-server-config): Don't emit root or
index fields when they are empty
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:38 +02:00
jgart
172207924e
debug-link: Clarify what CRC is.
...
* guix/build/debug-link.scm: Clarify "CRC"; update bug URL.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:37 +02:00
Jacob Hrbek
ddb2b632fa
gnu: gnome-boxes: Patch 'qemu-img' file name.
...
* gnu/packages/gnome.scm (gnome-boxes)[arguments]: Add
'set-qemu-file-name' phase.
[inputs]: Add QEMU-MINIMAL.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:37 +02:00
Wiktor Żelazny
4d9c9b4981
gnu: Add texlive-babel-polish.
...
* gnu/packages/tex.scm (texlive-babel-polish): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:37 +02:00
Denis 'GNUtoo' Carikli
22c6d4dc14
gnu: Add ec.
...
* gnu/packages/linux.scm (ec): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:37 +02:00
Maxime Devos
5c37ad812b
gnu-maintenance: Test latest-html-release.
...
* tests/gnu-maintenance.scm ("latest-html-release, no signature")
("latest-html-release, signature): New tests.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:37 +02:00
Maxime Devos
55d4200002
gnu-maintenance: Remove unused procedures.
...
* guix/gnu-maintenance.scm (url-prefix-rewrite, adjusted-upstream-source):
Remove.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:37 +02:00
Maxime Devos
d9b8169a9f
gnu-maintenance: Simplify latest-kernel.org-release.
...
As latest-html-release now produces mirror:// URIs where possible,
the additional post-processing is not necessary anymore.
As a test, revert the dtc package back to 1.6.0 and try updating 'gash',
the mirror:// URI remains.
* gnu-maintenance.scm (latest-kernel.org-release): Do not call
adjusted-upstream-source on the result.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:37 +02:00
Maxime Devos
60474b5291
download: Add a kernel.org mirror.
...
Add the mirror from (guix gnu-maintenance) to make the simplified
linux.org updater (of a later commit) work.
* download.scm (%mirrors)[kernel.org]: Add mirrors.edge.kernel.org mirror.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:36 +02:00
Maxime Devos
e96f380fd4
gnu-maintenance: Simplify latest-savannah-release.
...
As latest-html-release now produces mirror:// URIs where possible,
the additional post-processing is not necessary anymore.
As a test, try updating 'gash', the mirror:// URI remains.
* gnu-maintenance.scm (latest-savannah-release): Do not call
adjusted-upstream-source on the result.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:36 +02:00
Maxime Devos
6c16de72de
download: Switch savannah mirrors to HTTPS URLs.
...
The URI scheme used for nongnu.freemirror.org needs to be consistent
between (guix download) and (guix gnu-maintenance) to make the simplified
savannah-updater (of a later commit) work. While we're at it, switch the
other mirrors to https as well.
http://download.savannah.gnu.org/releases-noredirect/ is left unmodified
because it 404s
* download.scm (%mirrors)[savannah]: Switch from http to https where possible.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:36 +02:00
Maxime Devos
11ec14ff0e
gnu-maintenance: Produce mirror:// URIs in latest-html-release.
...
Partially fixes <https://issues.guix.gnu.org/57477 >.
I'm not aware of a package using both latest-html-release and mirrors, so it
has not been completely tested. However, updating "yt-dlp" appears to work
(except for git-fetch not being supported yet). The expression for the
signature-urls field had to be tweaked to not call uri-mirror-rewrite on #false.
* guix/gnu-maintenance.scm (latest-html-release)[url->research]{urls,signature-urls}:
Call uri-mirror-rewrite on the URLs.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:36 +02:00
Maxime Devos
d877dc098b
gnu-maintenance: Produce mirror:// URIs in latest-ftp-release.
...
Partially fixes <https://issues.guix.gnu.org/57477 >.
As a test, try updating gnupg. Before the patch, a ftp:// URL was produced,
now the mirror:// is preserved.
* guix/gnu-maintenance.scm (latest-ftp-release)[file->source]{urls,signature-urls}:
Call uri-mirror-rewrite on the URLs.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:36 +02:00
Maxime Devos
fc5c4ce4ec
lint: Extract logic of 'check-mirror-url'.
...
It will be useful for fixing <https://issues.guix.gnu.org/57477 >.
* guix/lint.scm (check-mirror-url): Extract mirror://-constructing code to ...
* guix/gnu-maintenance.scm (uri-mirror-rewrite): ... here, tweaking the API
and implementation in anticipation of future users.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:36 +02:00
Nicolas Graves
b6274a20e8
etc: Add tempel snippet move.
...
* etc/snippets/tempel/text-mode (move\): New entry.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-26 23:29:36 +02:00
Ludovic Courtès
1033645e9d
machine: ssh: Parameterize '%current-system' early on.
...
Fixes <https://issues.guix.gnu.org/58084 >.
Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com >.
Previously, "sanity checks" and other operations would happen in a
context where '%current-system' has its default value. Thus, running
'guix deploy' on x86_64-linux machine for an aarch64-linux one would
lead things like '%base-initrd-modules' to see "x86_64-linux" as the
'%current-system' value, in turn making the wrong choices.
* gnu/machine/ssh.scm (check-deployment-sanity)[assertions]: Wrap in
'parameterize'.
(deploy-managed-host): Likewise for the 'mlet' body.
2022-09-26 23:29:35 +02:00
Maxim Cournoyer
28a50eeac7
tests: telephony: Add missing import to fix jami tests.
...
* gnu/tests/telephony.scm (run-jami-test): Add a missing (ice-9 match) import
directive.
Co-authored-by: Olivier Dion <olivier.dion@polymtl.ca >
2022-09-26 15:52:35 -04:00
Nicolas Goaziou
b9cdff6d73
gnu: emacs-ement: Update to 0.2.1.
...
* gnu/packages/emacs-xyz.scm (emacs-ement): Update to 0.2.1.
2022-09-26 21:32:44 +02:00
Maxim Cournoyer
474d3ef643
gnu: qemu: Disable qtest-aarch64/migration-test test.
...
* gnu/packages/patches/qemu-disable-aarch64-migration-test.patch: Add patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/virtualization.scm (qemu): Apply it.
2022-09-26 12:06:57 -04:00
Eric Bavier
0ea2b72059
gnu: gnome-shell-extension-gsconnect: Update to 50.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-gsconnect): Update to
version 50. Update url references to new organization.
2022-09-26 11:00:54 -05:00
Guillaume Le Vaillant
351201aae9
gnu: libspatialite: Disable tests.
...
Several tests fail since the update of Proj to version 9, but the library
seems to be working as the test phases of dependents are passing.
* gnu/packages/geo.scm (libspatialite)[arguments]: Disable tests.
2022-09-26 17:35:31 +02:00
Ricardo Wurmus
c1716ab6ec
gnu: Add r-compgenomrdata.
...
* gnu/packages/bioinformatics.scm (r-compgenomrdata): New variable.
2022-09-26 17:21:57 +02:00
Olivier Dion
b4b7543443
gnu: Add libpatch.
...
* gnu/packages/instrumentation.scm (libpatch): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-26 15:35:37 +02:00
Artyom V. Poptsov
e5871de986
gnu: guile-ini: Update to 0.5.2.
...
* gnu/packages/guile-xyz.scm (guile-ini): Update to 0.5.2.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-26 15:35:37 +02:00
Florian Pelz
9e4164c6ff
news: Add another 'de' translation.
...
* etc/news.scm: Add German translation of images API entry.
2022-09-26 13:18:34 +02:00
Florian Pelz
5602eaeacb
news: Add 'de' translation.
...
* etc/news.scm: Add German translation of WSL images entry.
2022-09-26 13:14:49 +02:00
Guillaume Le Vaillant
bc072c9a57
etc: teams: Add description and scope for lisp team.
...
* etc/teams.scm.in (lisp): Add description and scope fields.
2022-09-26 11:10:24 +02:00
Mathieu Othacehe
4b551518d0
NEWS: Update it.
...
* NEWS: Add an entry about WSL images.
2022-09-26 09:47:10 +02:00
Leo Famulari
754ce586e0
gnu: linux-libre 5.10: Update to 5.10.145.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.145.
(linux-libre-5.10-pristine-source): Update hash.
2022-09-25 19:30:11 -04:00
Leo Famulari
7c76a0de80
gnu: linux-libre 5.15: Update to 5.15.70.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.70.
(linux-libre-5.15-pristine-source): Update hash.
2022-09-25 19:30:11 -04:00
Leo Famulari
4ed4b5c339
gnu: linux-libre: Update to 5.19.11.
...
* gnu/packages/linux.scm (linux-libre-5.19-version): Update to 5.19.11.
(linux-libre-5.19-pristine-source): Update hash.
2022-09-25 19:30:04 -04:00
Ricardo Wurmus
ab6931483b
gnu: Add python-vaex-core.
...
* gnu/packages/python-science.scm (python-vaex-core): New variable.
2022-09-25 21:24:34 +02:00
Ricardo Wurmus
5defad2b7c
gnu: Add pybind11-2.3.
...
* gnu/packages/python-xyz.scm (pybind11-2.3): New variable.
2022-09-25 21:24:34 +02:00
Ricardo Wurmus
eefc107aaf
gnu: Add python-blake3.
...
* gnu/packages/python-crypto.scm (python-blake3): New variable.
2022-09-25 21:24:30 +02:00
Nicolas Goaziou
31593237f6
gnu: emacs-orgmdb: Add missing input.
...
* gnu/packages/emacs-xyz.scm (emacs-orgmdb)[arguments]: Avoid propagating FD.
[inputs]: Add FD.
2022-09-25 21:09:18 +02:00
Liliana Marie Prikler
1f63c5709c
etc: teams: Give games a scope.
...
* etc/teams.scm.in (games)[#:name]: Change to “Games and Toys”.
[#:description, #:scope]: New fields.
2022-09-25 20:55:38 +02:00
Liliana Marie Prikler
2300e3148a
etc: teams: Add description and scope for emacs.
...
* etc/teams.scm.in (emacs): Add #:description and #:scope.
2022-09-25 20:21:36 +02:00
John Kehayias
8fc4c3c9ff
gnu: emacs-libgit: Fix build with native compilation.
...
* gnu/packages/emacs-xyz.scm (emacs-libgit)[#:phases]: Add
‘emacs-add-install-to-native-load-path’ after ‘unpack’.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-25 19:27:36 +02:00
John Kehayias
89c4273fbf
gnu: emacs-pdf-tools: Fix build with native compilation.
...
* gnu/packages/emacs-xyz.scm (emacs-pdf-tools)[#:phases]: Add
‘emacs-add-install-to-native-load-path’ between ‘emacs-expand-load-path’ and
‘emacs-install’.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-25 19:09:44 +02:00
Brian Kubisiak
2d141896ec
gnu: Add emacs-color-theme-solarized.
...
* gnu/packages/emacs-xyz (emacs-color-theme-solarized): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-25 15:41:44 +02:00
Nicolas Goaziou
cee9dc06ec
gnu: emacs-macrostep-geiser: Order inputs alphabetically.
...
* gnu/packages/emacs-xyz.scm (emacs-macrostep-geiser)[propagated-inputs]:
Order inputs alphabetically.
2022-09-25 15:20:45 +02:00
Nicolas Goaziou
f61ba05c66
gnu: emacs-cpreproc-openvdb: Remove period in synopsis.
...
* gnu/packages/emacs-xyz.scm (emacs-cpreproc-openvdb)[synopsis]: Remove
period.
2022-09-25 15:17:06 +02:00
jgart via Guix-patches via
725e7c3bb6
gnu: Add emacs-clue.
...
* gnu/packages/emacs-xyz.scm (emacs-clue): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-25 15:12:35 +02:00
jgart via Guix-patches via
0d71bae608
gnu: emacs-denote: Update to 0.6.0.
...
* gnu/packages/emacs-xyz.scm (emacs-denote): Update to 0.6.0.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-25 15:12:35 +02:00
Fredrik Salomonsson
7a8988730c
gnu: Add emacs-ol-notmuch.
...
* gnu/packages/emacs-xyz.scm (emacs-ol-notmuch): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-25 15:12:34 +02:00
Hilton Chain via Guix-patches via
66bca23293
gnu: Add emacs-macrostep-geiser.
...
* gnu/packages/emacs-xyz.scm (emacs-macrostep-geiser): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-25 15:12:34 +02:00
Fredrik Salomonsson
29fa1a9039
gnu: Add emacs-marginalia-emprise.
...
* gnu/packages/emacs-xyz.scm (emacs-marginalia-emprise): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-25 15:12:34 +02:00
Fredrik Salomonsson
d27f8db195
gnu: Add emacs-orgmdb.
...
* gnu/packages/emacs-xyz.scm (emacs-orgmdb): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-25 15:12:33 +02:00
Fredrik Salomonsson
c4af643391
gnu: Add emacs-cpreproc-openvdb.
...
* gnu/packages/emacs-xyz.scm (emacs-cpreproc-openvdb): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-25 15:12:33 +02:00
Julien Lepiller
bfa723ba10
etc: teams: Define Java team scope.
...
* etc/teams.scm.in (java): Define it.
2022-09-25 14:40:01 +02:00
Julien Lepiller
13cf9ebe84
etc: teams: Define OCaml team scope.
...
* etc/teams.scm.in (ocaml): Define it.
2022-09-25 14:39:36 +02:00
Mathieu Othacehe
6ab5106645
news: Add entry about image API documentation.
...
* etc/news.scm: Add entry.
2022-09-25 13:52:19 +02:00
Mathieu Othacehe
13f469744b
news: Add entry about WSL images.
...
* etc/news.scm: Add entry.
2022-09-25 13:40:10 +02:00
Lars-Dominik Braun
9943bbfaa1
etc: teams: Define python team scope.
...
* etc/teams.scm.in (python): Define it.
2022-09-25 12:42:11 +02:00
Lars-Dominik Braun
b6aef666d9
etc: teams: Define haskell team scope.
...
* etc/teams.scm.in (haskell): Define it.
2022-09-25 12:42:11 +02:00
Mathieu Othacehe
e842aeb8c1
doc: Turn example to lisp.
...
* doc/guix.texi (System Images): Turn example snippets to lisp snippets.
2022-09-25 11:38:11 +02:00
Mathieu Othacehe
506e0aa438
doc: Remove an extra dot.
...
* doc/guix.texi (System Images): Remove it.
2022-09-25 11:35:09 +02:00
Mathieu Othacehe
2e0fa826c9
etc: installer: Define installer team scope.
...
* etc/teams.scm.in (installer): Define it.
2022-09-25 09:27:59 +02:00
Mathieu Othacehe
7ca846c8c9
etc: teams: Define core team scope.
...
* etc/teams.scm.in (core): Define it.
2022-09-25 09:27:59 +02:00
Liliana Marie Prikler
b1a7a5723b
etc: teams: Add regular expression support to scopes.
...
* etc/teams.scm (find-teams-by-scope): Differentiate between raw strings
and regexps. Make raw string matches strict.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-25 09:27:59 +02:00
Mathieu Othacehe
2a66304535
etc: teams: Add scope support.
...
Add a scope list to each team. This list defines all the files and
directories that are mentored by the team.
Also add a cc-members command that takes two Git revision strings as input,
add returns the members that should be CC'ed given the files impacted between
the two revisions.
* etc/teams.scm.in (<team>)[scope]: New field.
(team, list-teams): Adapt those procedures.
(find-team-by-scope, diff-revisions): New procedures.
(main): Add a "cc-members" command.
* doc/contributing.texi ("Teams"): Document it.
("Sending a Patch Series"): Adapt it.
2022-09-25 09:27:59 +02:00
Mathieu Othacehe
2784fcf14d
system: images: Add a TODO comment.
...
* gnu/system/image.scm (system-tarball-image): Add it.
2022-09-25 09:27:35 +02:00
Efraim Flashner
08473753a0
gnu: firebird: Add support for riscv64-linux.
...
* gnu/packages/databases.scm (firebird)[source]: Add patches.
[arguments]: Add custom phase when building for riscv64-linux to force
the bootstrap phase to occur.
[native-inputs]: When building for riscv64-linux add autoconf, automake
and libtool.
* gnu/packages/patches/firebird-riscv64-support-pt1.patch,
gnu/packages/patches/firebird-riscv64-support-pt2.patch: New files.
* gnu/local.mk (dist_patch_DATA): Register them.
2022-09-24 22:15:58 +03:00
Nicolas Goaziou
b79bdbe2ec
gnu: emacs-piem: Do not propagate B4.
...
* gnu/packages/emacs-xyz.scm (emacs-piem)[arguments]: Add CONFIGURE phase to
avoid propagating B4.
[inputs]: Add B4.
[propagated-inputs]: Remove B4.
2022-09-24 21:05:11 +02:00
Nicolas Goaziou
ffa8a7129f
gnu: emacs-piem: Fix license.
...
* gnu/packages/emacs-xyz.scm (emacs-piem)[license]: Set to GPL3+.
2022-09-24 20:58:19 +02:00
conses
f5f8a21cc9
gnu: emacs-slack: Update to ff46d88.
...
* gnu/packages/emacs-xyz.scm (emacs-slack): Update to ff46d88.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-24 20:51:16 +02:00
zimoun
f63696a007
gnu: Add emacs-piem.
...
* gnu/packages/emacs-xyz.scm (emacs-piem): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-24 20:51:16 +02:00
Nicolas Goaziou
30088cab99
gnu: emacs-perspective: Update to 2.18.
...
* gnu/packages/emacs-xyz.scm (emacs-perspective): Update to 2.18.
2022-09-24 20:51:15 +02:00
Nicolas Goaziou
54e5449df5
gnu: emacs-ement: Update to 0.2.
...
* gnu/packages/emacs-xyz.scm (emacs-ement): Update to 0.2.
2022-09-24 20:51:15 +02:00
Nicolas Goaziou
475c0b6c71
gnu: emacs-mentor: Update to 0.4.
...
* gnu/packages/emacs-xyz.scm (emacs-mentor): Update to 0.4.
2022-09-24 20:51:15 +02:00
Nicolas Goaziou
829b07cd32
gnu: emacs-subed: Update to 1.0.10.
...
* gnu/packages/emacs-xyz.scm (emacs-subed): Update to 1.0.10.
2022-09-24 20:51:09 +02:00
Garek Dyszel
d46e955d93
gnu: Add python-icdiff.
...
* gnu/packages/python-xyz.scm (python-icdiff): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-24 20:24:52 +02:00
Garek Dyszel
13c1ed6a19
gnu: Add python-editables.
...
* gnu/packages/python-build.scm (python-editables): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-24 20:24:50 +02:00
Garek Dyszel
142cccef63
gnu: Add python-version.
...
* gnu/packages/python-xyz.scm (python-version): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-24 20:24:49 +02:00
Garek Dyszel
501072af86
gnu: Add coq-mathcomp-bigenough.
...
* gnu/packages/coq.scm (coq-mathcomp-bigenough): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-24 20:24:47 +02:00
Garek Dyszel
17098178c1
gnu: Add coq-mathcomp-finmap.
...
* gnu/packages/coq.scm (coq-mathcomp-finmap): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-24 20:24:45 +02:00
Garek Dyszel
8371ad6408
gnu: Add ocaml-ansiterminal.
...
* gnu/packages/ocaml.scm (ocaml-ansiterminal): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-24 20:24:37 +02:00
Efraim Flashner
445076743e
gnu: Remove icu4c-67.
...
* gnu/packages/icu4c.scm (icu4c-67): Remove variable.
2022-09-24 21:16:12 +03:00
Efraim Flashner
77c0e58e9b
gnu: firebird: Update to 3.0.10.
...
* gnu/packages/databases.scm (firebird): Update to 3.0.10.
[source]: Remove trailing #t.
[arguments]: Remove trailing #t from phases.
[inputs]: Replace icu4c-67 with icu4c.
[properties]: Remove field.
2022-09-24 21:16:04 +03:00
Artyom V. Poptsov
fc07082fe3
gnu: Add maven-sisu-plugin.
...
* gnu/packages/maven.scm (maven-sisu-plugin): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-24 19:04:07 +02:00
Efraim Flashner
8a0384b88f
gnu: openexr-2: Extend the test timeout.
...
* gnu/packages/graphics.scm (openexr-2)[arguments]: Adjust the custom
phase to extend the test timeout.
2022-09-24 19:54:46 +03:00
Ludovic Courtès
b814bdf441
Update NEWS.
2022-09-24 18:08:05 +02:00
kiasoc5
3165c1dd5c
gnu: avizo: Update to 1.2.1.
...
* gnu/packages/wm.scm (avizo): Update to 1.2.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-24 17:59:06 +02:00
zimoun
7ab5c85f4c
gnu: emacs-lua-mode: Fix build.
...
* gnu/packages/emacs-xyz.scm (emacs-buttercup-1.25): New variable.
(emacs-lua-mode): Use it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-24 17:59:05 +02:00
Maxime Devos
736bda211b
gnu: go-ipfs: Unbundle many dependencies.
...
Tested with "./pre-inst-env guix build go-ipfs" and "make check-system
TESTS=ipfs".
go-github-com-blang-semver is currently out-of-date, so it cannot be unbundled
yet (at least, the build process seems to complain about the version).
* gnu/packages/ipfs.scm (go-ipfs)[source]: Add snippet removing many
bundled dependencies.
[inputs]: Add many inputs.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-24 17:59:05 +02:00
Maxime Devos
9e4d8c7518
build-system/go: Respect #:imported-modules when cross-compiling.
...
Previously, #:imported-modules was ignored, causing cross-compilation
failures. This bug seems seems to have been introduced in
e37dcf63dc .
After this commit, there remain other cross-compilation problems,
e.g. <https://issues.guix.gnu.org/51981 > fixes one of them.
* guix/build-system/go.scm (go-cross-build)[builder]: Wrap in
with-imported-modules.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-24 17:59:05 +02:00
M
1cf39c41cf
gnu: Add rot8.
...
* gnu/packages/rust-apps.scm (rot8): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-24 17:59:05 +02:00
M
870422a15e
gnu: Add batsignal.
...
* gnu/packages/monitoring.scm (batsignal): New variable.
Co-authored-by: ( <paren@disroot.org >
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-24 17:59:05 +02:00
Wiktor Żelazny
9b4d2147c7
gnu: Add texlive-latex-sidecap.
...
* gnu/packages/tex.scm (texlive-latex-sidecap): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-24 17:59:05 +02:00
Wiktor Żelazny
beec17a724
gnu: Add texlive-latex-frankenstein.
...
* gnu/packages/tex.scm (texlive-latex-frankenstein): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-24 17:59:05 +02:00
Ludovic Courtès
00d5bb5d7f
linux-container: Mark socket pair as SOCK_CLOEXEC.
...
* gnu/build/linux-container.scm (run-container): Pass SOCK_CLOEXEC to
'socketpair'.
2022-09-24 17:59:04 +02:00
Ludovic Courtès
08023bcab3
substitute: Test behavior with unroutable substitute server addresses.
...
* tests/substitute.scm (%unroutable-substitute-url): New variable.
("query narinfo signed with authorized key, unroutable URL first")
("substitute, authorized key, first substitute URL is unroutable"): New
tests.
2022-09-24 17:59:04 +02:00
Ludovic Courtès
95e06bc3e1
narinfo: Fix misleading docstring.
...
The misleading docstring had been here from the start, in commit
cdea30e061 .
* guix/narinfo.scm (valid-narinfo?): Fix docstring.
2022-09-24 17:59:04 +02:00
Mathieu Othacehe
20fbc0bb08
gnu: openvswitch: Disable tests.
...
On berlin the following test fails:
;; 25. bfd.at:268: 25. bfd - bfd decay (bfd.at:268): FAILED (bfd.at:397)
while this one fails on hydra-114:
1040. dpif-netdev - meters (dpif-netdev.at:269): FAILED (dpif-netdev.at:376)
Disable the tests for now.
* gnu/packages/networking.scm (openvswitch)[arguments]: Disable them.
2022-09-24 15:11:35 +02:00
Alex Griffin
c8112f3bd9
system: images: Add wsl2 module.
...
* gnu/system/images/wsl2.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* doc/guix.texi ("System Images"): Document it.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-24 14:49:09 +02:00
Alex Griffin
233cf9f036
system: image: Add wsl2 support.
...
* gnu/image.scm (<image>)[format]: Add wsl2 support.
* gnu/system/image.scm (wsl2-image, wsl2-image-type): New variables.
(image->root-file-system): Add wsl2 image support.
(system-image): Ditto.
2022-09-24 14:49:09 +02:00
Alex Griffin
8757c3f293
system: image: Add tarball support.
...
* gnu/image.scm (<image>)[fields]: Add tarball to the supported formats.
* gnu/system/image.scm (tarball-image, tarball-image-type): New variables.
(system-tarball-image): New procedure.
(image->root-file-system): Add tarball image support.
(system-image): Ditto.
* doc/guix.texi ("System Images"): Document it.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-24 14:49:09 +02:00
Mathieu Othacehe
ebe9d660a5
gnu: Add compression module.
...
Move the compression record to a dedicated module so that it can be used
outside (guix scripts pack) module.
* guix/scripts/pack.scm (<compressor>, %compressors, lookup-compressor): Move
it to ...
* gnu/compression.scm: ... this new file.
* gnu/ci.scm: Adapt it.
* local.mk (GNU_SYSTEM_MODULES): Add it.
2022-09-24 14:49:09 +02:00
Mathieu Othacehe
a13f5ead02
doc: Add a "System Images" chapter.
...
* doc/guix.texi ("System Images"): New chapter.
2022-09-24 14:49:09 +02:00
Mathieu Othacehe
61bf25bb4e
doc: Add a "Platforms" chapter.
...
* doc/guix.texi ("Platforms"): New chapter.
("Porting"): Link it.
2022-09-24 14:49:08 +02:00
Mathieu Othacehe
08a7eb187f
platforms: x86: Rename Hurd hurd to i586-gnu.
...
* guix/platforms/x86.scm (hurd): Rename it to ...
(i586-gnu): ... this variable.
* gnu/system/images/hurd.scm (hurd-disk-image, hurd-barebones-disk-image,
hurd-barebones-qcow2-image): Adapt those.
2022-09-24 14:49:07 +02:00
Mathieu Othacehe
c009c286a2
image: Make the operating-system field mandatory.
...
Make the operating-system field mandatory as creating an image without it
makes no sense. Introduce a new macro, image-without-os for the specific cases
where the image is only created to be inherited from afterwards.
* gnu/image.scm (<image>)[operating-system]: Make it mandatory.
* gnu/system/image.scm (image-without-os): New macro.
(efi-disk-image, efi32-disk-image, iso9660-image, docker-image,
raw-with-offset-disk-image): Use it.
* gnu/system/images/hurd.scm (hurd-disk-image): Ditto.
2022-09-24 14:20:36 +02:00
Mathieu Othacehe
f38e91a84c
installer: tests: Fix typo.
...
* gnu/installer/tests.scm (edit-configuration-file): Fix it.
2022-09-24 14:15:47 +02:00
Lars-Dominik Braun
dc7191302e
Revert "gnu: samba: Add avahi to inputs."
...
This reverts commit 4cbc162296 .
samba/fixed inherits from samba, which causes ~9000 rebuilds.
2022-09-24 13:15:42 +02:00
Mathieu Othacehe
fe4663ae24
installer: Fix configuration edition during testing.
...
When the configuration is edited, it looks like there are some leftover
fragments from the input configuration:
Example content of config.scm after edition:
#:imported-modules
'((gnu services herd)
(guix build utils)
(guix combinators)))
unted". The unique
;; file system identifiers there ("UUIDs") can be obtained
;; by running 'blkid' in a terminal.
...
This is strange because call-with-output-file uses the O_TRUNC flag which
resets the file size to zero. Remove the configuration file before writing it
as a work-around.
* gnu/installer/tests.scm (edit-configuration-file): Remove the configuration
file before re-writing it.
2022-09-24 12:48:16 +02:00
Simon Streit
e1ce100915
services: Add wsdd service.
...
* doc/guix.texi: Add documentation for wsdd service.
* gnu/services/samba.scm (<wsdd-configuration>): New record.
(wsdd-service-type): New variable.
(wsdd-shepherd-services): New procedure.
* gnu/tests/samba.scm (%wsdd-os): Add variable.
(run-wsdd-test): New procedure.
(%test-wsdd): New variable.
Signed-off-by: Lars-Dominik Braun <lars@6xq.net >
2022-09-24 09:41:24 +02:00
Simon Streit
14359befa9
gnu: Add wsdd.
...
* gnu/packages/samba.scm (wsdd): New variable.
Signed-off-by: Lars-Dominik Braun <lars@6xq.net >
2022-09-24 09:41:24 +02:00
Simon Streit
d68721c55a
services: Add samba service.
...
* gnu/services/samba.scm: New file.
* gnu/tests/samba.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add them.
* po/guix/POTFILES.in Add 'gnu/services/samba.scm'.
* doc/guix.texi: Document it.
Signed-off-by: Lars-Dominik Braun <lars@6xq.net >
2022-09-24 09:38:57 +02:00
Simon Streit
4cbc162296
gnu: samba: Add avahi to inputs.
...
* gnu/packages/samba.scm (samba) <inputs>: Add avahi.
Signed-off-by: Lars-Dominik Braun <lars@6xq.net >
2022-09-24 09:38:57 +02:00
Liliana Marie Prikler
a5c876cdb2
gnu: emacs-jsonrpc: Correct URL.
...
* gnu/packages/emacs-xyz.scm (emacs-jsonrpc)[source]<url>: Drop trailing slash.
2022-09-24 06:53:37 +02:00
Fredrik Salomonsson
ff643b077c
gnu: emacs-jsonrpc: Correct hash.
...
* gnu/packages/emacs-xyz.scm (emacs-jsonrpc)[source]: Correct hash.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-24 06:50:04 +02:00
Maxim Cournoyer
35e8615d38
Revert "tests: telephony: Add extra packages to %jami-os for debugging."
...
This reverts commit 829c19142e , as it broke
'guix pull'.
2022-09-24 00:22:19 -04:00
Maxim Cournoyer
fd109c5c09
tests: jami-provisioning: Fix test derivation name.
...
* gnu/tests/telephony.scm (run-jami-test): Fix test derivation name.
2022-09-23 23:56:16 -04:00
Maxim Cournoyer
effdc6c83e
services: jami-service-type: Streamline stop slot.
...
* gnu/services/telephony.scm (jami-shepherd-services)
[stop]: Use make-kill-destructor with SIGKILL. Add comment.
2022-09-23 23:56:16 -04:00
Maxim Cournoyer
829c19142e
tests: telephony: Add extra packages to %jami-os for debugging.
...
* gnu/tests/telephony.scm (make-jami-os): Add libjami:debug, gdb, guile,
guile-ac-d-bus, guile-readline, guile-fibers, screen and strace.
(run-jami-test)<jami service actions, ban/unban contacts>: Add (ice-9 match),
for lambda-match (worked without it but needed when manually testing).
2022-09-23 23:56:15 -04:00
Maxim Cournoyer
21afbf54cd
build: jami-service: account->username always return a fingerprint.
...
This change is motivated by the fact that Account.registeredName is a volatile
account data, not exported along the account and retrieved from the name
server. Have it always return Account.username instead, so that the result is
reproducible independent of whether networking is available or not.
* gnu/build/jami-service.scm (account->username): Always return the account
fingerprint. Adjust doc.
(id->username): Likewise.
2022-09-23 23:56:15 -04:00
Maxim Cournoyer
c50231cfcb
gnu: ffmpeg-jami: Update to 5.0.1 and enable tests.
...
* gnu/packages/jami.scm (ffmpeg-jami): Update to 5.0.1.
[tests?]: Delete argument.
[phases]{disable-problematic-tests}: New phase.
2022-09-23 23:56:15 -04:00
Maxim Cournoyer
c8ab64b2df
gnu: pjproject-jami: Update to 2.12-0.5e478bb.
...
* gnu/packages/jami.scm (pjproject-jami): Update to 2.12-0.5e478bb.
2022-09-23 23:56:15 -04:00
Maxim Cournoyer
84369105d4
gnu: jami: Update to 20220825.0828.c10f01f.
...
* gnu/packages/jami.scm (jami): Update to 20220825.0828.c10f01f.
(%jami-version): Set to latest release.
(%jami-sources): Remove jami-fix-esc-bug.patch; add
jami-fix-crash-on-block-contact.patch.
* gnu/packages/patches/jami-fix-esc-bug.patch: Delete file.
* gnu/packages/patches/jami-fix-crash-on-block-contact.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-09-23 23:56:15 -04:00
Maxim Cournoyer
503cfd5421
gnu: pjproject: Update to 2.12.1.
...
* gnu/packages/telephony.scm (pjproject): Update to 2.12.1.
[source]: Delete patches field.
[arguments]: Use gexps.
* gnu/packages/patches/pjproject-install-libpjsua2.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): De-register it.
2022-09-23 23:56:14 -04:00
Nicolas Graves
dab3800691
gnu: Add emacs-org-babel-eval-in-repl.
...
* gnu/packages/emacs-xyz.scm (emacs-org-babel-eval-in-repl): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-24 01:49:55 +02:00
Nicolas Graves
7b1d02247b
gnu: Add emacs-ob-elm.
...
* gnu/packages/emacs-xyz.scm (emacs-ob-elm): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-24 01:49:54 +02:00
Nicolas Graves
0b120ad5f8
gnu: Add emacs-eval-in-repl packages.
...
* gnu/packages/emacs-xyz.scm (make-emacs-eval-in-repl)
(emacs-eval-in-repl-cider, emacs-eval-in-repl-elm, emacs-eval-in-repl-erlang)
(emacs-eval-in-repl-geiser, emacs-eval-in-repl-hy, emacs-eval-in-repl-ielm)
(emacs-eval-in-repl-iex, emacs-eval-in-repl-javascript)
(emacs-eval-in-repl-lua, emacs-eval-in-repl-ocaml, emacs-eval-in-repl-prolog)
(emacs-eval-in-repl-python, emacs-eval-in-repl-racket)
(emacs-eval-in-repl-shell, emacs-eval-in-repl-slime, emacs-eval-in-repl-sly)
(emacs-eval-in-repl-sml): New variables.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-24 01:46:34 +02:00
Nicolas Graves
7a4465473e
gnu: Add emacs-alchemist.
...
* gnu/packages/emacs-xyz.scm (emacs-alchemist): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-24 01:46:34 +02:00
Nicolas Graves
10420af4b1
gnu: Add emacs-js-comint.
...
* gnu/packages/emacs-xyz.scm (emacs-js-comint): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-24 01:46:34 +02:00
Nicolas Graves
63ba25cf67
gnu: Add emacs-eval-in-repl.
...
* gnu/packages/emacs-xyz.scm (emacs-eval-in-repl): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-24 01:16:55 +02:00
Fredrik Salomonsson
08d5152332
gnu: emacs-jsonrpc: Use upstream source.
...
* gnu/packages/emacs-xyz.scm (emacs-jsonrpc)[version]: Use git-version.
[source]: Use Emacs' git repository.
[arguments]: Replace ‘unpack’ phase to only unpack jsonrpc.el.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-23 18:18:29 +02:00
Efraim Flashner
e19b3d4003
gnu: guile-fibers: Skip some long tests on some architectures.
...
* gnu/packages/guile-xyz.scm (guile-fibers-1.1)[arguments]: Add custom
phase to skip some overly long tests.
2022-09-23 09:10:33 +03:00
Maxim Cournoyer
a57c4eff6b
Update NEWS.
2022-09-23 00:50:17 -04:00
Maxim Cournoyer
46fee48d5c
services: configuration: Fix typo.
...
* gnu/services/configuration.scm (interpose): Fix typo in doc.
(text-config?): Add a newline following definition.
2022-09-23 00:50:12 -04:00
Ricardo Wurmus
cbe8391d7c
gnu: Add mudskipper.
...
* gnu/packages/bioinformatics.scm (mudskipper): New variable.
2022-09-23 00:21:40 +02:00
Ricardo Wurmus
2eb7061aa2
gnu: Add rust-libradicl-0.4.
...
* gnu/packages/crates-io.scm (rust-libradicl-0.4): New variable.
2022-09-23 00:21:40 +02:00
Ricardo Wurmus
dbf54f43c4
gnu: Add rust-rust-htslib-0.38.
...
* gnu/packages/crates-io.scm (rust-rust-htslib-0.38): New variable.
2022-09-23 00:21:40 +02:00
Ricardo Wurmus
3a3eb0b155
gnu: Add rust-hts-sys-2.
...
* gnu/packages/crates-io.scm (rust-hts-sys-2): New variable.
2022-09-23 00:21:40 +02:00
Ricardo Wurmus
9365a18385
gnu: Add rust-needletail-0.4.
...
* gnu/packages/crates-io.scm (rust-needletail-0.4): New variable.
2022-09-23 00:21:40 +02:00
Ricardo Wurmus
090fa61951
gnu: Add rust-sce-0.1.
...
* gnu/packages/crates-io.scm (rust-sce-0.1): New variable.
2022-09-23 00:21:40 +02:00
Ricardo Wurmus
93e23c6b26
gnu: Add rust-coitrees-0.2.
...
* gnu/packages/crates-io.scm (rust-coitrees-0.2): New variable.
2022-09-23 00:21:40 +02:00
Ricardo Wurmus
4e38e11a0b
gnu: Add rust-executors-0.9.
...
* gnu/packages/crates-io.scm (rust-executors-0.9): New variable.
2022-09-23 00:21:39 +02:00
Ricardo Wurmus
4ded080b51
gnu: rust-obj-0.10: Disable tests.
...
* gnu/packages/crates-io.scm (rust-obj-0.10)[arguments]: Disable tests.
2022-09-23 00:21:39 +02:00
Ricardo Wurmus
309b013c41
gnu: rust-glium-0.31: Add missing development inputs.
...
* gnu/packages/crates-io.scm (rust-glium-0.31)[arguments]: Add rust-cgmath,
rust-genmesh, rust-obj, and rust-ouroboros.
2022-09-23 00:21:39 +02:00
Ricardo Wurmus
4ce25a6158
gnu: Add rust-obj-0.10.
...
* gnu/packages/crates-io.scm (rust-obj-0.10): New variable.
2022-09-23 00:21:39 +02:00
Ricardo Wurmus
646686f66c
gnu: rust-winit-0.24: Add missing development inputs.
...
* gnu/packages/crates-graphics.scm (rust-winit-0.24)[arguments]: Add
rust-console-log and rust-simple-logger to cargo-development-inputs.
2022-09-23 00:21:39 +02:00
Ricardo Wurmus
ecac40cf32
gnu: rust-winit: Add missing development inputs.
...
* gnu/packages/crates-graphics.scm (rust-winit)[arguments]: Add
rust-console-log and rust-simple-logger to cargo-development-inputs.
2022-09-23 00:21:39 +02:00
Ricardo Wurmus
4b01a19a52
gnu: Add rust-console-log-0.2.
...
* gnu/packages/crates-io.scm (rust-console-log-0.2): New variable.
2022-09-23 00:21:39 +02:00
Ricardo Wurmus
78c318636e
gnu: rust-mint-0.5: Update to 0.5.9.
...
* gnu/packages/crates-io.scm (rust-mint-0.5): Update to 0.5.9.
[arguments]: Add rust-serde-1 to cargo-inputs; add rust-serde-json-1 to
cargo-development-inputs.
2022-09-23 00:21:39 +02:00
Ricardo Wurmus
4b9ea794a7
gnu: Add rust-indicatif-0.16.
...
* gnu/packages/crates-io.scm (rust-indicatif-0.16): New variable.
2022-09-23 00:21:39 +02:00
Ricardo Wurmus
246c79e6a9
gnu: Add rust-synchronoise-1.
...
* gnu/packages/crates-io.scm (rust-synchronoise-1): New variable.
2022-09-23 00:21:39 +02:00
Ricardo Wurmus
a6fde04785
gnu: Add rust-rustls-ffi-0.8.
...
* gnu/packages/crates-io.scm (rust-rustls-ffi-0.8): New variable.
2022-09-23 00:21:39 +02:00
Ricardo Wurmus
f3f1a903ad
gnu: Add rust-quickersort-3.
...
* gnu/packages/crates-io.scm (rust-quickersort-3): New variable.
2022-09-23 00:21:39 +02:00
Ricardo Wurmus
01cb13f164
gnu: Add rust-arr-macro-0.1.
...
* gnu/packages/crates-io.scm (rust-arr-macro-0.1): New variable.
2022-09-23 00:21:38 +02:00
Ricardo Wurmus
ab3082218e
gnu: Add rust-arr-macro-impl-0.1.
...
* gnu/packages/crates-io.scm (rust-arr-macro-impl-0.1): New variable.
2022-09-23 00:21:38 +02:00
Ricardo Wurmus
9576469cc6
gnu: Add rust-fs-utils-1.
...
* gnu/packages/crates-io.scm (rust-fs-utils-1): New variable.
2022-09-23 00:21:38 +02:00
Ricardo Wurmus
8acb81ba71
gnu: Add rust-linear-map-1.
...
* gnu/packages/crates-io.scm (rust-linear-map-1): New variable.
2022-09-23 00:21:38 +02:00
Ricardo Wurmus
d8f2e958dd
gnu: Add rust-metrics-0.14.
...
* gnu/packages/crates-io.scm (rust-metrics-0.14): New variable.
2022-09-23 00:21:38 +02:00
Ricardo Wurmus
90cc8a0752
gnu: Add rust-metrics-macros-0.2.
...
* gnu/packages/crates-io.scm (rust-metrics-macros-0.2): New variable.
2022-09-23 00:21:38 +02:00
Ricardo Wurmus
fe8de9c700
gnu: Add rust-ieee754-0.2.
...
* gnu/packages/crates-io.scm (rust-ieee754-0.2): New variable.
2022-09-23 00:21:38 +02:00
Ricardo Wurmus
8b5e1ed0df
gnu: Add rust-libdeflate-sys-0.5.
...
* gnu/packages/crates-io.scm (rust-libdeflate-sys-0.5): New variable.
2022-09-23 00:21:38 +02:00
Ricardo Wurmus
e5d060d75c
gnu: Add rust-libz-ng-sys-1.
...
* gnu/packages/crates-io.scm (rust-libz-ng-sys-1): New variable.
2022-09-23 00:21:38 +02:00
Ricardo Wurmus
fe8364e4f6
gnu: Add rust-number-prefix-0.4.
...
* gnu/packages/crates-io.scm (rust-number-prefix-0.4): New variable.
2022-09-23 00:21:38 +02:00
Ricardo Wurmus
9d48fbb4fd
gnu: rust-arrayvec-0.7: Update to 0.7.2.
...
* gnu/packages/crates-io.scm (rust-arrayvec-0.7): Update to 0.7.2.
2022-09-23 00:21:38 +02:00
Ricardo Wurmus
4130104b50
gnu: rust-bstr-0.2: Update to 0.2.17.
...
* gnu/packages/crates-io.scm (rust-bstr-0.2): Update to 0.2.17.
2022-09-23 00:21:37 +02:00
Ricardo Wurmus
45cd9aed7c
gnu: rust-crossbeam-queue-0.3: Update to 0.3.6.
...
* gnu/packages/crates-io.scm (rust-crossbeam-queue-0.3): Update to 0.3.6.
2022-09-23 00:21:37 +02:00
Ricardo Wurmus
6814dc6cdc
gnu: rust-crossbeam-channel-0.5: Update to 0.5.6.
...
* gnu/packages/crates-io.scm (rust-crossbeam-channel-0.5): Update to 0.5.6.
2022-09-23 00:21:33 +02:00
Jacob Hrbek
f7a68436ed
gnu: Add idevicerestore.
...
* gnu/packages/libusb.scm (idevicerestore): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-22 21:33:38 +02:00
Jacob Hrbek
5f9d9471c7
gnu: Add libirecovery.
...
* gnu/packages/libusb.scm (libirecovery): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-22 21:21:03 +02:00
Jonathan Brielmaier
493b6f6d14
gnu: icedove: Update to 91.13.1 [security fixes].
...
Fixes CVE-2022-3032, CVE-2022-3033 and CVE-2022-3034.
* gnu/packages/gnuzilla.scm (icedove): Update to 91.13.1.
2022-09-22 21:00:24 +02:00
Efraim Flashner
d169ae7c53
gnu: guile-fibers: Remove guild warnings.
...
* gnu/packages/guile-xyz.scm (guile-fibers)[arguments]: Add make-flag to
silence guild warnings.
2022-09-22 19:48:51 +03:00
Josselin Poiret
2e8b4f9bfa
installer: Exit console-services page with abort-to-prompt.
...
* gnu/installer/newt/services.scm (run-console-services-cbt-page): Do it.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-22 16:28:12 +02:00
Josselin Poiret
fd942712d8
installer: Ensure luks devices are open when mounting partitions.
...
Partially-Fixes: <https://issues.guix.gnu.org/57983 >
* gnu/installer/parted.scm (luks-ensure-open): New procedure.
(unmount-user-partitions): Ensure luks devices are open.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-22 16:27:19 +02:00
Josselin Poiret
d77612a91b
installer: Return partitions with crypt password as step result.
...
* gnu/installer/newt/partition.scm (run-partitioning-page): Do it.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-22 16:00:44 +02:00
Josselin Poiret
4814ec284f
installer: Move <secret> to utils and use it for crypt passwords.
...
* gnu/installer/user.scm (<secret>, secret?, make-secret, secret-content): Move
to utils.scm.
* gnu/installer/utils.scm (<secret>, secret?, make-secret, secret-content):
Moved from user.scm.
* gnu/installer/newt/partition.scm (prompt-luks-passwords): Make password a
<secret>.
* gnu/installer/parted.scm (luks-format-and-open): Unwrap secret.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-22 16:00:29 +02:00
Guillaume Le Vaillant
3c4024e9f5
gnu: monero-gui: Update to 0.18.1.1.
...
* gnu/packages/finance.scm (monero-gui): Update to 0.18.1.1.
2022-09-22 11:40:10 +02:00
Guillaume Le Vaillant
cd4d2b1050
gnu: monero: Update to 0.18.1.1.
...
* gnu/packages/finance.scm (monero): Update to 0.18.1.1.
2022-09-22 11:40:10 +02:00
Hendursaga
81ad759ab9
gnu: Add tetzle.
...
* gnu/packages/games.scm (tetzle): New public variable.
Signed-off-by: Björn Höfling <bjoern.hoefling@bjoernhoefling.de >
2022-09-22 10:17:42 +02:00
Hendursaga
84096a1e84
gnu: gsimplecal: Update to 2.4.1.
...
* gnu/packages/calendar.scm (gsimplecal): Update to 2.4.1.
Signed-off-by: Björn Höfling <bjoern.hoefling@bjoernhoefling.de >
2022-09-22 10:06:42 +02:00
Denis 'GNUtoo' Carikli
da3bbcc991
gnu: Add keychain.
...
* gnu/packages/crypto.scm (keychain): New variable.
Signed-off-by: Björn Höfling <bjoern.hoefling@bjoernhoefling.de >
2022-09-22 09:56:31 +02:00
Efraim Flashner
85c769709f
gnu: zathura: Remove input labels.
...
* gnu/packages/pdf.scm (zathura)[native-inputs]: Remove input labels.
[arguments]: Adjust custom 'start-xserver phase accordingly.
2022-09-22 10:45:19 +03:00
Efraim Flashner
716f970e6d
gnu: zathura: Update to 0.5.1.
...
* gnu/packages/pdf.scm (zathura): Update to 0.5.1.
2022-09-22 10:45:19 +03:00
Efraim Flashner
6f2e28f026
gnu: vifm: Update to 0.12.1.
...
* gnu/packages/vim.scm (vifm): Update to 0.12.1.
[arguments]: Remove trailing #t from phases.
2022-09-22 10:45:16 +03:00
Pierre Neidhardt
70c40c654c
gnu: sbcl-lisp-unit2: Update to 0.9.4.
...
* gnu/packages/lisp-check.scm (sbcl-lisp-unit2): Update to 0.9.4.
2022-09-22 09:28:43 +02:00
Jacob Hrbek
04cad8e29e
gnu: Add ideviceinstaller.
...
* gnu/packages/libusb (ideviceinstaller): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-22 07:37:16 +02:00
Julien Lepiller
0346e5e090
gnu: ocaml-uucp: Update to 15.0.0.
...
* gnu/packages/ocaml.scm (ocaml-uucp): Update to 15.0.0.
(ocaml-uucd): Update to 15.0.0.
2022-09-22 07:37:11 +02:00
Julien Lepiller
95fdf691b1
gnu: ocaml-uunf: Update to 15.0.0.
...
* gnu/packages/ocaml.scm (ocaml-uunf): Update to 15.0.0.
2022-09-22 07:37:00 +02:00
Julien Lepiller
c593429b43
gnu: ocaml-linenoise: Update to 1.4.0.
...
* gnu/packages/ocaml.scm (ocaml-linenoise): Update to 1.4.0.
2022-09-22 07:35:54 +02:00
Julien Lepiller
8734851a8c
gnu: coq: Update to 8.16.0.
...
* gnu/packages/coq.scm (coq-core): Update to 8.16.0.
(coq-bignums): Update to 8.16.0.
(coq-equations): Update to 1.3-8.16.
(coq-gappa): Adjust for changes in coq-core.
2022-09-22 07:34:57 +02:00
Julien Lepiller
9f391b90fa
gnu: coq-interval: Update to 4.5.2.
...
* gnu/packages/coq.scm (coq-interval): Update to 4.5.2.
2022-09-22 07:34:43 +02:00
Julien Lepiller
9140a4dd1d
gnu: coq-mathcomp: Update to 1.15.0.
...
* gnu/packages/coq.scm (coq-mathcomp): Update to 1.15.0.
2022-09-22 07:34:40 +02:00
Julien Lepiller
a440e905fd
gnu: coq-gappa: Update to 1.5.2.
...
* gnu/packages/coq.scm (coq-gappa): Update to 1.5.2.
2022-09-22 07:34:37 +02:00
Julien Lepiller
1bb856d90a
gnu: coq-flocq: Update to 4.1.0.
...
* gnu/packages/coq.scm (coq-flocq): Update to 4.1.0.
2022-09-22 07:34:32 +02:00
Julien Lepiller
b7971ff798
gnu: lablgtk3: Update to 3.1.2.
...
* gnu/packages/ocaml.scm (lablgtk3): Update to 3.1.2.
[arguments]: Do not build extensions anymore (missing dependency)
* gnu/packages/games.scm (laby)[inputs]: Use
`ocaml-lablgtk3-sourceview3'.
* gnu/packages/maths.scm (frama-c)[inputs]: Use
`ocaml-lablgtk3-sourceview3'.
* gnu/packages/coq.scm (coq-ide)[inputs]: Use
`ocaml-lablgtk3-sourceview3'.
2022-09-22 07:34:02 +02:00
Julien Lepiller
728d5b6b06
gnu: Add ocaml-lablgtk3-sourceview3.
...
* gnu/packages/ocaml.scm (ocaml-lablgtk3-sourceview3): New variable.
2022-09-22 07:33:56 +02:00
Leo Famulari
33d4992b69
gnu: linux-libre 4.9: Update to 4.9.239.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.239.
(linux-libre-4.9-pristine-source): Update hash.
2022-09-21 22:25:51 -04:00
Leo Famulari
51778457c8
gnu: linux-libre 4.14: Update to 4.14.294.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.294.
(linux-libre-4.14-pristine-source): Update hash.
2022-09-21 22:25:51 -04:00
Leo Famulari
34a4f4ba2e
gnu: linux-libre 4.19: Update to 4.19.259.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.259.
(linux-libre-4.19-pristine-source): Update hash.
2022-09-21 22:25:51 -04:00
Leo Famulari
c8e1d21fe4
gnu: linux-libre 5.4: Update to 5.4.214.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.214.
(linux-libre-5.4-pristine-source): Update hash.
2022-09-21 22:25:50 -04:00
Leo Famulari
ceec1c7f83
gnu: linux-libre 5.10: Update to 5.10.144.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.144.
(linux-libre-5.10-pristine-source): Update hash.
2022-09-21 22:25:50 -04:00
Leo Famulari
4af8cfad82
gnu: linux-libre 5.15: Update to 5.15.69.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.69.
(linux-libre-5.15-pristine-source): Update hash.
2022-09-21 22:25:50 -04:00
Leo Famulari
9b5060f7bf
gnu: linux-libre: Update to 5.19.10.
...
* gnu/packages/linux.scm (linux-libre-5.19-version): Update to 5.19.10.
(linux-libre-5.19-pristine-source): Update hash.
2022-09-21 22:25:50 -04:00
arkhan
89fed46752
gnu: xonsh: Update to 0.13.3.
...
* gnu/packages/shells.scm (xonsh): Update to 0.13.3.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-09-22 10:02:38 +08:00
Rostislav Svoboda
a3fa6b1e6a
gnu: clojure-tools: Update to 1.11.1.1165.
...
* gnu/packages/clojure.scm (clojure-tools): Update to 1.11.1.1165.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-09-22 09:53:07 +08:00
Michael Rohleder
d78050c01d
gnu: xfce4-places-plugin: Update to 1.8.2.
...
* gnu/packages/xfce.scm (xfce4-places-plugin): Update to 1.8.2.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-09-22 09:44:40 +08:00
Michael Rohleder
a29cd4d911
gnu: xfce4-datetime-plugin: Update to 0.8.2.
...
* gnu/packages/xfce.scm (xfce4-datetime-plugin): Update to 0.8.2.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-09-22 09:43:32 +08:00
Michael Rohleder
83bdd835a9
gnu: xfce4-pulseaudio-plugin: Update to 0.4.5.
...
* gnu/packages/xfce.scm (xfce4-pulseaudio-plugin): Update to 0.4.5.
[arguments]: Remove unnecessary phase 'augment-cflags.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-09-22 09:41:14 +08:00
Ricardo Wurmus
1a1ff7ed8f
gnu: python-cooler: Skip broken test.
...
* gnu/packages/bioinformatics.scm (python-cooler)[arguments]: Add another
patch for tests/test_util.py.
2022-09-21 22:19:33 +02:00
Ricardo Wurmus
cd5bbb9b42
gnu: python-cooler: Do not use flake8.
...
* gnu/packages/bioinformatics.scm (python-cooler)[arguments]: Add build phase
'do-not-use-flake8.
2022-09-21 22:19:33 +02:00
Vagrant Cascadian
97e7195930
gnu: Add python-ephem.
...
* gnu/packages/astronomy.scm (python-ephem): New Variable.
Signed-off-by: Björn Höfling <bjoern.hoefling@bjoernhoefling.de >
2022-09-21 22:07:27 +02:00
Vagrant Cascadian
fff6407df3
gnu: Add python-suntime.
...
* gnu/packages/astronomy.scm (python-suntime): New variable.
Signed-off-by: Björn Höfling <bjoern.hoefling@bjoernhoefling.de >
2022-09-21 22:05:07 +02:00
Andreas Enge
6885f22375
gnu: gp2c: Update to 0.0.13.
...
* gnu/packages/algebra.scm (gp2c): Update to 0.0.13.
2022-09-21 13:29:13 +02:00
Andreas Enge
2ae22cafe7
gnu: pari-gp: Update to 2.15.0.
...
* gnu/packages/algebra.scm (pari-gp): Update to 2.15.0. Modernize syntax.
2022-09-21 13:29:13 +02:00
Hunter Jozwiak
e883ea89c6
gnu: Add espeakup.
...
* gnu/packages/accessibility.scm (espeakup): New variable.
Signed-off-by: Björn Höfling <bjoern.hoefling@bjoernhoefling.de >
2022-09-21 13:20:56 +02:00
Ricardo Wurmus
d871080a41
gnu: Add r-chromunity.
...
* gnu/packages/bioinformatics.scm (r-chromunity): New variable.
2022-09-21 11:09:46 +02:00
Ricardo Wurmus
a7f6392caa
gnu: Add r-skitools.
...
* gnu/packages/bioinformatics.scm (r-skitools): New variable.
2022-09-21 11:09:46 +02:00
Ricardo Wurmus
af663c9e48
gnu: Add r-gchain.
...
* gnu/packages/bioinformatics.scm (r-gchain): New variable.
2022-09-21 11:09:46 +02:00
Ricardo Wurmus
6ad4d74aca
gnu: Add r-gtrack.
...
* gnu/packages/bioinformatics.scm (r-gtrack): New variable.
2022-09-21 11:09:46 +02:00
Ricardo Wurmus
29634a4ce3
gnu: Add r-bamutils.
...
* gnu/packages/bioinformatics.scm (r-bamutils): New variable.
2022-09-21 11:09:45 +02:00
Ricardo Wurmus
4bd64dde2b
gnu: Add r-gutils.
...
* gnu/packages/bioinformatics.scm (r-gutils): New variable.
2022-09-21 11:09:41 +02:00
Artyom V. Poptsov
d4090c3027
gnu: maven-slf4j-provider: Fix style.
...
* gnu/packages/maven.scm (maven-slf4j-provider): Fix style.
Signed-off-by: Björn Höfling <bjoern.hoefling@bjoernhoefling.de >
2022-09-21 09:07:59 +02:00
Artyom V. Poptsov
79897a3701
gnu: maven-slf4j-provider: Bugfix.
...
* gnu/packages/maven.scm (maven-slf4j-provider): Bugfix: Don't use "tar" to
extract "java-slf4j-simple-source" as it is already unpacked; recursively copy
the source instead.
Signed-off-by: Björn Höfling <bjoern.hoefling@bjoernhoefling.de >
2022-09-21 09:07:54 +02:00
Hilton Chain
344405475a
gnu: telegram-desktop: Use API ID from Snap builds.
...
* gnu/packages/telegram.scm (telegram-desktop)[#:configure-flags]: Use API ID
from Telegram's official Snap builds.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-21 06:27:23 +02:00
Hilton Chain
a7164abcd0
gnu: telegram-desktop: Use modern package style.
...
* gnu/packages/telegram.scm (%telegram-version)
(cmake-helpers-for-telegram-desktop, codegen-for-telegram-desktop)
(lib-base-for-telegram-desktop, lib-crl-for-telegram-desktop)
(lib-lottie-for-telegram-desktop, lib-qr-for-telegram-desktop)
(lib-rlottie-for-telegram-desktop,lib-rpl-for-telegram-desktop)
(lib-spellcheck-for-telegram-desktop, lib-storage-for-telegram-desktop)
(lib-tl-for-telegram-desktop, lib-ui-for-telegram-desktop)
(lib-waylandshells-for-telegram-desktop, lib-webrtc-for-telegram-desktop)
(lib-webview-for-telegram-desktop, tgcalls-for-telegram-desktop): New variables.
(telegram-desktop)[arguments]: Convert to list of G-Expressions.
<#:phases>: Inline cmake-helpers-for-telegram-desktop,
codegen-for-telegram-desktop, lib-base-for-telegram-desktop,
lib-crl-for-telegram-desktop, lib-lottie-for-telegram-desktop,
lib-qr-for-telegram-desktop, lib-rlottie-for-telegram-desktop,
lib-rpl-for-telegram-desktop, lib-spellcheck-for-telegram-desktop,
lib-storage-for-telegram-desktop, lib-tl-for-telegram-desktop,
lib-ui-for-telegram-desktop, lib-waylandshells-for-telegram-desktop,
lib-webrtc-for-telegram-desktop, lib-webview-for-telegram-desktop,
and tgcalls-for-telegram-desktop.
[native-inputs]: Remove cmake-helpers. Drop labels.
[inputs]: Remove codegen-source, lib-base-source, lib-crl-source,
lib-lottie-source, lib-qr-source, lib-rlottie-source, lib-rpl-source,
lib-spellcheck-source, lib-storage-source, lib-tl-source, lib-ui-source,
lib-waylandshells-source, lib-webrtc-source, lib-webview-source and
tgcalls-source. Drop labels.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-21 06:27:23 +02:00
Hilton Chain
e76c93a56b
gnu: webrtc-for-telegram-desktop: Use modern package style.
...
* gnu/packages/telegram.scm (libvpx-for-telegram-desktop)
(libyuv-for-telegram-desktop): New variables.
(webrtc-for-telegram-desktop)[arguments]: Convert to list of G-Expressions.
Inline libvpx-for-telegram-desktop and libyuv-for-telegram-desktop.
[inputs]: Remove libvpx and libyuv. Drop labels.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-21 06:27:23 +02:00
Hilton Chain
425e4f6fcd
gnu: telegram-desktop: Delete trailing #t.
...
* gnu/packages/telegram.scm (telegram-desktop)[source]: Delete
trailing #t.
[arguments]<#:phases>: Likewise.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-21 06:26:57 +02:00
Hilton Chain
5ca7ec92f5
gnu: webrtc-for-telegram-desktop: Delete trailing #t.
...
* gnu/packages/telegram.scm (webrtc-for-telegram-desktop)[source]: Delete
trailing #t.
[arguments]<#:phases>: Likewise.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-21 06:26:57 +02:00
Sughosha
cb2d5063a0
gnu: Add gnome-console.
...
* gnu/packages/gnome.scm (gnome-console): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-21 06:26:56 +02:00
Sughosha
d6a16a1dc4
gnu: Add gnome-text-editor.
...
* gnu/packages/gnome.scm (gnome-text-editor): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-21 06:26:56 +02:00
Ricardo Wurmus
f256614891
gnu: guile-aiscm-next: Deprecate in favor of guile-aiscm.
...
* gnu/packages/machine-learning.scm (guile-aiscm-next): Define as a deprecated
name for guile-aiscm.
2022-09-20 23:57:18 +02:00
Ricardo Wurmus
0d7f2469b5
gnu: guile-aiscm: Update to 0.24.2.
...
* gnu/packages/machine-learning.scm (guile-aiscm): Update to 0.24.2.
[arguments]: Add configure flags for OpenCV modules; add build phase
'find-clearsilver; adjust phase 'use-llvm-config; add phase
'disable-broken-test.
[inputs]: Add clearsilver, libgc, opencv, and tensorflow; replace ffmpeg with
ffmpeg-4.
[native-inputs]: Add protobuf-c; replace clang-13 and llvm-13 with clang-11
and llvm-11, respectively.
2022-09-20 23:57:18 +02:00
Nicolas Goaziou
97bbb9d603
gnu: emacs-rustic: Update to 3.4.
...
* gnu/packages/emacs-xyz.scm (emacs-rustic): Update to 3.4.
2022-09-20 21:22:07 +02:00
Nicolas Goaziou
81cda4134a
gnu: emacs-repl-toggle: Update to 0.7.2.
...
* gnu/packages/emacs-xyz.scm (emacs-repl-toggle): Update to 0.7.2.
2022-09-20 21:22:07 +02:00
Nicolas Goaziou
62911821a1
gnu: emacs-boxquote: Update to 2.3.
...
* gnu/packages/emacs-xyz.scm (emacs-boxquote): Update to 2.3.
2022-09-20 21:22:06 +02:00
Morgan Smith
90a73f6569
gnu: emacs-osm: Update to 0.8.
...
* gnu/packages/emacs-xyz.scm (emacs-osm): Update to 0.8.
[arguments]<#:phases>: Add MAKEINFO phase.
[native-inputs]: Add TEXINFO.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-20 21:22:06 +02:00
pinoaffe
7c9d8b2e96
gnu: Add emacs-pdfgrep.
...
* gnu/packages/emacs-xyz.scm (emacs-pdfgrep): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-20 21:22:06 +02:00
Nicolas Goaziou
84dae49340
gnu: emacs-setup: Update to 1.3.2.
...
* gnu/packages/emacs-xyz.scm (emacs-setup): Update to 1.3.2.
2022-09-20 21:22:05 +02:00
Nicolas Goaziou
830405eb48
gnu: emacs-taxy: Update to 0.10.1.
...
* gnu/packages/emacs-xyz.scm (emacs-taxy): Update to 0.10.1.
2022-09-20 21:22:05 +02:00
Ludovic Courtès
6abdcef4a6
linux-container: 'container-excursion*' marks its FDs as FD_CLOEXEC.
...
Fixes <https://issues.guix.gnu.org/57827 >.
Reported by Mathieu Othacehe <othacehe@gnu.org >.
Fixes a regression introduced with the Shepherd 0.9.2 upgrade in
1ba0e38267 , whereby IN and OUT would no
longer be closed when 'fork+exec-command/container' would call
'exec-command*' as part of the THUNK passed to 'container-excursion*'.
This is because the Shepherd 0.9.2 assumes file descriptors are properly
marked as O_CLOEXEC and, consequently, 'exec-command' no longer run the
close(2) loop prior to 'exec'.
* gnu/build/linux-container.scm (container-excursion*): Add calls to
'fcntl'.
2022-09-20 19:24:31 +02:00
Ludovic Courtès
76c58ed59c
home: import: Use (guix read-print) to render the config file.
...
* guix/scripts/home/import.scm (manifest+configuration-files->code):
Insert calls to 'comment' and 'vertical-space'.
(import-manifest): Use 'pretty-print-with-comments/splice' instead of a
loop on 'pretty-print'.
* tests/home-import.scm (remove-recursively): New procedure.
(eval-test-with-home-environment): Use it.
2022-09-20 19:24:31 +02:00
Ludovic Courtès
d0a1e48944
read-print: Add rule for 'home-bash-configuration'.
...
* guix/read-print.scm (%newline-forms): Add 'home-bash-configuration'.
2022-09-20 19:24:31 +02:00
Ludovic Courtès
7a698da0d0
read-print: Correctly support multiple same-named newline forms.
...
Previously (home-environment (services ...)) would not be considered a
"newline form". This fixes it.
* guix/read-print.scm (newline-form?): Use 'vhash-foldq*' instead of
'vhash-assq' and iterate over candidates.
* tests/read-print.scm: Add test.
2022-09-20 19:24:31 +02:00
Ludovic Courtès
818220f1cc
weather: Actually show the weather.
...
* guix/scripts/weather.scm (report-server-coverage): Show a weather icon.
2022-09-20 19:24:31 +02:00
Ricardo Wurmus
8084e3bdb3
gnu: python-pyvcf: Update to 0.6.8-0.476169c.
...
* gnu/packages/bioinformatics.scm (python-pyvcf): Update to 0.6.8-0.476169c.
2022-09-20 17:02:34 +02:00
Ricardo Wurmus
9ed635cd9a
gnu: python-pyvcf: Use older setuptools.
...
* gnu/packages/bioinformatics.scm (python-pyvcf)[native-inputs]: Replace
python-setuptools with python-setuptools-for-tensorflow.
2022-09-20 17:02:34 +02:00
Ricardo Wurmus
87a9f03b32
gnu: r-mlr3ordinal: Update to 0.1.0-9000-1.736e3a3.
...
* gnu/packages/cran.scm (r-mlr3ordinal): Update to 0.1.0-9000-1.736e3a3.
2022-09-20 17:02:33 +02:00
Ricardo Wurmus
ec92bcaadd
import/cran: description->package: Use COND and computed booleans.
...
* guix/import/cran.scm (description->package): Use COND with previously
computed booleans instead of using CASE on REPOSITORY.
2022-09-20 17:02:33 +02:00
Ricardo Wurmus
8c620a6036
import/cran: download: Accept optional REF argument.
...
* guix/import/cran.scm (download): Accept REF argument for git downloads.
2022-09-20 17:02:33 +02:00
Ricardo Wurmus
f8f3cffedc
gnu: r-desctools: Update to 0.99.46.
...
* gnu/packages/statistics.scm (r-desctools): Update to 0.99.46.
2022-09-20 17:02:33 +02:00
Ricardo Wurmus
659efed5c1
gnu: r-clubsandwich: Update to 0.5.8.
...
* gnu/packages/statistics.scm (r-clubsandwich): Update to 0.5.8.
2022-09-20 17:02:33 +02:00
Ricardo Wurmus
18df77f876
gnu: r-forcats: Update to 0.5.2.
...
* gnu/packages/statistics.scm (r-forcats): Update to 0.5.2.
[propagated-inputs]: Add r-cli, r-glue, r-lifecycle, and r-withr.
2022-09-20 17:02:33 +02:00
Ricardo Wurmus
16c2f27750
gnu: r-sn: Update to 2.1.0.
...
* gnu/packages/statistics.scm (r-sn): Update to 2.1.0.
2022-09-20 17:02:33 +02:00
Ricardo Wurmus
48e46212c5
gnu: r-matrixmodels: Update to 0.5-1.
...
* gnu/packages/statistics.scm (r-matrixmodels): Update to 0.5-1.
2022-09-20 17:02:33 +02:00
Ricardo Wurmus
3c35d95b32
gnu: r-rrcov: Update to 1.7-1.
...
* gnu/packages/statistics.scm (r-rrcov): Update to 1.7-1.
2022-09-20 17:02:33 +02:00
Ricardo Wurmus
04511fa0de
gnu: r-statmod: Update to 1.4.37.
...
* gnu/packages/statistics.scm (r-statmod): Update to 1.4.37.
2022-09-20 17:02:32 +02:00
Ricardo Wurmus
8313464be6
gnu: r-hmisc: Update to 4.7-1.
...
* gnu/packages/statistics.scm (r-hmisc): Update to 4.7-1.
2022-09-20 17:02:32 +02:00
Ricardo Wurmus
2d34ff8133
gnu: r-base64: Update to 2.0.1.
...
* gnu/packages/statistics.scm (r-base64): Update to 2.0.1.
2022-09-20 17:02:32 +02:00
Ricardo Wurmus
b02b5544f2
gnu: r-tidyr: Update to 1.2.1.
...
* gnu/packages/statistics.scm (r-tidyr): Update to 1.2.1.
2022-09-20 17:02:32 +02:00
Ricardo Wurmus
5667e371fa
gnu: r-viridislite: Update to 0.4.1.
...
* gnu/packages/statistics.scm (r-viridislite): Update to 0.4.1.
2022-09-20 17:02:32 +02:00
Ricardo Wurmus
aa0865e8cc
gnu: r-rsqlite: Update to 2.2.17.
...
* gnu/packages/statistics.scm (r-rsqlite): Update to 2.2.17.
2022-09-20 17:02:32 +02:00
Ricardo Wurmus
734f64aa17
gnu: r-gtable: Update to 0.3.1.
...
* gnu/packages/statistics.scm (r-gtable): Update to 0.3.1.
[native-inputs]: Add r-knitr.
2022-09-20 17:02:32 +02:00
Ricardo Wurmus
855bd834c3
gnu: r-rmarkdown: Update to 2.16.
...
* gnu/packages/statistics.scm (r-rmarkdown): Update to 2.16.
2022-09-20 17:02:32 +02:00
Ricardo Wurmus
44ab19f623
gnu: r-rcpparmadillo: Update to 0.11.2.4.0.
...
* gnu/packages/statistics.scm (r-rcpparmadillo): Update to 0.11.2.4.0.
2022-09-20 17:02:32 +02:00
Ricardo Wurmus
7aba12b6d9
gnu: r-hms: Update to 1.1.2.
...
* gnu/packages/statistics.scm (r-hms): Update to 1.1.2.
2022-09-20 17:02:32 +02:00
Ricardo Wurmus
beb7ddb41d
gnu: r-rstudioapi: Update to 0.14.
...
* gnu/packages/statistics.scm (r-rstudioapi): Update to 0.14.
2022-09-20 17:02:31 +02:00
Ricardo Wurmus
0fd63d8584
gnu: r-httr: Update to 1.4.4.
...
* gnu/packages/statistics.scm (r-httr): Update to 1.4.4.
2022-09-20 17:02:31 +02:00
Ricardo Wurmus
06943cf4f1
gnu: r-openssl: Update to 2.0.3.
...
* gnu/packages/statistics.scm (r-openssl): Update to 2.0.3.
2022-09-20 17:02:31 +02:00
Ricardo Wurmus
f0a4672485
gnu: r-desc: Update to 1.4.2.
...
* gnu/packages/statistics.scm (r-desc): Update to 1.4.2.
2022-09-20 17:02:31 +02:00
Ricardo Wurmus
aaeaef0d01
gnu: r-rversions: Update to 2.1.2.
...
* gnu/packages/statistics.scm (r-rversions): Update to 2.1.2.
2022-09-20 17:02:31 +02:00
Ricardo Wurmus
b903dcd55c
gnu: r-dplyr: Update to 1.0.10.
...
* gnu/packages/statistics.scm (r-dplyr): Update to 1.0.10.
2022-09-20 17:02:31 +02:00
Ricardo Wurmus
89251a114f
gnu: r-rlang: Update to 1.0.5.
...
* gnu/packages/statistics.scm (r-rlang): Update to 1.0.5.
2022-09-20 17:02:31 +02:00
Ricardo Wurmus
68552107e9
gnu: r-knitr: Update to 1.40.
...
* gnu/packages/statistics.scm (r-knitr): Update to 1.40.
2022-09-20 17:02:31 +02:00
Ricardo Wurmus
6e47b0f88e
gnu: r-evaluate: Update to 0.16.
...
* gnu/packages/statistics.scm (r-evaluate): Update to 0.16.
2022-09-20 17:02:31 +02:00
Ricardo Wurmus
911224970d
gnu: r-stringr: Update to 1.4.1.
...
* gnu/packages/statistics.scm (r-stringr): Update to 1.4.1.
2022-09-20 17:02:31 +02:00
Ricardo Wurmus
3325cf689a
gnu: r-survival: Update to 3.4-0.
...
* gnu/packages/statistics.scm (r-survival): Update to 3.4-0.
2022-09-20 17:02:30 +02:00
Ricardo Wurmus
fb381189f7
gnu: r-nlme: Update to 3.1-159.
...
* gnu/packages/statistics.scm (r-nlme): Update to 3.1-159.
2022-09-20 17:02:30 +02:00
Ricardo Wurmus
9e282c408c
gnu: r-matrix: Update to 1.5-1.
...
* gnu/packages/statistics.scm (r-matrix): Update to 1.5-1.
2022-09-20 17:02:30 +02:00
Ricardo Wurmus
b1d59cb30b
gnu: r-cluster: Update to 2.1.4.
...
* gnu/packages/statistics.scm (r-cluster): Update to 2.1.4.
2022-09-20 17:02:30 +02:00
Ricardo Wurmus
8435311ea6
gnu: r-ggh4x: Update to 0.2.2.
...
* gnu/packages/cran.scm (r-ggh4x): Update to 0.2.2.
[propagated-inputs]: Add r-cli and r-lifecycle.
2022-09-20 17:02:30 +02:00
Ricardo Wurmus
f41628ed86
gnu: r-wordspace: Update to 0.2-8.
...
* gnu/packages/cran.scm (r-wordspace): Update to 0.2-8.
2022-09-20 17:02:30 +02:00
Ricardo Wurmus
3bb3bc8553
gnu: r-webmockr: Update to 0.8.2.
...
* gnu/packages/cran.scm (r-webmockr): Update to 0.8.2.
2022-09-20 17:02:30 +02:00
Ricardo Wurmus
32b429800b
gnu: r-crul: Update to 1.3.
...
* gnu/packages/cran.scm (r-crul): Update to 1.3.
2022-09-20 17:02:29 +02:00
Ricardo Wurmus
3f45830596
gnu: r-zoolog: Update to 1.1.0.
...
* gnu/packages/cran.scm (r-zoolog): Update to 1.1.0.
2022-09-20 17:02:29 +02:00
Ricardo Wurmus
af8dfcee5c
gnu: r-paws-compute: Update to 0.1.13.
...
* gnu/packages/cran.scm (r-paws-compute): Update to 0.1.13.
2022-09-20 17:02:29 +02:00
Ricardo Wurmus
3336c70a5f
gnu: r-paws-common: Update to 0.5.0.
...
* gnu/packages/cran.scm (r-paws-common): Update to 0.5.0.
[propagated-inputs]: Add r-rcpp.
2022-09-20 17:02:29 +02:00
Ricardo Wurmus
854025663c
gnu: r-tfruns: Update to 1.5.1.
...
* gnu/packages/cran.scm (r-tfruns): Update to 1.5.1.
2022-09-20 17:02:29 +02:00
Ricardo Wurmus
83ccde1d38
gnu: r-qs: Update to 0.25.4.
...
* gnu/packages/cran.scm (r-qs): Update to 0.25.4.
2022-09-20 17:02:29 +02:00
Ricardo Wurmus
ce4774f0ec
gnu: r-rapiserialize: Update to 0.1.2.
...
* gnu/packages/cran.scm (r-rapiserialize): Update to 0.1.2.
2022-09-20 17:02:29 +02:00
Ricardo Wurmus
381f145df7
gnu: r-exactextractr: Update to 0.9.0.
...
* gnu/packages/cran.scm (r-exactextractr): Update to 0.9.0.
2022-09-20 17:02:29 +02:00
Ricardo Wurmus
c4ffadb1e4
gnu: r-gganimate: Update to 1.0.8.
...
* gnu/packages/cran.scm (r-gganimate): Update to 1.0.8.
[propagated-inputs]: Remove r-plyr.
2022-09-20 17:02:28 +02:00
Ricardo Wurmus
4632498971
gnu: r-delaporte: Update to 8.0.3.
...
* gnu/packages/cran.scm (r-delaporte): Update to 8.0.3.
2022-09-20 17:02:28 +02:00
Ricardo Wurmus
28747e5f45
gnu: r-mlr3tuning: Update to 0.14.0.
...
* gnu/packages/cran.scm (r-mlr3tuning): Update to 0.14.0.
2022-09-20 17:02:28 +02:00
Ricardo Wurmus
ac232fe3d0
gnu: r-bbotk: Update to 0.5.4.
...
* gnu/packages/cran.scm (r-bbotk): Update to 0.5.4.
2022-09-20 17:02:28 +02:00
Ricardo Wurmus
8a242a64e1
gnu: r-mlr3learners: Update to 0.5.4.
...
* gnu/packages/cran.scm (r-mlr3learners): Update to 0.5.4.
2022-09-20 17:02:28 +02:00
Ricardo Wurmus
8760fc2a88
gnu: r-mlr3: Update to 0.14.0.
...
* gnu/packages/cran.scm (r-mlr3): Update to 0.14.0.
2022-09-20 17:02:28 +02:00
Ricardo Wurmus
0822d26eb8
gnu: r-lgr: Update to 0.4.4.
...
* gnu/packages/cran.scm (r-lgr): Update to 0.4.4.
2022-09-20 17:02:28 +02:00
Ricardo Wurmus
6658442cc1
gnu: r-calculus: Update to 0.3.4.
...
* gnu/packages/cran.scm (r-calculus): Update to 0.3.4.
2022-09-20 17:02:28 +02:00
Ricardo Wurmus
ac19f68dde
gnu: r-phangorn: Update to 2.10.0.
...
* gnu/packages/cran.scm (r-phangorn): Update to 2.10.0.
[propagated-inputs]: Add r-digest.
2022-09-20 17:02:27 +02:00
Ricardo Wurmus
cccad5eedd
gnu: r-seuratobject: Update to 4.1.1.
...
* gnu/packages/cran.scm (r-seuratobject): Update to 4.1.1.
2022-09-20 17:02:27 +02:00
Ricardo Wurmus
36faa3e971
gnu: r-altmeta: Update to 4.1.
...
* gnu/packages/cran.scm (r-altmeta): Update to 4.1.
2022-09-20 17:02:27 +02:00
Ricardo Wurmus
d7b2231319
gnu: r-metafor: Update to 3.8-1.
...
* gnu/packages/cran.scm (r-metafor): Update to 3.8-1.
2022-09-20 17:02:27 +02:00
Ricardo Wurmus
5078622ffa
gnu: r-modeldata: Update to 1.0.1.
...
* gnu/packages/cran.scm (r-modeldata): Update to 1.0.1.
2022-09-20 17:02:27 +02:00
Ricardo Wurmus
a2a8615d3e
gnu: r-infer: Update to 1.0.3.
...
* gnu/packages/cran.scm (r-infer): Update to 1.0.3.
2022-09-20 17:02:27 +02:00
Ricardo Wurmus
706d117c58
gnu: r-parsnip: Update to 1.0.1.
...
* gnu/packages/cran.scm (r-parsnip): Update to 1.0.1.
2022-09-20 17:02:27 +02:00
Ricardo Wurmus
ca687072c2
gnu: r-tidytext: Update to 0.3.4.
...
* gnu/packages/cran.scm (r-tidytext): Update to 0.3.4.
2022-09-20 17:02:27 +02:00
Ricardo Wurmus
e919e4561e
gnu: r-hunspell: Update to 3.0.2.
...
* gnu/packages/cran.scm (r-hunspell): Update to 3.0.2.
2022-09-20 17:02:27 +02:00
Ricardo Wurmus
602ba03fa7
gnu: r-janeaustenr: Update to 1.0.0.
...
* gnu/packages/cran.scm (r-janeaustenr): Update to 1.0.0.
2022-09-20 17:02:26 +02:00
Ricardo Wurmus
cd16977b72
gnu: r-scico: Update to 1.3.1.
...
* gnu/packages/cran.scm (r-scico): Update to 1.3.1.
2022-09-20 17:02:26 +02:00
Ricardo Wurmus
024871933c
gnu: r-yardstick: Update to 1.1.0.
...
* gnu/packages/cran.scm (r-yardstick): Update to 1.1.0.
2022-09-20 17:02:26 +02:00
Ricardo Wurmus
ea03352e0a
gnu: r-iml: Update to 0.11.1.
...
* gnu/packages/cran.scm (r-iml): Update to 0.11.1.
2022-09-20 17:02:26 +02:00
Ricardo Wurmus
8a3b2bd804
gnu: r-conquer: Update to 1.3.1.
...
* gnu/packages/cran.scm (r-conquer): Update to 1.3.1.
2022-09-20 17:02:26 +02:00
Ricardo Wurmus
92ec2cdd44
gnu: r-rselenium: Update to 1.7.9.
...
* gnu/packages/cran.scm (r-rselenium): Update to 1.7.9.
[propagated-inputs]: Remove r-binman, r-openssl, and r-xml.
2022-09-20 17:02:26 +02:00
Ricardo Wurmus
8120ce3527
gnu: r-wdman: Update to 0.2.6.
...
* gnu/packages/cran.scm (r-wdman): Update to 0.2.6.
2022-09-20 17:02:26 +02:00
Ricardo Wurmus
77082a3302
gnu: r-binman: Update to 0.1.3.
...
* gnu/packages/cran.scm (r-binman): Update to 0.1.3.
2022-09-20 17:02:26 +02:00
Ricardo Wurmus
72e5d0fe2d
gnu: r-scatterpie: Update to 0.1.8.
...
* gnu/packages/cran.scm (r-scatterpie): Update to 0.1.8.
2022-09-20 17:02:26 +02:00
Ricardo Wurmus
897c62ad00
gnu: r-posterior: Update to 1.3.1.
...
* gnu/packages/cran.scm (r-posterior): Update to 1.3.1.
2022-09-20 17:02:26 +02:00
Ricardo Wurmus
8b0e24e3e3
gnu: r-distributional: Update to 0.3.1.
...
* gnu/packages/cran.scm (r-distributional): Update to 0.3.1.
[propagated-inputs]: Remove r-ellipsis.
2022-09-20 17:02:25 +02:00
Ricardo Wurmus
4eabf31e36
gnu: r-projpred: Update to 2.2.0.
...
* gnu/packages/cran.scm (r-projpred): Update to 2.2.0.
2022-09-20 17:02:25 +02:00
Ricardo Wurmus
da4342ff53
gnu: r-latex2exp: Update to 0.9.5.
...
* gnu/packages/cran.scm (r-latex2exp): Update to 0.9.5.
2022-09-20 17:02:25 +02:00
Ricardo Wurmus
47a07d6c36
gnu: r-zseq: Update to 0.2.1.
...
* gnu/packages/cran.scm (r-zseq): Update to 0.2.1.
2022-09-20 17:02:25 +02:00
Ricardo Wurmus
4a124387c1
gnu: r-rstan: Update to 2.21.7.
...
* gnu/packages/cran.scm (r-rstan): Update to 2.21.7.
2022-09-20 17:02:25 +02:00
Ricardo Wurmus
c85630d207
gnu: r-tam: Update to 4.1-4.
...
* gnu/packages/cran.scm (r-tam): Update to 4.1-4.
2022-09-20 17:02:25 +02:00
Ricardo Wurmus
c1bf0bd4a6
gnu: r-cdm: Update to 8.2-6.
...
* gnu/packages/cran.scm (r-cdm): Update to 8.2-6.
2022-09-20 17:02:25 +02:00
Ricardo Wurmus
7469dc9b85
gnu: r-semplot: Update to 1.1.6.
...
* gnu/packages/cran.scm (r-semplot): Update to 1.1.6.
2022-09-20 17:02:25 +02:00
Ricardo Wurmus
b311dffdfb
gnu: r-regsem: Update to 1.9.3.
...
* gnu/packages/cran.scm (r-regsem): Update to 1.9.3.
2022-09-20 17:02:24 +02:00
Ricardo Wurmus
15ea8ca8ec
gnu: r-matrixextra: Update to 0.1.13.
...
* gnu/packages/cran.scm (r-matrixextra): Update to 0.1.13.
2022-09-20 17:02:24 +02:00
Ricardo Wurmus
d7e41a6251
gnu: r-matrixcalc: Update to 1.0-6.
...
* gnu/packages/cran.scm (r-matrixcalc): Update to 1.0-6.
2022-09-20 17:02:24 +02:00
Ricardo Wurmus
8643467fe3
gnu: r-quanteda: Update to 3.2.3.
...
* gnu/packages/cran.scm (r-quanteda): Update to 3.2.3.
2022-09-20 17:02:24 +02:00
Ricardo Wurmus
96a3a300c6
gnu: r-proxyc: Update to 0.3.2.
...
* gnu/packages/cran.scm (r-proxyc): Update to 0.3.2.
2022-09-20 17:02:24 +02:00
Ricardo Wurmus
8ebb59f598
gnu: r-qqconf: Update to 1.3.0.
...
* gnu/packages/cran.scm (r-qqconf): Update to 1.3.0.
[propagated-inputs]: Remove r-dplyr, r-magrittr, and r-rlang.
2022-09-20 17:02:24 +02:00
Ricardo Wurmus
f1896a804a
gnu: r-anndata: Update to 0.7.5.4.
...
* gnu/packages/cran.scm (r-anndata): Update to 0.7.5.4.
2022-09-20 17:02:24 +02:00
Ricardo Wurmus
b43a9a1e52
gnu: r-caret: Update to 6.0-93.
...
* gnu/packages/cran.scm (r-caret): Update to 6.0-93.
2022-09-20 17:02:24 +02:00
Ricardo Wurmus
5e3b1e75f7
gnu: r-gdina: Update to 2.9.3.
...
* gnu/packages/cran.scm (r-gdina): Update to 2.9.3.
[propagated-inputs]: Add r-nloptr.
2022-09-20 17:02:23 +02:00
Ricardo Wurmus
7739531995
gnu: r-randtoolbox: Update to 2.0.2.
...
* gnu/packages/cran.scm (r-randtoolbox): Update to 2.0.2.
2022-09-20 17:02:23 +02:00
Ricardo Wurmus
eca7c73a47
gnu: r-accsda: Update to 1.1.2.
...
* gnu/packages/cran.scm (r-accsda): Update to 1.1.2.
2022-09-20 17:02:23 +02:00
Ricardo Wurmus
1ac8852caa
gnu: r-pmcmrplus: Update to 1.9.6.
...
* gnu/packages/cran.scm (r-pmcmrplus): Update to 1.9.6.
2022-09-20 17:02:23 +02:00
Ricardo Wurmus
07de724b82
gnu: r-lifecycle: Update to 1.0.2.
...
* gnu/packages/cran.scm (r-lifecycle): Update to 1.0.2.
2022-09-20 17:02:23 +02:00
Ricardo Wurmus
2988d6859a
gnu: r-parameters: Update to 0.18.2.
...
* gnu/packages/cran.scm (r-parameters): Update to 0.18.2.
2022-09-20 17:02:23 +02:00
Ricardo Wurmus
1755c577bd
gnu: r-tidygraph: Update to 1.2.2.
...
* gnu/packages/cran.scm (r-tidygraph): Update to 1.2.2.
2022-09-20 17:02:23 +02:00
Ricardo Wurmus
01e279bb8b
gnu: r-terra: Update to 1.6-17.
...
* gnu/packages/cran.scm (r-terra): Update to 1.6-17.
2022-09-20 17:02:23 +02:00
Ricardo Wurmus
294e5589b9
gnu: r-graphlayouts: Update to 0.8.1.
...
* gnu/packages/cran.scm (r-graphlayouts): Update to 0.8.1.
2022-09-20 17:02:22 +02:00
Ricardo Wurmus
9686a975c7
gnu: r-covr: Update to 3.6.1.
...
* gnu/packages/cran.scm (r-covr): Update to 3.6.1.
2022-09-20 17:02:22 +02:00
Ricardo Wurmus
e434557c5a
gnu: r-patchwork: Update to 1.1.2.
...
* gnu/packages/cran.scm (r-patchwork): Update to 1.1.2.
2022-09-20 17:02:22 +02:00
Ricardo Wurmus
d7b35febfc
gnu: r-leiden: Update to 0.4.3.
...
* gnu/packages/cran.scm (r-leiden): Update to 0.4.3.
2022-09-20 17:02:22 +02:00
Ricardo Wurmus
e133664c54
gnu: r-uwot: Update to 0.1.14.
...
* gnu/packages/cran.scm (r-uwot): Update to 0.1.14.
[propagated-inputs]: Remove r-rspectra.
2022-09-20 17:02:22 +02:00
Ricardo Wurmus
4db93ca44b
gnu: r-umap: Update to 0.2.9.0.
...
* gnu/packages/cran.scm (r-umap): Update to 0.2.9.0.
2022-09-20 17:02:22 +02:00
Ricardo Wurmus
c9e6f29960
gnu: r-enrichr: Update to 3.1.
...
* gnu/packages/cran.scm (r-enrichr): Update to 3.1.
[propagated-inputs]: Add r-curl.
2022-09-20 17:02:22 +02:00
Ricardo Wurmus
3e9da8520d
gnu: r-sctransform: Update to 0.3.4.
...
* gnu/packages/cran.scm (r-sctransform): Update to 0.3.4.
2022-09-20 17:02:22 +02:00
Ricardo Wurmus
544479ba7d
gnu: r-lintr: Update to 3.0.1.
...
* gnu/packages/cran.scm (r-lintr): Update to 3.0.1.
2022-09-20 17:02:21 +02:00
Ricardo Wurmus
c027f3ce98
gnu: r-text2vec: Update to 0.6.2.
...
* gnu/packages/cran.scm (r-text2vec): Update to 0.6.2.
2022-09-20 17:02:21 +02:00
Ricardo Wurmus
25013b0ffd
gnu: r-rsparse: Update to 0.5.1.
...
* gnu/packages/cran.scm (r-rsparse): Update to 0.5.1.
2022-09-20 17:02:21 +02:00
Ricardo Wurmus
47676e6b9e
gnu: r-aplot: Update to 0.1.7.
...
* gnu/packages/cran.scm (r-aplot): Update to 0.1.7.
2022-09-20 17:02:21 +02:00
Ricardo Wurmus
12fca73dd8
gnu: r-ggtext: Update to 0.1.2.
...
* gnu/packages/cran.scm (r-ggtext): Update to 0.1.2.
2022-09-20 17:02:21 +02:00
Ricardo Wurmus
bcc7969a95
gnu: r-gridtext: Update to 0.1.5.
...
* gnu/packages/cran.scm (r-gridtext): Update to 0.1.5.
[propagated-inputs]: Remove r-rcurl; add r-curl.
2022-09-20 17:02:21 +02:00
Ricardo Wurmus
c47618d453
gnu: r-ggfun: Update to 0.0.7.
...
* gnu/packages/cran.scm (r-ggfun): Update to 0.0.7.
2022-09-20 17:02:21 +02:00
Ricardo Wurmus
3abd67e6cb
gnu: r-gbm: Update to 2.1.8.1.
...
* gnu/packages/cran.scm (r-gbm): Update to 2.1.8.1.
2022-09-20 17:02:20 +02:00
Ricardo Wurmus
ac9c3bee73
gnu: r-ggforce: Update to 0.3.4.
...
* gnu/packages/cran.scm (r-ggforce): Update to 0.3.4.
[propagated-inputs]: Add r-lifecycle.
2022-09-20 17:02:20 +02:00
Ricardo Wurmus
d414bb103b
gnu: r-tweenr: Update to 2.0.2.
...
* gnu/packages/cran.scm (r-tweenr): Update to 2.0.2.
[propagated-inputs]: Remove r-rcpp; add r-cpp11 and r-vctrs.
2022-09-20 17:02:20 +02:00
Ricardo Wurmus
43f4a370a3
gnu: r-bookdown: Update to 0.29.
...
* gnu/packages/cran.scm (r-bookdown): Update to 0.29.
2022-09-20 17:02:20 +02:00
Ricardo Wurmus
ef1b6a6318
gnu: r-spdep: Update to 1.2-5.
...
* gnu/packages/cran.scm (r-spdep): Update to 1.2-5.
2022-09-20 17:02:20 +02:00
Ricardo Wurmus
7e93dbc2bb
gnu: r-spdata: Update to 2.2.0.
...
* gnu/packages/cran.scm (r-spdata): Update to 2.2.0.
[propagated-inputs]: Remove r-raster.
2022-09-20 17:02:20 +02:00
Ricardo Wurmus
e44e07965c
gnu: r-gamlss-dist: Update to 6.0-5.
...
* gnu/packages/cran.scm (r-gamlss-dist): Update to 6.0-5.
2022-09-20 17:02:20 +02:00
Ricardo Wurmus
7b797d4a70
gnu: r-blockmodeling: Update to 1.1.3.
...
* gnu/packages/cran.scm (r-blockmodeling): Update to 1.1.3.
2022-09-20 17:02:19 +02:00
Ricardo Wurmus
36ab34a539
gnu: r-future-apply: Update to 1.9.1.
...
* gnu/packages/cran.scm (r-future-apply): Update to 1.9.1.
2022-09-20 17:02:19 +02:00
Ricardo Wurmus
7f220c890a
gnu: r-future: Update to 1.28.0.
...
* gnu/packages/cran.scm (r-future): Update to 1.28.0.
2022-09-20 17:02:19 +02:00
Ricardo Wurmus
ae15cb2141
gnu: r-globals: Update to 0.16.1.
...
* gnu/packages/cran.scm (r-globals): Update to 0.16.1.
2022-09-20 17:02:19 +02:00
Ricardo Wurmus
110c53067c
gnu: r-fields: Update to 14.1.
...
* gnu/packages/cran.scm (r-fields): Update to 14.1.
2022-09-20 17:02:19 +02:00
Ricardo Wurmus
1cd0e82a5f
gnu: r-gmp: Update to 0.6-6.
...
* gnu/packages/cran.scm (r-gmp): Update to 0.6-6.
2022-09-20 17:02:19 +02:00
Ricardo Wurmus
0d032e48e8
gnu: r-gargle: Update to 1.2.1.
...
* gnu/packages/cran.scm (r-gargle): Update to 1.2.1.
2022-09-20 17:02:19 +02:00
Ricardo Wurmus
b6bb01e680
gnu: r-ontologyindex: Update to 2.10.
...
* gnu/packages/cran.scm (r-ontologyindex): Update to 2.10.
2022-09-20 17:02:19 +02:00
Ricardo Wurmus
8cce3f51fc
gnu: r-als: Update to 0.0.7.
...
* gnu/packages/cran.scm (r-als): Update to 0.0.7.
2022-09-20 17:02:18 +02:00
Ricardo Wurmus
3c43993891
gnu: r-tractor-base: Update to 3.3.5.1.
...
* gnu/packages/cran.scm (r-tractor-base): Update to 3.3.5.1.
2022-09-20 17:02:18 +02:00
Ricardo Wurmus
45ad4c4c87
gnu: r-sparsesvd: Update to 0.2-1.
...
* gnu/packages/cran.scm (r-sparsesvd): Update to 0.2-1.
2022-09-20 17:02:18 +02:00
Ricardo Wurmus
5f65744b7d
gnu: r-tidytree: Update to 0.4.0.
...
* gnu/packages/cran.scm (r-tidytree): Update to 0.4.0.
2022-09-20 17:02:18 +02:00
Ricardo Wurmus
2e87c2e76c
gnu: r-waveslim: Update to 1.8.4.
...
* gnu/packages/cran.scm (r-waveslim): Update to 1.8.4.
2022-09-20 17:02:18 +02:00
Ricardo Wurmus
abb5525ffe
gnu: r-admisc: Update to 0.30.
...
* gnu/packages/cran.scm (r-admisc): Update to 0.30.
2022-09-20 17:02:18 +02:00
Ricardo Wurmus
941500d6ec
gnu: r-arm: Update to 1.13-1.
...
* gnu/packages/cran.scm (r-arm): Update to 1.13-1.
2022-09-20 17:02:18 +02:00
Ricardo Wurmus
9dbbd84bac
gnu: r-rcppalgos: Update to 2.6.0.
...
* gnu/packages/cran.scm (r-rcppalgos): Update to 2.6.0.
2022-09-20 17:02:18 +02:00
Ricardo Wurmus
09ed52404b
gnu: r-chk: Update to 0.8.1.
...
* gnu/packages/cran.scm (r-chk): Update to 0.8.1.
2022-09-20 17:02:18 +02:00
Ricardo Wurmus
e9eb863bde
gnu: r-tweedie: Update to 2.3.5.
...
* gnu/packages/cran.scm (r-tweedie): Update to 2.3.5.
2022-09-20 17:02:17 +02:00
Ricardo Wurmus
8766e41ecf
gnu: r-gert: Update to 1.9.0.
...
* gnu/packages/cran.scm (r-gert): Update to 1.9.0.
2022-09-20 17:02:17 +02:00
Ricardo Wurmus
53d46b7a83
gnu: r-gh: Update to 1.3.1.
...
* gnu/packages/cran.scm (r-gh): Update to 1.3.1.
2022-09-20 17:02:17 +02:00
Ricardo Wurmus
0045ed1e32
gnu: r-gitcreds: Update to 0.1.2.
...
* gnu/packages/cran.scm (r-gitcreds): Update to 0.1.2.
2022-09-20 17:02:17 +02:00
Ricardo Wurmus
a4f40ff0ba
gnu: r-effectsize: Update to 0.7.0.5.
...
* gnu/packages/cran.scm (r-effectsize): Update to 0.7.0.5.
2022-09-20 17:02:17 +02:00
Ricardo Wurmus
523f82ffd0
gnu: r-performance: Update to 0.9.2.
...
* gnu/packages/cran.scm (r-performance): Update to 0.9.2.
2022-09-20 17:02:17 +02:00
Ricardo Wurmus
12aba62c33
gnu: r-bayestestr: Update to 0.13.0.
...
* gnu/packages/cran.scm (r-bayestestr): Update to 0.13.0.
2022-09-20 17:02:17 +02:00
Ricardo Wurmus
e6dc7908cc
gnu: r-tmb: Update to 1.9.1.
...
* gnu/packages/cran.scm (r-tmb): Update to 1.9.1.
2022-09-20 17:02:17 +02:00
Ricardo Wurmus
4d1620474b
gnu: r-emmeans: Update to 1.8.1-1.
...
* gnu/packages/cran.scm (r-emmeans): Update to 1.8.1-1.
2022-09-20 17:02:16 +02:00
Ricardo Wurmus
4b4415a9d7
gnu: r-furrr: Update to 0.3.1.
...
* gnu/packages/cran.scm (r-furrr): Update to 0.3.1.
2022-09-20 17:02:16 +02:00
Ricardo Wurmus
5a5e52e919
gnu: r-mosaic: Update to 1.8.4.
...
* gnu/packages/cran.scm (r-mosaic): Update to 1.8.4.
[propagated-inputs]: Remove r-broom, r-ggdendro, r-ggrepel, r-ggridges, r-ggstance,
r-glue, r-gridextra, r-latticeextra, r-leaflet, and r-readr; add
r-purrr.
2022-09-20 17:02:16 +02:00
Ricardo Wurmus
eb148988b0
gnu: r-raster: Update to 3.6-3.
...
* gnu/packages/cran.scm (r-raster): Update to 3.6-3.
2022-09-20 17:02:16 +02:00
Ricardo Wurmus
f9e5d17bb4
gnu: r-mosaicdata: Update to 0.20.3.
...
* gnu/packages/cran.scm (r-mosaicdata): Update to 0.20.3.
2022-09-20 17:02:16 +02:00
Ricardo Wurmus
923bc62935
gnu: r-ggformula: Update to 0.10.2.
...
* gnu/packages/cran.scm (r-ggformula): Update to 0.10.2.
2022-09-20 17:02:16 +02:00
Ricardo Wurmus
784a5d05fe
gnu: r-labelled: Update to 2.10.0.
...
* gnu/packages/cran.scm (r-labelled): Update to 2.10.0.
2022-09-20 17:02:16 +02:00
Ricardo Wurmus
fb403a147b
gnu: r-mosaiccore: Update to 0.9.2.
...
* gnu/packages/cran.scm (r-mosaiccore): Update to 0.9.2.
2022-09-20 17:02:16 +02:00
Ricardo Wurmus
143b69422a
gnu: r-abcrf: Update to 1.9.
...
* gnu/packages/cran.scm (r-abcrf): Update to 1.9.
2022-09-20 17:02:15 +02:00
Ricardo Wurmus
3d307748c7
gnu: r-flextable: Update to 0.8.0.
...
* gnu/packages/cran.scm (r-flextable): Update to 0.8.0.
2022-09-20 17:02:15 +02:00
Ricardo Wurmus
567af5689f
gnu: r-insight: Update to 0.18.3.
...
* gnu/packages/cran.scm (r-insight): Update to 0.18.3.
2022-09-20 17:02:15 +02:00
Ricardo Wurmus
d7e46a3b9a
gnu: r-officer: Update to 0.4.4.
...
* gnu/packages/cran.scm (r-officer): Update to 0.4.4.
2022-09-20 17:02:15 +02:00
Ricardo Wurmus
cb9d49c18d
gnu: r-rbibutils: Update to 2.2.9.
...
* gnu/packages/cran.scm (r-rbibutils): Update to 2.2.9.
2022-09-20 17:02:15 +02:00
Ricardo Wurmus
acc4256ccb
gnu: r-hdf5r: Update to 1.3.6.
...
* gnu/packages/cran.scm (r-hdf5r): Update to 1.3.6.
2022-09-20 17:02:15 +02:00
Ricardo Wurmus
4a3cc52d9c
gnu: r-factominer: Update to 2.6.
...
* gnu/packages/cran.scm (r-factominer): Update to 2.6.
[propagated-inputs]: Add r-emmeans and r-multcompview.
2022-09-20 17:02:15 +02:00
Ricardo Wurmus
ffd7c3890a
gnu: r-reticulate: Update to 1.26.
...
* gnu/packages/cran.scm (r-reticulate): Update to 1.26.
2022-09-20 17:02:15 +02:00
Ricardo Wurmus
8c381850af
gnu: r-dtplyr: Update to 1.2.2.
...
* gnu/packages/cran.scm (r-dtplyr): Update to 1.2.2.
2022-09-20 17:02:15 +02:00
Ricardo Wurmus
de2564a2b2
gnu: r-zip: Update to 2.2.1.
...
* gnu/packages/cran.scm (r-zip): Update to 2.2.1.
2022-09-20 17:02:14 +02:00
Ricardo Wurmus
6e03a26f2c
gnu: r-arules: Update to 1.7-4.
...
* gnu/packages/cran.scm (r-arules): Update to 1.7-4.
2022-09-20 17:02:14 +02:00
Ricardo Wurmus
9ef90c6d34
gnu: r-vim: Update to 6.2.2.
...
* gnu/packages/cran.scm (r-vim): Update to 6.2.2.
2022-09-20 17:02:14 +02:00
Ricardo Wurmus
b475e4b381
gnu: r-radiant-data: Update to 1.4.5.
...
* gnu/packages/cran.scm (r-radiant-data): Update to 1.4.5.
2022-09-20 17:02:14 +02:00
Ricardo Wurmus
29f9945039
gnu: r-np: Update to 0.60-14.
...
* gnu/packages/cran.scm (r-np): Update to 0.60-14.
2022-09-20 17:02:14 +02:00
Ricardo Wurmus
ff9b9f6001
gnu: r-cubature: Update to 2.0.4.5.
...
* gnu/packages/cran.scm (r-cubature): Update to 2.0.4.5.
2022-09-20 17:02:14 +02:00
Ricardo Wurmus
57df402147
gnu: r-urca: Update to 1.3-3.
...
* gnu/packages/cran.scm (r-urca): Update to 1.3-3.
2022-09-20 17:02:14 +02:00
Ricardo Wurmus
4905326be2
gnu: r-statnet-common: Update to 4.7.0.
...
* gnu/packages/cran.scm (r-statnet-common): Update to 4.7.0.
2022-09-20 17:02:14 +02:00
Ricardo Wurmus
b58685a375
gnu: r-tinytex: Update to 0.41.
...
* gnu/packages/cran.scm (r-tinytex): Update to 0.41.
2022-09-20 17:02:13 +02:00
Ricardo Wurmus
c0f7048daa
gnu: r-pillar: Update to 1.8.1.
...
* gnu/packages/cran.scm (r-pillar): Update to 1.8.1.
2022-09-20 17:02:13 +02:00
Ricardo Wurmus
8ce03b223a
gnu: r-xfun: Update to 0.33.
...
* gnu/packages/cran.scm (r-xfun): Update to 0.33.
2022-09-20 17:02:13 +02:00
Ricardo Wurmus
4acecac456
gnu: r-cli: Update to 3.4.0.
...
* gnu/packages/cran.scm (r-cli): Update to 3.4.0.
[propagated-inputs]: Remove r-glue.
2022-09-20 17:02:13 +02:00
Ricardo Wurmus
bbbc036b09
gnu: r-scatterplot3d: Update to 0.3-42.
...
* gnu/packages/cran.scm (r-scatterplot3d): Update to 0.3-42.
2022-09-20 17:02:13 +02:00
Ricardo Wurmus
2313441cea
gnu: r-jomo: Update to 2.7-4.
...
* gnu/packages/cran.scm (r-jomo): Update to 2.7-4.
2022-09-20 17:02:13 +02:00
Ricardo Wurmus
fedc98021e
gnu: r-broom: Update to 1.0.1.
...
* gnu/packages/cran.scm (r-broom): Update to 1.0.1.
2022-09-20 17:02:13 +02:00
Ricardo Wurmus
fc802d489a
gnu: r-progressr: Update to 0.11.0.
...
* gnu/packages/cran.scm (r-progressr): Update to 0.11.0.
2022-09-20 17:02:13 +02:00
Ricardo Wurmus
3b389cccff
gnu: r-lpsolve: Update to 5.6.16.
...
* gnu/packages/cran.scm (r-lpsolve): Update to 5.6.16.
2022-09-20 17:02:12 +02:00
Ricardo Wurmus
c212709262
gnu: r-restrserve: Update to 1.2.1.
...
* gnu/packages/cran.scm (r-restrserve): Update to 1.2.1.
2022-09-20 17:02:12 +02:00
Ricardo Wurmus
69f2a535e2
gnu: r-prismatic: Update to 1.1.1.
...
* gnu/packages/cran.scm (r-prismatic): Update to 1.1.1.
2022-09-20 17:02:12 +02:00
Ricardo Wurmus
2d013e0e99
gnu: r-palmerpenguins: Update to 0.1.1.
...
* gnu/packages/cran.scm (r-palmerpenguins): Update to 0.1.1.
2022-09-20 17:02:12 +02:00
Ricardo Wurmus
2b261d2c0a
gnu: r-paletteer: Update to 1.4.1.
...
* gnu/packages/cran.scm (r-paletteer): Update to 1.4.1.
2022-09-20 17:02:12 +02:00
Ricardo Wurmus
9849c6d77d
gnu: r-haven: Update to 2.5.1.
...
* gnu/packages/cran.scm (r-haven): Update to 2.5.1.
2022-09-20 17:02:12 +02:00
Ricardo Wurmus
c486b129fa
gnu: r-shinyfiles: Update to 0.9.3.
...
* gnu/packages/cran.scm (r-shinyfiles): Update to 0.9.3.
2022-09-20 17:02:12 +02:00
Ricardo Wurmus
22d4155e73
gnu: r-modelr: Update to 0.1.9.
...
* gnu/packages/cran.scm (r-modelr): Update to 0.1.9.
2022-09-20 17:02:12 +02:00
Ricardo Wurmus
5897c7b6f2
gnu: r-readxl: Update to 1.4.1.
...
* gnu/packages/cran.scm (r-readxl): Update to 1.4.1.
2022-09-20 17:02:11 +02:00
Ricardo Wurmus
056f8eed57
gnu: r-callr: Update to 3.7.2.
...
* gnu/packages/cran.scm (r-callr): Update to 3.7.2.
2022-09-20 17:02:11 +02:00
Ricardo Wurmus
b09ba421ef
gnu: r-reprex: Update to 2.0.2.
...
* gnu/packages/cran.scm (r-reprex): Update to 2.0.2.
[propagated-inputs]: Add r-lifecycle.
2022-09-20 17:02:11 +02:00
Ricardo Wurmus
cd6b82cdd8
gnu: r-rvest: Update to 1.0.3.
...
* gnu/packages/cran.scm (r-rvest): Update to 1.0.3.
[propagated-inputs]: Add r-cli, r-glue, and r-withr.
2022-09-20 17:02:11 +02:00
Ricardo Wurmus
4611b0676c
gnu: r-astsa: Update to 1.16.
...
* gnu/packages/cran.scm (r-astsa): Update to 1.16.
2022-09-20 17:02:11 +02:00
Ricardo Wurmus
120dd1c0e2
gnu: r-poorman: Update to 0.2.6.
...
* gnu/packages/cran.scm (r-poorman): Update to 0.2.6.
2022-09-20 17:02:11 +02:00
Ricardo Wurmus
786c64fd82
gnu: r-scales: Update to 1.2.1.
...
* gnu/packages/cran.scm (r-scales): Update to 1.2.1.
2022-09-20 17:02:11 +02:00
Ricardo Wurmus
df7f9236ee
gnu: r-ggpmisc: Update to 0.5.0.
...
* gnu/packages/cran.scm (r-ggpmisc): Update to 0.5.0.
[propagated-inputs]: Add r-confintr.
2022-09-20 17:02:10 +02:00
Ricardo Wurmus
11669e8ee4
gnu: r-ggvenndiagram: Update to 1.2.2.
...
* gnu/packages/cran.scm (r-ggvenndiagram): Update to 1.2.2.
[propagated-inputs]: Remove r-stringr; add r-yulab-utils.
2022-09-20 17:02:10 +02:00
Ricardo Wurmus
0fb5a1bd2f
gnu: r-zoo: Update to 1.8-11.
...
* gnu/packages/cran.scm (r-zoo): Update to 1.8-11.
2022-09-20 17:02:10 +02:00
Ricardo Wurmus
af257e509d
gnu: r-babelwhale: Update to 1.1.0.
...
* gnu/packages/cran.scm (r-babelwhale): Update to 1.1.0.
[propagated-inputs]: Add r-digest, r-fs, and r-glue.
2022-09-20 17:02:10 +02:00
Ricardo Wurmus
9878daa19d
gnu: r-rticles: Update to 0.24.
...
* gnu/packages/cran.scm (r-rticles): Update to 0.24.
2022-09-20 17:02:10 +02:00
Ricardo Wurmus
ae4a57b967
gnu: r-googlesheets4: Update to 1.0.1.
...
* gnu/packages/cran.scm (r-googlesheets4): Update to 1.0.1.
2022-09-20 17:02:10 +02:00
Ricardo Wurmus
5ba2bda97c
gnu: r-dixontest: Update to 1.0.4.
...
* gnu/packages/cran.scm (r-dixontest): Update to 1.0.4.
2022-09-20 17:02:10 +02:00
Ricardo Wurmus
6e052e0b7c
gnu: r-datawizard: Update to 0.6.0.
...
* gnu/packages/cran.scm (r-datawizard): Update to 0.6.0.
2022-09-20 17:02:10 +02:00
Ricardo Wurmus
93328f8b89
gnu: r-activedriverwgs: Update to 1.2.0.
...
* gnu/packages/bioconductor.scm (r-activedriverwgs): Update to 1.2.0.
2022-09-20 17:02:09 +02:00
Ricardo Wurmus
8f3787576c
gnu: r-htscluster: Update to 2.0.10.
...
* gnu/packages/bioconductor.scm (r-htscluster): Update to 2.0.10.
2022-09-20 17:02:09 +02:00
Ricardo Wurmus
b1dd1f221f
gnu: r-perfmeas: Update to 1.2.5.
...
* gnu/packages/bioconductor.scm (r-perfmeas): Update to 1.2.5.
2022-09-20 17:02:09 +02:00
Ricardo Wurmus
9c91113ee7
gnu: r-valr: Update to 0.6.5.
...
* gnu/packages/bioconductor.scm (r-valr): Update to 0.6.5.
2022-09-20 17:02:09 +02:00
Ricardo Wurmus
1e3d01dd05
gnu: r-httpuv: Update to 1.6.6.
...
* gnu/packages/patches/r-httpuv-1.5.5-unvendor-libuv.patch: Replace this patch...
* gnu/packages/patches/r-httpuv-1.6.6-unvendor-libuv.patch: ...with this.
* gnu/local.mk (dist_patch_DATA): Update patch file.
* gnu/packages/cran.scm (r-httpuv): Update to 1.6.6.
[source]: Update patch.
2022-09-20 17:02:09 +02:00
Ricardo Wurmus
7da529c577
gnu: r-dt: Update to 0.25.
...
* gnu/packages/statistics.scm (r-dt): Update to 0.25; update jszip to 3.10.1.
2022-09-20 17:02:09 +02:00
Ricardo Wurmus
921ac834db
gnu: r-torch: Update to 0.8.1.
...
* gnu/packages/cran.scm (r-torch): Update to 0.8.1.
2022-09-20 17:02:09 +02:00
Ricardo Wurmus
8e321254c0
gnu: r-torch: Do not hardcode Python version.
...
* gnu/packages/cran.scm (r-torch)[arguments]: Do not hardcode Python version 3.9.
2022-09-20 17:02:09 +02:00
Ricardo Wurmus
2b39d85ac4
gnu: liblantern: Update to 0.8.1.
...
* gnu/packages/machine-learning.scm (liblantern): Update to 0.8.1.
2022-09-20 17:02:09 +02:00
Ricardo Wurmus
7531efe54d
gnu: liblantern: Do not hardcode Python version.
...
* gnu/packages/machine-learning.scm (liblantern)[arguments]: Do not hardcode
Python version.
2022-09-20 17:02:09 +02:00
Ricardo Wurmus
851441a5d9
gnu: r-arrow: Update to 9.0.0.1.
...
* gnu/packages/cran.scm (r-arrow): Update to 9.0.0.1.
2022-09-20 17:02:08 +02:00
Ricardo Wurmus
e5e5b2a15a
gnu: apache-arrow: Update to 9.0.0.
...
* gnu/packages/databases.scm (apache-arrow): Update to 9.0.0.
2022-09-20 17:02:08 +02:00
Ricardo Wurmus
71d87df8bf
gnu: r-rintrojs: Update to 0.3.2.
...
* gnu/packages/cran.scm (r-rintrojs): Update to 0.3.2.
2022-09-20 17:02:08 +02:00
Ricardo Wurmus
487fb5f624
gnu: Add r-confintr.
...
* gnu/packages/cran.scm (r-confintr): New variable.
2022-09-20 17:02:08 +02:00
Ricardo Wurmus
9e589ca6e3
gnu: rust-sprs-0.10: Inherit from rust-sprs-0.11.
...
* gnu/packages/crates-io.scm (rust-sprs-0.10): Inherit from rust-sprs-0.11.
2022-09-20 17:01:55 +02:00
Ricardo Wurmus
4d4e2a9444
gnu: Add rust-sprs-0.11.
...
* gnu/packages/crates-io.scm (rust-sprs-0.11): New variable.
2022-09-20 17:01:55 +02:00
Ricardo Wurmus
f5483e2661
gnu: Add rust-sprs-0.10.
...
* gnu/packages/crates-io.scm (rust-sprs-0.10): New variable.
2022-09-20 17:01:55 +02:00
Ricardo Wurmus
76e6459722
gnu: Add rust-tobj-2.
...
* gnu/packages/crates-io.scm (rust-tobj-2): New variable.
2022-09-20 17:01:54 +02:00
Ricardo Wurmus
cef61a0e69
gnu: Add rust-tobj-3.
...
* gnu/packages/crates-io.scm (rust-tobj-3): New variable.
2022-09-20 17:01:54 +02:00
Ricardo Wurmus
c311c88122
gnu: Add rust-linecount-0.1.
...
* gnu/packages/crates-io.scm (rust-linecount-0.1): New variable.
2022-09-20 17:01:54 +02:00
Mark H Weaver
4e88a7bfcb
gnu: icecat: Update to 102.3.0-guix0-preview1 [security fixes].
...
Includes fixes for CVE-2022-40956, CVE-2022-40957, CVE-2022-40958,
CVE-2022-40959, CVE-2022-40960, and CVE-2022-40962.
Partly based on earlier work by:
Jonathan Brielmaier <jonathan.brielmaier@web.de >
John Kehayias <john.kehayias@protonmail.com >
Pierre Langlois <pierre.langlois@gmx.com >
Clement Lassieur <clement@lassieur.org >
* gnu/packages/gnuzilla.scm (all-mozilla-locales)
(%icecat-version, %icecat-build-id): Update.
(icecat-source): Update upstream source hash. Update to latest
gnuzilla commit. Remove the code that previously applied
"icecat-use-older-reveal-hidden-html.patch".
(icecat)[inputs]: Use icu4c-71.
[native-inputs]: Use rust-1.59. Use the default llvm and clang.
[arguments]: Add "--without-wasm-sandboxed-libraries" to the configure
flags. Add 'remove-cargo-frozen-flag' phase. In the 'configure'
phase, set the "MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE",
"GUIX_PYTHONPATH", and "MOZBUILD_STATE_PATH" environment variables.
Remove the code that previously set the "MACH_USE_SYSTEM_PYTHON" and
"MOZ_NOSPAM" environment variables. In the 'install-desktop-entry'
phase, add "StartupWMClass=Navigator" to the desktop file.
[description]: "IceCat 91" --> "IceCat 102".
(all-mozilla-91-locales, %icecat-91-version, icecat-91-source): New
variables bound to the old values, for use by icedove.
(icedove)[source]: Ues 'icecat-91-source'.
2022-09-20 10:40:41 -04:00
Mark H Weaver
9b0ec71df5
gnu: Add rust-cbindgen-0.23 and its dependencies to gnuzilla.scm.
...
This will be needed to build IceCat 102.
* gnu/packages/gnuzilla.scm (rust-textwrap-0.15-promise)
(rust-clap-lex-0.2, rust-clap-derive-3.2.15-promise)
(rust-clap-3.2.16-promise, rust-cbindgen-0.24-promise)
(rust-cbindgen-0.23-promise): New variables.
Based on work by: John Kehayias <john.kehayias@protonmail.com >.
2022-09-20 10:39:57 -04:00
Mark H Weaver
c6b9bf0da2
gnu: Add rust-1.59 to gnuzilla.scm.
...
This will be needed to build IceCat 102.
* gnu/packages/gnuzilla.scm (rust-1.58-promise, rust-1.59-promise):
New variables.
2022-09-20 10:39:41 -04:00
Efraim Flashner
f6e2ca3651
gnu: vim: Update to 9.0.0509.
...
* gnu/packages/vim.scm (vim): Update to 9.0.0509.
[arguments]: Adjust custom 'patch-absolute-paths phase to adjust
substitutions.
2022-09-20 14:17:17 +03:00
Efraim Flashner
6a2f735983
gnu: tree: Use https.
...
* gnu/packages/admin.scm (tree)[source]: Use https.
[home-page]: Same.
2022-09-20 13:57:57 +03:00
Efraim Flashner
00537ec17d
gnu: tree: Update to 2.0.4.
...
* gnu/packages/admin.scm (tree): Update to 2.0.4.
[arguments]: Add phase to fix the version string in the man page.
2022-09-20 13:57:22 +03:00
Efraim Flashner
5a9e3b7c39
gnu: cross: Add default configure-flags.
...
Reported by Arun Isaac <arunisaac@systemreboot.net >.
* gnu/packages/cross-base.scm (cross)[arguments]: Add a default for
configure-flags so '--target=' is always added.
2022-09-20 11:26:12 +03:00
Trevor Richards
4248fe076e
gnu: Add sbcl-stumpwm-pamixer.
...
* gnu/packages/wm.scm (sbcl-stumpwm-pamixer): New variable.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-20 09:15:44 +02:00
Liliana Marie Prikler
e58bafcca4
gnu: evolution: Update to 3.46.0.
...
* gnu/packages/gnome.scm (evolution): Update to 3.46.0.
2022-09-19 21:13:39 +02:00
Liliana Marie Prikler
d753a528ce
gnu: evolution-data-server: Update to 3.46.0.
...
* gnu/packages/gnome.scm (evolution-data-server): Update to 3.46.0.
2022-09-19 21:13:31 +02:00
Liliana Marie Prikler
96c7887864
gnu: gnome-todo: Update to "Endeavour" 42.0.
...
* gnu/packages/gnome.scm (gnome-todo): Deprecate and rename to...
(endeavour): ... this.
[source]: Use git origin.
* gnu/packages/patches/gnome-todo-libportal.patch: Deleted file.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
2022-09-19 20:51:13 +02:00
Efraim Flashner
c6dde8b085
gnu: gtk: Use architecture appropriate librsvg.
...
* gnu/packages/gtk.scm (gtk)[propagated-inputs]: When building for
x86_64-linux use librsvg-bootstrap, otherwise use librsvg-2.40.
2022-09-19 18:15:20 +03:00
Efraim Flashner
62da6c6169
gnu: svt-hevc: Limit to x86_64-linux.
...
* gnu/packages/video.scm (svt-hevc)[supported-systems]: Remove
i686-linux. Add comment.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Don't add
svt-hevc when building for i686-linux.
2022-09-19 18:12:48 +03:00
Artyom V. Poptsov
72fe3c0a35
gnu: Add java-argparse4j.
...
* gnu/packages/java.scm (java-argparse4j): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-19 15:43:28 +02:00
Nicolas Goaziou
d845326b5c
Revert "gnu: Add emacs-org-roam-ui."
...
This reverts commit 1225fe013e .
The package includes minified Javascript. See
<https://issues.guix.gnu.org/issue/57891 >.
2022-09-19 12:19:53 +02:00
Efraim Flashner
9b30301efe
gnu: python-websockets: Extend test timeout.
...
* gnu/packages/python-web.scm (python-websockets)[arguments]: Add phase
to extend the tests timeout so slower machines can complete them.
2022-09-19 12:54:40 +03:00
jgart
4ca4b96e2a
gnu: Add cl-bubble-operator-upwards.
...
* gnu/packages/lisp-xyz.scm (cl-bubble-operator-upwards,
ecl-bubble-operator-upwards, sbcl-bubble-operator-upwards): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-19 11:11:56 +02:00
Efraim Flashner
f9ada7fdc4
gnu: connman: Patch CVE-2022-32392, CVE-2022-32293.
...
* gnu/packages/connman.scm (connman)[source]: Add patches.
* gnu/packages/patches/connman-CVE-2022-32292.patch,
gnu/packages/patches/connman-CVE-2022-32293-pt1.patch,
gnu/packages/patches/connman-CVE-2022-32293-pt1.patch: New files.
* gnu/local.mk (dist_patch_DATA): Register them.
2022-09-19 11:19:49 +03:00
Efraim Flashner
90e316535a
gnu: enlightenment: Update to 0.25.4.
...
* gnu/packages/enlightenment.scm (enlightenment): Update to 0.25.4.
2022-09-19 11:12:44 +03:00
Efraim Flashner
7416ad2cda
gnu: efl: Update to 1.26.3.
...
* gnu/packages/enlightenment.scm (efl): Update to 1.26.3.
2022-09-19 11:12:41 +03:00
Efraim Flashner
c46a96fe33
gnu: luajit: Remove riscv64-linux from supported-systems.
...
* gnu/packages/lua.scm (luajit)[supported-systems]: Remove riscv64-linux
from the supported-systems.
2022-09-19 10:25:05 +03:00
Olivier Dion
021b2dd0ae
gnu: lttng-tools: Update to 2.13.8.
...
* gnu/packages/instrumentation.scm (lttng-tools): Update to 2.13.8.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-19 09:07:18 +02:00
Olivier Dion
6e47d9f6f4
gnu: lttng-ust: Update to 2.13.4.
...
* gnu/packages/instrumentation.scm (lttng-ust): Update to 2.13.4.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-19 09:07:18 +02:00
Olivier Dion
013545cc84
gnu: lttng-modules: Update to 2.13.5.
...
* gnu/packages/instrumentation.scm (lttng-modules): Update to 2.13.5.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-19 09:07:18 +02:00
Mathieu Othacehe
41b30f40be
Update NEWS.
...
* NEWS: Mention Shepherd 0.9.2 upgrade.
2022-09-19 09:06:47 +02:00
Andrew Tropin
f7565101e4
gnu: emacs-next-pgtk: Inherit patches from emacs-next.
...
* gnu/packages/emacs.scm (emacs-next-pgtk)[source]: Inherit patches from
emacs-next.
2022-09-19 07:23:41 +03:00
Arun Isaac
25adb336bc
gnu: font-ibm-plex: Update to 6.1.1.
...
* gnu/packages/fonts.scm (font-ibm-plex): Update to 6.1.1.
2022-09-19 03:10:55 +05:30
Nicolas Goaziou
31a56967e2
gnu: hyperrogue: Update to 12.1a.
...
* gnu/packages/games.scm (hyperrogue): Update to 12.1a.
[source]<origin>: Set upstream to GitHub.
[arguments]: Use G-expressions.
<phases>: Remove INSTALL-DATA phase. Remove trailing #T.
[home-page]: Fix URL.
2022-09-18 19:56:20 +02:00
Liliana Marie Prikler
1066a424dc
gnu: gnome-shell-extension-noannoyance: Update to 16-1-b759d10f.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-noannoyance): Update to
16-1-b759d10f.
2022-09-18 19:19:42 +02:00
Liliana Marie Prikler
9866065714
gnu: gnome-shell-extension-burn-my-windows: Update to 21.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-burn-my-windows): Update to 21.
2022-09-18 19:18:20 +02:00
Liliana Marie Prikler
ab565f1e54
gnu: gnome-shell-extension-vertical-overview: Update to 9.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-vertical-overview): Update to 9.
2022-09-18 19:18:20 +02:00
Liliana Marie Prikler
f129ef1000
gnu: gnome-shell-extension-dash-to-panel: Update to 51.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-panel): Update to 51.
2022-09-18 19:18:20 +02:00
Liliana Marie Prikler
6cf9478d01
gnu: gnome-shell-extension-just-perfection: Update to 22.0.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-just-perfection): Update to 22.0.
2022-09-18 19:18:20 +02:00
Liliana Marie Prikler
26ea91f797
gnu: gnome-shell-extension-dash-to-dock: Update to 73.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-dock): Update to 73.
2022-09-18 19:18:20 +02:00
Guillaume Le Vaillant
e775b99d45
gnu: txr: Update to 282.
...
* gnu/packages/lisp.scm (txr): Update to 282.
2022-09-18 18:52:28 +02:00
Guillaume Le Vaillant
5a930bbffc
gnu: eisl: Update to 2.63.
...
* gnu/packages/lisp.scm (eisl): Update to 2.63.
2022-09-18 18:52:28 +02:00
Julien Lepiller
7934b12ca5
gnu: ocaml-lwt-log: Update to 1.1.2.
...
* gnu/packages/ocaml.scm (ocaml-lwt-log): Update to 1.1.2.
2022-09-18 18:47:57 +02:00
Marius Bakke
2266ec5eb1
gnu: python-cython: Remove duplicate version.
...
* gnu/packages/python-xyz.scm (python-cython-0.29.32): Remove variable.
* gnu/packages/python-science.scm (python-pandas)[native-inputs]: Change from
PYTHON-CYTHON-0.29.32 to PYTHON-CYTHON.
2022-09-18 16:26:18 +02:00
Marius Bakke
51482db4da
Merge branch 'master' into staging
2022-09-18 16:21:44 +02:00
Marius Bakke
ce3b51a4c6
gnu: python-pandas: Update to 1.4.4.
...
* gnu/packages/python-science.scm (python-pandas): Update to 1.4.4.
[native-inputs]: Change from PYTHON-CYTHON to PYTHON-CYTHON-0.29.32.
2022-09-18 16:18:36 +02:00
Marius Bakke
08124aa8d6
gnu: python-cython: Add 0.29.32.
...
* gnu/packages/python-xyz.scm (python-cython-0.29.32): New variable.
2022-09-18 16:18:35 +02:00
Marius Bakke
94827144d1
gnu: gnome-settings-daemon: Add NSS on RUNPATH.
...
* gnu/packages/gnome.scm (gnome-settings-daemon)[arguments]: Ensure NSS ends
up on RUNPATH.
2022-09-18 16:18:35 +02:00
Marius Bakke
2104efcddf
gnu: Explicitly use OpenSSL 1.1 in packages that don't support 3.0.
...
* gnu/packages/php.scm (php)[inputs]: Change from OPENSSL to OPENSSL-1.1.
* gnu/packages/ntp.scm (ntp)[inputs]: Likewise.
2022-09-18 16:18:35 +02:00
Marius Bakke
5010801676
gnu: Explicitly use meson@0.60 in packages that don't support 0.63.
...
* gnu/packages/gnome.scm (gnome-disk-utility, gnome-screenshot,
dconf-editor)[arguments]: Add #:meson.
2022-09-18 16:18:34 +02:00
Marius Bakke
6c3ccc6b1f
gnu: python-ufo2ft: Don't use pytest-runner.
...
pytest-runner is deprecated and does not work properly with the newer
setuptools in Python 3.10 for this package.
* gnu/packages/fontutils.scm (python-ufo2ft)[arguments]: Override check
phase.
[native-inputs]: Remove PYTHON-PYTEST-RUNNER.
2022-09-18 16:18:34 +02:00
Liliana Marie Prikler
5811d876c3
gnu: polari: Add missing input.
...
* gnu/packages/gnome.scm (polari)[inputs]: Add libadwaita.
2022-09-18 16:03:22 +02:00
Liliana Marie Prikler
d98542a6a9
gnu: Add missing emacs-polymode patch.
...
This fixes up commit 52e55b38f4 .
* gnu/packages/patches/emacs-polymode-fix-lexical-variable-error.patch:
New file.
2022-09-18 16:03:22 +02:00
Liliana Marie Prikler
9a4ea7059d
gnu: gitg: Use gtksourceview-4.
...
* gnu/packages/gnome.scm (gitg)[inputs]: Replace gtksourceview with
gtksourceview-4.
2022-09-18 16:03:21 +02:00
r0man
24278280ca
gnu: Add emacs-sqlite3-api.
...
* gnu/packages/emacs-xyz.scm (emacs-sqlite3-api): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-18 14:42:26 +02:00
Hilton Chain
52e55b38f4
gnu: emacs-polymode: Add patch for native compilation.
...
* gnu/packages/emacs-xyz.scm (emacs-polymode)[source]: Add patch.
* gnu/packages/patches/emacs-polymode-fix-lexical-variable-error.patch:
New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-18 14:16:08 +02:00
Nicolas Goaziou
e63f7d8086
gnu: asymptote: Update to 2.83.
...
* gnu/packages/plotutils.scm (asymptote): Update to 2.83.
2022-09-18 13:28:41 +02:00
Marius Bakke
d4ebf063f1
gnu: gst-plugins-bad: Explicitly use OpenSSL@1.1.
...
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Change from OPENSSL to
OPENSSL-1.1.
2022-09-18 13:09:13 +02:00
Fredrik Salomonsson
373731737f
gnu: Add emacs-emprise.
...
* gnu/packages/emacs-xyz.scm (emacs-emprise): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-18 11:14:54 +02:00
Fredrik Salomonsson
065b135ee1
gnu: Add emacs-suneater-theme.
...
* gnu/packages/emacs-xyz.scm (emacs-suneater-theme): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-18 11:11:26 +02:00
Fredrik Salomonsson
1225fe013e
gnu: Add emacs-org-roam-ui.
...
* gnu/packages/emacs-xyz.scm (emacs-org-roam-ui): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-18 11:09:50 +02:00
Nicolas Graves via Guix-patches via
90174c77cf
gnu: Add emacs-app-launcher.
...
* gnu/packages/emacs-xyz.scm (emacs-app-launcher): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-18 11:06:23 +02:00
Nicolas Graves via Guix-patches via
ee58eab7d5
gnu: Add emacs-orca.
...
* gnu/packages/emacs-xyz.scm (emacs-orca): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-18 11:06:23 +02:00
Trevor Richards
ba189bdc7a
gnu: Add emacs-transpose-mark.
...
* gnu/packages/emacs-xyz.scm (emacs-transpose-mark): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-18 11:02:00 +02:00
Nicolas Goaziou
ee0768c792
gnu: emacs-parsebib: Update to 4.3.
...
* gnu/packages/emacs-xyz.scm (emacs-parsebib): Update to 4.3.
2022-09-17 23:04:13 +02:00
Nicolas Goaziou
64c49de49e
gnu: emacs-logview: Update to 0.15.1.
...
* gnu/packages/emacs-xyz.scm (emacs-logview): Update to 0.15.1.
2022-09-17 23:04:13 +02:00
Leo Famulari
75c3257c1f
gnu: linux-libre 4.9: Update to 4.9.328.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.328.
(linux-libre-4.9-pristine-source): Update hash.
2022-09-17 14:32:47 -04:00
Leo Famulari
ffef8e69ac
gnu: linux-libre 4.14: Update to 4.14.293.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.293.
(linux-libre-4.14-pristine-source): Update hash.
2022-09-17 14:32:47 -04:00
Leo Famulari
04643c276f
gnu: linux-libre 4.19: Update to 4.19.258.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.258.
(linux-libre-4.19-pristine-source): Update hash.
2022-09-17 14:32:46 -04:00
Leo Famulari
75c77caa1a
gnu: linux-libre 5.4: Update to 5.4.213.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.213.
(linux-libre-5.4-pristine-source): Update hash.
2022-09-17 14:32:46 -04:00
Leo Famulari
cf6bd972a4
gnu: linux-libre 5.10: Update to 5.10.143.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.143.
(linux-libre-5.10-pristine-source): Update hash.
2022-09-17 14:32:46 -04:00
Leo Famulari
eba98e68e6
gnu: linux-libre 5.15: Update to 5.15.68.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.68.
(linux-libre-5.15-pristine-source, deblob-scripts-5.15): Update hashes.
2022-09-17 14:32:46 -04:00
Leo Famulari
620ca30134
gnu: linux-libre 5.19: Update to 5.19.9.
...
* gnu/packages/linux.scm (linux-libre-5.19-version): Update to 5.19.9.
(linux-libre-5.19-pristine-source, deblob-scripts-5.19): Update hashes.
2022-09-17 14:32:42 -04:00
Maxime Devos
c967d1153c
gnu-maintenance: Support // URLs in latest-html-release.
...
This makes "./pre-inst-env guix refresh -u" download the release tarball from
the right place -- previously, it downloaded from
https://www.libreoffice.org//download.documentfoundation.org/libreoffice/src/7.4.0/libreoffice-7.4.0.3.tar.xz?idx=1
whereas it should download from
https://download.documentfoundation.org/libreoffice/src/7.4.0/libreoffice-7.4.0.3.tar.xz?idx=1
instead.
* guix/gnu-maintenance.scm (latest-html-release)[url-release]: Adjust
computation in the case of an absolute URI-reference without a scheme.
* tests/gnu-maintenance.scm ("latest-html-release, scheme-less URIs"):
Test it.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-17 19:09:45 +02:00
Paul A. Patience
c00e1c87f2
gnu: vtk: Use system libHaru.
...
* gnu/packages/image-processing.scm (vtk)[snippet]: Delete bundled
libHaru and patch VTK for newer libHaru. Reindent and remove trailing
boolean.
[arguments]: Specify external libHaru in configure flags.
[inputs]: Add libharu.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-17 19:09:45 +02:00
Paul A. Patience
229425fa53
gnu: saga: Fix build with newer libHaru.
...
* gnu/packages/geo.scm (saga)[modules, snippet]: New fields.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-17 19:09:45 +02:00
Paul A. Patience
140a08d44a
gnu: libharu: Update to 2.4.2.
...
* gnu/packages/pdf.scm (libharu): Update to 2.4.2.
[build-system]: Switch to cmake-build-system.
[arguments]: Remove #:configure-flags, add #:tests? and #:phases.
[inputs]: Sort them.
[native-inputs]: Remove.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-17 19:09:45 +02:00
Taiju HIGASHI
5d22261db3
import: gem: Support importing a specific version of a gem.
...
* guix/import/gem.scm: (rubygems-fetch, gem->guix-package)
(gem-recursive-import): Fix to fetch the specified version of the gem.
* guix/scripts/import/gem.scm (show-help): Update the help message.
(guix-import-gem): Modify so the version number to be passed to subsequent
procedures.
* tests/gem.scm: Add tests.
* doc/guix.texi (Invoking guix import): Document.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-17 19:09:27 +02:00
Raghav Gururajan
c54ef97c80
gnu: gajim: Fix gtksourceview dependency.
...
* gnu/packages/messaging.scm (gajim)[inputs]: Use gtksourceview-4.
2022-09-17 11:22:41 -04:00
Raghav Gururajan
f2327f0b2e
gnu: gajim: Remove inputs labels.
...
* gnu/packages/messaging.scm (gajim): Remove input labels.
2022-09-17 11:19:02 -04:00
Marius Bakke
09efea1ce0
gnu: gstreamer: Disable failing tests on i686 again.
...
* gnu/packages/gstreamer.scm (gstreamer)[arguments]: Disable two tests on
i686-linux.
2022-09-17 00:36:28 +02:00
Maxim Cournoyer
d7e56aebec
services: desktop: Mount /var/lib/gdm on a tmpfs file system.
...
Fixes <https://issues.guix.gnu.org/44944 >.
* gnu/services/xorg.scm (%gdm-activation): Delete variable.
(gdm-service-type): De-register it.
* gnu/services/desktop.scm (%gdm-file-system): New variable.
(gdm-file-system-service): Likewise.
(desktop-services-for-system): Use it.
2022-09-16 16:27:08 -04:00
Nicolas Goaziou
e8fac28b9b
gnu: emacs-transpose-frame: Update to 0.2.1.
...
* gnu/packages/emacs-xyz.scm (emacs-transpose-frame): Update to 0.2.1.
2022-09-16 21:10:15 +02:00
Nicolas Goaziou
4ce19aa086
gnu: emacs-setup: Update to 1.3.1.
...
* gnu/packages/emacs-xyz.scm (emacs-setup): Update to 1.3.1.
2022-09-16 21:10:14 +02:00
Nicolas Goaziou
3e2760cfca
gnu: emacs-xref: Update to 1.5.1.
...
* gnu/packages/emacs-xyz.scm (emacs-xref): Update to 1.5.1.
2022-09-16 21:10:14 +02:00
Nicolas Goaziou
5dec2059c8
gnu: emacs-persist: Update to 0.5.
...
* gnu/packages/emacs-xyz.scm (emacs-persist): Update to 0.5.
2022-09-16 21:10:14 +02:00
Nicolas Goaziou
eaad411a7b
gnu: emacs-subed: Update to 1.0.9.
...
* gnu/packages/emacs-xyz.scm (emacs-subed): Update to 1.0.9.
2022-09-16 21:10:13 +02:00
Nicolas Goaziou
abdc2e15ba
gnu: emacs-move-text: Update to 2.0.10.
...
* gnu/packages/emacs-xyz.scm (emacs-move-text): Update to 2.0.10.
2022-09-16 21:10:13 +02:00
Nicolas Goaziou
9286e34009
gnu: emacs-ement: Update to 0.1.4.
...
* gnu/packages/emacs-xyz.scm (emacs-ement): Update to 0.1.4.
2022-09-16 21:10:07 +02:00
Andrew Tropin
77e768ac4e
gnu: emacs-next-pgtk: Fix super key problem.
...
Recent version of emacs 29 with pgtk flag has a problem with handling super
key modifier, due to gtk bug: https://gitlab.gnome.org/GNOME/gtk/-/issues/4913
This commit workarounds it.
* gnu/packages/patches/emacs-pgtk-super-key-fix.patch: New file.
* gnu/packages/emacs.scm (emacs-next-pgtk): Use it here.
* gnu/local.mk (dist_patch_DATA): Register it here.
2022-09-16 20:28:34 +03:00
Marius Bakke
706e6c3c8f
Merge branch 'master' into staging
2022-09-16 19:08:17 +02:00
Marius Bakke
888dfc8eb6
gnu: python-scipy: Update to 1.9.1.
...
* gnu/packages/python-science.scm (python-scipy): Update to 1.9.1.
[source]: Switch to GIT-FETCH.
[outputs]: Remove.
[arguments]: Don't disable Pythran. Don't configure OpenBLAS which is now
discovered by pkg-config. Do a "manual" PEP 517 style build. Make
install-doc phase conditional on the presence of Sphinx. Simplify tests.
[propagated-inputs]: Add PYTHON-PYTHRAN.
[native-inputs]: Remove PERL, WHICH, PYTHON-NUMPYDOC,
PYTHON-PYDATA-SPHINX-THEME, PYTHON-SPHINX, and PYTHON-SPHINX-PANELS. Add
GCC, PKG-CONFIG, PYTHON-PYPA-BUILD and PYTHON-MESON.
2022-09-16 18:42:21 +02:00
Marius Bakke
44d73b3370
gnu: Add meson-python.
...
* gnu/packages/build-tools.scm (meson-python): New variable.
2022-09-16 18:42:21 +02:00
Marius Bakke
6ce5a6c2e3
gnu: antlr4: Update to 4.10.1.
...
* gnu/packages/java.scm (java-antlr4-runtime): Update to 4.10.1.
[source](patches): Remove obsolete patch.
(java-antlr4-runtime-cpp): Add #:configure-flags.
(antlr4)[arguments]: Don't run tests from removed directory. Enable one test;
exclude one file.
* gnu/packages/fontutils.scm (python-afdko)[arguments]: Add phase to build
with the C++ 17 standard.
2022-09-16 18:42:21 +02:00
Marius Bakke
fa0efe133e
gnu: python-afdko: Update to 3.9.1.
...
* gnu/packages/fontutils.scm (python-afdko): Update to 3.9.1.
[arguments]: Add phase to build with system libxml2. Substitute antlr4_static
in one more file.
[native-inputs]: Add PKG-CONFIG.
[inputs]: Add LIBXML2.
2022-09-16 18:42:21 +02:00
Marius Bakke
67b762d7fb
gnu: font-amiri: Update to 0.117.
...
* gnu/packages/fonts.scm (font-amiri): Update to 0.117.
[native-inputs]: Add PYTHON-GLYPHSETS.
2022-09-16 18:42:21 +02:00
Marius Bakke
28cb6687a3
gnu: python-ufo2ft: Update to 2.28.0.
...
* gnu/packages/fontutils.scm (python-ufo2ft): Update to 2.28.0.
[propagated-inputs]: Replace PYTHON-FONTTOOLS with PYTHON-FONTTOOLS-NEXT.
* gnu/packages/fonts.scm (font-amiri)[native-inputs]: Likewise, to prevent
shadowing the propagated FontTools.
2022-09-16 18:42:21 +02:00
Marius Bakke
ff1d435732
gnu: psautohint: Build with python-fonttools-next.
...
* gnu/packages/fontutils.scm (psautohint)[propagated-inputs]: Replace
PYTHON-FONTTOOLS with PYTHON-FONTTOOLS-NEXT.
2022-09-16 18:42:21 +02:00
Marius Bakke
0ddd6bb166
gnu: python-statmake: Build with python-fonttools-next.
...
* gnu/packages/fontutils.scm (python-statmake)[propagated-inputs]: Change from
PYTHON-FONTTOOLS to PYTHON-FONTTOOLS-NEXT.
2022-09-16 18:42:21 +02:00
Marius Bakke
f50fa09929
gnu: python-fonttools-next: Update to 4.37.1.
...
* gnu/packages/python-xyz.scm (python-fonttools-next): Update to 4.37.1.
* gnu/packages/fontutils.scm (python-afdko)[source](snippet): Adjust expected
test output.
2022-09-16 18:42:21 +02:00
Marius Bakke
e5e8042b8f
gnu: python-compreffor: Update to 0.5.2.
...
* gnu/packages/fontutils.scm (python-compreffor): Update to 0.5.2.
2022-09-16 18:42:21 +02:00
Marius Bakke
200e76c0af
gnu: python-fontparts: Update to 0.10.8.
...
* gnu/packages/fontutils.scm (python-fontparts-bootstrap): Update to 0.10.8.
2022-09-16 18:42:21 +02:00
Marius Bakke
0cc27cea16
gnu: python-defcon: Update to 0.10.2.
...
* gnu/packages/fontutils.scm (python-defcon-bootstrap): Update to 0.10.2.
2022-09-16 18:42:20 +02:00
Marius Bakke
1a7fed0c72
gnu: python-fontmath: Update to 0.9.2.
...
* gnu/packages/fontutils.scm (python-fontmath): Update to 0.9.2.
2022-09-16 18:42:20 +02:00
Marius Bakke
82d36421bc
gnu: Add python-glyphsets.
...
* gnu/packages/fontutils.scm (python-glyphsets): New variable.
2022-09-16 18:42:20 +02:00
Marius Bakke
d1c60dd892
gnu: Add python-glyphslib.
...
* gnu/packages/fontutils.scm (python-glyphslib): New variable.
2022-09-16 18:42:20 +02:00
Marius Bakke
fff525acca
gnu: Add python-openstep-plist.
...
* gnu/packages/python-xyz.scm (python-openstep-plist): New variable.
2022-09-16 18:42:20 +02:00
Marius Bakke
937215d562
gnu: python-afdko: Run tests in parallel.
...
* gnu/packages/fontutils.scm (python-afdko)[arguments]: Adjust check phase for
parallel execution.
[native-inputs]: Add PYTHON-PYTEST-XDIST.
2022-09-16 18:42:20 +02:00
Marius Bakke
7d4a1b8c0c
gnu: nfs-utils: Remove unused input.
...
* gnu/packages/nfs.scm (nfs-utils)[inputs]: Remove LIBNFSIDMAP, which is part
of nfs-utils nowadays.
2022-09-16 18:42:20 +02:00
Marius Bakke
d8f5cb0dcc
gnu: hitch: Update to 1.7.3.
...
* gnu/packages/web.scm (hitch): Update to 1.7.3.
2022-09-16 18:42:20 +02:00
Maxim Cournoyer
106660e3ff
services: elogind-configuration-file: Do not serialize unspecified items.
...
This a followup to 59ee837d8b , which changed the
default value of the HandleLidSwitchExternalPower to the empty string.
Unfortunately this causes elogind to print a warning (although it otherwise
works as intended). This change fixes that.
* gnu/services/desktop.scm (elogind-configuration-file)<handle-action>: Let
the unspecified value go through.
<ini-file-clause>: When an unspecified file is encountered, do not produce any
text to serialize.
2022-09-16 12:02:24 -04:00
Danny Milosavljevic
3ba8c2b507
gnu: Add openfpgaloader.
...
* gnu/packages/fpga.scm (openfpgaloader): New variable.
2022-09-16 13:17:08 +02:00
Michael Rohleder
eb9a39c1b7
gnu: celluloid: Fix build.
...
Fixes <https://issues.guix.gnu.org/57839 >.
* gnu/packages/video.scm (celluloid)[build-system]: Use meson-build-system.
[native-inputs]: Add desktop-file-utils, glib:bin, gtk:bin, python-wrapper.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-16 12:35:13 +02:00
Michael Rohleder
8598aa4ea3
gnu: virt-manager: Use gtksourceview@4.
...
Fixes <https://issues.guix.gnu.org/57832 >.
* gnu/packages/virtualization.scm (virt-manager)[inputs]: Replace
gtksourceview with gtksourceview-4.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-16 12:33:28 +02:00
M
2f95980b3c
gnu: Add shirah.
...
* gnu/packages/ebook.scm (shirah): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-16 12:21:32 +02:00
M
49e120272b
gnu: Add python-syllables.
...
* gnu/packages/python-xyz.scm (python-syllables): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-16 12:19:49 +02:00
M
39b21d388a
gnu: Add python-ebooklib.
...
* gnu/packages/ebook.scm (python-ebooklib): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-16 12:19:46 +02:00
Luis Felipe
0ae5ff59ac
gnu: Add mazo.
...
* gnu/packages/education.scm (mazo): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-16 12:10:10 +02:00
Christopher Baines
ad5584bf25
marionette: Avoid read error when wait-for-file file is empty.
...
Since #<eof> can't be read.
* gnu/build/marionette.scm (wait-for-file): Return "" if file is empty.
Partially-Fixes: https://issues.guix.gnu.org/57827
2022-09-16 11:59:42 +02:00
Christopher Baines
0f46d4f147
marionette: Make it easier to debug REPL read failures.
...
Log the remaining contnet written to the REPL, so that there's more to go on
than:
socket:5:14: Unknown # object: "#<"
* gnu/build/marionette.scm (marionette-eval): Catch exceptions from read and
log the remainder of the content from the REPL.
2022-09-16 11:59:39 +02:00
Antero Mejr
d0376f6718
system: install: Do not load amdgpu in the installer image.
...
* gnu/system/install.scm (installation-os): Add amdgpu to
modprobe.blacklist.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-16 10:14:39 +02:00
Mathieu Othacehe
c0d25bef71
Update NEWS.
...
Entries extracted from:
git log 3eadcdc63..version-1.4.0
* NEWS: Update entries for v1.4.0
2022-09-16 10:01:56 +02:00
Maxim Cournoyer
02c5ed4f1b
gnu: virt-viewer: Update to 11.0 and enable more features.
...
* gnu/packages/spice.scm (virt-viewer): Update to 11.0.
[build-system]: Use meson-build-system.
[arguments]: Delete field.
[native-inputs]: Replace intltool with gettext-minimal. Add python.
[inputs]: Add bash-completion, libgovirt, libvirt-glib and vte.
2022-09-15 22:39:12 -04:00
Maxim Cournoyer
87ce7a6f71
gnu: libgovirt: Propagate glib and rest-next.
...
* gnu/packages/gnome.scm (libgovirt)
[inputs]: Move rest-next to...
[propagated-inputs]: ... here. Add glib.
2022-09-15 22:38:56 -04:00
Maxim Cournoyer
0a92a64e59
gnu: proj.4: Restore package.
...
Partially revert f7a12f9224 : the proj.4 still has a user, r-proj4.
* gnu/packages/geo.scm (proj.4): New variable.
2022-09-15 21:35:30 -04:00
Maxim Cournoyer
ca42eeebd8
gnu: maknik: Really fix the build.
...
* gnu/packages/geo.scm (mapnik)
[phases]{disable-problematic-tests}: Fix typo.
2022-09-15 20:49:10 -04:00
Maxim Cournoyer
b736af1824
gnu: catch-framework2: Rename variable to catch2.
...
Automated with:
git grep -l catch-framework2 | xargs sed 's/catch-framework2/catch2/g' -i
2022-09-15 20:15:56 -04:00
Maxim Cournoyer
f7a12f9224
gnu: maknik: Update to 3.1.0-0.8110349 to fix build.
...
* gnu/packages/geo.scm (maknik): Update to 3.1.0-0.8110349.
[source]: Fetch from git.
[build-system]: Switch to qt-build-system.
[cmake, configure-flags, phases]: New arguments.
[native-inputs]: Add catch-framework2.
[inputs]: Replace proj.4 with proj.
(proj.4): Delete variable.
2022-09-15 20:15:52 -04:00
Maxim Cournoyer
011dab59d8
Update NEWS.
...
This covers the commits made between v1.3.0..3eadcdc6^.
* NEWS: New entries for the 1.4.0 upcoming release.
2022-09-15 16:57:39 -04:00
Maxim Cournoyer
512fa6c7e5
gnu: pango-next: Fix source URL.
...
* gnu/packages/gtk.scm (pango-next): Use "pango" in the URL, not "pango-next".
Reported-by: Vivien Kraus <vivien@planete-kraus.eu >
2022-09-15 13:28:11 -04:00
Marius Bakke
a9f4fbd31a
gnu: python-pyabbix: Update to 1.2.1.
...
* gnu/packages/monitoring.scm (python-pyzabbix)[arguments]: Remove patch
phase. Use pytest instead of nose in check phase.
[native-inputs]: Remove PYTHON-HTTPRETTY and PYTHON-NOSE. Add
PYTHON-REQUESTS-MOCK and PYTHON-PYTEST.
[propagated-inputs]: Remove PYTHON-SEMANTIC-VERSION. Add PYTHON-PACKAGING.
2022-09-15 16:53:07 +02:00
Marius Bakke
b0bd3ef9aa
gnu: u-boot-tools: Disable check for 100% coverage.
...
* gnu/packages/bootloaders.scm (u-boot-tools)[arguments]: Add substitution.
2022-09-15 16:53:07 +02:00
Maxim Cournoyer
3d297a0017
Merge branch 'master' into staging
...
With resolved conflicts in:
gnu/local.mk
gnu/packages/freedesktop.scm
gnu/packages/gnuzilla.scm
2022-09-15 10:20:32 -04:00
Ricardo Wurmus
6737d8d324
gnu: Add r-snftool.
...
* gnu/packages/cran.scm (r-snftool): New variable.
2022-09-15 15:22:12 +02:00
Ricardo Wurmus
c8accb5eb6
gnu: Add r-exposition.
...
* gnu/packages/cran.scm (r-exposition): New variable.
2022-09-15 15:22:12 +02:00
Ricardo Wurmus
845e14f0b6
gnu: Add r-prettygraphs.
...
* gnu/packages/cran.scm (r-prettygraphs): New variable.
2022-09-15 15:22:12 +02:00
Ricardo Wurmus
1990524e3e
gnu: Add r-aricode.
...
* gnu/packages/cran.scm (r-aricode): New variable.
2022-09-15 15:22:12 +02:00
Ricardo Wurmus
de68d54ba6
gnu: Add r-clvalid.
...
* gnu/packages/cran.scm (r-clvalid): New variable.
2022-09-15 15:22:12 +02:00
Ricardo Wurmus
47fb9d23ea
gnu: Add r-omicade4.
...
* gnu/packages/bioconductor.scm (r-omicade4): New variable.
2022-09-15 15:22:11 +02:00
Ricardo Wurmus
d3f3968e65
gnu: Add r-made4.
...
* gnu/packages/bioconductor.scm (r-made4): New variable.
2022-09-15 15:22:11 +02:00
Artyom Bologov
0624e7dbad
gnu: Add cl-nactivitypub.
...
* gnu/packages/lisp-xyz.scm (cl-nactivitypub, ecl-nactivitypub,
sbcl-nactivitypub): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-15 10:35:57 +02:00
Artyom Bologov
170a396240
gnu: Add cl-njson.
...
* gnu/packages/lisp-xyz.scm (cl-njson, ecl-njson, sbcl-njson): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-15 10:35:57 +02:00
Trevor Richards
63115fafbd
gnu: Add sbcl-stumpwm-notify.
...
* gnu/packages/wm.scm (sbcl-stumpwm-notify): New variable.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-15 10:35:57 +02:00
Trevor Richards
d10bc44c24
gnu: Add cl-xml-emitter.
...
* gnu/packages/lisp-xyz.scm (cl-xml-emitter, ecl-xml-emitter,
sbcl-xml-emitter): New variables.
Co-authored-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-15 10:35:57 +02:00
jgart
e5fa6df1bc
gnu: Add cl-morse.
...
* gnu/packages/lisp-xyz.scm (cl-morse, ecl-cl-morse, sbcl-cl-morse):
New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-15 10:35:57 +02:00
jgart
539e5b9ace
gnu: Add cl-alea.
...
* gnu/packages/lisp-xyz.scm (cl-alea, ecl-alea, sbcl-alea): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-15 10:35:57 +02:00
jgart
42496652d9
gnu: Add cl-meta.
...
* gnu/packages/lisp-xyz.scm (cl-meta, ecl-meta, sbcl-meta): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-15 10:35:57 +02:00
kiasoc5
ab371a27d6
gnu: eless: Update to 0.7.
...
* gnu/packages/emacs-xyz.scm (eless): Update to 0.7.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-09-15 15:38:25 +08:00
ギャラ
f77a0e7838
gnu: waybar: Update to 0.9.13.
...
* gnu/packages/wm.scm (waybar): Update to 0.9.13.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-09-15 15:02:19 +08:00
Maxim Cournoyer
839950c4a9
Update NEWS.
...
These news were extracted from the output of:
git log --reverse v1.3.0..03eb0b1be2cfedd0d9a66fef0edc53a17f7653a5.
* NEWS: Update entries for v1.4.0.
2022-09-14 23:57:56 -04:00
Maxim Cournoyer
261bc8f028
gnu: nautilus: Simplify how tracker tests are disabled.
...
* gnu/packages/gnome.scm (nautilus)[source]: Remove patches field.
[phases]{disable-tracker-tests}: New phase.
* gnu/packages/patches/nautilus-disable-tracker-tests.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): De-register it.
2022-09-14 22:21:41 -04:00
Michael Rohleder
d9b7982ba5
gnu: go-ipfs: Install bash completion.
...
* gnu/packages/ipfs.scm (go-ipfs)[arguments]: Use gexp.
Add 'install-bashcompletion phase to install bash completion.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-14 23:36:32 +02:00
Michael Rohleder
4723d7a452
gnu: podman: Install shell completions.
...
* gnu/packages/containers.scm (podman)[arguments]: Add 'install-completions
phase to install shell completions.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-14 23:36:32 +02:00
Michael Rohleder
6ff5b79804
gnu: gnome-mines: Fix build.
...
* gnu/packages/gnome.scm (gnome-mines)[inputs]: Replace libgnome-games-support with libgnome-games-support-1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-14 23:36:32 +02:00
Michael Rohleder
a2a22a09c4
gnu: mousepad: Fix build.
...
* gnu/packages/xfce.scm (mousepad)[inputs]: Replace gtksourceview with gtksourceview-4..
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-14 23:36:31 +02:00
Greg Hogan
c70f881aac
gnu: stunnel: Update to 5.66.
...
* gnu/packages/web.scm (stunnel): Update to 5.66.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-14 23:36:31 +02:00
Greg Hogan
a4288aa6b8
gnu: rsync: Update to 3.2.6.
...
* gnu/packages/rsync.scm (rsync): Update to 3.2.6.
[arguments]<#:configure-flags> Remove '--disable-openssl'.
[inputs]: Add openssl.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-14 23:36:31 +02:00
Greg Hogan
ec883398f6
gnu: xsimd-benchmark: Build example.
...
* gnu/packages/cpp.scm (xsimd-benchmark): Fix package name.
[arguments]<#:configure-flags>: Enable examples ...
<#:phases>{install} ... and install.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-14 23:36:31 +02:00
Greg Hogan
7944fb5ffe
gnu: xsimd: Update to 9.0.1.
...
* gnu/packages/cpp.scm (xsimd): Update to 9.0.1.
[home-page]: Update redirect.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-14 23:36:31 +02:00
Marius Bakke
883d4e0abf
gnu: python-scikit-learn: Update to 1.1.2.
...
* gnu/packages/machine-learning.scm (python-scikit-learn): Update to 1.1.2.
2022-09-14 21:08:34 +02:00
Marius Bakke
8bd7cd34bf
gnu: python-pingouin: Don't pin scikit-learn version.
...
* gnu/packages/python-science.scm (python-pingouin)[arguments]: Add phase.
2022-09-14 21:08:34 +02:00
Marius Bakke
511a1b2a2f
gnu: python-tqdm: Update to 4.64.1.
...
* gnu/packages/python-xyz.scm (python-tqdm): Update to 4.64.1.
2022-09-14 21:08:34 +02:00
Marius Bakke
71d7694de4
gnu: ungoogled-chromium: Update to 105.0.5195.125-1.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 105.0.5195.125-1.
(%ungoogled-origin, ungoogled-chromium): Update hashes.
2022-09-14 21:08:34 +02:00
Marius Bakke
9442b0cf56
gnu: Remove duplicate copyright line.
...
* gnu/packages/fontutils.scm: Remove duplicate line.
2022-09-14 21:08:34 +02:00
Marius Bakke
b0ddbb0572
gnu: python-afdko: Remove generated code.
...
* gnu/packages/fontutils.scm (python-afdko)[source](modules, snippet): New
fields.
[arguments]: Add regenerate-hotconv-grammar phase.
[native-inputs]: Add ANTLR4 and OPENJDK.
2022-09-14 21:08:34 +02:00
Marius Bakke
0b8d2f407c
gnu: stcgal: Patch tests for PyYAML 6.
...
This fixes a regression since commit
27720d0fe1 .
* gnu/packages/embedded.scm (stcgal)[source](modules, snippet): New fields.
2022-09-14 21:08:34 +02:00
Liliana Marie Prikler
cad4b0cc07
gnu: dragon-drop: Use G-Expressions.
...
* gnu/packages/gtk.scm (dragon-drop)[arguments]: Convert to list of
G-Expressions.
2022-09-14 21:01:41 +02:00
arkhan
4d510e5411
gnu: dragon-drop: Correct PREFIX.
...
* gnu/packages/gtk.scm (dragon-drop)[#:make-flags]: Remove gratuitous “/bin”
from PREFIX.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-14 20:56:45 +02:00
jgart
104be3d5e3
gnu: Add folders.
...
* gnu/packages/esolangs.scm (folders): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-14 20:45:33 +02:00
Mathieu Othacehe
52f82c1af0
gnu: evince: Use poppler-next.
...
This fixes the following issue: ../evince-42.3/meson.build:416: WARNING: PDF
support is disabled since poppler-glib version >= 22.02.0 or libxml-2.0
version >= 2.5.0 not found
and restores PDF support.
* gnu/packages/gnome.scm (evince)[inputs]: Use poppler-next.
2022-09-14 18:09:13 +02:00
Mathieu Othacehe
a3de623e4a
gnu: Add poppler-next.
...
* gnu/packages/pdf.scm (poppler-next): New variable.
2022-09-14 18:09:13 +02:00
muradm
29d52a56f2
gnu: fail2ban-service-type: Improve extra-content fields.
...
* gnu/services/security.scm
(fail2ban-jail-configuration)[extra-content]: Change to text-config.
(fail2ban-configuration)[extra-content]: Change to text-config.
* gnu/doc/guix.texi: Update type of extra-content fields.
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-14 11:29:11 -04:00
Andrew Tropin
0336372296
gnu: emacs-kv: Fix build.
...
Build fails with emacs-next cause of copypasted test defined two times.
* gnu/packages/patches/emacs-kv-fix-tests.patch: New file.
* gnu/packages/emacs-xyz.scm (emacs-kv): Use it here.
* gnu/local.mk (dist_patch_DATA): Register it here.
2022-09-14 18:25:12 +03:00
Andrew Tropin
6cdde65bb5
home: shepherd: Add daemonize? option to configuration.
...
* gnu/home/services/shepherd.scm (home-shepherd-configuration):
Add DAEMONIZE?.
(home-shepherd-configuration-file): Use CONFIG argument instead of two
separate SERVICES and SHEPHERD, respect DAEMONIZE?.
(ensure-shepherd-gexp, launch-shepherd-gexp,
shepherd-xdg-configuration-files): Adjust according to arguments changes in
HOME-SHEPHERD-CONFIGURATION-FILE.
2022-09-14 18:25:11 +03:00
Andrew Tropin
f64825730f
etc: teams: Add entry for Andrew Tropin.
...
* etc/teams.scm.in ("Andrew Tropin"): New member.
2022-09-14 18:25:10 +03:00
Nicolas Goaziou
41c4a1ccfd
gnu: emacs-treemacs-extra: Fix build.
...
* gnu/packages/emacs-xyz.scm (emacs-treemacs-extra)[propagated-inputs]: Add
mu.
2022-09-14 16:57:37 +02:00
Guillaume Le Vaillant
5b35626374
gnu: txr: Update to 281.
...
* gnu/packages/lisp.scm (txr): Update to 281.
2022-09-14 11:07:49 +02:00
Guillaume Le Vaillant
33cff9aad2
gnu: cl-lzlib: Update to 2.0-2.22767ca.
...
* gnu/packages/lisp-xyz.scm (sbcl-lzlib): Update to 2.0-2.22767ca.
2022-09-14 11:03:20 +02:00
Guillaume Le Vaillant
8a58323908
gnu: gallery-dl: Update to 1.23.0.
...
* gnu/packages/video.scm (gallery-dl): Update to 1.23.0.
2022-09-14 11:03:20 +02:00
Christopher Baines
fa4fffbd08
gnu: Add comments to the bottom of a few more package modules.
...
This will hopefully discourage patches which add new packages to the bottom of
files, as this increases the likelihood of conflicts when applying patches.
If there are more specific ways that packages should be arranged in specific
modules, this message can be updated accordingly.
* gnu/packages/crates-graphics.scm: Add comment discouraging adding packages
to the bottom of the file.
* gnu/packages/crates-gtk.scm: ditto.
* gnu/packages/games.scm: ditto.
* gnu/packages/music.scm: ditto.
* gnu/packages/qt.scm: ditto.
* gnu/packages/web.scm: ditto.
2022-09-14 09:33:11 +01:00
Artyom V. Poptsov
8349fce0ee
gnu: Add java-slf4j-nop.
...
* gnu/packages/java.scm (java-slf4j-nop): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-14 09:33:11 +01:00
Kristian Lein-Mathisen
699ae7f5da
gnu: solvespace: Wrap with GSETTINGS_SCHEMA_DIR.
...
By opening File => Open in the menu, SolveSpace crashes with:
(solvespace:3891): GLib-GIO-ERROR **: 11:52:37.518: Settings schema
'org.gtk.Settings.FileChooser' is not installed fish: Job 1, 'solvespace'
terminated by signal SIGTRAP (Trace or breakpoint trap)
This patch should fix that, showing the GTK FileChooser dialog instead.
Solution was taken from gnu/packages/messaging.scm (utox).
* gnu/packages/engineering.scm (solvespace)[arguments]: Wrap with
GSETTINGS_SCHEMA_DIR.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-14 09:32:55 +01:00
kiasoc5
592ca01d8d
gnu: Add blesh.
...
* gnu/packages/bash.scm (blesh): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-14 08:51:35 +01:00
Maxim Cournoyer
76454d9af3
gnu: cmake: Update to 3.24.2.
...
* gnu/packages/cmake.scm (cmake): Update to 3.24.2.
[source]: Adjust snippet to preserve "Utilities/cmelf". Override with new
patch.
[native-inputs]: Use modify-inputs and remove labels.
* gnu/packages/patches/cmake-curl-certificates-3.24.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
2022-09-14 00:02:39 -04:00
Ludovic Courtès
5017b1bc3a
gnu: texlive-setspace: Add 'license' field.
...
* gnu/packages/tex.scm (texlive-setspace)[license]: New field.
2022-09-14 00:14:51 +02:00
Nicolas Goaziou
ac17d6ebf8
gnu: emacs-libyaml: Improve package style.
...
* gnu/packages/emacs-xyz.scm (emacs-libyaml)[arguments]: Use G-expressions.
Remove trailing #T from phases. Prefer MAKE-FILE-WRITABLE over CHMOD.
2022-09-13 23:23:22 +02:00
Nicolas Goaziou
2f0b3b2d22
gnu: emacs-libyaml: Update to 0.1-1.961e0d8.
...
* gnu/packages/emacs-xyz.scm (emacs-libyaml): Update to 0.1-1.961e0d8.
2022-09-13 23:20:51 +02:00
Nicolas Goaziou
ebbf77bf49
gnu: gammastep: Improve package style.
...
* gnu/packages/xdisorg.scm (gammastep)[arguments]: Use G-expressions.
2022-09-13 23:07:06 +02:00
Nicolas Goaziou
b6a633920d
gnu: gammastep: Update to 2.0.9.
...
* gnu/packages/xdisorg.scm (gammastep): Update to 2.0.9.
2022-09-13 23:07:06 +02:00
Nicolas Goaziou
669187accc
gnu: hedgewars: Improve package style.
...
* gnu/packages/games.scm (hedgewars)[arguments]: Use G-expressions. Remove
trailing #T. Remove FIX-SORCES phase. Run tests according to #:tests?
keyword.
[inputs]: Remove labels.
2022-09-13 23:07:06 +02:00
Nicolas Goaziou
d8d5e2a88f
gnu: hedgewars: Update to 1.0.2.
...
* gnu/packages/games.scm (hedgewars): Update to 1.0.2.
* gnu/packages/patches/hedgewars-network-bsd.patch: Delete file.
* gnu/local.mk: Apply removal.
2022-09-13 23:07:05 +02:00
Nicolas Goaziou
a24da5c8bc
gnu: emacs-treemacs: Update package style.
...
* gnu/packages/emacs-xyz.scm (emacs-treemacs)[arguments]: Use
G-expressions. Simplify PATCH-PATHS phase. Move data within the ELPA directory.
2022-09-13 23:07:05 +02:00
Nicolas Goaziou
66b54aef0d
gnu: emacs-treemacs: Update to 3.0.
...
* gnu/packages/emacs-xyz.scm (emacs-treemacs): Update to 3.0.
2022-09-13 23:07:05 +02:00
Ricardo Wurmus
a7af25ad31
gnu: kraken2: Update to 2.1.2.
...
* gnu/packages/bioinformatics.scm (kraken2): Update to 2.1.2.
2022-09-13 17:35:38 +02:00
Ludovic Courtès
e61c581805
gnu: qtshadertools: Fix 'license' field.
...
Fixes <https://issues.guix.gnu.org/57581 >.
Reported by Julien Lepiller <julien@lepiller.eu >.
Fix provided by Florian Pelz <pelzflorian@pelzflorian.de >.
* gnu/packages/qt.scm (qtshadertools)[license]: Fix value.
2022-09-13 16:38:08 +02:00
Jan (janneke) Nieuwenhuizen
7a980bbaf4
gnu: dezyne: Update to 2.16.1.
...
* gnu/packages/dezyne.scm (dezyne): Update to 2.16.1.
2022-09-13 15:08:41 +02:00
Nicolas Goaziou
4017a47766
gnu: crawl: Update to 0.29.1.
...
* gnu/packages/games.scm (crawl): Update to 0.29.1.
2022-09-13 14:48:46 +02:00
Trevor Richards
0196662198
gnu: emacs-expand-region: Update to 0.11.0-1.c5c4362.
...
* gnu/packages/emacs-xyz.xcm (emacs-expand-region): Update to
0.11.0-1.c5c4362.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-13 14:48:46 +02:00
Nicolas Graves via Guix-patches via
1a89db2c0e
gnu: Add emacs-ednc.
...
* gnu/packages/emacs-xyz.scm (emacs-ednc): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-13 14:48:46 +02:00
Maxim Cournoyer
4d15eb2368
gnu: gnome-bluetooth: Fix source URL.
...
* gnu/packages/gnome.scm (gnome-bluetooth)[source]: Fix URL.
2022-09-13 08:42:40 -04:00
Efraim Flashner
c2f9064f9b
gnu: python-efl: Update to 1.26.0.
...
* gnu/packages/enlightenment.scm (python-efl): Update to 1.26.0.
[inputs]: Add python-packaging.
[arguments]: Remove trailing #t from phases.
2022-09-13 12:05:39 +03:00
Efraim Flashner
279349209e
gnu: rust-1.59: Fix building for riscv64-linux.
...
* gnu/packages/rust.scm (rust-1.59)[arguments]: When building for
riscv64-linux add a phase to support building with llvm < 14.
2022-09-13 11:21:18 +03:00
Maxim Cournoyer
1d7402c4ed
gnu: gnome-screenshot: Remove meson patch.
...
* gnu/packages/gnome.scm (gnome-screenshot)
[source]: Delete patches field.
* gnu/packages/patches/gnome-screenshot-meson-0.60.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): De-register it.
2022-09-13 02:05:00 -04:00
Maxim Cournoyer
51ea0a7958
gnu: glade: Remove meson argument.
...
* gnu/packages/gnome.scm (glade3)[meson]: Delete argument.
2022-09-13 02:05:00 -04:00
Maxim Cournoyer
7d59dbfb8b
gnu: gnome-2048: Remove input labels.
...
* gnu/packages/games.scm (gnome-2048)[inputs, native-inputs]: Remove labels.
2022-09-13 02:05:00 -04:00
Maxim Cournoyer
2f12a46090
gnu: gpaste: Update to 42.1.
...
* gnu/packages/gnome-xyz.scm (gpaste): Update to 42.1.
[meson]: Delete argument.
[phases]{fix-introspection-install-dir}: Use #$output.
[native-inputs]: Remove autoconf, automake and libtool.
[inputs]: Remove graphene. Add gtk and libadwaita. Sort.
* gnu/packages/patches/gpaste-fix-paths.patch: Update patch.
2022-09-13 02:04:59 -04:00
Maxim Cournoyer
eda94d13d4
gnu: Add pkgconf.
...
* gnu/packages/pkg-config.scm (pkgconf): New variable.
2022-09-13 02:04:59 -04:00
Maxim Cournoyer
028b60a985
gnu: gnome-maps: Update to 43.rc.
...
* gnu/packages/geo.scm (gnome-maps): Update to 43.rc.
[arguments]: Use gexps.
[phases]{patch-dbus-service}: Use #$output.
{wrap}: Do not wrap with LD_LIBRARY_PATH, which now seems extraneous. Delete
trailing #t.
[native-inputs]: Add glib:bin. Remove labels.
[inputs]: Remove labels and sort. Add pango-next. Replace
libchamplain with libshumate, rest with rest-next, webkitgtk-with-libsoup2
with webkitgtk and libsoup-minimal-2 with libsoup.
2022-09-13 02:04:59 -04:00
Maxim Cournoyer
ab754956c1
gnu: Add libshumate.
...
* gnu/packages/gnome.scm (libshumate): New variable.
2022-09-13 02:04:59 -04:00
Maxim Cournoyer
1ffeeac0c1
gnu: gnome-shell: Use libsoup 3 to fix tests.
...
* gnu/packages/gnome.scm (gnome-shell)[configure-flags]: Add -Dsoup2=false.
2022-09-13 02:04:59 -04:00
Maxim Cournoyer
f8ef02ec76
gnu: arc-theme: Update to 20220405.
...
* gnu/packages/gnome-xyz.scm (arc-theme): Update to 20220405.
[native-inputs]: Add python.
2022-09-13 02:04:58 -04:00
Maxim Cournoyer
b659d8fafa
gnu: chatty: Fix build.
...
* gnu/packages/messaging.scm (chatty)
[#:glib-or-gtk?]: New argument.
[inputs]: Replace folks with folks-with-libsoup2.
[propagated-inputs]: Replace evolution-data-server with evolution-data-server-3.44.
2022-09-13 02:04:58 -04:00
Maxim Cournoyer
e1ae27e712
gnu: chatty: Fix indentation.
...
* gnu/packages/messaging.scm (chatty): Re-indent.
2022-09-13 02:04:58 -04:00
Maxim Cournoyer
8465732b7c
gnu: Add folks-with-libsoup2.
...
* gnu/packages/gnome.scm (folks-with-libsoup2): New variable.
2022-09-13 02:04:58 -04:00
Maxim Cournoyer
311e627c3e
gnu: libgweather: Use geocode-glib-with-libsoup2.
...
* gnu/packages/gnome.scm (libgweather)
[propagated-inputs]: Replace geocode-glib with geocode-glib-with-libsoup2.
2022-09-13 02:04:58 -04:00
Maxim Cournoyer
042df7d4d8
gnu: gupnp-igd: Build with gupnp-1.4.
...
* gnu/packages/gnome.scm (gupnp-igd)
[arguments]: Use gexps.
[phases]: Delete trailing #t.
{patch-docbook-xml}: Use this-package-native-input.
{move-doc}: Use gexps.
[native-inputs]: Remove labels.
[propagated-inputs]: Remove gssdp, gupnp and libsoup. Add gupnp-1.4.
2022-09-13 02:04:57 -04:00
Maxim Cournoyer
f4dc2344f4
gnu: gnucash: Update to 4.11 and use gexps.
...
* gnu/packages/gnucash.scm: Sort imports.
(gnucash): Update to 4.11. Re-order fields, moving inputs after arguments.
[arguments]: Use gexps.
[phases]: Delete trailing #t.
{unpack-gmock}: Delete phase.
{set-env-vars}: Use search-input-directory.
{install-locales}: Use gexps.
{split-python-bindings}: Likewise.
{wrap-programs}: Likewise. Also use search-input-file.
[native-inputs]: Delete labels. Remove googlemock source. Sort.
[inputs]: Delete labels. Sort.
(gnucash-docs): Adjust URI and update hash.
[native-inputs]: Delete labels. Sort.
2022-09-13 02:04:57 -04:00
Maxim Cournoyer
f618a5e2d7
gnu: libofx: Update to 0.10.7.
...
* gnu/packages/finance.scm (libofx): Update to 0.10.7.
[arguments]: Use gexps.
[configure-flags]: Use search-input-directory.
[inputs]: Remove labels.
2022-09-13 02:04:57 -04:00
Maxim Cournoyer
e4bf10ab0b
gnu: evolution: Update to 3.45.3.
...
* gnu/packages/gnome.scm (evolution): Update to 3.45.3.
[arguments]: Use gexps.
[configure-flags]: Remove -DENABLE_LIBCRYPTUI=OFF, obsolete.
[phases]{patch-ui-module-dir}: Update phase.
[inputs]: Replace libgweather with libgweather4. Replace
webkitgtk-with-libsoup2 with webkitgtk. Remove libnotify.
2022-09-13 02:04:57 -04:00
Maxim Cournoyer
629172258d
gnu: evolution-data-server: Update to 3.45.3.
...
* gnu/packages/gnome.scm (evolution-data-server): Update to 3.45.3.
[configure-flags]: Add -DENABLE_OAUTH2_WEBKITGTK4=OFF.
[native-inputs]: Sort.
[propagated-inputs]: Add glib, gtk and json-glib. Replace libsoup-minimal-2
with libsoup.
[inputs]: Replace libgweather with libgweather4. Replace
webkitgtk-with-libsoup2 with webkitgtk. Add pango-next.
(evolution-data-server-3.44): New variable.
2022-09-13 02:04:56 -04:00
Maxim Cournoyer
ad519b73e2
gnu: Add webkitgtk-next.
...
* gnu/packages/webkit.scm (webkitgtk-next): New variable.
2022-09-13 02:04:56 -04:00
Maxim Cournoyer
4ebd1da9eb
gnu: libsoup: Update to 3.1.4.
...
* gnu/packages/gnome.scm (libsoup): Update to 3.1.4.
[configure-flags]: Remove obsolete gtk_doc flag and use gexps.
[phases]{patch-docbook-xml}: Delete phase.
{move-doc}: Use gexps.
[native-inputs]: Delete docbook-xml and gtk_doc. Add gi-docgen.
2022-09-13 02:04:56 -04:00
Maxim Cournoyer
af321a81aa
gnu: numix-gtk-theme: Remove input labels.
...
* gnu/packages/gnome-xyz.scm (numix-gtk-theme)
[native-inputs]: Delete labels.
2022-09-13 02:04:56 -04:00
Maxim Cournoyer
b060857c8e
gnu: gnome-builder: Update to 42.1.
...
* gnu/packages/gnome.scm (gnome-builder): Update to 42.1.
[source]: Remove patches field.
[configure-flags]: Remove -Dplugin_flatpak=false and
-Dplugin_update_manager=false.
[phases]{patch-meson}: Use search-input-file.
{fix-ninja}: Delete phase.
[inputs]: Ad flatpak, libhandy and libostree.
[propagated-inputs]: Replace gtksourceview with gtksourceview-4.
* gnu/packages/patches/gnome-builder-update-libportal.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): De-register it.
2022-09-13 02:04:56 -04:00
Maxim Cournoyer
715fb46817
gnu: sysprof: Update to 3.45.1.
...
* gnu/packages/gnome.scm (sysprof): Update to 3.45.1.
[phases]{patch-install-script}: Rename to...
{disable-post-install}: ... this, and adjust.
[inputs]: Replace glib with glib-next, gtk+ with gtk. Add libadwaita.
[native-inputs]: Replace glib:bin with glib-next:bin. Sort.
(sysprof-3.44): New variable.
(gnome-builder)[inputs]: Replace sysprof with sysprof-3.44.
2022-09-13 02:04:55 -04:00
Maxim Cournoyer
194e53b8a8
gnu: jsonrpc-glib: Update to 3.42.0.
...
* gnu/packages/gnome.scm (jsonrpc-glib): Update to 3.42.0.
[inputs, native-inputs]: Sort.
2022-09-13 02:04:55 -04:00
Maxim Cournoyer
3426fc6036
gnu: piper: Update to 0.7 and enable tests.
...
* gnu/packages/gnome.scm (piper): Update to 0.7.
[native-inputs, inputs]: Move after arguments.
[tests?]: Remove argument.
[phases]{wrap-script}: Use wrap-script. Use search-input-file. Wrap with
GUIX_PYTHONPATH.
[native-inputs]: Add appstream.
[inputs]: Add guile-3.0. Remove gtk+:bin.
2022-09-13 02:04:55 -04:00
Maxim Cournoyer
13a0224cd1
gnu: apostrophe: Update to 2.6.3.
...
* gnu/packages/gnome.scm (apostrophe): Update to 2.6.3.
[source]: Update URL.
[imported-modules, modules]: New arguments.
[phases]{python-and-gi-wrap}: Use search-input-file and site-packages.
[native-inputs]: Add bash-minimal.
[home-page]: Update URL.
2022-09-13 02:04:55 -04:00
Maxim Cournoyer
6eeb0f4eeb
gnu: setzer: Update to 0.4.8.
...
* gnu/packages/gnome.scm (setzer): Update to 0.4.8.
[imported-modules, modules]: New arguments.
[phases]{python-and-gi-wrap}: Use search-input-file.
[inputs]: Remove gtksourceview and webkitgtk; add bash-minimal, gtksourceview-4,
python-pexpect, and webkitgtk-with-libsoup2.
[native-inputs]: Remove desktop-file-utils, glib:bin, gobject-introspection,
gtk+:bin, and python-wrapper; add python.
2022-09-13 02:04:55 -04:00
Maxim Cournoyer
70f1fd9aad
gnu: polari: Update to 42.1.
...
* gnu/packages/gnome.scm (polari): Update to 42.1.
[phases]{skip-gtk-update-icon-cache}: Adjust.
{fix-desktop-file}: Punctuate comment. Use search-input-file.
{wrap-typelib}: Likewise.
[inputs]: Move field after native-inputs. Replace libsoup-minimal-2 with
libsoup. Add bash-minimal.
[native-inputs]: Replace intltool with gettext-minimal.
2022-09-13 02:04:54 -04:00
Maxim Cournoyer
6f4424282e
gnu: gnote: Update to 42.1.
...
* gnu/packages/gnome.scm (gnote): Update to 42.1.
[native-inputs]: Remove intltool; add gettext-minimal.
2022-09-13 02:04:54 -04:00
Maxim Cournoyer
57c86aaba2
gnu: libgit2-glib: Update to 1.1.0.
...
* gnu/packages/gnome.scm (libgit2-glib): Update to 1.1.0.
[inputs]: Remove glib.
[propagated-inputs]: Add glib.
2022-09-13 02:04:54 -04:00
Maxim Cournoyer
4237ccbb49
gnu: ghex: Update to 42.3.
...
* gnu/packages/gnome.scm (ghex): Update to 42.3.
[source]: Adjust URL.
[phases]{skip-gtk-update-icon-cache}: Update.
[native-inputs]: Remove labels. Replace intltool with gettext-minimal.
Remove which.
[inputs]: Replace gtk+ with gtk.
2022-09-13 02:04:54 -04:00
Maxim Cournoyer
731b56f311
gnu: sound-juicer: Update to 3.38.0.
...
* gnu/packages/gnome.scm (sound-juicer): Update to 3.38.0.
[arguments]: New field.
[native-inputs]: Sort. Replace intltool with gettext-minimal. Add glib:bin
and python.
[inputs]: Sort.
2022-09-13 02:04:53 -04:00
Maxim Cournoyer
0ef4c18fba
gnu: passwordsafe: Rename to secrets and update to 6.5.
...
* gnu/packages/gnome.scm (passwordsafe): Deprecate in favor of...
(secrets): ... this new variable. Update to 6.5.
[meson]: Remove argument.
[imported-modules, modules]: New arguments.
[phases]{disable-postinstall-script}: Patch meson.build.
{python-and-gi-wrap}: Use search-input-file.
[native-inputs]: Remove gtk+:bin.
[inputs]: replace gtk+ with gtk. Add bash-minimal, libadwaita and
python-pyotp.
[home-page]: Update URL.
[description]: Adjust for renaming.
2022-09-13 02:04:53 -04:00
Maxim Cournoyer
da4849e13b
gnu: cheese: Update to 41.1.
...
* gnu/packages/gnome.scm (cheese): Update to 41.1.
[tests?]: Remove argument.
[phases]: Delete trailing #t.
{wrap-cheese}: Use search-input-file.
[inputs]: Add bash-minimal. Move gobject-introspection to...
[native-inputs]: ... here.
2022-09-13 02:04:53 -04:00
Maxim Cournoyer
c1721e769e
gnu: lollypop: Update to 1.4.35 and enable tests.
...
* gnu/packages/gnome.scm (lollypop): Update to 1.4.35.
[tests?]: Delete argument.
[phases]{disable-gtk-update-icon-cache}: New phase.
{wrap-program}: Use search-input-file.
[native-inputs]: Remove labels. Remove gtk+:bin.
[inputs]: Remove labels. Add bash-minimal.
2022-09-13 02:04:53 -04:00
Maxim Cournoyer
db3d093546
gnu: gspell: Update to 1.11.1.
...
* gnu/packages/gnome.scm (gspell): Update to 1.11.1.
[source]: Delete patches.
[phases]{disable-problematic-tests}: New phase.
[native-inputs]: Remove labels.
* gnu/packages/patches/gspell-dash-test.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): De-register it.
2022-09-13 02:04:52 -04:00
Maxim Cournoyer
be1c940d3a
gnu: orca: Update to 42.3.
...
* gnu/packages/gnome.scm (orca): Update to 42.3.
[phases]{wrap-orca}: Use search-input-file.
[native-inputs]: Remove intltool; add gettext-minimal.
[inputs]: Add bash-minimal.
2022-09-13 02:04:52 -04:00
Maxim Cournoyer
bd9742938c
gnu: python-pyatspi: Update to 2.45.90.
...
* gnu/packages/gnome.scm (python-pyatspi): Update to 2.45.90.
2022-09-13 02:04:52 -04:00
Maxim Cournoyer
2671d0c92d
gnu: libgnomekbd: Update to 3.28.1.
...
* gnu/packages/gnome.scm (libgnomekbd): Update to 3.28.1.
2022-09-13 02:04:51 -04:00
Maxim Cournoyer
b83ce22d3e
gnu: gfbgraph: Update to 0.2.5 and enable tests.
...
* gnu/packages/gnome.scm (gfbgraph): Update to 0.2.5.
[tests?]: Delete argument.
[configure-flags]: Remove "--enable-gtk-doc" and "--enable-introspection",
which are correctly automatically detected.
[native-inputs]: Remove autoconf, automake, libtool and which.
[inputs]: Remove labels.
2022-09-13 02:04:51 -04:00
Maxim Cournoyer
e8de035b95
gnu: libgovirt: Update to 0.3.9.
...
* gnu/packages/gnome.scm (libgovirt): Update to 0.3.9.
[build-system]: Use meson-build-system.
[glib-or-gtk?]: New argument.
[inputs]: Replace rest with rest-next. Move glib-networking to...
[native-inputs]: ... here. Remove gtk+:bin.
2022-09-13 02:04:51 -04:00
Maxim Cournoyer
eb93a78df8
gnu: komikku: Update to 0.41.0.
...
* gnu/packages/gnome.scm (komikku): Update to 0.41.0.
[phases]: Delete trailing #t.
{python-and-gi-wrap}: Use search-input-file.
[inputs]: Add bash-minimal.
2022-09-13 02:04:51 -04:00
Maxim Cournoyer
87c5dd8ea5
gnu: nautilus: Update to 42.2 and enable tests.
...
* gnu/packages/gnome.scm (nautilus): Update to 42.2.
[patches]: Replace nautilus-add-libportal-gtk3.patch with
nautilus-disable-tracker-tests.patch.
[tests?]: Delete argument.
[phases]: Use gexps.
{check}: Move after install.
{pre-check}: New phase.
[native-inputs]: Replace intltool with gettext-minimal. Add python-pygobject.
[inputs]: Remove libsoup-minimal-2.
* gnu/packages/patches/nautilus-add-libportal-gtk3.patch: Delete file.
* gnu/packages/patches/nautilus-disable-tracker-tests.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-09-13 02:04:51 -04:00
Maxim Cournoyer
0e60bdf0dc
gnu: tracker: Patch a /bin/bash reference.
...
* gnu/packages/gnome.scm (tracker)[phases]{patch-paths}: New phase.
[native-inputs]: Add glibc-utf8-locales.
[inputs]: Add bash-minimal.
2022-09-13 02:04:50 -04:00
Maxim Cournoyer
c67cef48e0
gnu: gtk-vnc: Update to 1.3.1.
...
* gnu/packages/gnome.scm (gtk-vnc): Update to 1.3.1.
[meson]: Delete argument.
2022-09-13 02:04:50 -04:00
Maxim Cournoyer
69d87bccb9
gnu: libxml++: Update to 5.0.2.
...
* gnu/packages/gnome.scm (libxml++): Update to 5.0.2.
[phases]: Use gexps.
{fix-documentation}: Use search-input-file.
[propagated-inputs]: Remove glibmm-2.64.
(libxml++-2): Update to 2.42.2.
[propagated-inputs]: Add glibmm-2.64.
2022-09-13 02:04:50 -04:00
Maxim Cournoyer
09da72fa0a
gnu: mobile-broadband-provider-info: Update to 20220725.
...
* gnu/packages/gnome.scm (mobile-broadband-provider-info): Update to 20220725.
[native-inputs]: Add libxslt.
2022-09-13 02:04:50 -04:00
Maxim Cournoyer
937234eac2
gnu: network-manager-openconnect: Update to 1.2.8.
...
* gnu/packages/gnome.scm (network-manager-openconnect): Update to 1.2.8.
[configure-flags]: Remove "--with-libnm-glib=no". Add "--with-gtk4=yes".
[phases]: Delete trailing #t.
[native-inputs]: Add gilb:bin.
[inputs]: Add gtk and pango-next. Sort.
2022-09-13 02:04:49 -04:00
Maxim Cournoyer
5f165887d4
gnu: network-manager-vpnc: Update to 1.2.8.
...
* gnu/packages/gnome.scm (network-manager-vpnc): Update to 1.2.8.
[configure-flags]: Remove "--with-libnm-glib=no". Add "--with-gtk4=yes".
[phases]: Delete trailing #t.
[native-inputs]: Add gilb:bin.
[inputs]: Add gtk and pango-next.
2022-09-13 02:04:49 -04:00
Maxim Cournoyer
6c789555a5
gnu: network-manager-openvpn: Update to 1.10.0.
...
* gnu/packages/gnome.scm (network-manager-openvpn): Update to 1.10.0.
[configure-flags]: Add "--with-gtk4=yes".
[phases]: Delete trailing #t.
[native-inputs]: add glib:bin.
[inputs]: Add gtk and pango-next; sort inputs.
2022-09-13 02:04:49 -04:00
Maxim Cournoyer
255935a2ff
gnu: network-manager: Update to 1.41.2.
...
* gnu/packages/gnome.scm (network-manager): Update to 1.41.2.
[native-inputs]: Sort. Replace intltool with gettext-minimal. Add perl.
[inputs]: Sort. Add libpsl. Remove libsoup.
2022-09-13 02:04:49 -04:00
Maxim Cournoyer
f05326d5c0
gnu: file-roller: Update to 3.42.0.
...
* gnu/packages/gnome.scm (file-roller): Update to 3.42.0.
[arguments]: New field.
[native-inputs]: Replace intltool with gettext-minimal. Remove gtk+:bin.
[inputs]: Remove gdk-pixbuf. Add libhandy.
2022-09-13 02:04:49 -04:00
Maxim Cournoyer
0122f1e294
gnu: shotwell: Update to 0.31.5.
...
* gnu/packages/gnome.scm (shotwell): Update to 0.31.5.
[phases]: Remove trailing #t.
[native-inputs]: Delete labels. Replace vala with vala-next.
[inputs]: Likewise, and replace webkitgtk-with-libsoup2 with webkitgtk. Add
libsecret and libwebp.
2022-09-13 02:04:48 -04:00
Maxim Cournoyer
bdb1569123
gnu: gexiv2: Update to 0.14.0.
...
* gnu/packages/gnome.scm (gexiv2): Update to 0.14.0.
[arguments]: New field.
[native-inputs]: Add python and python-pygobject.
2022-09-13 02:04:48 -04:00
Maxim Cournoyer
dfed788230
gnu: libgee: Update to 0.20.5.
...
* gnu/packages/gnome.scm (libgee): Update to 0.20.5.
[phases]: Use gexps.
2022-09-13 02:04:48 -04:00
Maxim Cournoyer
59206b4668
gnu: yelp: Update to 42.1.
...
* gnu/packages/gnome.scm (yelp): Update to 42.1.
[inputs]: Add libhandy.
2022-09-13 02:04:48 -04:00
Maxim Cournoyer
6c2454f282
gnu: d-feet: Update to 0.3.16.
...
* gnu/packages/gnome.scm (d-feet): Update to 0.3.16.
[build-system]: Use meson-build-system.
[out-of-source?]: Remove argument.
[glib-or-gtk?]: New argument.
[phases]{pre-check}: Do not ignore any error. Do not set DBUS_FATAL_WARNINGS.
{wrap-program}: Us search-input-file.
[native-inputs]: Remove labels. Add glib:bin.
[inputs]: Remove hicolor-icon-theme.
2022-09-13 02:04:47 -04:00
Maxim Cournoyer
fb87250b1e
gnu: epiphany: Update to 42.4.
...
* gnu/packages/gnome.scm (epiphany): Update to 42.4.
[configure-flags]: Add -Dsoup2=disabled to use libsoup 3.
[inputs]: Add libsoup. Replace webkitgtk-with-libsoup2 with webkitgtk.
2022-09-13 02:04:47 -04:00
Maxim Cournoyer
d6d861c615
gnu: eog-plugins: Update to 42.1.
...
* gnu/packages/gnome.scm (eog-plugins): Update to 42.1.
[build-system]: Use meson-build-system.
[arguments]: Delete field.
[inputs]: Sort; add python.
[native-inputs]: Sort; add libgdata.
2022-09-13 02:04:47 -04:00
Maxim Cournoyer
7bef0fa3a2
gnu: eog: Update to 42.3.
...
* gnu/packages/gnome.scm (eog): Update to 42.3.
[native-inputs, inputs]: Sort.
[inputs]: Add bash-minimal. Move libhandy to...
[propagated-inputs]: ... here.
2022-09-13 02:04:47 -04:00
Maxim Cournoyer
bcb877d391
gnu: rhythmbox: Update to 3.4.6.
...
* gnu/packages/gnome.scm (rhythmbox): Update to 3.4.6.
[build-system]: Use meson-build-system.
[glib-or-gtk?]: New argument.
[configure-flags]: Delete argument.
[phases]{skip-gtk-update-icon-cache}: New phase.
{wrap-rhythmbox}: Simplify.
[native-inputs]: Remove labels. Replace intltool with gettext-minimal.
[inputs]: Add bash-minimal. Remove labels. Remove libsoup.
2022-09-13 02:04:46 -04:00
Maxim Cournoyer
77ad9ef333
gnu: grilo-plugins: Update to 0.3.15.
...
* gnu/packages/gnome.scm (grilo-plugins): Update to 0.3.15.
[native-inputs]: Remove labels. Remove gtk+:bin. Add gst-plugins-good and
gst-plugins-bad.
[inputs]: Remove commented inputs. Add avahi and gstreamer.
2022-09-13 02:04:46 -04:00
Maxim Cournoyer
36fee7184d
gnu: grilo: Update to 0.3.15.
...
* gnu/packages/gnome.scm (grilo): Update to 0.3.15.
[arguments]: New field.
[inputs]: Remove libsoup-minimal-2; add libsoup.
2022-09-13 02:04:46 -04:00
Maxim Cournoyer
ebd9041614
gnu: gnome-klotski: Update to 3.38.2.
...
* gnu/packages/gnome.scm (gnome-klotski): Update to 3.38.2.
[phases]: Delete trailing #t.
[native-inputs]: Remove labels.
2022-09-13 02:04:46 -04:00
Maxim Cournoyer
04ed75cc9d
gnu: libgnome-games-support: Update to 2.0.0.
...
* gnu/packages/gnome.scm (libgnome-games-support): Update to 2.0.0.
[propagated-inputs]: Remove gtk+; add gtk.
(libgnome-games-support-1): New variable.
(gnome-klotski)[inputs]: Replace libgnome-games-support with
libgnome-games-support-1.
* gnu/packages/games.scm (gnome-2048)[inputs]: Likewise.
2022-09-13 02:04:45 -04:00
Maxim Cournoyer
d6a716f909
gnu: gom: Update to 0.4.
...
* gnu/packages/gnome.scm (gom): Update to 0.4.
[imported-modules, modules, configure-flags]: New arguments.
[native-inputs]: Remove intltool; add gettext-minimal, python, and python-pygobject.
2022-09-13 02:04:45 -04:00
Maxim Cournoyer
7ae62f9ddf
gnu: devhelp: Update to 41.3.
...
* gnu/packages/gnome.scm (devhelp): Update to 41.3.
[phases]{fix-devhelp-gir-inputs}: Delete phase.
[native-inputs]: Remove labels.
[inputs]: Remove gsettings-desktop-schemas.
(devhelp-with-libsoup2)[arguments]: Remove field.
[inputs]: Express via modify-inputs.
2022-09-13 02:04:45 -04:00
Maxim Cournoyer
a13849dc55
gnu: amtk: Update to 5.5.1.
...
* gnu/packages/gnome.scm (amtk): Update to 5.5.1.
2022-09-13 02:04:45 -04:00
Maxim Cournoyer
722548a624
gnu: vte-ng: Update to 0.59.0.
...
* gnu/packages/gnome.scm (vte-ng): Update to 0.59.0.
2022-09-13 02:04:44 -04:00
Maxim Cournoyer
76791a5504
gnu: vte: Update to 0.69.99.
...
* gnu/packages/gnome.scm (vte): Update to 0.69.99.
2022-09-13 02:04:44 -04:00
Maxim Cournoyer
f0a490732b
gnu: vala-next: Update to 0.56.3.
...
* gnu/packages/gnome.scm (vala-next): Update to 0.56.3.
2022-09-13 02:04:44 -04:00
Maxim Cournoyer
b4a174826d
gnu: seahorse: Update to 42.0.
...
* gnu/packages/gnome.scm (seahorse): Update to 42.0.
[phases]: Delete trailing #t.
[inputs, native-inputs]: Remove labels.
2022-09-13 02:04:43 -04:00
Maxim Cournoyer
c2a2c5fc22
gnu: drawing: Update to 1.0.1.
...
* gnu/packages/gnome.scm (drawing): Update to 1.0.1.
[imported-modules, modules]: New arguments.
[phases]{disable-postinstall-script}: New phase.
{python-and-gi-wrap}: Simplify using the search-input-file and site-packages
procedures.
[native-inputs]: Remove labels. Add itstool and python.
[inputs]: Add bash-minimal and python.
2022-09-13 02:04:43 -04:00
Maxim Cournoyer
048380f4ed
gnu: libwnck: Update to 40.1.
...
* gnu/packages/gnome.scm (libwnck): Update to 40.1.
[source]: Update URL.
[native-inputs]: Replace intltool with gettext-minimal. Sort.
[home-page]: Update URL.
2022-09-13 02:04:43 -04:00
Maxim Cournoyer
ce34ff8f3f
gnu: rygel: Update to 0.41.2.
...
* gnu/packages/gnome.scm (rygel): Update to 0.41.2.
2022-09-13 02:04:43 -04:00
Maxim Cournoyer
87f7f4f60d
gnu: libmediaart: Update to 1.9.6.
...
* gnu/packages/gnome.scm (libmediaart): Update to 1.9.6.
[inputs]: Delete gtk+:doc. Move gettext-minimal, gobject-introspection and
vala to...
[native-inputs]: ... here.
2022-09-13 02:04:42 -04:00
Maxim Cournoyer
e7ef681cd8
gnu: gupnp-dlna: Update to 0.12.0.
...
* gnu/packages/gnome.scm (gupnp-dlna): Update to 0.12.0.
[build-system]: Use meson-build-system.
2022-09-13 02:04:42 -04:00
Maxim Cournoyer
b7fa27ae6c
gnu: gupnp-av: Update to 0.14.1.
...
* gnu/packages/gnome.scm (gupnp-av): Update to 0.14.1.
[build-system]: Use meson-build-system.
2022-09-13 02:04:42 -04:00
Maxim Cournoyer
7cf6b7e21a
gnu: python-liblarch: Update to 3.2.0 and apply guix style.
...
* gnu/packages/gnome.scm (python-liblarch): Update to 3.2.0; apply guix style.
2022-09-13 02:04:42 -04:00
Maxim Cournoyer
ed26f1cf43
gnu: gtg: Update to 0.6.
...
* gnu/packages/gnome.scm (gtg): Update to 0.6.
[arguments]: Use gexps.
[imported-modules, modules]: New arguments.
[phases]{python-and-gi-wrap}: Simplify with search-input-file and
site-packages.
[native-inputs]: Delete labels. Add python.
[inputs]: Add bash-minimal and python.
2022-09-13 02:04:42 -04:00
Maxim Cournoyer
22bdb55a24
gnu: libpeas: Update to 1.32.0.
...
* gnu/packages/gnome.scm (libpeas): Update to 1.32.0.
[phases]{start-xserver}: Use search-input-file.
[native-inputs]: Remove labels.
[home-page]: Update URL.
2022-09-13 02:04:41 -04:00
Maxim Cournoyer
5d138a7221
gnu: blueprint-compiler: Update to 0.4.0.
...
* gnu/packages/gnome.scm (blueprint-compiler): Update to 0.4.0.
[native-inputs]: Add python and python-pygobject. Remove gobject-introspection.
2022-09-13 02:04:41 -04:00
Maxim Cournoyer
ccbbe12721
gnu: cambalache: Update to 0.10.3.
...
* gnu/packages/gnome.scm (cambalache): Update to 0.10.3 and fix indentation.
[phases]{patch-source}: Use format to double-quote string.
2022-09-13 02:04:41 -04:00
Maxim Cournoyer
00ca5ce621
gnu: libadwaita: Update to 1.2.rc.
...
* gnu/packages/gnome.scm (libadwaita): Update to 1.2.rc.
[inputs]: Remove libportal. Move gobject-introspection to...
[native-inputs]: ... here. Remove labels. Sort.
2022-09-13 02:04:41 -04:00
Maxim Cournoyer
25c7dd2456
gnu: libgsf: Update to 1.14.50.
...
* gnu/packages/gnome.scm (libgsf): Update to 1.14.50.
[arguments]: Use gexps.
[phases]{patch-docbook-xml}: Use search-input-directory and delete trailing
#t.
[native-inputs]: Remove labels.
2022-09-13 02:04:40 -04:00
Maxim Cournoyer
4d0945b6ec
gnu: gupnp: Update to 1.5.4.
...
* gnu/packages/gnome.scm (gupnp): Update to 1.5.4.
[native-inputs]: Remove labels.
[inputs]: Delete gtk+. Move libsoup and gssdp to...
[propagated-inputs]: ... here. Add glib and libxml2.
(gupnp-1.4): New variable.
2022-09-13 02:04:40 -04:00
Maxim Cournoyer
c2b71eb704
gnu: gssdp: Update to 1.5.2
...
* gnu/packages/gnome.scm (gssdp): Update to 1.5.2.
[native-inputs]: Remove labels. Replace gtk-doc/stable with gi-docgen.
[inputs]: Replace gtk+ with gtk.
[propagated-inputs]: Remove label. Replace libsoup-minimal-2 with libsoup.
* gnu/packages/gnome.scm (gssdp-1.4):
2022-09-13 02:04:40 -04:00
Maxim Cournoyer
776b59df4e
gnu: phodav: Update to 3.0.
...
* gnu/packages/gnome.scm (phodav): Update to 3.0.
[native-inputs]: Remove labels.
[inputs]: Replace libsoup-minimal-2 with libsoup.
2022-09-13 02:04:40 -04:00
Maxim Cournoyer
c0e51f87d8
gnu: gnome-music: Update to 42.1.
...
* gnu/packages/gnome.scm (gnome-music): Update to 42.1.
[meson]: Delete argument.
2022-09-13 02:04:39 -04:00
Maxim Cournoyer
0974144848
gnu: gnome-shell-extensions: Update to 42.3.
...
* gnu/packages/gnome.scm (gnome-shell-extensions): Update to 42.3.
[native-inputs]: Remove labels.
2022-09-13 02:04:39 -04:00
Maxim Cournoyer
68e3592f5d
gnu: gtranslator: Update to 42.0.
...
* gnu/packages/gnome.scm (gtranslator): Update to 42.0. Move input fields
after arguments.
[build-type]: Add comment.
[native-inputs]: Remove labels.
[propagated-inputs]: Replace gtksourceview with gtksourceview-4.
[inputs]: Remove labels. Remove libdazzle and gtk+. Replace glib with glib-next.
Replace libsoup-minimal-2 with libsoup. Add pango-next.
2022-09-13 02:04:39 -04:00
Maxim Cournoyer
7ad9360bd6
gnu: Add glib-next.
...
* gnu/packages/glib.scm (glib-next): New variable.
(glib-with-documentation): Inherit from it.
2022-09-13 02:04:39 -04:00
Maxim Cournoyer
dc1cf13ac5
gnu: libgda: Update to 6.0.0.
...
* gnu/packages/gnome.scm (libgda): Update to 6.0.0.
[source]: Delete modules and snippet field. Apply new patches.
[build-system]: Use meson-build-system.
[native-inputs]: Remove autoconf, autoconf-archive, automake, libtool, which
and xorg-server-for-tests.
[inputs]: Add json-glib.
* gnu/packages/patches/libgda-cve-2021-39359.patch: New file.
* gnu/packages/patches/libgda-fix-build.patch: Likewise.
* gnu/packages/patches/libgda-fix-missing-initialization.patch: Likewise.
* gnu/packages/patches/libgda-skip-postgresql-tests.patch: Likewise.
* gnu/local.mk (dist_patch_DATA): Register them.
2022-09-13 02:04:38 -04:00
Maxim Cournoyer
8dae63937b
gnu: Remove tepl-5.
...
* gnu/packages/gnome.scm (tepl-5): Delete variable.
2022-09-13 02:04:38 -04:00
Maxim Cournoyer
d94de3f48a
gnu: gnome-latex: Update to 3.41.2.
...
* gnu/packages/gnome.scm (gnome-latex): Update to 3.41.2.
[inputs]: Remove amtk, gsettings-desktop-schemas, gtk+ and gtksourceview, now
propagated by tepl. Replace tepl-5 with tepl.
[native-inputs]: Remove intltool.
2022-09-13 02:04:38 -04:00
Maxim Cournoyer
cad5c7543a
gnu: gnome-boxes: Update to 42.3.
...
* gnu/packages/gnome.scm (gnome-boxes): Update to 42.3.
[source]: Delete patches field.
[configure-flags]: Use gexps.
[phases]: New argument.
[native-inputs]: Replace intltool with gettext-minimal. Delete gtk+:bin.
Sort.
[inputs]: Sort.
* gnu/packages/patches/gnome-boxes-add-guix-logo.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): De-register it.
2022-09-13 02:04:38 -04:00
Maxim Cournoyer
89a340ebad
gnu: gnome-tweaks: Update to 40.10.
...
* gnu/packages/gnome.scm (gnome-tweaks): Update to 40.10.
[arguments]: Use gexps.
[modules]: New argument.
[phases]{wrap}: Do not use @@ import style.
{wrap-gi-typelib-and-python}: Compute the site-packages directory via the
procedure of the same name.
[native-inputs]: Remove labels.
2022-09-13 02:04:37 -04:00
Maxim Cournoyer
5808a8ba3e
gnu: gnome-dictionary: Use latest meson.
...
* gnu/packages/gnome.scm (gnome-dictionary)
[meson]: Delete argument.
2022-09-13 02:04:37 -04:00
Maxim Cournoyer
ddc0c5e961
gnu: gnome-weather: Update to 42.0.
...
* gnu/packages/gnome.scm (gnome-weather): Update to 42.0.
[native-inputs, inputs]: Move after arguments.
[arguments]: Use a plain list and adjust accordingly.
[phases]{disable-gtk-update-icon-cache}: New phase.
{fix-desktop-file}: Use search-input-file.
{wrap}: Likewise.
[native-inputs]: Delete gtk+:bin.
[inputs]: Delete gnome-desktop and libhandy. Replace libgweather with
libgweather4. Add bash-minimal, gsettings-desktop-schemas-next, gtk and
libadwaita.
2022-09-13 02:04:37 -04:00
Maxim Cournoyer
22aaa843ea
gnu: gedit: Update to 42.2.
...
* gnu/packages/gnome.scm (gedit): Update to 42.2.
[arguments]: Use gexps.
[parallel-build?]: Tentatively remove argument.
[phases]: Delete trailing #t.
{patch-libgd-fetch}: Rename to...
{do-not-invoke-git}: ... this, removing libgd handling.
{wrap-gedit}: Use 'this-package-input'.
[inputs]: Replace gtksourceview with gtksourceview-4. Remove amtk,
isco-codes, tepl, libx11 and gnome-desktop. Add bash-minimal.
Move libxml2 and vala to...
[native-inputs]: ... here. Remove itstool and libgd. Add python.
2022-09-13 02:04:37 -04:00
Maxim Cournoyer
b90710642e
gnu: tepl: Update to 6.1.2 and enable tests.
...
* gnu/packages/gnome.scm (tepl): Update to 6.1.2.
[tests?]: Delete argument.
[phases]: New argument.
[native-inputs]: Move gsettings-desktop-schemas to propagated-inputs.
[inputs]: Move libxml2 to native-inputs. Move amtk, glib,
gsettings-desktop-schemas, gtk+ and gtksourceview-4 to...
[propagated-inputs]: ... here.
2022-09-13 02:04:36 -04:00
Maxim Cournoyer
5dd3acd0a0
import: gnome: Improve version handling logic.
...
Before this change, we'd get:
$ guix refresh gedit
updating from version 40.1 to version 43.alpha...
This is because the new GNOME version scheme introduced in 2021 with GNOME 40
was not treated correctly. Also, no longer ignore odd numbered minor
versions, as this appears to be a declining practice in GNOME.
* guix/import/gnome.scm (latest-gnome-release)
<pre-release-text?>: New predicate.
<even-minor-version?>: Rename to...
<release-version?>: ...this. Return #f in case the version corresponds to a
development release.
* guix/import/gnome.scm (latest-gnome-release): Adjust accordingly.
2022-09-13 02:04:36 -04:00
Maxim Cournoyer
f93ad1565b
gnu: gnome-screenshot: Update to 41.0.
...
* gnu/packages/gnome.scm (gnome-screenshot): Update to 41.0.
[glib-or-gtk?]: New argument.
[native-inputs]: Remove labels and sort. Replace intltool with
gettext-minimal.
[inputs]: Remove libcanberra.
2022-09-13 02:04:36 -04:00
Maxim Cournoyer
4f99135131
gnu: gnome-terminal: Update to 3.44.1.
...
* gnu/packages/gnome.scm (gnome-terminal): Update to 3.44.1.
[build-system]: Use meson-build-system.
[configure-flags]: Remove argument.
[glib-or-gtk?]: New argument.
[phases]{patch-/bin/true}: Delete phase.
{patch-build-system}: New phase.
[native-inputs]: Delete labels and sort. Replace intltool with
gettext-minimal. Add python.
[inputs]: Sort. Add gnome-shell and nautilus.
2022-09-13 02:04:36 -04:00
Maxim Cournoyer
e50781c1a3
gnu: gnome-sudoku: Update to 42.0.
...
* gnu/packages/gnome.scm (gnome-sudoku): Update to 42.0.
[native-inputs]: Sort. Replace intltool with gettext-minimal.
2022-09-13 02:04:36 -04:00
Maxim Cournoyer
7d38c6261d
gnu: gnome-mines: Replace intltool with gettext-minimal.
...
[native-inputs]: Replace intltool with gettext-minimal.
2022-09-13 02:04:35 -04:00
Maxim Cournoyer
051c5d9bf1
gnu: gnome-keyring: Update to 42.1 and enable tests.
...
* gnu/packages/gnome.scm (gnome-keyring): Update to 42.1.
[phases]{check}: Move after install and override.
[inputs]: Sort.
[native-inputs]: Add dbus and docbook-xml-4.3. Replace intltool with
gettext-minimal. Remove autoconf and automake.
2022-09-13 02:04:35 -04:00
Maxim Cournoyer
b74f837118
gnu: gnome-font-viewer: Update to 42.0.
...
* gnu/packages/gnome.scm (gnome-font-viewer): Update to 42.0.
[phases]: Delete trailing #t. Use gexps.
{patch-thumbnailer}: Use search-input-file.
[native-inputs]: Delete labels.
[inputs]: Replace gtk+ with gtk. Add libadwaita.
2022-09-13 02:04:35 -04:00
Maxim Cournoyer
314444917b
gnu: gnome-calculator: Update to 42.2.
...
* gnu/packages/gnome.scm (gnome-calculator): Update to 42.2.
[phases]{skip-gtk-update-icon-cache}: New phase.
[native-inputs]: Remove gtk+:bin.
[inputs]: Add gsettings-desktop-schemas-next and libadwaita.
2022-09-13 02:04:35 -04:00
Maxim Cournoyer
c20660827e
gnu: pango-next: Rename from "pango "to "pango-next".
...
* gnu/packages/gtk.scm (pango-next)[name]: Rename from pango to pango-next.
2022-09-13 02:04:34 -04:00
Maxim Cournoyer
04154c650d
gnu: gnome-contacts: Update to 42.0.
...
* gnu/packages/gnome.scm (gnome-contacts): Update to 42.0.
[glib-or-gtk?]: New argument.
[phases]{generate-vapis}: Delete phase.
{skip-gtk-update-icon-cache}: Adjust.
[inputs]: Delete labels. Replace gtk+ with gtk, evolution-data-server with
evolution-data-server-3.44 and gnome-online-accounts with
gnome-online-accounts-3.44. Add libadwaita. Remove docbook-xml and
docbook-xsl. Move gettext-minimal, gobject-introspection and
libxslt to...
[native-inputs]: ... here. Delete labels. Add desktop-file-utils.
[propagated-inputs]: Replace folks with folks-with-libsoup2.
2022-09-13 02:04:34 -04:00
Maxim Cournoyer
dd5d0fd76b
gnu: gnome-characters: Update to 42.0.
...
* gnu/packages/gnome.scm (gnome-characters): Update to 42.0.
[phases]{disable-gtk-update-icon-cache}: New phase.
{wrap}: Use search-input-file.
[native-inputs]: Delete labels. Remove gtk+:bin.
[inputs]: Replace gtk+ with gtk. Add libadwaita.
2022-09-13 02:04:34 -04:00
Maxim Cournoyer
3c2a706047
gnu: eog: Update to 42.2.
...
* gnu/packages/gnome.scm (eog): Update to 42.2.
[source]: Delete patches.
[configure-flags]: Use gexps.
[phases]: Likewise.
{skip-gtk-update-icon-cache}: New phase.
{wrap-eog}: Use search-input-file.
[native-inputs]: Replace intltool with gettext-minimal.
[inputs]: Add libhandy and gtk.
* gnu/packages/patches/eog-update-libportal-usage.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): De-register it.
2022-09-13 02:04:34 -04:00
Maxim Cournoyer
0e5d6934e5
gnu: gnome-user-docs: Update to 42.0.
...
* gnu/packages/gnome.scm (gnome-user-docs): Update to 42.0.
2022-09-13 02:04:33 -04:00
Maxim Cournoyer
7a8b36b6fc
gnu: gnome-music: Update to 42.0.
...
* gnu/packages/gnome.scm (gnome-music): Update to 42.0.
[phases]{skip-gtk-update-icon-cache}: New phase.
[native-inputs]: Remove gtk+:bin.
[inputs]: Add gtk and libadwaita.
2022-09-13 02:04:33 -04:00
Maxim Cournoyer
ecaad21f23
gnu: gnome-photos: Update to 43.beta.
...
* gnu/packages/gnome.scm (gnome-photos): Update to 43.beta.
[arguments]: Use gexps.
[phases]{disable-gtk-update-icon-cache}: New phase.
[native-inputs]: Remove gtk+:bin. Delete labels.
[inputs]: Delete labels.
2022-09-13 02:04:33 -04:00
Maxim Cournoyer
184d61114f
gnu: evince: Update to 42.3.
...
* gnu/packages/gnome.scm (evince): Update to 42.3.
[meson]: Delete argument.
[configure-flags]: Remove "-Dintrospection" and "-Dgtk_doc=false."
[phases]: Delete trailing #t.
[native-inputs]: Delete labels. Add gi-docgen. Replace intltool with
gettext-minimal. Sort.
[home-page]: Update URL.
2022-09-13 02:04:33 -04:00
Maxim Cournoyer
3b366fd118
gnu: gnome-disk-utility: Update to 42.0.
...
* gnu/packages/gnome.scm (gnome-disk-utility): Update to 42.0.
[native-inputs]: Delete labels. Replace intltool with gettext-minimal.
2022-09-13 02:04:33 -04:00
Maxim Cournoyer
021e9d8102
gnu: gnome-initial-setup: Update to 42.2.
...
* gnu/packages/gnome.scm (gnome-initial-setup): Update to 42.2.
[configure-flags]: Remove "-Dcheese=auto".
[phases]: Use search-input-file.
[native-inputs]: Remove labels. Remove gtk+:bin.
[inputs]: Remove labels. Sort lexicographically. Add cheese. Replace
libgweather with libgweather4-with-libsoup2.
Replace gnome-online-accounts with gnome-online-accounts-3.44.
2022-09-13 02:04:32 -04:00
Maxim Cournoyer
16e0e0ed2b
gnu: gnome-calendar: Update to 42.2.
...
* gnu/packages/gnome.scm (gnome-calendar): Update to 42.2.
[tests?]: Delete argument.
[phases]{skip-gtk-update-icon-cache}: Adjust.
[native-inputs]: Remove labels.
[propagated-inputs]: Move evolution-data-server to...
[inputs]: ... here, and replace it with evolution-data-server-3.44. Remove
labels. Remove libhandy. Replace libgweather with
libgweather4-with-libsoup2.
Replace gnome-online-accounts with gnome-online-accounts-3.44.
Add libadwaita and pango-next.
2022-09-13 02:04:32 -04:00
Maxim Cournoyer
d1623e3076
gnu: gnome-clocks: Update to 42.0.
...
* gnu/packages/gnome.scm (gnome-clocks): Update to 42.0.
[phases]{skip-gtk-update-icon-cache}: Adjust.
[native-inputs]: Remove labels and sort. Replace vala with vala-next.
[inputs]: Sort. Remove libhandy. Replace libgweather with
libgweather4-with-libsoup2. Replace gtk+ with gtk. Add libadwaita.
2022-09-13 02:04:32 -04:00
Maxim Cournoyer
212f9c62bf
gnu: gnome-session: Update to 42.0.
...
* gnu/packages/gnome.scm (gnome-session): Update to 42.0.
[meson]: Delete argument.
[phases]{wrap-gnome-session}: Use search-input-file.
[native-inputs]: Remove labels and sort lexicographically.
2022-09-13 02:04:24 -04:00
Maxim Cournoyer
02b4c6f3ab
gnu: gnome-control-center: Update to 42.3.
...
* gnu/packages/gnome.scm (gnome-control-center): Update to 42.3.
[configure-flags]: Delete argument.
[phases]: Use gexps.
{patch-paths}: Use search-input-file.
{no-polkit-magic}: Delete phase.
[inputs]: Delete clutter-gtk, libcanberra and libsoup-minimal-2. Add gnutls
and libadwaita. Move docbook-xsl to...
[native-inputs]: ... here. Replace intltool with gettext-minimal. Remove
hicolor-icon-theme. Sort.
2022-09-13 01:46:51 -04:00
Maxim Cournoyer
b94e1572a5
gnu: gnome-bluetooth: Update to 42.4.
...
* gnu/packages/gnome.scm (gnome-bluetooth): Update to 42.4.
[arguments]: Delete field.
[native-inputs]: Remove labels. Remove gtk+:bin. Replace intltool with
gettext-minimal.
[propagated-inputs]: Replace gtk+ with gtk. Add libadwaita.
[inputs]: Remove libcanberra. Add gsound, pango-next and upower.
2022-09-13 01:46:41 -04:00
Maxim Cournoyer
7b04616664
gnu: colord-gtk: Update to 0.3.0.
...
* gnu/packages/freedesktop.scm (colord-gtk): Update to 0.3.0.
[build-system]: Use meson-build-system.
[configure-flags] New argument.
[native-inputs]: Replace intltool with gettext-minimal.
[inputs]: Add pango-next.
[propagated-inputs]: Replace gtk+ with gtk.
[description]: Substitute GTK+ for GTK.
2022-09-13 00:20:39 -04:00
Marius Bakke
0884238e15
gnu: gnome-shell: Update to 42.4.
...
* gnu/packages/gnome.scm (gnome-shell): Update to 42.4.
[source](patches): Remove.
[arguments]: Adjust substitution to disable GTK icon cache. Filter disallowed
references from GUIX_PYTHONPATH. While at it, also prevent MESON from ending
up in the closure.
[inputs]: Change from LIBGWEATHER to LIBGWEATHER4.
* gnu/packages/patches/gnome-shell-polkit-autocleanup.patch:
* gnu/local.mk (dist_patch_DATA):
2022-09-13 00:20:39 -04:00
Maxim Cournoyer
69df14a026
gnu: gnome-online-accounts: Update to 3.45.2, remove "lib" output.
...
* gnu/packages/gnome.scm (gnome-online-accounts): Update to 3.45.2.
[build-system]: Use meson-build-system.
[glib-or-gtk?]: New argument.
[phases]{patch-libgoa-output}: Delete phase.
{disable-gtk-update-icon-cache}: New phase.
[native-inputs]: Add gettext-minimal.
[inputs]: Replace rest with rest-next; replace webkitgtk-with-libsoup2 with
webkitgtk. Add gcr and mit-krb5.
(gnome-recipes): Adjust for the removed gnome-online-accounts output.
(gnome-music, gnome-online-miners, gnome-initial-setup): Likewise.
(libgdata, gnome-contacts, grilo-plugins, evolution-data-server)
(gnome-shell, gnome-todo, gnome-calendar, gnome-shell-extensions)
(gnome-calculator, gnome-latex): Likewise.
(gnome-online-accounts-3.44): New variable.
* gnu/packages/geo.scm (gnome-maps): Likewise.
* gnu/packages/webkit.scm: Update comment.
2022-09-13 00:20:39 -04:00
Maxim Cournoyer
7a03ab6ef7
gnu: libgweather4: Update to 4.1.1 and run tests.
...
* gnu/packages/gnome.scm (libgweather4): Update to 4.1.1.
[tests?]: Delete argument.
[configure-flags]: Remove -Dgtk_doc=false.
[phases]{pre-check}: Rename to...
{set-HOME}: ... this.
{disable-problematic-tests}: New phase.
{check}: Move after install phase.
[native-inputs]: Add gi-docgen, glibc-utf8-locales and
gsettings-desktop-schemas.
[propagated-inputs]: Add json-glib2. Replace libsoup-minimal-2 with libsoup.
(libgweather4-with-libsoup2): New variable.
2022-09-13 00:20:38 -04:00
Maxim Cournoyer
6a82d5a9ae
gnu: Add rest-next.
...
* gnu/packages/gnome.scm (rest-next): New variable.
2022-09-13 00:20:38 -04:00
Maxim Cournoyer
560a47aa93
gnu: gtksourceview: Update to 5.5.1.
...
* gnu/packages/gtk.scm (gtksourceview): Update to 5.5.1.
[build-system]: Use meson-build-system.
[phases]: Use gexps.
{disable-gtk-update-icon-cache}: New phase.
{pre-check}: Use search-input-file.
[native-inputs]: Remove labels. Remove intltool and itstool. Add
gettext-minimal, gi-docgen and gobject-introspection-next.
[propagated-inputs]: Remove labels. Remove gtk+. Add fontconfig, fribidi,
gtk, pango-next and pcre2. Replace glib with glib-next.
(gtksourceview-4): New variable.
(gtksourceview-3): Inherit from gtksourceview-4 and adjust accordingly.
* gnu/packages/gnome.scm (tepl): Replace gtksourceview with gtksourceview-4.
(sushi)[inputs]: Likewise.
* gnu/packages/guile-xyz.scm (nomad): Likewise.
2022-09-13 00:20:38 -04:00
Maxim Cournoyer
b48162d3c9
gnu: Add gobject-introspection-next.
...
* gnu/packages/glib.scm (gobject-introspection-next): New variable.
* gnu/packages/patches/gobject-introspection-absolute-shlib-path-1.72.patch:
New file.
* gnu/packages/patches/gobject-introspection-cc-1.72.patch: Likewise.
* gnu/local.mk (dist_patch_DATA): Register them.
2022-09-13 00:20:38 -04:00
Maxim Cournoyer
579facddec
gnu: gtk: Replace librsvg with librsvg-bootstrap.
...
This is to use the same version of librsvg as used by the 'gtk+' package and
avoid propagation conflicts.
* gnu/packages/gtk.scm (guile-cairo)[inputs]: Remove librsvg.
[propagated-inputs]: Replace librsvg with librsvg-bootstrap.
2022-09-13 00:20:38 -04:00
Maxim Cournoyer
306edc9527
gnu: cups-pk-helper: Replace polkit with polkit-duktape.
...
This avoids the error: "package `cups-pk-helper@0.2.7' has an invalid
input: ("_" #<syntax-transformer polkit>)". On core-updates, polkit-duktape
is the default polkit anyway.
* gnu/packages/cups.scm (cups-pk-helper)[inputs]: Replace polkit with polkit-duktape.
2022-09-13 00:20:37 -04:00
Maxim Cournoyer
c7bb42e4b0
gnu: accountsservice: Add bash-minimal to inputs.
...
* gnu/packages/freedesktop.scm (accountsservice)[inputs]: Add bash-minimal.
2022-09-13 00:20:37 -04:00
Maxim Cournoyer
eff31eb5bc
gnu: mozjs: Update home-page.
...
* gnu/packages/gnuzilla.scm (mozjs)[home-page]: Update URL.
[synopsis]: Capitalize JavaScript.
2022-09-13 00:20:37 -04:00
Marius Bakke
d9f58e6998
gnu: gjs: Update to 1.72.2.
...
* gnu/packages/gnome.scm (gjs): Update to 1.72.2.
[arguments]: Remove #:meson.
[propagated-inputs]: Change from MOZJS-78 to MOZJS-91.
[home-page]: Update URL.
2022-09-13 00:20:37 -04:00
Marius Bakke
b05afdda39
gnu: gjs: Remove input labels.
...
* gnu/packages/gnome.scm (gjs)[native-inputs]: Remove labels.
2022-09-13 00:20:37 -04:00
Marius Bakke
059675706d
gnu: gjs: Build with mozjs 78.
...
This is a follow-up to commit d6fa3ac7a8 .
* gnu/packages/gnome.scm (gjs)[propagated-inputs]: Change from MOZJS to
MOZJS-78.
2022-09-13 00:20:36 -04:00
Marius Bakke
f89dbfc8a9
gnu: mozjs: Add 91.13.0.
...
* gnu/packages/gnuzilla.scm (mozjs-91): New variable.
2022-09-13 00:20:36 -04:00
Maxim Cournoyer
4ce94cbbc6
gnu: lxsession: Use polkit-duktape.
...
* gnu/packages/lxde.scm (lxsession)[inputs]: Replace polkit with
polkit-duktape.
2022-09-13 00:20:36 -04:00
Maxim Cournoyer
50c8db7f60
gnu: gdm: Patch dbus-run-session path.
...
* gnu/packages/gnome.scm (gdm)[phases]{patch-paths}: New phase.
[inputs]: Add dbus.
2022-09-13 00:20:36 -04:00
Maxim Cournoyer
603a8e729e
gnu: gdm: Use gexps and new style inputs.
...
* gnu/packages/gnome.scm (gdm)[phases]: Use gexps.
{pre-configure}: Use search-input-file.
{install-logo}: Likewise, and use #$output.
{install-placeholder-desktop-entry}: use search-input-directory.
{link-autostart-files}: Use this-package-input, $output.
[native-inputs]: Remove labels and sort in lexicographical order.
2022-09-13 00:20:35 -04:00
Maxim Cournoyer
97313b9b0c
gnu: gdm: Update to 42.0.
...
* gnu/packages/gnome.scm (gdm): Update to 42.0.
[inputs]: Add libgudev.
* gnu/packages/patches/gdm-default-session.patch: Rebase patch.
* gnu/packages/patches/gdm-elogind-support.patch: Likewise.
* gnu/packages/patches/gdm-pass-gdk-pixbuf-loader-env.patch: Likewise.
* gnu/packages/patches/gdm-remove-hardcoded-xwayland-path.patch: Likewise.
* gnu/packages/patches/gdm-wayland-session-wrapper-from-env.patch: Likewise.
2022-09-13 00:20:35 -04:00
Maxim Cournoyer
8ff57b4cc3
gnu: accountsservice: Propagate glib.
...
* gnu/packages/freedesktop.scm (accountsservice)
[propagated-inputs]: Add glib.
2022-09-13 00:20:35 -04:00
Maxim Cournoyer
106667ce45
gnu: mutter: Update to 42.4, use gexps and remove input labels.
...
* gnu/packages/gnome.scm (mutter): Update to 42.4.
[arguments]: Use gexps.
[configure-flags]: Use search-input-file.
[phases]{patch-docbook-xml}: Likewise.
{adjust-runpath-linker-directives}: New phase.
{check}: Set HOME. Set XDG_RUNTIME_DIR to an absolute path, and chmod 700 its
directory.
[native-inputs, propagated-inputs, inputs]: Remove labels.
[native-inputs]: Add wayland-protocols-next.
[propagated-inputs]: Replace gsettings-desktop-schemas with
gsettings-desktop-schemas-next.
2022-09-13 00:20:35 -04:00
Maxim Cournoyer
815e7d21ef
gnu: Add wayland-protocols-next.
...
* gnu/packages/freedesktop.scm (wayland-protocols-next): New variable.
2022-09-13 00:20:35 -04:00
Maxim Cournoyer
7aa6f3cfc1
gnu: pipewire-0.3: Update to 0.3.56 and use gexps.
...
* gnu/packages/linux.scm (pipewire-0.3): Update to 0.3.56.
[arguments]: Use gexps.
2022-09-13 00:20:34 -04:00
Maxim Cournoyer
d4bd9ba2d0
gnu: gnome-online-accounts: Update to 3.44.0 and delete input labels.
...
* gnu/packages/gnome.scm (gnome-online-accounts): Update to 3.44.0.
[arguments]: Use gexps.
[native-inputs]: Delete labels. Replace intltool with gettext-minimal.
[inputs]: Delete labels.
2022-09-13 00:20:34 -04:00
Maxim Cournoyer
6852a791b6
gnu: evolution-data-server: Update to 3.44.4 and remove input labels.
...
* gnu/packages/gnome.scm (evolution-data-server): Update to 3.44.4.
[arguments]: Use gexps.
[native-inputs, propagated-inputs, inputs]: Delete input labels.
2022-09-13 00:20:34 -04:00
Maxim Cournoyer
e631e122e3
gnu: ibus: Update to 1.5.27, use gexps and remove input labels.
...
* gnu/packages/ibus.scm (ibus): Update to 1.5.27.
[arguments]: Use gexps.
[configure-flags]: Use search-input-file. Add '--disable-systemd-services'.
[make-flags]: Add the DISABLE_GUI_TEST variable.
[phases]{patch-docbook-xml}: Use this-package-native-input.
{patch-python-target-directories}: Break line.
{fix-paths}: Use format to double quote command.
[inputs, native-inputs]: Delete labels.
[inputs]: Add bash-minimal.
2022-09-13 00:20:34 -04:00
Maxim Cournoyer
46d50efd09
gnu: libnma: Update to 1.10.2 and delete input labels.
...
* gnu/packages/gnome.scm (libnma): Update to 1.10.2.
[configure-flags]: New argument.
[phases]{patch-docbook-xml}: Use search-input-file.
[native-inputs]: Delete labels.
2022-09-13 00:20:33 -04:00
Maxim Cournoyer
ee871fc92c
gnu: gnome-desktop: Update to 42.4 and remove input labels.
...
* gnu/packages/gnome.scm (gnome-desktop): Update to 42.4.
[phases]: Delete trailing #t.
{patch-path}: Use search-input-file.
[native-inputs]: Delete labels.
[propagated-inputs]: Add gtk. Replace gsettings-desktop-schemas with
gsettings-desktop-schemas-next.
[inputs]: Sort lexicographically.
2022-09-13 00:20:33 -04:00
Maxim Cournoyer
f24bf279d4
gnu: sdl2: Update to 2.24.0, use gexps and remove input labels.
...
* gnu/packages/sdl.scm (sdl2): Update to 2.24.0.
[arguments]: Use gexps.
[inputs]: Use modify-inputs and remove labels.
2022-09-13 00:20:33 -04:00
Maxim Cournoyer
3f25fcf84d
gnu: upower: Fix indentation.
...
* gnu/packages/gnome.scm (upower): Fix indentation.
2022-09-13 00:20:33 -04:00
Maxim Cournoyer
164dfdc44e
gnu: upower: Update to 1.90.0.
...
* gnu/packages/gnome.scm (upower): Update to 1.90.0.
2022-09-13 00:20:33 -04:00
Maxim Cournoyer
2fb1ff23e1
gnu: umockdev: Update to 0.17.13.
...
* gnu/packages/check.scm (umockdev): Update to 0.17.13.
[build-system]: Use meson.
[phases]{fix-test}: Delete phase.
{skip-test-umockdev.c}: New phase.
{absolute-introspection-library}: Adjust for meson.
[native-inputs]: Sort lexicographically.
[inputs]: Add libpcap.
2022-09-13 00:20:32 -04:00
Maxim Cournoyer
587829ae26
gnu: gnome-settings-daemon: Update to 42.2.
...
* gnu/packages/gnome.scm (gnome-settings-daemon): Update to 42.2.
[arguments]: Use gexps.
[phases]{set-baobab-file-name}: Use search-input-file.
[native-inputs]: Delete labels. Replace intltool with gettext-minimal. Add
perl.
[inputs]: Sort lexicographically. Replace gsettings-desktop-schemas with
gsettings-desktop-schemas-next, libgweather with libgweather4-with-libsoup2.
2022-09-13 00:20:20 -04:00
Maxim Cournoyer
667f09218b
gnu: Add gsettings-desktop-schemas-next.
...
* gnu/packages/gnome.scm (gsettings-desktop-schemas-next): New variable.
2022-09-12 20:55:47 -04:00
Maxim Cournoyer
9539408e91
gnu: network-manager: Update to 1.40.0, use gexps and remove input labels.
...
* gnu/packages/gnome.scm (network-manager): Update to 1.40.0.
[arguments]: Use gexps.
[native-inputs, propagated-inputs]: Remove labels.
* gnu/packages/patches/network-manager-plugin-path.patch: Rebase patch.
2022-09-12 20:55:47 -04:00
Maxim Cournoyer
3c5394ca7b
gnu: zenity: Update to 3.43.0.
...
* gnu/packages/gnome.scm (zenity): Update to 3.43.0.
[build-system]: Use meson-build-system.
[arguments]: New field.
[inputs]: Add gtk+. Remove libnotify and webkitgtk.
2022-09-12 20:55:46 -04:00
Maxim Cournoyer
c73d0555fe
gnu: geocode-glib: Update to 3.26.4 and build with libsoup 3.
...
* gnu/packages/gnome.scm (geocode-glib): Update to 3.26.4.
[arguments]: Use gexps.
[configure-flags]: Add "-Dsoup2=false".
[native-inputs, inputs]: Remove labels.
[propagated-inputs]: Replace libsoup-minimal-2 with libsoup.
(geocode-glib-with-libsoup2): New variable.
(gnome-settings-daemon)[inputs]: Replace geocode-glib with
geocode-glib-with-libsoup2.
(gnome-clocks): Replace geocode-glib with geocode-glib-with-libsoup2.
2022-09-12 20:55:46 -04:00
Maxim Cournoyer
bbe444bcc1
gnu: geoclue: Update to 2.6.0 and remove input labels.
...
* gnu/packages/gnome.scm (geoclue): Update to 2.6.0.
[native-inputs]: Replace intltool with gettext-minimal. Add vala.
[inputs]: Delete labels.
* gnu/packages/patches/geoclue-config.patch: Refresh patch.
2022-09-12 20:55:46 -04:00
Maxim Cournoyer
5f7b0141d6
gnu: modem-manager: Update to 1.18.10 and remove input labels.
...
* gnu/packages/freedesktop.scm (modem-manager): Update to 1.18.10.
[configure-flags]: Use gexps.
[native-inputs]: Remove labels. Add python, python-dbus and
python-pygobject. Replace intltool with gettext-minimal.
2022-09-12 20:55:46 -04:00
Maxim Cournoyer
4fa20bb151
gnu: libqmi: Update to 1.30.8.
...
* gnu/packages/freedesktop.scm (libqmi): Update to 1.30.8.
2022-09-12 20:55:45 -04:00
Maxim Cournoyer
e12f2b2099
gnu: baobab: Update to 42.0 and delete input labels.
...
* gnu/packages/gnome.scm (baobab): Update to 42.0.
[native-inputs]: Replace intltool with gettext-minimal. Remove labels.
Sort lexicographically.
[inputs]: Sort lexicographically. Add libadwaita and pango-next.
2022-09-12 20:55:45 -04:00
Maxim Cournoyer
fd30aeb0c6
gnu: libhandy: Update to 1.7.90.
...
* gnu/packages/gnome.scm (libhandy): Update to 1.7.90.
[phases]{pre-check}: Delete trailing #t.
[native-inputs]: Delete labels.
2022-09-12 20:55:45 -04:00
Maxim Cournoyer
5d26c2e658
gnu: libwacom: Update to 2.4.0.
...
* gnu/packages/xdisorg.scm (libwacom): Update to 2.4.0.
[source]: Change archive extension from bz2 to xz.
[build-system]: Switch to meson.
[configure-flags]: Adjust for meson.
[phases]: New field.
[native-inputs]: Add python-evdev, python-libevdev, python-pytest and
python-pyudev.
[inputs]: Move libgudev to...
[propagated-inputs]: ... here.
2022-09-12 20:55:45 -04:00
Maxim Cournoyer
a412817d84
gnu: Add python-libevdev.
...
* gnu/packages/freedesktop.scm (python-libevdev): New variable.
2022-09-12 20:55:45 -04:00
Maxim Cournoyer
bfcd2a86fb
gnu: gcr: Update to 3.41.1, delete trailing #t and input labels.
...
* gnu/packages/gnome.scm (gcr): Update to 3.41.1.
[phases]: Delete trailing #t.
{disable-failing-tests}: Delete phase.
{fix-systemd-detection}: Likewise.
{remove-fatal-warnings-option}: New phase.
{check}: New phase override.
[native-inputs, propagated-inputs]: Delete input labels.
[native-inputs]: Sort inputs. Add gi-docgen. Remove autoconf, automake and
libtool.
2022-09-12 20:55:10 -04:00
Maxim Cournoyer
abfa74c68b
gnu: gtk: Update to 4.8.0 and use gexps.
...
* gnu/packages/gtk.scm (gtk): Update to 4.8.0.
[arguments]: Use gexps.
[parallel-tests?]: Remove argument.
[phases]{patch}: Use this-package-native-input. Disable the
inscription-markup.ui test.
{move-files}: Adjust for gexps.
2022-09-12 20:51:23 -04:00
Maxim Cournoyer
a0a0c282f0
gnu: Add gi-docgen.
...
* gnu/packages/gnome.scm (gi-docgen): New variable.
2022-09-12 20:51:23 -04:00
Maxim Cournoyer
8784bbd510
gnu: xvfb-run: Update to 1.20.11-1.
...
* gnu/packages/xorg.scm (xvfb-run): Update to 1.20.11-1.
[phases]: Use gexps.
{build}: Use search-input-file.
2022-09-12 20:51:23 -04:00
Maxim Cournoyer
8ec901a885
gnu: egl-wayland: Update to 1.1.10.
...
* gnu/packages/xorg.scm (egl-wayland): Update to 1.1.10.
2022-09-12 20:51:23 -04:00
Maxim Cournoyer
d7301dc375
gnu: sysprof: Update to 3.44.0, enable tests and remove labels.
...
* gnu/packages/gnome.scm (sysprof): Update to 3.44.0.
[tests?]: Delete argument.
[configure-flags]: Use gexps.
[phases]: Delete trailing #t.
[native-inputs]: Delete labels.
[inputs]: Add libunwind.
2022-09-12 20:51:23 -04:00
Maxim Cournoyer
b37b3d4891
gnu: libdazzle: Update to 3.44.0.
...
* gnu/packages/gnome.scm (libdazzle): Update to 3.44.0.
[inputs]: Move gobject-introspection and vala to...
[native-inputs]: ... here.
2022-09-12 20:51:22 -04:00
Maxim Cournoyer
af448f9c95
gnu: libgnomekbd: Update to 3.28.0.
...
* gnu/packages/gnome.scm (libgnomekbd): Update to 3.28.0.
[native-inputs]: Replace intltool with gettext-minimal. Add autoconf,
automake, libtool and gobject-introspection.
2022-09-12 20:51:22 -04:00
Maxim Cournoyer
b7f1b39b3f
gnu: xf86-input-wacom: Update to 1.1.0.
...
* gnu/packages/xdisorg.scm (xf86-input-wacom): Update to 1.1.0.
[configure-flags]: Use gexps.
[native-inputs, inputs, description]: Re-indent.
2022-09-12 20:51:22 -04:00
Maxim Cournoyer
2e4cc98f70
gnu: fcitx: Update to 4.2.9.9, use gexps and remove input labels.
...
* gnu/packages/fcitx.scm (fcitx): Update to 4.2.9.9.
[source]: Use HTTPS.
[arguments]: Use gexps.
[native-inputs, inputs]: Remove labels.
2022-09-12 20:51:22 -04:00
Maxim Cournoyer
2e9f6da7a9
gnu: libmbim: Update to 1.26.4.
...
* gnu/packages/freedesktop.scm (libmbim): Update to 1.26.4.
2022-09-12 20:51:21 -04:00
Maxim Cournoyer
b3ac513f48
gnu: clutter: Update to 1.26.4 and remove input labels.
...
* gnu/packages/gnome.scm (clutter): Update to 1.26.4.
[native-inputs]: Remove labels.
[propagated-inputs, inputs]: Sort inputs.
[home-page]: Update URL.
2022-09-12 20:51:21 -04:00
Maxim Cournoyer
ffef7c01f0
gnu: adwaita-icon-theme: Update to 42.0 and deprecate gnome-icon-theme.
...
* gnu/packages/gnome.scm (adwaita-icon-theme): Update to 42.0. Remove
inheritance to gnome-icon-theme, re-adding...
[build-system, arguments, home-page, synopsis]
[description, license]: ... these fields.
(gnome-icon-theme): Define as a deprecated package.
[native-inputs]: Remove label.
[home-page]: Update URL.
[configure-flags]: Delete argument.
[make-flags]: New argument. Set the GTK_UPDATE_ICON_CACHE variable to the
empty string.
2022-09-12 20:51:21 -04:00
Maxim Cournoyer
05c5807ea5
gnu: proj: Update to 9.1.0 and propagate libraries.
...
* gnu/packages/geo.scm (proj): Update to 9.1.0.
[arguments]: Delete field.
[inputs]: Remove libjpeg-turbo and move to...
[propagated-inputs]: ... here.
2022-09-12 20:48:44 -04:00
Ludovic Courtès
491dd62b38
secret-service: Mark sockets as SOCK_CLOEXEC.
...
* gnu/build/secret-service.scm (secret-service-send-secrets)
(secret-service-receive-secrets): Pass SOCK_CLOEXEC to 'socket'.
2022-09-13 00:31:04 +02:00
Ludovic Courtès
66fdaf3677
services: shepherd: Install O_CLOEXEC variant of 'call-with-input-file' & co.
...
Fixes a bug introduced with the Shepherd 0.9.2 upgrade in commit
1ba0e38267 whereby files opened by, say,
the 'start' method of 'urandom-seed', could leak into the execution
environment of some other service--e.g., 'term-tty4'.
* gnu/services/shepherd.scm (shepherd-configuration-file)[config]:
Override 'call-with-input-file' and 'call-with-output-file'.
2022-09-13 00:31:04 +02:00
Ludovic Courtès
32583c8c20
services: secret-service: Inherit from the original 'guix-configuration'.
...
Reported by zamfofex.
Regression introduced in 2bac6ea177 .
* gnu/services/virtualization.scm (secret-service-operating-system):
Add 'inherit' keyword for 'guix-configuration'.
2022-09-13 00:31:04 +02:00
Florian Pelz
631d893023
news: Fix 'de' translation.
...
Follow-up to 23b50ddbdb .
* etc/news.scm: Fix punctuation. Use the same terminology
as the German manual.
2022-09-12 22:09:12 +02:00
Simon Streit
e8636e09e1
gnu: Add tp-smapi-module.
...
* gnu/packages/linux.scm (tp-smapi-module): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-12 21:15:13 +02:00
Thiago Jung Bauermann
23b50ddbdb
news: Fix en dash usage.
...
The en dash is used to separate pairs of words or numbers. The em dash is the
one used to separate sentences. In addition, in English text we are using the
convention of not separating the dash with spaces.
* etc/news.scm: Change the en dash to em in entry about Emacs native
compilation.
Signed-off-by: Florian Pelz <pelzflorian@pelzflorian.de >
2022-09-12 19:16:24 +02:00
Thiago Jung Bauermann
032068a96c
news: Add 'pt' translation.
...
* etc/news.scm: Add Portuguese translation of entry about Emacs native
compilation.
Signed-off-by: Florian Pelz <pelzflorian@pelzflorian.de >
2022-09-12 18:42:17 +02:00
Hendursaga
f3130fc7d9
gnu: cmh: Update to 1.1.1.
...
* gnu/packages/algebra.scm (cmh): Update to 1.1.1.
* gnu/packages/patches/cmh-support-fplll.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
Signed-off-by: Andreas Enge <andreas@enge.fr >
2022-09-12 17:35:35 +02:00
gyara
25d88eb9f3
gnu: hyfetch: Update to 1.4.1.
...
* gnu/packages/admin.scm (hyfetch): Update to 1.4.1.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-12 14:22:50 +01:00
jgart
3d8fdd2677
gnu: Add ghc-ansi2html.
...
* gnu/packages/haskell-xyz.scm (ghc-ansi2html): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-12 14:22:50 +01:00
kiasoc5
9877fb03f0
gnu: Add grml-zsh-config.
...
* gnu/packages/shellutils.scm (grml-zsh-config): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-12 14:22:50 +01:00
kiasoc5
08199c69d4
gnu: Add txt2tags.
...
* gnu/packages/textutils.scm (txt2tags): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-12 14:22:49 +01:00
jgart
0a982a19bf
gnu: ghc-alex: Use G-expressions.
...
* gnu/packages/containers.scm (ghc-alex)[arguments]: Use G-expressions.
[arguments]: Remove trailing booleans.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-12 14:22:47 +01:00
Marius Bakke
fc4da86ed6
gnu: swaylock: Fix build.
...
Fixes <https://bugs.gnu.org/57748 >.
Reported by muradm <mail@muradm.net >.
This is a follow-up to commit 2500709e01 .
* gnu/packages/wm.scm (swaylock)[native-inputs]: Change from WAYLAND-PROTOCOLS
to WAYLAND-PROTOCOLS-NEXT.
2022-09-12 15:18:26 +02:00
Nicolas Goaziou
a59bc77c04
gnu: emacs-ement: Update to 0.1.3.
...
* gnu/packages/emacs-xyz.scm (emacs-ement): Update to 0.1.3.
2022-09-12 13:01:13 +02:00
Andrew Tropin
70d58d1556
home: shepherd: Add shepherd/init.scm to XDG_CONFIG_HOME.
...
* gnu/home/services/shepherd.scm (shepherd-xdg-configuration-files):
New variable.
(home-shepherd-service-type)[extensions]:
Add HOME-XDG-CONFIGURATION-FILES-SERVICE-TYPE extension.
2022-09-12 08:43:08 +03:00
Marius Bakke
e3ed1d09f9
gnu: python-pingouin: Update to 0.5.2.
...
* gnu/packages/python-science.scm (python-pingouin): Update to 0.5.2.
[arguments]: Adjust outdated substitution.
2022-09-11 23:41:51 +02:00
Marius Bakke
752711b880
gnu: python-uvloop: Disable flaky test.
...
* gnu/packages/python-web.scm (python-uvloop)[arguments]: Disable one more
test. While at it, use 'thread' timeout method as signal did not work here.
Also don't compute the pytest string at evaluation time.
2022-09-11 23:41:43 +02:00
Marius Bakke
9b3124b2fc
gnu: Deprecate python-pep621.
...
* gnu/packages/python-xyz.scm (python-pep621): Define as deprecated alias for
PYTHON-PYPROJECT-METADATA.
2022-09-11 19:43:16 +02:00
Marius Bakke
2c9424c4aa
gnu: python-sphinx-theme-builder: Update to 0.2.0b1.
...
* gnu/packages/sphinx.scm (python-sphinx-theme-builder): Update to 0.2.0b1.
[propagated-inputs]: Change from PYTHON-PEP621 to PYTHON-PYPROJECT-METADATA.
2022-09-11 19:43:16 +02:00
Marius Bakke
87567bbc9e
gnu: Add python-pyproject-metadata.
...
* gnu/packages/python-xyz.scm (python-pyproject-metadata): New variable.
(python-pep621): Inherit from it.
2022-09-11 19:43:16 +02:00
Marius Bakke
e23ab97a54
gnu: Add python-sphinx-tabs.
...
* gnu/packages/sphinx.scm (python-sphinx-tabs): New variable.
2022-09-11 19:43:16 +02:00
Marius Bakke
9a6c3b7b6a
gnu: python-gast: Enable tests.
...
* gnu/packages/python-xyz.scm (python-gast)[arguments]: Override check phase.
[native-inputs]: Add PYTHON-PYTEST.
2022-09-11 19:43:16 +02:00
Marius Bakke
29f5fb9202
gnu: python-gast: Update to 0.5.3.
...
* gnu/packages/python-xyz.scm (python-gast): Update to 0.5.3.
2022-09-11 19:43:16 +02:00
Marius Bakke
2be1580eed
gnu: python-astunparse: Update to 1.6.3.
...
* gnu/packages/python-xyz.scm (python-astunparse): Update to 1.6.3.
2022-09-11 19:43:16 +02:00
Marius Bakke
8f2bc17f2b
gnu: python-gast: Update home page.
...
* gnu/packages/python-xyz.scm (python-gast)[home-page]: Use actual instead of
PyPI page.
2022-09-11 19:43:16 +02:00
Marius Bakke
5cce7a6824
gnu: python-docutils: Add 0.19.
...
* gnu/packages/python-xyz.scm (python-docutils-0.19): New variable.
2022-09-11 19:43:15 +02:00
Marius Bakke
6ef782ee22
gnu: QEMU: Unbundle dtc and slirp.
...
* gnu/packages/virtualization.scm (qemu)[source](snippet): Delete two more
directories.
[arguments]: Add "--enable-slirp" and "--enable-fdt" in #:configure-flags.
[inputs]: Add DTC and LIBSLIRP.
2022-09-11 19:43:15 +02:00
Marius Bakke
2487a75d77
gnu: slirp4netns: Update to 1.2.0.
...
* gnu/packages/containers.scm (slirp4netns): Update to 1.2.0.
2022-09-11 19:43:15 +02:00
Marius Bakke
b7c10a198b
gnu: libslirp: Update to 4.7.0.
...
* gnu/packages/containers.scm (libslirp): Update to 4.7.0.
[inputs]: Move GLIB ...
[propagated-inputs]: ... here.
2022-09-11 19:43:15 +02:00
Marius Bakke
150dda28f9
gnu: ntp: Adjust for glibc 2.34 and later.
...
* gnu/packages/ntp.scm (ntp)[source](patches): Add one more origin.
2022-09-11 19:43:15 +02:00
Marius Bakke
e916bc6703
gnu: mercurial: Update to 6.2.2.
...
* gnu/packages/version-control.scm (mercurial): Update to 6.2.2.
2022-09-11 19:43:15 +02:00
Marius Bakke
003fdf0a9d
gnu: mercurial: Adjust for grep 3.8.
...
* gnu/packages/version-control.scm (mercurial)[source](modules, snippet): New
fields.
2022-09-11 19:43:15 +02:00
Marius Bakke
b11c1d7702
gnu: Open vSwitch: Update to 3.0.0.
...
* gnu/packages/networking.scm (openvswitch): Update to 3.0.0.
2022-09-11 19:43:15 +02:00
Marius Bakke
8f78e9b0bc
gnu: Open vSwitch: Remove input labels.
...
* gnu/packages/networking.scm (openvswitch)[native-inputs]: Remove labels.
[arguments]: Use SEARCH-INPUT-FILE instead of labels.
2022-09-11 19:43:15 +02:00
Marius Bakke
d3a772d43d
gnu: Open vSwitch: Add release-monitoring-url.
...
* gnu/packages/networking.scm (openvswitch)[properties]: New field.
2022-09-11 19:43:15 +02:00
Marius Bakke
93376d5d9c
gnu: Open vSwitch: Adjust tests for grep 3.8.
...
* gnu/packages/networking.scm (openvswitch)[arguments]: Add substitution for
'egrep'.
2022-09-11 19:43:15 +02:00
Marius Bakke
2500709e01
gnu: swaylock: Update to 1.6.
...
* gnu/packages/wm.scm (swaylock): Update to 1.6.
2022-09-11 19:43:15 +02:00
jgart
9f780ff4dd
gnu: emacs-mint-mode: Update to 1.0.3.
...
* gnu/packages/emacs-xyz.scm (emacs-mint-mode): Update to 1.0.3.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-11 19:36:01 +02:00
Nicolas Goaziou
a8bb3bb1a7
gnu: emacs-detached: Update to 0.8.1.
...
* gnu/packages/emacs-xyz.scm (emacs-detached): Update to 0.8.1.
[arguments]<#:phases>: Remove references to the detached-env script, which
does not exist anymore.
2022-09-11 19:33:22 +02:00
Nicolas Goaziou
d0cb9b9ffb
gnu: emacs-ansi: Update to 0.4.1-2.2367fba.
...
* gnu/packages/emacs-xyz.scm (emacs-ansi): Update to 0.4.1-2.2367fba.
[propagated-inputs]: Remove EMACS-DASH and EMACS-S.
2022-09-11 19:27:19 +02:00
Nicolas Goaziou
bdf1c046f0
gnu: Add emacs-mentor.
...
* gnu/packages/emacs-xyz.scm (emacs-mentor): New variable.
2022-09-11 16:55:20 +02:00
Tobias Kortkamp
ed0061aa5b
gnu: piper: Update to 0.7.
...
* gnu/packages/gnome.scm (piper): Update to 0.7.
[native-inputs]: Add appstream.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:48:12 +02:00
Tobias Kortkamp
0b876d0a71
gnu: piper: Unbreak tests.
...
Make flake8 config available inside the build directory.
https://github.com/libratbag/piper/pull/781
* gnu/packages/gnome.scm (piper): Unbreak tests.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:48:12 +02:00
Tobias Kortkamp
283afa44b5
gnu: piper: Fix runtime.
...
The wrapper script does not add piper's own Python files to
GUIX_PYTHONPATH. Copy the approach from gtg to solve this.
Traceback (most recent call last):
File "/gnu/store/9fq062kva6ffidilg0qn8liqn6a8yf1w-piper-0.6/bin/.piper-real", line 36, in <module>
from piper.application import Application
ModuleNotFoundError: No module named 'piper'
* gnu/packages/gnome.scm (piper): Fix runtime.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:48:12 +02:00
Morgan Smith
5ed679a2a9
gnu: Add steam-devices-udev-rules.
...
* gnu/packages/games.scm (steam-devices-udev-rules): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:31 +02:00
jgart
bf0708d267
gnu: janet: Update to 1.24.1.
...
* gnu/packages/lisp.scm (janet): Update to 1.24.1.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:31 +02:00
Artyom V. Poptsov
8efed18128
gnu: java-slf4j-api: Update the source URI.
...
* gnu/packages/java.scm (java-slf4j-api)[source]: Replace the URI with
"git-reference" to GitHub as the origin reference to
"https://www.slf4j.org/dist/slf4j- ..." seems to be broken.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:31 +02:00
jgart
399fae26af
gnu: plantuml: Update to 1.2022.7.
...
* gnu/packages/yyy.scm (plantuml): Update to 1.2022.7.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:31 +02:00
Michael Rohleder
1dede3516d
gnu: v4l2loopback-linux-module: Update to 0.12.7.
...
* gnu/packages/linux.scm (v4l2loopback-linux-module): Update to 0.12.7.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:31 +02:00
Michael Rohleder
3bb12fc2c6
gnu: recoll: Update to 1.32.7.
...
* gnu/packages/search.scm (recoll): Update to 1.32.7.
[arguments]<#:configure-flags>: Add --with-inotify.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:31 +02:00
Taiju HIGASHI
859a6b49ca
gnu: font-plemoljp: Update to 1.2.7.
...
* gnu/packages/fonts.scm (font-plemoljp): Update to 1.2.7.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:30 +02:00
Michael Rohleder
e6c6df657b
gnu: nheko: Update to 0.10.1.
...
* gnu/packages/messaging.scm (nheko): Update to 0.10.1.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:30 +02:00
Michael Rohleder
77ecd4c010
gnu: mtxclient: Update to 0.8.2.
...
* gnu/packages/messaging.scm (mtxclient): Update to 0.8.2.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:30 +02:00
Felix Gruber
ef49ec6d68
gnu: python-qrcode: Update to 7.3.1.
...
* gnu/packages/python-xyz.scm (python-qrcode): Update to 7.3.1.
[propagated-inputs]: Remove python-six.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:30 +02:00
Maxime Devos
4b32f87e9a
daemon: Remove unused function findOutput.
...
* nix/libstore/misc.cc (findOutput): Remove it.
* nix/libstore/misc.hh (findOutput): Likewise.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:30 +02:00
Maxime Devos
93032586df
daemon: Remove unused function exportPaths.
...
* nix/libstore/store-api.cc (exportPaths): Remove it.
* nix/libstore/store-api.hh (exportPaths): Likewise.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:30 +02:00
Maxime Devos
1c5f5d6d8c
daemon: Remove unused function openStore.
...
* nix/libstore/store-api.cc (openStore): Remove it.
* nix/libstore/store-api.hh (openStore): Likewise.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-11 16:43:30 +02:00
Nicolas Goaziou
6519b1d59c
gnu: emacs-vertico: Update to 0.27.
...
* gnu/packages/emacs-xyz.scm (emacs-vertico): Update to 0.27.
2022-09-11 16:31:47 +02:00
Guillaume Le Vaillant
6c6eba3f1a
news: Fix entry.
...
* etc/news.scm: Fix commit field.
2022-09-11 16:04:20 +02:00
Guillaume Le Vaillant
d9f0ec68ac
gnu: qmapshack: Add curl dependency.
...
* gnu/packages/geo.scm (qmapshack)[inputs]: Add curl.
2022-09-11 15:50:48 +02:00
Felix Gruber
834162dcca
gnu: qgis: Disable failing tests.
...
* gnu/packages/geo.scm (qgis)[arguments]: Disable failing tests in
'check phase.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-11 15:50:48 +02:00
Felix Gruber
59c6e2352e
gnu: gplates: Add curl dependency.
...
* gnu/packages/geo.scm (gplates)[inputs]: Add curl.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-11 15:50:48 +02:00
Felix Gruber
3b14615b2d
gnu: openorienteering-mapper: Add curl dependency.
...
* gnu/packages/geo.scm (openorienteering-mapper)[inputs]: Add curl.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-11 15:50:48 +02:00
Felix Gruber
8bb5bcf679
gnu: python-cartopy: Update to 0.20.3.
...
* gnu/packages/geo.scm (python-cartopy): Update to 0.20.3.
[propagated-inputs]: Add python-pyproj.
[inputs]: Add comment to explain why proj is needed after depending on
python-pyproj.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-11 15:50:48 +02:00
Felix Gruber
b7376b310a
gnu: python-pyproj: Update to 3.3.1.
...
* gnu/packages/geo.scm (python-pyproj): Update to 3.3.1.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-11 15:50:48 +02:00
Felix Gruber
5e26866a58
gnu: proj: Update to 9.0.1.
...
* gnu/packages/geo.scm (proj): Update to 9.0.1.
[arguments]: Remove fix-version phase.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-11 15:50:48 +02:00
Felix Gruber
c9f19871a8
gnu: xygrib: Build against proj-7.
...
* gnu/packages/geo.scm (xygrib)[inputs]: Replace proj with proj-7.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-11 15:50:48 +02:00
Felix Gruber
c1197f5c4c
gnu: vtk: Build against proj-7.
...
* gnu/packages/image-processing.scm (vtk)[inputs]: Replace proj with
proj-7.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-11 15:50:48 +02:00
Felix Gruber
3eeb67c5d9
gnu: Add proj-7.
...
* gnu/packages/geo.scm (proj-7): New variable.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-11 15:50:48 +02:00
Mathieu Othacehe
22bfc42fab
services: web: Fix long lines.
...
* gnu/services/web.scm: Remove a trailing space and wrap long line. No
functional change.
2022-09-11 15:49:30 +02:00
Liliana Marie Prikler
d48c2c7df3
news: Add entry about Emacs native compilation.
...
* etc/news.scm: Add entry.
2022-09-11 15:46:32 +02:00
Liliana Marie Prikler
11a06d1e49
gnu: emacs-org: Undelete build step.
...
With native compilation enabled, it is now no longer meaningless.
* gnu/packages/emacs-xyz.scm (emacs-org)[#:phases]: Don't delete ‘build’.
2022-09-11 15:46:32 +02:00
Morgan Smith
58d0453aa7
build-system: emacs: Use new function for autoloads generation
...
* guix/build/emacs-utils.scm (emacs-generate-autoloads): Use
'loaddefs-generate' to create autoloads instead of
'update-directory-autoloads' if we are using a new enough Emacs
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-11 15:46:32 +02:00
Liliana Marie Prikler
799f48771f
gnu: emacs-yasnippet: Fix build.
...
* gnu/packages/patches/emacs-yasnippet-fix-tests.patch: Handle arguments
in buffer-list.
2022-09-11 15:46:32 +02:00
Liliana Marie Prikler
630c9b6e01
build-system: emacs: Use native compilation.
...
* guix/build/emacs-build-system.scm (add-install-to-native-load-path):
New variable.
(build): Replace ‘emacs-byte-compile-directory’ with ‘emacs-compile-directory’.
Delete already compiled files in the working directory prior to compilation.
(%standard-phases): Add ‘add-install-to-native-load-path’ after
‘expand-load-path’.
2022-09-11 15:46:32 +02:00
Liliana Marie Prikler
b54724b2ac
guix: emacs-utils: Add emacs-compile-directory.
...
* guix/build/emacs-utils.scm (emacs-compile-directory): New variable.
2022-09-11 15:46:32 +02:00
Liliana Marie Prikler
dbcba75c0e
gnu: emacs: Build with native compilation.
...
* gnu/packages/emacs.scm (%emacs-modules): New variable.
(emacs)[arguments]<#:modules>: Use it here.
<#:configure-flags> Add “--with-native-compilation”.
<#:make-flags>: Add “NATIVE_FULL_AOT=1”.
<#:phases>: Add ‘set-libgccjit-path’ and ‘patch-compilation-driver’.
[inputs]: Add explicit ld-wrapper, binutils, glibc, and libgccjit.
[search-paths]: Add EMACSNATIVELOADPATH.
(emacs-minimal, emacs-xwidgets, emacs-no-x)
(emacs-no-x-toolkit): Adjust accordingly.
2022-09-11 15:46:32 +02:00
Liliana Marie Prikler
80a9b757e8
gnu: libgccjit: Build multiple versions.
...
* gnu/packages/gcc.scm (libgccjit-9, libgccjit-10, libgccjit-11)
(libgccjit-12): New variables.
(libgccjit): Update to libgccjit-10.
2022-09-11 15:46:31 +02:00
Liliana Marie Prikler
6b63571557
gnu: libgccjit: Build with bootstrapped gcc.
...
* gnu/packages/gcc.scm (make-libgccjit)[#:configure-flags]: Add
“--disable-bootstrap”, “--disable-libatomic”, “--disable-libgomp”,
“--disable-libquadmath”, “--disable-libssp”, and “--enable-checking=release”.
[inputs]: Remove libstdc++.
[native-inputs]: Add gcc.
2022-09-11 15:46:31 +02:00
Liliana Marie Prikler
bf33a77ea7
gnu: Parameterize libgccjit.
...
* gnu/packages/gcc.scm (make-libgccjit): New variable.
(libgccjit): Define in terms of make-libgccjit.
2022-09-11 15:46:31 +02:00
jgart
1da91705b0
gnu: Add cl-draw-cons-tree.
...
* gnu/packages/lisp-xyz.scm (cl-draw-cons-tree, ecl-draw-cons-tree,
sbcl-draw-cons-tree): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-11 13:27:00 +02:00
jgart
2e50fd2301
gnu: Add wiggle.
...
* gnu/packages/patchutils.scm (wiggle): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-11 12:35:29 +02:00
Oleg Pykhalov
072cc8d141
gnu: mtr: Build with JSON support.
...
* gnu/packages/networking.scm (mtr)[native-inputs]: Add pkg-config.
[inputs]: Add 'jansson'.
2022-09-11 03:08:48 +03:00
Ludovic Courtès
1ba0e38267
gnu: shepherd: Update to 0.9.2.
...
* gnu/packages/admin.scm (shepherd-0.9): Update to 0.9.2.
2022-09-11 00:16:58 +02:00
Ludovic Courtès
081bb6a7bd
services: shepherd: Open /dev/null as O_CLOEXEC.
...
Failing to do that, that file descriptor could be inherited by child
processes as of Shepherd 0.9.2.
* gnu/services/shepherd.scm (shepherd-configuration-file): Open
/dev/null as O_CLOEXEC.
2022-09-11 00:16:57 +02:00
Florian Pelz
6ee40c3d99
news: Add 'de' translation.
...
* etc/news.scm: Add German translation of update of 'linux-libre' entry.
2022-09-10 21:52:18 +02:00
Michael Rohleder
ec661b2b83
gnu: emacs-ement: Update to 0.1.2.
...
* gnu/packages/emacs-xyz.scm (emacs-ement): Update to 0.1.2.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-10 19:15:50 +02:00
Nicolas Goaziou
a7b6de2a4b
gnu: emacs-org-contacts: Update to 1.1.
...
* gnu/packages/emacs-xyz.scm (emacs-org-contacts): Update to 1.1.
[source]<uri>: Use repo.or.cz as new upstream.
[propagated-inputs]: Add EMACS-ORG.
[home-page]: Update URL.
2022-09-10 19:15:50 +02:00
Marius Bakke
07140e8b10
Merge branch 'master' into staging
2022-09-10 17:27:06 +02:00
Michael Rohleder
575dbab746
gnu: mumble: Update to 1.4.274.
...
* gnu/packages/telephony.scm (mumble): Update to 1.4.274.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-10 17:23:32 +02:00
Liliana Marie Prikler
a38f03e4de
gnu: Add mpdevil.
...
* gnu/packages/mpd.scm (mpdevil): New variable.
2022-09-10 17:23:32 +02:00
Marius Bakke
f011465687
gnu: gnome-shell: Remove input labels and use G-expression.
...
* gnu/packages/gnome.scm (gnome-shell)[native-inputs]: Remove labels.
[arguments]: Convert to G-expressions. Add (ice-9 match) to #:modules. Use
SEARCH-INPUT-FILE and #$OUTPUT where appropriate. Add let-binding for
DISALLOWED-REFERENCES and use them in glib-or-gtk-wrap phase.
2022-09-10 16:38:16 +02:00
Marius Bakke
45c2da3875
gnu: gnome-shell: Remove obsolete input.
...
* gnu/packages/gnome.scm (gnome-shell)[arguments]: Don't remove intltool from
XDG_DATA_DIRS.
[native-inputs]: Remove INTLTOOL. Add GETTEXT-MINIMAL and PERL.
2022-09-10 14:40:29 +02:00
Marius Bakke
966649a74c
gnu: mutter: Remove obsolete input.
...
* gnu/packages/gnome.scm (mutter)[native-inputs]: Remove INTLTOOL. Add
GETTEXT-MINIMAL.
2022-09-10 13:42:32 +02:00
Marius Bakke
03cae37fae
gnu: mutter: Use G-expression.
...
* gnu/packages/gnome.scm (mutter)[arguments]: Use G-expressions.
2022-09-10 13:42:32 +02:00
Marius Bakke
6af5818262
gnu: mutter: Remove input labels.
...
* gnu/packages/gnome.scm (mutter)[native-inputs, inputs, propagated-inputs]:
Remove labels.
[arguments]: Use SEARCH-INPUT-FILE instead of labels.
2022-09-10 13:42:32 +02:00
Marius Bakke
e9a32184fd
gnu: rygel: Update to 0.40.4.
...
* gnu/packages/gnome.scm (rygel): Update to 0.40.4.
2022-09-10 13:42:32 +02:00
Marius Bakke
7d92ad4dfc
gnu: simple-scan: Update to 42.1.
...
* gnu/packages/gnome.scm (simple-scan): Update to 42.1.
[arguments]: Remove #:meson.
2022-09-10 13:42:32 +02:00
Marius Bakke
cbc3911029
gnu: kconfigwidgets: Build with qttools@5.
...
* gnu/packages/kde-frameworks.scm (kconfigwidgets)[native-inputs]: Change from
QTTOOLS to QTTOOLS-5.
2022-09-10 12:50:52 +02:00
Greg Hogan
fe42befd64
gnu: python-pip: Update to 22.2.2.
...
* gnu/packages/python-xyz.scm (python-pip): Update to 22.2.2.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-10 11:41:52 +01:00
Wiktor Żelazny
175fa28a4f
gnu: Add texlive-latex-pbox.
...
* gnu/packages/tex.scm (texlive-latex-pbox): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-10 11:33:58 +01:00
Wiktor Żelazny
2411e0b0bb
gnu: Add texlive-latex-marginfix.
...
* gnu/packages/tex.scm (texlive-latex-marginfix): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-10 11:33:26 +01:00
Adam Kandur
a53ef49baa
gnu: Add go-github-com-goccy-go-json.
...
* gnu/packages/golang.scm (go-github-com-goccy-go-json): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-10 11:32:47 +01:00
Wiktor Żelazny
b8850bf2c1
gnu: Add texlive-latex-translations.
...
* gnu/packages/tex.scm (texlive-latex-translations): New variable.
2022-09-10 11:27:13 +01:00
Wiktor Żelazny
13f1584b2e
gnu: Add texlive-latex-enotez.
...
* gnu/packages/tex.scm (texlive-latex-enotez): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-10 11:26:58 +01:00
Wiktor Żelazny
37e4015f46
gnu: Add texlive-latex-seqsplit.
...
* gnu/packages/tex.scm (texlive-latex-seqsplit): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-10 11:26:40 +01:00
Christopher Baines
ad1d3f98b1
gnu: Add comments to the bottom of a few package modules.
...
This will hopefully discourage patches which add new packages to the bottom of
files, as this increases the likelihood of conflicts when applying patches.
If there are more specific ways that packages should be arranged in specific
modules, this message can be updated accordingly.
* gnu/packages/bioconductor.scm: Add comment discouraging adding packages to
the bottom of the file.
* gnu/packages/bioinformatics.scm: ditto.
* gnu/packages/cran.scm: ditto.
* gnu/packages/crates-io.scm: ditto.
* gnu/packages/emacs-xyz.scm: ditto.
* gnu/packages/golang.scm: ditto.
* gnu/packages/guile-xyz.scm: ditto.
* gnu/packages/haskell-xyz.scm: ditto.
* gnu/packages/java.scm: ditto.
* gnu/packages/julia-xyz.scm: ditto.
* gnu/packages/lisp-xyz.scm: ditto.
* gnu/packages/ocaml.scm: ditto.
* gnu/packages/perl.scm: ditto.
* gnu/packages/python-science.scm: ditto.
* gnu/packages/python-xyz.scm: ditto.
* gnu/packages/ruby.scm: ditto.
* gnu/packages/tex.scm: ditto.
2022-09-10 10:45:27 +01:00
zimoun
4f134f26fd
gnu: Add r-ggalt.
...
* gnu/packages/cran.scm (r-ggalt): New variable.
2022-09-10 09:36:58 +02:00
zimoun
bcca8332ff
gnu: Add r-proj4.
...
* gnu/packages/cran.scm (r-proj4): New variable.
2022-09-10 09:36:58 +02:00
Leo Famulari
f760e628fb
gnu: linux-libre 5.10: Update to 5.10.142.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.142.
(linux-libre-5.10-pristine-source): Update hash.
2022-09-09 22:43:41 -04:00
Leo Famulari
a90e5f1434
gnu: linux-libre 5.15: Update to 5.15.67.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.67.
(linux-libre-5.15-pristine-source, deblob-scripts-5.15): Update hashes.
2022-09-09 22:43:41 -04:00
Leo Famulari
2934c4c9f0
gnu: linux-libre: Update to 5.19.8.
...
* gnu/packages/linux.scm (linux-libre-5.19-version): Update to 5.19.8.
(linux-libre-5.19-pristine-source, deblob-scripts-5.19): Update hashes.
2022-09-09 22:43:32 -04:00
Marius Bakke
8fbd8c8245
Merge branch 'master' into staging
2022-09-09 23:01:57 +02:00
Marius Bakke
b15c0e75f9
gnu: QEMU: Use G-expression.
...
* gnu/packages/virtualization.scm (qemu, qemu-minimal)[arguments]: Rewrite
with G-expressions.
2022-09-09 23:00:22 +02:00
Marius Bakke
0f6f9317ac
gnu: QEMU: Update to 7.1.0.
...
* gnu/packages/patches/qemu-build-info-manual.patch: Remove configure script
stanza.
* gnu/packages/patches/qemu-fix-agent-paths.patch: Adjust patch context. Use
execl instead of execle to stay consistent with upstream.
* gnu/packages/virtualization.scm (qemu): Update to 7.1.0.
2022-09-09 23:00:22 +02:00
Marius Bakke
abf21ba578
gnu: libcacard: Explicitly add NSS on RUNPATH.
...
* gnu/packages/spice.scm (libcacard)[arguments]: New field.
2022-09-09 23:00:22 +02:00
Marius Bakke
50134a2b4a
gnu: Explicitly use OpenSSL 1.1 in more packages.
...
* gnu/packages/rust-apps.scm (rust-cargo-c)[inputs]: Change from OPENSSL to
OPENSSL-1.1.
* gnu/packages/security-token.scm (opensc)[inputs]: Likewise.
* gnu/packages/spice.scm (spice, spice-gtk)[propagated-inputs]: Likewise.
* gnu/packages/web.scm (serf)[propagated-inputs]: Likewise.
2022-09-09 23:00:22 +02:00
Marius Bakke
6197d977d7
gnu: Explicitly use meson@0.60 in packages that don't support 0.63.
...
This to reduce merge conflicts in an upcoming switch.
* gnu/packages/gnome.scm (gnome-photos, gnome-music, gnome-user-share,
gnome-characters, gnome-font-viewer, gcr, evince, glade3,
gnome-settings-daemon, eog, simple-scan, gnome-session, gedit,
gnome-bluetooth, gtk-vnc, gnome-weather, gnome-calendar, cheese,
gnome-boxes)[arguments]: Add #:meson.
2022-09-09 23:00:21 +02:00
Marius Bakke
f9551e9df3
gnu: meson: Introduce versioned 'meson-0.60' variable.
...
While at it, change inheritance such that newest comes first.
* gnu/packages/build-tools.scm (meson-0.63): Move to the top.
(meson-0.60): Inherit from MESON-0.63.
(meson-0.59): Inherit from MESON-0.60. Don't use PACKAGE/INHERIT.
(meson): Turn into alias for MESON-0.60.
2022-09-09 23:00:21 +02:00
Marius Bakke
e1c0f26ec5
gnu: meson@0.63: Update to 0.63.2.
...
* gnu/packages/build-tools.scm (meson-0.63): Update to 0.63.2.
2022-09-09 23:00:21 +02:00
Marius Bakke
a38fc96bfc
gnu: graphicsmagick: Use G-expression.
...
* gnu/packages/imagemagick.scm (graphicsmagick)[arguments]: Use gexp.
2022-09-09 23:00:21 +02:00
Marius Bakke
ef614fd39e
gnu: graphicsmagick: Remove input labels.
...
* gnu/packages/imagemagick.scm (graphicsmagick)[inputs]: Remove labels.
[arguments]: Use SEARCH-INPUT-DIRECTORY.
2022-09-09 23:00:21 +02:00
Marius Bakke
a7adf473fc
gnu: graphicsmagick: Update to 1.3.38.
...
* gnu/packages/imagemagick.scm (graphicsmagick): Update to 1.3.38.
2022-09-09 23:00:21 +02:00
Marius Bakke
ac1aace34e
gnu: python-pytest-benchmark: Update to 3.4.1.
...
* gnu/packages/python-check.scm (python-pytest-benchmark): Update to 3.4.1.
[arguments]: Add #:test-target.
[native-inputs]: Remove PYTHON-PATHLIB2.
2022-09-09 23:00:21 +02:00
Marius Bakke
835938ad61
gnu: python-psutil: Update to 5.9.2.
...
* gnu/packages/python-xyz.scm (python-psutil): Update to 5.9.2.
2022-09-09 23:00:21 +02:00
Marius Bakke
ef6f786c93
gnu: python-pathlib2: Update to 2.3.7.post1.
...
* gnu/packages/python-xyz.scm (python-pathlib2): Update to 2.3.7post1.
2022-09-09 23:00:21 +02:00
Marius Bakke
8b1f117187
gnu: python-beautifulsoup4: Update to 4.11.1.
...
* gnu/packages/python-xyz.scm (python-beautifulsoup4): Update to 4.11.1.
[arguments]: Override check phase.
[native-inputs]: Add PYTHON-PYTEST.
2022-09-09 23:00:21 +02:00
Oleg Pykhalov
8eeadc8cb8
services: libvirt: Fix listen TCP.
...
* gnu/services/virtualization.scm (libvirt-shepherd-service): Add '--listen'
argument if 'listen-tcp?' is true.
2022-09-09 23:50:55 +03:00
Felix Gruber
e08b1669b4
gnu: sameboy: Update to 0.15.5.
...
* gnu/packages/emulators.scm (sameboy): Update to 0.15.5.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-09 21:35:22 +02:00
Nicolas Goaziou
6a2a545ba1
gnu: emacs-marginalia: Update to 0.14.
...
* gnu/packages/emacs-xyz.scm (emacs-marginalia): Update to 0.14.
2022-09-09 21:31:44 +02:00
Nicolas Goaziou
43e9343351
gnu: emacs-kind-icon: Update to 0.1.7.
...
* gnu/packages/emacs-xyz.scm (emacs-kind-icon): Update to 0.1.7.
2022-09-09 21:31:44 +02:00
Nicolas Goaziou
7efc5d31a4
gnu: emacs-pyim: Update to 5.2.4.
...
* gnu/packages/emacs-xyz.scm (emacs-pyim): Update to 5.2.4.
2022-09-09 21:31:44 +02:00
Nicolas Goaziou
3b10c87353
gnu: emacs-subed: Update to 1.0.8.
...
* gnu/packages/emacs-xyz.scm (emacs-subed): Update to 1.0.8.
2022-09-09 21:31:43 +02:00
Nicolas Goaziou
71ff0f210f
gnu: emacs-counsel-bbdb: Update to 0.0.5.
...
* gnu/packages/emacs-xyz.scm (emacs-counsel-bbdb): Update to 0.0.5.
[propagated-inputs]: Add EMACS-BBDB.
2022-09-09 21:31:43 +02:00
Nicolas Goaziou
85eb199003
gnu: emacs-consult: Update to 0.19.
...
* gnu/packages/emacs-xyz.scm (emacs-consult): Update to 0.19.
2022-09-09 21:31:43 +02:00
Nicolas Goaziou
243e326575
gnu: emacs-cape: Update to 0.9.
...
* gnu/packages/emacs-xyz.scm (emacs-cape): Update to 0.9.
2022-09-09 21:31:42 +02:00
Guillaume Le Vaillant
de257d1ffc
etc: teams: Add entry for Guillaume Le Vaillant.
...
* etc/teams.scm.in ("Guillaume Le Vaillant"): New member.
2022-09-09 18:00:12 +02:00
jgart
a4f96f2aa8
gnu: Add cl-doplus.
...
* gnu/packages/lisp-xyz.scm (cl-doplus, ecl-doplus, sbcl-doplus):
New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 14:30:00 +02:00
jgart
f02afbba1a
gnu: Add cl-quicklisp-stats.
...
* gnu/packages/lisp-xyz.scm (cl-quicklisp-stats, ecl-quicklisp-stats,
sbcl-quicklisp-stats): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 14:17:56 +02:00
jgart
6a1ed3a63f
gnu: Add cl-alexandria-plus.
...
* gnu/package/lisp-xyz.scm (cl-alexandria-plus, ecl-alexandria-plus,
sbcl-cl-alexandria-plus): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 14:15:05 +02:00
jgart
c952c06f25
gnu: Add cl-definitions-systems.
...
* gnu/packages/lisp-xyz.scm (cl-definitions-systems,
ecl-definitions-systems, sbcl-definitions-systems): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 13:46:33 +02:00
jgart
d8eca33c34
gnu: Add cl-enhanced-find-class.
...
* gnu/packages/lisp-xyz.scm (cl-enhanced-find-class,
ecl-enhanced-find-class, sbcl-enhanced-find-class): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 13:39:45 +02:00
jgart
c58db9b16f
gnu: Add cl-class-options.
...
* gnu/packages/lisp-xyz.scm (cl-class-options, ecl-class-options,
sbcl-class-options): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 13:36:30 +02:00
jgart
cb4c655147
gnu: Add cl-compatible-metaclasses.
...
* gnu/packages/lisp-xyz.scm (cl-compatible-metaclasses,
ecl-compatible-metaclasses, sbcl-compatible-metaclasses): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 13:32:03 +02:00
jgart
fa560725e4
gnu: Add cl-cesdi.
...
* gnu/packages/lisp-xyz.scm (cl-cesdi, ecl-cesdi, sbcl-cesdi): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 13:27:20 +02:00
jgart
94311a016b
gnu: Add cl-enhanced-boolean.
...
* gnu/packages/lisp-xyz.scm (cl-enhanced-boolean, ecl-enhanced-boolean,
sbcl-enhanced-boolean): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 13:23:28 +02:00
jgart
791e9e4534
gnu: Add cl-enhanced-eval-when.
...
* gnu/packages/lisp-xyz.scm (cl-enhanced-eval-when,
ecl-enhanced-eval-when, sbcl-enhanced-eval-when): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 13:18:06 +02:00
jgart
e6cadc8fe8
gnu: Add cl-evaled-when.
...
* gnu/packages/lisp-xyz.scm (cl-evaled-when, ecl-evaled-when,
sbcl-evaled-when): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 13:11:27 +02:00
jgart
631a094df8
gnu: Add cl-fakenil.
...
* gnu/packages/lisp-xyz.scm (cl-fakenil, ecl-fakenil, sbcl-fakenil):
New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 12:07:18 +02:00
jgart
b51e7bdf42
gnu: Add cl-simple-guess.
...
* gnu/packages/lisp-xyz.scm (cl-simple-guess, ecl-simple-guess,
sbcl-simple-guess): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 12:02:07 +02:00
jgart
5e7f2a5e12
gnu: Add cl-inheriting-readers.
...
* gnu/packages/lisp-xyz.scm (cl-inheriting-readers,
ecl-inheriting-readers, sbcl-inheriting-readers): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 11:56:14 +02:00
jgart
594b9dd391
gnu: Add cl-shared-preferences.
...
* gnu/packages/lisp-xyz.scm (cl-shared-preferences,
ecl-shared-preferences, sbcl-shared-preferences): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 11:51:54 +02:00
jgart
1f13f79583
gnu: Add cl-object-class.
...
* gnu/packages/lisp-xyz.scm (cl-object-class, ecl-object-class,
sbcl-object-class): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 11:48:39 +02:00
jgart
18fcaee2b9
gnu: Add cl-enhanced-defclass.
...
* gnu/packages/lisp-xyz.scm (cl-enhanced-defclass, ecl-enhanced-defclass,
sbcl-enhanced-defclass): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 11:40:10 +02:00
jgart
3b5c5cbb6d
gnu: Add cl-enhanced-typep.
...
* gnu/packages/lisp-xyz.scm (cl-enhanced-typep, ecl-enhanced-typep,
sbcl-enhanced-typep): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 11:27:03 +02:00
jgart
003b91298a
gnu: Add cl-canonicalized-initargs.
...
* gnu/packages/lisp-xyz.scm (cl-canonicalized-initargs,
ecl-canonicalized-initargs, sbcl-canonicalized-initargs): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-09 11:23:00 +02:00
jgart
b9e0aff9dc
gnu: Add emacs-telephone-line.
...
* gnu/packages/emacs-xyz.scm (emacs-telephone-line): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-09 09:25:09 +02:00
Nicolas Goaziou
ef5636c35c
gnu: emacs-eldev: Update to 1.2.2.
...
* gnu/packages/emacs-xyz.scm (emacs-eldev): Update to 1.2.2.
2022-09-09 09:25:09 +02:00
Nicolas Goaziou
a86e4a7757
gnu: emacs-php-mode: Update to 1.24.1.
...
* gnu/packages/emacs-xyz.scm (emacs-php-mode): Update to 1.24.1.
2022-09-09 09:25:09 +02:00
Nicolas Goaziou
456c6d4bdd
gnu: emacs-gruvbox-theme: Update to 1.30.1.
...
* gnu/packages/emacs-xyz.scm (emacs-gruvbox-theme): Update to 1.30.1.
2022-09-09 09:25:09 +02:00
Julien Lepiller
1d690f7d1d
news: Update 'fr' translation.
...
* etc/news.scm: Add French translation to kernel news.
2022-09-09 06:50:54 +02:00
Thiago Jung Bauermann via Guix-patches via
0a875c62d8
news: Add 'pt' translation.
...
* etc/news.scm: Add Portuguese translation of entry about the update of the
'linux-libre' package.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-09 06:42:40 +02:00
Ricardo Wurmus
969f9b8bf4
gnu: rust-proc-macro2-1: Add rust-unicode-ident-1 to inputs.
...
* gnu/packages/crates-io.scm (rust-proc-macro2-1)[inputs]: Add
rust-unicode-ident-1.
2022-09-09 00:37:08 +02:00
tiantian
32da9bbc91
gnu: bootloader: Report error in menu-entry.
...
* gnu/bootloader.scm (report-menu-entry-error): New procedure.
(menu-entry->sexp): Add a call to `report-menu-entry-error'.
Co-Authored-By: Julien Lepiller <julien@lepiller.eu >
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-08 22:30:43 +02:00
tiantian
1fc20e4c86
gnu: bootloader: grub: Add support for chain-loader.
...
* gnu/bootloader/grub.scm (grub-configuration-file): Add support for
chain-loader.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-08 22:30:09 +02:00
tiantian
52d780ea2b
gnu: bootloader: Extend `<menu-entry>' for chain-loader.
...
* gnu/bootloader.scm (<menu-entry>)[chain-loader]: New field.
(menu-entry->sexp, sexp->menu-entry): Support chain-loader.
* doc/guix.texi (Bootloader Configuration): Document it.
Co-Authored-By: Julien Lepiller <julien@lepiller.eu >
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-09-08 22:29:57 +02:00
Marius Bakke
fa894b3f4d
Merge branch 'master' into staging
2022-09-08 20:56:57 +02:00
Efraim Flashner
e8bded2de7
gnu: eigen: Skip some tests on some architectures.
...
* gnu/packages/algebra.scm (eigen)[arguments]: Add a phase to skip some
tests which fail on various platforms.
(eigen-for-tensorflow, eigen-for-tensorflow-lite)[arguments]: Don't
inherit new phase.
2022-09-08 20:39:17 +03:00
Arun Isaac
8d34df72cb
gnu: Add python-pymonad.
...
* gnu/packages/python-xyz.scm (python-pymonad): New variable.
2022-09-08 20:56:08 +05:30
Hilton Chain
685dd8fb13
services: agetty-service-type: Add missing dash.
...
* gnu/services/base.scm (<agetty-configuration>): Add missing dash for
no-hostname? configuration.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:23 +02:00
Michael Rohleder
26aa149be8
gnu: strawberry: Update to 1.0.9.
...
* gnu/packages/music.scm (strawberry): Update to 1.0.9.
[inputs]: Add icu4c.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:23 +02:00
kiasoc5
5ecbb9c167
gnu: dragon-drop: Update to 1.2.0.
...
* gnu/packages/gtk.scm (dragon-drop): Update to 1.2.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:23 +02:00
kiasoc5
94a46dc27a
gnu: flatpak: Update to 1.14.0.
...
* gnu/packages/package-management.scm (flatpak): Update to 1.14.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:23 +02:00
Wiktor Żelazny
9fb065a544
gnu: Add texlive-latex-totcount.
...
* gnu/packages/tex.scm (texlive-latex-totcount): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:23 +02:00
Wiktor Żelazny
742e70cb13
gnu: Add texlive-generic-soul.
...
* gnu/packages/tex.scm (texlive-generic-soul): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:23 +02:00
Wiktor Żelazny
c92b010804
gnu: Add texlive-latex-tabto-ltx.
...
* gnu/packages/tex.scm (texlive-latex-tabto-ltx): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:22 +02:00
Wiktor Żelazny
7627ac7ba9
gnu: Add texlive-latex-lastpage.
...
* gnu/packages/tex.scm (texlive-latex-lastpage): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:22 +02:00
Zhu Zihao
3808667573
gnu: podman: Update to 4.2.0.
...
* gnu/packages/containers.scm (podman): Update to 4.2.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:22 +02:00
Zhu Zihao
14a450ae21
gnu: podman: Use G-expressions.
...
* gnu/packages/containers.scm (podman)[arguments]: Use G-expressions.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:22 +02:00
Kristian Lein-Mathisen
9f74add674
gnu: Add solvespace.
...
* gnu/packages/engineering.scm (solvespace): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:22 +02:00
Kristian Lein-Mathisen
7fabdffca9
gnu: Add mimalloc.
...
* gnu/packages/c.scm (mimalloc): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:22 +02:00
Lilah Tascheter
b2e560aca4
gnu: man-pages: Update to new style.
...
* gnu/packages/man.scm (man-pages)[arguments]: Refer to package output
using gexps instead of assoc-ref on a parameter.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:22 +02:00
Lilah Tascheter
4ace4692c0
gnu: Add man-pages-posix.
...
* gnu/packages/man.scm (man-pages-posix): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:21 +02:00
gyara
97cccd3433
gnu: zsh-autopair.
...
* gnu/packages/shellutils.scm (zsh-autopair): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-08 16:22:21 +02:00
Ludovic Courtès
e05f7c55d7
file-systems: Open files with O_CLOEXEC.
...
Since this code is run from PID 1, this ensures file descriptors to
sensitive files and devices are not accidentally leaked to
sub-processes.
* gnu/build/file-systems.scm (call-with-input-file): New procedure.
(mount-file-system): Use 'close-fdes' + 'open-fdes'.
2022-09-08 16:22:21 +02:00
Ludovic Courtès
8f53630f2f
syscalls: Avoid repeated calls to 'syscall->procedure'.
...
Commit 7df4d3465d and others changed
'mount', 'umount', & co. so they would call 'syscall->procedure' at each
call. This change reverts to the previous behavior, where
'syscall->procedure' is called once.
* guix/build/syscalls.scm (mount, umount, reboot, load-linux-module):
Call 'syscall->procedure' only once.
2022-09-08 16:22:21 +02:00
Ludovic Courtès
392e97ed08
import: gnome: Reject version strings such as "43.alpha".
...
Reported by Maxim Cournoyer.
This is a followup to 61b63e7fa7 .
* guix/import/gnome.scm (latest-gnome-release)[even-minor-version?]:
Reject VERSION is the minor or micro part is not an integer.
2022-09-08 16:22:21 +02:00
Ludovic Courtès
69d72c553f
search-paths: Tweak $SSL_CERT_DIR comment.
...
* guix/search-paths.scm ($SSL_CERT_DIR): Fix typos and tweak comment.
2022-09-08 16:22:21 +02:00
Ludovic Courtès
2f5f539b60
search-paths: Clarify $GUIX_EXTENSIONS_PATH comment.
...
* guix/search-paths.scm ($GUIX_EXTENSIONS_PATH): Clarify comment.
2022-09-08 16:22:21 +02:00
Ludovic Courtès
e7b8e83670
search-paths: Remove redundant uses of 'define-public'.
...
* guix/search-paths.scm ($GUIX_EXTENSIONS_PATH, $SSL_CERT_DIR,
$SSL_CERT_FILE): Use 'define', not 'define-public'.
2022-09-08 16:22:20 +02:00
Liliana Marie Prikler
38e8373830
gnu: zuo: Use English in description.
...
* gnu/packages/racket.scm (zuo)[description]: Use English.
2022-09-08 15:50:39 +02:00
Liliana Marie Prikler
839e984e09
gnu: komikku: Update to 0.41.0.
...
* gnu/packages/gnome.scm (komikku): Update to 0.41.0.
2022-09-08 15:50:38 +02:00
Mathieu Othacehe
5f07efda06
tests: dict: Increase VM memory-size.
...
* gnu/tests/dict.scm (run-dicod-test): Increase it to 1024 MiB.
2022-09-08 15:17:31 +02:00
Marius Bakke
b45a44eaad
gnu: uBlock Origin: Update to 1.44.2.
...
* gnu/packages/browser-extensions.scm (ublock-origin): Update to 1.44.2.
2022-09-07 22:02:43 +02:00
Paul A. Patience
c56e8eabb4
gnu: f3d: Update to 1.3.1.
...
* gnu/packages/graphics.scm (f3d): Update to 1.3.1.
[snippet]: Use G-expression.
[arguments]<#:configure-flags>: Update option name to
F3D_INSTALL_MIME_TYPES_FILES.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:42 +02:00
Greg Hogan
08c6fd9511
gnu: python-sympy: Update to 1.11.1.
...
All dependents successfully build except the continued failure of
python-dolfin-adjoint: http://ci.guix.gnu.org/build/1306546/details
* gnu/packages/python-xyz.scm (python-sympy): Update to 1.11.1.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:42 +02:00
Zhu Zihao
c8621fa193
gnu: python-pyside-2-tools: Fix synopsis and description.
...
* gnu/packages/qt.scm (python-pyside2-tools)[synopsis]: Use more descriptive
words.
[description]: Ditto.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:42 +02:00
Zhu Zihao
e2e351cb45
gnu: python-pyside-2-tools: Use G-expressions.
...
* gnu/packages/qt.scm (python-pyside2-tools)[native-inputs]: Use label-less
style.
[arguments]: Use G-expressions.
<#:configure-flags>: Use SEARCH-INPUT-FILE.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:42 +02:00
Zhu Zihao
7c9ac0468b
gnu: Add python-pyside-6.
...
* gnu/packages/qt.scm (python-pyside-6): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:42 +02:00
Zhu Zihao
5c08546558
gnu: python-pyside-2: Use "this-package-input" instead of "assoc-ref".
...
* gnu/packages/qt.scm (python-pyside-2)[arguments]<#:configure-flags>: Use
SEARCH-INPUT-FILE.
<#:phases>: In phase "fix-qt-module-detection", use "this-package-input".
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:42 +02:00
Zhu Zihao
39647c9741
gnu: python-pyside-2: Clarify the package inputs.
...
The module "PySide.PyQtUiTools" depends on "qttools-5", it should be an input,
not a native input.
libxml2, libxslt, clang-toolchain is only used by python-shiboken-2.
cmake-minimal is not used.
* gnu/packages/qt.scm (python-pyside-2): [inputs]: Remove libxml2, libxslt,
clang-toolchain. Add qttools-5.
[native-inputs]: Remove cmake-minimal, qttools-5.
[arguments]<#:phases>: Remove phase "set-clang-dir".
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:41 +02:00
Zhu Zihao
00652ce2ee
gnu: python-pyside-2: Use G-expressions.
...
* gnu/packages/qt.scm (python-pyside-2)[native-inputs]: Use label-less input
style.
[arguments]: Use G-expressions.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:41 +02:00
Zhu Zihao
a69581f17c
gnu: Add python-shiboken-6
...
* gnu/packages/qt.scm (python-shiboken-6): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:41 +02:00
Zhu Zihao
f1bbdefd9e
gnu: python-shiboken-2: Use G-expressions.
...
* gnu/packages/qt.scm (python-shiboken-2)[arguments]: Use G-expressions.
<#:phases>: In phase "set-build-env", Replace (assoc-ref inputs ...) with
(this-package-input ...).
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:41 +02:00
Hilton Chain
453cbb9f06
gnu: abseil-cpp: Update to 20220623.1.
...
* gnu/packages/cpp.scm (abseil-cpp): Update to 20220623.1.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:41 +02:00
Michael Rohleder
1981a39e5d
gnu: ytfzf: Update to 2.4.1.
...
* gnu/packages/image-viewers.scm (ytfzf): Update to 2.4.1.
[inputs]: Add perl.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:41 +02:00
Maxime Devos
344159b95c
gnunet-scheme: Unbundle config.rpath.
...
* gnu/packages/gnunet.scm (gnunet-scheme)[origin]{snippet}: New snippet.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:41 +02:00
Maxime Devos
85aa25cd6a
gnu: gnunet-scheme: Make scheme-gnunet.pdf reproducible.
...
* gnu/packages/gnunet.scm
(gnunet-scheme)[arguments]<#:phases>{reproducible-timestamp}:
New phase.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:40 +02:00
Maxime Devos
77b37fcb58
gnu: gnunet-scheme: Update to 0.3.
...
The old snippet doesn't apply anymore, so a different work-around was
committed to gnunet-scheme.
* gnu/packages/gnunet.scm (gnunet-scheme): Update to 0.3.
[description]: Update description for new features.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:40 +02:00
Paul A. Patience
29491482a1
gnu: python-pyvista: Update to 0.36.1.
...
* gnu/packages/python-science.scm (python-pyvista): Update to 0.36.1.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:40 +02:00
Hilton Chain
4f9e58b5ee
gnu: font-lxgw-wenkai-tc: Update to 0.921.
...
* gnu/packages/fonts.scm (font-lxgw-wenkai-tc): Update to 0.921.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:40 +02:00
Hilton Chain
9a1228b493
gnu: font-lxgw-wenkai: Update to 1.240.
...
* gnu/packages/fonts.scm (font-lxgw-wenkai): Update to 1.240.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:40 +02:00
Hilton Chain
1c060f59d4
gnu: sqlite-next: Update to 3.39.3.
...
* gnu/packages/sqlite.scm (sqlite-next): Update to 3.39.3.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:40 +02:00
Hilton Chain
53c127c16d
gnu: python-apsw: Update to 3.39.2.1.
...
* gnu/packages/databases.scm (python-apsw): Update to 3.39.2.1.
[source]: Change back to compressed release.
* gnu/packages/patches/python-apsw-3.39.2.1-test-fix.patch: New file.
* gnu/local.mk: Add patch.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-07 22:02:40 +02:00
Marius Bakke
b7629ff995
gnu: expect: Update home page.
...
* gnu/packages/tcl.scm (expect)[home-page]: Follow redirect.
2022-09-07 22:02:39 +02:00
Maxim Cournoyer
9ec4233181
gnu: pypy: Fix build.
...
This fixes a regression that was introduced in commit 553c009d74 .
* gnu/packages/python.scm (pypy)[phases]{install}: Rename the OUT variable to
#$OUTPUT.
2022-09-07 14:34:57 -04:00
Ricardo Wurmus
d18bddf5d7
doc: Fix typo.
...
* doc/guix.texi (Miscellaneous Services): Fix typo.
2022-09-07 20:08:23 +02:00
Marius Bakke
6cfb2e6270
Merge branch 'master' into staging
2022-09-07 18:20:23 +02:00
Marius Bakke
453e7dd8c4
gnu: tombo: Disable tests.
...
* gnu/packages/bioinformatics.scm (tombo)[arguments]: New field.
2022-09-07 17:36:42 +02:00
Marius Bakke
d09f3f82b8
gnu: guix-jupyter: Disable parallel tests.
...
* gnu/packages/package-management.scm (guix-jupyter)[arguments]: Add
#:parallel-tests?.
2022-09-07 17:36:42 +02:00
Marius Bakke
9046adf8ef
gnu: python-cfgv: Update to 3.3.1.
...
* gnu/packages/python-xyz.scm (python-cfgv): Update to 3.3.1.
[arguments]: Respect TESTS? keyword in check phase.
[native-inputs]: Remove PYTHON-COVERAGE and PYTHON-COVDEFAULTS.
2022-09-07 17:36:42 +02:00
Marius Bakke
6ba66072e0
gnu: python-fs: Update to 2.4.16.
...
* gnu/packages/python-xyz.scm (python-fs): Update to 2.4.16.
2022-09-07 17:36:42 +02:00
Marius Bakke
35426e7fec
gnu: python-zopfli: Update to 0.2.1.
...
* gnu/packages/python-compression.scm (python-zopfli): Update to 0.2.1.
[arguments]: Use pytest in check phase.
[native-inputs]: Add PYTHON-PYTEST.
2022-09-07 17:36:42 +02:00
Marius Bakke
ac3a8b0a5b
gnu: python-pytest-regressions: Update to 2.3.1.
...
* gnu/packages/check.scm (python-pytest-regressions): Update to 2.3.1.
2022-09-07 17:36:42 +02:00
Marius Bakke
a867125b3a
gnu: python-cairocffi: Update to 1.3.0.
...
* gnu/packages/python-xyz.scm (python-cairocffi): Update to 1.3.0.
2022-09-07 17:36:42 +02:00
Marius Bakke
79143344f8
gnu: python-xlsxwriter: Update to 3.0.3.
...
* gnu/packages/python-xyz.scm (python-xlsxwriter): Update to 3.0.3.
2022-09-07 17:36:42 +02:00
Marius Bakke
1329b64db5
gnu: python-jdcal: Update to 1.4.1.
...
* gnu/packages/python-xyz.scm (python-jdcal): Update to 1.4.1.
[arguments]: Use G-expression and respect TESTS? keyword.
2022-09-07 17:36:42 +02:00
Marius Bakke
8d5637103f
gnu: python-et-xmlfile: Update to 1.1.0.
...
* gnu/packages/python-xyz.scm (python-et-xmlfile): Update to 1.1.0.
[source]: Switch to HG-FETCH.
[arguments]: Use G-expression and respect TESTS? keyword.
2022-09-07 17:36:41 +02:00
Marius Bakke
379e66b64b
gnu: zabbix: Update to 6.0.8.
...
* gnu/packages/monitoring.scm (zabbix-agentd): Update to 6.0.8.
[native-inputs]: Add PKG-CONFIG.
2022-09-07 17:36:41 +02:00
muradm
2183db8d2a
gnu: linux: Remove unnecessary let clause in make-linux-libre.
...
* gnu/packages/linux.scm (make-linux-libre*)[arguments]:
Remove unnecessary let clause in 'configure phase.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-07 14:51:54 +02:00
jgart
a312c9d018
gnu: Add cl-list-named-class.
...
* gnu/packages/lisp-xyz.scm (cl-list-named-class, ecl-list-named-class,
sbcl-list-named-class): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-07 14:32:09 +02:00
André A. Gomes
c02450c237
gnu: cl-lisp-unit2: Update to 0.9.3.
...
* gnu/packages/lisp-check.scm (sbcl-lisp-unit2): Update to 0.9.3.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-07 14:32:09 +02:00
jgart
d4eeb77aae
gnu: Add cl-cron.
...
* gnu/packages/lisp-xyz.scm (cl-cron, ecl-cl-cron, sbcl-cl-cron): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-07 14:32:08 +02:00
jgart
43dd4cc0eb
gnu: Add cl-positional-lambda.
...
* gnu/packages/lisp-xyz.scm (cl-positional-lambda, ecl-positional-lambda,
sbcl-positional-lambda): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-07 14:32:08 +02:00
jgart
73654708bf
gnu: Add cl-map-bind.
...
* gnu/packages/lisp-xyz.scm (cl-map-bind, ecl-map-bind, sbcl-map-bind): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-07 14:32:08 +02:00
jgart
94c6e68310
gnu: Add cl-rucksack.
...
* gnu/packages/lisp-xyz.scm (cl-rucksack, sbcl-rucksack): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-07 14:32:08 +02:00
jgart
b8ffdefd56
gnu: Add cl-amb.
...
* gnu/packages/lisp-xyz.scm (cl-amb, ecl-amb, sbcl-amb): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-07 14:32:08 +02:00
jgart
54e4aac588
gnu: Add cl-tripod.
...
* gnu/packages/lisp-xyz.scm (cl-tripod, ecl-tripod, sbcl-tripod): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-07 14:32:08 +02:00
jgart
3f46a0b6a9
gnu: Add cl-smug.
...
* gnu/packages/lisp-xyz.scm (cl-smug, ecl-smug, sbcl-smug): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-07 14:32:08 +02:00
jgart
b36f2abe6e
gnu: Add cl-2am.
...
* gnu/packages/lisp-check.scm (cl-2am, ecl-2am, sbcl-2am): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-07 14:32:08 +02:00
Mathieu Othacehe
0edb79b2a9
image: Use #true and #false.
...
* gnu/image.scm: Use #true and #false instead of #t and #f respectively. No
functional change.
2022-09-07 14:26:34 +02:00
Mathieu Othacehe
e917f1242c
system: images: Define the platform in image-types.
...
Running the following command where my-pine.scm contains an operating-system
declaration:
guix system image --image-type=pine64-raw my-pine.scm
returns:
guix system: error: package linux-libre-arm64-generic@5.18.19 does not support
x86_64-linux
That's because there's no platform defined in the pine64-raw image-type, hence
the guix system image tries to build the image for the host architecture.
* gnu/system/images/novena.scm (novena-image-type): Use the armv7-linux platform.
* gnu/system/images/pine64.scm (pine64-image-type): Use the aarch64-linux platform.
* gnu/system/images/pinebook-pro.scm (pinebook-pro-image-type): Use the aarch64-linux platform.
* gnu/system/images/rock64.scm (rock64-image-type): Use the aarch64-linux platform.
2022-09-07 14:24:53 +02:00
Mathieu Othacehe
08b8f85e08
system: image: Update my copyright.
...
* gnu/system/image.scm: Update it.
2022-09-07 14:24:52 +02:00
Mathieu Othacehe
310212e23e
system: image: Remove an unused variable.
...
* gnu/system/image.scm (sytem-image): Remove it.
2022-09-07 14:24:52 +02:00
Mathieu Othacehe
a1fb85a539
image: Use a default size partition value.
...
* gnu/image.scm (<partition>)[size]: Default to 'guess like the image record.
2022-09-07 14:24:52 +02:00
Mathieu Othacehe
e0c1124a48
guix: platform: Use #false instead of #f.
...
* guix/platform.scm (<platform>): Adapt it.
2022-09-07 14:24:52 +02:00
(unmatched-parenthesis
7f037dfcdc
gnu: guix-modules: Remove instructions for GUIX_EXTENSIONS_PATH.
...
* gnu/packages/package-management.scm (guix-modules)[description]:
Remove instructions to set GUIX_EXTENSIONS_PATH.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-09-07 11:32:55 +03:00
(unmatched-parenthesis
bbc1735be2
profiles: Implicitly set GUIX_EXTENSIONS_PATH.
...
* guix/build/profiles.scm (manifest-sexp->inputs+search-paths):
Always return a search path for GUIX_EXTENSIONS_PATH.
* guix/search-paths.scm ($GUIX_EXTENSIONS_PATH): New variable.
This allows Guix to find extensions without any need for users to
set GUIX_EXTENSIONS_PATH manually.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-09-07 11:30:31 +03:00
Pierre Neidhardt
0321ceef08
gnu: sbcl-mcclim: Also build clim-debugger.
...
* gnu/packages/lisp-xyz.scm (sbcl-mcclim)[arguments]: Build clim-debugger.
(ecl-mcclim)[arguments]: Disable tests since they fail (also without clim-debugger).
2022-09-07 08:36:05 +02:00
Pierre Neidhardt
1e180f4523
gnu: sbcl-ctype: Build ctype-tfun as well.
...
* gnu/packages/lisp-xyz.scm (sbcl-ctype)[inputs]: Add sbcl-alexandria.
[arguments]: Build ctype-tfun as well.
2022-09-07 08:36:05 +02:00
Pierre Neidhardt
240cd23514
gnu: sbcl-concrete-syntax-tree: Update to 20210818.
...
* gnu/packages/lisp-xyz.scm (sbcl-concrete-syntax-tree): Update to 20210818.
[arguments]: Build all systems, not just the default.
2022-09-07 08:36:05 +02:00
Andrew Tropin
39b8f85a6e
.dir-locals.el: Update yas snippets directory.
...
* .dir-locals.el (eval): Update yas snippets directory.
2022-09-07 09:20:12 +03:00
Marius Bakke
92fdda5a63
gnu: polkit: Look up polkit rules under /etc, and enable session tracking.
...
This is a follow-up to commit 290ac5cd1e .
* gnu/packages/polkit.scm (polkit-mozjs)[source](snippet): Add substitutions.
[source](patches): New field.
[arguments]: Pass --sysconfdir and -Dsession_tracking in #:configure-flags.
* gnu/packages/patches/polkit-disable-systemd.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-09-06 23:43:40 +02:00
Ricardo Wurmus
b9fa04fb2c
gnu: rust-parking-lot-core-0.9: Fix build.
...
* gnu/packages/crates-io.scm (rust-parking-lot-core-0.9)[arguments]: Do not
skip build; add rust-windows-sys-0.36.
2022-09-06 23:10:41 +02:00
Ricardo Wurmus
d5f3ad8283
gnu: Add rust-windows-sys-0.36.
...
* gnu/packages/crates-io.scm (rust-windows-sys-0.36): New variable.
2022-09-06 23:07:52 +02:00
Ricardo Wurmus
36513fd082
gnu: Add rust-windows-aarch64-msvc-0.36.
...
* gnu/packages/crates-io.scm (rust-windows-aarch64-msvc-0.36): New variable.
2022-09-06 23:07:35 +02:00
Ricardo Wurmus
8e9105f749
gnu: Add rust-windows-i686-gnu-0.36.
...
* gnu/packages/crates-io.scm (rust-windows-i686-gnu-0.36): New variable.
2022-09-06 23:07:17 +02:00
Ricardo Wurmus
730c93be87
gnu: Add rust-windows-i686-msvc-0.36.
...
* gnu/packages/crates-io.scm (rust-windows-i686-msvc-0.36): New variable.
2022-09-06 23:06:59 +02:00
Ricardo Wurmus
ca11628eaa
gnu: Add rust-windows-x86-64-gnu-0.36.
...
* gnu/packages/crates-io.scm (rust-windows-x86-64-gnu-0.36): New variable.
2022-09-06 23:06:38 +02:00
Ricardo Wurmus
dbf0e1fd1c
gnu: Add rust-windows-x86-64-msvc-0.36.
...
* gnu/packages/crates-io.scm (rust-windows-x86-64-msvc-0.36): New variable.
2022-09-06 23:06:10 +02:00
Efraim Flashner
67e5b56960
gnu: polkit-duktape: Fix cross-compiling.
...
* gnu/packages/polkit.scm (polkit-duktape)[arguments]: When
cross-compiling also search native-inputs for inputs.
2022-09-06 18:44:53 +03:00
Efraim Flashner
e7532d281b
gnu: isc-dhcp: Fix cross-compiling to riscv64-linux.
...
* gnu/packages/admin.scm (isc-dhcp)[arugments]: Split custom
'update-config-scripts phase to substitute one set of config scripts
earlier in the build process.
2022-09-06 18:44:53 +03:00
Efraim Flashner
c7032683a5
gnu: kwayland: Skip another test.
...
* gnu/packages/kde-frameworks.scm (kwayland)[arguments]: Add a phase to
skip a test which fails on slower hardware.
2022-09-06 18:43:11 +03:00
Greg Hogan
be810d414f
gnu: orange: Fix QT_PLUGIN_PATH.
...
* gnu/packages/orange.scm (orange)[arguments]: Fix QT_PLUGIN_PATH.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-06 16:58:13 +02:00
Greg Hogan
d675a28c02
gnu: src: Update to 1.29.
...
* gnu/packages/version-control.scm (src): Update to 1.29.
[inputs]: Add cssc.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-06 16:58:13 +02:00
Greg Hogan
7cee68e341
gnu: git: Update to 2.37.3.
...
* gnu/packages/version-control.scm (git): Update to 2.37.3.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-06 16:58:13 +02:00
Ahriman
4b5198accc
gnu: Add blueprint-compiler.
...
* gnu/packages/gnome.scm (blueprint-compiler): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-06 16:58:12 +02:00
Cairn
0c5e2333ca
gnu: Add pixterm.
...
* gnu/packages/image-viewers.scm (pixterm): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-06 16:58:12 +02:00
Cairn
dddc68350d
gnu: Add go-github-com-disintegration-imaging.
...
* gnu/packages/golang.scm (go-github-com-disintegration-imaging): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-06 16:58:12 +02:00
gyara
7f939d36dc
gnu: Add neovim-packer.
...
* gnu/packages/vim.scm (neovim-packer): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-06 16:58:12 +02:00
Ludovic Courtès
8c5065c6d1
services: nginx: Add 'shepherd-requirement' configuration field.
...
* gnu/services/web.scm (<nginx-configuration>)[shepherd-requirement]:
New field.
(nginx-shepherd-service): Honor it.
* doc/guix.texi (Web Services): Document it.
2022-09-06 16:58:12 +02:00
Ludovic Courtès
61b63e7fa7
import: gnome: Do not require even minor for two-number version strings.
...
That way, "guix refresh gnome-keyring" will properly return "42.1"
instead of "42.0".
Reported by Maxim Cournoyer.
* guix/import/gnome.scm (latest-gnome-release)[even-minor-version?]:
Tweak for GNOME applications.
2022-09-06 16:58:12 +02:00
Leo Famulari
0f2776399e
gnu: Remove linux-libre 5.18.
...
* gnu/packages/linux.scm (linux-libre-5.18-version,
linux-libre-5.18-gnu-revision, deblob-scripts-5.18,
linux-libre-5.18-pristine-source, linux-libre-5.18-source,
linux-libre-headers-5.18, linux-libre-5.18): Remove variables.
* gnu/packages/aux-files/linux-libre/5.18-arm.conf,
gnu/packages/aux-files/linux-libre/5.18-arm64.conf,
gnu/packages/aux-files/linux-libre/5.18-i686.conf,
gnu/packages/aux-files/linux-libre/5.18-x86_64.conf: Delete files.
* Makefile.am (AUX_FILES): Remove them.
2022-09-06 08:58:13 -04:00
Leo Famulari
454027dfaa
gnu: linux-libre 4.9: Update to 4.9.237.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.237.
(linux-libre-4.9-pristine-source): Update hash.
2022-09-06 08:58:13 -04:00
Leo Famulari
588ba7f98f
gnu: linux-libre 4.14: Update to 4.14.292.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.292.
(linux-libre-4.14-pristine-source): Update hash.
2022-09-06 08:58:13 -04:00
Leo Famulari
d6eaefa6b5
gnu: linux-libre 4.19: Update to 4.19.257.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.257.
(linux-libre-4.19-pristine-source): Update hash.
2022-09-06 08:58:13 -04:00
Leo Famulari
c07cc55163
gnu: linux-libre 5.4: Update to 5.4.212.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.212.
(linux-libre-5.4-pristine-source): Update hash.
2022-09-06 08:58:13 -04:00
Leo Famulari
1a509f74bf
gnu: linux-libre 5.10: Update to 5.10.141.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.141.
(linux-libre-5.10-pristine-source): Update hash.
2022-09-06 08:58:12 -04:00
Leo Famulari
af1a34dc9f
gnu: linux-libre 5.15: Update to 5.15.65.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.65.
(linux-libre-5.15-pristine-source): Update hash.
2022-09-06 08:58:12 -04:00
Leo Famulari
6cab3bdb9a
gnu: linux-libre 5.19: Update to 5.19.7.
...
* gnu/packages/linux.scm (linux-libre-5.19-version): Update to 5.19.7.
(linux-libre-5.19-pristine-source): Update hash.
2022-09-06 08:58:12 -04:00
Nicolas Goaziou
7ae51b741a
gnu: giac: Update to 1.9.0-21.
...
* gnu/packages/algebra.scm (giac): Update to 1.9.0-21.
2022-09-06 13:47:49 +02:00
Nicolas Goaziou
934b772602
gnu: emacs-json-reformat: Update to 0.0.7.
...
* gnu/packages/emacs-xyz.scm (emacs-json-reformat): Update to 0.0.7.
[arguments]<#:phases>: Disable a failing test.
2022-09-06 13:47:48 +02:00
Nicolas Goaziou
48e4275a91
gnu: emacs-geiser-guile: Update to 0.26.1.
...
* gnu/packages/emacs-xyz.scm (emacs-geiser-guile): Update to 0.26.1.
[source]<#:origin>: Remove ".git" suffix from URL.
2022-09-06 13:47:20 +02:00
Nicolas Goaziou
2db9a14514
gnu: emacs-geiser: Update to 0.26.1.
...
* gnu/packages/emacs-xyz.scm (emacs-geiser): Update to 0.26.1.
2022-09-06 13:46:28 +02:00
Masaya Tojo
26ac47d96b
gnu: Add emacs-ox-rss.
...
* gnu/packages/emacs-xyz.scm (emacs-ox-rss): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-06 13:46:27 +02:00
Efraim Flashner
dac4fd03cf
gnu: libressl: Fix cross compiling.
...
* gnu/packages/tls.scm (libressl)[arguments]: Don't use deprecated
%output symbol.
2022-09-06 12:20:46 +03:00
André A. Gomes
cb1d948635
gnu: cl-webkit: Update to 3.5.4.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-webkit): Update to 3.5.4.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-06 10:18:26 +02:00
Efraim Flashner
b04541869a
gnu: yt-dlp: Update to 2022.09.01.
...
* gnu/packages/video.scm (yt-dlp): Update to 2022.09.01.
2022-09-06 09:12:15 +03:00
Efraim Flashner
3fbe449bd7
gnu: ffmpeg-5: Update to 5.1.1.
...
* gnu/packages/video.scm (ffmpeg-5): Update to 5.1.1.
2022-09-06 09:12:12 +03:00
Efraim Flashner
9fa3e90789
gnu: r-edger: Update to 3.38.4.
...
* gnu/packages/bioconductor.scm (r-edger): Update to 3.38.4.
[propagated-inputs]: Remove r-statmod.
2022-09-06 08:42:20 +03:00
Leo Famulari
dc9a0bb8b2
news: Add entry about the update of the 'linux-libre' package.
...
* etc/news.scm: Add entry.
2022-09-05 23:26:00 -04:00
Leo Famulari
c188cf57f1
gnu: linux-libre: Update to 5.19.6.
...
* gnu/packages/linux.scm (linux-libre-version, linux-libre-gnu-revision,
linux-libre-pristine-source, linux-libre-source, linux-libre,
linux-libre-with-bpf): Use linux-libre 5.19.
2022-09-05 22:21:25 -04:00
Efraim Flashner
9626ca8126
gnu: r-genomicalignments: Update to 1.32.1.
...
* gnu/packages/bioconductor.scm (r-genomicalignments): Update to 1.32.1.
2022-09-05 22:58:12 +03:00
Nicolas Goaziou
6bded418a5
gnu: emacs-autothemer: Update to 0.2.14.
...
* gnu/packages/emacs-xyz.scm (emacs-autothemer): Update to 0.2.14.
2022-09-05 21:52:23 +02:00
David Thompson
c4504dfb1d
Revert "gnu: gitolite: Switch to git-minimal to reduce closure size."
...
This reverts commit e4ccfcb22a .
2022-09-05 14:00:30 -04:00
Efraim Flashner
7f8ee9e0be
gnu: sbcl-bordeaux-threads: Adjust threaded tests timeout.
...
* gnu/packages/lisp-xyz.scm (sbcl-bordeaux-threads)[arguments]: Add
phase to slightly lengthen sleep in threaded tests.
2022-09-04 10:02:40 +03:00
Efraim Flashner
37e6965e89
gnu: ffmpeg: Build with -fPIC for riscv64-linux.
...
* gnu/packages/video.scm (ffmpeg)[arguments]: Adjust configure-flags to
add '-fPIC' to CFLAGS when building for riscv64-linux.
2022-09-04 09:18:50 +03:00
Tobias Geerinckx-Rice
ca94157380
gnu: mcelog: Use G-expressions.
...
* gnu/packages/linux.scm (mcelog)[arguments]:
Rewrite as G-expressions.
2022-09-04 02:00:01 +02:00
Tobias Geerinckx-Rice
3aebdc8f37
gnu: mcelog: Update to 188.
...
* gnu/packages/linux.scm (mcelog): Update to 188.
2022-09-04 02:00:01 +02:00
Tobias Geerinckx-Rice
4078dcad56
gnu: gparted: Update to 1.4.0.
...
* gnu/packages/disk.scm (gparted): Update to 1.4.0.
2022-09-04 02:00:01 +02:00
Tobias Geerinckx-Rice
3523e8e975
gnu: chrony: Update to 4.3.
...
* gnu/packages/ntp.scm (chrony): Update to 4.3.
2022-09-04 02:00:01 +02:00
Tobias Geerinckx-Rice
26c2a8a327
gnu: Add exult.
...
* gnu/packages/games.scm (exult): New public variable.
2022-09-04 02:00:01 +02:00
Tobias Geerinckx-Rice
210dc1a15f
gnu: cpupower: Modernise.
...
* gnu/packages/linux.scm (cpupower)[arguments]: Rewrite as G-expressions.
[native-inputs]: Remove input label.
2022-09-04 02:00:01 +02:00
Tobias Geerinckx-Rice
13da331fa4
gnu: webkitgtk: Increase the CI time-out period.
...
* gnu/packages/webkit.scm (webkitgtk)[properties]:
Increase the TIMEOUT to 40 hours.
2022-09-04 02:00:01 +02:00
Jack Hill
ec16f88522
linux-boot: Resume from hibernation after pre-boot.
...
* gnu/build/linux-boot.scm (boot-system): Call resume-if-hibernated
after pre-mount.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-09-04 02:00:00 +02:00
Foo Chuan Wei
0f88acb9fa
gnu: Add cl-binascii.
...
* gnu/packages/lisp-xyz.scm (cl-binascii, sbcl-binascii): New variables.
Co-authored-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-05 14:09:04 +02:00
Andrew Tropin
a278f632de
doc: Add more info about commits signature local verification.
...
* doc/contributing.texi (Commit Access): Add more info about commits signature
local verification.
2022-09-05 14:55:49 +03:00
Guillaume Le Vaillant
0898fd56c9
gnu: cl-yason: Update to 0.8.4.
...
* gnu/packages/lisp-xyz.scm (sbcl-yason): Update to 0.8.4.
2022-09-05 11:40:25 +02:00
jgart
8e85920cb7
gnu: Add cl-data-lens.
...
* gnu/packages/lisp-xyz.scm (cl-data-lens, ecl-data-lens, sbcl-data-lens): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-05 10:59:22 +02:00
Lars-Dominik Braun
2ac73debfb
gnu: Add r-mumin.
...
* gnu/packages/statistics.scm (r-mumin): New variable.
2022-09-05 09:53:33 +02:00
Lars-Dominik Braun
c01b5a2abb
gnu: Add r-reghelper.
...
* gnu/packages/statistics.scm (r-reghelper): New variable.
2022-09-05 09:53:19 +02:00
Andrew Tropin
31b4eea5c0
.dir-locals.el: Add .go to completion-ignored-extensions.
...
* .dir-locals.el (eval): Add .go to completion-ignored-extensions.
2022-09-05 09:13:48 +03:00
Andrew Tropin
956a79b9b2
.dir-locals.el: Add guix yasnippets.
...
* .dir-locals.el (eval): Add guix yasnippets.
2022-09-05 09:10:05 +03:00
Ricardo Wurmus
d22a5c1851
gnu: rust-crossbeam-queue-0.3: Do not skip build.
...
* gnu/packages/crates-io.scm (rust-crossbeam-queue-0.3)[arguments]: Do not
skip build.
2022-09-05 00:12:51 +02:00
Ricardo Wurmus
af39bd88a2
gnu: rust-once-cell-1: Update to 1.13.0.
...
* gnu/packages/crates-io.scm (rust-once-cell-1): Update to 1.13.0.
[arguments]: Replace rust-parking-lot with rust-parking-lot-core; upgrade
rust-crossbeam-utils.
2022-09-05 00:12:50 +02:00
Ricardo Wurmus
bc248300c0
gnu: rust-tracing-0.1: Update to 0.1.36.
...
* gnu/packages/crates-io.scm (rust-tracing-0.1): Update to 0.1.36.
2022-09-05 00:12:50 +02:00
Ricardo Wurmus
613c09941e
gnu: rust-tracing-attributes-0.1: Update to 0.1.22.
...
* gnu/packages/crates-io.scm (rust-tracing-attributes-0.1): Update to 0.1.22.
[arguments]: Update rust-tokio-test; replace rust-tracing-futures with
rust-tracing-subscriber.
2022-09-05 00:12:50 +02:00
Ricardo Wurmus
86f37ac367
gnu: rust-tracing-core-0.1: Update to 0.1.29.
...
* gnu/packages/crates-io.scm (rust-tracing-core-0.1): Update to 0.1.29.
[arguments]: Remove rust-lazy-static; add rust-once-cell and rust-valuable.
2022-09-05 00:12:50 +02:00
Ricardo Wurmus
9f4acd606a
gnu: Add rust-valuable-0.1.
...
* gnu/packages/crates-io.scm (rust-valuable-0.1): New variable.
2022-09-05 00:12:50 +02:00
Ricardo Wurmus
1aa0e7bbf2
gnu: Add rust-valuable-derive-0.1.
...
* gnu/packages/crates-io.scm (rust-valuable-derive-0.1): New variable.
2022-09-05 00:12:49 +02:00
Ricardo Wurmus
24cae279a9
gnu: rust-crossbeam-utils-0.8: Update to 0.8.11.
...
* gnu/packages/crates-io.scm (rust-crossbeam-utils-0.8): Update to 0.8.11.
[arguments]: Remove rust-autocfg and rust-lazy-static; add rust-loom-0.5 and
rust-once-cell-1; Remove rust-rand from development inputs.
2022-09-05 00:12:49 +02:00
Ricardo Wurmus
80d08f023c
gnu: rust-async-trait-0.1: Update to 0.1.57.
...
* gnu/packages/crates-io.scm (rust-async-trait-0.1): Update to 0.1.57.
2022-09-05 00:12:49 +02:00
Ricardo Wurmus
1a69cdd800
gnu: Add rust-loom-0.5.
...
* gnu/packages/crates-io.scm (rust-loom-0.5): New variable.
2022-09-05 00:12:49 +02:00
Ricardo Wurmus
90309a79ce
gnu: rust-syn-1: Update to 1.0.99.
...
* gnu/packages/crates-io.scm (rust-syn-1): Update to 1.0.99.
[arguments]: Replace rust-unicode-xid with rust-unicode-ident.
2022-09-05 00:12:49 +02:00
Ricardo Wurmus
2d9c00e978
gnu: rust-proc-macro2-1: Update to 1.0.43.
...
* gnu/packages/crates-io.scm (rust-proc-macro2-1): Update to 1.0.43.
[arguments]: Replace rust-unicode-xid with rust-unicode-ident.
[inputs]: Remove rust-unicode-xid.
[home-page]: Update to new home.
2022-09-05 00:12:49 +02:00
Ricardo Wurmus
7c866c3920
gnu: Add rust-unicode-ident-1.
...
* gnu/packages/crates-io.scm (rust-unicode-ident-1): New variable.
2022-09-05 00:12:49 +02:00
Ricardo Wurmus
7533124d69
gnu: rust-log-0.4: Update to 0.4.17.
...
* gnu/packages/crates-io.scm (rust-log-0.4): Update to 0.4.17.
[arguments]: Add rust-rustversion-1 to development inputs.
2022-09-05 00:12:48 +02:00
Ricardo Wurmus
4272e0603e
gnu: rust-value-bag-1: Update to 1.0.0-alpha.9.
...
* gnu/packages/crates-io.scm (rust-value-bag-1): Update to 1.0.0-alpha.9.
[arguments]: Add rust-version-check-0.9 to cargo-inputs.
2022-09-05 00:12:48 +02:00
Ricardo Wurmus
1c82e51658
gnu: rust-pin-project-lite-0.2: Update to 0.2.9.
...
* gnu/packages/crates-io.scm (rust-pin-project-lite-0.2): Update to 0.2.9.
[source]: Add a snippet to record macrotest in Cargo.toml.
2022-09-05 00:12:48 +02:00
Ricardo Wurmus
3423ad9d3b
gnu: Add rust-generator-0.7.
...
* gnu/packages/crates-io.scm (rust-generator-0.7): New variable.
2022-09-05 00:12:48 +02:00
Ricardo Wurmus
bf11b7214f
gnu: Add rust-windows-0.32.
...
* gnu/packages/crates-io.scm (rust-windows-0.32): New variable.
2022-09-05 00:12:48 +02:00
Ricardo Wurmus
3b3ce44ee9
gnu: Add rust-windows-implement-0.32.
...
* gnu/packages/crates-io.scm (rust-windows-implement-0.32): New variable.
2022-09-05 00:12:47 +02:00
Ricardo Wurmus
a14f755e09
gnu: Add rust-windows-tokens-0.32.
...
* gnu/packages/crates-io.scm (rust-windows-tokens-0.32): New variable.
2022-09-05 00:12:47 +02:00
Ricardo Wurmus
541db40c35
gnu: Add rust-windows-aarch64-msvc-0.32.
...
* gnu/packages/crates-io.scm (rust-windows-aarch64-msvc-0.32): New variable.
2022-09-05 00:12:47 +02:00
Ricardo Wurmus
3cade2e0bb
gnu: Add rust-windows-i686-gnu-0.32.
...
* gnu/packages/crates-io.scm (rust-windows-i686-gnu-0.32): New variable.
2022-09-05 00:12:47 +02:00
Ricardo Wurmus
69dd61fefd
gnu: Add rust-windows-i686-msvc-0.32.
...
* gnu/packages/crates-io.scm (rust-windows-i686-msvc-0.32): New variable.
2022-09-05 00:12:47 +02:00
Ricardo Wurmus
5841b21c4f
gnu: Add rust-windows-x86-64-gnu-0.32.
...
* gnu/packages/crates-io.scm (rust-windows-x86-64-gnu-0.32): New variable.
2022-09-05 00:12:46 +02:00
Ricardo Wurmus
d158034a13
gnu: Add rust-windows-x86-64-msvc-0.32.
...
* gnu/packages/crates-io.scm (rust-windows-x86-64-msvc-0.32): New variable.
2022-09-05 00:12:46 +02:00
Ricardo Wurmus
f454a2781b
gnu: rav1e: Patch Cargo.toml.
...
* gnu/packages/video.scm (rav1e)[source]: Patch Cargo.toml to enable feature
needed to parse the file.
2022-09-05 00:12:46 +02:00
Ricardo Wurmus
7c4546d591
gnu: rust-hashbrown-0.12: Patch Cargo.toml.
...
This is a follow-up to commit d7a4ab2cd50d5398d90117d6afcfccca5a158b9b.
* gnu/packages/crates-io.scm (rust-hashbrown-0.12)[source]: Add snippet to
require the "edition2021" cargo feature to avoid a failure to parse the file.
2022-09-05 00:12:46 +02:00
Ricardo Wurmus
333905ccff
gnu: rust-cargo-0.53: Add missing input.
...
* gnu/packages/crates-io.scm (rust-cargo-0.53)[inputs]: Add libgit2.
2022-09-05 00:12:46 +02:00
Ricardo Wurmus
6a37c4c549
gnu: rust-openssl-0.10: Update to 0.10.41.
...
* gnu/packages/crates-io.scm (rust-openssl-0.10): Update to 0.10.41.
[arguments]: Do not skip build; replace rust-cfg-if-0.1 with rust-cfg-if-1;
remove rust-lazy-static-1 and rust-tempdir-0.3; add rust-once-cell-1 and
rust-openssl-macros-0.1.
[inputs]: Add openssl.
[native-inputs]: Add pkg-config.
[description]: Update.
2022-09-05 00:12:46 +02:00
Ricardo Wurmus
2282fe1d33
gnu: Add rust-openssl-macros-0.1.
...
* gnu/packages/crates-io.scm (rust-openssl-macros-0.1): New variable.
2022-09-05 00:12:45 +02:00
Ricardo Wurmus
90715e9b24
gnu: Add rust-cargo-0.51.
...
* gnu/packages/crates-io.scm (rust-cargo-0.51): New variable.
2022-09-05 00:12:45 +02:00
Ricardo Wurmus
074c19c11c
gnu: Add rust-crates-io-0.31.
...
* gnu/packages/crates-io.scm (rust-crates-io-0.31): New variable.
2022-09-05 00:12:45 +02:00
Ricardo Wurmus
6746f2b00d
gnu: Add rust-cbindgen-0.17.
...
* gnu/packages/rust-apps.scm (rust-cbindgen-0.17): New variable.
2022-09-05 00:12:45 +02:00
Ricardo Wurmus
f705831d8f
gnu: rust-bindgen-0.57: Fix build.
...
* gnu/packages/crates-io.scm (rust-bindgen-0.57)[arguments]: Do not skip
build; disable tests; add development inputs rust-clap-2, rust-diff-0.1, and
rust-shlex-0.1.
[inputs]: Add clang.
2022-09-05 00:12:45 +02:00
Ricardo Wurmus
f243233e8d
gnu: Add rust-atomic-polyfill-1.
...
* gnu/packages/crates-io.scm (rust-atomic-polyfill-1): New variable.
2022-09-05 00:12:44 +02:00
Ricardo Wurmus
cbcf87c01f
gnu: Add rust-critical-section-1.
...
* gnu/packages/crates-io.scm (rust-critical-section-1): New variable.
2022-09-05 00:12:44 +02:00
Ricardo Wurmus
b248d77f87
gnu: Add rust-parking-lot-core-0.9.
...
* gnu/packages/crates-io.scm (rust-parking-lot-core-0.9): New variable.
2022-09-05 00:12:44 +02:00
Ricardo Wurmus
4e8ec28e3b
gnu: rust-backtrace-0.3: Update to 0.3.66.
...
* gnu/packages/crates-io.scm (rust-backtrace-0.3): Update to 0.3.66.
[arguments]: Replace rust-addr2line-0.14 with rust-addr2line-0.17,
rust-miniz-oxide-0.4 with rust-miniz-oxide-0.5, and rust-object-0.23 with
rust-object-0.29; add rust-libloading-0.7 and rust-cc-1; remove
rust-backtrace-sys-0.1.
2022-09-05 00:12:44 +02:00
Ricardo Wurmus
0c0fd17f09
gnu: Add rust-addr2line-0.17.
...
* gnu/packages/crates-io.scm (rust-addr2line-0.17): New variable.
2022-09-05 00:12:44 +02:00
Ricardo Wurmus
511f173374
gnu: Add rust-findshlibs-0.10.
...
* gnu/packages/crates-io.scm (rust-findshlibs-0.10): New variable.
2022-09-05 00:12:44 +02:00
Ricardo Wurmus
a60229fa0f
gnu: rust-gimli-0.23: Inherit from rust-gimli-0.26.
...
* gnu/packages/crates-io.scm (rust-gimli-0.23)[inherit]: New field.
[build-system, home-page, synopsis, description, license]: Inherit.
2022-09-05 00:12:43 +02:00
Ricardo Wurmus
a9dcb2ead7
gnu: Add rust-gimli-0.26.
...
* gnu/packages/crates-io.scm (rust-gimli-0.26): New variable.
2022-09-05 00:12:43 +02:00
Ricardo Wurmus
810291e479
gnu: rust-memmap2-0.5: Update to 0.5.5.
...
* gnu/packages/crates-io.scm (rust-memmap2-0.5): Update to 0.5.5.
[arguments]: Do not skip build. Add rust-owning-ref-0.4 and rust-tempfile-3
to inputs.
2022-09-05 00:12:43 +02:00
Ricardo Wurmus
c505de52d4
gnu: Add rust-pyo3-0.13.
...
* gnu/packages/crates-io.scm (rust-pyo3-0.13): New variable.
2022-09-05 00:12:43 +02:00
Ricardo Wurmus
fd866c44e7
gnu: Add rust-pyo3-macros-0.13.
...
* gnu/packages/crates-io.scm (rust-pyo3-macros-0.13): New variable.
2022-09-05 00:12:42 +02:00
Ricardo Wurmus
4dc07de53e
gnu: Add rust-pyo3-macros-backend-0.13.
...
* gnu/packages/crates-io.scm (rust-pyo3-macros-backend-0.13): New variable.
2022-09-05 00:12:42 +02:00
Ricardo Wurmus
8fcdfa498d
gnu: Add rust-object-0.27.
...
* gnu/packages/crates-io.scm (rust-object-0.27): New variable.
2022-09-05 00:12:42 +02:00
Ricardo Wurmus
1b42e42c7a
gnu: rust-object-0.28: Inherit from rust-object-0.29.
...
* gnu/packages/crates-io.scm (rust-object-0.28)[inherit]: New field.
[build-system, home-page, synopsis, description, license]: Inherit.
2022-09-05 00:12:42 +02:00
Ricardo Wurmus
706d1749a3
gnu: Add rust-object-0.29.
...
* gnu/packages/crates-io.scm (rust-object-0.29): New variable.
2022-09-05 00:12:42 +02:00
Ricardo Wurmus
cce608d256
gnu: rust-scroll-0.10: Update to 0.10.2.
...
* gnu/packages/crates-io.scm (rust-scroll-0.10): Update to 0.10.2.
[arguments]: Do not skip build; add cargo development inputs rust-byteorder-1
and rust-rayon-1.
2022-09-05 00:12:42 +02:00
Ricardo Wurmus
02cbb76392
gnu: Add rust-hashbrown-0.12.
...
* gnu/packages/crates-io.scm (rust-hashbrown-0.12): New variable.
2022-09-05 00:12:41 +02:00
Ricardo Wurmus
aeac28750f
gnu: rust-slog-term-2: Update to 2.9.0.
...
* gnu/packages/crates-io.scm (rust-slog-term-2): Update to 2.9.0.
[arguments]: Remove rust-chrono-0.4; replace rust-term-0.6 with rust-term-0.7;
add rust-time-0.3.
2022-09-05 00:12:41 +02:00
Ricardo Wurmus
ba64ea8320
gnu: rust-slog-2: Update to 2.7.0.
...
* gnu/packages/crates-io.scm (rust-slog-2): Update to 2.7.0.
2022-09-05 00:12:41 +02:00
Ricardo Wurmus
667633100e
gnu: Add rust-statrs-0.15.
...
* gnu/packages/crates-io.scm (rust-statrs-0.15): New variable.
2022-09-05 00:12:41 +02:00
Ricardo Wurmus
9e703abe2c
gnu: Add rust-nalgebra-0.27.
...
* gnu/packages/crates-io.scm (rust-nalgebra-0.27): New variable.
2022-09-05 00:12:41 +02:00
Ricardo Wurmus
acd0fed555
gnu: rust-num-traits-0.2: Update to 0.2.15.
...
* gnu/packages/crates-io.scm (rust-num-traits-0.2): Update to 0.2.15.
2022-09-05 00:12:40 +02:00
Ricardo Wurmus
20db81fb97
gnu: Add rust-bio-0.39.
...
* gnu/packages/crates-io.scm (rust-bio-0.39): New variable.
2022-09-05 00:12:40 +02:00
Ricardo Wurmus
e876e1b932
gnu: rust-bio-types-0.12: Update to 0.12.1.
...
* gnu/packages/crates-io.scm (rust-bio-types-0.12): Update to 0.12.1.
[arguments]: Replace rust-petgraph-0.5 with rust-petgraph-0.6, and replace
rust-strum-macros-0.20 with rust-strum-macros-0.21.
2022-09-05 00:12:40 +02:00
Ricardo Wurmus
2d0f081f2d
gnu: rust-openssl-sys-0.9: Update to 0.9.75.
...
* gnu/packages/crates-io.scm (rust-openssl-sys-0.9): Update to 0.9.75.
[arguments]: Add rust-bindgen-0.59.
* gnu/packages/patches/rust-openssl-sys-no-vendor.patch: Adjust.
2022-09-05 00:12:40 +02:00
Ricardo Wurmus
94616c3661
gnu: rust-curl-sys-0.4: Update to 0.4.44+curl-7.77.0.
...
* gnu/packages/crates-io.scm (rust-curl-sys-0.4): Update to 0.4.44+curl-7.77.0.
2022-09-05 00:12:39 +02:00
Ricardo Wurmus
6c0d7ee95f
gnu: rust-threadpool-1: Update to 1.8.0.
...
* gnu/packages/crates-io.scm (rust-threadpool-1): Update to 1.8.0.
2022-09-05 00:12:39 +02:00
Ricardo Wurmus
20a55a50c7
gnu: rust-itertools-0.10: Update to 0.10.1.
...
* gnu/packages/crates-io.scm (rust-itertools-0.10): Update to 0.10.1.
[arguments]: Do not skip build; add rust-criterion-0.3, rust-paste-1,
rust-permutohedron-0.2, rust-quickcheck-0.9, and rust-rand-0.7 to development
inputs.
2022-09-05 00:12:39 +02:00
Ricardo Wurmus
624551b138
gnu: rust-flate2-1: Update to 1.0.23.
...
* gnu/packages/crates-io.scm (rust-flate2-1): Update to 1.0.23.
[arguments]: Replace rust-miniz-oxide-0.4 withrust-miniz-oxide-0.5; replace
rust-quickcheck-0.9 with rust-quickcheck-1.
2022-09-05 00:12:39 +02:00
Ricardo Wurmus
c786b640e6
gnu: rust-csv-1: Update to 1.1.6.
...
* gnu/packages/crates-io.scm (rust-csv-1): Update to 1.1.6.
2022-09-05 00:12:34 +02:00
Jessica Tallon
aae98c2972
gnu: Add wmamixer.
...
* gnu/packages/gnustep.scm (wmamixer): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:17:14 +02:00
Wiktor Żelazny
9c5a952818
gnu: texlive-caption: Fix description.
...
* gnu/packages/tex.scm (texlive-caption): Update description.
[description]: newfloat.sty and totalcount.sty are not in the package.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:52 +02:00
Wiktor Żelazny
e879111c09
gnu: Add texlive-latex-hyphenat.
...
* gnu/packages/tex.scm (texlive-latex-hyphenat): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:13 +02:00
Maxime Devos
4bbad495a7
gnu: hashcat: Fix cross-compilation.
...
* gnu/packages/password-utils.scm
(hashcat)[native-inputs]: Move to ...
(hashcat)[inputs]: ... here.
(hashcat)[arguments]<#:make-flags>: Set AR and CC.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:13 +02:00
Maxime Devos
aed1c2f794
gnu: hashcat: Rewrite with G-exps.
...
This is required for cross-compilation, as %output does not exist when
cross-compiling.
* gnu/packages/password-utils.scm (hashcat)[arguments]: Rewrite with G-exps.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:13 +02:00
Maxime Devos
99afc7d65b
gnu: hashcat: Unbundle everything but LZMA-SDK.
...
There does not appear to be a convenient Guix package for LZMA-SDK yet.
I currently have a bit of a dirty working tree (fiddling with imports), so the
use-modules is in the wrong place. Also, a small rebase conflict, the version
and source hash of hashcat has been updated.
* gnu/packages/password-utils.scm (hashcat)[source]{snippet}: Delete
everything from deps except for deps/LZMA-SDK.
(hashcat)[inputs]: Add minizip, xxhash and zlib.
(hashcat)[arguments]<#:make-flags>: Add USE_SYSTEM_ZLIB, USE_SYSTEM_OPENCL and
USE_SYSTEM_XXHASH.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:13 +02:00
Maxime Devos
3c48ef60ad
gnu: hashcat: Don't embed timestamp, fixing reproducibility.
...
* gnu/packages/password-utils.scm (hashcat)[arguments]{#:phases}:
Remove timestamp, fixing reproducibility.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:13 +02:00
Philip McGrath
ed24d6b46c
gnu: racket: Use Racket CS on all systems.
...
This patch uses the 'pbarch' support added to 'racket-vm-cs' to make it
the default Racket VM implementation on all systems.
* gnu/packages/racket.scm (racket-vm-for-system): Remove.
(racket-minimal, racket)[inputs]: Replace '(racket-vm-for-system)' with
'racket-vm-cs'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:12 +02:00
Philip McGrath
64a27e1678
gnu: racket-vm-bc: Add workaround for ppc64le.
...
This is an attempt to avoid a problem with Racket BC on ppc64 reported
in <https://issues.guix.gnu.org/57050#19 > that was exposed by attempting
to use Racket BC to bootstrap Chez Scheme. Thanks to Matthew Flatt for
the workaround: <https://racket.discourse.group/t/950/30 >.
* gnu/packages/racket.scm (racket-vm-bc)[arguments]<#:configure-flags>:
Increase the number of bytes that should be available on the stack for
"safety" when checking for stack overflow.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:12 +02:00
Philip McGrath
a15d72f8e1
gnu: chez-scheme-for-racket: Support all systems.
...
On systems for which Racket's variant of Chez Scheme cannot generate
native code, it can use a 'pbarch' machine type: a variant of the
``portable bytecode'' backend specialized to word size and endianness.
This allows Racket CS to replace Racket BC on those systems while
maintaining comparable performance. (Racket BC lacks JIT support for
those systems anyway.) It also lets us provide a Chez Scheme package on
all systems Guix supports.
This patch adds 'pbarch' support to both 'chez-scheme-for-racket' and
'racket-vm-cs', but it does not change the Racket VM implementation used
for the 'racket' and 'racket-minimal' packages.
* gnu/packages/chez.scm (nix-system->pbarch-machine-type): New variable.
(chez-scheme-for-racket)[inputs]: Use 'libffi' for non-native systems.
[arguments]<#:configure-flags>: Always supply '-m='. Add applicable
flags for non-native systems.
[supported-systems]: Use '%supported-systems'.
[description]: Update.
(chez-scheme-for-racket-bootstrap-bootfiles)[arguments]<#:phases>: Adapt
'build' phase for non-native systems.
* gnu/packages/racket.scm (racket-vm-bc)[description]: Update.
(racket-vm-cs)[description]: Likewise.
[inputs]: Use 'libffi' for non-native systems.
[arguments]<#:configure-flags>: Add applicable flags for non-native
systems.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:12 +02:00
Philip McGrath
cb0d106590
gnu: racket: Support cross-compiling the VM packages.
...
Cross-compilation works for 'racket-vm-cgc', 'racket-vm-bc', and
'racket-vm-cs'. These changes are not enough to cross-compile
'racket-minimal' or 'racket': that would require building and loading
cross-compilation pluggins for 'racket-vm-cs', which will be much
easier once we can build the package 'raco-cross'.
* gnu/packages/racket.scm (racket-vm-cgc): Add 'this-package' when
cross-compiling.
(racket-vm-bc)[native-inputs]: Adjust accordingly.
(racket-vm-cs)[native-inputs]: Use 'racket-vm-cs' instead of
'racket-vm-bc' when cross-compiling. Adapt to changes to
'racket-vm-cgc'.
[arguments]<#:configure-flags>: Fix '--enable-scheme' for
cross-compilation.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:12 +02:00
Philip McGrath
9ed6e51ceb
gnu: chez-scheme-for-racket: Support cross-compilation.
...
* gnu/packages/chez.scm (racket-cs-native-supported-system): Change to
return the applicable machine type instead of '#t'.
(chez-scheme-for-racket)[native-inputs]: When cross-compiling, add
'this-package'.
[arguments]<#:configure-flags>: When cross-compiling, supply '-m=' and
'--toolprefix='.
<#:phases>: Work around cross-compilation issues in 'build' and
'install-docs'.
(chez-scheme-for-racket-bootstrap-bootfiles): When cross-compiling,
use 'zuo' and 'chez-scheme-for-racket' instead of 'racket-vm-bc'.
[arguments]<#:phases>: Adapt 'build' phase for cross-compilation.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:12 +02:00
Philip McGrath
47da722838
gnu: chez-scheme: Make bootfiles regular inputs.
...
* gnu/packages/chez.scm (chez-scheme)[native-inputs]: Move
'chez-scheme-bootstrap-bootfiles' to ...
[inputs]: ... this field.
[arguments]<#:phases>: Update 'unpack-bootfiles' accordingly.
(chez-scheme-for-racket)[native-inputs]: Move
'chez-scheme-for-racket-bootstrap-bootfiles' to ...
[inputs]: ... this field.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:12 +02:00
Philip McGrath
9647296ce6
gnu: racket: Update to 8.6.
...
Also, update 'chez-scheme-for-racket' to 9.5.9.2.
* gnu/packages/patches/racket-chez-scheme-bin-sh.patch: Refresh patch.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/racket.scm (%racket-origin)[patches]: Use them and the
patches for Zuo.
(%racket-version): Update to 8.6.
(zuo)[version]: Refer to '%racket-version'.
[origin]: Use '%racket-origin'.
(racket-vm-cgc)[native-inputs]: Add 'zuo'.
[arguments]<#:make-flags>: Use 'zuo' from 'native-inputs'.
(racket)[inputs]<data, db, deinprogramm, draw, drracket, errortrace,
gui, htdp, math, option-contract, parser-tools, pict, rackunit, realm,
redex, scribble, typed-racket, string-constants, swindle, syntax-color,
web-server>: Update checksums.
* gnu/packages/chez.scm (target-chez-os): Handle Hurd and QNX.
(%chez-features-table): Likewise.
(chez-scheme-for-racket): Update to 9.5.9.2.
[native-inputs]: Add 'zuo'.
[arguments]<#:out-of-source?>: Use out-of-source build.
<#:tests?>: Skip them due to ongoing problems.
<#:configure-flags>: Add '--install-csug=' and '--installreleasenotes='.
<#:make-flags>: Use 'zuo' from 'native-inputs'. Supply 'STEXLIB=' here,
rather than in a phase.
<#:phases>: Replace 'install-docs' using new 'make' target.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:11 +02:00
Philip McGrath
07a8440f50
gnu: Add Zuo.
...
* gnu/packages/patches/racket-backport-8.6-zuo.patch,
gnu/packages/patches/racket-zuo-bin-sh.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/racket.scm (%zuo-version): New variable.
(zuo): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:11 +02:00
Philip McGrath
5142fba364
gnu: chez-scheme: Fix use of "/bin/sh".
...
The unsuccessful attempt to execute "/bin/sh" by Chez Scheme's 'process'
function seems to have caused parts of the Chez Scheme test suite to
have been silently skipped. The issue was exposed by the upcoming
changes to Racket's build system.
* gnu/packages/patches/chez-scheme-bin-sh.patch,
gnu/packages/patches/racket-chez-scheme-bin-sh.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/racket.scm (%racket-origin)[patches]: Update accordingly.
* gnu/packages/chez.scm (chez-scheme)[origin]<patches>: Likewise.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:11 +02:00
Philip McGrath
911768b6d5
gnu: racket: Adjust patch for "/bin/sh" in rktio.
...
Use '_PATH_BSHELL' instead of a custom preprocessor macro. This may not
be The Right Thing in the long term, but it at least avoids a
proliferation of 'CPPFLAGS'.
* gnu/packages/patches/racket-minimal-sh-via-rktio.patch: Rename to ...
* gnu/packages/patches/racket-rktio-bin-sh.patch: ... this, and change
to use '_PATH_BSHELL'.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
* gnu/packages/racket.scm (%racket-origin)[patches]: Likewise.
(racket-vm-common-configure-flags): Stop setting 'CPPFLAGS'. Change to a
constant instead of a function, since we no longer need the delay.
(racket-vm-cgc, racket-vm-bc,
racket-vm-cs)[arguments]<#:configure-flags>: Update accordingly.
[inputs]: Remove 'bash-minimal'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:11 +02:00
Philip McGrath
b8a6f6b40d
etc: teams: Add entry for Philip McGrath.
...
* etc/teams.scm.in ("Philip McGrath"): New member.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:11 +02:00
Philip McGrath
59b0cc6866
etc: teams: Add racket team.
...
* etc/teams.scm.in (racket): New team.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:11 +02:00
Philip McGrath
4176d47ef7
gnu: stex: Fix read-only gifs and math directories.
...
Excplicitly set the user write bit when initializing the gifs or math
directories from the skeletons installed in the store. See also upstream
discussion at <https://github.com/dybvig/stex/pull/6 >. This problem
would be exposed by the upcoming changes to Racket's build system.
* gnu/packages/patches/stex-copy-from-immutable-store.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/chez.scm (stex-bootstrap)[patches]: Use it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:10 +02:00
Philip McGrath
92e8cff749
gnu: stex: Update to 1.2.2-2.afa6075.
...
* gnu/packages/chez.scm (stex-bootstrap): Update to 1.2.2-2.afa6075.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-04 23:10:10 +02:00
Ludovic Courtès
f1bbb06dad
guix system: Do not use 'vm-image.tmpl' in tests.
...
This is a followup to 95a03aa5c5 . Since
that commit, merely evaluating 'vm-image.tmpl' would trigger the build
of 'current-guix' so skip it.
* tests/guix-system.sh: Do not try to build 'vm-image.tmpl'.
2022-09-04 23:10:10 +02:00
Ludovic Courtès
9e59dbcd6c
guix describe: Adjust test to latest changes.
...
This is a followup to 64a070717c .
* tests/guix-describe.sh: Add trailing slash when checking URL.
2022-09-04 23:10:10 +02:00
Ludovic Courtès
7a2acbdc5a
store: Open daemon connections with SOCK_CLOEXEC.
...
Previously, 'guix shell' for example would leak the socket that's
connected to the daemon.
* guix/store.scm (open-unix-domain-socket, open-inet-socket): Pass
SOCK_CLOEXEC to 'socket'.
* tests/guix-shell.sh: Add test.
2022-09-04 23:10:10 +02:00
Ludovic Courtès
2028419e30
store: Remove unused variable and 'socket' call.
...
* guix/store.scm (open-inet-socket): Remove unused 'sock' variable.
2022-09-04 23:10:10 +02:00
Ludovic Courtès
eedf71f948
services: upower: Default to a percentage-based policy.
...
This is the documented default of UPower 0.99.15 (the actual default
appears to be #f though).
* gnu/services/desktop.scm (<upower-configuration>)
[use-percentage-for-policy?]: Default to #t.
* doc/guix.texi (Desktop Services): Adjust accordingly. Explain the
tradeoff.
2022-09-04 23:10:10 +02:00
Ludovic Courtès
4765242540
services: upower: Update default percentage values.
...
These values are those used by default by UPower 0.99.15.
* gnu/services/desktop.scm (<upower-configuration>)[percentage-low]
[percentage-critical]: Increase.
* doc/guix.texi (Desktop Services): Update accordingly.
2022-09-04 23:10:09 +02:00
Nicolas Goaziou
41bce2414a
gnu: scintilla: Update to 5.3.0.
...
* gnu/packages/text-editors.scm (scintilla): Update to 5.3.0.
2022-09-04 20:46:25 +02:00
Nicolas Goaziou
afb7cb4204
gnu: emacs-autothemer: Update to 0.2.12.
...
* gnu/packages/emacs-xyz.scm (emacs-autothemer): Update to 0.2.12.
[description]: Add missing final full stop.
2022-09-04 20:41:46 +02:00
Paul A. Patience
75febb00a5
gnu: f3d: Update to 1.3.0-pre-0.46df21f.
...
* gnu/packages/graphics.scm (f3d): Update to 1.3.0-pre-0.46df21f.
[source](modules, snippet): New fields.
[arguments]<#:configure-flags>: Generate manual page, install various
resource files, and enable the now-optional external rendering feature.
[native-inputs]: New field.
[synopsis]: Add hyphen.
[description]: Reword.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-04 18:29:46 +01:00
Cees de Groot
8ba5075192
gnu: erlang: Update to 25.0.4.
...
* gnu/packages/erlang.scm (erlang): Update to 25.0.4.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-04 18:28:16 +01:00
Cees de Groot
d409da2f88
gnu: elixir: Update to 1.14.0.
...
* gnu/packages/elixir.scm (elixir): Update to 1.14.0.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-04 18:27:00 +01:00
kiasoc5
a5c24b3191
gnu: foot: Update to 1.13.1.
...
* gnu/packages/terminals.scm (foot): Update to 1.13.1.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-04 18:26:04 +01:00
gyara
f9a4923940
gnu: xmobar: Update to 0.44.2.
...
* gnu/packages/wm.scm (xmobar): Update to 0.44.2.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-04 18:25:14 +01:00
jgart
7ef04f00cd
gnu: Add cl-portable-condition-system.
...
* gnu/packages/lisp-xyz.scm (cl-portable-condition-system): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-04 18:23:43 +01:00
Christopher Baines
e40c57ba49
gnu: shotwell: Update to 0.30.16.
...
* gnu/packages/gnome.scm (shotwell): Update to 0.30.16.
2022-09-04 18:21:52 +01:00
Nicolas Goaziou
96f3793b33
gnu: Remove duplicate package.
...
* gnu/packages/emacs-xyz.scm (emacs-inheritenv): Remove duplicate package
introduced in 21f6026574 .
2022-09-04 18:03:46 +02:00
Hendursaga
6199d66f8a
gnu: ding: Update to 1.9.
...
* gnu/packages/dictionaries.scm (ding): Update to 1.9.
[source]: Switch to HTTPS.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-04 17:57:02 +02:00
Michael Rohleder
5807a21e19
gnu: xfce4-notifyd: Update to 0.6.4.
...
* gnu/packages/xfce.scm (xfce4-notifyd): Update to 0.6.4.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-04 17:57:02 +02:00
Michael Rohleder
a2c6125b60
gnu: lesspipe: Update to 2.06.
...
* gnu/packages/less.scm (lesspipe): Update to 2.06.
[arguments]: Fixed typos in comment.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-04 17:57:02 +02:00
Matthew James Kraai
a451a809d5
Fix misspelling of GUIX_DIGITAL_OCEAN_TOKEN.
...
* gnu/machine/digital-ocean.scm (maybe-raise-missing-api-key-error): Fix
misspelling of GUIX_DIGITAL_OCEAN_TOKEN.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-04 17:57:02 +02:00
Nicolas Goaziou
21f6026574
gnu: Add emacs-engrave-faces.
...
* gnu/packages/emacs-xyz.scm (emacs-engrave-faces): New variable.
2022-09-04 17:53:30 +02:00
Artyom V. Poptsov
353d6cbec1
gnu: guile2.2-ics: Update to 0.3.0
...
* gnu/packages/guile-xyz.scm (guile2.2-ics): Update to 0.3.0.
[package-inputs]: Replace "guile-smc" with "guile2.2-smc".
[propagated-inputs]: Use the new style.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-04 17:02:00 +02:00
Artyom V. Poptsov
3cf79710f3
gnu: Add guile2.2-smc
...
* gnu/packages/guile-xyz.scm (guile2.2-smc): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-04 17:01:56 +02:00
Artyom V. Poptsov
ae81cb6962
gnu: guile-ics: Update to 0.3.0.
...
* gnu/packages/guile-xyz.scm (guile-ics): Update to 0.3.0.
[phases]: Remove "strip" phase.
[propagated-inputs]: Add "guile-smc".
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-04 17:01:14 +02:00
Julien Lepiller
77e3042aef
nls: Update translations.
2022-09-04 16:52:02 +02:00
Olivier Dion via Guix-patches via
886306ba63
gnu: opendht: Update to 2.4.10.
...
* gnu/packages/networking.scm (opendht): Update to 2.4.10.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-04 10:18:13 -04:00
David Thompson
e4ccfcb22a
gnu: gitolite: Switch to git-minimal to reduce closure size.
...
* gnu/packages/version-control.scm (gitolite)[inputs]: Swap 'git' for
'git-minimal'.
[arguments]: Refer to 'git-minimal' input instead of 'git'.
2022-09-04 09:25:13 -04:00
David Thompson
1aa46a7e29
gnu: gitolite: Wrap programs instead of using propagated inputs.
...
* gnu/packages/version-control.scm (gitolite)[arguments]: Add git to wrapped
$PATH and additionally wrap gitolite-shell.
[inputs]: Add git and openssh.
[propagated-inputs]: Remove it.
2022-09-04 08:52:24 -04:00
Nicolas Goaziou
8b3112a355
gnu: emacs-org: Update to 9.5.5.
...
* gnu/packages/emacs-xyz.scm (emacs-org): Update to 9.5.5.
2022-09-04 11:17:50 +02:00
Efraim Flashner
83f262b169
gnu: directfb: Use librsvg-for-system.
...
* gnu/packages/graphics.scm (directfb)[inputs]: Replace librsvg with
librsvg-for-system.
2022-09-03 23:45:52 +03:00
Efraim Flashner
4e6c39e17e
gnu: gst-plugins-bad: Use librsvg-for-system.
...
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Replace librsvg
with librsvg-for-system.
2022-09-03 23:44:58 +03:00
Efraim Flashner
24d8a0cb70
gnu: gst-plugins-bad: Remove duplicate input.
...
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Remove duplicate
architecture-specific input mediasdk.
2022-09-03 21:26:40 +03:00
Marius Bakke
13cc34188a
gnu: ungoogled-chromium: Update to 105.0.5195.102-1.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 105.0.5195.102-1.
(%ungoogled-origin, ungoogled-chromium): Update hashes.
2022-09-03 20:26:15 +02:00
pukkamustard
5cd7d7b3a2
gnu: Add ocaml-guile.
...
* gnu/packages/ocaml.scm (ocaml-guile): New variable.
2022-09-03 20:21:25 +02:00
Joeke de Graaf
5cf9b98d1c
gnu: Add eisl.
...
* gnu/packages/lisp.scm (eisl): New variable.
Co-authored-by: Guillaume Le Vaillant <glv@posteo.net >
2022-09-03 16:02:04 +02:00
Arun Isaac
419c56f87c
gnu: emacs-tamil99: Update to 0.1.2.
...
* gnu/packages/emacs-xyz.scm (emacs-tamil99): Update to 0.1.2.
2022-09-03 18:04:21 +05:30
Nicolas Goaziou
91c3120553
gnu: emacs-shell-command+: Update to 2.4.1.
...
* gnu/packages/emacs-xyz.scm (emacs-shell-command+): Update to 2.4.1.
2022-09-03 10:09:34 +02:00
Nicolas Goaziou
f66cb7372f
gnu: emacs-multitran: Update to 0.4.16.
...
* gnu/packages/emacs-xyz.scm (emacs-multitran): Update to 0.4.16.
2022-09-03 10:09:33 +02:00
Nicolas Goaziou
3ed0592b3a
gnu: emacs-autothemer: Update to 0.2.11.
...
* gnu/packages/emacs-xyz.scm (emacs-autothemer): Update to 0.2.11.
2022-09-03 10:09:33 +02:00
jgart
3a9c762104
gnu: Add emacs-project-x.
...
* gnu/packages/emacs-xyz.scm (emacs-project-x): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-03 10:09:33 +02:00
宋文武
8fdd5461e9
gnu: Add emacs-org-fc.
...
* gnu/packages/emacs-xyz.scm (emacs-org-fc): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-09-03 10:09:32 +02:00
Maxim Cournoyer
ccba460ffd
gnu: cling: Use gexps.
...
* gnu/packages/llvm.scm (cling)[configure-flags]: Use gexps and search-input-file.
[phases]: Likewise.
{patch-paths}: Use search-input-file and this-package-input.
{delete-static-libraries}: Adjust for gexps.
2022-09-03 00:26:13 -04:00
Wiktor Żelazny
34766a6631
gnu: Add texlive-latex-newfloat.
...
* gnu/packages/tex.scm (texlive-latex-newfloat): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-02 19:48:43 +01:00
Taiju HIGASHI
98d7ffcda6
gnu: Add ruby-pry-doc.
...
* gnu/packages/ruby.scm (ruby-pry-doc): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-02 19:22:32 +01:00
Taiju HIGASHI
b22b012975
gnu: Add ruby-latest-ruby.
...
* gnu/packages/ruby.scm (ruby-latest-ruby): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-09-02 19:22:32 +01:00
Christopher Baines
692fa4bc2e
gnu: guix-build-coordinator: Update to 0-60.31b3ab6.
...
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-60.31b3ab6.
2022-09-02 19:20:41 +01:00
Maxim Cournoyer
3baeae63b6
gnu: Add turbovnc.
...
* gnu/packages/vnc.scm (turbovnc): New variable.
* gnu/packages/patches/turbovnc-custom-paths.patch: New file.
* gnu/packages/patches/turbovnc-find-system-packages.patch: Likewise.
* gnu/local.mk (dist_patch_DATA): Register them.
2022-09-02 12:37:20 -04:00
Gabriel Wicki
11dfc673e4
gnu: Add fftgen.
...
* gnu/packages/fpga.scm (fftgen): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-02 18:16:52 +02:00
Hendursaga
038286b0ac
gnu: hashcat: Update to 6.2.5.
...
* gnu/packages/password-utils.scm (hashcat): Update to 6.2.5.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-02 18:16:52 +02:00
Ludovic Courtès
5c444a0208
doc: Link to the "Scheme Crash Course".
...
* doc/guix.texi (Defining Packages): Add @quotation block linking to "A
Scheme Crash Course".
2022-09-02 18:16:51 +02:00
Ludovic Courtès
7c1b82f256
gnu: openexr@2: Skip failing test on i686.
...
* gnu/packages/graphics.scm (openexr-2)[arguments]: In
'disable-broken-test', skip 'testCompression' as well.
2022-09-02 18:16:51 +02:00
Ludovic Courtès
2c5c04eb2b
gnu: imath: Skip tests on i686.
...
* gnu/packages/graphics.scm (imath)[arguments]: New field.
2022-09-02 18:16:51 +02:00
Guillaume Le Vaillant
db2cd42178
gnu: qgis: Update to 3.26.2.
...
* gnu/packages/geo.scm (qgis): Update to 3.26.2.
[native-inputs]: Add python-pyqt-builder.
[inputs]: Add bash-minimal and zstd:lib.
[arguments]: Update 'configure-pyqt5-sip-path' and 'check' phases. Remove
trailing booleans.
2022-09-02 16:58:48 +02:00
jgart
0f51eb2890
gnu: Add bower.
...
* gnu/packages/mail.scm (bower): New variable.
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-02 10:01:34 -04:00
Pierre Neidhardt
075fab20d4
gnu: sbcl-trivial-clipboard: Update to 20220823.
...
* gnu/packages/lisp-xyz.scm (sbcl-trivial-clipboard): Update to 20220823.
2022-09-02 15:14:32 +02:00
Maxim Cournoyer
32ac1464d8
gnu: phoronix-test-suite: Update to 10.8.4.
...
* gnu/packages/benchmark.scm (phoronix-test-suite): Update to 10.8.4.
2022-09-02 08:55:34 -04:00
Maxim Cournoyer
448deee2b7
gnu: phoronix-test-suite: Address FSDG problems.
...
Fixes <https://issues.guix.gnu.org/56900 >.
* gnu/packages/benchmark.scm (phoronix-test-suite) [source]: Add a snippet to
mark mis-licensed test profiles as non-free.
2022-09-02 08:52:22 -04:00
Arun Isaac
3e866e24f0
shepherd: Set #o640 permissions for log file of service in container.
...
* gnu/build/shepherd.scm (make-forkexec-constructor/container): Set #o640
permissions for log file.
2022-09-02 16:32:16 +05:30
Ludovic Courtès
162c7e1bc6
gnu: cheese: Fix source URL.
...
This is a followup to 6e95917b64 , which
would construct an incorrect URL.
* gnu/packages/gnome.scm (cheese)[source]: In URL, change
'version-major+minor' to 'version-major'.
2022-09-02 10:56:44 +02:00
Ludovic Courtès
aaf7820d57
read-print: Improve declaration of integer bases.
...
This is a followup to c3b1cfe76b .
* guix/read-print.scm (%symbols-followed-by-octal-integers)
(%symbols-followed-by-hexadecimal-integers): Remove.
* guix/read-print.scm (%integer-forms): New variable.
(integer->string)[form-base, octal?]: New procedures.
Rewrite accordingly.
2022-09-02 10:49:35 +02:00
Ludovic Courtès
82968362ea
read-print: Define forms for which \n, \t, etc. are not escaped.
...
Previously, the pretty-printer would unconditionally leave everything
but double-quotes and backslashes unescaped when rendering a string.
With this change, the previous behavior only applies to forms listed in
%NATURAL-WHITESPACE-STRING-FORMS.
* guix/read-print.scm (%natural-whitespace-string-forms): New variable.
(printed-string): New procedure.
(pretty-print-with-comments): Use it instead of 'escaped-string'.
* tests/read-print.scm: Add test.
2022-09-02 10:49:35 +02:00
Artyom V. Poptsov
ac9a7f6be9
gnu: guile-ini: Update to 0.5.1.
...
* gnu/packages/guile-xyz.scm (guile-ini): Update to 0.5.1.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-02 09:34:49 +02:00
Artyom V. Poptsov
b11d029ca3
gnu: guile-smc: Update to 0.5.2.
...
* gnu/packages/guile-xyz.scm (guile-smc): Update to 0.5.2.
[arguments]: Remove the patch phase that is not needed anymore.
Remove a trailing #t in the wrap-program phase.
[native-inputs]: Add "help2man" and "which".
[inputs]: Use the new inputs style.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-02 09:34:49 +02:00
Efraim Flashner
f4c5e39406
gnu: kio: Skip another test.
...
* gnu/packages/kde-frameworks.scm (kio)[arguments]: Adjust custom 'check
phase to skip another test.
2022-09-02 09:39:02 +03:00
Efraim Flashner
85b5603eb2
gnu: kbd: Update to 2.5.1.
...
* gnu/packages/linux.scm (kbd): Update to 2.5.1.
2022-09-02 08:31:06 +03:00
Efraim Flashner
c05e949d59
gnu: iw: Update to 5.19.
...
* gnu/packages/linux.scm (iw): Update to 5.19.
2022-09-02 08:31:05 +03:00
Efraim Flashner
260de9711d
gnu: mg: Update to 20220614.
...
* gnu/packages/text-editors.scm (mg): Update to 20220614.
2022-09-02 08:30:48 +03:00
Efraim Flashner
83be24a13f
gnu: qtdeclarative-5: Fix linking on riscv64-linux.
...
* gnu/packages/qt.scm (qtdeclarative-5)[arguments]: Add phase when
building for riscv64-linux to adjust the linker flags.
2022-09-02 08:28:17 +03:00
Maxim Cournoyer
bd638a8ad6
gnu: Delete mono and dependent packages.
...
Fixes <https://issues.guix.gnu.org/55026 >.
* gnu/packages/mono.scm: Delete file.
* gnu/packages/patches/mono-mdoc-timestamping.patch: Likewise.
* gnu/local.mk (GNU_SYSTEM_MODULES): De-register module file.
(dist_patch_DATA): Re-register patch file.
* gnu/packages/game-development.scm (fna): Delete variable.
* gnu/packages/gl.scm (mojoshader-cs): Likewise.
* gnu/packages/sdl.scm (sdl2-cs): Likewise.
2022-09-01 19:08:12 -04:00
Maxim Cournoyer
db5fa0cda7
gnu: diffoscope: Remove mono from native inputs.
...
* gnu/packages/diffoscope.scm (diffoscope)[native-inputs]: Remove mono.
2022-09-01 19:08:12 -04:00
Maxim Cournoyer
4133905c77
gnu: pidgin: Remove mono support.
...
* gnu/packages/messaging.scm (pidgin)[configure-flags]: Remove
"--enable-mono".
[inputs]: Remove mono.
2022-09-01 19:08:12 -04:00
Leo Famulari
e254bee3c2
gnu: linux-libre 5.19: Update to 5.19.6.
...
* gnu/packages/linux.scm (linux-libre-5.19-version): Update to 5.19.6.
(linux-libre-5.19-pristine-source): Update hash.
2022-09-01 18:39:38 -04:00
Leo Famulari
7e3f7114e0
gnu: linux-libre 5.10: Update to 5.10.140.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.140.
(linux-libre-5.10-pristine-source): Update hash.
2022-09-01 18:39:38 -04:00
Leo Famulari
fd2c5feaca
gnu: linux-libre 5.15: Update to 5.15.64.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.64.
(linux-libre-5.15-pristine-source): Update hash.
2022-09-01 18:39:35 -04:00
Marius Bakke
0c518f974e
Merge branch 'master' into staging
2022-09-01 23:07:33 +02:00
Maxim Cournoyer
4d361a6b51
gnu: fwupd: Disable remotes by default.
...
* gnu/packages/firmware.scm (fwupd)
[configure-flags]: Add "-Dlvfs=disabled".
[phases]{ensure-all-remotes-are-disabled}: New phase.
2022-09-01 16:26:29 -04:00
Marius Bakke
23a91e9a2e
gnu: gnome-music: Remove input labels.
...
* gnu/packages/gnome.scm (gnome-music)[native-inputs, inputs]: Remove labels.
2022-09-01 22:22:52 +02:00
Marius Bakke
ebd78999bb
gnu: network-manager-applet: Remove obsolete input.
...
* gnu/packages/gnome.scm (network-manager-applet)[native-inputs]: Remove
INTLTOOL. Add GETTEXT-MINIMAL.
2022-09-01 22:22:52 +02:00
Marius Bakke
f7902a68f9
gnu: network-manager-applet: Remove input labels.
...
* gnu/packages/gnome.scm (network-manager-applet)[native-inputs]: Remove
labels.
2022-09-01 22:22:52 +02:00
Marius Bakke
85eab13718
gnu: network-manager-applet: Update to 1.28.0.
...
* gnu/packages/gnome.scm (network-manager-applet): Update to 1.28.0.
2022-09-01 22:22:52 +02:00
Marius Bakke
a68515296c
gnu: cheese: Don't patch docbook references.
...
* gnu/packages/gnome.scm (cheese)[arguments]: Remove phase patch-docbook-xml.
2022-09-01 22:22:52 +02:00
Marius Bakke
ebcb752d4b
gnu: cheese: Remove input labels.
...
* gnu/packages/gnome.scm (cheese)[native-inputs]: Remove labels.
2022-09-01 22:22:52 +02:00
Marius Bakke
6e95917b64
gnu: cheese: Update to 41.0.
...
* gnu/packages/gnome.scm (cheese): Update to 41.0.
[source](patches): Remove.
* gnu/packages/patches/cheese-vala-update.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-09-01 22:22:51 +02:00
Marius Bakke
d2bddfd736
gnu: glade: Use G-expression.
...
* gnu/packages/gnome.scm (glade3)[arguments]: Convert to gexp.
2022-09-01 22:22:51 +02:00
Marius Bakke
ced93c14d1
gnu: glade: Don't patch docbook files.
...
* gnu/packages/gnome.scm (glade3)[arguments]: Remove phase fix-docbook.
[native-inputs]: Add LIBXML2.
2022-09-01 22:22:51 +02:00
Marius Bakke
cce200369f
gnu: glade: Remove obsolete input.
...
* gnu/packages/gnome.scm (glade3)[native-inputs]: Remove INTLTOOL. Add
GETTEXT-MINIMAL.
2022-09-01 22:22:51 +02:00
Marius Bakke
e0f79f02db
gnu: glade: Remove input labels.
...
* gnu/packages/gnome.scm (glade3)[native-inputs]: Remove labels.
2022-09-01 22:22:51 +02:00
Marius Bakke
fce9b7c365
gnu: glade: Update to 3.40.0.
...
* gnu/packages/gnome.scm (glade3): Update to 3.40.0.
[source](patches): Remove.
* gnu/packages/patches/glade-gls-set-script-name.patch,
gnu/packages/patches/glade-test-widget-null-icon.patch: Delete files.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-09-01 22:22:51 +02:00
Marius Bakke
e21e7b0b4f
gnu: glade: gjs is a run-time dependency.
...
* gnu/packages/gnome.scm (glade3)[native-inputs]: Move GJS ...
[inputs]: ... here.
2022-09-01 22:22:51 +02:00
Marius Bakke
f22c65e019
gnu: gtk-vnc: Remove obsolete input.
...
* gnu/packages/gnome.scm (gtk-vnc)[native-inputs]: Remove INTLTOOL. Add
GETTEXT-MINIMAL.
2022-09-01 22:22:51 +02:00
Marius Bakke
f5efb4271d
gnu: gtk-vnc: Remove input labels.
...
* gnu/packages/gnome.scm (gtk-vnc)[native-inputs]: Remove labels.
2022-09-01 22:22:51 +02:00
Marius Bakke
9c852ae229
gnu: gtk-vnc: Update to 1.2.0.
...
* gnu/packages/gnome.scm (gtk-vnc): Update to 1.2.0.
[inputs]: Move GLIB, GNUTLS, LIBGCRYPT, CYRUS-SASL, LIBX11, and ZLIB ...
[propagated-inputs]: ... here. Add GDK-PIXBUF.
2022-09-01 22:22:51 +02:00
Guillaume Le Vaillant
aa5e030713
gnu: Add convert-samples.
...
* gnu/packages/radio.scm (convert-samples): New variable.
2022-09-01 20:36:42 +02:00
Guillaume Le Vaillant
839349e187
gnu: csdr: Update to 0.18.0.
...
* gnu/packages/radio.scm (csdr): Update to 0.18.0.
[source, home-page]: Switch to maintained repository.
[build-system]: Switch to cmake-build-system.
[native-inputs]: Add pkg-config.
[inputs]: Add libsamplerate.
[arguments]: Remove custom 'make-flags' and phases.
2022-09-01 20:36:42 +02:00
Marius Bakke
cd10a235d9
gnu: ungoogled-chromium: Update to 105.0.5195.52-1.
...
* gnu/packages/chromium.scm (%preserved-third-party-files): Adjust for 105.
(%chromium-version): Set to 105.0.5195.52.
(%ungoogled-origin): Update hash.
(%chromium-gcc-patchset): New origin.
(origin-file, gcc-patch): New procedures.
(%gcc-patches): New variable.
(debian-patch): Implement in terms of ORIGIN-FILE.
(ungoogled-chromium-snippet): Apply %GCC-PATCHES.
(ungoogled-chromium)[source](sha256): Update hash.
[arguments]: Patch more Opus headers & simplify.
2022-09-01 19:05:17 +02:00
Josselin Poiret
4989f6acff
installer: Fix segfault on double logical partition removal.
...
* gnu/installer/parted.scm (auto-partition!): Avoid removing logical
partitions twice.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-01 18:43:28 +02:00
Ludovic Courtès
c3b1cfe76b
read-print: Guess the base to use for integers being printed.
...
Fixes <https://issues.guix.gnu.org/57090 >.
Reported by Christopher Rodriguez <yewscion@gmail.com >.
* guix/read-print.scm (%symbols-followed-by-octal-integers)
(%symbols-followed-by-hexadecimal-integers): New variables.
* guix/read-print.scm (integer->string): New procedure.
(pretty-print-with-comments): Use it.
* tests/read-print.scm: Add test.
2022-09-01 18:31:26 +02:00
Ludovic Courtès
8cf7997d7c
gnu: libtool: Reinstate 2.4.7.
...
This reverts commit 5b6b731c7d , which was
most likely intended for 'core-updates'; 'libtool-2.4.7' is *not* a
duplicate package on the current 'master' branch.
Fixes <https://issues.guix.gnu.org/57356 >.
Reported by Michael Ford <fanquake@gmail.com >.
* gnu/packages/autotools.scm (libtool-2.4.7): New variable.
2022-09-01 18:31:26 +02:00
Ludovic Courtès
98a8b48a69
doc: Suggest more RAM for "Running Guix in a VM".
...
Fixes <https://issues.guix.gnu.org/57474 >.
Reported by Michael F. Lamb <mike@orbital.rodeo >.
Running 'guix pull' to target current revisions would lead to memory
exhaustion. Bumping the memory size works around that.
* doc/guix.texi (Running Guix in a VM): Change "-m 1024" to "-m 2048".
2022-09-01 18:31:26 +02:00
Ludovic Courtès
fe149b01d0
maint: Ignore cross-compilation to x86.
...
This is consistent with what's done by 'cross-jobs' in (gnu ci).
* etc/release-manifest.scm (%cross-manifest): Remove "x86_64-linux-gnu"
and "i686-linux-gnu" from the list returned by 'targets'.
2022-09-01 18:31:26 +02:00
Ludovic Courtès
294db8497c
gnu: ilmbase: Skip failing test on i686-linux.
...
* gnu/packages/graphics.scm (ilmbase)[arguments]: Add 'skip-test'
phase.
2022-09-01 18:31:26 +02:00
Ludovic Courtès
dfe848c9dc
gnu: ilmbase: Switch to gexps.
...
* gnu/packages/graphics.scm (ilmbase)[arguments]: Use a gexp.
2022-09-01 18:31:25 +02:00
Josselin Poiret
618699cb52
gnu: qpwgraph: Update to 0.3.5.
...
* gnu/packages/audio.scm (qpwgraph): Do it.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-01 17:42:36 +02:00
Josselin Poiret
f109f0dfe3
gnu: wireplumber: Update to 0.4.11.
...
* gnu/packages/linux.scm (wireplumber): Do it.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-01 17:42:36 +02:00
Josselin Poiret
ea87b4e98a
gnu: pipewire-0.3: Update to 0.3.56.
...
* gnu/packages/linux.scm (pipewire-0.3): Update it.
[arguments]: Restore the shrink-runpath phase, as validate-runpath passes now.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-09-01 17:42:36 +02:00
Peter Polidoro
13f53335ef
gnu: Add python-plotille.
...
* gnu/packages/python-xyz.scm (python-plotille): New variable.
Signed-off-by: David Thompson <davet@gnu.org >
2022-09-01 11:32:18 -04:00
Brendan Tildesley
a38889b14d
gnu: Add kwayland-server.
...
* gnu/packages/kde-plasma.scm (kwayland-server): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Petr Hodina
b4e1799638
gnu: KDE Games: Update all packages to 22.04.3.
...
* gnu/packages/kde-games.scm (ktuberling, picmi, kolf, libkmahjongg,
kmahjongg, kshisen, kajongg, kbreakout, kmines, konquest, kbounce,
kblocks, ksudoku, klines, kgoldrunner, kdiamond, kfourinline, kblackbox,
knetwalk, bomber, granatier, ksirk, palapeli, kiriki, kigo, kubrick,
lskat, kapman, kspaceduel, bovo, killbots, ksnakeduel, kollision,
knavalbattle, kreversi, ksquares, kjumpingcube): Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Petr Hodina
8facaa4b69
gnu: KDE Multimedia: Update to 22.04.3.
...
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kamoso, kmix, kwave, libkcddb, libkcompactdisc):
Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Petr Hodina
77595e2c56
gnu: KDE Systemtools: Update to 22.04.3.
...
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins, khelpcenter,
konsole, krfb, ksystemlog, yakuake): Update to 22.04.3.
(konsole): [native-inputs]: Add zlib.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Petr Hodina
73aa92fb32
gnu: KDE Utils: Update to 22.04.3.
...
* gnu/packages/kde-utils.scm (ark, kate, kmag, kmousetool, kmouth, okteta,
sweeper): Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Petr Hodina
96405451ed
gnu: KDE Internet: Update to 22.04.3.
...
* gnu/packages/kde-internet.scm (kget, konversation, kopete, krdc, ktorrent,
libktorrent): Update to 22.04.3.
(kconversation): [inputs]: Add qtmultimedia-5.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Petr Hodina
6971feca53
gnu: KDE: Update packages to 22.04.3.
...
* gnu/packages/kde.scm (baloo-widgets, kcachegrind, kdeconnect,
kdegraphics-mobipocket, kdenlive, kdevelop, kdevelop-pg-qt, kdf, kdiagram,
kpmcore, kqtquickcharts, krita, kseexpr, kuserfeedback,
libkdegames, libkexiv2, libkomparediff2, marble-qt, massif-visualizer,
okular, poxml, qca, snorenotify, zeroconf-ioslave): Update to 22.04.3.
(kdeconnect): [inputs]: Add kguiaddons.
(labplot): Update to 2.9.0.
[arguments]: Disable failing tests.
(kpmcore): [arguments]: Disable tests due to failures.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Petr Hodina
d532a86887
gnu: Remove kalarmcal.
...
* gnu/packages/kde-pim.scm: Remove kalarmcal.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Petr Hodina
378b1d8cc3
gnu: KDE PIM: Update all packages to 22.04.3.
...
* gnu/packages/kde-pim.scm (KDE PIM): Update to 22.04.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi,
libksieve): Update to 22.04.3.
(akonadi-calendar): [inputs]: Add kdbusaddons and knotifications.
(kincidenceeditor): [arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Remove kalarmcal.
(kmailimporter): [inputs]: Add kpimtextedit and ktextwidgets.
(kmessagelib): [inputs]: Add knotifications.
(kpimcommon): [inputs]: Add kpimtextedit.
(libksieve): [inputs]: Add grantlee.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Petr Hodina
684450818a
gnu: grantleetheme: Update to 22.04.3.
...
* gnu/packages/kde.scm (grantleetheme): Update to 22.04.3.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Petr Hodina
9dea1d938d
gnu: kcontacts: Disable failing test.
...
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Petr Hodina
7f0f53eb08
gnu: KDE Plasma: Update all packages to 5.25.3.
...
* gnu/packages/kde-plasma.scm (breeze, kdecoration, kscreenlocker,
ksshaskpass, layer-shell-qt, libkscreen, libksysguard): Update to 5.25.3.
(breeze)[inputs]: Add kirigami.
(kscreenlocker)[inputs]: Add kconfig.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Petr Hodina
d3045e55dd
gnu: KDE Frameworks: Update all packages to 5.96.0
...
* gnu/packages/kde-frameworks.scm
(extra-cmake-modules, attica, bluez-qt, breeze-icons, kapidox, karchive,
kcalendarcore, kcodecs, kconfig, kcoreaddons, kdbusaddons, kdnssd,
kguiaddons, kholidays, ki18n, kidletime, kirigami, kitemmodels,
kitemviews, kplotting, ksyntaxhighlighting, kwayland, kwidgetsaddons,
kwindowsystem, modemmanager-qt, networkmanager-qt, oxygen-icons, prison,
qqc2-desktop-style, solid, sonnet, threadweaver, kactivities, kauth,
kcompletion, kcontacts, kcrash, kdoctools, kfilemetadata, kimageformats,
kjobwidgets, knotifications, kpackage, kpty, kunitconversion, syndication,
baloo, kactivities-stats, kbookmarks, kcmutils, kconfigwidgets,
kdeclarative, kded, kdesignerplugin, kdesu, kdewebkit, kemoticons,
kglobalaccel, kiconthemes, kinit, kio, knewstuff, knotifyconfig, kparts,
kpeople, krunner, kservice, ktexteditor, ktextwidgets, kwallet, kxmlgui,
kxmlrpcclient, plasma-framework, purpose, kde-frameworkintegration,
kdelibs4support, khtml, kjs, kjsembed, kmediaplayer, kross, kdav):
Update to 5.96.0.
(kconfig): [inputs]: Add qtdeclarative-5.
(kcontacts): [arguments]: Disable another failing tests.
(kglobalaccel): [inputs]: Add qtdeclarative-5.
(kcalendarcore): [arguments]: Enable all tests.
(kio): [arguments]: Disable another failing test.
(ktexteditor): [arguments]: Disable another failing test.
(plasma-framework): [arguments]: Fix build.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:01 +02:00
Brendan Tildesley
bbd7e74ee8
gnu: KDE: Use breeze-icons over oxygen-icons.
...
* gnu/packages/kde-internet.scm (choqok kget konversation krdc krdc)
* gnu/packages/kde-multimedia.scm (dragon elisa juk k3b kaffeine kamoso
kmix kmplayer kwave)
* gnu/packages/kde-pim.scm (kaddressbook kcalutils kgpg kleopatra kmail
knotes korganizer)
* gnu/packages/kde-systemtools.scm (dolphin dolphin-plugins khelpcenter
konsole krfb ksystemlog)
* gnu/packages/kde-utils.scm (kate kmag kmousetool kmouth kronometer
krusader okteta rsibreak smb4k sweeper)
* gnu/packages/kde.scm (kdevelop)
Breeze icons replaces Oxygen icons in KDE 5, so use that in every package.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Brendan Tildesley
bf771c9e96
gnu: khelpcenter: Fix program.
...
* gnu/packages/kde-systemtools.scm (khelpcenter): Wrap XDG_DATA_DIRS to
point to khtml where it can find the html4.css file, otherwise
khelpcenter fails to launch.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Brendan Tildesley
8cfe7e0321
gnu: KDE Games: Update all packages to 21.12.3.
...
* gnu/packages/kde-games.scm (ktuberling, picmi, kolf, libkmahjongg,
kmahjongg, kshisen, kajongg, kbreakout, kmines, konquest, kbounce,
kblocks, ksudoku, klines, kgoldrunner, kdiamond, kfourinline, kblackbox,
knetwalk, bomber, granatier, ksirk, palapeli, kiriki, kigo, kubrick,
lskat, kapman, kspaceduel, bovo, killbots, ksnakeduel, kollision,
knavalbattle, kreversi, ksquares, kjumpingcube): Update to 21.12.3.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Brendan Tildesley
d31187ae88
gnu: ktouch: Update to 21.12.2.
...
* gnu/packages/education.scm (ktouch): Update to 21.12.2.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Petr Hodina
1499aa8773
gnu: kmplayer: Update to specific commit.
...
* gnu/packages/kde-multimedia.scm (kmplayer): Update to specific commit.
[source]: Switch to GIT-FETCH.
* gnu/packages/patches/kmplayer-aarch64.patch: Remove file.
* gnu/packages/patches/kmplayer-upstream_Fix-build-with-Qt-5.9.patch: Remove
file.
* gnu/local.mk: Remove patches.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Petr Hodina
fd2c8cf323
gnu: KDE Multimedia: Update home-page links.
...
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kaffeine, kamoso, kmix, kwave): Update home-page.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Brendan Tildesley
ddaea3cb2f
gnu: KDE Multimedia: Update all packages to 21.12.3.
...
* gnu/packages/kde-multimedia.scm (audiocd-kio, dragon, elisa,
ffmpegthumbs, juk, k3b, kaffeine, kamoso, kmix, kwave,
libkcddb, libkcompactdisc): Update to 21.12.3.
(kid3): Update to 3.9.1.
(kamoso): Remove unneeded configure-flags.
(kuserfeedback): Update to 1.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Petr Hodina
4d7422b4bc
gnu: KDE Systemtools: Update home-page links.
...
* gnu/packages/kde-systemtools.scm (dolphin, khelpcenter, krfb, ksystemlog,
yakuake): Update home-page.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Brendan Tildesley
acd3a20a55
gnu: KDE SystemTools: Update all packages to 21.12.3.
...
* gnu/packages/kde-systemtools.scm (dolphin, dolphin-plugins,
khelpcenter, konsole, krfb, ksystemlog, yakuake): Update to 21.12.3.
(krfb)[inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Petr Hodina
d95c4f71d5
gnu: ark: Add bash-minimal to inputs.
...
* gnu/packages/kde-utils.scm (ark): [inputs]: Add bash-minimal.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Brendan Tildesley
c653fecda4
gnu: KDE Utils: Update all packages to 21.12.3.
...
* gnu/packages/kde-utils.scm (ark, kate, kmag, kmousetool, kmouth,
kronometer, krusader, kxstitch, rsibreak, sweeper):
Update to 21.12.3.
(okteta): Update to 0.26.6.
[origin]: Update source path location.
[arguments]: New dependency
(smb4k): [origin]: Fix extraction of downloaded tarball.
[inputs]: Add new dependency.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Petr Hodina
e0f9b9438f
gnu: KDE Internet: Update home-page links.
...
* gnu/packages/kde-internet.scm (konversation, kopete, krdc, ktorrent): Update
home-page.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Brendan Tildesley
56d0494512
gnu: KDE Internet: Update all packages to 21.12.3.
...
* gnu/packages/kde-internet.scm (kget, konversation, kopete, krdc,
ktorrent, libktorrent): Update to 21.12.3.
(kget)[inputs]: Move kdoctools to native-inputs.
[arguments]: Disable broken tests.
(kopete)[inputs]: Add ksyntaxhighlighting, mediastreamer2.
(krdc)[arguments]: Add new dependencies.
(ktorrent)[origin]: Update URI.
[inputs]: Remove obsolete kdewebkit.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:24:00 +02:00
Brendan Tildesley
d51cc7ec72
gnu: Remove libraw-0.18.
...
* gnu/packages/photo.scm (libraw-0.18): Delete unused old version.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
Petr Hodina
c9f96fba9c
gnu: KDE: Update home-page links.
...
* gnu/packages/kde.scm (massif-visualizer, libkdegames, okular, poxml,
zeroconf-ioslave): Update home-page link.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
Brendan Tildesley
3646358e8d
gnu: KDE: Update all packages to 21.12.3.
...
* gnu/packages/kde.scm (baloo-widgets, kcachegrind,
kdeconnect, kdegraphics-mobipocket, kdenlive, kdevelop, kdevelop-pg-qt,
kdf, kdiagram, kpmcore, kqtquickcharts, krita, kseexpr, kuserfeedback,
labplot, libkdegames, libkexiv2, libkomparediff2, marble-qt,
massif-visualizer, okular, poxml, qca, snorenotify, zeroconf-ioslave):
Update to 21.12.3.
(baloo-widgets)[arguments]: Disable tests.
(kdiagram): Update to 2.8.0.
(qca): Update to 2.3.4.
(kpmcore)[arguments]: Don't try install polkit files to polkits store path.
(kdevelop)[inputs]: Add ksyntaxhighlighting. Use new inputs format.
(kdeconnect)[native-inputs]: Use new style.
[inputs]: Add new dependencies.
(krita)[inputs]: Use latest libraw.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
Petr Hodina
4a559e8a4e
gnu: KDE-PIM: Remove trailing booleans.
...
* gnu/packages/kde-pim.scm (akonadi, akonadi-mime, akonadi-search,
kincidenceeditor, kdepim-runtime, kidentitymanagement, kleopatra, kmail,
kmime, korganizer, kpeoplevcard, ksmtp, libkleo,
libksieve)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
Brendan Tildesley
298b349a05
gnu: KDE PIM: Update all packages to 21.12.3.
...
* gnu/packages/kde-pim.scm (KDE PIM): Update to 21.12.3.
(akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime,
akonadi-notes, akonadi-search, kaddressbook, kalarmcal,
kcalendarsupport, kcalutils, kdepim-runtime, keventviews, kgpg,
kidentitymanagement, kimap, kincidenceeditor, kldap, kleopatra, kmail,
kmailcommon, kmailimporter, kmailtransport, kmbox, kmessagelib, kmime,
knotes, kontactinterface, korganizer, kpeoplevcard, kpimcommon,
kpimtextedit, ksmtp, ktnef, libgravatar, libkdepim, libkgapi, libkleo,
libksieve): Update to 21.12.3.
(kblog): Update to 20.04.3.
* gnu/packages/patches/akonadi-not-relocatable.patch
* gnu/packages/patches/akonadi-paths.patch
* gnu/packages/patches/akonadi-timestamps.patch
Fix patches to apply to latest code.
(akonadi-calendar): [inputs]: Add new dependencies.
(akonadi-contacts): [inputs]: Add new dependencies.
(akonadi-search): [arguments]: Disable failing tests.
(kcalendarsupport): [inputs]: Add new dependency, remove obsolete kdepim-apps-lib.
(libksieve): [arguments]: Enable test that works now.
* gnu/packages/patches/libksieve-Fix-missing-link-libraries.patch: Fix patch.
(kaddressbook): [inputs]: Remove obsolete kdepim-apps-libs.
Move kdocstools to native-inputs.
(kmessagelib): [inputs]: Remove obsolete kdepim-appslibs, add kguiaddons.
[arguments]: Fix findind header file.
(kmailimporter): [inputs]: Add new dependencies.
(kmailtransport): [inputs]: Add qtkeychain.
(knotes): [inputs]: Move kdocstools to native-inputs.
(kincidenceeditor): [inputs]: Add new dependencies. Remove obsolete kdepim-apps-libs
[arguments]: Disable failing test.
(kldap): [inputs]: Add qtkeychain.
(kgpg)[arguments]: Disable failing tests.
(libkleo): [propagated-inputs]: Propagate gpgme, qgpgme.
[arguments]: Disable failing tests.
(kdepim-runtime): [inputs]: Add new dependencies grantlee, grantleetheme, kcmutils, kldap,
libkdepim, qtkeychain
[arguments]: Enable all the tests that pass.
We need to use the old hack instead of search-input-directory to
workaround a mysterious include error.
(kdepim-apps-lib): Remove obsolete package.
(kmail): [origin]: Remove patch. Don't think it is needed anymore.
[inputs]: Add new dependencies, delete obsolete kdepim-apps-libs and
duplicate kmime.
[arguments]: Disable failing tests.
* gnu/packages/patches/kmail-Fix-missing-link-libraries.patch: Delete file.
* gnu/local.mk: Remove reference to patch.
(kmailcommon): [inputs]: Add new dependencies.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
Petr Hodina
568d167649
gnu: grantleetheme: Update to 21.12.3.
...
* gnu/packages/kde.scm (grantleetheme): Update to 21.12.3.
* gnu/local.mk: Remove patch.
* gnu/packages/patches/grantlee-merge-theme-dirs.patch: Remove file.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
Brendan Tildesley
2ac5bdfab8
gnu: KDE Plasma: Update all packages to 5.24.4.
...
* gnu/packages/kde-plasma.scm (breeze, kdecoration, kscreenlocker,
ksshaskpass, layer-shell-qt, libkscreen, libksysguard): Update to 5.24.4.
(kdecoration)[inputs]: Add new dependency.
(libkscreen)[inputs]: Add new Wayland inputs.
(kscreenlocker)[inputs]: Add layer-shell-qt.
(libksysguard)[origin]: Fix url so refresh script works.
[native-inputs]: Add qttools.
[inputs]: Add libnl libcap libpcap, qtwebengine, qtwebchannel,
lm-sensors:lib.
[arguments]: Remove unneened hacks. Respect tests?.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
Brendan Tildesley
aaaaabe96e
gnu: phonon: Update home page.
...
* gnu/packages/kde-frameworks.scm (phonon): Update home page.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
Petr Hodina
5ed3a28507
gnu: kfilemetadata: Remove input labels.
...
* gnu/packages/kde-frameworks.scm (kfilemetadata): Remove input labels.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
Petr Hodina
50bee24a1c
gnu: kio: Remove input labels.
...
* gnu/packages/kde-frameworks.scm (kio): Remove input labels.
[inputs]: Remove kdoctools.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
Petr Hodina
de27adc5d7
gnu: plasma-framework: Remove input labels.
...
* gnu/packages/kde-frameworks.scm (plasma-framework): Remove input
labels.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
Petr Hodina
fccf6be1ae
gnu: KDE Frameworks: Remove trailing booleans.
...
* gnu/packages/kde-frameworks.scm (kcalendarcore, kconfig, kcoreaddons,
ksyntaxhighlighting, kwayland, kwindowsystem, modemmanager-qt, kcontacts,
kdoctools, kfilemetadata, imageformats, knotifications, kpackage, kpty,
baloo, kbookmarks, kcmutils, kconfigwidgets, kemoticons, kiconthemes,
kinit, kio, knewstuff, kparts, kservice, ktexteditor, kxmlgui,plasma-framework,
kde-frameworkintegration, kdelibs4support): Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
Brendan Tildesley
575a03ab39
gnu: KDE Frameworks: Update all packages to 5.92.0
...
* gnu/packages/kde-frameworks.scm
(extra-cmake-modules, attica, bluez-qt, breeze-icons, kapidox, karchive,
kcalendarcore, kcodecs, kconfig, kcoreaddons, kdbusaddons, kdnssd,
kguiaddons, kholidays, ki18n, kidletime, kirigami, kitemmodels,
kitemviews, kplotting, ksyntaxhighlighting, kwayland, kwidgetsaddons,
kwindowsystem, modemmanager-qt, networkmanager-qt, oxygen-icons, prison,
qqc2-desktop-style, solid, sonnet, threadweaver, kactivities, kauth,
kcompletion, kcontacts, kcrash, kdoctools, kfilemetadata, kimageformats,
kjobwidgets, knotifications, kpackage, kpty, kunitconversion, syndication,
baloo, kactivities-stats, kbookmarks, kcmutils, kconfigwidgets,
kdeclarative, kded, kdesignerplugin, kdesu, kdewebkit, kemoticons,
kglobalaccel, kiconthemes, kinit, kio, knewstuff, knotifyconfig, kparts,
kpeople, krunner, kservice, ktexteditor, ktextwidgets, kwallet, kxmlgui,
kxmlrpcclient, plasma-framework, purpose, kde-frameworkintegration,
kdelibs4support, khtml, kjs, kjsembed, kmediaplayer, kross, kdav):
Update to 5.92.0.
(extra-cmake-modules)[arguments]:
Disable failing test.
Don't run check phase after install.
(bluez): [arguments]: Enable tests.
(breeze-icons): [native-inputs]: Remove uneeded dependency libxml2, Add python-lxml, python.
(kapidox): Use python-build-system. [native-inputs]: Remove extraneous
input.
kcalendarcore: [arguments]: Enable as many tests as possible.
(kconfig): [native-inputs]: Remove no longer needed inputs.
[arguments]: Disable failing test.
(kcoreaddons): [arguments]: Remove old hack, disable broken tests.
(ki18n): [arguments]: Disable failing tests.
(kguiaddons): [inputs]: Add new dependencies qtwayland, wayland.
(kwidgetsaddons): [arguments]: Disable another failing test.
(kwayland): [inputs]: Add plasma-wayland-protocols.
[arguments]: Enable working tests.
(knotifications): [native-inputs]: add libcanberra, libdbusmenu-qt,
qtdeclarative-5.
[arguments]: Respect tests?
(sonnet): [inputs]: Add qtdeclarative-5.
(kxmlgui): [inputs]: Add kguiaddons.
(kxmlrpcclient): [source]: Update url.
(plasma-framework): [arguments]: Enable all tests that work.
[native-inputs]: Add kdoctools.
(kpackage): [arguments]: Use substitution instead of patch.
(kio): [inputs]: Add new dependencies.
[native-inputs]: Add kdoctools.
[arguments]: Enable all tests that work.
(kdeclarative): [inputs]: Remove extraenous inputs.
[propagated-inputs]: Propagate qtdeclarative, since it always seems to
be needed.
[native-inputs]: Add dbus to skip failing test.
[arguments]: Replace check due to failing test.
(solid): [arguments]: Respect tests?.
(kdbusaddons): [arguments]: Respect tests?.
Fix patch by replacing it with a substitution instead.
(kholidays): [arguments]: Enable working test.
(ksyntaxhighlighting): [arguments]: Don't patch file that doesn't exist any more.
(kwindowsystem): [arguments]: Respect tests?.
(modemmanager-qt): [arguments]: Respect tests?.
(kauth): [arguments]: Respect tests?.
(kfilemetadata): [arguments]: A different test fails now.
(kunitconversion): [arguments]: Disable tests.
(baloo): [arguments]: Enable tests. Respect tests?.
(kconfigwidgets): Move qttools to native-inputs.
(kded): [inputs]: Remove unneeded kinit input.
[native-inputs]: Add kdoctools.
(kdesignerplugin): [inputs]: Remove extraneous inputs.
[native-inputs]: Add kdoctools.
(kglobalaccel): [inputs]: Remove extraneous inputs.
(kinit): [native-inputs]: Add kdoctools.
(knewstuff): [inputs]: Add kpackage.
(krunner): [arguments]: Disable failing tests.
(kservice): [arguments]: Enable all tests that work.
[native-inputs]: Add kdoctools.
(ktexteditor): [arguments]: Enable all tests that work.
(kwallet): [native-inputs]: Add kdoctools.
(purpose): [arguments]: Remove unneeded hack.
(kdelibs4support): Move qttools to native-inputs.
[native-inputs]: Add kdoctools.
(kcontacts): [inputs]: Add iso-codes since the tests look for some .json
files from it.
[arguments]: Disable failing tests.
(networkmanager-qt): [arguments]: Respect tests?.
* gnu/local.mk: Delete references to deleted patches:
kdbusaddons-kinit-file-name.patch
kinit-kdeinit-libpath.patch
kpackage-allow-external-paths.patch
kpackage-fix-KF5PackageMacros.cmake.patch
plasma-framework-fix-KF5PlasmaMacros.cmake.patch
* gnu/packages/patches/kdbusaddons-kinit-file-name.patch: Delete file.
* gnu/packages/patches/kinit-kdeinit-libpath.patch: Delete file.
* gnu/packages/patches/kpackage-allow-external-paths.patch: Delete file.
* gnu/packages/patches/kpackage-fix-KF5PackageMacros.cmake.patch: Delete
file.
* gnu/packages/patches/plasma-framework-fix-KF5PlasmaMacros.cmake.patch:
Delete file.
* gnu/packages/patches/kinit-kdeinit-extra_libs.patch: Fix patch.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 17:23:59 +02:00
David Thompson
c053dfa52d
gnu: gitolite: Remove /usr reference for redis-server.
...
* gnu/packages/version-control.scm (gitolite)[arguments]: Substitute
'/usr/sbin/redis-server' with 'redis-server' in Cache.pm source file.
2022-09-01 10:29:01 -04:00
Marius Bakke
c4ce54055a
Merge branch 'master' into staging
2022-09-01 16:24:18 +02:00
Efraim Flashner
cd782ad7e4
gnu: gst-plugins-base: Skip more tests on some platforms.
...
* gnu/packages/gstreamer.scm (gst-plugins-base)[arguments]: Extend the
custom 'disable-problematic-tests phase to selectively remove some tests
on certain architectures.
2022-09-01 17:15:15 +03:00
Brendan Tildesley
4f7f4e82e1
gnu: Add appstream-qt.
...
* gnu/packages/freedesktop.scm (appstream-qt): Add a build of appstream
with Qt support.
Co-authored-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:17 +02:00
Marius Bakke
2ebb0383a2
gnu: appstream: Update to 0.15.5.
...
* gnu/packages/freedesktop.scm (appstream): Update to 0.15.2.
[arguments]: Use G-expression. Add #:meson. Enable (some) previously failing
tests. Don't patch docbook file names, and use SEARCH-INPUT-FILE for
libstemmer header. Add phase to set HOME before tests.
[inputs]: Add CURL and LIBXMLB.
[native-inputs]: Add ITSTOOL and LIBXML2.
[license]: Remove GPL2+.
Co-authored-by: Brendan Tildesley <mail@brendan.scot >
Co-authored-by: phodina <phodina@protonmail.com >
2022-09-01 16:08:17 +02:00
Brendan Tildesley
752ae1f244
gnu: kmessagelib: Remove qtwebkit as an input.
...
* gnu/packages/kde-pim.scm (kmessagelib): qtwebkit is unmaintained so it
should be removed where possible.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:17 +02:00
Brendan Tildesley
a0cc28346f
gnu: Add wayland-protocols 1.26.
...
* gnu/packages/freedesktop.scm (wayland-protocols-next): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Brendan Tildesley
39460eac6d
gnu: Add kdsoap.
...
* gnu/packages/qt.scm (kdsoap): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Petr Hodina
5fbcbfdd12
gnu: kajongg: Add bash-minimal to inputs.
...
* gnu/packages/kde-games.scm (kajongg): [inputs]: Add bash-minimal.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Petr Hodina
d8bd66f28b
gnu: KDE Games: Update home-page links.
...
* gnu/package/kde-games.scm (ktuberling, picmi, kolf, kmahjongg,
kshisen, kajongg, kbreakout, kmines, konquest, kbounce, kblocks, ksudoku,
klines, kgoldrunner, kdiamond, kfourinline, kblackbox, knetwalk, bomber,
granatier, ksirk, palapeli, kiriki, kigo, kubrick, lskat, kapman,
kspaceduel, bovo, killbots, ksnakeduel, kollision, knavalbattle,
kreversi, ksquares, kjumpingcube): Update home-page.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Brendan Tildesley
6549b259db
gnu: Move KDE games to (gnu packages kde-games).
...
* gnu/packages/games.scm:
(ktuberling picmi kolf libkmahjongg kmahjongg kshisen kajongg kbreakout
kmines konquest kbounce kblocks ksudoku klines kgoldrunner kdiamond
kfourinline kblackbox knetwalk bomber granatier ksirk palapeli kiriki
kigo kubrick lskat kapman kspaceduel bovo killbots ksnakeduel kollision
knavalbattle kreversi ksquares kjumpingcube):
Move to gnu/packages/kde-games.scm.
[define-module]: Remove (gnu packages kde), (gnu packages
kde-frameworks).
* gnu/packages/kde-games.scm: New module.
[header]: Copy over any copyrights I could find that affected these games.
* gnu/local.mk (GNU_SYSTEM_MODULES): Register it.
Why? games.scm is very large, and will only get larger, so splitting it
helps. Also, it is convenient for singling out and updating KDE games.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Petr Hodina
204a98288a
gnu: kmplayer: Update home-page.
...
* gnu/packages/kde-multimedia.scm (kmplayer): Update home-page.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Petr Hodina
891bbcff80
gnu: KDE Multimedia: Add bash-minimal and kdoctools.
...
* gnu/packages/kde-multimedia.scm (juk, kmix): Move kdoctools from inputs to
native-inputs.
(dragon, k3b): [inputs]: Add bash-minimal.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Petr Hodina
541cec1fcf
gnu: KDE Utils: Remove trailing booleans.
...
* gnu/packages/kde-utils.scm (kate, okteta): [arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Petr Hodina
205e7e0f35
gnu: KDE Utils: Update home-page links.
...
* gnu/packages/kde-utils.scm (ark, kmag, kmousetool, kmouth, kronometer,
krusader, kxstitch, okteta, rsibreak, smb4k, sweeper): Update home-page
link.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Petr Hodina
c2cf48376f
gnu: labplot: Remove input labels.
...
* gnu/packages/kde-pim.scm (labplot): Remove input labels.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Petr Hodina
db2e80db1c
gnu: KDE: Remove trailing booleans.
...
* gnu/packages/kde.scm (akregator, kdevelop)[arguments]: Remove trailing booleans.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Petr Hodina
e63a0ef8af
gnu: kdenlive, marble-qt: Add kdoctools.
...
* gnu/packages/kde.scm (kdenlive)[native-inputs]: Add kdoctools.
(marble-qt): Move kdoctools from inputs to native-inputs.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Petr Hodina
c60a78b1b7
gnu: KDE PIM: Update home-pages.
...
* gnu/packages/kde-pim.scm (akonadi, kaddressbook, kcalutils, kgpg, kimap,
kldap, kleopatra, kmail, kmailtransport, kmbox, kmime, knotes,
kontactinterface, korganizer, kpimtextedit, ktnef): [home-page]: Update the
link.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:16 +02:00
Petr Hodina
d04997fadf
gnu: libgravatar: Remove input labels.
...
* gnu/packages/kde-pim.scm (libgravatar): Remove input labels.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:15 +02:00
Brendan Tildesley
0d3d6fd71b
gnu: libgravatar: Move to (gnu packages kde-pim).
...
Remove uneeded (gnu packages kde-internet) import.
* gnu/packages/kde-internet.scm: Move libgravatar ...
* gnu/packages/kde-pim.scm ...here
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:15 +02:00
Brendan Tildesley
7fc78b2d34
gnu: Add layer-shell-qt.
...
* gnu/packages/kde-plasma.scm (layer-shell-qt): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:15 +02:00
Brendan Tildesley
65ebef38b8
gnu: kgraphviewer: Fix home page.
...
* gnu/packages/kde-frameworks.scm (kgraphviewer): Fix home page.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:15 +02:00
Brendan Tildesley
cd265da15d
gnu: phonon-backend-gstreamer: Update home page.
...
* gnu/packages/kde-frameworks.scm (phonon-backend-gstreamer): Update home page.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:15 +02:00
Petr Hodina
572c1e886f
gnu: ki18n: Remove input labels.
...
* gnu/packages/kde-frameworks.scm (ki18n): Remove input labels.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:15 +02:00
Petr Hodina
519108ab7a
gnu: kwindowsystem: Remove input labels.
...
* gnu/packages/kde-frameworks.scm (kwindowsystem): Remove input labels.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:15 +02:00
Petr Hodina
6b9e8f132a
gnu: solid: Remove input labels.
...
* gnu/packages/kde-frameworks.scm (solid): Remove input labels.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:15 +02:00
Petr Hodina
bb0536c515
gnu: kde-frameworkintegration: Remove input labels.
...
* gnu/packages/kde-frameworks.scm (kde-frameworkintegration): Remove input
labels.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:15 +02:00
Brendan Tildesley
53d645c1b1
gnu: kdav: Move to (gnu packages kde-frameworks).
...
* gnu/packages/kde-pim.scm
* gnu/packages/kde-frameworks.scm
(kdav): Move to (gnu packages kde-frameworks). It's considered a
framework component now.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:15 +02:00
Brendan Tildesley
8e6af98fbb
gnu: libdbusmenu-qt: Move to (gnu packages qt).
...
* gnu/packages/lxqt.scm: Remove libdbusmenu-qt.
* gnu/packages/qt.scm: Re-add libdbusmenu-qt.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:15 +02:00
Brendan Tildesley
98bc5e77af
gnu: Add plasma-wayland-protocols.
...
* gnu/packages/kde-frameworks.scm (plasma-wayland-protocols): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-09-01 16:08:15 +02:00
Marius Bakke
060e65ebda
gnu: libxmlb: Update to 0.3.9.
...
* gnu/packages/xml.scm (libxmlb): Update to 0.3.9.
[source](patches): Remove.
* gnu/packages/patches/libxmlb-install-xb-tool-into-bindir.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-09-01 16:08:15 +02:00
Marius Bakke
d57427af57
gnu: libstemmer: Update to 2.2.0.
...
* gnu/packages/language.scm (libstemmer): Update to 2.2.0.
[source](uri): Use new versioned URL.
[arguments]: Remove obsolete step and trailing #t.
2022-09-01 16:08:14 +02:00
Marius Bakke
d4640281f3
gnu: libstemmer: Add release-monitoring-url and upstream-name properties.
...
* gnu/packages/language.scm (libstemmer)[properties]: New field.
2022-09-01 16:08:14 +02:00
Marius Bakke
1d2b1ea6eb
gnu: meson: Add 0.63.1.
...
* gnu/packages/build-tools.scm (meson-0.63): New variable.
2022-09-01 16:08:14 +02:00
Efraim Flashner
3fdeb158d8
gnu: gst-plugins-base: Build with orc on all platforms.
...
* gnu/packages/gstreamer.scm (gst-plugins-base)[propagated-inputs]:
Build with orc on all platforms.
2022-09-01 16:44:50 +03:00
Liliana Marie Prikler
02aa85459f
gnu: rsyslog: Remove gratuitous whitespace.
...
* gnu/packages/logging.scm (rsyslog)[#:configure-flags]: Remove gratuitous whitespace.
2022-09-01 15:34:07 +02:00
Liliana Marie Prikler
aaee40278c
gnu: Add missing imports for python-check.
...
This fixes an issue introduced in 3bf5a19609 ,
which caused `guix pull', `guix time-machine', and a few other commands to
fail.
* gnu/packages/diffoscope.scm: Import python-check.
* gnu/packages/django.scm: Likewise.
* gnu/packages/logging.scm: Likewise.
* gnu/packages/magic-wormhole.scm: Likewise.
* gnu/packages/networking.scm: Likewise.
2022-09-01 15:34:07 +02:00
David Thompson
d580c8cb3d
gnu: tiled: Update to 1.8.6.
...
* gnu/packages/game-development.scm (tiled): Update to 1.8.6.
[source]: Modify git URL to use the official 'mapeditor/tiled' repository for
which 'bjorn/tiled' was a permanent redirect.
2022-09-01 09:23:17 -04:00
Thiago Jung Bauermann
f04325c92f
bug#22020: [PATCH] gnu: guile-sdl: Update to 0.6.1.
...
Fixes <https://issues.guix.gnu.org/22020 >.
* gnu/packages/sdl.scm (guile-sdl): Update to 0.6.1.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-09-01 16:05:12 +03:00
muradm
fa2d651475
gnu: fail2ban-service-type: Fix documentation typos.
...
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-01 08:58:16 -04:00
muradm
7686dd9676
gnu: fail2ban-service-type: Improve jail configuration serialization.
...
* gnu/services/security.scm (fail2ban-jail-configuration)
[name]: Should use empty-serializer.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-01 08:58:16 -04:00
muradm
80d9edb69d
gnu: fail2ban-service-type: Fix field name serialization.
...
* gnu/services/security.scm: Wrong condition in string-filter
function in fail2ban-jail-configuration-serialize-field-name.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-09-01 08:58:15 -04:00
Nicolas Graves
58974e7b19
gnu: python-tox: Build with tests.
...
* gnu/packages/python-check.scm (python-tox)[arguments]: Convert to list of
G-Expressions. Drop #:tests?. Add #:phases.
[native-inputs]: Add python-flaky, python-pathlib2, python-pytest-freezegun,
and python-pytest-timeout.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-01 13:44:36 +02:00
Nicolas Graves
3bf5a19609
gnu: python-tox: Move to python-check.
...
* gnu/packages/python-xyz.scm (python-tox): Move from here...
* gnu/packages/python-check.scm (python-tox): ... to here.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-09-01 11:50:02 +02:00
Efraim Flashner
cef95d4faa
gnu: libunwind: Disable tests on most architectures.
...
* gnu/packages/libunwind.scm (libunwind)[arguments]: Only run the test
suite when building on and for x86_64-linux.
2022-09-01 12:43:27 +03:00
Gabriel Arazas
4a5fbadb88
gnu: Add treefmt.
...
* gnu/packages/rust-apps.scm (treefmt): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-09-01 11:15:53 +03:00
Gabriel Arazas
98707abda3
gnu: rust-sha-1-0.9: Update to 0.9.8.
...
* gnu/packages/crates-io.scm (rust-sha-1-0.9): Update to 0.9.8.
[arguments]: In cargo-inputs replace rust-cfg-if-0.1 with 1,
rust-sha1-asm-0.4 with 0.5. Remove rust-cpuid-bool-0.1, rust-libc-0.2.
Add rust-cpufeatures-0.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-09-01 11:15:19 +03:00
jgart
e7fc186cee
gnu: Add snafu.
...
* gnu/packages/suckless.scm (snafu): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-09-01 10:53:17 +03:00
Maxim Cournoyer
b4c2d6d60f
gnu: Add python-paho-mqtt.
...
* gnu/packages/messaging.scm (python-paho-mqtt): New variable.
2022-08-31 23:13:46 -04:00
Maxim Cournoyer
1a7fb20e8c
gnu: Add python-mypy-protobuf.
...
* gnu/packages/protobuf.scm (python-mypy-protobuf): New variable.
2022-08-31 23:13:46 -04:00
Maxim Cournoyer
1898c6c297
gnu: Add python-typing-extensions-next.
...
* gnu/packages/python-xyz.scm (python-typing-extensions-next): New variable.
2022-08-31 23:13:45 -04:00
Maxim Cournoyer
abb1fd9116
gnu: Add python-grpc-stubs.
...
* gnu/packages/rpc.scm (python-grpc-stubs): New variable.
2022-08-31 23:13:45 -04:00
Maxim Cournoyer
5755aa61f6
gnu: Add python-types-protobuf.
...
* gnu/packages/python-xyz.scm (python-types-protobuf): New variable.
2022-08-31 23:13:45 -04:00
Eric Bavier
15fbb963b6
gnu: ghostwriter: Update to 2.1.4 and fix wrapping.
...
* gnu/packages/text-editors.scm (ghostwriter): Update to 2.14.
[arguments]: Use gexps to fix 'wrap-executable' phase.
2022-08-31 20:47:25 -05:00
ykonai
0424a58463
gnu: pipe-viewer: Update to 0.2.3.
...
* gnu/packages/video.scm (pipe-viewer): Update to 0.2.3
[inputs, arguments]: Remove dependency on youtube-dl, unnecessary
since 0.2.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-01 00:57:11 +02:00
Tor Egil Hoftun Kvæstad
7f4e5bdfd6
gnu: Add texlive-biblatex-apa.
...
* gnu/packages/tex.scm (texlive-biblatex-apa): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-01 00:57:11 +02:00
pukkamustard
47c82fdf5a
gnu: Add guile-srfi-146.
...
* gnu/packages/guile-xyz.scm (guile-srfi-146): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-01 00:57:10 +02:00
pukkamustard
130f65423b
gnu: Add guile-srfi-128.
...
* gnu/packages/guile-xyz.scm (guile-srfi-128): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-01 00:57:10 +02:00
Zhu Zihao
80df3ffb4f
gnu: tdlib: Update to 1.8.4.
...
* gnu/packages/messaging.scm (tdlib): Update to 1.8.4.
<#:configure-flags>: Enable LTO. Move build type settings to #:build-type
arguments.
<#:build-type>: Use "Release build".
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-01 00:57:10 +02:00
Zhu Zihao
a4cc6b5909
gnu: tdlib: Use G-expressions.
...
* gnu/packages/messaging.scm (tdlib)[arguments]: Use G-expressions.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-01 00:57:10 +02:00
Olivier Dion
0d8739bd6d
gnu: perf-tools: Patch executable file names.
...
* gnu/packages/instrumentation.scm (perf-tools)[arguments: Add
'patch-file-names' phase.
[inputs]: Remove GCC-TOOLCHAIN, which appears to be redundant and would
be retained as a reference due to the new phase.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-09-01 00:57:10 +02:00
Christopher Rodriguez
dc9a5257a9
gnu: Add cbqn.
...
* gnu/packages/bqn.scm (cbqn): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-01 00:57:10 +02:00
Christopher Rodriguez
4e7c1130f7
gnu: Add singeli-sources.
...
* gnu/packages/bqn.scm: Add singeli-sources origin definition.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-01 00:57:10 +02:00
Christopher Rodriguez
ee5a85166c
gnu: Add cbqn-bootstrap.
...
* gnu/packages/bqn.scm: Add cbqn-bootstrap package.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-01 00:57:09 +02:00
Christopher Rodriguez
7bae4f1650
gnu: Add bqn-sources.
...
* gnu/packages/bqn.scm (bqn-sources): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-01 00:57:09 +02:00
Christopher Rodriguez
9aa2a41b47
gnu: Add dbqn.
...
* gnu/packages/bqn.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-09-01 00:57:09 +02:00
Nicolas Goaziou
a3b5b86db7
gnu: emacs-diff-hl: Update to 1.9.0.
...
* gnu/packages/emacs-xyz.scm (emacs-diff-hl): Update to 1.9.0.
2022-08-31 23:52:33 +02:00
Nicolas Goaziou
958115c980
gnu: emacs-autothemer: Update to 0.2.10.
...
* gnu/packages/emacs-xyz.scm (emacs-autothemer): Update to 0.2.10.
2022-08-31 23:52:33 +02:00
Nicolas Goaziou
c362881546
gnu: emacs-vertico: Update to 0.26.
...
* gnu/packages/emacs-xyz.scm (emacs-vertico): Update to 0.26.
2022-08-31 23:52:32 +02:00
Nicolas Goaziou
ea4abf1b30
gnu: emacs-corfu: Update to 0.27.
...
* gnu/packages/emacs-xyz.scm (emacs-corfu): Update to 0.27.
2022-08-31 23:52:32 +02:00
Nicolas Goaziou
44e363b150
gnu: emacs-s: Update to 1.13.0.
...
* gnu/packages/emacs-xyz.scm (emacs-s): Update to 1.13.0.
2022-08-31 23:52:32 +02:00
Nicolas Goaziou
50c29dc11c
gnu: emacs-tramp: Update to 2.5.3.2.
...
* gnu/packages/emacs-xyz.scm (emacs-tramp): Update to 2.5.3.2.
2022-08-31 23:52:31 +02:00
jgart via Guix-patches via
5aa431ba20
gnu: python-simplejson: Update to 3.17.6.
...
* gnu/packages/python-xyz.scm (python-simplejson): Update to 3.17.6.
Signed-off-by: David Thompson <davet@gnu.org >
2022-08-31 17:15:36 -04:00
Ricardo Wurmus
3bf7bdccee
gnu: Add r-milor.
...
* gnu/packages/bioconductor.scm (r-milor): New variable.
2022-08-31 23:06:45 +02:00
Leo Famulari
58ff455328
gnu: Add linux-libre 5.19.
...
* gnu/packages/linux.scm (linux-libre-5.19-version,
linux-libre-5.19-gnu-revision, deblob-scripts-5.19,
linux-libre-5.19-pristine-source, linux-libre-5.19-source,
linux-libre-headers-5.19, linux-libre-5.19): New variables.
* gnu/packages/aux-files/linux-libre/5.19-arm.conf,
gnu/packages/aux-files/linux-libre/5.19-arm64.conf,
gnu/packages/aux-files/linux-libre/5.19-i686.conf,
gnu/packages/aux-files/linux-libre/5.19-x86_64.conf: New files.
* Makefile.am (AUX_FILES): Add them.
2022-08-31 15:00:45 -04:00
Alice BRENON
3f3abddeee
gnu: Add ghc-roman-numerals.
...
* gnu/packages/haskell-xyz.scm (ghc-roman-numerals): New variable.
Signed-off-by: David Thompson <davet@gnu.org >
2022-08-31 14:48:16 -04:00
Leo Famulari
13887e1f21
gnu: linux-libre 5.10: Update to 5.10.139.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.139.
(linux-libre-5.10-pristine-source): Update hash.
2022-08-31 14:14:34 -04:00
Maxim Cournoyer
5eb1686537
gnu: Add python-nanopb.
...
* gnu/packages/protobuf.scm (python-nanopb): New variable.
2022-08-31 10:33:42 -04:00
Maxim Cournoyer
cc3cc72d85
gnu: Add nanopb.
...
* gnu/packages/protobuf.scm (nanopb): New variable.
2022-08-31 09:23:39 -04:00
Maxim Cournoyer
2d2821672a
gnu: Add python-grpcio-tools.
...
* gnu/packages/rpc.scm (python-grpcio-tools): New variable.
2022-08-31 09:23:38 -04:00
Maxim Cournoyer
e57e7eaea0
gnu: python-grpcio: Update to 1.47.0.
...
* gnu/packages/rpc.scm (python-grpcio): Update to 1.47.0.
[source]{snippet}: Remove abseil-cpp from preserved bundled libraries.
Preserve xxhash.
[phases]: Delete trailing #t.
{use-system-libraries}: Set the GRPC_PYTHON_BUILD_SYSTEM_RE2 and
GRPC_PYTHON_BUILD_SYSTEM_ABSL environment variables to 1. Path setup.py.
[inputs]: Add abseil-cpp and re2.
2022-08-31 09:23:38 -04:00
Maxim Cournoyer
1b2ced40aa
gnu: abseil-cpp: Update to 20220623.0.
...
* gnu/packages/cpp.scm (abseil-cpp): Update to 20220623.0.
2022-08-31 09:23:38 -04:00
Arun Isaac
79415548f7
gnu: Add vpn-slice.
...
* gnu/packages/vpn.scm (vpn-slice): New variable.
2022-08-31 18:44:37 +05:30
Mathieu Othacehe
16a6cbe947
image: Add comments.
...
* gnu/image.scm: Add some comments across the whole module.
2022-08-31 14:59:43 +02:00
Andrew Whatson
c263cf3b36
gnu: emacs-flycheck-guile: Update to 0.4.
...
* gnu/packages/emacs-xyz.scm (emacs-flycheck-guile): Update to 0.4.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2022-08-31 14:49:18 +02:00
Petr Hodina
23152ff70f
gnu: Add fwupd.
...
* gnu/packages/firmware.scm (fwupd): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-31 13:04:46 +02:00
muradm
0bb0e84396
gnu: libcgroup: Update to 2.0.2.
...
* gnu/packages/linux.scm (libcgroup): Update to 2.0.2.
[source]: Project migrated to github.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-31 12:37:01 +02:00
Ludovic Courtès
67a6828b2b
pull: Create a version 3 manifest.
...
This makes the profile readable by older Guix instances. This is a
followup to c9fbd40785 .
Fixes <https://issues.guix.gnu.org/57306 >.
Reported by Arun Isaac <arunisaac@systemreboot.net >.
* guix/profiles.scm (%manifest-format-version): Export.
* guix/scripts/package.scm (build-and-use-profile): Add #:format-version
and pass it to 'profile-derivation'.
* guix/scripts/pull.scm (build-and-install): Pass #:format-version 3.
2022-08-31 12:34:10 +02:00
Ludovic Courtès
270e1b9e1e
reconfigure: Use 'current-channels' to obtain provenance data.
...
This reinstates a modified version of
b08439809f , which contained a thinko.
Previously, build-time metadata from (guix config) would be ignored when
available--e.g., when running /run/current-system/profile/bin/guix.
This is a followup to 316fc2acbb .
* guix/scripts/system/reconfigure.scm (check-forward-update): Use
'current-channels' rather than 'current-profile' + 'profile-channels'.
2022-08-31 11:40:06 +02:00
Ricardo Wurmus
36445e4d96
gnu: pigx-bsseq: Update to 0.1.8.
...
* gnu/packages/bioinformatics.scm (pigx-bsseq): Update to 0.1.8.
2022-08-31 09:12:03 +02:00
Mădălin Ionel Patrașcu
8c5246677c
gnu: r-dyngen: Update to 1.0.4.
...
* gnu/packages/bioinformatics.scm (r-dyngnen): Update to 1.0.4.
[source]: Change to cran-uri source.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2022-08-30 23:01:58 +02:00
Efraim Flashner
18861877c8
gnu: parallel: Update to 20220822.
...
* gnu/packages/parallel.scm (parallel): Update to 20220822.
2022-08-30 22:12:08 +03:00
Efraim Flashner
1dfa3a9fc8
gnu: qutebrowser: Update to 2.5.2.
...
* gnu/packages/web-browsers.scm (qutebrowser): Update to 2.5.2.
2022-08-30 22:12:08 +03:00
Efraim Flashner
c7df8a026c
gnu: translate-shell: Update to 0.9.7.
...
* gnu/packages/dictionaries.scm (translate-shell): Update to 0.9.7.
[arguments]: Remove trailing #t from phases.
2022-08-30 22:12:07 +03:00
Efraim Flashner
4fb1fb904b
gnu: git-annex: Update to 10.20220822.
...
* gnu/packages/haskell-apps.scm (git-annex): Update to 10.20220822.
[arguments]: Remove trailing #t from phases.
2022-08-30 22:11:59 +03:00
Efraim Flashner
9583cbf29c
gnu: tig: Update to 2.5.7.
...
* gnu/packages/version-control.scm (tig): Update to 2.5.7.
2022-08-30 21:46:46 +03:00
Efraim Flashner
16ee7f1f62
gnu: tree: Update to 2.0.3.
...
* gnu/packages/admin.scm (tree): Update to 2.0.3.
2022-08-30 21:34:20 +03:00
Mathieu Othacehe
73fb14c28a
tests: image: New test.
...
Add a new image test module to validate the image creation itself. The images
structures are validated using guile-parted. Checking the content of those
images is out of scope and should be performed in other modules (installation
for instance).
* gnu/tests/image.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
2022-08-30 19:29:58 +02:00
Mathieu Othacehe
6454164412
scripts: system: Check the image operating-system.
...
* guix/scripts/system.scm (process-action): Check that the provided image has
a defined operating-system.
2022-08-30 19:29:58 +02:00
Mathieu Othacehe
0518a88a4e
image: Remove an unused field.
...
* gnu/image.scm (<partition>)[device]: Remove it.
2022-08-30 19:29:58 +02:00
Mathieu Othacehe
bce7a28a0a
image: Perform more sanitizing.
...
* gnu/image.scm (validate-size, validate-partition-offset,
validate-partition-flags): New macros.
(<partition>)[size, offset, flags]: Sanitize those fields using the above
procedures respectively.
2022-08-30 19:29:58 +02:00
Mathieu Othacehe
192b7d0c0b
build: image: Make partition uuid optional.
...
The uuid field of <partition> defaults to #false. This should be reflected
when creating the partition.
* gnu/build/image.scm (make-ext-image): Make it optional.
2022-08-30 19:29:58 +02:00
Mathieu Othacehe
61bbff9d50
build: image: Remove unused variable.
...
* gnu/build/image.scm (make-ext-image): Remove the unused flags variable.
2022-08-30 19:29:58 +02:00
Marius Bakke
d62fc2cc83
gnu: rust-bootstrap: Explicitly use OpenSSL@1.1.
...
* gnu/packages/rust.scm (rust-bootstrap)[inputs]: Change from OPENSSL to
OPENSSL-1.1.
2022-08-30 19:08:00 +02:00
Marius Bakke
827b4117da
Merge branch 'master' into staging
2022-08-30 18:58:57 +02:00
Marius Bakke
db2444ad82
gnu: Introduce versioned 'openssl-1.1' variable.
...
...and use it in packages that do not yet support 3.0.
* gnu/packages/tls.scm (openssl): Rename to ...
(openssl-1.1): ... this.
(openssl/fixed): Inherit from OPENSSL-1.1.
(openssl-3.0): Likewise.
(openssl): Turn into alias for OPENSSL-1.1.
* gnu/packages/ruby.scm (ruby-2.6)[inputs]: Change from OPENSSL to OPENSSL-1.1.
(ruby-3.0)[inputs]: Change "openssl" input to OPENSSL.
(ruby-3.1): Inherit from RUBY-3.0.
* gnu/packages/python.scm (python-2.7)[inputs]: Change from OPENSSL to
OPENSSL-1.1.
(python-3.9)[inputs]: Replace "openssl" with OPENSSL.
* gnu/packages/python-crypto.scm (python-cryptography)[inputs]: Change from
OPENSSL to OPENSSL-1.1.
* gnu/packages/databases.scm (mariadb)[inputs]: Likewise.
* gnu/packages/node.scm (node)[native-inputs, inputs]: Likewise.
(node-lts)[native-inputs]: Likewise.
2022-08-30 18:42:26 +02:00
David Thompson
9b5b1dde32
services: gitolite: Relax permissions on service user home directory.
...
Fixes https://issues.guix.gnu.org/56444
* gnu/services/version-control.scm (gitolite-activation): Modify permissions
on home directory so that git group has read access.
Reported-by: Evgeny Pisemsky <evgeny@pisemsky.com >
Experienced by David Thompson for years, wondering what was wrong. Thanks for
finding the root cause, Evgeny! :)
2022-08-30 12:37:19 -04:00
msimonin
c19a432652
gnu: Add python-grid5000.
...
* gnu/packages/python-web.scm (python-grid5000): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-30 17:59:18 +02:00
Marius Bakke
b2696a7211
gnu: accountsservice: Actually run the test suite.
...
* gnu/packages/freedesktop.scm (accountsservice)[native-inputs]: Add PYTHON.
2022-08-30 17:59:18 +02:00
Marius Bakke
d2d3c8f9bf
gnu: accountsservice: Don't reference the build-time coreutils.
...
* gnu/packages/freedesktop.scm (accountsservice)[inputs]: Add COREUTILS-MINIMAL.
2022-08-30 17:59:18 +02:00
Marius Bakke
27e366292d
gnu: accountsservice: Remove obsolete input.
...
* gnu/packages/freedesktop.scm (accountsservice)[native-inputs]: Remove
INTLTOOL. Add GETTEXT-MINIMAL.
2022-08-30 17:59:18 +02:00
Marius Bakke
997a51bee8
gnu: mercurial: Update to 6.2.1.
...
* gnu/packages/version-control.scm (mercurial): Update to 6.2.1.
[source](patches): Add patch for compatibility with OpenSSL 3.0.
[arguments]: Patch /usr/bin/env and /bin/sh unconditionally in all tests.
Disable four more tests.
[inputs]: Change from PYTHON to PYTHON-WRAPPER.
* gnu/packages/patches/mercurial-openssl-compat.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-08-30 17:59:18 +02:00
Marius Bakke
77c07d9a61
gnu: babl: Update to 0.1.96.
...
* gnu/packages/gimp.scm (babl): Update to 0.1.96.
2022-08-30 17:59:18 +02:00
Efraim Flashner
466038b2e5
gnu: vim: Update to 9.0.0325.
...
* gnu/packages/vim.scm (vim): Update to 9.0.0325.
2022-08-30 16:48:29 +03:00
Nicolas Graves
47c11772df
etc: Update yasnippet build system list.
...
* etc/snippets/yas/scheme-mode/guix-package (build-system): Add
chicken-build-system, minetest-build-system, rebar-build-system
and renpy-build-system.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-30 11:50:15 +02:00
Nicolas Graves
0928b82070
etc: Add tempel snippet for :phases.
...
* etc/snippets/tempel/scheme-mode (:phases, add-before\ , add-after\ )
(replace\ ): New snippets.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-30 11:50:15 +02:00
Nicolas Graves
c4acaf4120
etc: Add tempel snippets.
...
* etc/snippets/tempel/scheme-mode: New file.
* etc/snippets/tempel/text-mode: New file.
* etc/snippets/scheme-mode: Moved from here...
* etc/snippets/yas/scheme-mode: ... to here.
* etc/snippets/text-mode: Moved from here...
* etc/snippets/yas/text-mode: ... to here.
* doc/contributing.texi ("The Perfect Setup"): Adjust yasnippet setup
accordingly. Add tempel setup.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-30 11:50:14 +02:00
Tobias Kortkamp
6beadc82df
gnu: wayland-protocols: Fix cross-compilation
...
* gnu/packages/freedesktop.scm (wayland-protocols): Fix cross-compilation
[native-inputs]: Add pkg-config-for-build and wayland.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 09:14:40 +02:00
Maxime Devos
01df491f6d
gnu: yt-dlp: Don't ask to run tests when cross-compiling.
...
* gnu/packages/video.scm
(yt-dlp)[arguments]{#:tests?}: When cross-compiling, set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:58:53 +02:00
Maxime Devos
f60653a0ef
gnu: rust: Don't ask to run tests when cross-compiling.
...
* gnu/packages/rust.scm
(rust-1.57)[arguments]{#:tests?}: When cross-compiling, set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:57 +02:00
Maxime Devos
d8b960983d
gnu: ruby-rubocop: Don't ask to run tests when cross-compiling.
...
* gnu/packages/ruby.scm
(ruby-rubocop)[arguments]{#:tests?}: When cross-compiling, set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:57 +02:00
Maxime Devos
d720aa4a88
gnu: python-jaraco-context: Don't ask to run tests when cross-compiling.
...
* gnu/packages/python-xyz.scm
(python-jaraco-context)[arguments]{#:tests?}: When cross-compiling, set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:57 +02:00
Maxime Devos
321620d15b
gnu: python-jupyter-client: Don't ask to run tests when cross-compiling.
...
* gnu/packages/python-xyz.scm
(python-jupyter-client)[arguments]{#:tests?}: When cross-compiling, set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:57 +02:00
Maxime Devos
7d49984da4
gnu: python-pip-run: Don't ask to run tests when cross-compiling.
...
* gnu/packages/python-xyz.scm
(python-pip-run)[arguments]{#:tests?}: When cross-compiling, set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:57 +02:00
Maxime Devos
c548ff6a30
gnu: python-jaraco-functools: Don't ask to run tests when cross-compiling.
...
* gnu/packages/python-xyz.scm
(python-jaraco-functools)[arguments]{#:tests?}: When cross-compiling, set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:56 +02:00
Maxime Devos
dbd5612c90
gnu: python-path: Don't ask to run tests when cross-compiling.
...
* gnu/packages/python-xyz.scm
(python-path)[arguments]{#:tests?}: When cross-compiling, set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:56 +02:00
Maxime Devos
80a75c5357
gnu: python-fonttools-full: Don't ask to run tests when cross-compiling.
...
* gnu/packages/python-xyz.scm
(python-fonttools-full)[arguments]{#:tests?}: When cross-compiling, set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:56 +02:00
Maxime Devos
0168c65de4
gnu: proot: Don't ask to run tests when cross-compiling.
...
* gnu/packages/linux.scm
(proot)[arguments]{#:tests?}: When cross-compiling, set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:56 +02:00
Maxime Devos
5192bead32
gnu: julia-interpolations: Don't ask to run tests when cross-compiling.
...
* gnu/packages/julia-xyz.scm
(julia-interpolations)[arguments]{#:tests?}: When cross-compiling,
set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:56 +02:00
Maxime Devos
55e88a2759
gnu: julia-reversediff: Don't ask to run tests when cross-compiling.
...
* gnu/packages/julia-xyz.scm
(julia-reversediff)[arguments]{#:tests?}: When cross-compiling,
set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:55 +02:00
Maxime Devos
d38a002471
gnu: julia-forwarddiff: Don't ask to run tests when cross-compiling.
...
* gnu/packages/julia-xyz.scm
(julia-forwarddiff)[arguments]{#:tests?}: When cross-compiling,
set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:55 +02:00
Maxime Devos
a282c9844c
gnu: julia-arrayinterface: Don't ask to run tests when cross-compiling.
...
* gnu/packages/julia-xyz.scm
(julia-arrayinterface)[arguments]{#:tests?}: When cross-compiling,
set to #false.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:55 +02:00
Maxime Devos
81681f2d4a
gnu: ghc-statistics: Properly enable tests.
...
The comment states there are test failures and hence it is implied that the
intent was to disable tests, not enable them, but tests pass and the code
below enabled tests instead of disabling them.
Remove #:tests? #true to satisfy the tests-true linter.
* gnu/packages/haskell-xyz.scm
(ghc-statistics)[arguments]{#:tests?}: Remove.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:57:55 +02:00
Thiago Jung Bauermann
65ce5fe2fb
guix system: Use standard cross and native build options.
...
This change prevents guix system from erroring out with an ugly backtrace
when it's passed an invalid value to the “--system” or “--target”
option. It also adds the “--list-systems” and “--list-targets” options.
The manual section about guix system doesn't mention the “--target” option,
so add it there.
* guix/scripts/system (show-help): Call show-cross-build-options-help and
show-native-build-options-help.
(%options): Remove own implementation of “system” and “target” options and
use the ones in %standard-cross-build-options and
%standard-native-build-options.
* doc/guix.texi (Invoking guix system): Document “--target” option.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-30 08:55:16 +02:00
Mathieu Othacehe
93ed34977e
bootloader: Wrap lines.
...
* gnu/bootloader (<bootloader-configuration>): Wrap lines, no functional
change.
2022-08-30 08:51:12 +02:00
Reza Alizadeh Majd
f126f23b13
bootloader: Add device-tree-support? option.
...
In some specific cases where the device tree file is already loaded in RAM, it
can be preferable that the bootloader does not try to use a device tree from
the Linux kernel tree.
* gnu/bootloader.scm (<bootloader-configuration>)[device-tree-support?]: New field.
* gnu/bootloader/extlinux.scm (extlinux-configuration-file): Add FDTDIR line
based on <device-tree-support?> field of <bootloader-configuration>.
* doc/guix.texi (Bootloader Configuration)[device-tree-support?]: Add
documentation for the new field.
2022-08-30 08:50:44 +02:00
宋文武
e214e87cc5
Revert "reconfigure: Use 'current-channels' to obtain provenance data."
...
This fixes <https://issues.guix.gnu.org/57480 >.
This reverts commit b08439809f .
2022-08-30 14:44:07 +08:00
Tomasz Jeneralczyk
9b8507df11
gnu: Add hydrus-network.
...
* gnu/packages/image-viewers.scm (hydrus-network): Add variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-08-30 00:40:05 +02:00
Tomasz Jeneralczyk
f82a8873d3
gnu: python-cloudscraper: Update to 1.2.60.
...
* gnu/packages/python-web.scm (python-cloudscraper): Update to 1.2.60
[propagated-inputs]: Change python-pyparsing to its mainstream version.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-08-30 00:40:05 +02:00
Tomasz Jeneralczyk
5920196e47
gnu: opencv: Build Python bindings.
...
* gnu/packages/image-processing.scm (opencv)[arguments]: Change variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-30 00:40:05 +02:00
Tomasz Jeneralczyk
619af9f307
gnu: Add python-mpv.
...
* gnu/packages/python-xyz.scm (python-mpv): Add variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-08-30 00:40:05 +02:00
Tomasz Jeneralczyk
e1ea628776
gnu: Add python-xvfbwrapper.
...
* gnu/packages/python-check.scm (python-xvfbwrapper): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-30 00:40:05 +02:00
Tomasz Jeneralczyk
05246c691b
gnu: Add swftools.
...
* gnu/packages/animation.scm (swftools): Add variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-08-30 00:40:04 +02:00
Paul A. Patience
1cf6cb9503
gnu: Add mmg.
...
* gnu/packages/graphics.scm (mmg): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-30 00:40:04 +02:00
Ludovic Courtès
b08439809f
reconfigure: Use 'current-channels' to obtain provenance data.
...
Previously, build-time metadata from (guix config) would be ignored when
available--e.g., when running /run/current-system/profile/bin/guix.
This is a followup to 316fc2acbb .
* guix/scripts/system/reconfigure.scm (check-forward-update): Use
'current-channels' rather than 'current-profile' + 'profile-channels'.
2022-08-30 00:40:04 +02:00
Ludovic Courtès
9096bc28a3
services: provenance: Use 'current-channels' to obtain provenance data.
...
Previously, build-time metadata from (guix config) would be ignored when
available--e.g., when running /run/current-system/profile/bin/guix.
This is a followup to 316fc2acbb .
* gnu/services.scm (provenance-entry): Use 'current-channels' instead of
'current-profile' + 'profile-channels'.
2022-08-30 00:40:04 +02:00
Marius Bakke
eb52b240eb
gnu: Add missing copyright line.
...
This is a follow-up to commit 3e0abde17b .
* gnu/tests/virtualization.scm: Add copyright header for myself.
2022-08-29 21:21:40 +02:00
Marius Bakke
3e0abde17b
tests: libvirt: Ensure the default network can be started.
...
* gnu/tests/virtualization.scm (run-libvirt-test): Run commands to create and
start the default network.
2022-08-29 21:15:58 +02:00
Lars-Dominik Braun
acbf2f9def
gnu: libvirt: Use absolute dnsmasq.
...
Fixes <https://bugs.gnu.org/57272 >.
Reported by Lars-Dominik Braun <lars@6xq.net >.
* gnu/packages/virtualization.scm (libvirt)[arguments]: Substitute the
absolute dnsmasq file name. Disable one test.
Co-authored-by: Marius Bakke <marius@gnu.org >
2022-08-29 21:15:58 +02:00
gyara
1cf3737093
gnu: rust-regex: Update to 1.6.0 [fixes CVE-2022-24713].
...
* gnu/packages/crates-io.scm (rust-regex-1): Update to 1.6.0.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 18:29:35 +02:00
gyara
1063d918b9
gnu: rust-regex-syntax: Update to 0.6.27.
...
* gnu/packages/crates-io.scm (rust-regex-syntax-0.6): Update to 0.6.27.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 18:29:35 +02:00
Konrad Hinsen
9529384c92
gnu: snakemake-7: Convert dependencies to propagated-inputs
...
* gnu/packages/python-xyz.scm (snakemake-7)[inputs]: Change to ...
[propagated-inputs]: ... this, to ensure that "python -m snakemake"
works (because snakemake uses it internally).
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 18:22:59 +02:00
Konrad Hinsen
6a31fb6e7b
gnu: snakemake-6: Convert dependencies to propagated-inputs
...
* gnu/packages/python-xyz.scm (snakemake-6)[inputs]: Change to ...
[propagated-inputs]: ... this, to ensure that "python -m snakemake"
works (because snakemake uses it internally).
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 18:22:59 +02:00
Konrad Hinsen
5831155175
gnu: snakemake-7: Fix cluster execution bug
...
* gnu/packages/python-xyz.scm (snakemake-7)[arguments]: Revise the patch for
the cluster execution script
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 18:22:58 +02:00
Maxime Devos
52aa21cc9a
gnu: gnupg: Use mirror URL.
...
In commit 38747a27f3 , the package switched from
a mirror:// URL to a ftp:// URL, but there doesn't appear to have been any
particular reason for that.
* gnu/packages/gnupg.scm (gnupg)[source]{uri}: Use a mirror:// again.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 18:22:58 +02:00
Michael Rohleder
309935a016
gnu: uncrustify: Update to 0.75.1.
...
* gnu/packages/code.scm (uncrustify): Update to 0.75.1.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 18:22:58 +02:00
Michael Rohleder
ed9558b17a
gnu: rr: Update to 5.6.0.
...
* gnu/packages/debug.scm (rr): Update to 5.6.0.
[arguments]<#:configure-flags>: Add -rpath to zlib to satisfy
validate-runpath.
[inputs]: Add zlib.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 18:22:58 +02:00
Luis Felipe
72cfcf1735
gnu: Add python-django-cleanup.
...
* gnu/packages/django.scm (python-django-cleanup): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 18:22:58 +02:00
Clément Lassieur
6e83d294ce
gnu: emacs-clang-format: Remove inherited propagated inputs.
...
* gnu/packages/llvm.scm (emacs-clang-format)[propagated-inputs]: Remove them.
2022-08-29 18:05:39 +02:00
Marius Bakke
be01b13fb7
gnu: zathura-pdf-mupdf: Remove input labels.
...
* gnu/packages/pdf.scm (zathura-pdf-mupdf)[inputs]: Remove labels.
2022-08-29 17:49:58 +02:00
Marius Bakke
7c9cf349f3
gnu: zathura-pdf-mupdf: Update to 0.3.9.
...
* gnu/packages/pdf.scm (zathura-pdf-mupdf): Update to 0.3.9.
[inputs]: Add GUMBO-PARSER and TESSERACT-OCR.
[arguments]: Remove obsolete configure flag. Adjust mupdf substitutions.
2022-08-29 17:49:58 +02:00
Pierre-Henry Fröhring
f26b9d5ced
gnu: mupdf: Update to 1.20.3.
...
* Copy/paste is fixed.
The build now uses the patched version of freeglut that is included in the
thirdparty directory so that copy/paste works.
* gnu/packages/pdf.scm (mupdf)[source](snippet): Preserve freeglut.
[inputs]: Add LIBXRANDR and LIBXI.
[arguments]: Explicitly add configure flags for system libraries.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 17:49:58 +02:00
Marius Bakke
608f9efc34
gnu: tesseract-ocr: Propagate leptonica.
...
* gnu/packages/ocr.scm (tesseract-ocr)[inputs]: Move LEPTONICA ...
[propagated-inputs]: ... here.
2022-08-29 17:49:58 +02:00
Remco van 't Veer
83c86fa446
gnu: ruby: Replace with 2.7.6 [security fixes].
...
Includes fixes for: CVE-2022-28739, CVE-2021-41816, and CVE-2021-41817.
* gnu/packages/ruby.scm (ruby-2.7-fixed): New variable.
(ruby-2.7)[replacement]: Graft.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 16:55:30 +02:00
Remco van 't Veer
939c998160
gnu: ruby: Update to 3.1.2 [security fixes].
...
Includes fixes for: CVE-2022-28738, and CVE-2022-28739.
* gnu/packages/ruby.scm (ruby-3.1): Update to 3.1.2.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 16:55:30 +02:00
Remco van 't Veer
2654acea27
gnu: ruby: Update to 3.0.4 [security fixes].
...
Includes fixes for: CVE-2022-28738, CVE-2022-28739, CVE-2021-41819,
CVE-2021-41816, and CVE-2021-41817.
* gnu/packages/ruby.scm (ruby-3.0): Update to 3.0.4.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 16:55:30 +02:00
Remco van 't Veer
a500e1a061
gnu: ruby: Update to 2.6.10 [security fixes].
...
Includes fixes for: CVE-2022-28739, CVE-2021-41819, CVE-2021-41817,
CVE-2021-31810, CVE-2021-32066, CVE-2021-28965, CVE-2020-25613, and
CVE-2020-10933.
* gnu/packages/ruby.scm (ruby-2.6): Update to 2.6.10.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-29 16:55:30 +02:00
Marius Bakke
8ab7125265
gnu: Remove ruby@2.5.
...
* gnu/packages/ruby.scm (ruby-2.5): Remove variable.
2022-08-29 16:55:30 +02:00
Marius Bakke
ae9b3d7cf1
gnu: Remove ruby@2.4.
...
* gnu/packages/ruby.scm (ruby-2.4): Remove variable.
2022-08-29 16:55:30 +02:00
Efraim Flashner
f4f225e482
gnu: accountsservice: Adjust inputs.
...
This fixes the builds of gdm and some other packages.
* gnu/packages/freedesktop.scm (accountsservice)[inputs]: Move polkit ...
[propagated-inputs]: ... to here.
2022-08-29 17:18:14 +03:00
jgart
3aac843826
gnu: Add cl-safe-read.
...
* gnu/packages/lisp-xyz.scm (cl-safe-read, ecl-safe-read, sbcl-safe-read): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-29 16:02:09 +02:00
Nikolay Korotkiy
cc6c079230
gnu: cmus: Update to 2.10.0.
...
* gnu/packages/music.scm (cmus): Update to 2.10.0.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-08-29 16:25:08 +03:00
Efraim Flashner
36078f15ce
gnu: sddm: Fix building with newer qt-5.
...
* gnu/packages/display-managers.scm (sddm)[source]: Add snippet to
adjust to newer qt-5 code.
2022-08-29 14:34:57 +03:00
Efraim Flashner
44403ca0eb
Revert "gnu: libatomic-ops: Fix test suite on riscv64-linux."
...
This reverts commit 84d191ea30 .
This isn't needed with the newer version of libatomic-ops.
2022-08-29 12:23:56 +03:00
Nicolas Goaziou
a52473e219
gnu: wireshark: Update to 3.6.7.
...
* gnu/packages/networking.scm (wireshark): Update to 3.6.7.
2022-08-29 10:32:42 +02:00
Efraim Flashner
de66e21580
gnu: r-keggrest: Update to 1.36.3.
...
* gnu/packages/bioconductor.scm (r-keggrest): Update to 1.36.3.
2022-08-29 11:26:56 +03:00
Andrew Tropin
75d7317290
gnu: fennel: Update to 1.2.0.
...
* gnu/packages/lua.scm (fennel): Update to 1.2.0.
[arguments]: Migrate to gexps.
2022-08-29 09:55:44 +03:00
Maxim Cournoyer
0ea62e84a7
services: Add lightdm-service-type.
...
* gnu/services/lightdm.scm: New service.
* tests/services/lightdm.scm: Test it.
* doc/guix.texi (X Window): Document it.
* gnu/local.mk (GNU_SYSTEM_MODULES): Register it.
Co-authored-by: L p R n d n <guix@lprndn.info >
Co-authored-by: Ricardo Wurmus <rekado@elephly.net >
2022-08-28 22:28:47 -04:00
Maxim Cournoyer
42fee6d0f1
build: marionette: Add support for Tesseract OCR.
...
* gnu/build/marionette.scm (invoke-ocrad-ocr): New procedure.
(invoke-tesseract-ocr): Likewise.
(marionette-screen-text): Rename the #:ocrad argument to #:ocr. Dispatch the
matching OCR invocation procedure.
(wait-for-screen-text): Rename the #:ocrad argument to #:ocr.
* gnu/tests/base.scm (run-basic-test): Adjust accordingly.
* gnu/tests/install.scm (enter-luks-passphrase): Likewise.
(enter-luks-passphrase-for-home): Likewise.
2022-08-28 22:10:20 -04:00
Maxim Cournoyer
697b797160
marionette: Improve the error message of 'wait-for-screen-text'.
...
* gnu/build/marionette.scm (wait-for-screen-text): Return the last OCR'd text
when the predicate fails to match instead of the not useful predicate object.
2022-08-28 22:10:20 -04:00
Maxim Cournoyer
b096b939f7
gnu: lightdm: Apply patch to fix color depth issue with VNC.
...
* gnu/packages/patches/lightdm-vnc-color-depth.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/display-managers.scm (lightdm): Apply it.
2022-08-28 22:10:20 -04:00
Maxim Cournoyer
a4fd1840ab
gnu: lightdm: Apply patch to allow using VNC options.
...
* gnu/packages/patches/lightdm-arguments-ordering.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/display-managers.scm (lightdm): Apply it.
2022-08-28 22:10:20 -04:00
Maxim Cournoyer
da3c784c68
gnu: lightdm: Apply patch to fix a problem with VNC integration.
...
* gnu/packages/patches/lightdm-vncserver-check.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/display-managers.scm (lightdm): Apply it.
2022-08-28 22:10:20 -04:00
Maxim Cournoyer
0e76781df4
gnu: lightdm-gtk-greeter: Adjust --enable-at-spi-command value.
...
* gnu/packages/display-managers.scm (lightdm-gtk-greeter)
[configure-flags]: Add the '--launch-immediately' option to the
at-spi-bus-launcher to match what is used in the source.
2022-08-28 22:10:19 -04:00
Maxim Cournoyer
20c8fb042c
gnu: lightdm-gtk-greeter: Adjust default config file path.
...
* gnu/packages/display-managers.scm (lightdm-gtk-greeter)
[phases]{customize-default-config-path}: New phase.
2022-08-28 22:10:19 -04:00
Maxim Cournoyer
d0046bc13b
gnu: lightdm-gtk-greeter: Enable libklavier support.
...
* gnu/packages/display-managers.scm (lightdm-gtk-greeter)
[configure-flags]: Add '--with-libxklavier'.
[inputs]: Add libxklavier.
2022-08-28 22:10:19 -04:00
Maxim Cournoyer
0d23e9cda2
gnu: lightdm-gtk-greeter: Use the glib-or-gtk-wrap phase as-is.
...
* gnu/packages/display-managers.scm (lightdm-gtk-greeter)
[configure-flags]: Install binaries to bin/, so the wrap phase of glib-or-gtk
handles them.
[phases]{wrap-program}: Delete.
{custom-wrap}: New phase, wrapping the wrapper with a few extra environment
variables.
2022-08-28 22:10:19 -04:00
Maxim Cournoyer
9376411fbe
gnu: lightdm-gtk-greeter: Add GDK_PIXBUF_MODULE_FILE to wrapper.
...
* gnu/packages/display-managers.scm (lightdm-gtk-greeter)
[build-system]: Use glib-or-gtk-build-system.
[phases]{wrap-program}: Add GDK_PIXBUF_MODULE_FILE to wrapper.
[inputs]: Add librsvg.
2022-08-28 22:10:19 -04:00
Maxim Cournoyer
6da5eed4e7
gnu: accountsservice: Provide a means to locate extensions.
...
* gnu/packages/patches/accountsservice-extensions.patch: New patch.
* gnu/packages/freedesktop.scm (accountsservice)[source]: Apply it.
[phases]{wrap-with-xdg-data-dirs}: New phase.
2022-08-28 22:10:18 -04:00
Maxim Cournoyer
12bb1c6db1
gnu: accountsservice: Update to 22.08.8, enable doc and test suite.
...
* gnu/packages/freedesktop.scm (accountsservice): Update to 22.08.8.
[tests?]: Delete argument.
[configure-flags]: Remove obsolete "-Dsystemd" flag. Add "-Ddocbook=true" and
"-Dgtk_doc=true".
[phases]{patch-docbook-references}: New phase.
{patch-/bin/cat}: Delete and merge into...
[patch-paths]: ... this phase, renamed from pre-configure. Use
search-input-file.
[native-inputs]: Add docbook-xml-4.1.2, docbook-xsl, gtk-doc, libxml2,
libxslt, python-dbusmock, python-pygobject, vala and xmlto.
2022-08-28 22:10:18 -04:00
muradm
3c2d2b4538
gnu: security: Add fail2ban-service-type.
...
* gnu/services/security.scm: New module.
* gnu/tests/security.scm: New module.
* gnu/local.mk: Add new security module and tests.
* doc/guix.text: Add fail2ban-service-type documentation.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-08-28 21:46:30 -04:00
Maxim Cournoyer
ba0dbe3bf2
gexp: directory-union: Fix documentation.
...
* guix/gexp.scm (directory-union): Fix documentation.
2022-08-28 21:14:18 -04:00
Josselin Poiret
3294fa2ba4
tests: Add test for menu-entry roundtrips as sexps.
...
* tests/boot-parameters.scm (%uuid-menu-entry,
%file-system-label-menu-entry): New variables.
("menu-entry roundtrip, uuid", "menu-entry roundtrip,
file-system-label"): New tests.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-28 23:37:28 +02:00
Josselin Poiret
0811d2cb8d
bootloader: Convert device in menu-entry to proper sexp.
...
Previously, menu-entry->sexp didn't try to convert `device` to a
proper sexp, which was inserted directly into the boot parameters
G-exp, leading to a G-exp input error. Now convert both uuid and
file-system-label possibilities to sexps, and add parsing code to
sexp->menu-entry. This fixes #57307 .
* gnu/bootloader.scm (menu-entry->sexp, sexp->menu-entry): Take
non-string devices into account.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-28 23:37:28 +02:00
Nicolas Goaziou
b9322d7819
gnu: emacs-crdt: Update to 0.3.3.
...
* gnu/packages/emacs-xyz.scm (emacs-crdt): Update to 0.3.3.
2022-08-28 22:46:12 +02:00
Efraim Flashner
20fb55364e
gnu: libunwind-julia: Skip tests.
...
* gnu/packages/julia.scm (libunwind-julia)[arguments]: Skip tests.
2022-08-28 21:42:10 +03:00
Liliana Marie Prikler
f592decd4d
gnu: Remove shlomif-cmake-modules.
...
This origin was added for the now removed fortune-mod, so let's remove it
as well.
* gnu/packages/games.scm (shlomif-cmake-modules): Delete variable.
2022-08-28 19:17:28 +02:00
Liliana Marie Prikler
5e17480574
gnu: Remove rinutils.
...
This package was introduced as native input to the now removed fortune-mod,
so let's remove it as well.
* gnu/packages/games.scm (rinutils): Delete variable.
2022-08-28 19:17:28 +02:00
Liliana Marie Prikler
6b6b947b61
gnu: Remove fortune-mod.
...
Since the addition of fortune-jkirchartz, it is no longer necessary to
keep around a package that propagates various non-nice things.
For a complete list, see <https://bugs.gnu.org/54691 >.
* gnu/packages/games.scm (fortune-mod): Delete variable.
2022-08-28 19:17:28 +02:00
Liliana Marie Prikler
560b365c2c
gnu: Add fortunes-jkirchartz.
...
* gnu/packages/toys.scm (fortunes-jkirchartz): New variable.
2022-08-28 19:17:28 +02:00
Liliana Marie Prikler
2a010ba81d
gnu: Add daikichi.
...
* gnu/packages/toys.scm (daikichi): New variable.
2022-08-28 19:17:27 +02:00
Marius Bakke
dedbaa3a69
Merge branch 'master' into staging
2022-08-28 15:43:30 +02:00
Marius Bakke
57f8f69562
gnu: gnome-shell: Adjust for polkit 121.
...
* gnu/packages/patches/gnome-shell-polkit-autocleanup.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/gnome.scm (gnome-shell)[source](patches): New field.
2022-08-28 15:41:49 +02:00
Marius Bakke
a44e08337d
gnu: gnome-maps: Update to 42.2.
...
* gnu/packages/geo.scm (gnome-maps): Update to 42.2.
[inputs]: Change from LIBGWEATHER to LIBGWEATHER4.
2022-08-28 15:41:49 +02:00
Marius Bakke
17f646aeba
gnu: Add libgweather4.
...
* gnu/packages/gnome.scm (libgweather4): New variable.
2022-08-28 15:41:49 +02:00
Marius Bakke
134a29fc08
gnu: libgweather: Remove obsolete input.
...
* gnu/packages/gnome.scm (libgweather)[native-inputs]: Remove INTLTOOL. Add
GETTEXT-MINIMAL.
2022-08-28 15:41:49 +02:00
Marius Bakke
d9c7321255
gnu: libgweather: Remove input labels.
...
* gnu/packages/gnome.scm (libgweather)[arguments]: Use G-expression and
SEARCH-INPUT-DIRECTORY.
[native-inputs, propagated-inputs]: Remove labels.
2022-08-28 15:41:49 +02:00
Efraim Flashner
444c300e3e
gnu: r-genomeinfodb: Update to 1.32.3.
...
* gnu/packages/bioconductor.scm (r-genomeinfodb): Update to 1.32.3.
2022-08-28 15:47:58 +03:00
Efraim Flashner
0aeedfb89a
gnu: webkit: Update to 2.36.7.
...
* gnu/packages/webkit.scm (%webkit-version, webkitgtk, wpewebkit):
Update to 2.36.7.
2022-08-28 14:47:14 +03:00
Efraim Flashner
10f0d0766c
gnu: r-iranges: Update to 2.30.1.
...
* gnu/packages/bioconductor.scm (r-iranges): Update to 2.30.1.
2022-08-28 13:29:05 +03:00
Efraim Flashner
5bfe389a6e
gnu: imlib2: Update to 1.9.1.
...
* gnu/packages/image.scm (imlib2): Update to 1.9.1.
2022-08-28 12:17:21 +03:00
Efraim Flashner
84d191ea30
gnu: libatomic-ops: Fix test suite on riscv64-linux.
...
* gnu/packages/bdw-gc.scm (libatomic-ops)[arguments]: When building for
riscv64-linux add a configure-flag to link libatomic.
2022-08-28 11:29:20 +03:00
Efraim Flashner
8df29c26ba
gnu: ruby-ffi: Update to 1.15.5.
...
* gnu/packages/libffi.scm (ruby-ffi): Update to 1.15.5.
[arguments]: Remove custom 'do-not-depend-on-ccache phase. Adjust custom
'remove-git-ls-files phase to changes in the code. Remove trailing #t
from phases.
2022-08-28 10:23:37 +03:00
Nicolas Goaziou
9ad4d90a61
gnu: emacs-cider: Update to 1.5.0.
...
* gnu/packages/emacs-xyz.scm (emacs-cider): Update to 1.5.0.
[arguments]<#:phases>: Remove PATCH-EL-FILES phase to prevent a build failure.
2022-08-28 01:45:49 +02:00
Nicolas Goaziou
9779cf046e
gnu: fet: Update to 6.5.7.
...
* gnu/packages/education.scm (fet): Update to 6.5.7.
2022-08-28 01:09:30 +02:00
jonscoresby---
b0d64a81dc
gnu: qtile: Install .desktop file.
...
* gnu/packages/wm.scm (qtile)[arguments]: Add install-xsession phase.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-27 23:48:56 +02:00
Zhu Zihao
69820ecfd9
gnu: qtwebengine: Fix QTWEBENGINEPROCESS_PATH specification.
...
* gnu/packages/qt.scm (qtwebengine)[native-search-paths]: Use
"lib/qt6/libexec/QtWebEngineProcess" for search path.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-27 23:48:56 +02:00
Maxime Devos
9f8f34a16a
gnu: samba: Update to 4.16.4.
...
As a reproducibility check, you can check the hash:
$ guix hash -r $(./pre-inst-env guix build samba --no-grafts --system=x86_64-linux)
1mg3nh705pbiz3ihq8jzkmjb15m6y8zjnzyr4hxmbciv7frgykk0
I've checked that it's correctly signed, and I've tried to verify that the PGP
key is correct -- searching for 'Samba Distribution Verification Key', the
websites of the first search results have the same key:
* https://www.linuxcompatible.org/story/samba-4150rc5-released/
* https://wiki.samba.org/index.php/Samba_4.12_Features_added/changed
* https://www.mail-archive.com/samba-announce@lists.samba.org/msg00562.html
* https://wiki.linuxfromscratch.org/blfs/ticket/14748
https://groups.google.com/g/linux.samba/c/k3xaN0TIcQU has a different key,
but as mentioned on the previous locations, the key has changed.
I have also checked the source code diff (using diffoscope) between the the
current version and the previous, nothing appears 'suspicious' (with the
caveat that it is written in C).
According to "guix refresh -l" there aren't too many dependents. I'm
currently rebuilding them, no failures so far except for lxde, but it already
failed to build before this patch.
* gnu/packages/samba.scm (samba): Update to 4.16.4. To help future updaters,
add the current PGP fingerprint in a comment.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-27 23:48:56 +02:00
Marius Bakke
59bbf7e86c
gnu: scons: Update to 4.4.0.
...
* gnu/packages/patches/scons-test-environment.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/build-tools.scm (scons): Update to 4.4.0.
[source](patches): New field.
[arguments]: Adjust bootstrap for the new version. Enable tests.
[native-inputs]: Add PYTHON-WHEEL and PYTHON-PSUTIL.
(scons-3): New variable.
(scons-python2): Inherit from it.
* gnu/packages/web.scm (serf)[arguments]: Stick with SCONS-3 to prevent rebuilds.
2022-08-27 23:48:56 +02:00
Marius Bakke
ada35de38f
gnu: scons: Move to (gnu packages build-tools).
...
* gnu/packages/python-xyz.scm (scons, scons-python2): Move from here ...
* gnu/packages/build-tools.scm (scons, scons-python2): ... to here.
* gnu/packages/direct-connect.scm, gnu/packages/disk.scm,
gnu/packages/game-development.scm, gnu/packages/gps.scm,
gnu/packages/image.scm, gnu/packages/installers.scm, gnu/packages/web.scm,
gnu/packages/xdisorg.scm: Adjust module imports accordingly.
* guix/build-system/scons.scm (default-scons): Likewise.
2022-08-27 23:48:56 +02:00
Marius Bakke
34625246e4
gnu: Remove unused module import.
...
* gnu/packages/gtk.scm: Don't import (gnu packages build-tools).
2022-08-27 23:48:56 +02:00
Marius Bakke
3e8769f3c9
gnu: realmd: Remove input labels.
...
* gnu/packages/admin.scm (realmd)[native-inputs]: Remove labels.
2022-08-27 23:48:56 +02:00
Marius Bakke
fb3d90b8f3
gnu: gst-plugins-base: Propagate gudev.
...
This is a follow-up to commit f1e8cc6a98 .
* gnu/packages/gstreamer.scm (gst-plugins-base)[inputs]: Move LIBGUDEV ...
[propagated-inputs]: ... here.
2022-08-27 16:15:53 +02:00
Marius Bakke
bff11d6ac2
gnu: gjs: Update to 1.72.2.
...
* gnu/packages/gnome.scm (gjs): Update to 1.72.2.
[arguments]: Remove #:meson.
[propagated-inputs]: Change from MOZJS-78 to MOZJS-91.
2022-08-27 15:49:48 +02:00
Nicolas Goaziou
b594c7354c
gnu: emacs-arduino-mode: Slightly improve description.
...
* gnu/packages/emacs-xyz.scm (emacs-arduino-mode)[description]: Make it a full
sentence, and mention Org Babel support.
2022-08-27 11:27:04 +02:00
Nicolas Goaziou
b07180a13b
gnu: emacs-arduino-mode: Update to 1.3.0-0-652c6a3.
...
* gnu/packages/emacs-xyz.scm (emacs-arduino-mode): Update to 1.3.0-0-652c6a3.
[source]: Move upstream to repo.or.cz.
[arguments]: Remove unnecessary phases.
[home-page]: Update to repo.or.cz.
2022-08-27 11:23:58 +02:00
Nicolas Goaziou
92f64f833a
gnu: emacs-org-contrib: Update to 0.4.
...
* gnu/packages/emacs-xyz.scm (emacs-org-contrib): Update to 0.4.
[source]: Remove now unnecessary snippet.
[propagated-inputs]: Remove EMACS-ARDUINO-MODE.
2022-08-27 11:16:54 +02:00
Arun Isaac
5299ee228f
gnu: Add emacs-alarm-clock.
...
* gnu/packages/emacs-xyz.scm (emacs-alarm-clock): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-27 10:41:36 +02:00
Arun Isaac
5655a84779
gnu: Add emacs-tamil99.
...
* gnu/packages/emacs-xyz.scm (emacs-tamil99): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-27 10:29:03 +02:00
jgart
2026a967f7
gnu: emacs-lpy: Update to ce78a46.
...
* gnu/packages/emacs-xyz.scm (emacs-lpy): Update to ce78a46.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-27 10:13:23 +02:00
Nicolas Graves via Guix-patches via
ba1612d81c
gnu: Add emacs-consult-org-roam.
...
* gnu/packages/emacs-xyz.scm (emacs-consult-org-roam): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-27 10:13:23 +02:00
jgart
1f9a4f79f6
gnu: Add emacs-drag-stuff.
...
* gnu/packages/emacs-xyz.scm (emacs-drag-stuff): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-27 10:13:22 +02:00
Nicolas Goaziou
ea2ead6827
gnu: emacs-iter2: Update to 1.3.
...
* gnu/packages/emacs-xyz.scm (emacs-iter2): Update to 1.3.
2022-08-27 10:13:22 +02:00
Nicolas Goaziou
fd4d531e10
gnu: emacs-taxy-magit-section: Update to 0.10.
...
* gnu/packages/emacs-xyz.scm (emacs-taxy-magit-section): Update to 0.10.
2022-08-27 10:13:22 +02:00
Nicolas Goaziou
cbbea5b470
gnu: emacs-subed: Update to 1.0.7.
...
* gnu/packages/emacs-xyz.scm (emacs-subed): Update to 1.0.7.
2022-08-27 10:13:21 +02:00
Nicolas Goaziou
a3c097e1cd
gnu: emacs-auctex: Update to 13.1.4.
...
* gnu/packages/emacs-xyz.scm (emacs-auctex): Update to 13.1.4.
2022-08-27 10:13:21 +02:00
Marius Bakke
8888e9bfb2
gnu: gjs: Remove input labels.
...
* gnu/packages/gnome.scm (gjs)[native-inputs]: Remove labels.
2022-08-27 04:09:40 +02:00
Marius Bakke
de2dbbcda5
gnu: gjs: Build with mozjs 78.
...
This is a follow-up to commit d6fa3ac7a8 .
* gnu/packages/gnome.scm (gjs)[propagated-inputs]: Change from MOZJS to
MOZJS-78.
2022-08-27 04:05:57 +02:00
Marius Bakke
ad99842136
gnu: libsecret: Propagate libgcrypt.
...
This is a follow-up to commit c1a4ef9893 .
* gnu/packages/gnome.scm (libsecret)[inputs]: Remove.
[propagated-inputs]: Add LIBGCRYPT.
2022-08-27 04:04:22 +02:00
Peter Polidoro
b048c4a0e9
gnu: python-click: Update to 8.1.3.
...
* gnu/packages/python-xyz.scm (python-click): Update to 8.1.3.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-27 01:31:23 +02:00
Marius Bakke
290ac5cd1e
gnu: polkit: Update to 121.
...
* gnu/packages/polkit.scm (polkit-mozjs): Update to 121.
[source](patches): Remove.
[source](snippet): Adjust for build system changes.
[build-system]: Change to MESON-BUILD-SYSTEM.
[inputs]: Replace MOZJS-78 with MOZJS-91.
[native-inputs]: Add GETTEXT-MINIMAL and LIBXML2.
[arguments]: Remove #:phases. Adjust #:configure-flags for build system
changes. Use G-expression.
(polkit-duktape)[source]: Remove.
[arguments]: Adjust for build build system changes.
* gnu/packages/patches/polkit-CVE-2021-4034.patch,
gnu/packages/patches/polkit-configure-elogind.patch,
gnu/packages/patches/polkit-use-duktape.patch: Delete files.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-08-27 01:31:23 +02:00
Marius Bakke
5ddc99da69
gnu: mozjs: Add 91.13.0.
...
* gnu/packages/gnuzilla.scm (mozjs-91): New variable.
2022-08-27 01:31:23 +02:00
Marius Bakke
d6fa3ac7a8
gnu: mozjs: Update to 102.2.0.
...
* gnu/packages/gnuzilla.scm (mozjs): Update to 102.2.0.
(source)[uri]: Use new download location.
[arguments]: Adjust configure phase for upstream changes. Remove
adjust-tests-for-icu-68 phase, add adjust-tests phase. Don't delete tests in
pre-check phase.
[native-inputs]: Remove AUTOCONF-2.13 and PYTHON-3. Add AUTOCONF, M4, and
PYTHON-WRAPPER.
[inputs]: Replace ICU4C with ICU4C-71.
(mozjs-78): New variable.
* gnu/packages/games.scm (0ad)[inputs]: Change from MOZJS to MOZJS-78.
* gnu/packages/polkit.scm (polkit-mozjs)[inputs]: Likewise.
2022-08-27 01:31:23 +02:00
Marius Bakke
283d3fd7c3
gnu: rust-pyo3: Add 0.16.5.
...
* gnu/packages/crates-io.scm (rust-pyo3-build-config-0.16, rust-pyo3-ffi-0.16,
rust-pyo3-macros-backend-0.16, rust-pyo3-macros-0.16, rust-pyo3-0.16): New
variables.
(rust-pyo3-build-config-0.15, rust-pyo3-macros-backend-0.15,
rust-pyo3-macros-0.15, rust-pyo3-0.15): Inherit accordingly.
2022-08-27 01:31:23 +02:00
Marius Bakke
2fe473a5af
gnu: Add rust-python3-dll-a.
...
* gnu/packages/crates-io.scm (rust-python3-dll-a-0.2): New variable.
2022-08-27 01:31:23 +02:00
Marius Bakke
e38a46a9bb
gnu: rust-cc: Update to 1.0.73.
...
* gnu/packages/crates-io.scm (rust-cc-1): Update to 1.0.73.
2022-08-27 01:31:23 +02:00
Marius Bakke
c8c7dc311f
gnu: python-cython: Update to 0.29.32.
...
* gnu/packages/python-xyz.scm (python-cython): Update to 0.29.32.
2022-08-27 01:31:22 +02:00
Marius Bakke
1fd262e8d3
Merge branch 'master' into staging
2022-08-27 00:17:57 +02:00
Greg Hogan
9f7236e3ba
gnu: gcc-12: Update to 12.2.0.
...
* gnu/packages/gcc.scm (gcc-12): Update to 12.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-27 00:09:03 +02:00
Simon Streit
598b683e18
gnu: transmission: Add libappindicator to inputs.
...
* gnu/packages/bittorrent.scm (transmission) <inputs>: Add libappindicator.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-27 00:09:03 +02:00
Felix Gruber
67b0a69f85
gnu: oil: Update to 0.12.4.
...
* gnu/packages/shells.scm (oil): Update to 0.12.4.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-27 00:09:03 +02:00
arkhan
63471f6e7a
gnu: xonsh: Update to 0.13.1
...
* gnu/packages/shells.scm (xonsh): Update to 0.13.0.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-27 00:09:03 +02:00
Zhu Zihao
af9a49e42e
gnu: python-qtpy: Update to 2.2.0.
...
* gnu/packages/qt.scm (python-qtpy): Update to 2.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-27 00:09:03 +02:00
Marius Bakke
a45c30b695
gnu: python-apsw: Remove obsolete code.
...
* gnu/packages/databases.scm (python-apsw)[native-inputs]: Remove UNZIP.
[arguments]: Remove trailing #t's.
2022-08-27 00:09:03 +02:00
Hilton Chain
17ffcde1fc
gnu: python-apsw: Update to 3.39.2.0.
...
* gnu/packages/databases.scm (python-apsw): Update to 3.39.2.0.
[source]: Change to git-fetch.
[inputs]: Replace sqlite with sqlite-next.
[arguments]: Remove custom check phase.
Some styling adjustments as well.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-27 00:09:03 +02:00
Marius Bakke
586f6c3a7a
gnu: streamripper: Remove bundled software.
...
* gnu/packages/audio.scm (streamripper)[source](modules, snippet): New fields.
2022-08-27 00:09:03 +02:00
Simon Streit
8dc1430a4c
gnu: Add streamripper.
...
* gnu/packages/audio.scm (streamripper): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-27 00:09:03 +02:00
Marius Bakke
40c28fa322
gnu: python-cryptography: Update to 37.0.4.
...
* gnu/packages/python-crypto.scm (python-cryptography-vectors-next): Update to
37.0.4.
(python-cryptography-next): Likewise.
[arguments]: Add phase to adjust pyo3 requirement. Don't adjust ouroboros
version.
[inputs]: Change from RUST-OUROBOROS-0.14 and RUST-OUROBOROS-MACRO-0.14 to
RUST-OUROBOROS-0.15 and RUST-OUROBOROS-MACRO-0.15.
[native-inputs]: Add PYTHON-PYTEST-BENCHMARK.
2022-08-27 00:09:03 +02:00
Marius Bakke
1a38540d8d
gnu: rust-indoc: Update to 1.0.7.
...
* gnu/packages/crates-io.scm (rust-indoc-1): Update to 1.0.7.
2022-08-27 00:09:02 +02:00
Marius Bakke
c51cd144d7
gnu: rust-widestring: Add 0.5.1.
...
* gnu/packages/crates-io.scm (rust-widestring-0.5): New variable.
(rust-widestring-0.4): Inherit from it.
2022-08-27 00:09:02 +02:00
Marius Bakke
8ece2cf571
gnu: rust-send-wrapper: Add 0.5.0.
...
* gnu/packages/crates-io.scm (rust-send-wrapper-0.5): New variable.
(rust-send-wrapper-0.4): Inherit from it.
2022-08-27 00:09:02 +02:00
Marius Bakke
58faf8069c
gnu: rust-ouroboros: Add 0.15.2.
...
* gnu/packages/crates-io.scm (rust-ouroboros-macro-0.15): New variable.
(rust-ouroboros-macro-0.14): Inherit from it.
(rust-ouroboros-0.15): New variable.
(rust-ouroboros-0.14): Inherit from it.
2022-08-27 00:09:02 +02:00
Marius Bakke
8c06526634
gnu: rust-inventory: Add 0.2.3.
...
* gnu/packages/crates-io.scm (rust-inventory-0.2): New variable.
(rust-inventory-0.1): Inherit from it.
2022-08-27 00:09:02 +02:00
Marius Bakke
3d06823e6b
gnu: rust-ghost: Update to 0.1.6.
...
* gnu/packages/crates-io.scm (rust-ghost-0.1): Update to 0.1.6.
2022-08-27 00:09:02 +02:00
Marius Bakke
4aa3bae2c6
gnu: libreoffice: Add release-monitoring-url.
...
* gnu/packages/libreoffice.scm (libreoffice)[properties]: New field.
2022-08-27 00:09:02 +02:00
muradm
cac3914dfc
gnu: greetd-service-type: Add supplementary groups to greeter.
...
* gnu/services/base.scm (<greetd-configuration>)
[greeter-supplementary-groups]: New field.
(%greetd-accounts): Rename to...
(greetd-accounts): ... this. Convert to a function that takes a config
argument. Use greeter-supplementary-groups.
(greetd-service-type): Adjust accordingly.
* gnu/tests/desktop.scm (%minimal-services): Add test for
greeter-supplementary-groups.
* doc/guix.texi ("Base Services")[greetd-service-type]: Document
greeter-supplementary-groups.
2022-08-26 18:50:33 +02:00
muradm
d1815a68ea
gnu: seatd-service-type: Use seat group.
...
* gnu/services/desktop.scm (seatd-group-sanitizer): New variable.
(<seatd-configuration>)[user]: Removed field.
[group]: Changed to "seat". Sanitize via seatd-group-sanitizer.
(seatd-accounts): New variable.
(seatd-environment): Adjust to <seatd-configuration> ABI.
(seatd-service-type)[extensions]: Add account-service-type with seatd-accounts.
* gnu/tests/desktop.scm (run-minimal-desktop-test): Check for correct
ownership of $SEATD_SOCK.
* doc/guix.texi ("Desktop Services")[seatd-service-type]: Mention that users
may need to become members of the "seat" group.
Update default value for group field.
Add explanation on seatd.sock file.
Remove dropped user field.
2022-08-26 18:48:37 +02:00
Nicolas Goaziou
de2f419618
gnu: emacs-geiser: Update to 0.26.
...
* gnu/packages/emacs-xyz.scm (emacs-geiser): Update to 0.26.
2022-08-26 15:22:25 +02:00
jgart
35b176daf1
gnu: Add emacs-denote.
...
* gnu/packages/emacs-xyz.scm (emacs-denote): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-26 10:35:48 +02:00
jgart
f4fc71284e
gnu: Add emacs-tmr.
...
* gnu/packages/emacs-xyz.scm (emacs-tmr): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-26 10:23:05 +02:00
Zzull
fd8f5f7ebc
gnu: Add emacs-lemon.
...
* gnu/packages/emacs-xyz.scm (emacs-lemon): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-26 10:22:42 +02:00
Zzull
ec0865f2ee
gnu: Add emacs-blight.
...
* gnu/packages/emacs-xyz.scm (emacs-blight): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-26 10:22:42 +02:00
Nicolas Goaziou
bb4bdd8538
gnu: emacs-eldev: Update to 1.2.1.
...
* gnu/packages/emacs-xyz.scm (emacs-eldev): Update to 1.2.1.
2022-08-26 10:22:41 +02:00
Nicolas Goaziou
c82a99c9e2
gnu: emacs-autothemer: Update to 0.2.9.
...
* gnu/packages/emacs-xyz.scm (emacs-autothemer): Update to 0.2.9.
2022-08-26 10:22:41 +02:00
Andrew Tropin
4ff0ceb264
gnu: obs: Update to 27.2.4.
...
* gnu/packages/video.scm (obs): Update to 27.2.4.
[arguments]: Migrate from TRUE/FALSE to ON/OFF.
[inputs]: Add picuitls and libxkbcommon for successful build of new version,
bash-minimal for satisfying guix lint, and luajit, python for scripting
support.
[native-inputs]: Add swig for scripting support.
2022-08-26 08:42:46 +03:00
Leo Famulari
e106b27c4b
gnu: linux-libre 4.9: Update to 4.9.236.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.236.
(linux-libre-4.9-pristine-source): Update hash.
2022-08-25 22:23:29 -04:00
Leo Famulari
aed61ada1c
gnu: linux-libre 4.14: Update to 4.14.291.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.291.
(linux-libre-4.14-pristine-source): Update hash.
2022-08-25 22:23:29 -04:00
Leo Famulari
3d8b3b58ca
gnu: linux-libre 4.19: Update to 4.19.256.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.256.
(linux-libre-4.19-pristine-source): Update hash.
2022-08-25 22:23:29 -04:00
Leo Famulari
ea3752028f
gnu: linux-libre 5.4: Update to 5.4.211.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.211.
(linux-libre-5.4-pristine-source): Update hash.
2022-08-25 22:23:29 -04:00
Leo Famulari
3550a153d9
gnu: linux-libre 5.10: Update to 5.10.183.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.183.
(linux-libre-5.10-pristine-source): Update hash.
2022-08-25 22:23:29 -04:00
Leo Famulari
7cdea58a8d
gnu: linux-libre 5.15: Update to 5.15.63.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.63.
(linux-libre-5.15-pristine-source, deblob-scripts-5.15): Update hashes.
2022-08-25 22:23:21 -04:00
jgart
26ff8a4b73
gnu: Add emacs-pdb-capf.
...
* gnu/packages/emacs-xyz.scm (emacs-pdb-capf): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-25 18:58:30 +02:00
Efraim Flashner
71f51e8c60
gnu: go-github-com-cespare-xxhash: Update to 2.1.2.
...
* gnu/packages/syncthing.scm (go-github-com-cespare-xxhash): Update to 2.1.2.
2022-08-25 18:37:35 +03:00
Efraim Flashner
b29742124e
gnu: go-github-com-cespare-xxhash: Skip tests with gccgo.
...
* gnu/packages/syncthing.scm (go-github-com-cespare-xxhash)[arguments]:
Don't run the test suite when building with gccgo.
2022-08-25 18:36:05 +03:00
jgart
72aba543b9
gnu: emacs-pulsar: Update to 0.4.0.
...
* gnu/packages/emacs-xyz.scm (emacs-pulsar): Update to 0.4.0.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-25 14:37:03 +02:00
jgart
ce38e65f3d
gnu: Add emacs-vlf.
...
* gnu/packages/emacs-xyz.scm (emacs-vlf): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-25 14:18:11 +02:00
Pierre-Henry Fröhring
f677f8b6db
gnu: Add emacs-vertico-posframe.
...
* gnu/packages/emacs-xyz.scm (emacs-vertico-posframe): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-25 14:08:42 +02:00
jgart
9593cf511e
gnu: emacs-logos: Update to 0.4.0.
...
* gnu/packages/emacs-xyz.scm (emacs-logos): Update to 0.4.0.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-25 14:05:37 +02:00
Morgan Smith
6f678b847a
gnu: Add emacs-buffer-env.
...
* gnu/packages/emacs-xyz.scm (emacs-buffer-env): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-25 13:45:46 +02:00
Nicolas Goaziou
80baa8f87a
gnu: emacs-consult-bibtex: Fix license.
...
* gnu/packages/emacs-xyz.scm (emacs-consult-bibtex)[license]: Use GPL3+.
2022-08-25 12:28:42 +02:00
Nicolas Graves
05f2938f04
gnu: Add emacs-super-save.
...
* gnu/packages/emacs-xyz.scm (emacs-super-save): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-25 12:24:24 +02:00
Nicolas Graves
59d52f6d43
gnu: Add emacs-consult-yasnippet.
...
* gnu/packages/emacs-xyz.scm (emacs-consult-yasnippet): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-25 12:24:23 +02:00
Nicolas Graves
57fad8f60c
gnu: Add emacs-consult-bibtex.
...
* gnu/packages/emacs-xyz.scm (emacs-consult-bibtex): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-25 12:24:23 +02:00
jgart
e92c483be8
gnu: Add emacs-consult-lsp.
...
* gnu/packages/emacs-xyz.scm (emacs-consult-lsp): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-25 12:24:23 +02:00
jgart
b94a82dcf2
gnu: emacs-better-defaults: Update source url.
...
* gnu/packages/emacs-xyz.scm (emacs-better-defaults): Update source url.
[url]: Update url.
[home-page]: Update url.
Also fixes the 404 on this page:
https://guix.gnu.org/packages/emacs-better-defaults-0.1.3/
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-08-25 12:24:22 +02:00
Efraim Flashner
932edeb3a0
gnu: go-github-com-valyala-fasthttp: Skip tests with gccgo.
...
* gnu/packages/golang.scm (go-github-com-valyala-fasthttp)[arguments]:
Don't run the test suite when building with gccgo.
2022-08-25 13:03:14 +03:00
Efraim Flashner
e5fca82414
gnu: go-github-com-valyala-fasthttp: Update to 1.39.0.
...
* gnu/packages/golang.scm (go-github-com-valyala-fasthttp): Update to 1.39.0.
2022-08-25 13:03:13 +03:00
Efraim Flashner
c15692b938
gnu: go-github-com-sirupsen-logrus: Skip tests with gccgo.
...
* gnu/packages/golang.scm (go-github-com-sirupsen-logrus)[arguments]:
Don't run the test suite when building with gccgo.
2022-08-25 13:03:13 +03:00
Efraim Flashner
8772030630
gnu: go-github-com-sirupsen-logrus: Update to 1.9.0.
...
* gnu/packages/golang.scm (go-github-com-sirupsen-logrus): Update to
1.9.0.
2022-08-25 13:03:13 +03:00
Efraim Flashner
1d49fd4fab
gnu: go-github-com-stretchr-objx: Skip tests with gccgo.
...
* gnu/packages/golang.scm (go-github-com-stretchr-objx)[arguments]:
Don't run the test suite when building with gccgo.
2022-08-25 13:03:13 +03:00
Efraim Flashner
23e03dd087
gnu: go-github-com-stretchr-objx: Update to 0.4.0.
...
* gnu/packages/golang.scm (go-github-com-stretchr-objx): Update to 0.4.0.
2022-08-25 13:03:12 +03:00
Efraim Flashner
22487dfc22
gnu: go-gopkg-in-check-v1: Skip tests with gccgo.
...
* gnu/packages/golang.scm (go-gopkg-in-check-v1)[arguments]: Don't run
the test suite when building with gccgo.
2022-08-25 13:03:12 +03:00
Efraim Flashner
e77383e16f
gnu: go-github.com-smartystreets-assertions: Skip tests with gccgo.
...
* gnu/packages/check.scm (go-github.com-smartystreets-assertions): Don't
run the test suite when building with gccgo.
2022-08-25 13:03:12 +03:00
Efraim Flashner
4892c1af84
gnu: go-github.com-smartystreets-assertions: Update to 1.13.0.
...
* gnu/packages/check.scm (go-github.com-smartystreets-assertions):
Update to 1.13.0.
2022-08-25 13:03:12 +03:00
Efraim Flashner
04f813ec63
gnu: python-natsort: Fix the test suite on slower machines.
...
* gnu/packages/python-xyz.scm (python-natsort)[arguments]: Add custom
phase to remove the time limit for some of the tests.
2022-08-25 13:03:11 +03:00
Efraim Flashner
fd305cd960
gnu: python-natsort: Reflow description.
...
* gnu/packages/python-xyz.scm (python-natsort)[description]: Rewrap
description to normal columns.
2022-08-25 13:03:11 +03:00
Efraim Flashner
4275727ac5
gnu: python-natsort: Honor the #:tests? flag.
...
* gnu/packages/python-xyz.scm (python-natsort)[arguments]: Adjust the
custom 'check phase to honor the #:tests? flag.
2022-08-25 13:03:11 +03:00
Efraim Flashner
54da48e2ce
gnu: go-github.com-jtolds-gls: Skip tests with gccgo.
...
* gnu/packages/golang.scm (go-github.com-ktolds-gls)[arguments]: Don't
run the test suite when building with gccgo.
2022-08-25 13:03:11 +03:00
Efraim Flashner
25494265b2
gnu: go-github-com-pkg-errors: Skip tests with gccgo.
...
* gnu/packages/golang.scm (go-github-com-pkg-errors)[arguments]: Don't
run the test suite when building with gccgo.
2022-08-25 13:03:08 +03:00
Ricardo Wurmus
b0c9f03248
import/utils: beautify-description: Add case for "Implements".
...
* guix/import/utils.scm (beautify-description): Add case to transform
sentences beginning with "Implements".
2022-08-25 11:55:12 +02:00
Ricardo Wurmus
a901d8e0da
gnu: Add r-aer.
...
* gnu/packages/cran.scm (r-aer): New variable.
2022-08-25 11:55:12 +02:00
Ricardo Wurmus
abf0b2744d
gnu: Add r-ips.
...
* gnu/packages/cran.scm (r-ips): New variable.
2022-08-25 11:55:12 +02:00
Ricardo Wurmus
add211b277
gnu: Add r-scry.
...
* gnu/packages/bioconductor.scm (r-scry): New variable.
2022-08-25 11:55:12 +02:00
Ricardo Wurmus
dfa373069d
gnu: Add r-glmpca.
...
* gnu/packages/cran.scm (r-glmpca): New variable.
2022-08-25 11:55:11 +02:00
Arun Isaac
ee221461c3
gnu: laminar: Do not use auto-generated tarball.
...
* gnu/packages/ci.scm (laminar)[source]: Use git-fetch.
2022-08-25 13:46:41 +05:30
Arun Isaac
a36fb3d131
gnu: laminar: Update to 1.2.
...
* gnu/packages/ci.scm (laminar): Update to 1.2.
[arguments]: Do not return #t from custom phases.
2022-08-25 13:14:21 +05:30
Maxim Cournoyer
98457ba47b
doc: Replace remaining 'unset mentions with %unset-value.
...
* doc/guix.texi (Networking Services): Replace 'unset with %unset-value.
(Power Management Services): Likewise.
(Complex Configurations): Likewise.
2022-08-25 00:10:57 -04:00
Attila Lendvai
6fb9759ef3
services: configuration: Change the value of the unset marker.
...
The new value of %unset-value sticks out more when something goes wrong, and
is also more unique; i.e. easier to search for.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-08-25 00:10:42 -04:00
Attila Lendvai
ee08277a70
services: Use the new maybe/unset API.
...
* gnu/home/services/ssh.scm (serialize-address-family): Use the public API of
the maybe infrastructure.
* gnu/services/file-sharing.scm (serialize-maybe-string): Use maybe-value.
(serialize-maybe-file-object): Use maybe-value-set?.
* gnu/services/getmail.scm (getmail-retriever-configuration): Don't use
internals in unset field declarations.
(getmail-destination-configuration): Ditto.
* gnu/services/messaging.scm (raw-content?): Use maybe-value-set?.
(prosody-configuration): Use %unset-value.
* gnu/services/telephony.scm (jami-shepherd-services): Use maybe-value-set?.
(archive-name->username): Use maybe-value-set?.
* tests/services/configuration.scm ("maybe type, no default"): Use
%unset-value.
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-08-25 00:10:32 -04:00
Attila Lendvai
cc32cd41f7
services: configuration: Add maybe-value exported procedure.
...
* gnu/services/configuration.scm (maybe-value): New procedure.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-08-24 23:27:54 -04:00
Attila Lendvai
147f8f19f8
services: configuration: Add %unset-value exported variable.
...
* gnu/services/configuration.scm (%unset-value): New variable.
(normalize-field-type+def): Use it.
(maybe-value-unset?): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-08-24 23:27:53 -04:00
宋文武
0e11067d53
gnu: wesnoth: Update to 1.16.5.
...
* gnu/packages/games.scm (wesnoth): Update to 1.16.5.
2022-08-25 11:12:36 +08:00
Maxim Cournoyer
1c803e63f9
services: configuration: Add a 'maybe-value-set?' procedure.
...
* gnu/services/configuration.scm (maybe-value-set?): New procedure.
* doc/guix.texi (Complex Configurations): Document it. Remove comment showing
usage of 'maybe-string' with a default value, which doesn't make sense.
Co-authored-by: Attila Lendvai <attila@lendvai.name >
2022-08-24 22:34:45 -04:00
Zhu Zihao
31339f5f5f
gnu: Rename procedure "qt5-urls" to "qt-urls" in (gnu packages qt).
...
This procedure now used by Qt5 and Qt6. "qt-urls" is more neutral than
original one.
* gnu/packages/qt.scm (qt5-urls): Rename to "qt-urls".
(qtbase-5)[source]: Use "qt-urls" for uri field.
(qtbase)[source]: Ditto.
(qt5compat)[source]: Ditto.
(qtsvg-5)[source]: Ditto.
(qtsvg)[source]: Ditto.
(qtimageformats)[source]: Ditto.
(qtx11extras)[source]: Ditto.
(qtxmlpatterns)[source]: Ditto.
(qtdeclarative-5)[source]: Ditto.
(qtdeclarative)[source]: Ditto.
(qtconnectivity)[source]: Ditto.
(qtwebsockets-5)[source]: Ditto.
(qtwebsockets)[source]: Ditto.
(qtsensors)[source]: Ditto.
(qtmultimedia-5)[source]: Ditto.
(qtshadertools)[source]: Ditto.
(qtmultimedia)[source]: Ditto.
(qtwayland)[source]: Ditto.
(qtserialport)[source]: Ditto.
(qtserialbus)[source]: Ditto.
(qtwebchannel-5)[source]: Ditto.
(qtwebchannel)[source]: Ditto.
(qtwebglplugin)[source]: Ditto.
(qtwebview)[source]: Ditto.
(qtlottie)[source]: Ditto.
(qttools-5)[source]: Ditto.
(qttools)[source]: Ditto.
(qtscript)[source]: Ditto.
(qtquickcontrols-5)[source]: Ditto.
(qtquickcontrols2-5)[source]: Ditto.
(qtgraphicaleffects)[source]: Ditto.
(qtgamepad)[source]: Ditto.
(qtscxml)[source]: Ditto.
(qtpositioning)[source]: Ditto.
(qtpurchasing)[source]: Ditto.
(qtcharts)[source]: Ditto.
(qtdatavis3d)[source]: Ditto.
(qtnetworkauth-5)[source]: Ditto.
(qtnetworkauth)[source]: Ditto.
(qtremoteobjects)[source]: Ditto.
(qtspeech)[source]: Ditto.
(qtwebengine-5)[source]: Ditto.
(qtwebengine)[source]: Ditto.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-25 08:50:02 +08:00
pukkamustard
a39207f7af
gnu: Add ocaml-digestif.
...
* gnu/packages/ocaml.scm (ocaml-digestif): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-08-24 18:21:54 +02:00
pukkamustard
1cb6064b49
gnu: Add ocaml-eqaf.
...
* gnu/packages/ocaml.scm (ocaml-eqaf): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-08-24 18:21:44 +02:00
pukkamustard
4719f43841
gnu: Add ocaml-crowbar.
...
* gnu/packages/ocaml.scm (ocaml-crowbar): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-08-24 18:21:27 +02:00
pukkamustard
3d403f56dd
gnu: Add ocaml-pprint.
...
* gnu/packages/ocaml.scm (ocaml-pprint): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-08-24 18:21:12 +02:00
Xinglu Chen
6256e267da
gnu: Add ocaml-afl-persistent.
...
* gnu/packages/ocaml.scm (ocaml-afl-persistent): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-08-24 18:21:05 +02:00
Julien Lepiller
09e3ab6fbf
gnu: maven: Update to 3.8.6.
...
* gnu/packages/maven.scm (maven): Update to 3.8.6.
2022-08-24 18:17:31 +02:00
Nicolas Goaziou
6199ee19ff
gnu: crawl: Honor the #:tests? flag.
...
* gnu/packages/games.scm (crawl)[arguments]<#:phases>: Honor the #:tests? flag
in custom check phase.
2022-08-24 16:06:46 +02:00
Nicolas Goaziou
1e16af13b0
gnu: crawl: Update to 0.29.0.
...
* gnu/packages/games.scm (crawl): Update to 0.29.0.
[source]<origin>: Use GIT-FETCH method.
[arguments]<#:make-flags>: Match new directory layout.
<#:phases>: Add a phase to set version without calling GIT.
* gnu/packages/patches/crawl-upgrade-saves.patch: Match new directory layout.
2022-08-24 16:03:32 +02:00
Ricardo Wurmus
f323f04326
gnu: Add gwl/next.
...
* gnu/packages/package-management.scm (gwl/next): New variable.
2022-08-24 11:30:47 +02:00
Nicolas Goaziou
c3b8defbe0
gnu: fsearch: Update to 0.2.2.
...
* gnu/packages/search.scm (fsearch): Update to 0.2.2.
2022-08-24 09:36:25 +02:00
Maxim Cournoyer
c1a4ef9893
gnu: libsecret: Update to 0.20.5, use gexps and remove input labels.
...
* gnu/packages/gnome.scm (libsecret): Update to 0.20.5.
[outputs]: Delete doc output.
[configure-flags]: Use gexps. Remove --with-html-dir and add -Dgtk_doc.
[phases]{disable-problematic-tests}: New phase.
{check}: Override and move after the install phase.
[inputs]: Move docbook-xsl and libxml2 to...
[native-inputs]: ... here. Remove input labels. Add dbus, docbook-xml-4.2,
python, python-dbus and python-pygobject.
2022-08-23 16:56:24 -04:00
Efraim Flashner
47316120b7
gnu: ghc-8.10: Build using ghc-8.6.
...
* gnu/packages/haskell.scm (ghc-8.10)[native-inputs]: Replace ghc-8.8
with ghc-8.6.
2022-08-23 16:37:35 +03:00
Efraim Flashner
b4b7b236fa
gnu: ghc-8.10: Rewrite using G-exps.
...
* gnu/packages/haskell.scm (ghc-8.10)[arguments]: Rewrite using g-exps.
2022-08-23 16:37:34 +03:00
Efraim Flashner
b94534adf0
gnu: ghc-8.10: Add phase unconditionally.
...
* gnu/packages/haskell.scm (ghc-8.10)[arguments]: Apply custom
'skip-failing-tests-i686 phase for all architectures.
2022-08-23 16:37:34 +03:00
Efraim Flashner
9e26302773
gnu: ghc-8.8: Rewrite using G-exps.
...
* gnu/packages/haskell.scm (ghc-8.8)[arguments]: Rewrite using g-exps.
Remove trailing #t from phases.
2022-08-23 16:37:34 +03:00
Efraim Flashner
279563ffe8
gnu: ghc-8.6: Rewrite using G-exps.
...
* gnu/packages/haskell.scm (ghc-8.6)[arguments]: Rewrite using g-exps.
Remove trailing #t from phases.
2022-08-23 16:37:34 +03:00
Efraim Flashner
ab8c83dd48
gnu: ghc-8.4: Modernize package.
...
* gnu/packages/haskell.scm (ghc-8.4)[inputs]: Use inherited inputs.
[arguments]: Rewrite using g-exps. Adjust to use inherited package
arguments. Use inherited 'unpack-testsuite, 'fix environment phases.
Remove redundant 'fix-references phase.
(ghc-8.8)[arguments]: Adjust phases based on changed inherited phases.
2022-08-23 16:36:35 +03:00
Efraim Flashner
63e01d01b1
gnu: ghc-8.0: Modernize package.
...
* gnu/packages/haskell.scm (ghc-8.0)[arguments]: Rewrite using g-exps.
Unpack testsuite tarball from the store. Remove trailing #t from phases.
[inputs]: Remove input labels. Move ghc-testsuite ...
[native-inputs]: ... to here.
2022-08-23 16:31:45 +03:00
Efraim Flashner
a8848b9311
gnu: ghc-7: Update to 7.10.3.
...
* gnu/packages/haskell.scm (ghc-7): Update to 7.10.3.
2022-08-23 16:25:20 +03:00
Efraim Flashner
0fc0ce2342
gnu: ghc-7: Unpack tarballs from the store.
...
* gnu/packages/haskell.scm (ghc-7)[arguments]: Adjust custom 'unpack-bin
and 'unpack-testsuite-and-fix-bins phases to unpack tarballs directly
from the store.
2022-08-21 12:49:34 +03:00
Efraim Flashner
7032e0bc8a
gnu: ghc-7: Rewrite arguments using G-expressions.
...
* gnu/packages/haskell.scm (ghc-7)[arguments]: Rewrite using
G-expressions. Remove trailing #t from phases.
2022-08-21 12:47:35 +03:00
Tobias Geerinckx-Rice
91b112b8dd
bootloader: Remove expired export.
...
This follows up on commit 8a0e1bb12b .
* gnu/bootloader.scm: Don't export
bootloader-configuration-additional-configuration, which no longer
exists.
Reported by muradm in #guix.
2022-08-21 02:00:00 +02:00
Jean-Baptiste Volatier
90ca0f57bf
gnu: julia: Update to 1.6.7.
...
* gnu/packages/julia.scm (julia): Update to 1.6.7.
[arguments]: Add custom 'activate-gnu-source-for-loader phase. Adjust
custom 'adjust-test-suite, 'disable-broken-tests phases for changes in
the code. Remove trailing #t from phases.
Co-authored-by: Efraim Flashner <efraim@flashner.co.il >
2022-08-23 21:35:03 +03:00
Mark H Weaver
d769cf81d8
gnu: icecat: Update to 91.13.0-guix0-preview1 [security fixes].
...
Includes fixes for CVE-2022-38472, CVE-2022-38473, and CVE-2022-38478.
* gnu/packages/gnuzilla.scm (%icecat-version, %icecat-build-id): Update.
(icecat-source): Update gnuzilla commit, base version, and hashes.
2022-08-23 12:59:09 -04:00
Ricardo Wurmus
d26b29d263
gnu: Add flair.
...
* gnu/packages/bioinformatics.scm (flair): New variable.
2022-08-23 13:30:52 +02:00
Ricardo Wurmus
01dfcad225
gnu: Add python-ncls.
...
* gnu/packages/python-xyz.scm (python-ncls): New variable.
2022-08-23 13:29:30 +02:00
Ricardo Wurmus
8d42898572
gnu: python-mappy: Update to 2.24.
...
* gnu/packages/bioinformatics.scm (python-mappy): Update to 2.24.
2022-08-23 13:29:17 +02:00
Mădălin Ionel Patrașcu
7c47fa2513
gnu: Add r-ggvenndiagram.
...
* gnu/packages/cran.scm (r-ggvenndiagram): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2022-08-23 12:04:25 +02:00
Mădălin Ionel Patrașcu
ee676283e2
gnu: Add r-rvenn.
...
* gnu/packages/cran.scm (r-rvenn): New variable.
2022-08-23 12:02:50 +02:00
Mădălin Ionel Patrașcu
4a6c6484df
gnu: Add r-organism-dplyr.
...
* gnu/packages/bioconductor.scm (r-organism-dplyr): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2022-08-23 12:02:25 +02:00
Ricardo Wurmus
090663a7a5
gnu: Add r-bladderbatch.
...
* gnu/packages/bioconductor.scm (r-bladderbatch): New variable.
2022-08-23 11:45:59 +02:00
Mădălin Ionel Patrașcu
f6bcde85a6
gnu: Add r-pcaexplorer.
...
* gnu/packages/bioconductor.scm (r-pcaexplorer): New variable.
2022-08-23 11:43:20 +02:00
Mădălin Ionel Patrașcu
6c21c9fab1
gnu: Add r-parathyroidse.
...
* gnu/packages/bioconductor.scm (r-parathyroidse): New variable.
2022-08-23 11:43:20 +02:00
宋文武
fc4ff8c3e1
gnu: lxqt: Fix default icon theme.
...
* gnu/packages/lxqt.scm (lxqt)[propagated-inputs]:
Replace oxygen-icons with breeze-icons.
2022-08-23 10:15:30 +08:00
Felix Gruber
4c03f62ad0
gnu: python-shapely: Update to 1.8.4.
...
* gnu/packages/python-xyz.scm (python-shapely): Update to 1.8.4.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-23 08:38:46 +08:00
Tobias Geerinckx-Rice
0337b65284
gnu: python-lzo: Use G-expressions.
...
* gnu/packages/python-compression.scm (python-lzo)[arguments]:
Rewrite as G-expressions.
2022-08-21 02:00:12 +02:00
Tobias Geerinckx-Rice
504e060126
gnu: python-lzo: Update to 1.14.
...
* gnu/packages/python-compression.scm (python-lzo): Update to 1.14.
[arguments]: Don't explicitly return #t from phases.
2022-08-21 02:00:11 +02:00
Tobias Geerinckx-Rice
b5c07581c4
gnu: python-jaraco-functools: Disable flaky test.
...
* gnu/packages/python-xyz.scm (python-jaraco-functools)[arguments]:
Skip the "test_function_throttled".
Reported by Lumine in #guix.
2022-08-21 02:00:11 +02:00
Leo Famulari
ff3cecffaf
gnu: linux-libre 5.10: Update to 5.10.137.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.137.
(linux-libre-5.10-pristine-source): Update hash.
2022-08-22 11:57:28 -04:00
Leo Famulari
5a07d99870
gnu: linux-libre 5.15: Update to 5.15.62.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.62.
(linux-libre-5.15-pristine-source): Update hash.
2022-08-22 11:57:28 -04:00
Leo Famulari
3ac47c1b88
gnu: linux-libre: Update to 5.18.19.
...
* gnu/packages/linux.scm (linux-libre-5.18-version): Update to 5.18.19.
(linux-libre-5.18-pristine-source): Update hash.
2022-08-22 11:57:28 -04:00
Nicolas Goaziou
3a9fae15a0
gnu: emacs-autothemer: Update to 0.2.6.
...
* gnu/packages/emacs-xyz.scm (emacs-autothemer): Update to 0.2.6.
2022-08-22 12:13:21 +02:00
Nicolas Goaziou
4719f3d204
gnu: emacs-geiser: Update to 0.25.1.
...
* gnu/packages/emacs-xyz.scm (emacs-geiser): Update to 0.25.1.
2022-08-22 12:12:12 +02:00
Mădălin Ionel Patrașcu
36b38bb4f3
gnu: Add r-polylabelr.
...
* gnu/packages/cran.scm (r-polylabelr): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2022-08-22 11:18:29 +02:00
Mădălin Ionel Patrașcu
ca823a1600
gnu: Add r-gensa.
...
* gnu/packages/cran.scm (r-gensa): New variable.
2022-08-22 10:57:01 +02:00
Mădălin Ionel Patrașcu
3534165413
gnu: Add r-ggvenn.
...
* gnu/packages/cran.scm (r-ggvenn): New variable.
2022-08-22 10:57:01 +02:00
Hilton Chain
3a4a65bd74
gnu: i3-autotiling: Update to 1.6.1.
...
* gnu/packages/python-xyz.scm (i3-autotiling): Update to 1.6.1.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-22 15:52:24 +08:00
Nicolas Graves
114c9ea22f
gnu: Add emacs-citar-org-roam.
...
* gnu/packages/emacs-xyz.scm (emacs-citar-org-roam): New variable.
Signed-off-by: Andrew Tropin <andrew@trop.in >
2022-08-22 10:32:39 +03:00
Michael Rohleder
013fbf598a
gnu: emacs-dockerfile-mode: Update to 1.7.
...
* gnu/packages/emacs-xyz.scm (emacs-dockerfile-mode): Update to 1.7.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-22 15:13:56 +08:00
Michael Rohleder
d84e0b0454
gnu: celluloid: Update to 0.24.
...
* gnu/packages/video.scm (celluloid): Update to 0.24.
[inputs]: Add libadwaita.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-22 14:32:32 +08:00
Michael Rohleder
79a8cfffe9
gnu: beets: Update to 1.6.0.
...
* gnu/packages/music.scm (beets): Update to 1.6.0.
[inputs]: Remove python-six.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-22 14:18:29 +08:00
Zhu Zihao
9ebed88cf6
gnu: dotherside: Update to 0.9.0.
...
* gnu/packages/qt.scm (dotherside): Update to 0.9.0.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-22 14:06:02 +08:00
宋文武
1dd5b07955
gnu: xfce4-equake-plugin: Update to 1.3.8.1.
...
* gnu/packages/xfce.scm (xfce4-equake-plugin): Update to 1.3.8.1.
2022-08-22 10:39:18 +08:00
宋文武
7b521f3a90
gnu: xfce4-terminal: Update to 1.0.4.
...
* gnu/packages/xfce.scm (xfce4-terminal): Update to 1.0.4.
2022-08-22 10:38:57 +08:00
宋文武
5edd5bb800
gnu: thunar: Update to 4.16.11.
...
* gnu/packages/xfce.scm (thunar): Update to 4.16.11.
2022-08-22 10:38:37 +08:00
宋文武
7970f1392d
gnu: elementary-xfce-icon-theme: Update to 0.17.
...
* gnu/packages/xfce.scm (elementary-xfce-icon-theme): Update to 0.17.
2022-08-22 10:36:37 +08:00
Michael Rohleder
a721bf68b3
gnu: xfdesktop: Update to 4.16.1.
...
* gnu/packages/xfce.scm (xfdesktop): Update to 4.16.1.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-22 09:10:37 +08:00
Michael Rohleder
8634ab941f
gnu: xfce4-panel: Update to 4.16.5.
...
* gnu/packages/xfce.scm (xfce4-panel): Update to 4.16.5.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-22 09:08:34 +08:00
宋文武
fdde539028
gnu: lxqt-connman-applet: Remove patch-translations-dir phase.
...
* gnu/packages/lxqt.scm (lxqt-connman-applet)[arguments]:
Remove patch-translations-dir phase.
2022-08-22 08:42:54 +08:00
宋文武
bc334d4a2f
gnu: lxqt-archiver: Update to 0.6.0.
...
* gnu/packages/lxqt.scm (lxqt-archiver): Update to 0.6.0.
2022-08-22 08:42:54 +08:00
宋文武
33c1d2e515
gnu: screengrab: Update to 2.4.0.
...
* gnu/packages/lxqt.scm (screengrab): Update to 2.4.0.
2022-08-22 08:42:54 +08:00
宋文武
f2ec964b66
gnu: qterminal: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (qterminal): Update to 1.1.0.
2022-08-22 08:42:54 +08:00
宋文武
83ba42f0b1
gnu: qtermwidget: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (qtermwidget): Update to 1.1.0.
2022-08-22 08:42:54 +08:00
宋文武
f024a6debf
gnu: qps: Update 2.5.0.
...
* gnu/packages/lxqt.scm (qps): Update to 2.5.0.
2022-08-22 08:42:54 +08:00
宋文武
1c0677e3d1
gnu: pavucontrol-qt: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (pavucontrol-qt): Update to 1.1.0.
2022-08-22 08:42:54 +08:00
宋文武
e1a9bae304
gnu: obconf-qt: Update to 0.16.2.
...
* gnu/packages/lxqt.scm (obconf-qt): Update to 0.16.2.
2022-08-22 08:42:54 +08:00
宋文武
5ea35545c1
gnu: lximage-qt: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lximage-qt): Update to 1.1.0.
2022-08-22 08:42:54 +08:00
宋文武
eae4a0a2c8
gnu: compton-conf: Remove patch-source phase.
...
* gnu/packages/lxqt.scm (compton-conf)[arguments]: Remove patch-source phase.
2022-08-22 08:42:54 +08:00
宋文武
50fb051d97
gnu: pcmanfm-qt: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (pcmanfm-qt)
[version]: Update to 1.1.0.
[inputs]: Add lxqt-themes.
[arguments]: Remove patch-source phase. Add patch-settings.conf.in phase.
2022-08-22 08:42:54 +08:00
宋文武
892d8995de
gnu: libfm-qt: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (libfm-qt): Update to 1.1.0.
2022-08-22 08:42:54 +08:00
宋文武
a79afa8d38
gnu: lxqt-themes: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-themes): Update to 1.1.0.
[arguments]: Remove phases.
2022-08-22 08:42:54 +08:00
宋文武
da546ff3b9
gnu: lxqt-sudo: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-sudo): Update to 1.1.0.
[arguments]: Remove phases.
2022-08-22 08:42:54 +08:00
宋文武
64678c7228
gnu: lxqt-session: Update to 1.1.1, don't hardcode /run/current-system.
...
* gnu/packages/lxqt.scm (lxqt-session): Update to 1.1.1.
[inputs]: Add qtxdg-tools, remove libqtxdg.
[arguments]<phases>: Remove patching of LXQT_ETC_XDG_DIR and
LXQT_TRANSLATIONS_DIR. Remove wrap-program.
[native-search-paths]: Add 'XDG_CONFIG_DIRS'.
2022-08-22 08:42:54 +08:00
宋文武
850cc1cc6b
gnu: lxqt-runner: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-runner): Update to 1.1.0.
[arguments]: Remove phases.
2022-08-22 08:42:54 +08:00
宋文武
2d6a506624
gnu: lxqt-qtplugin: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-qtplugin): Update to 1.1.0.
2022-08-22 08:42:54 +08:00
宋文武
f739b5f408
gnu: lxqt-powermanagement: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-powermanagement): Update to 1.1.0.
[arguments]: Remove phases.
2022-08-22 08:42:54 +08:00
宋文武
0dc25538be
gnu: lxqt-policykit: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-policykit): Update to 1.1.0.
[arguments]: Remove phases.
2022-08-22 08:42:54 +08:00
宋文武
bc89baeffe
gnu: lxqt-panel: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-panel): Update to 1.1.0.
[inputs]: Add libxtst and xcb-util-image.
[arguments]: Remove patch-source and patch-translations-dir phases.
2022-08-22 08:42:54 +08:00
宋文武
fddf8dfa4e
gnu: lxqt-openssh-askpass: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-openssh-askpass): Update to 1.1.0.
[arguments]: Remove phases.
2022-08-22 08:42:54 +08:00
宋文武
826f188d52
gnu: lxqt-notificationd: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-notificationd): Update to 1.1.0.
[arguments]: Remove phases.
2022-08-22 08:42:53 +08:00
宋文武
e8b4c9af4b
gnu: lxqt-globalkeys: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-globalkeys): Update to 1.1.0.
[arguments]: Remove phases.
2022-08-22 08:42:53 +08:00
宋文武
90d5792eea
gnu: lxqt-config: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-config): Update to 1.1.0.
[arguments]: Remove patch-source and patch-translations-dir phases.
2022-08-22 08:42:53 +08:00
宋文武
240d202a5b
gnu: lxqt-admin: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-admin): Update to 1.1.0.
[arguments]: Remove patch-translations-dir phase.
2022-08-22 08:42:53 +08:00
宋文武
8ba91eaf75
gnu: lxqt-about: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (lxqt-about): Update to 1.1.0.
[arguments]: Remove patch-translations-dir phase.
2022-08-22 08:42:53 +08:00
宋文武
c4a19dd79c
gnu: libsysstat: Update to 0.4.6.
...
* gnu/packages/lxqt.scm (libsysstat): Update 0.4.6.
2022-08-22 08:42:53 +08:00
宋文武
9914671af5
gnu: liblxqt: Update to 1.1.0.
...
* gnu/packages/lxqt.scm (liblxqt): Update to 1.1.0.
[arguments]: Remove patch-translations-dir phase.
2022-08-22 08:42:53 +08:00
宋文武
2472cec23b
gnu: Add qtxdg-tools.
...
* gnu/packages/lxqt.scm (qtxdg-tools): New variable.
2022-08-22 08:42:53 +08:00
宋文武
e141507054
gnu: libqtxdg: Update to 3.9.1.
...
* gnu/packages/lxqt.scm (libqtxdg): Update to 3.9.1.
2022-08-22 08:42:53 +08:00
宋文武
6072d02556
gnu: lxqt-build-tools: Update to 0.11.0.
...
* gnu/packages/lxqt.scm (lxqt-build-tools)
[version]: Update to 0.11.0.
[arguments]: Configure LXQtConfigVars.cmake to use relative paths.
2022-08-22 08:42:53 +08:00
Vinicius Monego
50fd598729
gnu: cozy: Update to 1.2.1.
...
* gnu/packages/ebook.scm (cozy): Update to 1.2.1.
2022-08-21 15:55:46 -03:00
Vinicius Monego
6defe340ab
gnu: lightspark: Remove input labels.
...
* gnu/packages/animation.scm (lightspark)[native-inputs, inputs]: Remove
labels.
2022-08-21 15:55:46 -03:00
Vinicius Monego
9d829dc9a4
gnu: lightspark: Update to 0.8.6.
...
* gnu/packages/animation.scm (lightspark): Update to 0.8.6.
2022-08-21 15:55:46 -03:00
Vinicius Monego
b62da25698
gnu: lightspark: Remove optional input gnash.
...
* gnu/packages/animation.scm (lightspark)[inputs]: Remove gnash.
2022-08-21 15:55:46 -03:00
Vinicius Monego
78ff815981
gnu: srain: Update to 1.4.1.
...
* gnu/packages/irc.scm (srain): Update to 1.4.1.
2022-08-21 15:55:46 -03:00
Vinicius Monego
254aa17817
gnu: python-wand: Update to 0.6.10.
...
* gnu/packages/python-xyz.scm (python-wand): Update to 0.6.10.
[description]: Remove text about the unused C API.
2022-08-21 15:55:46 -03:00
Efraim Flashner
706b3ef38b
gnu: vim: Update to 9.0.0235.
...
* gnu/packages/vim.scm (vim): Update to 9.0.0235.
2022-08-21 20:15:33 +03:00
Nicolas Goaziou
f83f69ebfa
gnu: emacs-async: Update to 1.9.6.
...
* gnu/packages/emacs-xyz.scm (emacs-async): Update to 1.9.6.
2022-08-21 17:55:55 +02:00
Liliana Marie Prikler
7783a18b7b
gnu: audacity: Remove gratuitous wrapper script.
...
Audacity installs a wrapper in the installation root. This wrapper is
pointless, as Guix has its own wrapper script in the right location.
For more information, see <https://bugs.gnu.org/53790 >.
* gnu/packages/audio.scm (audacity)[#:phases]: Add ‘delete-gratuitous-script’.
2022-08-21 11:57:11 +02:00
Tobias Geerinckx-Rice
b8f2eb286e
gnu: Remove Realtek WiFi drivers with firmware blobs.
...
rtl8821ce-linux-module contains, e.g., halhwimg8821c_fw.c and
hal8821c_fw.c. rtl8812au-aircrack-ng-linux-module has, e.g.,
hal8814a_fw.c, hal8812a_fw.c, and hal8821a_fw.c. Each of these
examples contains non-free firmware blobs disguised as C arrays.
* gnu/packages/linux.scm (rtl8821ce-linux-module)
(rtl8812au-aircrack-ng-linux-module): Remove variables.
Reported by Jacob K <jacobk@disroot.org >
2022-08-14 02:00:08 +02:00
Tobias Geerinckx-Rice
ae74b3020c
gnu: guile-bash: Modernise.
...
* gnu/packages/guile-xyz.scm (guile-bash)[inputs]: Use MODIFY-INPUTS.
[arguments]: Use SUBSTITUTE-KEYWORD-ARGUMENTS.
2022-08-14 02:00:57 +02:00
Tobias Geerinckx-Rice
19d576c645
gnu: guile2.0-bash: Use G-expressions.
...
* gnu/packages/guile-xyz.scm (guile2.0-bash)[arguments]:
Rewrite as G-expressions.
2022-08-14 02:00:57 +02:00
Tobias Geerinckx-Rice
f4012ed237
gnu: guile2.0-bash: Remove native-input labels.
...
* gnu/packages/guile-xyz.scm (guile2.0-bash)[native-inputs]:
Remove input labels.
2022-08-14 02:00:56 +02:00
Tobias Geerinckx-Rice
acb38e3fdb
gnu: guile2.0-bash: Update source & home page URI.
...
* gnu/packages/guile-xyz.scm (guile2.0-bash)[home-page]: Use working URL.
[source]: Likewise, and don't re-use HOME-PAGE.
2022-08-14 02:00:56 +02:00
Tobias Geerinckx-Rice
e5baa4ad04
gnu: memcached: Update to 1.6.16.
...
* gnu/packages/databases.scm (memcached): Update to 1.6.16.
2022-08-14 02:00:56 +02:00
Tobias Geerinckx-Rice
784c00d7fb
gnu: ioquake3: Update to 1.3.6-2.29b0cc3.
...
* gnu/packages/game-development.scm (ioquake3): Update to 1.3.6-2.29b0cc3.
2022-08-14 02:00:56 +02:00
Tobias Geerinckx-Rice
8612395554
gnu: ioquake3: Prepare for cross-compilation.
...
* gnu/packages/game-development.scm (ioquake3)[arguments]: Use CC-FOR-TARGET.
2022-08-14 02:00:56 +02:00
Tobias Geerinckx-Rice
5456a144c7
gnu: ioquake3: Deduplicate make flags.
...
* gnu/packages/game-development.scm (ioquake3)[arguments]:
Honour #:make-flags in the 'install phase.
2022-08-14 02:00:56 +02:00
Tobias Geerinckx-Rice
466021fb90
gnu: ioquake3: Use G-expressions.
...
* gnu/packages/game-development.scm (ioquake3)[arguments]:
Rewrite as G-expressions.
2022-08-14 02:00:56 +02:00
Tobias Geerinckx-Rice
ee2657a018
gnu: ioquake3: Remove input labels.
...
* gnu/packages/game-development.scm (ioquake3)[inputs]:
Remove input labels.
2022-08-14 02:00:55 +02:00
Tobias Geerinckx-Rice
5a9c2abf9e
gnu: Remove ‘open source’ from package descriptions.
...
Also do some (trivial) editing where appropriate.
* gnu/packages/bioconductor.scm (r-anaquin, r-rcppnumerical)
[description]: Remove superfluous ‘open source’.
* gnu/packages/debian.scm (apt-mirror)[description]: Likewise.
Add @acronym{}. Drop obscure Ubuntu for famous Trisquel. Reorder.
* gnu/packages/documentation.scm (scrollkeeper)[description]:
Remove superfluous ‘open systems’. Keep ‘Open Source’ in standard name.
* gnu/packages/engineering.scm (freecad, cura-engine)[description]:
Remove superfluous ‘open source’ and excessive puffery.
* gnu/packages/firmware.scm (make-opensbi-package)
[synopsis]: Remove ‘Open Source’. Use @acronym{}.
[description]: Fix first sentence to follow guidelines. Use @acronym{}.
* gnu/packages/game-development.scm (ioquake3, recastnavigation):
[description]: Remove ‘open source’.
* gnu/packages/graphics.scm (skia)[description]: Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-s-sysdeps)[description]: Likewise.
* gnu/packages/machine-learning.scm (onnx)[description]: Likewise.
Use @acronym{}.
* gnu/packages/ocaml.scm (ocaml-cudf)[description]: Likewise.
2022-08-14 02:00:00 +02:00
Tobias Geerinckx-Rice
078d880f8f
gnu: sqlitebrowser: Fix description.
...
* gnu/packages/databases.scm (sqlitebrowser)[synopsis]: Include more keywords.
[description]: Bring up to snuff.
2022-08-14 02:00:00 +02:00
Julien Lepiller
92b25a09c4
doc: Fix typos.
...
* doc/guix.texi: Fix various typos found by translators.
2022-08-20 13:16:28 +02:00
Julien Lepiller
2bba9c40ca
gnu: opam: Update to 2.1.3.
...
* gnu/packages/ocaml.scm (opam): Update to 2.1.3.
2022-08-20 12:09:14 +02:00
Guillaume Le Vaillant
e16fcc7484
gnu: electron-cash: Update to 4.2.11.
...
* gnu/packages/finance.scm (electron-cash): Update to 4.2.11.
2022-08-20 09:47:37 +02:00
Vagrant Cascadian
f31e55d081
gnu: perl-class-methodmaker: Build reproducibly.
...
* gnu/packages/patches/perl-class-methodmaker-reproducible.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add patch.
* gnu/packages/perl.scm (perl-class-methodmaker)[source]: Use patch.
2022-08-19 21:17:12 -07:00
Vagrant Cascadian
d2b85f8906
gnu: libnet: Set man page date to built reproducibly.
...
* gnu/packages/networking.scm (libnet)[argument]: Add 'fix-manpage-date phase.
2022-08-19 17:40:03 -07:00
Vagrant Cascadian
397b103bef
gnu: directfb: Remove timestamp to build reproducibly.
...
* gnu/packages/graphics.scm (directfb)[arguments]: Add 'remove-buildtime
phase.
2022-08-19 15:53:12 -07:00
Vagrant Cascadian
ec6122250d
gnu: diffoscope: Update to 221.
...
* gnu/packages/diffoscope.scm (diffoscope): Update to 221.
2022-08-19 14:36:32 -07:00
Nicolas Goaziou
6ce0ab08e2
gnu: emacs-modus-themes: Update to 2.6.0.
...
* gnu/packages/emacs-xyz.scm (emacs-modus-themes): Update to 2.6.0.
2022-08-19 22:09:48 +02:00
Tobias Geerinckx-Rice
e8b4e03e29
gnu: bear: Update to 3.0.20.
...
* gnu/packages/build-tools.scm (bear): Update to 3.0.20.
2022-08-14 02:00:00 +02:00
Zhu Zihao
03e7df49c4
gnu: mu: Use G-expressions.
...
* gnu/packages/mail.scm (mu)[arguments]: Use G-expressions.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-08-14 02:00:00 +02:00
Zhu Zihao
3138d3f3c9
gnu: mu: Fix autoloads generation.
...
* gnu/packages/mail.scm (mu)[arguments]<#:phases>: In the
'install-emacs-autoloads' phase, fix the path to mu4e files to generate
autoloads.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-08-14 02:00:00 +02:00
Marius Bakke
005b088fa4
gnu: ungoogled-chromium: Update to 104.0.5112.101-1.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 104.0.5112.101.
(%ungoogled-origin, ungoogled-chromium): Update hashes.
2022-08-19 19:22:43 +02:00
Marius Bakke
712b931d50
gnu: uBlock Origin: Update to 1.44.0.
...
* gnu/packages/browser-extensions.scm (ublock-origin): Update to 1.44.0.
2022-08-19 19:22:43 +02:00
Marius Bakke
29ba3898f9
gnu: hitch: Remove input labels.
...
* gnu/packages/web.scm (hitch)[native-inputs]: Remove labels.
2022-08-19 19:22:43 +02:00
Marius Bakke
a7ca1a3234
gnu: varnish: Update to 7.1.1.
...
* gnu/packages/web.scm (varnish): Update to 7.1.1.
2022-08-19 19:22:43 +02:00
Marius Bakke
e2feae7bef
gnu: varnish: Add release-monitoring-url.
...
* gnu/packages/web.scm (varnish)[properties]: New field.
2022-08-19 19:22:43 +02:00
Marius Bakke
6b627f0ebd
gnu: python-rq: Update to 1.11.
...
* gnu/packages/databases.scm (python-rq): Update to 1.11.
[native-inputs]: Add PYTHON-PSUTIL.
2022-08-19 19:22:43 +02:00
Marius Bakke
9f8d55870d
gnu: python-aiohttp: Disable tests that fail with Pytest 7.
...
* gnu/packages/python-web.scm (python-aiohttp)[arguments]: Ignore three tests.
2022-08-19 19:22:42 +02:00
Andrew Tropin
b379b4f4a2
doc: Add files, xdg-configuration and symlink-manager home services.
...
* doc/guix.texi (Essential Home Services): Add files, xdg-configuration-files
and symlink-manager home services.
2022-08-19 18:55:43 +03:00
Andrew Tropin
aac1065930
build-system/gnu: Fix docstring.
...
* guix/build-system/gnu.scm (dist-package): Fix docstring.
2022-08-19 18:55:42 +03:00
Andrew Tropin
e60ba7eb6d
home: Fix docstring.
...
gnu/home.scm (home-environment-derivation): Fix docstring.
2022-08-19 18:55:41 +03:00
Andrew Tropin
ffc391500a
home: Use absolute path for home in activation script.
...
* gnu/home/services.scm (compute-activation-script): Use absolute path for
home in activation script.
2022-08-19 18:55:40 +03:00
Nicolas Goaziou
65cabb010e
gnu: python-duniterpy: Update to 1.1.0.
...
* gnu/packages/finance.scm (python-duniterpy): Update to 1.1.0.
[propagated-inputs]: Remove PYTHON-AIOHTTP and PYTHON-PYLIBSCRYPT.
2022-08-19 12:17:09 +02:00
Nicolas Goaziou
9d137c81ed
gnu: emacs-crdt: Update to 0.3.2.
...
* gnu/packages/emacs-xyz.scm (emacs-crdt): Update to 0.3.2.
2022-08-19 12:13:40 +02:00
jgart
89d427e4be
gnu: janet: Update to 1.24.0.
...
* gnu/packages/lisp.scm (janet): Update to 1.24.0.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-19 09:25:15 +08:00
宋文武
0f090bdc48
gnu: Add rizin.
...
* gnu/packages/engineering.scm (rizin): New variable.
2022-08-19 09:16:56 +08:00
宋文武
517f0ed813
gnu: Add rex.
...
* gnu/packages/admin.scm (rex): New variable.
2022-08-19 09:13:08 +08:00
Leo Famulari
5feb567385
gnu: linux-libre 4.19: Update to 4.19.255.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.255.
(linux-libre-4.19-pristine-source): Update hash.
2022-08-18 17:01:42 -04:00
Leo Famulari
75a76ffffd
gnu: linux-libre 5.4: Update to 5.4.210.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.210.
(linux-libre-5.4-pristine-source): Update hash.
2022-08-18 17:01:42 -04:00
Leo Famulari
876ebb8523
gnu: linux-libre 5.10: Update to 5.10.136.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.136.
(linux-libre-5.10-pristine-source): Update hash.
2022-08-18 17:01:41 -04:00
Leo Famulari
de25c828fe
gnu: linux-libre 5.15: Update to 5.15.61.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.61.
(linux-libre-5.15-pristine-source, deblob-scripts-5.15): Update hashes.
2022-08-18 17:01:41 -04:00
Leo Famulari
975731e409
gnu: linux-libre: Update to 5.18.18.
...
* gnu/packages/linux.scm (linux-libre-5.18-version): Update to 5.18.18.
(linux-libre-5.18-pristine-source, deblob-scripts-5.18): Update hashes.
2022-08-18 17:01:41 -04:00
Nguyễn Gia Phong
9cde566b9c
gnu: Add font-latin-modern.
...
* gnu/packages/fonts.scm (font-latin-modern): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2022-08-18 22:54:08 +02:00
Jan (janneke) Nieuwenhuizen
ceacf8e32f
gnu: dezyne: Update to 2.16.0.
...
* gnu/packages/dezyne.scm (dezyne): Update to 2.16.0.
2022-08-18 16:10:22 +02:00
Nicolas Goaziou
72cf166791
gnu: fsearch: Update to 0.2.1.
...
* gnu/packages/search.scm (fsearch): Update to 0.2.1.
2022-08-18 12:28:08 +02:00
Nicolas Goaziou
2572ce2194
gnu: emacs-spacemacs-theme: Update to 0.3.
...
* gnu/packages/emacs-xyz.scm (emacs-spacemacs-theme): Update to 0.3.
2022-08-18 12:25:43 +02:00
Nicolas Goaziou
6e7c6b3677
gnu: emacs-rustic: Update to 3.3.
...
* gnu/packages/emacs-xyz.scm (emacs-rustic): Update to 3.3.
2022-08-18 12:25:43 +02:00
Nicolas Goaziou
d53201ba65
gnu: emacs-xref: Update to 1.5.0.
...
* gnu/packages/emacs-xyz.scm (emacs-xref): Update to 1.5.0.
2022-08-18 12:25:42 +02:00
Ricardo Wurmus
f3a7d43281
gnu: Add r-kbet.
...
* gnu/packages/bioinformatics.scm (r-kbet): New variable.
2022-08-18 12:21:07 +02:00
Maxim Cournoyer
741c8efd6a
gnu: lxsession: Use a mirror:// URI.
...
* gnu/packages/lxde.scm (lxsession)[source]: Use a mirror URI.
2022-08-17 22:55:06 -04:00
Maxim Cournoyer
5c4d7a4a89
gnu: lxinput: Use a mirror:// URI.
...
* gnu/packages/lxde.scm (lxinput)[source]: Use a mirror URI.
2022-08-17 22:55:06 -04:00
Maxim Cournoyer
6592a8753c
gnu: lxde-common: Use a mirror:// URI.
...
* gnu/packages/lxde.scm (lxde-common)[source]: Use a mirror URI.
2022-08-17 22:55:05 -04:00
Maxim Cournoyer
3545740de2
gnu: lxde-icon-theme: Use a mirror:// URI.
...
* gnu/packages/lxde.scm (lxde-icon-theme)[source]: Use a mirror URI.
2022-08-17 22:55:05 -04:00
Maxim Cournoyer
ad2bc3743d
gnu: lxmenu-data: Use a mirror:// URI.
...
* gnu/packages/lxde.scm (lxmenu-data)[source]: Use a mirror URI.
2022-08-17 22:55:05 -04:00
Maxim Cournoyer
6eccbb7a81
gnu: Update LXDE packages home page.
...
Automated via:
$ git grep -l 'https://lxde.github.io ' | \
xargs sed 's,https://lxde.github.io,https://www.lxde.org/ ,' -i
2022-08-17 22:55:05 -04:00
Maxim Cournoyer
8d0e6f24ef
gnu: lxterminal: Build with GTK 3.
...
* gnu/packages/lxde.scm (lxterminal)[arguments]: New field.
[inputs]: Replace gtk+-2 with gtk+. Replace vte/gtk+-2 with vte.
2022-08-17 22:55:05 -04:00
Maxim Cournoyer
b6c93e3ba0
gnu: lxinput: Build with GTK 3.
...
* gnu/packages/lxde.scm (lxinput)[arguments]: New field.
[inputs]: Replace gtk+-2 with gtk+.
2022-08-17 22:55:05 -04:00
Maxim Cournoyer
f5d7526477
gnu: lxtask: Build with GTK 3.
...
* gnu/packages/lxde.scm (lxtask)[arguments]: New field.
[inputs]: Replace gtk+-2 with gtk+.
2022-08-17 22:55:04 -04:00
Maxim Cournoyer
e8ab1ba7c2
gnu: lxrandr: Build with GTK 3.
...
* gnu/packages/lxde.scm (lxrandr)[configure-flags]: New argument.
[inputs]: Remove labels. Replace gtk+-2 with gtk+.
2022-08-17 22:55:04 -04:00
Maxim Cournoyer
15badf7b1e
gnu: lxsession: Build with GTK 3.
...
* gnu/packages/lxde.scm (lxsession)[snippet]: Delete trailing #t.
[configure-flags]: New argument.
[phases]: Delete trailing #t.
[inputs]: Remove labels.
2022-08-17 22:55:04 -04:00
Maxim Cournoyer
50ece0e14c
gnu: lxappearance: Build with GTK 3.
...
* gnu/packages/lxde.scm (lxappearance): [arguments]: New field.
[inputs]: Replace gtk+-2 with gtk+.
2022-08-17 22:55:04 -04:00
Maxim Cournoyer
8d60951864
gnu: viewnior: Use new style inputs and fix indentation.
...
* gnu/packages/image-viewers.scm (viewnior)[phases]: Delete trailing #t.
[native-inputs, inputs]: Remove labels.
2022-08-17 22:55:04 -04:00
Maxim Cournoyer
e3af0324bc
gnu: gpicview: Build with GTK 3.
...
* gnu/packages/lxde.scm (pcmanfm)[arguments]: New field.
[inputs]: Replace gtk+-2 with gtk+.
2022-08-17 22:55:03 -04:00
Maxim Cournoyer
ee0c9557c1
gnu: lxpanel: Build with GTK 3, use gexps and new style inputs.
...
* gnu/packages/lxde.scm (lxpanel)[source]: Use mirror URI.
[configure-flags]: Add --enable-gtk3.
[phases]{wrap}: Use search-input-file and this-package-input.
[inputs]: Use new style inputs. Replace gtk+-2 with gtk+. Remove
libindicator comment; it seems to expect an old incompatible version.
Sort in lexical order. Add bash-minimal.
[native-inputs]: Use new style inputs. Sort in lexical order.
[propagated-inputs]: Likewise.
2022-08-17 22:54:54 -04:00
Maxim Cournoyer
b1b801f5f3
gnu: pcmanfm: Build with GTK 3.
...
* gnu/packages/lxde.scm (pcmanfm)[arguments]: New field.
[inputs]: Replace gtk+2 with gtk+.
2022-08-17 22:23:26 -04:00
Maxim Cournoyer
351bf8f6fb
gnu: libfm: Build with GTK 3.
...
* gnu/packages/lxde.scm (libfm)
[arguments]: New field.
[inputs]: Replace gtk+2 with gtk+.
2022-08-17 22:23:26 -04:00
Maxim Cournoyer
e635167dc0
gnu: openjdk: Add a variable tracking the latest openjdk package.
...
* gnu/packages/java.scm (openjdk): New variable.
2022-08-17 14:33:42 -04:00
Tobias Geerinckx-Rice
6c2e14a43a
doc: Note the pitfalls of man 8 mount.
...
* doc/guix.texi (File Systems): Warn against flags presented as options.
2022-08-14 02:00:00 +02:00
Tobias Geerinckx-Rice
6983ded42b
doc: Remove extraneous ‘Note…’.
...
* doc/guix.texi (File Systems): Remove a ‘Note that’ & begin a new
paragraph.
2022-08-14 02:00:00 +02:00
Tobias Geerinckx-Rice
a08f6e1c51
gnu: bind: Update to 9.16.32.
...
* gnu/packages/dns.scm (isc-bind): Update to 9.16.32.
2022-08-14 02:00:00 +02:00
Mathieu Othacehe
845c841e21
time-travel-manifest: Use a separate cache per system.
...
* etc/time-travel-manifest.scm (<guix-instance-compiler>): Use a separate
cache per system so that parallel system evaluations do no step on each
other's toes.
2022-08-17 15:42:56 +02:00
Nikolay Korotkiy
800393bf14
gnu: gdal: Update to 3.5.1.
...
* gnu/packages/geo.scm (gdal): Update to 3.5.1.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-17 15:22:42 +02:00
Nikolay Korotkiy
359fd26fc4
gnu: python-maxminddb: Update to 2.2.0.
...
* gnu/packages/geo.scm (python-maxminddb): Update to 2.2.0.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-17 15:21:56 +02:00
Nikolay Korotkiy
2eba49db92
gnu: libmaxminddb: Update to 1.6.0.
...
* gnu/packages/geo.scm (libmaxminddb): Update to 1.6.0.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-17 15:21:35 +02:00
Nikolay Korotkiy
94528ffacd
gnu: geos: Update to 3.11.0.
...
* gnu/packages/geo.scm (geos): Update to 3.11.0.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-17 15:16:46 +02:00
Nicolas Goaziou
a0d3412468
gnu: scintilla: Update to 5.2.4.
...
* gnu/packages/text-editors.scm (scintilla): Update to 5.2.4.
2022-08-17 14:50:17 +02:00
Nicolas Goaziou
fec225aa47
gnu: fsearch: Update to 0.2.
...
* gnu/packages/search.scm (fsearch): Update to 0.2.
[inputs]: Replace PCRE with PCRE2.
2022-08-17 11:51:03 +02:00
Nicolas Goaziou
08b81199d1
gnu: emacs-eldev: Update to 1.2.
...
* gnu/packages/emacs-xyz.scm (emacs-eldev): Update to 1.2.
2022-08-17 11:51:02 +02:00
Nicolas Goaziou
9f73df8071
gnu: emacs-crdt: Update to 0.3.1.
...
* gnu/packages/emacs-xyz.scm (emacs-crdt): Update to 0.3.1.
2022-08-17 11:50:57 +02:00
Mathieu Othacehe
5bbb9af5d9
ci: Fix the images specification.
...
If the current-guix-package parameter is not set, Cuirass will try to update
the in-store Git checkout used by the evaluate.scm inferior:
ice-9/boot-9.scm:1685:16: In procedure raise-exception: ERROR:
1. &inferior-exception: arguments: (git-error #<inferior-object #<<git-error>
code: -3 message: "could not find repository from
'/gnu/store/v33m82qzkvd96dlp2g83dvz62n4pkad2-guix-20d8081'" class: 6>>)
inferior: #<inferior pipe (0 1 1) 7f7948957dc0>
stack: ((#f ("ice-9/boot-9.scm" 1779 13)) (raise-exception ("ice-9/boot-9.scm"
1682 16)) (raise-exception ("ice-9/boot-9.scm" 1684 16)) (#f ("guix/git.scm"
395 13))
This is a follow-up of: 5bce4c8242 .
* gnu/ci.scm (image-jobs): Add source and commit arguments.
Use them to set the current-guix-package parameter.
(cuirass-jobs): Adapt accordingly.
2022-08-17 11:29:38 +02:00
Guillaume Le Vaillant
a944fd6c4e
gnu: xnec2c: Update to 4.4.11.
...
* gnu/packages/radio.scm (xnec2c): Update to 4.4.11.
2022-08-17 11:09:37 +02:00
Guillaume Le Vaillant
0236b036a4
gnu: sdrangel: Update to 7.6.2.
...
* gnu/packages/radio.scm (sdrangel): Update to 7.6.2.
[inputs]: Add qtwebchannel-5 and qtwebengine-5.
2022-08-17 11:01:16 +02:00
Guillaume Le Vaillant
6ca41feda8
gnu: stumpwm-contrib: Fix description.
...
* gnu/packages/wm.scm (stumpwm-contrib)[synopsis, description]: Fix them.
2022-08-17 10:15:40 +02:00
Trevor Richards
013efb8a12
gnu: stumpwm-contrib: Update to 0.0.1-4.d0c0507.
...
* gnu/packages/wm.scm (stumpwm-contrib): Update to 0.0.1-4.d0c0507.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-17 10:10:39 +02:00
Nikolay Korotkiy
0b69ed70ec
gnu: osm2pgsql: Update to 1.7.0.
...
* gnu/packages/geo.scm (osm2pgsql): Update to 1.7.0.
[source]: Update snippet.
[inputs]: Add fmt and rapidjson.
[arguments]: Update 'configure-flags'.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-17 10:03:07 +02:00
Hilton Chain
e4aca1cc3f
gnu: Add python-lief.
...
From c865b31b702d0e5f86faaadcb306cea269ae1109 Mon Sep 17 00:00:00 2001
From: Hilton Chain <hako@ultrarare.space >
Date: Tue, 16 Aug 2022 21:26:33 +0800
Subject: [PATCH v3] gnu: Add python-lief.
* gnu/packages/python-xyz.scm (python-lief): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-17 09:23:28 +02:00
Mike Jones
b74386efea
gnu: neovim: Update to 0.7.2.
...
* gnu/packages/vim.scm (neovim): Update to 0.7.2.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-17 14:17:55 +08:00
Mike Jones
7df39e6b2d
gnu: fish: Update to 3.5.1.
...
* gnu/packages/shells.scm (fish): Update to 3.5.1.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-17 13:57:44 +08:00
宋文武
4e562883d1
gnu: icestorm: Update to 0.0-4.2bc5417.
...
* gnu/packages/fpga.scm (icestorm): Update to
commit 2bc541743ada3542c6da36a50e66303b9cbd2059.
2022-08-17 13:53:39 +08:00
Denis 'GNUtoo' Carikli
3220edac2a
gnu: greybird-gtk-theme: Build with librsvg-for-system.
...
* gnu/packages/gnome-xyz.scm (greybird-gtk-theme)[inputs]:
Replace librsvg with librsvg-for-system.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-17 13:36:53 +08:00
Hilton Chain
11636ee9c0
gnu: emacs-straight-el: Update to fed2153.
...
* gnu/packages/emacs-xyz.scm (emacs-straight-el):
Update to fed215348076ba9182f634e0770a175220474b5a.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-17 13:33:06 +08:00
Tobias Geerinckx-Rice
3bdc0ef2cd
gnu: rsync: Update to 3.2.5 [fixes CVE-2022-29154].
...
* gnu/packages/rsync.scm (rsync): Update to 3.2.5.
2022-08-14 02:00:03 +02:00
Tobias Geerinckx-Rice
3eb3e198b9
gnu: plocate: Update to 1.1.16.
...
* gnu/packages/search.scm (plocate): Update to 1.1.16.
2022-08-14 02:00:02 +02:00
Tobias Geerinckx-Rice
96e862f887
gnu: font-util: Update to 1.3.3.
...
* gnu/packages/xorg.scm (font-util): Update to 1.3.3.
2022-08-14 02:00:02 +02:00
Tobias Geerinckx-Rice
d59442f24e
installer: parted: Don't export WITH-DELAY-DEVICE-IN-USE?.
...
* gnu/installer/parted.scm: Remove WITH-DELAY-DEVICE-IN-USE? from the
module's export list.
2022-08-14 02:00:02 +02:00
Tobias Geerinckx-Rice
9544553c8b
gnu: arx-libertatis: Update to 1.2.1.
...
* gnu/packages/games.scm (arx-libertatis): Update to 1.2.1.
2022-08-14 02:00:02 +02:00
Tobias Geerinckx-Rice
05377d5676
gnu: dhewm3: Remove input labels.
...
* gnu/packages/game-development.scm (dhewm3)[inputs]:
Remove input labels.
2022-08-14 02:00:02 +02:00
Tobias Geerinckx-Rice
160de94418
gnu: dhewm3: Update to 1.5.2.
...
* gnu/packages/game-development.scm (dhewm3): Update to 1.5.2.
[arguments]: Don't explicitly return #t from phases.
[inputs]: Remove libjpeg-turbo, libogg, and libvorbis.
2022-08-14 02:00:01 +02:00
Tobias Geerinckx-Rice
ed0266fcae
gnu: font-gnu-unifont: Update to 14.0.04.
...
* gnu/packages/fonts.scm (font-gnu-unifont): Update to 14.0.04.
2022-08-14 02:00:01 +02:00
Tobias Geerinckx-Rice
dbfadac361
gnu: fio: Update to 3.31.
...
* gnu/packages/benchmark.scm (fio): Update to 3.31.
2022-08-14 02:00:01 +02:00
Tobias Geerinckx-Rice
8bd30dd207
gnu: ldns: Update to 1.8.3.
...
* gnu/packages/dns.scm (ldns): Update to 1.8.3.
2022-08-14 02:00:01 +02:00
Tobias Geerinckx-Rice
cee96b6c41
gnu: cpuid: Update to 20220812.
...
* gnu/packages/linux.scm (cpuid): Update to 20220812.
2022-08-14 02:00:00 +02:00
Mathieu Othacehe
e6a75d013d
gnu: lttng-tools: Update the hash.
...
This is a follow-up of c53a5e7dc3 .
* gnu/packages/instrumentation.scm (lttng-tools)[source]: Update it.
2022-08-16 23:59:11 +02:00
Jonathan Brielmaier
195567304a
gnu: lttng-ust: Update source hash.
...
This was forgotten in eca0227239 .
* gnu/packages/instrumentation.scm (lttng-ust)[source]: Correct the hash.
2022-08-16 23:02:20 +02:00
Liliana Marie Prikler
37cd553679
ui: Describe package outputs.
...
* guix/ui.scm (package->recutils): Output outputs with their descriptions,
one per line.
* po/packages/Makevars (XGETTEXT_OPTIONS): Add ‘output-synopsis’ as keyword.
2022-08-16 21:25:25 +02:00
jgart
0193f9dd03
gnu: Add cl-string-pokemonize.
...
* gnu/packages/lisp-xyz.scm (cl-string-pokemonize): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-16 21:25:20 +02:00
Pierre-Henry Fröhring
f41d75b75c
gnu: Add emacs-mini-frame.
...
* gnu/packages/emacs-xyz.scm (emacs-mini-frame): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-16 21:19:35 +02:00
Ricardo Wurmus
8aab1f7c73
gnu: Add go-github-com-biogo-biogo.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-biogo): New variable.
2022-08-16 16:52:15 +02:00
Ricardo Wurmus
2407416d0f
gnu: Add go-github-com-biogo-hts-fai.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-hts-fai): New variable.
2022-08-16 16:50:16 +02:00
Ricardo Wurmus
31e0ac6dcf
gnu: Add go-github-com-biogo-hts-csi.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-hts-csi): New variable.
2022-08-16 16:50:01 +02:00
Ricardo Wurmus
b4f389e1b9
gnu: Add go-github-com-biogo-hts-cram.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-hts-cram): New variable.
2022-08-16 16:44:58 +02:00
Ricardo Wurmus
ecb7dedaed
gnu: Add go-github-com-kortschak-utter.
...
* gnu/packages/golang.scm (go-github-com-kortschak-utter): New variable.
2022-08-16 16:44:42 +02:00
Ricardo Wurmus
e9bec5bd40
gnu: Add go-github-com-biogo-hts-bgzf.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-hts-bgzf): New variable.
2022-08-16 16:28:33 +02:00
Ricardo Wurmus
bb162a5103
gnu: Add go-github-com-biogo-hts-tabix.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-hts-tabix): New variable.
2022-08-16 16:28:23 +02:00
Ricardo Wurmus
4645a5d3f6
gnu: Add go-github-com-biogo-hts-sam.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-hts-sam): New variable.
2022-08-16 16:28:11 +02:00
Ricardo Wurmus
b986325b13
gnu: Add go-github-com-biogo-hts-bam.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-hts-bam): New variable.
2022-08-16 16:23:04 +02:00
Ricardo Wurmus
2345cd49de
gnu: Add go-github-com-biogo-store-step.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-store-step): New variable.
2022-08-16 16:18:57 +02:00
Ricardo Wurmus
c42745ba39
gnu: Add go-github-com-biogo-store-llrb.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-store-llrb): New variable.
2022-08-16 16:18:48 +02:00
Ricardo Wurmus
5fae9e158d
gnu: Add go-github-com-biogo-store-kdtree.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-store-kdtree): New variable.
2022-08-16 16:18:40 +02:00
Ricardo Wurmus
a33ee9bd51
gnu: Add go-github-com-biogo-store-interval.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-store-interval): New variable.
2022-08-16 16:18:31 +02:00
Ricardo Wurmus
2b4dcc477b
gnu: Add go-github-com-biogo-graph.
...
* gnu/packages/bioinformatics.scm (go-github-com-biogo-graph): New variable.
2022-08-16 16:09:54 +02:00
Ricardo Wurmus
872e17ddc1
gnu: Add stpipeline.
...
* gnu/packages/bioinformatics.scm (stpipeline): New variable.
2022-08-16 15:22:07 +02:00
Ricardo Wurmus
9c2400c282
gnu: Add python-taggd.
...
* gnu/packages/bioinformatics.scm (python-taggd): New variable.
2022-08-16 15:22:07 +02:00
Ricardo Wurmus
a60412019e
gnu: Add python-sqlitedict.
...
* gnu/packages/databases.scm (python-sqlitedict): New variable.
2022-08-16 15:22:06 +02:00
Ricardo Wurmus
752be79bf3
gnu: htseq: Update to 2.0.2.
...
* gnu/packages/bioinformatics.scm (htseq): Update to 2.0.2.
[source]: Fetch from git repository.
[arguments]: Delete 'build phase; run tests with pytest in 'check phase.
[propagated-inputs]: Add python-matplotlib and python-pysam.
[inputs]: Remove python-matplotlib and python-pysam.
[native-inputs]: Add python-pandas, python-pytest, python-scipy, and swig.
[synopsis]: Update.
[description]: Update.
2022-08-16 15:22:06 +02:00
Andrew Tropin
0598b5d143
gnu: emacs-geiser-guile: Update guile input to guile-3.0-latest.
...
* gnu/packages/emacs-xyz.scm (emacs-geiser-guile)[inputs]: Update guile to
guile-3.0-latest.
2022-08-16 09:20:45 +03:00
(
ace7b5babe
gnu: terminals: Deprecate wterm.
...
`wterm` no longer works with modern Wayland, and has been unmaintained
since early 2021. See issue #52029 .
* gnu/packages/terminals.scm (wterm): Deprecate in favour of `foot`.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-16 09:21:52 +08:00
Marius Bakke
302b3cdca3
gnu: python-daemon: Remove unused input.
...
* gnu/packages/python-xyz.scm (python-daemon)[native-inputs]: Remove
PYTHON-UNITTEST2.
2022-08-16 00:43:46 +02:00
Marius Bakke
b38df69c2c
gnu: python-case: Remove unused input.
...
* gnu/packages/python-xyz.scm (python-case)[propagated-inputs]: Remove
PYTHON-UNITTEST2.
2022-08-16 00:43:45 +02:00
Marius Bakke
afdcd03689
gnu: python-posix-ipc: Remove unused input.
...
* gnu/packages/python-xyz.scm (python-posix-ipc)[native-inputs]: Remove.
2022-08-16 00:43:45 +02:00
Marius Bakke
d23a04e52e
gnu: python-pyu2f: Remove unused inputs.
...
* gnu/packages/python-crypto.scm (python-pyu2f)[native-inputs]: Remove.
2022-08-16 00:43:45 +02:00
Marius Bakke
24834c2722
gnu: python-pymysql: Remove unused input.
...
* gnu/packages/databases.scm (python-pymysql)[native-inputs]: Remove
PYTHON-UNITTEST2.
2022-08-16 00:43:45 +02:00
Marius Bakke
715a5efc49
gnu: python-pyclipper: Update to 1.3.0.post3.
...
* gnu/packages/python-xyz.scm (python-pyclipper): Update to 1.3.0.post3.
[source](uri): Use tarball instead of zipball.
[source](snippet): Adjust for renamed file.
[arguments]: Likewise.
[propagated-inputs]: Remove.
[native-inputs]: Remove PYTHON-UNITTEST2 and UNZIP. Add PYTHON-SETUPTOOLS-SCM.
2022-08-16 00:43:45 +02:00
Marius Bakke
90ec03cae3
gnu: python-ufo2ft: Add missing input.
...
* gnu/packages/fontutils.scm (python-ufo2ft)[native-inputs]: Add
PYTHON-SETUPTOOLS-SCM.
2022-08-16 00:43:44 +02:00
Marius Bakke
46b3fb82f8
gnu: python-afdko: Add missing input.
...
* gnu/packages/fontutils.scm (python-afdko)[native-inputs]: Add
PYTHON-SETUPTOOLS-SCM.
2022-08-16 00:43:44 +02:00
Marius Bakke
b74744fee6
gnu: python-ufoprocessor: Add missing input.
...
* gnu/packages/fontutils.scm (python-ufoprocessor)[native-inputs]: Add
PYTHON-SETUPTOOLS-SCM.
2022-08-16 00:43:44 +02:00
Marius Bakke
5f2c529a59
gnu: python-fontparts: Add missing input.
...
* gnu/packages/fontutils.scm (python-fontparts-bootstrap)[native-inputs]: Add
PYTHON-SETUPTOOLS-SCM.
2022-08-16 00:43:44 +02:00
Marius Bakke
a038bfc481
gnu: python-booleanoperations: Add missing input.
...
* gnu/packages/graphics.scm (python-booleanoperations)[native-inputs]: Add
PYTHON-SETUPTOOLS-SCM.
2022-08-16 00:43:44 +02:00
Marius Bakke
faea55669f
gnu: python-mando: Update to 0.7.1.
...
* gnu/packages/python-xyz.scm (python-mando): Update to 0.7.1.
[arguments]: Override check phase.
2022-08-16 00:43:44 +02:00
Marius Bakke
46cb02c7cb
gnu: python-radon: Permit newer versions of mando.
...
* gnu/packages/python-xyz.scm (python-radon)[arguments]: Add setup.py
substitution.
2022-08-16 00:43:44 +02:00
Marius Bakke
389ae75a37
gnu: python-lz4: Update to 4.0.2.
...
* gnu/packages/python-compression.scm (python-lz4): Update to 4.0.2.
[native-inputs]: Remove PYTHON-NOSE. Add PYTHON-PKGCONFIG and PYTHON-PSUTIL.
[arguments]: Override check phase.
2022-08-16 00:43:43 +02:00
Marius Bakke
7e0116740b
gnu: python-mypy: Update to 0.971.
...
* gnu/packages/patches/python-mypy-12332.patch,
gnu/packages/patches/python-mypy-use-sys-path.patch: Delete files.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/python-check.scm (python-mypy): Update to 0.971.
[source](patches): Remove.
[arguments]: Skip one test.
2022-08-16 00:43:43 +02:00
Marius Bakke
1e969dafb7
gnu: libreoffice: Remove obsolete workaround.
...
* gnu/packages/libreoffice.scm (libreoffice)[arguments]: Don't pass LDFLAGS.
2022-08-16 00:43:43 +02:00
Tobias Geerinckx-Rice
97386910fb
gnu: encodings: Update to 1.0.6.
...
* gnu/packages/xorg.scm (encodings): Update to 1.0.6.
2022-08-14 02:00:54 +02:00
Tobias Geerinckx-Rice
73eca39df7
gnu: mu: Update to 1.8.9.
...
* gnu/packages/mail.scm (mu): Update to 1.8.9.
[arguments]: Adjust the 'patch-bin-references phase accordingly.
2022-08-14 02:00:00 +02:00
Ricardo Wurmus
c3c2dfdb5e
gnu: plink-ng: Build sources from 2.0 directory
...
* gnu/packages/bioinformatics.scm (plink-ng)[arguments]: Disable tests; adjust
make flags; enter 2.0 directory in 'chdir phase; replace 'install phase.
[inputs]: Add zstd:lib.
2022-08-15 18:08:20 +02:00
Tobias Geerinckx-Rice
d248d8b519
gnu: rnnoise: Remove input labels.
...
* gnu/packages/xiph.scm (rnnoise)[native-inputs]:
Remove input labels.
2022-08-14 02:00:01 +02:00
Tobias Geerinckx-Rice
2388d2d3f7
gnu: rnnoise: Unhide and rename variable.
...
* gnu/packages/xiph.scm (xiph-rnnoise): Rename to…
(rnnoise): …this. Adjust all users.
[properties]: Remove HIDDEN? property as it is no longer ambiguous.
2022-08-14 02:00:01 +02:00
Tobias Geerinckx-Rice
2790d118b2
gnu: noise-suppression-for-voice: Rename from ‘rnnoise’.
...
This is a set of plug-ins *based on* Xiph's rnnoise package (also in Guix).
* gnu/packages/pulseaudio.scm (rnnoise): Rename this variable…
(noise-suppression-for-voice): …to this.
[noisetorch](inputs): Adjust its only user.
2022-08-14 02:00:01 +02:00
Tobias Geerinckx-Rice
8e82a70a4f
gnu: noisetorch: Update to 0.12.2.
...
* gnu/packages/pulseaudio.scm (noisetorch): Update to 0.12.2.
[source]: Switch to maintained fork.
[arguments]: Update all ‘paths’ accordingly. Rename 'symlink-rnnoise
phase to 'copy-rnnoise-library and do so. Remove 'gen-version.go phase.
Don't explicitly return #f from phases.
[home-page]: Update to match SOURCE.
2022-08-14 02:00:01 +02:00
Tobias Geerinckx-Rice
39b77ed3aa
gnu: openvpn: Update to 2.5.7.
...
* gnu/packages/vpn.scm (openvpn): Update to 2.5.7.
2022-08-14 02:00:01 +02:00
Tobias Geerinckx-Rice
0d92088d5c
gnu: nftables: Update to 1.0.5.
...
* gnu/packages/linux.scm (nftables): Update to 1.0.5.
2022-08-14 02:00:01 +02:00
Tobias Geerinckx-Rice
4985043c7c
gnu: libnftnl: Update to 1.2.3.
...
* gnu/packages/linux.scm (libnftnl): Update to 1.2.3.
2022-08-14 02:00:00 +02:00
Tobias Geerinckx-Rice
ab34425e53
gnu: bird: Update to 2.0.10.
...
* gnu/packages/networking.scm (bird): Update to 2.0.10.
2022-08-14 02:00:00 +02:00
Tobias Geerinckx-Rice
3ee8a17eff
gnu: catfish: Update to 4.16.4.
...
* gnu/packages/xfce.scm (catfish): Update to 4.16.4.
2022-08-14 02:00:00 +02:00
Tobias Geerinckx-Rice
367b045c55
gnu: libupnp: Update to 1.14.13.
...
* gnu/packages/upnp.scm (libupnp): Update to 1.14.13.
2022-08-14 02:00:00 +02:00
Tobias Geerinckx-Rice
25e9bb05da
gnu: os-prober: Update to 1.81.
...
* gnu/packages/bootloaders.scm (os-prober): Update to 1.81.
2022-08-14 02:00:00 +02:00
Maxime Devos
de29a26008
guile-fibers: Backport the ‘epoll instance is dead’ bugfix.
...
This fixes some indeterministic test failures for gnunet-scheme observed while
developing gnunet-scheme. The following checks were made:
All dependents compile for x86_64:
$ ./pre-inst-env guix build shepherd gnunet-scheme guix-build-coordinator nar-herder guix-data-service guile-fibers --system=x86_64-linux
Everything except guix-build-coordinator (which depends on the
non-cross-compilable sqitch) cross-compile from x86_64 to aarch64-linux-gnu:
$ ./pre-inst-env guix build shepherd gnunet-scheme nar-herder guile-fibers --system=x86_64-linux --target=aarch64-linux-gnu
I tried testing for reproducibility but the check phase took to long.
However, you can compare the hash you get against the hash I got:
$ ./pre-inst-env guix hash --serializer=nar $(./pre-inst-env guix build guile-fibers --no-grafts --system=x86_64-linux) 0qsaqx27b6q2s22h7y93417ijpkwl6gc1fhhck8aha6bvmawk5h0
I tried an emulated build for another architecture, but there the tests took
overly long.
There were no lint warnings for guile-fibers.
* gnu/packages/patches/guile-fibers-epoll-instance-is-dead.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register the patch.
* gnu/packages/guile-xyz.scm (guile-fibers)[source]{patches}: Use the patch.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-15 15:51:27 +02:00
Mathieu Othacehe
3084fc28fd
Revert "gnu: python-lxml: Update to 4.6.5."
...
This reverts commit 2365e8435a as it triggers
>15k rebuilds: https://ci.guix.gnu.org/eval/543158 .
2022-08-15 15:45:46 +02:00
Maximilian Heisinger
9ddd37d6ab
gnu: Add kissat.
...
* gnu/packages/maths.scm (kissat): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-15 15:15:11 +02:00
Danny Milosavljevic
2365e8435a
gnu: python-lxml: Update to 4.6.5.
...
* gnu/packages/xml.scm (python-lxml): Update to 4.6.5.
2022-08-15 14:48:41 +02:00
Maxim Cournoyer
d8537c68d0
gnu: Add python-robotframework-sshtunnellibrary.
...
* gnu/packages/python-xyz.scm (python-robotframework-sshtunnellibrary): New variable.
2022-08-15 08:30:14 -04:00
Maxim Cournoyer
21f1a47097
gnu: Add python-sshtunnel.
...
* gnu/packages/python-xyz.scm (python-sshtunnel): New variable.
2022-08-15 08:30:14 -04:00
Mathieu Othacehe
0e53328a8a
gnu: torsocks: Wrap lines.
...
* gnu/packages/tor.scm (torsocks)[source, arguments]: Wrap long lines
and remove a trailing #t.
2022-08-15 11:21:22 +02:00
Jim Newsome
ae549cf48f
gnu: torsocks: Update to 2.4.0.
...
* gnu/packages/tor.scm (torsocks): Update to 2.4.0.
[native-inputs]: Add autoconf, automake, libtool because torsocks releases
no longer pre-run autogen.sh.
[synopsis, description]: Clarify that applications do not need to be
socks-aware to be used with torsocks.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-15 11:20:28 +02:00
Mathieu Othacehe
6b2d29a6f5
Revert "gnu: python-lsp-server: Update to 1.5.0."
...
This reverts commit 07f807f12c because it
requires a python-pluggy update which seems to cause some issues.
2022-08-15 11:08:05 +02:00
Ricardo Wurmus
2e88164023
gnu: r-tweenr: Build reproducibly.
...
* gnu/packages/cran.scm (r-tweenr)[arguments]: Add phase 'build-reproducibly
to avoid embedding random time difference.
2022-08-15 11:01:35 +02:00
Nicolas Goaziou
f6709ee234
gnu: emacs-org-re-reveal: Update to 3.15.0.
...
* gnu/packages/emacs-xyz.scm (emacs-org-re-reveal): Update to 3.15.0.
2022-08-15 10:32:18 +02:00
Nicolas Goaziou
82fbb54207
gnu: asymptote: Update to 2.82.
...
* gnu/packages/plotutils.scm (asymptote): Update to 2.82.
2022-08-15 10:29:16 +02:00
Michael Rohleder
a751d90c88
gnu: tumbler: Update to 4.16.1.
...
* gnu/packages/xfce.scm (tumbler): Update to 4.16.1.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-15 10:22:38 +02:00
Michael Rohleder
81d3bc3c8b
gnu: xfce4-screenshooter: Update to 1.9.11.
...
* gnu/packages/xfce.scm (xfce4-screenshooter): Update to 1.9.11.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-15 10:22:38 +02:00
Ekaitz Zarraga
eb38d49b04
gnu: rgbds: Update to 0.5.2.
...
* gnu/packages/assembly.scm (rgbds): Update to 0.5.2.
[arguments]: Remove a trailing #t.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-15 10:22:38 +02:00
Olivier Dion
c53a5e7dc3
gnu: lttng-tools: Update to 2.13.7.
...
* gnu/packages/instrumentation.scm (lttng-tools): Update to 2.13.7.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-15 10:22:38 +02:00
Olivier Dion
eca0227239
gnu: lttng-ust: Update to 2.13.3.
...
* gnu/packages/instrumentation.scm (lttng-ust): Update to 2.13.3.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-15 10:22:38 +02:00
Olivier Dion
9641e64b43
gnu: Add lttng-modules.
...
* gnu/packages/instrumentation.scm (lttng-modules): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-15 10:22:38 +02:00
Nicolas Graves via Guix-patches via
07f807f12c
gnu: python-lsp-server: Update to 1.5.0.
...
* gnu/packages/python-xyz.scm (python-lsp-server): Update to 1.5.0.
[arguments]{set-HOME}: Remove this phase because tests do not require it
anymore.
{check}: Do not replace it as test_pyqt_completion is not longer failing.
[propagated-inputs]: Remove python-future.
[native-inputs]: Remove python-mock, python-versioneer and add
python-whatthepatch.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-15 10:22:38 +02:00
Nicolas Graves via Guix-patches via
18ae404690
gnu: Add python-whatthepatch.
...
* gnu/packages/python-web.scm (python-whatthepatch): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-15 09:45:31 +02:00
Zhu Zihao
8fce5f0f0f
gnu: guile-machine-code: Update to 2.2.0.
...
* gnu/packages/guile-xyz.scm (guile-machine-code): Update to 2.2.0.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-15 13:54:15 +08:00
Zhu Zihao
ae5ea1ec1c
gnu: guile-laesare: Use source from Gitlab.
...
* gnu/packages/guile-xyz.scm (guile-laesare)
[source]: Use source from Gitlab.
[home-page]: Use source from Gitlab.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-15 13:54:15 +08:00
Zhu Zihao
6a06ddd247
gnu: guile-machine-code: Use source from Gitlab.
...
* gnu/packages/guile-xyz.scm (guile-machine-code)
[source]: Use source from Gitlab.
[home-page]: Use source from Gitlab.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-15 13:54:15 +08:00
Zhu Zihao
89cf75b8c6
gnu: guile-struct-pack: Use source from Gitlab.
...
* gnu/packages/guile-xyz.scm (guile-struct-pack)
[source]: Use source from Gitlab. Replace missing git tag with commit.
[home-page]: Use source from Gitlab.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-15 13:54:15 +08:00
Zhu Zihao
5c6b020c73
gnu: guile-packrat: Use source from Gitlab.
...
* gnu/packages/guile-xyz.scm (guile-packrat)[home-page]: Use source from
Gitlab.
[source]: Replace missing git tag with commit.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-15 13:54:11 +08:00
Zhu Zihao
f0694d4e01
gnu: guile-hashing: Use source from Gitlab.
...
* gnu/packages/guile-xyz.scm (guile-hashing)[home-page]: Use source from
Gitlab.
[source]: Replace missing git tag with commit.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-15 13:53:11 +08:00
jgart
94dc157ae4
gnu: Add python-nanoid.
...
* gnu/packages/python-xyz.scm (python-nanoid): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-15 13:42:21 +08:00
jgart
bd8fdbe010
gnu: emacs-org-auto-tangle: Update to 0.6.0.
...
* gnu/packages/emacs-xyz.scm (emacs-org-auto-tangle): Update to 0.6.0.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-15 10:52:55 +08:00
gyara
76ef73f81f
gnu: dunst: Update to 1.9.0.
...
* gnu/packages/dunst.scm (dunst): Update to 1.9.0.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-15 09:45:59 +08:00
Nicolas Goaziou
20d8081eda
gnu: emacs-reverse-im: Update to 0.0.8.
...
* gnu/packages/emacs-xyz.scm (emacs-reverse-im): Update to 0.0.8.
2022-08-15 00:23:17 +02:00
Nicolas Goaziou
ab338804ba
gnu: emacs-gruvbox-theme: Update to 1.30.0.
...
* gnu/packages/emacs-xyz.scm (emacs-gruvbox-theme): Update to 1.30.0.
2022-08-15 00:23:16 +02:00
Nicolas Goaziou
06d8d629c7
gnu: emacs-autothemer: Update to 0.2.5.
...
* gnu/packages/emacs-xyz.scm (emacs-autothemer): Update to 0.2.5.
2022-08-15 00:23:16 +02:00
Nicolas Goaziou
fa30df8a65
gnu: emacs-citar: Update to 1.0.
...
* gnu/packages/emacs-xyz.scm (emacs-citar): Update to 1.0.
2022-08-15 00:23:16 +02:00
Nicolas Goaziou
40105da3f8
gnu: emacs-citeproc-el: Update to 0.9.1.
...
* gnu/packages/emacs-xyz.scm (emacs-citeproc-el): Update to 0.9.1.
2022-08-15 00:23:16 +02:00
Nicolas Goaziou
bf0b51260e
gnu: emacs-buttercup: Improve package style.
...
* gnu/packages/emacs-xyz.scm (emacs-buttercup)[arguments]: Use
G-expressions. Remove trailing #T from phases.
2022-08-15 00:23:15 +02:00
Nicolas Goaziou
f5b51a6212
gnu: emacs-buttercup: Update to 1.26.
...
* gnu/packages/emacs-xyz.scm (emacs-buttercup): Update to 1.26.
2022-08-15 00:23:15 +02:00
Nicolas Goaziou
6097e97b2d
gnu: emacs-debbugs: Update to 0.33.
...
* gnu/packages/emacs-xyz.scm (emacs-debbugs): Update to 0.33.
2022-08-15 00:23:15 +02:00
Vagrant Cascadian
b30614b28c
gnu: itpp: Remove non-deterministic log file.
...
* gnu/packages/maths.scm (itpp)[arguments]: Add 'delete-formulas-log phase.
2022-08-14 15:14:28 -07:00
Ricardo Wurmus
51f978f4ad
gnu: r-rcppparallel: Do not use bundled tbb.
...
* gnu/packages/cran.scm (r-rcppparallel)[inputs]: Add tbb-2020.
[arguments]: Add build phase 'use-system-tbb to set TBB_ROOT.
[source]: Add snippet to remove bundled tbb.
2022-08-14 21:07:10 +02:00
Ricardo Wurmus
a5f199732b
gnu: r-reticulate: Build reproducibly.
...
* gnu/packages/cran.scm (r-reticulate)[arguments]: Add build phase
'build-reproducibly to ensure that pyc files are built reproducibly.
2022-08-14 20:57:55 +02:00
Ricardo Wurmus
593327ef5b
gnu: r-bgx: Build without CPU tuning.
...
Fixes <https://issues.guix.gnu.org/57210 >.
* gnu/packages/bioconductor.scm (r-bgx)[arguments]: Add phase
'do-not-tune-cflags-for-reproducibility to patch configure.ac.
[inputs]: Add boost.
[native-inputs]: Add autoconf and automake.
2022-08-14 20:43:01 +02:00
Ricardo Wurmus
8e87bbde13
gnu: r-lpsymphony: Build reproducibly.
...
* gnu/packages/bioconductor.scm (r-lpsymphony)[arguments]: Add build phase
'make-build-order-reproducible.
2022-08-14 20:43:00 +02:00
Christine Lemmer-Webber
8337787720
Update copyright/name notices for Christine Lemmer-Webber.
...
* gnu/packages/games.scm: Update copyright/name notices for Christine
Lemmer-Webber.
2022-08-14 13:43:07 -04:00
Marius Bakke
213c60f332
gnu: texlive-hyperref: Propagate more inputs.
...
* gnu/packages/tex.scm (texlive-hyperref)[propagated-inputs]: Add TEXLIVE-CM,
TEXLIVE-LATEX-GRAPHICS, TEXLIVE-STRINGENC, and TEXLIVE-ZAPFDING.
* gnu/packages/sphinx.scm (python-sphinx)[propagated-inputs]: Remove
TEXLIVE-STRINGENC and TEXLIVE-ZAPFDING.
2022-08-13 19:09:14 +02:00
Marius Bakke
27555b0566
gnu: python-sphinx-panels: Use python-sphinx@4.
...
...also add deprecation notice, and change its users accordingly.
* gnu/packages/sphinx.scm (python-sphinx-panels)[propagated-inputs]: Change
from PYTHON-SPHINX to PYTHON-SPHINX-4.
[description]: Mention that it is unmaintained.
* gnu/packages/python-science.scm (python-scipy)[native-inputs]: Likewise.
* gnu/packages/python-xyz.scm (python-numpy-documentation)[native-inputs]: Likewise.
2022-08-13 19:09:14 +02:00
Marius Bakke
00e78042b7
gnu: python-sphinx: Add 4.5.0.
...
* gnu/packages/sphinx.scm (python-sphinx-4): New variable.
2022-08-13 19:09:14 +02:00
Marius Bakke
be5965b196
gnu: gtk-doc/stable: Use 'modify-inputs'.
...
* gnu/packages/gtk.scm (gtk-doc/stable)[inputs]: Use MODIFY-INPUTS.
2022-08-13 19:09:14 +02:00
Marius Bakke
fd01278236
gnu: gtk-doc: Remove input labels.
...
* gnu/packages/gtk.scm (gtk-doc)[native-inputs]: Remove labels.
2022-08-13 19:09:14 +02:00
Marius Bakke
625bfd4257
gnu: gtk-doc: Remove unused input.
...
* gnu/packages/gtk.scm (gtk-doc)[inputs]: Remove PYTHON-UNITTEST2.
2022-08-13 19:09:13 +02:00
Marius Bakke
c5860b97e9
gnu: python-freezegun: Adjust for Python 3.10.
...
* gnu/packages/check.scm (python-freezegun)[source](modules, snippet): New
fields.
2022-08-13 19:09:13 +02:00
Marius Bakke
a20a934081
gnu: python-freezegun: Update to 1.2.2.
...
* gnu/packages/check.scm (python-freezegun): Update to 1.2.2.
[native-inputs]: Remove PYTHON-MOCK.
[propagated-inputs]: Remove PYTHON-SIX.
2022-08-13 19:09:13 +02:00
Marius Bakke
30ac875bd8
gnu: python-sphinx: Update to 5.1.1.
...
* gnu/packages/sphinx.scm (python-sphinx): Update to 5.1.1.
2022-08-13 19:09:13 +02:00
Marius Bakke
431df1214e
gnu: python-dateutil: Adjust tests for Pytest 7.
...
* gnu/packages/patches/python-dateutil-pytest-compat.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/time.scm (python-dateutil)[source](patches): New field.
2022-08-13 12:28:46 +02:00
Marius Bakke
f561830a5b
gnu: python-pympler: Update to 1.0.1.
...
* gnu/packages/python-xyz.scm (python-pympler): Update to 1.0.1.
[arguments]: Remove.
2022-08-13 12:28:34 +02:00
Marius Bakke
b9a3083db3
gnu: qtscxml: Fix build failure.
...
This fixes a faulty conflict resolution from the merge in commit
b50eaa6764 .
* gnu/packages/qt.scm (qtscxml)[arguments]: Substitute arguments from QTSVG-5,
not QTSVG.
2022-08-12 13:19:30 +02:00
Marius Bakke
b50eaa6764
Merge branch 'master' into staging
2022-08-11 22:15:22 +02:00
Marius Bakke
7b69cd0740
Revert "gnu: librsvg: Update to 2.54.4."
...
The update breaks GTK+@2 and requires newer dependencies. It will be
reapplied on the 'core-updates' branch.
This reverts commit 0b770c2da4 .
2022-08-11 22:01:30 +02:00
Marius Bakke
99b73f6041
gnu: ntfs-3g: Update to 2022.5.17.
...
* gnu/packages/linux.scm (ntfs-3g): Update to 2022.5.17.
2022-08-11 21:58:03 +02:00
Marius Bakke
246e8e7f81
gnu: ntfs-3g: Add release-monitoring-url and upstream-name.
...
* gnu/packages/linux.scm (ntfs-3g)[properties]: New field.
2022-08-11 21:58:03 +02:00
Marius Bakke
25c2a2fdb2
gnu: openconnect-sso: Remove input labels.
...
* gnu/packages/vpn.scm (openconnect-sso)[arguments]: Don't attempt to use a
non-existent QtWebEngine label. While at it, use SEARCH-INPUT-FILE also for
openconnect and remove trailing #t's.
2022-08-11 21:58:02 +02:00
Marius Bakke
f441a149b4
gnu: tracker: Update to 3.3.3.
...
* gnu/packages/gnome.scm (tracker): Update to 3.3.3.
[native-inputs]: Remove INTLTOOL. Add GETTEXT-MINIMAL.
2022-08-11 21:58:02 +02:00
Marius Bakke
691d4657b7
gnu: folks: Update to 0.15.5.
...
* gnu/packages/gnome.scm (folks): Update to 0.15.5.
[native-inputs]: Remove INTLTOOL. Add GETTEXT-MINIMAL.
2022-08-11 21:58:02 +02:00
Marius Bakke
6550130108
gnu: mediasdk: Build reproducibly.
...
* gnu/packages/video.scm (mediasdk)[arguments]: Add #:phases. Convert to gexp
while at it.
2022-08-11 21:58:02 +02:00
Marius Bakke
73e0c84d1f
gnu: mediasdk: Remove input labels.
...
* gnu/packages/video.scm (mediasdk)[native-inputs, inputs]: Remove labels.
2022-08-11 21:58:02 +02:00
Marius Bakke
c851ea265a
gnu: mediasdk: Update to 22.4.4.
...
* gnu/packages/video.scm (mediasdk): Update to 22.4.4.
2022-08-11 21:58:02 +02:00
Marius Bakke
9de0dffe79
gnu: python-libvirt: Add 'upstream-name' property.
...
* gnu/packages/virtualization.scm (python-libvirt)[properties]: New field.
2022-08-11 21:58:02 +02:00
Marius Bakke
d7d370e4de
gnu: libvirt: Use G-expression.
...
* gnu/packages/virtualization.scm (libvirt)[arguments]: Use gexp. While at
it, refer to THIS-PACKAGE instead of the NAME and VERSION fields.
2022-08-11 21:58:01 +02:00
Marius Bakke
e00b395cb2
gnu: libvirt: Remove input labels.
...
* gnu/packages/virtualization.scm (libvirt)[inputs, native-inputs]: Remove labels.
2022-08-11 21:58:01 +02:00
Marius Bakke
3a76c2bfd9
gnu: libvirt, python-libvirt: Update to 8.6.0.
...
* gnu/packages/patches/libvirt-add-install-prefix.patch: Refresh patch.
* gnu/packages/virtualization.scm (libvirt): Update to 8.6.0.
(python-libvirt): Update to 8.6.0.
[arguments]: Remove, as the default test phase works fine.
2022-08-11 21:58:01 +02:00
Marius Bakke
25a3d35146
gnu: catch2@1: Adjust for glibc 2.34 and later.
...
* gnu/packages/check.scm (catch-framework2-1)[source](modules, snippet): New
fields.
2022-08-11 21:58:01 +02:00
Marius Bakke
e3e678000d
gnu: python-pyicu: Update to 2.9.
...
* gnu/packages/python-xyz.scm (python-pyicu): Update to 2.9.
2022-08-11 21:58:01 +02:00
Marius Bakke
3806965781
gnu: python-pyicu: Update home page.
...
* gnu/packages/python-xyz.scm (python-pyicu)[home-page]: Change to current.
2022-08-11 21:58:01 +02:00
Tobias Geerinckx-Rice
dd7a29faf3
.guix-authorizations: Authorize Andrew Tropin's subkey instead.
...
Addresses <https://issues.guix.gnu.org/57091 > for now.
* .guix-authorizations (abcdw): Use signing subkey instead of primary.
2022-08-11 21:48:10 +02:00
Ludovic Courtès
7a485d43c9
gnu: ruby-hydra-minimal: Add missing patch.
...
This is a followup to bb907402a6 .
* gnu/packages/patches/ruby-hydra-minimal-no-byebug.patch: New file.
2022-08-08 18:33:10 +02:00
Tom Fitzhenry
3668a452d1
gnu: texlive-hyphen-package: Remove input labels.
...
* gnu/packages/tex.scm (texlive-hyphen-package): Remove input labels.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-08 17:26:19 +02:00
Tom Fitzhenry
8f25dd57d6
gnu: Remove unused ruby-nokogiri-1.10.
...
As of commit "gnu: unpin ruby-nokogiri-diff's ruby-nokogiri",
ruby-nokogiri-1.10 is unused, so let's remove it.
ruby-nokogiri-1.10's purpose was to cut the dependency graph. Users should use
ruby-nokogiri.
* gnu/packages/ruby.scm (ruby-nokogiri-1.10): Remove variable.
(ruby-nokogiri): Collapse the package inheritance.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-08 17:26:18 +02:00
Tom Fitzhenry
22225620e3
gnu: Unpin ruby-nokogiri-diff's ruby-nokogiri
...
ruby-nokogiri-diff historically had a long reverse dependency set, due to its
reverse dependency of texlive, which was solely via ruby-byebugs.
To avoid ruby-nokogiri updates from triggering rebuilds, ruby-nokogiri-diff
was pinned to ruby-nokogiri-1.10.
However, as of commit "gnu: Remove texlive's dependence on ruby-rspec and
ruby-byebug.", texlive no longer depends on ruby-byebug, and thus updating
ruby-nokogiri won't trigger large rebuilds.
Thus, we are now free to unpin ruby-nokogiri-diff's ruby-nokogiri.
* gnu/packages/ruby.scm (ruby-nokogiri-diff): Unpin ruby-nokogiri version.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-08 17:26:18 +02:00
Tom Fitzhenry
6ba74ab29c
gnu: Remove texlive's dependence on ruby-rspec and ruby-byebug.
...
Motivation: Break the dependency chain from guix to mariadb.
Prior to this patch:
$ guix graph --path guix mariadb
guix@1.3.0-27.598f728
po4a@0.63
texlive-tiny@59745
texlive-latex-base@59745
texlive-hyphen-afrikaans@59745
ruby-hydra@0.0-0.5abfa37
ruby-byebug@11.1.3
ruby-rubocop@1.10 .0
ruby-parallel@1.21 .0
ruby-mysql2@0.5.2
mariadb@10.5.12
As of this patch:
$ ./pre-inst-env guix graph --path guix mariadb
guix graph: error: no path from 'guix@1.3.0-27.598f728' to 'mariadb@10.5.12'
* gnu/local.mk (dist_patch_DATA): Add texlive-hyph-utf8-no-byebug.patch.
* gnu/packages/patches/texlive-hyph-utf8-no-byebug.patch: New file.
* gnu/packages/tex.scm (hyph-utf8-scripts): Add patch.
(texlive-hyphen-package): Depend on ruby-hydra-minimal.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-08 17:26:18 +02:00
Tom Fitzhenry
bb907402a6
gnu: Add ruby-hydra-minimal.
...
* gnu/local.mk (dist_patch_DATA): Add ruby-hydra-minimal-no-byebug.patch.
* gnu/packages/patches/ruby-hydra-minimal-no-byebug.patch: New file.
* gnu/packages/ruby.scm (ruby-hydra): Refactor to inherit from ruby-hydra-minimal.
(ruby-hydra-minimal): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-08 17:26:18 +02:00
Greg Hogan
8ed15dedbe
gnu: suitesparse: Update to 5.12.0.
...
* gnu/packages/maths.scm (suitesparse): Update to 5.12.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-08 17:26:18 +02:00
Tobias Geerinckx-Rice
2a24c4a138
gnu: moe: Update to 1.12.
...
* gnu/packages/moe.scm (moe): Update to 1.12.
2022-08-07 02:00:10 +02:00
kiasoc5 via Guix-patches via
ca4ab89ddd
gnu: usbguard: Update to 1.1.1 [fixes CVE-2019-25058].
...
* gnu/packages/hardware.scm (usbguard): Update to 1.1.1.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-08-07 02:00:01 +02:00
kiasoc5 via Guix-patches via
9b176a05f9
gnu: usbguard: Use new package style.
...
Use G-exps and #$output while we're at it.
* gnu/packages/hardware.scm (usbguard)[arguments]: Use G-expressions.
<#:phases>: Use '#$output' instead of 'assoc-ref'
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-08-07 02:00:01 +02:00
Tobias Geerinckx-Rice
358849986b
gnu: tor: Update to 0.4.7.9 [DoS mitigations].
...
* gnu/packages/tor.scm (tor): Update to 0.4.7.9.
2022-08-07 02:00:00 +02:00
Andreas Enge
9a97097af1
gnu: gap: Enable compilation of more optional packages.
...
* gnu/packages/algebra.scm (gap)<snippet>: Add to the whitelist GAP packages
with free licenses clarified in the latest release, and which do not require
additional inputs.
2022-08-11 19:41:38 +02:00
Andreas Enge
c1a6c6e6d7
gnu: gap: Update to 4.11.1.
...
* gnu/packages/algebra.scm (gap): Update to 4.11.1.
[source]<snippet>: Remove trailing #t.
[arguments]<phases>: Remove trailing #t. Install missing config.h header.
Co-authored-by: vicvbcun <guix@ikherbers.com >
2022-08-11 19:08:14 +02:00
Efraim Flashner
0f6dc54780
gnu: lcsync: Fix building on non-x86 hardware.
...
* gnu/packages/networking.scm (lcsync)[arguments]: Add phase to use
simde instead of immintrin.h directly.
[native-inputs]: Add simde.
2022-08-11 19:35:22 +03:00
Efraim Flashner
ee981ba5f9
gnu: lcsync: Use test-target.
...
* gnu/packages/networking.scm (lcsync)[arguments]: Set test-target.
Remove custom 'check phase.
2022-08-11 19:35:22 +03:00
Efraim Flashner
b62c3fbd77
gnu: librecast: Use test-target.
...
* gnu/packages/networking.scm (librecast)[arguments]: Set test-target.
Remove custom 'check phase.
2022-08-11 19:35:22 +03:00
Efraim Flashner
b0f298e2c6
gnu: lcrq: Use test-target.
...
* gnu/packages/networking.scm (lcrq)[arguments]: Set test-target. Remove
custom 'check phase.
2022-08-11 19:35:21 +03:00
Maxim Cournoyer
2b579fd4f4
gnu: artwork: Update repository to latest commit.
...
* gnu/artwork.scm (%artwork-repository): Update to commit
4c7f2ce6428a63e202cd2a9474a06f68a946934d.
2022-08-11 11:55:19 -04:00
Maxim Cournoyer
ce53253d1f
build: marionette: Adjust QEMU Info manual reference.
...
* gnu/build/marionette.scm (marionette-control): Update doc to correct the
QEMU Info manual reference.
2022-08-11 11:52:51 -04:00
Maxim Cournoyer
1a43e0067b
gnu: gnome-themes-standard: Deprecate in favor of gnome-themes-extra.
...
* gnu/packages/gnome.scm (gnome-themes-standard): Mark as deprecated by
gnome-themes-extra.
(gnome)[inputs]: Remove gnome-themes-extra.
2022-08-11 11:52:50 -04:00
Timotej Lazar
cbbb5aa9d4
gnu: wpa-supplicant-gui: Fix build.
...
* gnu/packages/admin.scm (wpa-supplicant-gui)[build-system]: Use
qt-build-system.
[phases]: Use G-exps. Drop trailing #t. Don’t wrap-program as that is done by
the build system. Set $HOME to a writable directory when converting icons to
stop Inkscape complaining.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-11 17:11:35 +02:00
Ludovic Courtès
a817064947
build-system/channel: Correctly handle store file name from (gnu ci).
...
This is a followup to cf60a0a906 .
Reported by Mathieu Othacehe <othacehe@gnu.org >.
* guix/build-system/channel.scm (build-channels): Add 'string?' case.
2022-08-11 15:57:35 +02:00
Ludovic Courtès
d7aaf38611
po: Add 'guix/read-print.scm'.
...
This is a followup to b21d05d232 .
* po/guix/POTFILES.in: Add 'guix/read-print.scm'.
2022-08-11 15:57:35 +02:00
Ricardo Wurmus
bbc99a6e61
gnu: Add r-qmri.
...
* gnu/packages/cran.scm (r-qmri): New variable.
2022-08-11 15:22:45 +02:00
Ricardo Wurmus
df63e8ba96
gnu: Add r-mritc.
...
* gnu/packages/cran.scm (r-mritc): New variable.
2022-08-11 15:22:44 +02:00
Ricardo Wurmus
2a38dfbf17
gnu: Add r-oro-nifti.
...
* gnu/packages/cran.scm (r-oro-nifti): New variable.
2022-08-11 15:22:44 +02:00
Ricardo Wurmus
df31b5c6c6
gnu: Add r-adimpro.
...
* gnu/packages/cran.scm (r-adimpro): New variable.
2022-08-11 15:22:44 +02:00
Mathieu Othacehe
26629d3c9e
etc: teams: Add Mathieu Othacehe to mentors.
...
* etc/teams.scm.in (mentors): New member.
2022-08-11 14:47:14 +02:00
Ricardo Wurmus
ffed9a31ff
gnu: Add r-fmri.
...
* gnu/packages/cran.scm (r-fmri): New variable.
2022-08-11 14:42:57 +02:00
Tobias Geerinckx-Rice
53b2fda6fe
gnu: mcelog: Update to 187.
...
* gnu/packages/linux.scm (mcelog): Update to 187.
2022-08-07 02:00:00 +02:00
Efraim Flashner
360bf760bd
gnu: pies: Remove pre-generated files.
...
* gnu/packages/admin.scm (pies)[source]: Add snippet to remove
pre-generated files.
[native-inputs]: Add bison, flex.
2022-08-14 17:58:00 +03:00
Efraim Flashner
f9666e40d3
gnu: pies: Update to 1.8.
...
* gnu/packages/admin.scm (pies): Update to 1.8.
2022-08-14 17:50:54 +03:00
Efraim Flashner
d521ad06e0
gnu: yt-dlp: Only build with pandoc on supported systems.
...
* gnu/packages/video.scm (yt-dlp)[arguments]: Adjust custom
'build-generated-files phase to adjust to the presence of pandoc.
[native-inputs]: Make explicit list. Only include pandoc on supported
systems.
2022-08-14 17:07:20 +03:00
Thiago Jung Bauermann via Guix-patches via
ca8c7a36df
news: Add 'pt' translation.
...
The menu entry reference is kept in English because the manual isn't
translated to Portuguese yet.
* etc/news.scm: Add Portuguese translation of 'guix style -f' entry.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-08-14 08:51:41 +02:00
Tobias Geerinckx-Rice
43decd1f7e
gnu: knot: Update to 3.1.9.
...
* gnu/packages/dns.scm (knot): Update to 3.1.9.
2022-08-07 02:00:38 +02:00
Tobias Geerinckx-Rice
64595d9f95
gnu: inxi-minimal: Update to 3.3.20-1.
...
* gnu/packages/admin.scm (inxi-minimal): Update to 3.3.20-1.
2022-08-07 02:00:38 +02:00
Tobias Geerinckx-Rice
45db0ca5e9
gnu: unzip: Fix cross-compilation.
...
Fixes <https://issues.guix.gnu.org/57127 >.
* gnu/packages/compression.scm (unzip)[arguments]: Use #$output when
cross-compiling.
2022-08-07 02:00:00 +02:00
Tobias Geerinckx-Rice
e315d9a802
gnu: cups-pk-helper: Add etc/dbus-1 compatibility symlink.
...
* gnu/packages/cups.scm (cups-pk-helper)[arguments]:
Add an 'install-compatibility-symlink phase.
2022-08-07 02:00:00 +02:00
Tobias Geerinckx-Rice
56b55a13f6
gnu: haproxy: Remove ‘free’ & fluff.
...
* gnu/packages/networking.scm (haproxy)[description]: Remove the
redundant ‘free’ qualifier and some overly gushing other ones.
2022-08-07 02:00:22 +02:00
Tobias Geerinckx-Rice
0831f91f55
gnu: epson-inkjet-printer-escpr: Update to 1.7.21.
...
* gnu/packages/cups.scm (epson-inkjet-printer-escpr): Update to 1.7.21.
2022-08-07 02:00:21 +02:00
Tobias Geerinckx-Rice
a8bd13c399
gnu: cups-pk-helper: Make references non-native.
...
* gnu/packages/cups.scm (cups-pk-helper)[native-inputs]: Move cups & polkit from here…
[inputs]: …to here. Make cups-minimal. Add glib.
2022-08-07 02:00:01 +02:00
Tobias Geerinckx-Rice
3746b4ab86
gnu: cups-pk-helper: Update to 0.2.7.
...
* gnu/packages/cups.scm (cups-pk-helper): Update to 0.2.7.
[build-system]: Switch to Meson.
[arguments]: Explicitly disable tests.
[native-inputs]: Remove unused intltool and add glib:bin.
2022-08-07 02:00:01 +02:00
Tobias Geerinckx-Rice
b0647ac273
gnu: git: Update to 2.37.2.
...
* gnu/packages/version-control.scm (git): Update to 2.37.2.
2022-08-07 02:00:01 +02:00
Tobias Geerinckx-Rice
5dee2fdae7
gnu: xonotic: Further explore the concept of iteration.
...
* gnu/packages/games.scm (xonotic)[arguments]: Use FOR-EACH in the
'install-binaries and renamed 'install-desktop-entries phases. Use
FIND-FILES in the 'install-icons phase. Use both in 'wrap-binaries for
brevity (and SRFI-26 for fun). Symlink ‘xonotic’ after wrapping, so we
don't double-wrap it.
2022-08-07 02:00:01 +02:00
Tobias Geerinckx-Rice
642a3e3d7a
gnu: xonotic: Rename misleading 'bootstrap phase.
...
* gnu/packages/games.scm (xonotic)[arguments]: Rename (second!
stateful!) 'bootstrap phase to 'preconfigure.
2022-08-07 02:00:01 +02:00
Tobias Geerinckx-Rice
22f865b7e6
gnu: xonotic: Normalise building Darkplaces.
...
* gnu/packages/games.scm (xonotic)[arguments]: Build Darkplaces in a single pass.
Honour MAKE-FLAGS, PARALLEL-BUILD?, and CC-FOR-TARGET.
2022-08-07 02:00:01 +02:00
Tobias Geerinckx-Rice
3dc16fe0dc
gnu: xonotic: Use G-expressions.
...
* gnu/packages/games.scm (xonotic)[arguments]:
Rewrite as G-expressions.
2022-08-07 02:00:01 +02:00
Tobias Geerinckx-Rice
36c5fa6c4d
gnu: unzip: Use G-expressions.
...
* gnu/packages/compression.scm (unzip)[arguments]:
Rewrite as G-expressions.
2022-08-07 02:00:00 +02:00
Paul A. Patience
5c131aff69
gnu: Add f3d.
...
* gnu/packages/graphics.scm (f3d): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-11 16:57:00 +08:00
Paul A. Patience
9d96325e01
gnu: vtk: Enable the RenderingExternal module.
...
* gnu/packages/image-processing.scm (vtk)[arguments]<#:configure-flags>:
Add -DVTK_MODULE_ENABLE_VTK_RenderingExternal=YES.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-11 16:47:09 +08:00
(
fba67be225
gnu: pcc: Respect --without-tests.
...
* gnu/packages/c.scm (pcc)[arguments]<#:phases>{check}: Respect the
`tests?` argument.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-11 10:22:57 +02:00
(
dfda2cc5f6
gnu: pcc: Fix build.
...
* gnu/packages/c.scm (pcc)[arguments]: Use gexps.
<#:phases>{fix-multiple-definitions}: New phase.
[native-inputs]: Adjust formatting.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-11 10:22:56 +02:00
Milkey Mouse
fc5beaf96a
gnu: libplacebo: Update to 4.208.0.
...
* gnu/packages/video.scm (libplacebo)[version]: Update to 4.208.0.
[native-inputs]: Add python.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-11 16:08:15 +08:00
pukkamustard
f233ddaa97
gnu: guile-srfi-158: Update to 0.0.1-0-13126d1.
...
This fixes compilation and cross-compilation.
* gnu/packages/guile-xyz.scm (guile-srfi-158): Update it.
[native-inputs]: Add guile-3.0.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-11 09:50:58 +02:00
Marcel van der Boom
a7c14a8225
gnu: x265: Fix build on ppc64le.
...
* gnu/packages/video.scm (x265)[arguments]: Disable ALTIVEC for ppc64le.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-11 09:42:06 +02:00
宋文武
4c846ba9eb
gnu: python-symengine: Fix tests.
...
This fixes <https://issues.guix.gnu.org/57104 >.
* gnu/packages/python-xyz.scm (python-symengine):
[native-inputs]: Add python-nose.
[arguments]: Run tests with 'nosetests'.
2022-08-11 15:35:22 +08:00
Vagrant Cascadian
f030ae422b
gnu: reprotest: Update to 0.7.21.
...
* gnu/packages/diffoscope.scm (reprotest): Update to 0.7.21.
2022-08-10 19:56:47 -07:00
Vagrant Cascadian
04ef952a49
gnu: diffoscope: Update to 220.
...
* gnu/packages/diffoscope.scm (diffoscope): Update to 220.
2022-08-10 19:56:43 -07:00
Vagrant Cascadian
6bdcd2f3f0
gnu: Add lcsync.
...
* gnu/packages/networking.scm (lcsync): New variable.
2022-08-10 19:24:27 -07:00
Vagrant Cascadian
78b81bf951
gnu: Add librecast.
...
* gnu/packages/networking.scm (librecast): New variable.
2022-08-10 19:24:24 -07:00
Vagrant Cascadian
24ec1b5a20
gnu: Add lcrq.
...
* gnu/packages/networking.scm (lcrq): New variable.
2022-08-10 19:24:20 -07:00
Marius Bakke
e24f367f50
gnu: strace: Update to 5.18.
...
* gnu/packages/linux.scm (strace): Update to 5.18.
2022-08-11 00:37:27 +02:00
Marius Bakke
b611761bfc
gnu: strace: Add release-monitoring-url.
...
* gnu/packages/linux.scm (strace)[properties]: New field.
2022-08-11 00:37:27 +02:00
Marius Bakke
a66b9063d1
gnu: libreoffice: Remove input labels.
...
* gnu/packages/libreoffice.scm (dtoa): New private variable.
(libreoffice)[native-inputs, inputs]: Remove labels.
[arguments]: Use G-expression and SEARCH-INPUT-FILE & co where appropriate.
Remove trailing #t's.
2022-08-11 00:21:11 +02:00
Marius Bakke
8bdc95ecae
gnu: libreoffice: Update to 7.3.5.2.
...
* gnu/packages/libreoffice.scm (libreoffice): Update to 7.3.5.2.
[inputs]: Add LIBCUCKOO and ZXING-CPP.
* gnu/packages/hunspell.scm (hunspell-dictionary): Update hash.
2022-08-11 00:21:11 +02:00
Marius Bakke
47710f2a4f
gnu: libcmis: Update to 0.5.2-46-gf264a61.
...
* gnu/packages/libreoffice.scm (libcmis): Update to 0.5.2-46-gf264a61.
[source]: Switch to GIT-FETCH.
[native-inputs]: Add AUTOCONF, AUTOMAKE, and LIBTOOL.
[arguments]: Override bootstrap phase. While at it, convert to gexp and
remove label usage.
2022-08-11 00:21:11 +02:00
Marius Bakke
5b5ab17adf
gnu: Add libcuckoo.
...
* gnu/packages/datastructures.scm (libcuckoo): New variable.
2022-08-11 00:21:11 +02:00
Marius Bakke
178b762d68
gnu: libetonyek: Don't hard code mdds version.
...
* gnu/packages/libreoffice.scm (libetonyek)[arguments]: Automatically pass the
major+minor version components of the "mdds" input.
2022-08-11 00:21:11 +02:00
Marius Bakke
ce0aa88d1c
gnu: orcus: Update to 0.17.2.
...
* gnu/packages/libreoffice.scm (orcus): Update to 0.17.2.
2022-08-11 00:21:11 +02:00
Marius Bakke
c61e7ddd29
gnu: ixion: Update to 0.17.0.
...
* gnu/packages/libreoffice.scm (ixion): Update to 0.17.0.
2022-08-11 00:21:11 +02:00
Marius Bakke
b424ca573d
gnu: mdds: Update to 2.0.3.
...
* gnu/packages/boost.scm (mdds): Update to 2.0.3.
[source](uri): Use HTTPS & .xz tarball.
2022-08-11 00:21:11 +02:00
Marius Bakke
d4f3fd021f
gnu: libabigail: Remove input labels.
...
* gnu/packages/elf.scm (libabigail)[native-inputs]: Remove labels.
2022-08-11 00:21:11 +02:00
Marius Bakke
57771d42b5
gnu: libabigail: Update to 2.0.
...
* gnu/packages/elf.scm (libabigail): Update to 2.0.
2022-08-11 00:21:11 +02:00
Marius Bakke
0a078b5a31
gnu: qtwayland: Remove input labels.
...
* gnu/packages/qt.scm (qtwayland)[inputs]: Remove labels.
2022-08-11 00:21:11 +02:00
Marius Bakke
88f976d160
gnu: qtwayland: Fix build with GCC 11.
...
* gnu/packages/patches/qtwayland-gcc-11.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/qt.scm (qtwayland)[source](patches): New field.
2022-08-11 00:21:11 +02:00
Marius Bakke
d8d4b81147
gnu: fuse@2: Prepare for newer glibc.
...
* gnu/packages/patches/fuse-glibc-2.34.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/linux.scm (fuse)[source](patches): Add the patch.
[arguments]: Add force-bootstrap phase.
[native-inputs]: Add AUTOCONF, AUTOMAKE, GETTEXT-MINIMAL, and LIBTOOL.
2022-08-11 00:21:10 +02:00
Julien Lepiller
aacbe59fbc
nls: Update translations.
...
po/guix/bn.po: New file.
po/guix/LINGUAS: Add it.
2022-08-10 23:32:24 +02:00
Julien Lepiller
96465c4421
gnu: ocaml-extlib: Update to 1.7.9.
...
* gnu/packages/ocaml.scm (ocaml-extlib): Update to 1.7.9.
2022-08-10 23:32:17 +02:00
Julien Lepiller
8c5af33762
gnu: frama-c: Use lablgtk3.
...
* gnu/packages/maths.scm (frama-c): Build the graphical interface.
2022-08-10 23:32:03 +02:00
Ludovic Courtès
b21d05d232
read-print: Remove unused procedure.
...
* guix/read-print.scm (combine-vertical-space): Remove.
2022-08-10 16:53:58 +02:00
Ludovic Courtès
ebda12e1d2
read-print: Report missing closing parens instead of looping.
...
Fixes <https://issues.guix.gnu.org/57093 >.
Reported by Mohammed AMAR-BENSABER <renken@shione.net >.
Previously 'read-with-comments' would enter an infinite loop.
* guix/read-print.scm (read-with-comments)[missing-closing-paren-error]:
New procedure.
Call it when 'loop' as called from 'liip' returns EOF.
* tests/read-print.scm ("read-with-comments: missing closing paren"):
New test.
2022-08-10 16:53:58 +02:00
Ludovic Courtès
06ce4e3c06
ssh: 'open-ssh-session' gracefully handles connection timeouts.
...
* guix/ssh.scm (open-ssh-session): Add case for 'again.
2022-08-10 16:53:58 +02:00
Ricardo Wurmus
26bdefd172
gnu: Add r-liana.
...
* gnu/packages/bioinformatics.scm (r-liana): New variable.
2022-08-10 15:44:28 +02:00
Ricardo Wurmus
fd4b8e9873
gnu: Add r-omnipathr/devel.
...
* gnu/packages/bioinformatics.scm (r-omnipathr/devel): New variable.
2022-08-10 15:44:28 +02:00
Ricardo Wurmus
ee30369c47
gnu: r-bayesfactor: Update to 0.9.12-4.4.
...
* gnu/packages/statistics.scm (r-bayesfactor): Update to 0.9.12-4.4.
[propagated-inputs]: Remove r-gtools.
2022-08-10 15:44:28 +02:00
Ricardo Wurmus
64c520fef6
gnu: r-effects: Update to 4.2-2.
...
* gnu/packages/statistics.scm (r-effects): Update to 4.2-2.
[native-inputs]: Remove r-car.
2022-08-10 15:44:28 +02:00
Ricardo Wurmus
1234b52d03
gnu: r-cairo: Update to 1.6-0.
...
* gnu/packages/statistics.scm (r-cairo): Update to 1.6-0.
2022-08-10 15:44:28 +02:00
Ricardo Wurmus
951944928b
gnu: r-lme4: Update to 1.1-30.
...
* gnu/packages/statistics.scm (r-lme4): Update to 1.1-30.
2022-08-10 15:44:28 +02:00
Ricardo Wurmus
2b97db5662
gnu: r-quantreg: Update to 5.94.
...
* gnu/packages/statistics.scm (r-quantreg): Update to 5.94.
2022-08-10 15:44:28 +02:00
Ricardo Wurmus
a8ede19b86
gnu: r-vgam: Update to 1.1-7.
...
* gnu/packages/statistics.scm (r-vgam): Update to 1.1-7.
2022-08-10 15:44:28 +02:00
Ricardo Wurmus
5b4b0628a5
gnu: r-robust: Update to 0.7-1.
...
* gnu/packages/statistics.scm (r-robust): Update to 0.7-1.
2022-08-10 15:44:28 +02:00
Ricardo Wurmus
1a479d4878
gnu: r-pcapp: Update to 2.0-2.
...
* gnu/packages/statistics.scm (r-pcapp): Update to 2.0-2.
2022-08-10 15:44:28 +02:00
Ricardo Wurmus
4bab4761f4
gnu: r-gtools: Update to 3.9.3.
...
* gnu/packages/statistics.scm (r-gtools): Update to 3.9.3.
2022-08-10 15:44:28 +02:00
Ricardo Wurmus
9c6bd7ab14
gnu: r-r-cache: Update to 0.16.0.
...
* gnu/packages/statistics.scm (r-r-cache): Update to 0.16.0.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
3f87021f62
gnu: r-rcurl: Update to 1.98-1.8.
...
* gnu/packages/statistics.scm (r-rcurl): Update to 1.98-1.8.
[inputs]: Add zlib.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
ee4885080b
gnu: r-rsqlite: Update to 2.2.15.
...
* gnu/packages/statistics.scm (r-rsqlite): Update to 2.2.15.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
c3d510f27f
gnu: r-latticeextra: Update to 0.6-30.
...
* gnu/packages/statistics.scm (r-latticeextra): Update to 0.6-30.
[propagated-inputs]: Add r-interp and r-mass.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
d6cf8514c8
gnu: r-devtools: Update to 2.4.4.
...
* gnu/packages/statistics.scm (r-devtools): Update to 2.4.4.
[propagated-inputs]: Remove r-callr, r-httr, and r-rstudioapi; add r-miniui, r-pkgdown,
r-profvis, and r-urlchecker.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
2ec831ce86
gnu: r-roxygen2: Update to 7.2.1.
...
* gnu/packages/statistics.scm (r-roxygen2): Update to 7.2.1.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
303a268001
gnu: r-locfit: Update to 1.5-9.6.
...
* gnu/packages/statistics.scm (r-locfit): Update to 1.5-9.6.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
fbf2e460e1
gnu: r-tibble: Update to 3.1.8.
...
* gnu/packages/statistics.scm (r-tibble): Update to 3.1.8.
[propagated-inputs]: Remove r-ellipsis.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
c66334e5db
gnu: r-rlang: Update to 1.0.4.
...
* gnu/packages/statistics.scm (r-rlang): Update to 1.0.4.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
f239dff4f3
gnu: r-stringi: Update to 1.7.8.
...
* gnu/packages/statistics.scm (r-stringi): Update to 1.7.8.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
f06d528938
gnu: r-estimability: Update to 1.4.1.
...
* gnu/packages/statistics.scm (r-estimability): Update to 1.4.1.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
1679eb939e
gnu: r-mass: Update to 7.3-58.1.
...
* gnu/packages/statistics.scm (r-mass): Update to 7.3-58.1.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
3731d402c4
gnu: r-paws-common: Update to 0.4.0.
...
* gnu/packages/cran.scm (r-paws-common): Update to 0.4.0.
[propagated-inputs]: Add r-curl.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
f7c1973eea
gnu: r-dismo: Update to 1.3-8.
...
* gnu/packages/cran.scm (r-dismo): Update to 1.3-8.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
2304e8d731
gnu: r-rapiserialize: Update to 0.1.1.
...
* gnu/packages/cran.scm (r-rapiserialize): Update to 0.1.1.
2022-08-10 15:44:27 +02:00
Ricardo Wurmus
47b36a2da5
gnu: r-textplot: Update to 0.2.2.
...
* gnu/packages/cran.scm (r-textplot): Update to 0.2.2.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
4b64e712fc
gnu: r-stars: Update to 0.5-6.
...
* gnu/packages/cran.scm (r-stars): Update to 0.5-6.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
99722cdbc1
gnu: r-pdftools: Update to 3.3.0.
...
* gnu/packages/cran.scm (r-pdftools): Update to 3.3.0.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
44a2b13013
gnu: r-pkgdown: Update to 2.0.6.
...
* gnu/packages/cran.scm (r-pkgdown): Update to 2.0.6.
[propagated-inputs]: Remove r-crayon; add r-cli.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
06fd18d0ea
gnu: r-downlit: Update to 0.4.2.
...
* gnu/packages/cran.scm (r-downlit): Update to 0.4.2.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
d16106e744
gnu: r-mlr3: Update to 0.13.4.
...
* gnu/packages/cran.scm (r-mlr3): Update to 0.13.4.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
320cf6b189
gnu: r-paradox: Update to 0.10.0.
...
* gnu/packages/cran.scm (r-paradox): Update to 0.10.0.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
a59a1e9764
gnu: r-mlr3measures: Update to 0.5.0.
...
* gnu/packages/cran.scm (r-mlr3measures): Update to 0.5.0.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
8cc19bef26
gnu: r-qtl: Update to 1.52.
...
* gnu/packages/cran.scm (r-qtl): Update to 1.52.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
5ddccfa8b7
gnu: r-tidymodels: Update to 1.0.0.
...
* gnu/packages/cran.scm (r-tidymodels): Update to 1.0.0.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
bacd9de0ae
gnu: r-modeldata: Update to 1.0.0.
...
* gnu/packages/cran.scm (r-modeldata): Update to 1.0.0.
[propagated-inputs]: Add r-dplyr, r-mass, r-purrr, r-rlang, and r-tibble.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
7baaf47df6
gnu: r-workflowsets: Update to 1.0.0.
...
* gnu/packages/cran.scm (r-workflowsets): Update to 1.0.0.
[propagated-inputs]: Add r-glue, r-parsnip, and r-pillar.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
abc8efb0e8
gnu: r-tune: Update to 1.0.0.
...
* gnu/packages/cran.scm (r-tune): Update to 1.0.0.
[propagated-inputs]: Add r-tidyselect.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
8b68ee9a35
gnu: r-rsample: Update to 1.1.0.
...
* gnu/packages/cran.scm (r-rsample): Update to 1.1.0.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
f8ae59a566
gnu: r-workflows: Update to 1.0.0.
...
* gnu/packages/cran.scm (r-workflows): Update to 1.0.0.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
f74c8d242e
gnu: r-igraph: Update to 1.3.4.
...
* gnu/packages/cran.scm (r-igraph): Update to 1.3.4.
[propagated-inputs]: Add r-rlang.
2022-08-10 15:44:26 +02:00
Ricardo Wurmus
460e8a0e7d
gnu: r-rsconnect: Update to 0.8.27.
...
* gnu/packages/cran.scm (r-rsconnect): Update to 0.8.27.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
c38e68960d
gnu: r-bdgraph: Update to 2.68.
...
* gnu/packages/cran.scm (r-bdgraph): Update to 2.68.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
82c6989d3e
gnu: r-rockchalk: Update to 1.8.157.
...
* gnu/packages/cran.scm (r-rockchalk): Update to 1.8.157.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
81a02293e8
gnu: r-matrixextra: Update to 0.1.11.
...
* gnu/packages/cran.scm (r-matrixextra): Update to 0.1.11.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
0dbfbd6dba
gnu: r-quanteda: Update to 3.2.2.
...
* gnu/packages/cran.scm (r-quanteda): Update to 3.2.2.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
8ebf5f63c7
gnu: r-proxyc: Update to 0.3.0.
...
* gnu/packages/cran.scm (r-proxyc): Update to 0.3.0.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
4b216858cc
gnu: r-forecast: Update to 8.17.0.
...
* gnu/packages/cran.scm (r-forecast): Update to 8.17.0.
[propagated-inputs]: Add r-generics.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
4d0ed6317e
gnu: r-emplik: Update to 1.2.
...
* gnu/packages/cran.scm (r-emplik): Update to 1.2.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
6007b185a3
gnu: r-actuar: Update to 3.3-0.
...
* gnu/packages/cran.scm (r-actuar): Update to 3.3-0.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
54350956f2
gnu: r-fda: Update to 6.0.5.
...
* gnu/packages/cran.scm (r-fda): Update to 6.0.5.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
4cfd49918e
gnu: r-r-filesets: Update to 2.15.0.
...
* gnu/packages/cran.scm (r-r-filesets): Update to 2.15.0.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
ac0d8ed2aa
gnu: r-accept: Update to 0.9.1.
...
* gnu/packages/cran.scm (r-accept): Update to 0.9.1.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
2bba6299c9
gnu: r-bios2cor: Update to 2.2.1.
...
* gnu/packages/cran.scm (r-bios2cor): Update to 2.2.1.
2022-08-10 15:44:25 +02:00
Ricardo Wurmus
e2c9780f4c
gnu: r-pmcmrplus: Update to 1.9.5.
...
* gnu/packages/cran.scm (r-pmcmrplus): Update to 1.9.5.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
2f4b947452
gnu: r-desolve: Update to 1.33.
...
* gnu/packages/cran.scm (r-desolve): Update to 1.33.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
684601c5d3
gnu: r-terra: Update to 1.6-7.
...
* gnu/packages/cran.scm (r-terra): Update to 1.6-7.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
e0c4e49e09
gnu: r-ggraph: Update to 2.0.6.
...
* gnu/packages/cran.scm (r-ggraph): Update to 2.0.6.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
5464de5328
gnu: r-farver: Update to 2.1.1.
...
* gnu/packages/cran.scm (r-farver): Update to 2.1.1.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
1a95e6b0f6
gnu: r-optparse: Update to 1.7.3.
...
* gnu/packages/cran.scm (r-optparse): Update to 1.7.3.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
8776d5ba2c
gnu: r-sf: Update to 1.0-8.
...
* gnu/packages/cran.scm (r-sf): Update to 1.0-8.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
05c7e55339
gnu: r-partitions: Update to 1.10-7.
...
* gnu/packages/cran.scm (r-partitions): Update to 1.10-7.
[propagated-inputs]: Add r-rdpack.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
bfbdad67d5
gnu: r-lavaan: Update to 0.6-12.
...
* gnu/packages/cran.scm (r-lavaan): Update to 0.6-12.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
c205c76288
gnu: r-future: Update to 1.27.0.
...
* gnu/packages/cran.scm (r-future): Update to 1.27.0.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
540a61897b
gnu: r-parallelly: Update to 1.32.1.
...
* gnu/packages/cran.scm (r-parallelly): Update to 1.32.1.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
1185825784
gnu: r-globals: Update to 0.16.0.
...
* gnu/packages/cran.scm (r-globals): Update to 0.16.0.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
2efe7068a8
gnu: r-fields: Update to 14.0.
...
* gnu/packages/cran.scm (r-fields): Update to 14.0.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
e27dc21c2a
gnu: r-spam: Update to 2.9-1.
...
* gnu/packages/cran.scm (r-spam): Update to 2.9-1.
2022-08-10 15:44:24 +02:00
Ricardo Wurmus
18528e2c25
gnu: r-rnifti: Update to 1.4.1.
...
* gnu/packages/cran.scm (r-rnifti): Update to 1.4.1.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
04d5425658
gnu: r-rgl: Update to 0.109.6.
...
* gnu/packages/cran.scm (r-rgl): Update to 0.109.6.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
7243de5074
gnu: r-rcpphnsw: Update to 0.4.1.
...
* gnu/packages/cran.scm (r-rcpphnsw): Update to 0.4.1.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
cc5ddcbd6d
gnu: r-gert: Update to 1.7.0.
...
* gnu/packages/cran.scm (r-gert): Update to 1.7.0.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
c712e0e6a4
gnu: r-sjplot: Update to 2.8.11.
...
* gnu/packages/cran.scm (r-sjplot): Update to 2.8.11.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
a041d1d9de
gnu: r-ggeffects: Update to 1.1.3.
...
* gnu/packages/cran.scm (r-ggeffects): Update to 1.1.3.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
e6231aec75
gnu: r-glmmtmb: Update to 1.1.4.
...
* gnu/packages/cran.scm (r-glmmtmb): Update to 1.1.4.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
a8427f0a63
gnu: r-emmeans: Update to 1.8.0.
...
* gnu/packages/cran.scm (r-emmeans): Update to 1.8.0.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
e1714c11e1
gnu: r-multcomp: Update to 1.4-20.
...
* gnu/packages/cran.scm (r-multcomp): Update to 1.4-20.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
8200e69872
gnu: r-nleqslv: Update to 3.3.3.
...
* gnu/packages/cran.scm (r-nleqslv): Update to 3.3.3.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
6d65fb5842
gnu: r-gam: Update to 1.20.2.
...
* gnu/packages/cran.scm (r-gam): Update to 1.20.2.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
95d9a83be1
gnu: r-argparse: Update to 2.1.6.
...
* gnu/packages/cran.scm (r-argparse): Update to 2.1.6.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
c3e1314ac2
gnu: r-insight: Update to 0.18.0.
...
* gnu/packages/cran.scm (r-insight): Update to 0.18.0.
2022-08-10 15:44:23 +02:00
Ricardo Wurmus
89506cbb3c
gnu: r-acdm: Update to 1.0.4.1.
...
* gnu/packages/cran.scm (r-acdm): Update to 1.0.4.1.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
859d2908d8
gnu: r-rdpack: Update to 2.4.
...
* gnu/packages/cran.scm (r-rdpack): Update to 2.4.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
45250735ef
gnu: r-snowfall: Update to 1.84-6.2.
...
* gnu/packages/cran.scm (r-snowfall): Update to 1.84-6.2.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
a2848ce4b2
gnu: r-radiant-data: Update to 1.4.4.
...
* gnu/packages/cran.scm (r-radiant-data): Update to 1.4.4.
[propagated-inputs]: Add r-bslib and r-png.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
92bf6b6564
gnu: r-tsa: Update to 1.3.1.
...
* gnu/packages/cran.scm (r-tsa): Update to 1.3.1.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
fcdb9fa2d5
gnu: r-ifultools: Update to 2.0-26.
...
* gnu/packages/cran.scm (r-ifultools): Update to 2.0-26.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
0d53fd5005
gnu: r-pillar: Update to 1.8.0.
...
* gnu/packages/cran.scm (r-pillar): Update to 1.8.0.
[propagated-inputs]: Remove r-crayon and r-ellipsis.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
40e6e23fa5
gnu: r-seriation: Update to 1.3.6.
...
* gnu/packages/cran.scm (r-seriation): Update to 1.3.6.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
fbb11572ff
gnu: r-tsp: Update to 1.2-1.
...
* gnu/packages/cran.scm (r-tsp): Update to 1.2-1.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
a00797d332
gnu: r-processx: Update to 3.7.0.
...
* gnu/packages/cran.scm (r-processx): Update to 3.7.0.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
796267ef8d
gnu: r-ica: Update to 1.0-3.
...
* gnu/packages/cran.scm (r-ica): Update to 1.0-3.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
23367bfa57
gnu: r-vcfr: Update to 1.13.0.
...
* gnu/packages/cran.scm (r-vcfr): Update to 1.13.0.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
12d0ab6df4
gnu: r-sm: Update to 2.2-5.7.1.
...
* gnu/packages/cran.scm (r-sm): Update to 2.2-5.7.1.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
d8de4d9be6
gnu: r-coro: Update to 1.0.3.
...
* gnu/packages/cran.scm (r-coro): Update to 1.0.3.
2022-08-10 15:44:22 +02:00
Ricardo Wurmus
16f6320eb8
gnu: r-recipes: Update to 1.0.1.
...
* gnu/packages/cran.scm (r-recipes): Update to 1.0.1.
[propagated-inputs]: Add r-cli.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
9d1b992837
gnu: r-generics: Update to 0.1.3.
...
* gnu/packages/cran.scm (r-generics): Update to 0.1.3.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
9b9c04e91b
gnu: r-geometry: Update to 0.4.6.1.
...
* gnu/packages/cran.scm (r-geometry): Update to 0.4.6.1.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
49eaf286f9
gnu: r-rpostgresql: Update to 0.7-4.
...
* gnu/packages/cran.scm (r-rpostgresql): Update to 0.7-4.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
f708acfde7
gnu: r-timedate: Update to 4021.104.
...
* gnu/packages/cran.scm (r-timedate): Update to 4021.104.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
4d4e8a314b
gnu: r-dimred: Update to 0.2.6.
...
* gnu/packages/cran.scm (r-dimred): Update to 0.2.6.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
8f32af12d5
gnu: r-dendextend: Update to 1.16.0.
...
* gnu/packages/cran.scm (r-dendextend): Update to 1.16.0.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
a1cf3f7c20
gnu: r-rcpp: Update to 1.0.9.
...
* gnu/packages/cran.scm (r-rcpp): Update to 1.0.9.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
6a97fb98e2
gnu: r-pls: Update to 2.8-1.
...
* gnu/packages/cran.scm (r-pls): Update to 2.8-1.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
8f935a88e8
gnu: r-mbess: Update to 4.9.1.
...
* gnu/packages/cran.scm (r-mbess): Update to 4.9.1.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
995db36c9d
gnu: r-sass: Update to 0.4.2.
...
* gnu/packages/cran.scm (r-sass): Update to 0.4.2.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
0b1c23c7ab
gnu: r-rstpm2: Update to 1.5.7.
...
* gnu/packages/cran.scm (r-rstpm2): Update to 1.5.7.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
568a535d63
gnu: r-htmltable: Update to 2.4.1.
...
* gnu/packages/cran.scm (r-htmltable): Update to 2.4.1.
2022-08-10 15:44:21 +02:00
Ricardo Wurmus
44c54b3f25
gnu: r-htmltools: Update to 0.5.3.
...
* gnu/packages/cran.scm (r-htmltools): Update to 0.5.3.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
3ad1be5683
gnu: r-callr: Update to 3.7.1.
...
* gnu/packages/cran.scm (r-callr): Update to 3.7.1.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
6c0677d3c1
gnu: r-tidyverse: Update to 1.3.2.
...
* gnu/packages/cran.scm (r-tidyverse): Update to 1.3.2.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
bf789892d0
gnu: r-ggside: Update to 0.2.1.
...
* gnu/packages/cran.scm (r-ggside): Update to 0.2.1.
[propagated-inputs]: Add r-tibble.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
9fe9856ebe
gnu: r-fontawesome: Update to 0.3.0.
...
* gnu/packages/cran.scm (r-fontawesome): Update to 0.3.0.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
0d6da50180
gnu: r-v8: Update to 4.2.1.
...
* gnu/packages/cran.scm (r-v8): Update to 4.2.1.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
4eb4e7eb78
gnu: r-datawizard: Update to 0.5.0.
...
* gnu/packages/cran.scm (r-datawizard): Update to 0.5.0.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
17d3880de7
gnu: r-activepathways: Update to 1.1.1.
...
* gnu/packages/bioconductor.scm (r-activepathways): Update to 1.1.1.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
a8ec2fcec6
gnu: r-bslib: Update to 0.4.0.
...
* gnu/packages/cran.scm (r-bslib): Update to 0.4.0.
[native-inputs]: Update js-bootstrap5-bundle from 5.0.2 to 5.1.3.
[propagated-inputs]: Add r-cachem and r-memoise.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
4dcb2f3fb7
gnu: r-s2: Update to 1.1.0.
...
* gnu/packages/cran.scm (r-s2): Update to 1.1.0.
[arguments]: Add build phase to unbreak linking.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
fdae170c37
gnu: r-rtweet: Update to 1.0.2.
...
* gnu/packages/cran.scm (r-rtweet): Update to 1.0.2.
[propagated-inputs]: Add r-bit64, r-curl, r-lifecycle, r-rlang, and r-withr;
remove r-httpuv, r-magrittr, and r-rcpp.
[synopsis]: Adjust.
[description]: Use full sentence.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
6ef2b32612
gnu: r-flexdashboard: Update to 0.6.0.
...
* gnu/packages/cran.scm (r-flexdashboard): Update to 0.6.0.
[source]: Delete featherlight.min.js.
[arguments]: Remove trailing #T.
[propagated-inputs]: Add r-bslib, r-sass, and r-scales.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
e7bb12c0a4
gnu: Add r-urlchecker.
...
* gnu/packages/cran.scm (r-urlchecker): New variable.
2022-08-10 15:44:20 +02:00
Ricardo Wurmus
563aabf3cc
gnu: Add r-profvis.
...
* gnu/packages/cran.scm (r-profvis): New variable.
2022-08-10 15:44:19 +02:00
Ricardo Wurmus
d49bbd01e1
gnu: Add r-interp.
...
* gnu/packages/cran.scm (r-interp): New variable.
2022-08-10 15:44:19 +02:00
Maxim Cournoyer
d9a0ccf13f
home: ssh: Fix invalid value error for address-family.
...
Fixes <https://issues.guix.gnu.org/57110 >, a regression introduced with
a2b89a3319 .
* gnu/home/services/ssh.scm (address-family?): Replace *unspecified* with 'unset.
(serialize-address-family): Adjust accordingly.
(openssh-host): Adjust doc.
Reported-by: Oleg Pykhalov <go.wigust@gmail.com >
2022-08-10 09:10:45 -04:00
Hartmut Goebel
62bee0a915
gnu: Add trytond-web-shop-shopify.
...
* gnu/packages/tryton.scm (trytond-web-shop-shopify): New variable.
2022-08-10 14:27:27 +02:00
Hartmut Goebel
0d9f158685
gnu: Add python-shopifyapi.
...
* gnu/packages/python-web.scm (python-shopifyapi): New variable.
2022-08-10 14:27:27 +02:00
Hartmut Goebel
1bcd1ec72f
gnu: Add python-pyactiveresource.
...
* gnu/packages/python-web.scm (python-pyactiveresource): New variable.
2022-08-10 14:27:27 +02:00
Hartmut Goebel
b1f243c3a7
gnu: Add trytond-stock-package-shipping-sendcloud.
...
* gnu/packages/tryton.scm (trytond-stock-package-shipping-sendcloud): New variable.
2022-08-10 14:27:26 +02:00
Hartmut Goebel
c46b66450b
gnu: Add trytond-stock-package-shipping-mygls.
...
* gnu/packages/tryton.scm (trytond-stock-package-shipping-mygls): New variable.
2022-08-10 14:27:26 +02:00
Hartmut Goebel
d074c57ace
gnu: Add trytond-sale-point.
...
* gnu/packages/tryton.scm (trytond-sale-point): New variable.
2022-08-10 14:27:26 +02:00
Hartmut Goebel
655e1a474f
gnu: Add trytond-product-image-attribute.
...
* gnu/packages/tryton.scm (trytond-product-image-attribute): New variable.
2022-08-10 14:27:26 +02:00
Hartmut Goebel
4e4c9e064c
gnu: Add trytond-product-image.
...
* gnu/packages/tryton.scm (trytond-product-image): New variable.
2022-08-10 14:27:25 +02:00
Hartmut Goebel
d67e290173
gnu: Add trytond-currency-rs.
...
* gnu/packages/tryton.scm (trytond-currency-rs): New variable.
2022-08-10 14:27:24 +02:00
Hartmut Goebel
2941b08c0a
gnu: Add trytond-currency-ro.
...
* gnu/packages/tryton.scm (trytond-currency-ro): New variable.
2022-08-10 14:27:24 +02:00
Hartmut Goebel
2128adbc52
gnu: Add trytond-analytic-budget.
...
* gnu/packages/tryton.scm (trytond-analytic-budget): New variable.
2022-08-10 14:27:24 +02:00
Hartmut Goebel
d75842363b
gnu: Add trytond-account-stock-shipment-cost.
...
* gnu/packages/tryton.scm (trytond-account-stock-shipment-cost): New variable.
2022-08-10 14:27:23 +02:00
Hartmut Goebel
53a976c0dc
gnu: Add trytond-account-rule.
...
* gnu/packages/tryton.scm (trytond-account-rule): New variable.
2022-08-10 14:27:23 +02:00
Hartmut Goebel
ee32e4726e
gnu: Add trytond-account-move-line-grouping.
...
* gnu/packages/tryton.scm (trytond-account-move-line-grouping): New variable.
2022-08-10 14:27:22 +02:00
Hartmut Goebel
e718ef4a1b
gnu: Add trytond-account-budget.
...
* gnu/packages/tryton.scm (trytond-account-budget): New variable.
2022-08-10 14:27:22 +02:00
Hartmut Goebel
5897d873d0
gnu: Tryton application and framework: Update to 6.2.x.
...
* gnu/packages/tryton.scm (trytond-account-be, trytond-account-cash-rounding,
trytond-account-credit-limit, trytond-account-de-skr03,
trytond-account-deposit, trytond-account-dunning,
trytond-account-dunning-email, trytond-account-dunning-fee,
trytond-account-dunning-letter, trytond-account-eu, trytond-account-fr,
trytond-account-invoice-correction, trytond-account-invoice-history,
trytond-account-invoice-line-standalone,
trytond-account-invoice-secondary-unit, trytond-account-payment-braintree,
trytond-account-payment-sepa-cfonb, trytond-account-payment-stripe,
trytond-account-statement-coda, trytond-account-statement-ofx,
trytond-account-stock-landed-cost-weight, trytond-account-tax-cash,
trytond-account-tax-rule-country, trytond-analytic-account,
trytond-analytic-invoice, trytond-analytic-purchase, trytond-analytic-sale,
trytond-attendance, trytond-authentication-sms, trytond-bank,
trytond-carrier, trytond-commission, trytond-company,
trytond-company-work-time, trytond-currency, trytond-customs,
trytond-dashboard, trytond-edocument-uncefact, trytond-edocument-unece,
trytond-gis, trytond-google-maps, trytond-marketing,
trytond-marketing-email, trytond-party-avatar, trytond-party-relationship,
trytond-party-siret, trytond-product, trytond-product-attribute,
trytond-product-classification, trytond-product-classification-taxonomic,
trytond-product-cost-fifo, trytond-product-cost-history,
trytond-product-measurements, trytond-product-price-list,
trytond-product-price-list-parent, trytond-production-outsourcing,
trytond-production-routing, trytond-production-split,
trytond-production-work, trytond-production-work-timesheet, trytond-project,
trytond-project-plan, trytond-purchase-history,
trytond-purchase-invoice-line-standalone, trytond-purchase-requisition,
trytond-purchase-secondary-unit, trytond-purchase-shipment-cost,
trytond-sale-advance-payment, trytond-sale-credit-limit, trytond-sale-extra,
trytond-sale-history, trytond-sale-invoice-grouping,
trytond-sale-opportunity, trytond-sale-price-list, trytond-sale-promotion,
trytond-sale-promotion-coupon, trytond-sale-secondary-unit,
trytond-sale-shipment-grouping, trytond-sale-shipment-tolerance,
trytond-sale-stock-quantity, trytond-sale-subscription,
trytond-sale-subscription-asset, trytond-sale-supply,
trytond-stock-assign-manual, trytond-stock-consignment,
trytond-stock-inventory-location, trytond-stock-location-move,
trytond-stock-location-sequence, trytond-stock-lot, trytond-stock-lot-sled,
trytond-stock-lot-unit, trytond-stock-package,
trytond-stock-package-shipping-ups, trytond-stock-product-location,
trytond-stock-secondary-unit, trytond-stock-split, trytond-stock-supply-day,
trytond-stock-supply-forecast, trytond-stock-supply-production,
trytond-timesheet, trytond-timesheet-cost, trytond-user-role,
trytond-web-shop-vue-storefront-stripe, trytond-web-user): Update to 6.2.0.
(trytond-web-shop): Update to 6.2.0. [native-inputs]: Add trytond-image.
(trytond-account-es): Update to 6.2.0. [native-inputs]: Add
trytond-sale-advance-payment. [propagated-inputs]: Add trytond-company,
trytond-currency.
(trytond-sale-gift-card): Update to 6.2.0. [native-inputs]: Add
trytond-sale-point.
(trytond-carrier-percentage, trytond-carrier-subdivision,
trytond-carrier-weight, trytond-incoterm): Update to 6.2.0. [native-inputs]:
Add trytond-stock-shipment-cost.
(trytond-stock-shipment-cost): Update to 6.2.0. [propagated-inputs]: Add
trytond-carrier.
(trytond-stock-package-shipping): Update to 6.2.0. [propagated-inputs]:
Remove trytond-sale-shipment-cost; add trytond-stock-shipment-cost.
(trytond-account-asset, trytond-account-fr-chorus,
trytond-account-invoice-stock, trytond-account-payment-clearing,
trytond-account-product, trytond-account-statement-aeb43,
trytond-account-statement-rule, trytond-account-stock-anglo-saxon,
trytond-commission-waiting, trytond-ldap-authentication,
trytond-marketing-automation, trytond-party,
trytond-product-price-list-dates, trytond-production,
trytond-project-revenue, trytond-purchase-amendment,
trytond-purchase-price-list, trytond-purchase-request,
trytond-purchase-request-quotation, trytond-sale-amendment,
trytond-sale-complaint, trytond-sale-discount, trytond-sale-payment,
trytond-sale-supply-drop-shipment, trytond-sale-supply-production,
trytond-stock-forecast, trytond-stock-quantity-issue,
trytond-stock-shipment-measurements, trytond-web-shortener): Update to
6.2.1.
(trytond-product-cost-warehouse): Update to 6.2.1. [native-inputs]: Add
trytond-account-invoice-stock.
(trytond-web-shop-vue-storefront): Update to 6.2.1. [native-inputs]: Add
trytond-product-image, trytond-stock-shipment-cost.
(trytond-country): Update to 6.2.1. [propagated-inputs]: Remove
python-pycountry; add python-pycountry@20.7.3.
(trytond-account-invoice-defer, trytond-account-payment,
trytond-account-payment-sepa, trytond-account-stock-landed-cost,
trytond-notification-email, trytond-product-kit,
trytond-sale-product-customer, trytond-sale-shipment-cost,
trytond-stock-quantity-early-planning, trytond-stock-supply): Update to
6.2.2.
(trytond-account-statement, trytond-account-stock-continental,
trytond-project-invoice, trytond-purchase,
trytond-stock-package-shipping-dpd): Update to 6.2.3.
(python-proteus): Update to 6.2.3. [propagated-inputs]: Add
python-defusedxml.
(trytond-account-invoice, trytond-sale): Update to 6.2.4.
(tryton, trytond-account, trytond-stock): Update to 6.2.7.
(trytond): Update to 6.2.10. [propagated-inputs]: Add python-defusedxml.
2022-08-10 14:27:22 +02:00
Hartmut Goebel
ea6b2d52e0
gnu: Add python-pycountry@20.7.3.
...
This old version is required by Tryton.
* gnu/packages/python-xyz.scm (python-pycountry@20.7.3): New variable.
2022-08-10 14:27:21 +02:00
Florian Pelz
6ce3e51aa8
news: Add 'de' translation.
...
* etc/news.scm: Add German translation of 'guix style -f' entry.
Correct manual references in previous 'guix style' entries.
2022-08-10 12:45:41 +02:00
vicvbcun
00d3fb23ff
gnu: python-sympy: Update to 1.10.1.
...
* gnu/packages/python-xyz.scm (python-sympy): Update to 1.10.1.
2022-08-10 10:58:24 +02:00
kiasoc5
37ea0a7360
gnu: openh264: Update to 2.3.0 and use gexps.
...
* gnu/packages/video.scm (openh264): Update to 2.3.0.
[arguments]: Use gexps.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-10 16:27:48 +08:00
Hartmut Goebel
6ff0e43d4e
gnu: Add python-types-orjson.
...
* gnu/packages/python-xyz.scm (python-types-orjson): New variable.
2022-08-10 10:02:54 +02:00
Hartmut Goebel
da7e6028c8
gnu: Add python-mdx-include.
...
* gnu/packages/python-xyz.scm (python-mdx-include): New variable.
2022-08-10 10:02:54 +02:00
Hartmut Goebel
0f9e0abd4f
gnu: Add python-rcslice.
...
* gnu/packages/python-xyz.scm (python-rcslice): New variable.
2022-08-10 10:02:54 +02:00
Hartmut Goebel
cf2327ecc0
gnu: Add python-cyclic.
...
* gnu/packages/python-xyz.scm (python-cyclic): New variable.
2022-08-10 10:02:53 +02:00
Hartmut Goebel
feef09b28c
gnu: Add python-starlette.
...
* gnu/packages/python-web.scm (python-starlette): New variable.
2022-08-10 10:02:53 +02:00
Hartmut Goebel
357a4c1870
gnu: Add python-mkdocs-markdownextradata-plugin.
...
* gnu/packages/python-xyz.scm (python-mkdocs-markdownextradata-plugin): New variable.
2022-08-10 10:02:52 +02:00
Marius Bakke
924a78b114
gnu: aspell: Fix CVE-2019-25051 with a graft.
...
This partially reverts commit 468c95e941 in
order to prevent rebuilding 2k+ packages via 'inkscape'.
* gnu/packages/aspell.scm (aspell)[replacement]: New field.
[source](patches): Remove "aspell-CVE-2019-25051.patch".
(aspell/replacement): New private variable.
2022-08-10 09:52:52 +02:00
Hartmut Goebel
2111a4eee7
gnu: conan: Update to 1.50.0.
...
* gnu/packages/package-management.scm (conan): Update to 1.50.0.
[arguments]<phases>{check}: Add another test to be skipped, adjust comment.
2022-08-10 09:51:06 +02:00
Hartmut Goebel
84de0e3175
gnu: python-pygithub: Update to 1.55.
...
* gnu/packages/python-xyz.scm (python-pygithub): Update to 1.55.
[propagated-inputs]: Add python-pynacl.
2022-08-10 09:39:01 +02:00
Hartmut Goebel
ead37cb685
gnu: python-swiftclient: Update to 4.0.1.
...
* gnu/packages/openstack.scm (python-swiftclient): Update to 4.0.1.
[arguments]<phases>{relax-requirements}: New phase.
[arguments]<phases>{check}: New phase.
[propagated-inputs]: Remove python-six.
[native-inputs]: Remove python-pbr, python-sphinx, python-coverage,
python-discover, python-hacking, python-mock, python-oslosphinx,
python-testrepository, and python-testtools; add python-keystoneauth1,
python-openstacksdk, and python-stestr.
2022-08-10 09:39:01 +02:00
Hartmut Goebel
6937cea199
gnu: python-pyjwt: Update to 2.4.0.
...
* gnu/packages/python-xyz.scm (python-pyjwt): Update to 2.4.0.
[source]: Remove snippet.
[arguments]<phases>{check}: Remove now unused parts, honor '#:tests?'.
(native-inputs]: Remove python-pytest-cov, add python-cryptography.
2022-08-10 09:39:01 +02:00
Hartmut Goebel
104f9e0575
gnu: python-tempest-lib: Update to 1.0.0.
...
* gnu/packages/openstack.scm (python-tempest-lib): Update to 1.0.0.
[arguments]<phases>{relax-requirements}: New phase.
[propagated-inputs]: Remove python-pbr.
[native-inouts]: Add python-pbr.
2022-08-10 09:39:00 +02:00
Hartmut Goebel
52359f01bb
gnu: python-oslo.log: Update to 5.0.0.
...
* gnu/packages/openstack.scm (python-oslo.log): Update to 5.0.0.
[propagated-inputs]: Remove python-six, python-pbr.
[native-inputs]: Add python-pbr.
2022-08-10 09:38:59 +02:00
Hartmut Goebel
0bba3ebf56
gnu: python-oslo.context: Update to 5.0.0.
...
* gnu/packages/openstack.scm (python-oslo.context): Update to 5.0.0.
[native-inputs]: Remove python-bandit; add python-mypy.
[arguments]<phases>{relax-requirements}: Relax more requirements.
2022-08-10 09:38:59 +02:00
Hartmut Goebel
cffb9967fe
gnu: python-munch: Update to 2.5.0.
...
* gnu/packages/python-xyz.scm (python-munch): Update to 2.5.0.
[propagated-inputs]: Add python-six.
[native-inputs]: Add python-pbr and python-pytest.
2022-08-10 09:38:59 +02:00
Hartmut Goebel
d2dd9d1d26
gnu: python-keystoneclient: Update to 5.0.0.
...
* gnu/packages/openstack.scm (python-keystoneclient): Update to 5.0.0.
[arguments]<phases>{relax-requirements}: New phase.
[propagated-inputs]: Remove python-pbr; add python-keystoneauth1.
[native-inputs]: Adjust to new style. Remove python-sphinx, python-coverage,
python-discover, python-hacking, python-mox3, python-oslosphinx,
python-pycrypto, python-testrepository, and python-webob; add python-pbr,
python-stestr, and python-testscenarios.
2022-08-10 09:38:58 +02:00
Hartmut Goebel
b08a3554a4
gnu: Add python-tempest.
...
* gnu/packages/openstack.scm (python-tempest): New variable.
2022-08-10 09:38:58 +02:00
Hartmut Goebel
8a4faff132
gnu: Add python-openstacksdk.
...
* gnu/packages/openstack.scm (python-openstacksdk): New variable.
2022-08-10 09:38:58 +02:00
Hartmut Goebel
c037745a4c
gnu: Add python-requestsexceptions.
...
* gnu/packages/openstack.scm (python-requestsexceptions): New variable.
2022-08-10 09:38:57 +02:00
Hartmut Goebel
0b929d2d23
gnu: Add python-keystoneauth1.
...
* gnu/packages/openstack.scm (python-keystoneauth1): New variable.
2022-08-10 09:38:57 +02:00
Hartmut Goebel
122bedf2fd
gnu: Add python-oslo.concurrency.
...
* gnu/packages/openstack.scm (python-oslo.concurrency): New variable.
2022-08-10 09:38:57 +02:00
Hartmut Goebel
e2857167b1
gnu: Add python-os-service-types.
...
* gnu/packages/openstack.scm (python-os-service-types): New variable.
2022-08-10 09:34:13 +02:00
Hartmut Goebel
b5801efaa3
gnu: Add python-statsd.
...
* gnu/packages/monitoring.scm (python-statsd): New variable.
2022-08-10 09:34:13 +02:00
Hartmut Goebel
59625e3cc9
gnu: Add python-dogpile.cache.
...
* gnu/packages/databases.scm (python-dogpile.cache): New variable.
2022-08-10 09:34:12 +02:00
Hartmut Goebel
ee41bd8391
gnu: Add python-requests-kerberos.
...
* gnu/packages/python-web.scm (python-requests-kerberos): New variable.
2022-08-10 09:34:12 +02:00
Hartmut Goebel
b4714ef05e
gnu: python-stestr: Update to 3.2.1.
...
* gnu/packages/python-check.scm (python-stestr): Update to 3.2.1.
2022-08-10 09:34:12 +02:00
Daniel Meißner
b72459a861
gnu: maxima: Fix to find info files.
...
The Maxima command ‘describe’ allows to pick the relevant portions from
Maxima’s Texinfo docs. However it does not support reading gzipped info
files.
* gnu/packages/maths.scm (maxima)[arguments]<phases>: Delete
'compress-documentation phase.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-10 15:16:53 +08:00
Maxim Cournoyer
59ee837d8b
services: elogind: Fix default behavior for lid close.
...
Fixes <https://issues.guix.gnu.org/57052 >, which was a behavior change
introduced inadvertently in 4c698cd512 .
* gnu/services/desktop.scm (<elogind-configuration>)
[handle-lid-switch-external-power]: Default to *unspecified*, which serializes
to nothing. This matches upstream behavior, meaning that even when plugged to
a power cord, a laptop will suspend when the lid is closed.
* doc/guix.texi (Desktop Services): Update doc.
Reported-by: Cairn <cairn@pm.me >
2022-08-10 00:33:30 -04:00
Oleg Pykhalov
4b49487838
gnu: system: file-systems: Add shared flag.
...
* gnu/build/file-systems.scm (mount-flags->bit-mask, mount-file-system):
Handle shared flag.
* gnu/system/file-systems.scm (invalid-file-system-flags): Add shared to known
flags.
* guix/build/syscalls.scm (MS_SHARED): New variable.
* doc/guix.texi (File Systems): Document shared flag.
2022-08-10 07:12:25 +03:00
Maxim Cournoyer
97cb43e732
tests: configuration: Add a test to cover 'unset regression.
...
The regression was introduced with a2b89a3319 ,
and introduce a risk that 'unset leaks to serialized configuration files.
* tests/services/configuration.scm (maybe-symbol): New type.
(config-with-maybe-symbol): New configuration.
("symbol maybe value serialization, unspecified"): New test.
Reported-by: Attila Lendvai <attila@lendvai.name >
2022-08-09 23:14:42 -04:00
宋文武
02b69362cb
gnu: xfce: Replace 'gnome-icon-theme' with 'adwaita-icon-theme'.
...
This fixes <https://issues.guix.gnu.org/57067 >.
* gnu/packages/xfce.scm (xfce)[inputs]: Replace gnome-icon-theme with
adwaita-icon-theme.
2022-08-10 08:50:31 +08:00
Marius Bakke
02de6a5981
gnu: freeimage: Remove input labels.
...
* gnu/packages/image.scm (freeimage): Reindent.
[arguments]: Use G-expression and SEARCH-INPUT-DIRECTORY.
[inputs]: Remove labels.
2022-08-10 00:29:01 +02:00
Marius Bakke
f2e9f04dd9
gnu: freeimage: Update home page.
...
* gnu/packages/image.scm (freeimage)[home-page]: Follow redirect.
2022-08-10 00:29:01 +02:00
Marius Bakke
01a4f6672a
gnu: multipath-tools: Update to 0.9.0.
...
* gnu/packages/linux.scm (multipath-tools): Update to 0.9.0.
[home-page]: Change to current.
[source](uri): Likewise.
[source](snippet): Remove trailing #t.
[arguments]: Move LDFLAGS out of #:make-flags, and add in a phase. Add
substitution for /bin/echo, and remove obsolete phases.
2022-08-10 00:29:00 +02:00
Marius Bakke
181fd74121
gnu: multipath-tools: Remove input labels.
...
* gnu/packages/linux.scm (multipath-tools)[arguments]: Use G-expression and
SEARCH-INPUT-FILE.
[inputs]: Remove labels.
2022-08-10 00:29:00 +02:00
Marius Bakke
131e09b95a
gnu: spdlog: Prevent test failure on busy machines.
...
* gnu/packages/logging.scm (spdlog)[source](modules, snippet): New fields.
2022-08-10 00:29:00 +02:00
Marius Bakke
e3fc94576e
gnu: python-tlsh: Update to 4.11.2.
...
* gnu/packages/python-xyz.scm (python-tlsh): Update to 4.11.2.
[source](uri): Remove "v" prefix from version.
[arguments]: Add custom check phase. Use G-expression.
[inputs]: Remove label.
2022-08-10 00:29:00 +02:00
Marius Bakke
0a9d99bc8c
gnu: v4l-utils: Remove input labels.
...
* gnu/packages/video.scm (v4l-utils)[inputs]: Remove labels.
2022-08-10 00:29:00 +02:00
Marius Bakke
6c2412e9d1
gnu: v4l-utils: Update to 1.22.1.
...
* gnu/packages/video.scm (v4l-utils): Update to 1.22.1.
2022-08-10 00:29:00 +02:00
Marius Bakke
e954e708ed
gnu: ungoogled-chromium: Install crashpad handler.
...
* gnu/packages/chromium.scm (ungoogled-chromium)[arguments]: Install one more
file.
2022-08-10 00:29:00 +02:00
Marius Bakke
9fda25caff
gnu: box2d: Unbundle doctest.
...
* gnu/packages/game-development.scm (box2d)[source](snippet): Delete doctest,
and adjust accordingly.
[native-inputs]: Add DOCTEST.
2022-08-10 00:29:00 +02:00
Marius Bakke
00962dd18f
gnu: bpftrace: Update to 0.15.0.
...
* gnu/packages/linux.scm (bpftrace): Update to 0.15.0.
[inputs]: Add CEREAL.
2022-08-10 00:29:00 +02:00
Marius Bakke
2fd9ca5e05
gnu: bcc: Update to 0.24.0.
...
* gnu/packages/linux.scm (bcc): Update to 0.24.0.
2022-08-10 00:29:00 +02:00
Marius Bakke
d5986f7622
gnu: libbpf: Update to 0.8.1.
...
* gnu/packages/linux.scm (libbpf): Update to 0.8.1.
[inputs]: Change from LIBELF to ELFUTILS.
[arguments]: Use CC-FOR-TARGET. Remove trailing #t.
2022-08-10 00:29:00 +02:00
Marius Bakke
78c917e9a4
gnu: liburing: Update to 2.2.
...
* gnu/packages/linux.scm (liburing): Update to 2.2.
2022-08-10 00:29:00 +02:00
Marius Bakke
6e2f570cde
gnu: cereal: List all licenses that apply.
...
* gnu/packages/serialization.scm (cereal)[license]: Add LICENSE:BOOST,
LICENSE:EXPAT, and LICENSE:NON-COPYLEFT.
2022-08-10 00:28:59 +02:00
Marius Bakke
0b55b036c1
gnu: cereal: Update to 1.3.2.
...
* gnu/packages/serialization.scm (cereal): Update to 1.3.2.
[arguments]: Use G-expression.
(cereal-1.3.0): New variable.
* gnu/packages/bioinformatics.scm (salmon)[inputs]: Change from CEREAL to
CEREAL-1.3.0.
* gnu/packages/engineering.scm (prusa-slicer)[inputs]: Likewise.
2022-08-10 00:28:59 +02:00
Maxim Cournoyer
4b780d002d
doc: Fix name of gdm-configuration x-session field.
...
* doc/guix.texi (X Window): Correctly refer to 'x-session', not 'xsession', as
the name of the field.
2022-08-09 17:08:26 -04:00
Efraim Flashner
9a53a79fc5
gnu: gnupg: Patch CVE-2022-34903.
...
* gnu/packages/gnupg.scm (gnupg)[replacement]: New field.
(gnupg/replacement): New variable.
* gnu/packages/patches/gnupg-CVE-2022-34903.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
2022-08-09 22:39:26 +03:00
Efraim Flashner
987f5acb2d
gnu: git: Hide more CVEs from the linter.
...
* gnu/packages/version-control.scm (git)[properties]: Add more CVEs to
the lint-hidden-cve property.
2022-08-09 22:13:47 +03:00
Efraim Flashner
468c95e941
gnu: aspell: Patch CVE-2019-25051.
...
* gnu/packages/aspell.scm (aspell)[source]: Add patch.
* gnu/packages/patches/aspell-CVE-2019-25051.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
2022-08-09 22:13:33 +03:00
Ricardo Wurmus
26af06b66b
linux-container: container-script: Parse command line options.
...
* gnu/system/linux-container.scm (container-script): Accept command line
options to bind mount host directories into the container.
* doc/guix.texi (Invoking guix system): Document options.
2022-08-09 20:32:13 +02:00
John Kehayias
f194df2bb4
gnu: vorta: Update to 0.8.7.
...
* gnu/packages/backup.scm (vorta): Update to 0.8.7.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-09 17:58:37 +02:00
Timotej Lazar
fd74fe6325
tests: Add qemu-guest-agent system test.
...
Enable the QEMU guest agent interface in marionette VMs, run the
qemu-guest-agent service in one and try talking to it.
* gnu/build/marionette.scm (make-marionette): Enable the guest agent device.
* gnu/tests/virtualization.scm (run-qemu-guest-agent-test): New procedure.
(%test-qemu-guest-agent): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-09 17:15:45 +02:00
Timotej Lazar
ee199cd3ba
services: qemu-guest-agent: Fix arguments to qemu-ga.
...
Fix the check for empty device path. Do not use --daemonize, since that is
handled by make-forkexec-constructor. Drop the --pidfile option which is
unused without --daemonize.
* gnu/services/virtualization.scm (qemu-guest-agent-shepherd-service): Modify
command arguments.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-09 17:15:40 +02:00
Philip McGrath
bc03aa438b
gnu: wrap-python3: Clarify relationship with wrapped package.
...
The previous description could give the impression that the user faced a
choice between `python` and `python3`, but could not have both at once.
In fact, the packages `python-wrapper` and `python-minimal-wrapper`
already provide both sets of names.
* gnu/packages/python.scm (wrap-python3)[description]: Tweak.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-09 16:57:49 +02:00
Ludovic Courtès
60e0aae89c
channels: Consider news files as UTF-8-encoded by default.
...
Partly fixes <https://issues.guix.gnu.org/57039 >.
Reported by Pierre-Henry Fröhring <contact@phfrohring.com >.
Previously, news file would be read using the current locale encoding.
This could lead to a test failure in 'tests/channels.scm' (in a test
that expects some Unicode-capable encoding) in case tests were run in a
non-Unicode locale.
* guix/channels.scm (channel-news-for-commit): Make port for NEWS-FILE
UTF-8 by default.
2022-08-09 15:59:09 +02:00
Ludovic Courtès
e1b8bace8c
tests: git: Write files as UTF-8.
...
* guix/tests/git.scm (populate-git-repository): Add call to
'set-port-encoding!' in 'add' case.
2022-08-09 15:58:14 +02:00
Ludovic Courtès
fdafd40432
maint: Use a pretty version string in ISO and VM images.
...
* gnu/system/examples/vm-image.tmpl: Use the 'GUIX_DISPLAYED_VERSION'
environment variable in 'label'.
* gnu/system/install.scm (%installation-os): Likewise.
* Makefile.am (release): Set 'GUIX_DISPLAYED_VERSION'.
2022-08-09 15:16:06 +02:00
Ludovic Courtès
95a03aa5c5
system: install: Always use 'current-guix'.
...
Fixes <https://issues.guix.gnu.org/53210 >.
Reported by Mathieu Othacehe <othacehe@gnu.org >.
* gnu/system/install.scm (%installation-services): Set 'guix' to
use (current-guix) in 'guix-configuration'.
* gnu/system/examples/vm-image.tmpl: Likewise.
* gnu/tests/install.scm (operating-system-with-current-guix): Remove.
(run-install, installation-os-for-gui-tests): Remove its uses.
* Makefile.am (release): Remove intermediate use of
'update-guix-package.scm' and subsequent 'git commit' invocation.
2022-08-09 15:16:06 +02:00
Ludovic Courtès
57f1892d36
gnu: guix: Default 'current-guix' is built using the current channels.
...
* gnu/packages/package-management.scm (source-file?): Remove.
(current-guix-package): Change default value to the promise of a
package.
(current-guix): Turn into a call to 'current-guix-package' possibly with
'force'.
2022-08-09 15:16:06 +02:00
Ludovic Courtès
64a070717c
channels: Add 'repository->guix-channel'.
...
* guix/channels.scm (repository->guix-channel): New procedure.
* guix/scripts/describe.scm (display-checkout-info): Use it instead of
the (git) interface, and adjust accordingly.
2022-08-09 15:16:06 +02:00
Ludovic Courtès
cf60a0a906
build-system/channel: Accept a channel or instance as the source.
...
* guix/build-system/channel.scm (latest-channel-instances*): New
variable.
(build-channels): New procedure, with code formerly in
'channel-build-system', augmented with clauses for when SOURCE is a
channel instance or a channel.
* doc/guix.texi (Build Systems): Adjust accordingly.
2022-08-09 15:16:06 +02:00
Ludovic Courtès
5bce4c8242
build-system: Add 'channel-build-system'.
...
* gnu/ci.scm (channel-build-system, channel-source->package): Remove.
* gnu/packages/package-management.scm (channel-source->package): New
procedure, moved from (gnu ci).
* guix/build-system/channel.scm: New file, with code moved from (gnu ci).
* doc/guix.texi (Build Systems): Document it.
2022-08-09 15:16:06 +02:00
vicvbcun
0d9eef0a06
gnu: cddlib: Update to 0.94m.
...
* gnu/packages/maths.scm (cddlib): Update to 0.94m.
[source]: Move to git, following the upstream decision.
[native-inputs]: New field.
[arguments]: New field to have docdir include the version number.
Co-authored-by: Andreas Enge <andreas@enge.fr >
2022-08-09 14:17:04 +02:00
Andreas Enge
04f8e4194f
gnu: wxmaxima: Update to 22.05.0.
...
* gnu/packages/maths.scm (wxmaxima): Update to 22.05.0.
2022-08-09 11:43:39 +02:00
Andreas Enge
ecdd5d8563
gnu: maxima: Update to 5.46.0.
...
* gnu/packages/maths.scm (maxima): Update to 5.46.0.
2022-08-09 11:22:11 +02:00
Ricardo Wurmus
2efc787811
gnu: Add r-ciara.
...
* gnu/packages/bioconductor.scm (r-ciara): New variable.
2022-08-09 10:49:27 +02:00
Andreas Enge
38d024dc58
gnu: python-symengine: Update to 0.9.2.
...
* gnu/packages/python-xyz.scm (python-symengine): Update to 0.9.2.
2022-08-08 22:56:07 +02:00
Andreas Enge
8a8ffd40e3
gnu: symengine: Update to 0.9.0.
...
* gnu/packages/algebra.scm (symengine): Update to 0.9.0.
2022-08-08 22:27:53 +02:00
Andreas Enge
a0668d88bc
gnu: arb: Update to 2.23.0.
...
* gnu/packages/algebra.scm (arb): Update to 2.23.0.
2022-08-08 22:26:10 +02:00
Andreas Enge
2c3828c0b5
gnu: flint: Update to 2.9.0.
...
* gnu/packages/algebra.scm (flint): Update to 2.9.0.
2022-08-08 22:26:10 +02:00
Andreas Enge
aa83dde4b7
gnu: python-gmpy2: Update to 2.1.2.
...
* gnu/packages/sagemath.scm (python-gmpy2): Update to 2.1.2.
2022-08-08 22:26:10 +02:00
vicvbcun
2a428633a7
gnu: ntl: Update to 11.5.1.
...
* gnu/packages/algebra.scm (ntl): Update to 11.5.1.
Signed-off-by: Andreas Enge <andreas@enge.fr >
2022-08-08 22:26:10 +02:00
vicvbcun
9683a6203c
gnu: eclib: Update to 20220621.
...
* gnu/packages/algebra.scm (eclib): Update to 20220621.
Signed-off-by: Andreas Enge <andreas@enge.fr >
2022-08-08 22:26:10 +02:00
Hilton Chain
4f3b36e890
gnu: font-chiron-hei-hk: Update to 2.503.
...
* gnu/packages/fonts.scm (font-chiron-hei-hk): Update to 2.503.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-08 19:00:04 +02:00
Hilton Chain
9aaf104e1f
gnu: font-sarasa-gothic: Update to 0.36.8.
...
* gnu/packages/fonts.scm (font-sarasa-gothic): Update to 0.36.8.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-08 18:59:58 +02:00
Hilton Chain
80f380c547
gnu: font-chiron-hei-hk: Inherit from font-chiron-sung-hk.
...
* gnu/packages/fonts.scm (font-chiron-hei-hk): Inherit from
font-chiron-sung-hk.
[build-system, home-page ,license]: Drop fields.
[synopsis, description]: Use English.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-08 18:59:58 +02:00
Hilton Chain
1cdcc55b97
gnu: font-chiron-sung-hk: Use English for synopsis.
...
* gnu/packages/fonts.scm (font-chiron-sung-hk)[synopsis,description]: Use English.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-08 18:58:59 +02:00
Hilton Chain
c3e8eaafdd
gnu: font-lxgw-wenkai-tc: Inherit from font-lxgw-wenkai.
...
* gnu/packages/fonts.scm (font-lxgw-wenkai-tc): Inherit from font-lxgw-wenkai.
[build-system, license]: Removed fields.
[synopsis, description]: Use English.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-08 18:57:42 +02:00
Hilton Chain
c24a2e7c30
gnu: font-lxgw-wenkai: Use English for synopsis.
...
* gnu/packages/fonts.scm (font-lxgw-wenkai)[synopsis,description]: Use English.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-08 18:57:26 +02:00
Hilton Chain
fc10a6eba8
gnu: font-sarasa-gothic: Use English for synopsis.
...
* gnu/packages/fonts.scm (font-sarasa-gothic)[synopsis]: Use English.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-08 18:57:04 +02:00
Efraim Flashner
5e009a8874
gnu: unzip: Patch for CVE-2022-0529 and CVE-2022-0530.
...
* gnu/packages/compression.scm (unzip)[replacement]: New field.
(unzip/fixed): New variable.
* gnu/packages/patches/unzip-CVE-2022-0529+CVE-2022-0530.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
2022-08-08 19:21:45 +03:00
Efraim Flashner
b8424f0cdd
gnu: unzip: Mark safe from CVE-2019-13232.
...
* gnu/packages/compression.scm (unzip)[properties]: New field.
2022-08-08 18:47:20 +03:00
Mathieu Othacehe
a8868a53ad
gnu: guile-parted: Update to 0.0.6.
...
Fix cross-compilation.
* gnu/packages/guile-xyz.scm (guile-parted): Update to 0.0.6.
[native-inputs]: Add guile-3.0 and guile-bytestructures.
2022-08-08 17:13:30 +02:00
Mădălin Ionel Patrașcu
ec6499aad2
gnu: Add phyml.
...
* gnu/packages/bioinformatics.scm (phyml): New variable.
Co-authored-by: Ricardo Wurmus <rekado@elephly.net >
2022-08-08 12:38:41 +02:00
Ricardo Wurmus
d2470772c6
gnu: Add texlive-cite.
...
* gnu/packages/tex.scm (texlive-cite): New variable.
2022-08-08 12:25:30 +02:00
Ludovic Courtès
6db3b34d72
read-print: Add 'case' and 'cond' special forms.
...
* guix/read-print.scm (%special-forms): Add 'case' and 'cond'.
* tests/read-print.scm: Add tests.
2022-08-08 11:54:25 +02:00
Ludovic Courtès
ff9522fb69
installer: Add comments and vertical space to the generated config.
...
* gnu/installer/parted.scm (user-partitions->configuration): Introduce
vertical space and a comment.
* gnu/installer/services.scm (G_): New macro.
(%system-services): Add comment for OpenSSH.
(system-services->configuration): Add vertical space and comments.
* gnu/installer/user.scm (users->configuration): Add comment.
* gnu/installer/steps.scm (format-configuration): Add comment.
(configuration->file): Expound leading comment. Pass #:format-comment
to 'pretty-print-with-comments/splice'.
2022-08-08 11:54:25 +02:00
Ludovic Courtès
cd1a98b928
installer: Render the final configuration with (guix read-print).
...
* gnu/installer.scm (module-to-import?): Return #t for (guix read-print).
* gnu/installer/steps.scm (configuration->file): Use
'pretty-print-with-comments/splice' instead of 'for-each' and 'pretty-print'.
2022-08-08 11:54:24 +02:00
Ludovic Courtès
445a0d134c
read-print: Support printing multi-line comments.
...
* guix/read-print.scm (%not-newline): New variable.
(print-multi-line-comment): New procedure.
(pretty-print-with-comments): Use it.
* tests/read-print.scm ("pretty-print-with-comments, multi-line
comment"): New test.
2022-08-08 11:54:24 +02:00
Ludovic Courtès
a109ee9048
news: Add entry for 'guix style -f'.
...
* etc/news.scm: Add entry.
2022-08-08 11:54:23 +02:00
Ludovic Courtès
a15542d26d
style: Add '--whole-file' option.
...
* guix/scripts/style.scm (format-whole-file): New procedure.
(%options, show-help): Add '--whole-file'.
(guix-style): Honor it.
* tests/guix-style.sh: New file.
* Makefile.am (SH_TESTS): Add it.
* doc/guix.texi (Invoking guix style): Document it.
2022-08-08 11:53:33 +02:00
Ludovic Courtès
90ef692e9b
read-print: 'canonicalize-comment' leaves top-level comments unchanged.
...
This lets users use three leading semicolons, for instance, in top-level
comments.
* guix/read-print.scm (canonicalize-comment): Add INDENT parameter and
honor it.
(pretty-print-with-comments): Change default value of #:format-comment.
Call FORMAT-COMMENT with INDENT as the second argument.
* tests/read-print.scm: Adjust test accordingly.
2022-08-08 11:22:32 +02:00
Ludovic Courtès
9b00c97de4
read-print: Add code to read and write sequences of expressions/blanks.
...
* guix/read-print.scm (read-with-comments): Add #:blank-line? and honor it.
(read-with-comments/sequence, pretty-print-with-comments/splice): New
procedures.
* tests/read-print.scm (test-pretty-print/sequence): New macro.
Add tests using it.
2022-08-08 11:22:32 +02:00
Ludovic Courtès
077324a16f
read-print: Recognize page breaks.
...
* guix/read-print.scm (<page-break>, page-break?, page-break)
(char-set:whitespace-sans-page-break): New variables.
(space?): New procedure.
(read-vertical-space): Use it.
(read-until-end-of-line): New procedure.
(read-with-comments): Add #\page case.
(pretty-print-with-comments): Add 'page-break?' case.
* tests/read-print.scm ("read-with-comments: top-level page break"): New
test.
Add round-trip test with page break within an sexp.
2022-08-08 11:22:32 +02:00
Ludovic Courtès
f687e27e03
read-print: Read and render vertical space.
...
* guix/read-print.scm (<vertical-space>, vertical-space?)
(vertical-space, vertical-space-height): New variables.
(combine-vertical-space, canonicalize-vertical-space)
(read-vertical-space): New procedures.
(read-with-comments): Use it in the #\newline case.
(pretty-print-with-comments): Add #:format-vertical-space and honor it.
Add case for 'vertical-space?'.
* guix/scripts/style.scm (format-package-definition): Pass
#:format-vertical-space to 'object->string*'.
* tests/read-print.scm ("read-with-comments: list with blank line")
("read-with-comments: list with multiple blank lines")
("read-with-comments: top-level blank lines")
("pretty-print-with-comments, canonicalize-vertical-space"): New tests.
Add a couple of additional round-trip tests.
2022-08-08 11:22:32 +02:00
Ludovic Courtès
3eb3901d7f
style: Adjust test to not emit blank lines.
...
Previously this test would produce a file containing blank lines between
inputs.
* tests/style.scm ("input labels, modify-inputs and margin comment"):
Remove trailing newlines in replacement strings of 'substitute*'
expression.
2022-08-08 11:22:32 +02:00
Ludovic Courtès
5b273e7c77
read-print: Introduce <blank> parent class of <comment>.
...
* guix/read-print.scm (<blank>, blank?): New record type.
(<comment>): Redefine using the record interface.
(read-with-comments, pretty-print-with-comments): Change some uses of
'comment?' to 'blank?'.
* guix/scripts/style.scm (simplify-inputs)[simplify-expressions]: Use
'blank?' instead of 'comment?'.
2022-08-08 11:22:32 +02:00
Ludovic Courtès
38f1fb843c
read-print: Expose comment constructor.
...
* guix/read-print.scm (<comment>): Rename constructor to
'string->comment'.
(comment): New procedure.
(read-with-comments, canonicalize-comment): Use 'string->comment'
instead of 'comment'.
2022-08-08 11:22:32 +02:00
Ludovic Courtès
632d4ccc0b
read-print: Add System and Home special forms.
...
* guix/read-print.scm (%special-forms): Add System and Home forms.
(%newline-forms): Add 'services'.
2022-08-08 11:22:31 +02:00
Ludovic Courtès
5817e222fa
style: Move reader and printer to (guix read-print).
...
* guix/scripts/style.scm (<comment>, read-with-comments)
(vhashq, %special-forms, %newline-forms, prefix?)
(special-form-lead, newline-form?, escaped-string)
(string-width, canonicalize-comment, pretty-print-with-comments)
(object->string*): Move to...
* guix/read-print.scm: ... here. New file.
* guix/scripts/import.scm: Adjust accordingly.
* tests/style.scm: Move 'test-pretty-print' and tests to...
* tests/read-print.scm: ... here. New file.
* Makefile.am (MODULES): Add 'guix/read-print.scm'.
(SCM_TESTS): Add 'tests/read-print.scm'.
2022-08-08 11:22:31 +02:00
Morgan Smith
bc3eaf9d83
gnu: go-gitlab.com-shackra-goimapnotify: Update to 2.3.7.
...
* gnu/packages/mail.scm (go-gitlab.com-shackra-goimapnotify): Update to 2.3.7.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-08 11:22:31 +02:00
Ludovic Courtès
ad8beb6325
lint: Add '-e'.
...
* guix/scripts/lint.scm (show-help, %options): Add '-e'.
(guix-lint): Call 'specification->package' while traversing OPTS. Add
case for 'expression pair. Adjust 'for-each' loop to expect packages.
* doc/guix.texi (Invoking guix lint): Document it.
2022-08-08 11:22:31 +02:00
Mathieu Othacehe
bde902cb78
gnu: guile-newt: Update to 0.0.3.
...
Fixes: <https://issues.guix.gnu.org/57037 >.
* gnu/packages/guile-xyz.scm (guile-newt): Update to 0.0.3.
[native-inputs]: Add guile-3.0 that is required when cross-compiling.
2022-08-08 10:56:23 +02:00
宋文武
19592539e5
gnu: cool-retro-term: Fix build and runtime errors.
...
This fixes <https://issues.guix.gnu.org/57049 >.
* gnu/packages/terminals.scm (cool-retro-term)
[inputs]: Add qtquickcontrols-5.
[arguments]: Fix 'QML2_IMPORT_PATH'.
2022-08-08 16:04:17 +08:00
Marius Bakke
0e320fbfdc
gnu: chatty: Update to 0.6.7.
...
* gnu/packages/messaging.scm (chatty): Update to 0.6.7.
[source]: Fetch git submodules too.
[arguments]: Add pre-check phase.
[native-inputs]: Add XORG-SERVER-FOR-TESTS.
[inputs]: Add GNOME-DESKTOP.
2022-08-08 09:32:13 +02:00
Marius Bakke
8ad976d49f
gnu: postorius: Update to 1.3.6.
...
* gnu/packages/mail.scm (postorius): Update to 1.3.6.
[inputs]: Change from PYTHON-DJANGO-2.2 to PYTHON-DJANGO.
2022-08-08 09:32:13 +02:00
Marius Bakke
d6dab262d5
gnu: python-django@3.2: Update to 3.2.15 [fixes CVE-2022-36359].
...
* gnu/packages/django.scm (python-django-3.2): Update to 3.2.15.
2022-08-08 09:32:13 +02:00
Marius Bakke
bd698fede7
gnu: python-django: Update to 4.0.7 [fixes CVE-2022-36359].
...
* gnu/packages/django.scm (python-django-4.0): Update to 4.0.7.
2022-08-08 09:32:13 +02:00
宋文武
ee216d16ef
gnu: tiled: Fix build.
...
Fixes <https://issues.guix.gnu.org/57048 >.
* gnu/packages/game-development.scm (tiled)[arguments]:
Use 'search-input-file' to locate 'lrelease'.
2022-08-08 10:34:58 +08:00
Efraim Flashner
eed987855c
gnu: msmtp: Use G-Expressions.
...
* gnu/packages/mail.scm (msmtp)[arguments]: Rewrite using G-Expressions.
2022-08-07 20:36:19 +03:00
Efraim Flashner
f63ef9ab0d
gnu: msmtp: Don't override defaults when checking for network.
...
This is no longer needed as the defaults have changed upstream.
* gnu/packages/mail.scm (msmtp)[arguments]: Remove substitution to force
'ping' instead of 'netcat' to check for network access.
2022-08-07 20:31:31 +03:00
Efraim Flashner
eb8ab91284
gnu: msmtp: Update to 1.8.22.
...
* gnu/packages/mail.scm (msmtp): Update to 1.8.22.
2022-08-07 20:04:53 +03:00
Efraim Flashner
f0ae9da321
gnu: gss: Update to 1.0.4.
...
* gnu/packages/gsasl.scm (gss): Update to 1.0.4.
2022-08-07 19:54:34 +03:00
Efraim Flashner
92769ab282
gnu: libtirpc: Fix CVE-2021-46828.
...
* gnu/packages/onc-rpc.scm (libtirpc)[replacement]: New field.
(libtirpc/fixed): New variable.
(libtirpc-hurd)[source]: Add patch.
* gnu/packages/patches/libtirpc-CVE-2021-46828.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
2022-08-07 17:35:58 +03:00
Efraim Flashner
6757ee9d2b
gnu: shishi: Use G-expressions.
...
* gnu/packages/kerberos.scm (shishi)[arguments]: Convert to list of
G-Expressions.
2022-08-07 16:20:38 +03:00
Efraim Flashner
e3e33b5251
gnu: shishi: Build with newer linux-pam.
...
* gnu/packages/kerberos.scm (shishi)[inputs]: Replace linux-pam-1.2 with
linux-pam.
* gnu/packages/linux.scm (linux-pam-1.2): Remove variable.
2022-08-07 16:17:23 +03:00
Efraim Flashner
544ff0b6c2
gnu: shishi: Update to 1.0.3.
...
* gnu/packages/kerberos.scm (shishi): Update to 1.0.3.
[source]: Remove patch.
[arguments]: Remove configure flag overriding libgcrypt detection.
* gnu/packages/patches/shishi-fix-libgcrypt-detection.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Remove it.
2022-08-07 16:16:42 +03:00
Olivier Dion
120d8f8563
gnu: guile-sqlite3: Update to 0.1.3.
...
* gnu/packages/guile.scm (guile-sqlite3): Update to 0.1.3.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-07 11:45:28 +02:00
Jean-Pierre De Jesus DIAZ
c0e713f6e2
gnu: newt: Fix cross-compilation.
...
* gnu/packages/slang.scm (newt): Fix-cross compilation.
[arguments]: Use G-Expressions for `#:configure-flags',
`#:make-flags' and `#:phases', also set correct path for
`python-config'.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-07 11:32:44 +02:00
Maxim Cournoyer
bb5afc5b9e
gnu: gnome-system-monitor: Update to 42.0.
...
* gnu/packages/gnome.scm (gnome-system-monitor): Update to 42.0.
2022-08-06 21:52:46 -04:00
Tobias Geerinckx-Rice
d21ddfc9d8
gnu: xonotic-data: Don't copy 1.2-GiB file to build directory.
...
* gnu/packages/games.scm (xonotic-data)[arguments]:
Extract SOURCE directly from the store.
2022-08-07 02:00:00 +02:00
Tobias Geerinckx-Rice
33ae2fb398
gnu: xonotic-data: Use G-expressions.
...
* gnu/packages/games.scm (xonotic-data)[arguments]:
Rewrite as G-expressions.
2022-08-07 02:00:00 +02:00
Tobias Geerinckx-Rice
501d4b3bb4
gnu: xonotic: Remove input labels.
...
* gnu/packages/games.scm (xonotic)[inputs, native-inputs]:
Remove input labels.
2022-08-07 02:00:00 +02:00
Tobias Geerinckx-Rice
3ec40d0074
gnu: xonotic-data: Remove input labels.
...
* gnu/packages/games.scm (xonotic-data)[native-inputs]:
Remove input labels.
2022-08-07 02:00:00 +02:00
Tobias Geerinckx-Rice
12b0258d75
gnu: xonotic-data: Update to 0.8.5.
...
* gnu/packages/games.scm (xonotic-data): Update to 0.8.5.
[source]: Use HTTPS.
2022-08-07 02:00:00 +02:00
Tobias Geerinckx-Rice
ad871dae88
gnu: xonotic: Update to 0.8.5.
...
* gnu/packages/games.scm (xonotic): Update to 0.8.5.
[source]: Use HTTPS.
[arguments]: Don't explicitly return #t from phases.
2022-08-07 02:00:00 +02:00
Julien Lepiller
82ea33d295
gnu: ocaml-cudf: Update to 0.10.
...
* gnu/packages/ocaml.scm (ocaml-cudf): Update to 0.10.
2022-08-13 21:21:47 +02:00
Julien Lepiller
9062bb56c8
gnu: ocaml-sexplib: Update to 0.15.1.
...
* gnu/packages/ocaml.scm (ocaml-sexplib): Update to 0.15.1.
2022-08-13 21:21:43 +02:00
Julien Lepiller
07fecda3dd
gnu: ocaml-timed: Update to 1.1.
...
* gnu/packages/ocaml.scm (ocaml-timed): Update to 1.1.
2022-08-13 21:21:40 +02:00
Julien Lepiller
893299b3ee
gnu: ocaml-biniou: Update to 1.2.2.
...
* gnu/packages/ocaml.scm (ocaml-biniou): Update to 1.2.2.
2022-08-13 21:21:38 +02:00
Julien Lepiller
3d065a81a7
gnu: ocaml-cstruct: Update to 6.1.1.
...
* gnu/packages/ocaml.scm (ocaml-cstruct): Update to 6.1.1.
2022-08-13 21:21:36 +02:00
Julien Lepiller
628713ea73
gnu: ocaml-version: Update to 3.5.0.
...
* gnu/packages/ocaml.scm (ocaml-version): Update to 3.5.0.
2022-08-13 21:21:34 +02:00
Julien Lepiller
7b95125bad
gnu: ocaml-alcotest: Update to 1.6.0.
...
* gnu/packages/ocaml.scm (ocaml-alcotest): Update to 1.6.0.
2022-08-13 21:21:32 +02:00
Julien Lepiller
d75210a871
gnu: ocaml-odoc-parser: Update to 2.0.0.
...
* gnu/packages/ocaml.scm (ocaml-odoc-parser): Update to 2.0.0.
(ocamlformat): Update to 0.24.1.
2022-08-13 21:21:30 +02:00
Julien Lepiller
96b3449823
gnu: ocaml-piqilib: Update to 0.6.16.
...
* gnu/packages/ocaml.scm (ocaml-piqilib): Update to 0.6.16.
2022-08-13 21:21:28 +02:00
Julien Lepiller
b7b2c92274
gnu: ocaml-ssl: Update to 0.5.12.
...
* gnu/packages/ocaml.scm (ocaml-ssl): Update to 0.5.12.
2022-08-13 21:21:26 +02:00
Julien Lepiller
42d5f769fb
gnu: dune: Update to 4.4.1.
...
* gnu/packages/ocaml.scm (dune): Update to 4.4.1.
* gnu/packages/coq.scm (coq-stdlib): Fix for new dune.
2022-08-13 21:21:22 +02:00
Julien Lepiller
b4d97ef2de
gnu: ocaml-piqi: Update to 0.7.8.
...
* gnu/packages/ocaml.scm (ocaml-piqi): Update to 0.7.8.
2022-08-13 21:21:20 +02:00
Julien Lepiller
07dcba5437
gnu: ocaml-yojson: Update to 2.0.2.
...
merlin also needs to be updated at the same time because of
incompatibilities between the two versions.
* gnu/packages/ocaml.scm (ocaml-merlin-lib): New variable.
(ocaml-dot-merlin-reader): Inherit from it and update inputs.
(ocaml-merlin): Update inputs.
(ocaml-yojson): Update to 2.0.2.
(ocaml-odoc): Disable tests.
2022-08-13 21:21:17 +02:00
Julien Lepiller
7034824dcb
gnu: ocaml-zed: Update to 3.2.0.
...
Because of an incompatible change in ocaml-zed, some of its dependents
need to be updated at the same time to prevent breakage.
* gnu/packages/ocaml.scm (ocaml-zed): Update to 3.2.0.
(ocaml-lambda-term): Update to 3.3.1.
(ocaml-utop): Update to 2.10.0.
2022-08-13 21:21:08 +02:00
Marius Bakke
33d5141239
gnu: python-setuptools: Update to 64.0.3.
...
* gnu/packages/python-xyz.scm (python-setuptools): Update to 64.0.3.
2022-08-13 19:24:35 +02:00
Marius Bakke
e015fc174e
gnu: policycoreutils: Use G-expression.
...
* gnu/packages/selinux.scm (policycoreutils)[arguments]: Convert to gexp.
2022-08-13 19:24:35 +02:00
Marius Bakke
d7278e4020
gnu: libsepol: Use G-expression.
...
* gnu/packages/selinux.scm (libsepol)[arguments]: Convert to gexp.
2022-08-13 19:24:35 +02:00
Marius Bakke
c6e3f4eb5a
gnu: policycoreutils: Remove input labels.
...
* gnu/packages/selinux.scm (policycoreutils)[native-inputs, inputs]: Remove
labels.
2022-08-13 19:24:35 +02:00
Marius Bakke
46bb84bb57
gnu: python-sepolgen: Use G-expression and remove labels.
...
* gnu/packages/selinux.scm (python-sepolgen)[arguments]: Convert to
G-expression. Don't refer to python by label.
[inputs]: Remove labels.
2022-08-13 19:24:35 +02:00
Marius Bakke
71d07d821d
gnu: secilc: Remove input labels.
...
* gnu/packages/selinux.scm (secilc)[arguments]: Use G-expression and
SEARCH-INPUT-DIRECTORY.
[inputs, native-inputs]: Remove labels.
2022-08-13 19:24:35 +02:00
Marius Bakke
9bfdd1e7cb
gnu: libsemanage: Remove input labels.
...
* gnu/packages/selinux.scm (libsemanage)[arguments]: Use G-expression.
[native-inputs, inputs]: Remove labels.
2022-08-13 19:24:35 +02:00
Marius Bakke
54f14833a9
gnu: libselinux: Remove input labels.
...
* gnu/packages/selinux.scm (libselinux)[arguments]: Use G-expression.
[native-inputs, inputs, propagated-inputs]: Remove labels.
2022-08-13 19:24:35 +02:00
Marius Bakke
86084aa4c8
gnu: checkpolicy: Remove input labels.
...
* gnu/packages/selinux.scm (checkpolicy)[arguments]: Use G-expression &
SERACH-INPUT-FILE.
[native-inputs, inputs]: Remove labels.
2022-08-13 19:24:35 +02:00
Marius Bakke
0d79288fb6
gnu: SELinux: Update to 3.4.
...
* gnu/packages/selinux.scm (libsepol): Update to 3.4.
(libselinux)[propagated-inputs]: Replace PCRE with PCRE2.
2022-08-13 19:24:34 +02:00
Marius Bakke
ca6078e1e9
gnu: serf: Add release-monitoring-url.
...
* gnu/packages/web.scm (serf)[properties]: New field.
2022-08-13 19:24:34 +02:00
Marius Bakke
dfd4474461
gnu: qtractor: Fix build.
...
This is a follow-up to commit 1ef04fb228 .
* gnu/packages/music.scm (qtractor)[inputs]: Change from QTSVG to QTSVG-5.
2022-08-13 19:24:34 +02:00
Marius Bakke
06db41651c
gnu: python-m2r: Adjust for Python 3.10.
...
* gnu/packages/python-xyz.scm (python-m2r)[source](modules, snippet): New
fields.
2022-08-13 19:24:34 +02:00
Marius Bakke
c87700e691
gnu: python-pre-commit: Remove unnecessary dependency.
...
* gnu/packages/python-xyz.scm (python-pre-commit)[propagated-inputs]: Remove
PYTHON-IMPORTLIB-RESOURCES, which is part of the stdlib nowadays.
2022-08-13 19:24:34 +02:00
Marius Bakke
945fdf8cf0
gnu: python-numpy: Add 'upstream-name' property.
...
* gnu/packages/python-xyz.scm (python-numpy)[properties]: New field.
2022-08-13 19:24:34 +02:00
Marius Bakke
9d72feb492
gnu: python-pyaml: Update to 21.10.1.
...
* gnu/packages/python-xyz.scm (python-pyaml): Update to 21.10.1.
2022-08-13 19:24:34 +02:00
Marius Bakke
91d8e1c5cd
gnu: graphviz: Add release-monitoring-url.
...
* gnu/packages/graphviz.scm (graphviz)[properties]: New field.
2022-08-13 19:24:33 +02:00
Vinicius Monego
bea916aea7
gnu: gsequencer: Update to 4.3.4.
...
* gnu/packages/music.scm (gsequencer): Update to 4.3.4.
[inputs]: Replace gtk+ with gtk, libsoup-minimal-2 with libsoup,
webkitgtk-with-libsoup-2 with webkitgtk.
2022-08-13 14:05:19 -03:00
raingloom
c2481b1bea
gnu: yt-dlp: Build from Git.
...
* gnu/packages/video.scm (yt-dlp)[source]: Use GIT-FETCH and
GIT-FILE-NAME. Remove the snippet.
[arguments]: Build the man page in the 'build-generated-files phase.
[native-inputs]: Add pandoc.
Co-authored-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-08-07 02:00:07 +02:00
pinoaffe
a6fb2d2760
gnu: yt-dlp: Update to 2022.08.08.
...
* gnu/packages/video.scm (yt-dlp): Update to 2022.08.08.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-08-07 02:00:00 +02:00
Tobias Geerinckx-Rice
fa0c9b086c
gnu: Add fstransform.
...
* gnu/packages/file-systems.scm (fstransform): New public variable.
2022-08-07 02:00:00 +02:00
Tobias Geerinckx-Rice
dda3a760ab
gnu: dvdisaster: Use G-expressions.
...
* gnu/packages/cdrom.scm (dvdisaster)[arguments]:
Rewrite as G-expressions.
2022-08-07 02:00:00 +02:00
Tobias Geerinckx-Rice
ced32e953d
gnu: dvdisaster: Update to 0.79.10.
...
* gnu/packages/cdrom.scm (dvdisaster): Update to 0.79.10.
2022-08-07 02:00:00 +02:00
Tobias Geerinckx-Rice
22c91ab5d3
gnu: dvdisaster: Remove input labels.
...
* gnu/packages/cdrom.scm (dvdisaster)[native-inputs]:
Remove input labels.
2022-08-07 02:00:00 +02:00
Arun Isaac
e05d5d8251
gnu: kiwix-desktop: Add bash-minimal to inputs.
...
* gnu/packages/web.scm (kiwix-desktop)[inputs]: Add bash-minimal.
2022-08-13 17:20:53 +05:30
Arun Isaac
2691bac7fd
gnu: kiwix-tools: Update to 3.3.0.
...
* gnu/packages/web.scm (kiwix-tools): Update to 3.3.0.
2022-08-13 17:17:59 +05:30
Arun Isaac
93d8523487
gnu: kiwix-desktop: Update to 2.2.2.
...
* gnu/packages/web.scm (kiwix-desktop): Update to 2.2.2.
[arguments]: Delete enable-print-support and substitute-source phases. Use
search-input-file. Do not return #t from phases.
[native-inputs]: Remove labels.
2022-08-13 17:17:59 +05:30
Arun Isaac
ff564de64c
gnu: kiwix-lib: Update to 11.0.0.
...
* gnu/packages/web.scm (kiwix-lib): Update to 11.0.0.
[arguments]: Do not explicitly pass mustache path to CPPFLAGS. Do not return
#t from phases. Use search-input-file.
[native-inputs]: Remove labels. Use cpp-mustache package instead of its
source.
2022-08-13 17:17:47 +05:30
Arun Isaac
1e51cb37fb
gnu: libzim: Update to 8.0.0.
...
* gnu/packages/web.scm (libzim): Update to 8.0.0.
[inputs]: Remove labels. Sort.
2022-08-13 16:46:22 +05:30
Arun Isaac
a491f25166
gnu: Add cpp-mustache.
...
* gnu/packages/cpp.scm (cpp-mustache): New variable.
2022-08-13 16:45:33 +05:30
Vinicius Monego
887a5fd5a3
gnu: pre-commit: Update to 2.20.0.
...
* gnu/packages/version-control.scm (pre-commit): Update to 2.20.0.
2022-08-13 02:34:03 -03:00
Vinicius Monego
0fc2027e16
gnu: freecad: Update to 0.20.1.
...
* gnu/packages/engineering.scm (freecad): Update to 0.20.1.
2022-08-13 02:34:03 -03:00
Vinicius Monego
c7f3cdb78e
gnu: shotcut: Update to 22.06.23.
...
* gnu/packages/video.scm (shotcut): Update to 22.06.23.
[arguments]: Do not replace the 'configure phase as Shotcut switched to the
CMake build system in this version.
[inputs]: Add fftw.
2022-08-13 02:34:03 -03:00
Vinicius Monego
ab959f8a11
gnu: mlt: Update to 7.8.0.
...
* gnu/packages/video.scm (mlt): Update to 7.8.0.
2022-08-13 02:34:03 -03:00
Vinicius Monego
4b88fe049f
gnu: python-wand: Update to 0.6.9.
...
* gnu/packages/python-xyz.scm (python-wand): Update to 0.6.9.
2022-08-13 02:34:02 -03:00
Vinicius Monego
b2ba54d007
gnu: mixxx: Update to 2.3.3.
...
* gnu/packages/music.scm (mixxx): Update to 2.3.3.
2022-08-13 02:34:02 -03:00
Vinicius Monego
d32737f7f0
gnu: openxr: Update to 1.0.24.
...
* gnu/packages/graphics.scm (openxr): Update to 1.0.24.
2022-08-13 02:34:02 -03:00
Vinicius Monego
42efa9fc7a
gnu: homebank: Update to 5.5.6.
...
* gnu/packages/finance.scm (homebank): Update to 5.5.6.
2022-08-13 02:33:52 -03:00
Tobias Geerinckx-Rice
bf35cded18
gnu: mu: Update to 1.8.8.
...
* gnu/packages/mail.scm (mu): Update to 1.8.8.
2022-08-07 02:00:00 +02:00
Efraim Flashner
b1ff8f33db
gnu: perl-data-optlist: Update to 0.112.
...
* gnu/packages/perl.scm (perl-data-optlist): Update to 0.112.
2022-08-12 23:40:34 +03:00
Efraim Flashner
c20a61a8ab
gnu: perl-test-simple: Update to 1.302191.
...
* gnu/packages/perl-check.scm (perl-test-simple): Update to 1.302191.
2022-08-12 23:40:33 +03:00
Efraim Flashner
4331497e19
gnu: perl-net-http: Update to 6.22.
...
* gnu/packages/web.scm (perl-net-http): Update to 6.22.
2022-08-12 23:30:47 +03:00
Efraim Flashner
7e048358f5
gnu: perl-libwww: Update to 6.67.
...
* gnu/packages/web.scm (perl-libwww): Update to 6.67.
2022-08-12 23:30:47 +03:00
Efraim Flashner
e1168cadcc
gnu: perl-http-cookies: Update to 6.10.
...
* gnu/packages/web.scm (perl-http-cookies): Update to 6.10.
2022-08-12 23:30:46 +03:00
Efraim Flashner
ca62b08cfa
gnu: perl-file-listing: Update to 6.15.
...
* gnu/packages/web.scm (perl-file-listing): Update to 6.15.
2022-08-12 23:30:46 +03:00
Efraim Flashner
f0e5d0329b
gnu: libfido2: Update to 1.11.0.
...
* gnu/packages/security-token.scm (libfido2): Update to 1.11.0.
2022-08-12 23:21:06 +03:00
Efraim Flashner
247c02485b
gnu: libfido2: Use https for source uri.
...
* gnu/packages/security-token.scm (libfido2)[source]: Rewrite using https.
2022-08-12 23:21:02 +03:00
Maxim Cournoyer
ff0600c5ef
gnu: tesseract-ocr: Make the default install minimally useful.
...
Fixes <https://issues.guix.gnu.org/47536 >.
* gnu/packages/ocr.scm (tesseract-ocr)
[phases]{adjust-TESSDATA_PREFIX-macro}: New phase.
{install-minimal-tessdata}: New phase.
[native-inputs]: Add tesseract-ocr-tessdata-fast.
[search-paths]: New field.
[description]: Mention how to add support for more languages.
2022-08-12 15:43:48 -04:00
Maxim Cournoyer
a6b6b0e89e
gnu: Add tesseract-ocr-tessdata-fast.
...
* gnu/packages/ocr.scm (tesseract-ocr-tessdata-fast): New variable.
2022-08-12 15:43:48 -04:00
Tobias Geerinckx-Rice
ecc2587f1f
gnu: tor: Update to 0.4.7.10.
...
* gnu/packages/tor.scm (tor): Update to 0.4.7.10.
2022-08-07 02:00:00 +02:00
Guillaume Le Vaillant
eecb5efad9
gnu: monero-gui: Fix path to p2pool.
...
Fixes <https://issues.guix.gnu.org/55512 >.
* gnu/packages/finance.scm (monero-gui)[inputs]: Add p2pool.
[arguments]: Add 'fix-p2pool-path' phase.
2022-08-12 17:43:20 +02:00
Justin Veilleux
fc408acd61
gnu: Add p2pool.
...
* gnu/packages/finance.scm (p2pool): New variable.
Co-authored-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-12 17:43:20 +02:00
Justin Veilleux
ed4a3f17bf
gnu: Add xmrig.
...
* gnu/packages/finance.scm (xmrig): New variable.
Co-authored-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-12 17:43:17 +02:00
Collin J. Doering via Guix-patches via
3650425b46
gnu: Add emacs-hledger-mode
...
* gnu/packages/finance.scm (emacs-hledger-mode): New variable
2022-08-12 11:41:00 -04:00
Antero Mejr
e05e5342a0
gnu: Add pn.
...
* gnu/packages/messaging.scm (pn): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-08-12 17:34:25 +03:00
Guillaume Le Vaillant
ff2c97a803
gnu: txr: Update to 280.
...
* gnu/packages/lisp.scm (txr): Update to 280.
2022-08-12 11:47:52 +02:00
Guillaume Le Vaillant
e8e9472af5
gnu: monero-gui: Update to 0.18.1.0.
...
* gnu/packages/finance.scm (monero-gui): Update to 0.18.1.0.
2022-08-12 11:37:58 +02:00
Guillaume Le Vaillant
a3a25daeee
gnu: monero: Update to 0.18.1.0.
...
* gnu/packages/finance.scm (monero): Update to 0.18.1.0.
2022-08-12 11:37:58 +02:00
(
6d69f093d0
gnu: Add spng.
...
* gnu/packages/image.scm (spng): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-12 11:12:18 +02:00
Hilton Chain
67fcc6e339
gnu: Add python-misskey.
...
* gnu/packages/python-xyz.scm (python-misskey): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-12 11:05:29 +02:00
Mathieu Othacehe
1385ef76d7
gnu: python-typer: Introduce gexps.
...
* gnu/packages/python-xyz.scm (python-typer)[arguments]: Switch to gexps.
[synopsis, description]: Fix indentation.
2022-08-12 10:37:03 +02:00
Tanguy Le Carrour
3ceb985e75
gnu: python-typer: Update to 0.6.1.
...
* gnu/packages/python-xyz.scm (python-typer): Update to 0.6.1.
[source]: Use GIT-FETCH.
[arguments]: Build from source with flit.
[native-inputs]: Add python-flit and python-rich.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-12 10:37:03 +02:00
vicvbcun
2b34eccbf3
gnu: lrcalc: Update to 2.1.
...
* gnu/packages/algebra.scm (lrcalc): Update to 2.1.
[source]: Remove patch.
* gnu/packages/patches/lrcalc-includes.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Unregister file.
Signed-off-by: Andreas Enge <andreas@enge.fr >
2022-08-12 10:27:40 +02:00
vicvbcun
d5a641dc2e
gnu: lcalc: Update to 2.0.5.
...
* gnu/packages/sagemath.scm (lcalc): Update to 2.0.5.
* gnu/packages/patches/lcalc-default-parameters-1.patch,
gnu/packages/patches/lcalc-default-parameters-2.patch,
gnu/packages/patches/lcalc-lcommon-h.patch,
gnu/packages/patches/lcalc-using-namespace-std.patch: Delete files.
* gnu/local.mk (dist_patch_DATA): Unregister files.
Signed-off-by: Andreas Enge <andreas@enge.fr >
2022-08-12 10:21:00 +02:00
vicvbcun
2e821717d3
gnu: edge-addition-planarity-suite: Update to 3.0.2.0.
...
* gnu/packages/graph.scm (edge-addition-planarity-suite): Update to 3.0.2.0.
Signed-off-by: Andreas Enge <andreas@enge.fr >
2022-08-12 10:10:26 +02:00
Maxim Cournoyer
f7c027617d
gnu: tesseract-ocr: Update to 5.2.0.
...
* gnu/packages/ocr.scm (tesseract-ocr): Update to 5.2.0.
[inputs, native-inputs]: Move after arguments. Use new style inputs.
[arguments]: Use gexps.
[configure-flags]: Add --disable-static.
[phases]{fix-docbook}: Replace phase with...
{do-not-override-xml-catalog-files}: ... this new phase.
{build-training}: Move after build phase. Enable parallel build.
{trailing-install}: Move after install phase.
[native-inputs]: Add libxml2.
2022-08-12 00:38:46 -04:00
Maxim Cournoyer
887dbf4d80
gnu: ocrad: Update to 0.28.
...
* gnu/packages/ocr.scm (ocrad): Update to 0.28.
2022-08-12 00:38:46 -04:00
Efraim Flashner
190e285958
gnu: python-icalendar: Update to 4.1.0.
...
* gnu/packages/python-xyz.scm (python-icalendar): Update to 4.1.0.
2022-08-12 06:21:59 +03:00
Efraim Flashner
d4284e3fd2
gnu: python-setproctitle: Update to 1.3.2.
...
* gnu/packages/python-xyz.scm (python-setproctitle): Update to 1.3.2.
[arguments]: Adjust custom 'check phase for changes in source code.
Honor #:tests? flag.
[native-inputs]: Add python-pytest.
[description]: Reflow.
2022-08-12 06:20:26 +03:00
Efraim Flashner
317be8c8eb
gnu: universal-ctags: Update to 5.9.20220807.0.
...
* gnu/packages/code.scm (universal-ctags): Update to 5.9.20220807.0.
2022-08-12 05:55:13 +03:00
Efraim Flashner
4230b47c08
gnu: packcc: Update to 1.8.0.
...
* gnu/packages/c.scm (packcc): Update to 1.8.0.
2022-08-12 05:55:07 +03:00
Efraim Flashner
a76cb08d0d
gnu: mutt: Update to 2.2.7.
...
* gnu/packages/mail.scm (mutt): Update to 2.2.7.
2022-08-12 05:15:22 +03:00
Hilton Chain
515288874f
gnu: Add i3-autotiling.
...
* gnu/packages/python-xyz.scm (i3-autotiling): New variable.
Signed-off-by: Hilton Chain <hako@ultrarare.space >
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-06 23:14:42 +02:00
Hilton Chain
86da72fb5b
gnu: Add python-i3ipc.
...
* gnu/packages/python-xyz.scm (python-i3ipc): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-06 23:14:42 +02:00
Hilton Chain
80ac0c0a7e
gnu: Add emacs-vundo.
...
* gnu/packages/emacs-xyz.scm (emacs-vundo): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-06 23:14:42 +02:00
Joeke de Graaf
902fea9136
gnu: Add wavbreaker.
...
* gnu/packages/mp3.scm (wavbreaker): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-06 23:14:41 +02:00
Ludovic Courtès
6e5a1e2a62
doc: Add reference to "Writing Manifests".
...
* doc/guix.texi (Defining Package Variants): Rewrite to "Writing
Manifests" rather than the 'profile-manifest' anchor.
2022-08-06 23:14:41 +02:00
Ludovic Courtès
eab5366e67
disarchive-manifest: Exclude the Chromium tarball.
...
* etc/disarchive-manifest.scm (disarchive-collection): Exclude
"chromium-" tarballs.
2022-08-06 23:14:41 +02:00
Maxime Devos
ad878a2c5e
xdg-utils: Support cross-compilation.
...
It has been verified that this does not cause rebuilds when compiling
natively. The references graph when cross-compiling has also been verified --
glibc-2.33 and the native bash-static-5.1.8 still remains in the graph, but
via the cross-compiled inetutils-2.0, ncurses-6.2.20210619 and via
gcc-cross-TARGET-10.3.0-lib, which is not related with Perl cross-compilation.
* gnu/packages/freedesktop.scm
(xdg-utils)[inputs]{bash-minimal,file}: New inputs when cross-compiling.
(xdg-utils)[arguments]<#:phases>{locate-catalog-files}: Add 'native-inputs'
argument when cross-compiling. Look for docbook-xml and docbook-xsl in
native-inputs when cross-compiling. While we are at it, eliminate input
labels with search-input-file.
(xdg-utils)[arguments]<#:phases>{patch-hardcoded-patch}: Use
search-input-file + inputs instead of 'which' when cross-compiling.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-06 18:23:06 +02:00
Maxime Devos
b914ccc915
perl-file-mimeinfo: Fix cross-compilation.
...
* gnu/packages/freedesktop.scm
(perl-file-mimeinfo)[arguments]<#:phases>: Make it a G-exp to avoid messy nested
quasiquotation.
{wrap-programs}: When cross-compiling, don't use the PELRL5LIB environment
variable, instead use 'search-path-as-list'.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-06 18:21:48 +02:00
Maxime Devos
607f9a9af9
gnu: freedesktop: Add 'bash' input for 'wrap-program'
...
It is required for cross-compilation.
Cherry-picked from <https://issues.guix.gnu.org/49327#6 >.
* gnu/packages/freedesktop.scm
(udisks)[inputs]: Add 'bash-minimal' when cross-compiling.
(perl-file-mimeinfo)[inputs]: Likewise.
(udiskie)[inputs]: Likewise.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-06 18:21:14 +02:00
Maxime Devos
74fbbb1661
build-system/perl: Support cross-compilation of some Perl packages.
...
* guix/build-system/perl.scm: Add info on cross-compilation.
(lower)[private-keywords]: Remove #:target when cross-compiling.
(lower)[target]: Set.
(host-inputs)[perl]: New entry.
(host-inputs)[(standard-packages)]: Move to ...
(build-inputs)[(standard-packages)]: ... here when cross-compiling.
(build-inputs)[standard-cross-packages]: Add when cross-compiling.
(target-inputs): New entry when cross-compiling.
(build): Use perl-cross-build when cross-compiling.
(perl-cross-build): New procedure.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-06 18:21:12 +02:00
Liliana Marie Prikler
ffea1d47cb
gnu: ugrep: Simplify snippet.
...
* gnu/packages/search.scm (ugrep)[source]: Use nested for-each loop.
Simplify regular expressions.
2022-08-06 09:53:09 +02:00
kiasoc5
6665600e23
gnu: ugrep: Use G-Expressions.
...
* gnu/packages/search.scm (ugrep)[source]: Convert snippet to G-Expression.
[arguments]: Convert to list of G-Expressions.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-06 09:31:35 +02:00
kiasoc5
47989e0a5f
gnu: ugrep: Build with zstd support.
...
* gnu/packages/search.scm (ugrep)[inputs]: Add zstd lib.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-06 09:27:00 +02:00
kiasoc5
d457a5ec09
gnu: yt-dlp: Use new package style.
...
* gnu/packages/video.scm (yt-dlp)[source](snippet): Rewrite as a G-Expression.
[arguments]: Use G-Expressions.
[inputs]: Drop labels.
[native-inputs]: Likewise.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-06 09:13:04 +02:00
kiasoc5
7f9b7ed0ff
gnu: yt-dlp: Update to 2022.07.18.
...
* gnu/packages/video.scm (yt-dlp): Update to 2022.07.18.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-06 09:13:00 +02:00
Liliana Marie Prikler
1d543f67e2
gnu: queen: Use new package style.
...
* gnu/packages/games.scm (make-queen-package)[build-system]: Use
copy-build-system.
[arguments]: Convert to list of G-Expressions.
Replace #:modules and #:builder with #:install-plan and #:phases.
2022-08-06 06:45:14 +02:00
Felix Gruber
18007d3a7b
gnu: queen-de: Fix build.
...
The sources for queen-de lack a readme, so check whether one exists prior to
trying to install it. See <https://bugs.gnu.org/56886 >.
* gnu/packages/games.scm (make-queen-package)[#:builder]: Only install
readme.txt if it exists.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-08-06 06:45:13 +02:00
Liliana Marie Prikler
8b6c4edded
gnu: komikku: Update to 0.40.0.
...
* gnu/packages/gnome.scm (komikku): Update to 0.40.0.
2022-08-06 06:45:13 +02:00
Efraim Flashner
f2ed0113e8
.git-authorizations: Authorize Andrew Tropin.
...
* .git-authorizations (abcdw): Add OpenPGP key fingerprint.
2022-08-05 18:37:05 +03:00
Jim Newsome
ed94004740
gnu: rust: Use rust-1.60.0
...
* gnu/packages/rust.scm (rust-1.58, rust-1.59, rust-1.60, rust):
Add rust-1.58, rust-1.59, and rust-1.60, and update rust to
be based on rust-1.60 instead of rust-1.57.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-04 12:54:06 +02:00
Jim Newsome
f9d947a38c
gnu: rust: decouple rust-1.57 and "rust"
...
* gnu/packages/rust.scm (rust-1.57, rust): decouple the definition of
rust-1.57, which happens to be the current latest, from the definition
of rust, which is always the latest. The latter re-enables tests and
extra components, which should always be done only on the final public
rust package, not specifically rust-1.57.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-08-04 12:54:06 +02:00
Tobias Geerinckx-Rice
79fbe4f524
doc: Fix typo.
...
* doc/guix.texi (X Window): Fix ‘string-apppend’ typo.
2022-07-31 02:00:12 +02:00
Tobias Geerinckx-Rice
792e1c2ce1
gnu: libinih: Update to 56.
...
* gnu/packages/linux.scm (libinih): Update to 56.
2022-07-31 02:00:00 +02:00
Tobias Geerinckx-Rice
fe47ae3b79
gnu: frotz: Update to 2.54.
...
This fixes the build.
* gnu/packages/games.scm (frotz): Update to 2.54.
[arguments]: Use G-expressions. Set CC in #:make-flags.
Remove obsolete 'curses phase.
Don't explicitly return #t from phases.
[native-inputs]: Add pkg-config and which.
[inputs]: Add ao.
2022-07-31 02:00:00 +02:00
Nicolas Goaziou
32ac3efa98
gnu: emacs-gruvbox-theme: Update to 1.29.0.
...
* gnu/packages/emacs-xyz.scm (emacs-gruvbox-theme): Update to 1.29.0.
2022-08-06 01:31:51 +02:00
Nicolas Goaziou
5974f0a276
gnu: emacs-taxy: Update to 0.10.
...
* gnu/packages/emacs-xyz.scm (emacs-taxy): Update to 0.10.
2022-08-06 01:30:16 +02:00
Sharlatan Hellseher
6615e82a63
gnu: Add python-pynbody.
...
* gnu/packages/astronomy.scm: (python-pynbody): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-08-05 21:44:11 +03:00
Sharlatan Hellseher
b12da85668
gnu: Add python-posix-ipc.
...
* gnu/packages/python-xyz.scm: (python-posix-ipc): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-08-05 21:08:49 +03:00
Efraim Flashner
4fc41b4a9d
.git-authorizations: Authorize Andrew Tropin.
...
* .git-authorizations (abcdw): Add OpenPGP key fingerprint.
2022-08-05 18:32:45 +03:00
Efraim Flashner
1dc4e1810c
gnu: Remove rust-pico-sys-0.0.
...
* gnu/packages/crates-io.scm (rust-pico-sys-0.0): Remove variable.
2022-08-05 18:21:46 +03:00
Efraim Flashner
6c62a5eeb0
gnu: rust-httparse-1: Update to 1.7.1.
...
* gnu/packages/crates-io.scm (rust-httparse-1): Update to 1.7.1.
[cargo-development-inputs]: Remove rust-pico-sys-0.0. Add
rust-criterion-0.3.
2022-08-05 18:21:46 +03:00
Mathieu Othacehe
0e6e037417
etc: teams: Add entry for Mathieu Othacehe.
...
* etc/teams.scm.in ("Mathieu Othacehe"): New member.
2022-08-05 17:14:59 +02:00
Eric Bavier
791620b61d
etc: teams: Add entry for Eric Bavier.
...
* etc/teams.scm.in ("Eric Bavier"): New member.
(mozilla): Add #:description keyword before description.
2022-08-05 09:48:16 -05:00
Efraim Flashner
ff91ab7689
gnu: urlscan: Update to 0.9.10.
...
* gnu/packages/mail.scm (urlscan): Update to 0.9.10.
2022-08-05 17:38:07 +03:00
Ricardo Wurmus
3b75131be6
gnu: Add r-biomartr.
...
* gnu/packages/bioconductor.scm (r-biomartr): New variable.
2022-08-05 15:43:09 +02:00
Ricardo Wurmus
62e1e3c16e
gnu: Add r-philentropy.
...
* gnu/packages/cran.scm (r-philentropy): New variable.
2022-08-05 15:43:09 +02:00
Ricardo Wurmus
45ace7bc94
gnu: Add r-poorman.
...
* gnu/packages/cran.scm (r-poorman): New variable.
2022-08-05 15:43:09 +02:00
Ludovic Courtès
d11a432adf
guix system: Remove unused 'read-operating-system' procedure.
...
* guix/scripts/system.scm (read-operating-system): Remove.
* gnu/ci.scm: Remove unused (guix scripts system) import.
2022-08-05 15:28:05 +02:00
Ludovic Courtès
12087b1b19
gnu: mumps: Add alternate source code URL.
...
* gnu/packages/maths.scm (mumps)[source]: Add alternate URL.
2022-08-05 15:28:05 +02:00
FELŠÖCI Marek
b70d6ce627
gnu: mumps: Update to 5.5.1
...
* gnu/packages/maths.scm (mumps): Update to 5.5.1. Stop applying patches as the build configuration has been updated upstream. Allow for further optimized BLR compression by specifying the -DBLR_MT build option.
* gnu/packages/patches/mumps-build-parallelism.patch: File removed.
* gnu/packages/patches/mumps-shared-libseq.patch: File removed.
* gnu/packages/patches/mumps-shared-mumps.patch: File removed.
* gnu/packages/patches/mumps-shared-pord.patch: File removed.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:04 +02:00
Philip McGrath
81faecf77c
gnu: Add texlive-sourcecodepro.
...
* gnu/packages/tex.scm (texlive-sourcecodepro): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:04 +02:00
Philip McGrath
f6f7bb51c9
gnu: Add texlive-sourceserifpro.
...
* gnu/packages/tex.scm (texlive-sourceserifpro): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:04 +02:00
Philip McGrath
f7fed0d994
gnu: Add texlive-sourcesanspro.
...
* gnu/packages/tex.scm (texlive-sourcesanspro): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:04 +02:00
Philip McGrath
46148a36c9
gnu: Add texlive-physics.
...
* gnu/packages/tex.scm (texlive-physics): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:04 +02:00
Philip McGrath
54ec9c1415
gnu: Add texlive-datatool.
...
* gnu/packages/tex.scm (texlive-datatool): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:04 +02:00
Philip McGrath
0ae0bb9c49
gnu: Add texlive-comment.
...
* gnu/packages/tex.scm (texlive-comment): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:03 +02:00
Philip McGrath
26410b4759
gnu: Add texlive-breqn.
...
* gnu/packages/tex.scm (texlive-breqn): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:03 +02:00
Philip McGrath
7279801cff
gnu: Add texlive-abstract.
...
* gnu/packages/tex.scm (texlive-abstract): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:03 +02:00
tiantian
1a1c4e4885
gnu: gnome-shell-extension-appindicator: Update to 42.
...
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator): Update to 42.
[build-system]: Switch to meson-build-system.
[arguments]: Delete.
[native-inputs]: New field.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:03 +02:00
Vivien Kraus
e167044fad
gnu: openssl: Keep .dll.a files in main output.
...
* gnu/packages/tls.scm (openssl) [phase move-static-libraries]: Do not move
.dll.a files to the static output when targetting mingw.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:03 +02:00
Andrew Tropin
4337e8466e
tests: Make tests inside container reproducible.
...
* tests/guix-home.sh: Make tests inside container reproducible.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:03 +02:00
Andrew Tropin
3b1510b8b9
home: Use warning instead of display.
...
* gnu/home/services/xdg.scm (compute-on-first-login-script): Use warning
instead of display.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:03 +02:00
Andrew Tropin
b57c656f72
home: xdg: Skip mkdir XDG_RUNTIME_DIR in activation script.
...
* gnu/home/services/xdg.scm (ensure-xdg-base-dirs-on-activation): Skip mkdir
XDG_RUNTIME_DIR in activation script.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:02 +02:00
Andrew Tropin
a80edc0d82
home: xdg: Use a single @ instead of @@.
...
* gnu/home/services/xdg.scm (ensure-xdg-base-dirs-on-activation,
home-xdg-user-directories-files-service): Use single @ intsead of @@.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 15:28:02 +02:00
Ludovic Courtès
6d4a0ccecb
disarchive-manifest: Filter out origins without a hash.
...
* etc/disarchive-manifest.scm (disarchive-collection): Filter out
origins with a phony hash.
2022-08-05 15:28:02 +02:00
Olivier Dion
bd956bc57b
gnu: Add perf-tools.
...
* gnu/packages/instrumentation.scm (perf-tools): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-05 14:34:51 +02:00
Felix Gruber
644646beab
gnu: veusz: Fix build.
...
* gnu/packages/maths.scm (veusz)[arguments] Fix lookup of qtsvg path
in wrap-executable phase.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org >
2022-08-05 14:26:32 +02:00
Mathieu Othacehe
cc4c02e346
gnu: guile-parted: Use the latest parted.
...
The Parted 3.5 regression discussed here: https://issues.guix.gnu.org/55549
has been fixed with 3c381af76a .
* gnu/packages/guile-xyz.scm (guile-parted)[inputs]: Use the latest parted
package.
2022-08-05 08:57:24 +02:00
Mathieu Othacehe
3c381af76a
installer: parted: Call set-system before set-flags.
...
Parted 3.5 introduces the following regression:
- partition-set-flag sets the BIOS_GRUB flag. The partition type is set to
PARTITION_BIOS_GRUB_GUID.
- partition-set-system resets the partition type to PARTITION_LINUX_DATA_GUID
undoing what's done by partition-set-flag.
To prevent it, reverse the call order.
Fixes: <https://issues.guix.gnu.org/55549 >.
* gnu/installer/parted.scm (mkpart): Call partition-set-system before
partition-set-flag.
2022-08-05 08:57:20 +02:00
Mathieu Othacehe
eb0277e7e3
installer: parted: Log partition flags.
...
* gnu/installer/parted.scm (mkpart): Log them.
2022-08-05 08:57:20 +02:00
Antero Mejr
8956fba989
gnu: Add svkbd.
...
* gnu/packages/suckless.scm (svkbd): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-05 11:34:30 +08:00
kiasoc5
f182be3650
gnu: ugrep: Update to 3.8.3.
...
* gnu/packages/search.scm (ugrep): Update to 3.8.3.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-05 10:49:49 +08:00
宋文武
a8d24e97dc
gnu: xfce: Replace 'gtk-xfce-engine' with 'greybird-gtk-theme'.
...
Suggested in <https://issues.guix.gnu.org/54719 >.
* gnu/packages/xfce.scm (xfce)[inputs]:
Replace 'gtk-xfce-engine' with 'greybird-gtk-theme'.
2022-08-05 10:23:27 +08:00
Efraim Flashner
116c0268ff
gnu: grub-efi32: Fix building on aarch64-linux.
...
* gnu/packages/bootloaders.scm (grub-efi32)[arguments]: When building
for aarch64-linux add TARGET_CC to configure-flags.
[native-inputs]: When building for aarch64-linux add cross-gcc and
cross-binutils for arm-linux-gnueabihf.
2022-08-05 02:52:58 +03:00
Vivien Kraus
a5a88b0248
gnu: openssl: Use 'target-*' predicates from (guix utils).
...
* gnu/packages/tls.scm (target->openssl-target): Rewrite in terms of the
'target-*' predicates.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 00:14:30 +02:00
Vivien Kraus
94e0fb1eb7
utils: Add target-mips64el?.
...
* guix/utils.scm (target-mips64el?): New function. It detects whether the
target system is mips64el.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 00:14:30 +02:00
Vivien Kraus
334e953c93
gnu: openssl: Cross-compile to mingw.
...
* gnu/packages/tls.scm (target->openssl-target): Add cases for mingw and
mingw64.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 00:14:30 +02:00
Petr Hodina
e2397e66e6
gnu: Add lkrg.
...
* gnu/packages/linux.scm (lkrg): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 00:14:30 +02:00
Ludovic Courtès
b7bbb77c9d
gnu: lightdm: Add bash-minimal as an input.
...
Suggested by 'guix lint'.
* gnu/packages/display-managers.scm (lightdm)[inputs]: Add
BASH-MINIMAL. Replace COREUTILS by COREUTILS-MINIMAL.
2022-08-05 00:14:30 +02:00
Zhu Zihao
e9f10f1d3b
gnu: emacs-next: Enable SQLite3 support.
...
[[PGP Signed Part:No public key for 66397F84F76693F9 created at 2022-07-20T06:08:56+0200 using EDDSA]]
[[End of PGP Signed Part]]
>From 068de10c98b5d29adb13963222a1ca21ef7b0a76 Mon Sep 17 00:00:00 2001
From: Zhu Zihao <all_but_last@163.com >
Date: Wed, 20 Jul 2022 12:07:09 +0800
Subject: [PATCH] gnu: emacs-next: Enable SQLite3 support.
* gnu/packages/emacs.scm (emacs-next)[inputs]: Add sqlite.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 00:14:29 +02:00
Ludovic Courtès
2acffd56a5
disarchive-manifest: Handle tar.xz archives.
...
* etc/disarchive-manifest.scm (tarball-origin?): Add ".tar.xz".
2022-08-05 00:14:29 +02:00
Antero Mejr
68edaf467f
utils: Add as-for-target.
...
* guix/utils.scm (as-for-target): New function.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-05 00:14:29 +02:00
Ludovic Courtès
f9a267c6d2
doc: Fix Guix manual URLs in 'htmlxref.cnf'.
...
Fixes a regression introduced in
868da34d54 .
* doc/htmlxref.cnf (GUIX): Remove "/guix".
2022-08-05 00:14:29 +02:00
Leo Famulari
6048c05592
gnu: linux-libre 4.9: Update to 4.9.325.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.325.
(linux-libre-4.9-pristine-source): Update hash.
2022-08-04 15:37:44 -04:00
Leo Famulari
168e58fb41
gnu: linux-libre 4.14: Update to 4.14.290.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.290.
(linux-libre-4.14-pristine-source): Update hash.
2022-08-04 15:37:44 -04:00
Leo Famulari
f0866ba4de
gnu: linux-libre 4.19: Update to 4.19.254.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.254.
(linux-libre-4.19-pristine-source): Update hash.
2022-08-04 15:37:44 -04:00
Leo Famulari
5874779d80
gnu: linux-libre 5.4: Update to 5.4.209.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.209.
(linux-libre-5.4-pristine-source): Update hash.
2022-08-04 15:37:44 -04:00
Leo Famulari
c4a2a84434
gnu: linux-libre 5.10: Update to 5.10.135.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.135.
(linux-libre-5.10-pristine-source): Update hash.
2022-08-04 15:37:44 -04:00
Leo Famulari
b4af9220d0
gnu: linux-libre 5.15: Update to 5.15.59.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.59.
(linux-libre-5.15-pristine-source): Update hash.
2022-08-04 15:37:44 -04:00
Leo Famulari
f8b200db81
gnu: linux-libre: Update to 5.18.16.
...
* gnu/packages/linux.scm (linux-libre-5.18-version): Update to 5.18.16.
(linux-libre-5.18-pristine-source): Update hash.
2022-08-04 15:37:40 -04:00
jgart via Guix-patches via
94776d73d8
gnu: python-pudb: Update to 2022.1.2.
...
* gnu/packages/python-xyz.scm (python-pudb): Update to 2022.1.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-08-04 21:39:44 +03:00
Maxim Cournoyer
a956c7df87
build: qt-utils: Fix another regression.
...
This fixes another regression introduced with
1f466ed6be , which affected the packages bitmask,
hime, hime, nimf and vorta.
The fix is to provide a default qt-major-version when #:qtbase is missing,
such as when borrowing the qt-wrap phase in a package not using the Qt build
system.
* guix/build/qt-utils.scm (wrap-all-qt-programs)[qt-major-version]: Fall-back
to %default-qt-major-version when #:qtbase is #f.
Reported-by: John Kehayias <john.kehayias@protonmail.com > and others.
2022-08-04 12:06:17 -04:00
Nicolas Goaziou
e920ba0b1d
gnu: emacs-helm: Update to 3.8.7.
...
* gnu/packages/emacs-xyz.scm (emacs-helm): Update to 3.8.7.
2022-08-04 13:51:49 +02:00
Marius Bakke
243bcbb8a2
gnu: notcurses: Adjust indentation.
...
* gnu/packages/notcurses.scm (notcurses): Re-indent.
2022-08-04 12:30:13 +02:00
Marius Bakke
d0f25610d9
gnu: notcurses: Use tarball source instead of git.
...
* gnu/packages/notcurses.scm (notcurses)[source]: Use URL-FETCH.
2022-08-04 12:30:13 +02:00
Marius Bakke
5d7cb47d5f
gnu: notcurses: Update to 3.0.8.
...
* gnu/packages/notcurses.scm (notcurses): Update to 3.0.8.
[arguments]: Fix configure flag typo.
2022-08-04 12:30:13 +02:00
Marius Bakke
ca6f15310d
gnu: nheko: Update to 0.10.0.
...
* gnu/packages/messaging.scm (nheko): Update to 0.10.0.
[arguments]: Adjust unbundling substitutions.
2022-08-04 12:30:13 +02:00
Marius Bakke
9dab4ff770
gnu: mtxclient: Update to 0.8.0.
...
* gnu/packages/messaging.scm (mtxclient): Update to 0.8.0.
2022-08-04 12:30:13 +02:00
Marius Bakke
30ac2d1c40
gnu: libolm: Update to 3.2.12.
...
* gnu/packages/crypto.scm (libolm): Update to 3.2.12.
[source](uri): Follow redirect.
2022-08-04 12:30:13 +02:00
Marius Bakke
d01310f24b
gnu: ungoogled-chromium: Update to 104.0.5112.81-1.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 104.0.5112.81.
(%ungoogled-origin): Update hash.
(ungoogled-chromium)[source](sha256): Likewise.
[arguments]: Add snippet to fix build with system MINIZIP. Remove obsolete
configure flag.
2022-08-04 12:30:13 +02:00
Marius Bakke
1892f5539e
gnu: inkscape: Build with lib2geom 1.2.
...
* gnu/packages/graphics.scm (lib2geom-1.2): New variable.
* gnu/packages/inkscape.scm (inkscape)[arguments]: Enable previously failing
test.
[inputs]: Replace "lib2geom" with LIB2GEOM-1.2.
2022-08-04 12:30:13 +02:00
Marius Bakke
20d1e2ffb0
gnu: inkscape: Update to 1.2.1.
...
* gnu/packages/inkscape.scm (inkscape): Update to 1.2.1.
2022-08-04 12:30:12 +02:00
Marius Bakke
aec302e03a
gnu: amalgamate: Remove input labels.
...
* gnu/packages/code.scm (amalgamate)[inputs]: Remove label.
2022-08-04 12:30:12 +02:00
Marius Bakke
a5933dc071
gnu: gsasl: Update to 2.0.1.
...
* gnu/packages/gsasl.scm (gsasl): Update to 2.0.1.
2022-08-04 12:30:12 +02:00
Sharlatan Hellseher
3bd2b1b544
gnu: Add python-h5netcdf.
...
* gnu/packages/python-xyz.scm: (python-h5netcdf): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:53 +02:00
Sharlatan Hellseher
58d196866a
gnu: python-netcdf4: Update to 1.6.0
...
* gnu/packages/python-xyz.scm: (python-netcdf4): Update to 1.6.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:53 +02:00
Philip McGrath
c90c1698e1
gnu: anystyle: Use GDBM by default.
...
Since we have GDBM available, it offers a smaller memory footprint
and faster start-up.
* gnu/packages/ruby.scm (anystyle)[arguments]<#:phases>: Add phase
'change-default-dictionary-adapter'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:52 +02:00
Philip McGrath
9c124671ce
gnu: anystyle: Add tests for dictionary adapters.
...
* gnu/packages/ruby.scm (anystyle)[arguments]: Instead of deleting the
'check' phase, replace it with a few tests. Add SRFI 1 to '#:modules'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:52 +02:00
Philip McGrath
14a50b62d4
gnu: ruby-anystyle: Initialize dictionary files.
...
For the GDBM and Marshal dictionary adapters to be useful with their
default settings, we must initialize their data files during the package
build: upstream would initialize them lazily, but that doesn't work with
an immutable installation directory (at least, not without more complex
patches). Otherwise, we would always end up rebuilding the dictionary at
startup, which is “slow” and “not recommended”.
* gnu/packages/patches/ruby-anystyle-fix-dictionary-populate.patch: New
patch.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/ruby.scm (ruby-anystyle)[patches]: Use it.
[arguments]<#:phases>: Add 'populate-dictionaries' phase.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:52 +02:00
Philip McGrath
bc2de56572
gnu: ruby-anystyle-data: Don't write to installed gem.
...
* gnu/packages/patches/ruby-anystyle-data-immutable-install.patch: New
patch.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/ruby.scm (ruby-anystyle-data)[patches]: Use it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:52 +02:00
Philip McGrath
3ee5460b63
gnu: Add anystyle.
...
* gnu/packages/ruby.scm (anystyle): New variable.
(ruby-anystyle)[description]: Mention it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:52 +02:00
Philip McGrath
3b017b9400
gnu: Add ruby-anystyle.
...
* gnu/packages/ruby.scm (ruby-anystyle): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:52 +02:00
Philip McGrath
8d4670f4d1
gnu: Add ruby-anystyle-data.
...
* gnu/packages/ruby.scm (ruby-anystyle-data): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:51 +02:00
Philip McGrath
fc1f561432
gnu: Add ruby-gli.
...
* gnu/packages/ruby.scm (ruby-gli): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:51 +02:00
Philip McGrath
e708f7f8b0
gnu: Add ruby-edtf.
...
* gnu/packages/ruby.scm (ruby-edtf): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:51 +02:00
Philip McGrath
cb585754f3
gnu: Add ruby-citeproc.
...
* gnu/packages/ruby.scm (ruby-citeproc): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:51 +02:00
Philip McGrath
5f7db95215
gnu: Add ruby-unicode-scripts.
...
* gnu/packages/ruby.scm (ruby-unicode-scripts): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:51 +02:00
Philip McGrath
07dcbc767a
gnu: Add ruby-bibtex-ruby.
...
* gnu/packages/ruby.scm (ruby-bibtex-ruby): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:51 +02:00
Philip McGrath
e833536026
gnu: Add ruby-rdf-vocab.
...
* gnu/packages/ruby.scm (ruby-rdf-vocab): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:50 +02:00
Philip McGrath
033b2e6162
gnu: Add ruby-rdf.
...
* gnu/packages/ruby.scm (ruby-rdf): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:50 +02:00
Philip McGrath
5e27bcf358
gnu: Add ruby-link-header.
...
* gnu/packages/ruby.scm (ruby-link-header): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:50 +02:00
Philip McGrath
cc5b8cb3c0
gnu: Add ruby-latex-decode.
...
* gnu/packages/patches/ruby-latex-decode-fix-test.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/ruby.scm (ruby-latex-decode): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:50 +02:00
Philip McGrath
7ffea0822a
gnu: Add ruby-ritex.
...
* gnu/packages/ruby.scm (ruby-ritex): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:50 +02:00
Philip McGrath
86c0bc5d48
gnu: Add itex2mml.
...
* gnu/packages/maths.scm (itex2mml): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:50 +02:00
Philip McGrath
ea4bb1bde6
gnu: Add ruby-namae.
...
* gnu/packages/ruby.scm (ruby-namae): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:50 +02:00
Philip McGrath
6dcc652d75
gnu: Add ruby-wapiti.
...
* gnu/packages/ruby.scm (ruby-wapiti): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:49 +02:00
Greg Hogan
c3c65ad1f9
gnu: make-clang-toolchain: Require explicit libomp.
...
* gnu/packages/llvm.scm (make-clang-toolchain): Remove default libomp
parameter since each clang-toolchain has a matching libomp package.
(clang-toolchain-13): Explicitly refer to libomp-13.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:49 +02:00
Greg Hogan
7172537718
gnu: clang-toolchain-6: Use libomp-6.
...
* gnu/packages/llvm.scm (clang-toolchain-6): Switch dependency from the
default libomp-13 to libomp-6.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:49 +02:00
Greg Hogan
d8ab469e95
gnu: Add libomp-6.
...
* gnu/packages/llvm.scm (libomp-6): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:49 +02:00
Greg Hogan
d711e3922f
gnu: clang-toolchain-7: Use libomp-7.
...
* gnu/packages/llvm.scm (clang-toolchain-7): Switch dependency from the
default libomp-13 to libomp-7.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:49 +02:00
Greg Hogan
93c71314d3
gnu: Add libomp-7.
...
* gnu/packages/llvm.scm (libomp-7): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:49 +02:00
Greg Hogan
79e9139478
gnu: clang-toolchain-8: Use libomp-8.
...
* gnu/packages/llvm.scm (clang-toolchain-8): Switch dependency from the
default libomp-13 to libomp-8.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:48 +02:00
Greg Hogan
fe4683b2cf
gnu: Add libomp-8.
...
* gnu/packages/llvm.scm (libomp-8): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:48 +02:00
Greg Hogan
cd5557e818
gnu: clang-toolchain-9: Use libomp-9.
...
* gnu/packages/llvm.scm (clang-toolchain-9): Switch dependency from the
default libomp-13 to libomp-9.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:48 +02:00
Greg Hogan
16d6a618fa
gnu: Add libomp-9.
...
* gnu/packages/llvm.scm (libomp-9): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:48 +02:00
Greg Hogan
a72bebf8f5
gnu: clang-toolchain-10: Use libomp-10.
...
* gnu/packages/llvm.scm (clang-toolchain-10): Switch dependency from the
default libomp-13 to libomp-10.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:48 +02:00
Greg Hogan
09d9b1ddae
gnu: Add libomp-10.
...
* gnu/packages/llvm.scm (libomp-10): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:48 +02:00
Greg Hogan
ae8de60351
gnu: clang-toolchain-11: Use libomp-11.
...
* gnu/packages/llvm.scm (clang-toolchain-11): Switch dependency from the
default libomp-13 to libomp-11.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:48 +02:00
Greg Hogan
fdd5bf9fb7
gnu: Add libomp-11.
...
* gnu/packages/llvm.scm (libomp-11): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:47 +02:00
Greg Hogan
07e1b5a32a
gnu: clang-toolchain-12: Use libomp-12.
...
* gnu/packages/llvm.scm (clang-toolchain-12): Switch dependency from the
default libomp-13 to libomp-12.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:47 +02:00
Greg Hogan
68dfb535d3
gnu: Add libomp-12.
...
* gnu/packages/llvm.scm (libomp-12): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:47 +02:00
Greg Hogan
a46a980abe
gnu: libomp-13: Reference llvm-13 version string.
...
* gnu/packages/llvm.scm (libomp-13): Reference llvm-13 version string.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:47 +02:00
Greg Hogan
95139f9cc4
gnu: libomp-14: Reference llvm-14 version string.
...
* gnu/packages/llvm.scm (libomp-14): Reference llvm-14 version string.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:47 +02:00
Sharlatan Hellseher
cdff1423c0
gnu: Add aoflagger.
...
* gnu/packages/astronomy.scm (aoflagger): New variable.
* gnu/packages/patches/aoflagger-use-system-provided-pybind11.patch:
New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:47 +02:00
Sharlatan Hellseher
4ccd4176a2
gnu: Add aocommon.
...
* gnu/packages/astronomy.scm (aocommon): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:47 +02:00
Timotej Lazar
23cc276aaa
gnu: Add barony.
...
* gnu/packages/games.scm (barony): New variable.
* gnu/packages/patches/barony-fix-textures.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:46 +02:00
Ludovic Courtès
ae1f120181
environment: Report "command not found" from the child process.
...
Fixes a bug whereby, for example:
guix shell bash -- bash -c xyz
would erroneously print:
guix shell: error: bash: command not found
simply because the parent process could not distinguish that 127 from a
"genuine" 127 used by convention for "command not found".
* guix/scripts/environment.scm (launch-environment): Before exiting,
report a "command not found" error and suggest a command name.
(validate-exit-status): Remove.
(launch-environment/fork): Remove call
(launch-environment/container)[exit/status*]: Remove.
Call 'exit/status' instead of it.
2022-08-04 12:05:46 +02:00
Tanguy Le Carrour
18e0098817
gnu: python-args: Patch reference to basestring.
...
Hi Maxime,
I **totally** forgot about this one! Seems like no one is using it.
`python2-args` also builds. But no package seems to depend on it anyway.
Regards,
Tanguy
* gnu/packages/python-xyz.scm (python-args)[source]: Use the latest version
from the git repository to get the test suite.
[home-page]: Update URL.
[native-inputs]: Add python-nose.
[arguments]: Replace reference to basestring with str. Invoke nosetests.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-04 12:05:46 +02:00
Ludovic Courtès
f44c135608
guix build: Print hints when -s or --target is passed an invalid string.
...
* guix/scripts/build.scm (%standard-cross-build-options)
(%standard-native-build-options): Print hints when the target/system is
not found.
2022-08-04 12:05:46 +02:00
Guillaume Le Vaillant
933d3cf7f7
gnu: python-shapely: Update to 1.8.2.
...
* gnu/packages/python-xyz.scm (python-shapely): Update to 1.8.2.
[source]: Remove snippet.
2022-08-04 11:38:43 +02:00
kiasoc5
d921cf8d27
gnu: sshfs: Update to 3.7.3.
...
* gnu/packages/linux.scm (sshfs): Update to 3.7.3.
[build-system]: Replace gnu-build-system with meson-build-system.
[native-inputs]: Add dependencies to generate man page.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-04 15:10:02 +08:00
muradm
b8b8df9122
gnu: mako: Update to 1.7.1.
...
* gnu/packages/wm.scm (mako): Update to 1.7.1.
[inputs]: Replace elogind with basu.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-04 14:55:41 +08:00
Greg Hogan
a44a762a51
gnu: gperftools: Update to 2.10.
...
* gnu/packages/cpp.scm (gperftools): Update to 2.10.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-04 14:41:44 +08:00
Greg Hogan
06cd4a84f7
gnu: lldb: Update to 14.0.6.
...
* gnu/packages/llvm.scm (lldb): Update to 14.0.6.
[source]: Fetch using LLVM-MONOREPO.
[phases]: Add phase to change to source subdirectory.
[inputs]: Change from LLVM-13 and CLANG-13 to LLVM-14 and CLANG-14.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-04 14:24:33 +08:00
宋文武
f3d33ba9f7
gnu: workrave: Update to 1.10.50.
...
* gnu/packages/gnome.scm (workrave): Update to 1.10.50.
2022-08-04 10:51:55 +08:00
Wamm K. D
34c0cb5d63
gnu: tint2: Update to 17.0.2.
...
* gnu/packages/xdisorg.scm (tint2): Update to 17.0.2.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-04 10:15:13 +08:00
L p R n d n
525688e9f3
gnu: lightdm-gtk-greeter: Set XCURSOR_PATH in wrapper.
...
* gnu/packages/display-managers.scm (lightdm-gtk-greeter)
[phases]{wrap-program}: Set XCURSOR_PATH to the current system share/icons.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-08-03 22:02:03 -04:00
L p R n d n
af2d160c01
gnu: lightdm-gtk-greeter: Disable indicator services.
...
* gnu/packages/display-managers.scm (lightdm-gtk-greeter)
[configure-flags]: Add '--disable-indicator-services-command'.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-08-03 22:02:03 -04:00
Maxim Cournoyer
90b705ea44
gnu: lightdm-gtk-greeter: Use gexps and new style inputs.
...
* gnu/packages/display-managers.scm
(lightdm-gtk-greeter)[arguments]: Use gexps.
[configure-flags]: Use search-input-file.
[phases]{fix-.desktop-file}: Likewise.
{wrap-program}: Use search-input-file and this-package-input.
[inputs]: Use new style. Add glib.
2022-08-03 22:02:03 -04:00
Maxim Cournoyer
a8f53d544b
gnu: lightdm: Update to 1.32.0.
...
* gnu/packages/display-managers.scm (lightdm): Update to 1.32.0.
2022-08-03 21:51:16 -04:00
Maxim Cournoyer
e1375a9b64
gnu: lightdm: Enable XDMCP support.
...
* gnu/packages/display-managers.scm (lightdm)[inputs]: Add libxdmcp.
2022-08-03 21:51:15 -04:00
L p R n d n
6aeabba2ba
gnu: lightdm: Build AccountsService files.
...
* gnu/packages/display-managers.scm (lightdm)
[native-inputs]: Add accountsservice.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-08-03 21:51:15 -04:00
Maxim Cournoyer
adbdd07e45
gnu: lightdm: Install documentation.
...
* gnu/packages/display-managers.scm (lightdm)
[configure-flags]: Add --enable-gtk-doc.
2022-08-03 21:51:15 -04:00
Pavel Shlyak
dbbb1dcd65
gnu: Add feathernotes.
...
* gnu/packages/task-management.scm (feathernotes): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-04 09:21:41 +08:00
Guillaume Le Vaillant
47a38d0969
gnu: bitcoin-unlimited: Fix build.
...
* gnu/packages/finance.scm (bitcoin-unlimited)[arguments]: Fix reference to
qttools in 'configure-flags'.
2022-08-03 22:26:58 +02:00
Guillaume Le Vaillant
18c5f00267
gnu: bitcoin-core: Fix build.
...
* gnu/packages/finance.scm (bitcoin-core)[arguments]: Fix reference to qttools
in 'configure-flags'.
2022-08-03 22:22:57 +02:00
Efraim Flashner
4d41dad4ba
gnu: nim: Enable parallel building.
...
* gnu/packages/nim.scm (nim)[arguments]: Adjust custom 'build phase to
add parallel flag.
[native-inputs]: Add parallel.
2022-08-03 20:01:25 +03:00
Efraim Flashner
6bc9c73f72
gnu: nim: Patch dynamically loaded libraries.
...
* gnu/packages/nim.scm (nim)[arguments]: Add custom
'patch-dynamic-libraries phase to patch some dynamically loaded
libraries.
[inputs]: Add libgc, openssl, pcre and sqlite.
2022-08-03 20:01:24 +03:00
Efraim Flashner
68b6eaf1d9
gnu: nim: Prepare for running tests.
...
* gnu/packages/nim.scm (nim)[arguments]: Replace default 'check phase.
[native-inputs]: Add nss-certs.
2022-08-03 20:01:24 +03:00
Efraim Flashner
d50f8b7ddc
gnu: nim: Install shell completions.
...
* gnu/packages/nim.scm (nim)[arguments]: Add custom 'install-completions
phase to install shell completion scripts.
2022-08-03 20:01:23 +03:00
Trevor Richards
85e2a79a3e
gnu: nim: Build and install nimble.
...
* gnu/packages/nim.scm (nim)[arguments]: Adjust custom 'patch-installer,
'patch-more-shebangs, 'build and 'install phases to build and install
nimble and associated helper binaries.
Co-authored-by: Efraim Flashner <efraim@flashner.co.il >
2022-08-03 20:01:23 +03:00
Guillaume Le Vaillant
0aa98e0646
gnu: python-pyside-2: Fix build.
...
* gnu/packages/qt.scm (python-pyside-2)[arguments]: Use the correct names for
Qt inputs in the 'fix-qt-module-detection' phase.
2022-08-03 18:36:04 +02:00
Nicolas Goaziou
78d417b857
gnu: lagrange: Update to 1.13.7.
...
* gnu/packages/web-browsers.scm (lagrange): Update to 1.13.7.
2022-08-03 18:35:08 +02:00
Nicolas Goaziou
bea272b0ba
gnu: naev: Update to 0.9.4.
...
* gnu/packages/games.scm (naev): Update to 0.9.4.
2022-08-03 18:32:21 +02:00
Nicolas Goaziou
8fa40bf0ed
gnu: emacs-elfeed-protocol: Update to 0.8.1.
...
* gnu/packages/emacs-xyz.scm (emacs-elfeed-protocol): Update to 0.8.1.
2022-08-03 18:13:16 +02:00
Nicolas Goaziou
b5d81028c0
gnu: emacs-modus-themes: Update to 2.5.0.
...
* gnu/packages/emacs-xyz.scm (emacs-modus-themes): Update to 2.5.0.
2022-08-03 18:11:38 +02:00
Ludovic Courtès
dd573ceea7
download: Do not wrap TLS port on GnuTLS >= 3.7.7.
...
The custom input/output port wrapping the TLS session record port would
introduce overhead, and it would also prevent its uses in a non-blocking
context--e.g., with Fibers. The port close mechanism added in GnuTLS
3.7.7 allows us to get rid of that wrapper.
* guix/build/download.scm (wrap-record-port-for-gnutls<3.7.7): New
procedure, with code formerly in 'tls-wrap'.
(tls-wrap): Check for 'set-session-record-port-close!' and use it when
available; otherwise call 'wrap-record-port-for-gnutls<3.7.7'.
2022-08-03 17:43:29 +02:00
Greg Hogan
2eb2501d66
gnu: Add gdb-12.
...
* gnu/packages/gdb.scm (gdb-12): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:29 +02:00
Philip McGrath
bce64b4180
gnu: libunwind: Fix license.
...
The license of libunwind is Expat, not X11:
see <https://github.com/libunwind/libunwind/issues/372 >.
* gnu/packages/libunwind.scm (libunwind)[license]: Fix it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:28 +02:00
Kaelyn Takata
5c585a7ff1
gnu: mingw-w64-tools: Update to 10.0.0.
...
* gnu/packages/mingw.scm (mingw-w64-tools): Update to 10.0.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:28 +02:00
Kaelyn Takata
5791736e5e
gnu: mingw: Update to 10.0.0.
...
* gnu/packages/mingw.scm (mingw): Update to 10.0.0.
[arguments] Disable parallel building to avoid failures trying to access empty
.a files.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:28 +02:00
Fabio Natali
b3f1666dd6
gnu: Add texlive-everyshi.
...
* gnu/packages/tex.scm (texlive-everyshi): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:28 +02:00
Fabio Natali
212f8e4bbc
gnu: Add texlive-everysel.
...
* gnu/packages/tex.scm (texlive-everysel): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:28 +02:00
Fabio Natali
aceb696cb0
gnu: Add texlive-ragged2e.
...
* gnu/packages/tex.scm (texlive-ragged2e): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:28 +02:00
Fabio Natali
734805d15d
gnu: Add texlive-ltablex.
...
* gnu/packages/tex.scm (texlive-ltablex): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:28 +02:00
Fabio Natali
69d2ca4035
gnu: Add texlive-tracklang.
...
* gnu/packages/tex.scm (texlive-tracklang): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:27 +02:00
Fabio Natali
1730148f7c
gnu: Add texlive-datetime2.
...
* gnu/packages/tex.scm (texlive-datetime2): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:27 +02:00
Fabio Natali
79faefb8af
gnu: Add texlive-pdflscape.
...
* gnu/packages/tex.scm (texlive-pdflscape): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:27 +02:00
Fabio Natali
96e50a219d
gnu: Add texlive-pgfgantt.
...
* gnu/packages/tex.scm (texlive-pgfgantt): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:27 +02:00
Fabio Natali
772db83faa
gnu: Add texlive-setspace.
...
* gnu/packages/tex.scm (texlive-setspace): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:27 +02:00
Fabio Natali
6815bdb95c
gnu: Add texlive-mdframed.
...
* gnu/packages/tex.scm (texlive-mdframed): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 17:43:26 +02:00
Ludovic Courtès
e8ed95ddf8
gnu: xscreensaver: Don't read /proc/interrupts at configure time.
...
Fixes a bug whereby, on some machines, ./configure would fail with:
Warning: Checking of /proc/interrupts was requested, but it's bogus.
* gnu/packages/xdisorg.scm (xscreensaver)[arguments]: Pass
'--without-proc-interrupts'.
2022-08-03 17:43:26 +02:00
Ludovic Courtès
f2d86db81d
gnu: xscreensaver: Remove custom 'configure' phase.
...
This is a followup to 45456595ac , which
was based on an incorrect diagnosis.
* gnu/packages/xdisorg.scm (xscreensaver)[source]: Add 'snippet'.
[arguments]: Remove custom 'configure' phase. Reintroduce #:configure-flags.
2022-08-03 17:43:26 +02:00
Guillaume Le Vaillant
18f1befba3
gnu: ecl-legion: Disable tests.
...
* gnu/packages/lisp-xyz.scm (ecl-legion)[parameters]: Disable tests.
2022-08-03 16:45:54 +02:00
Guillaume Le Vaillant
45c257379f
gnu: sbcl-glop: Remove obsolete test-asd-file parameter.
...
* gnu/packages/lisp-xyz.scp (sbcl-glop)[arguments]: Remove 'test-asd-file'
parameter.
2022-08-03 16:45:54 +02:00
Guillaume Le Vaillant
c2a747a60d
gnu: sbcl-stumpwm-kbd-layouts: Fix build.
...
* gnu/packages/wm.scm (sbcl-stumpwm-kbd-layouts)[arguments]: Set
'asd-operation' parameter to "compile-system".
2022-08-03 16:45:54 +02:00
Guillaume Le Vaillant
c232375340
build-system: asdf: Add asd-operation parameter.
...
The 'asd-operation' parameter can be used to specify the ASDF operation to use
in the build phase. It's default value is "load-system".
* guix/build-system/asdf.scm (package-with-build-system, asdf-build): Add
'asd-operation' parameter.
* guix/build/asdf-buid-system.scm (build): Add 'asd-operation' parameter and
use it.
* guix/build/lisp-utils.scm (compile-systems): Add 'asd-operation' parameter
and use it.
2022-08-03 16:45:54 +02:00
Pierre Neidhardt
369377a0fb
gnu: sbcl-jzon: Enable tests.
...
* gnu/packages/lisp-xyz.scm (sbcl-jzon)[arguments]: Move test system
to #:asd-test-systems. Add phase to fix test .asd to actually run the tests.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:54 +02:00
Pierre Neidhardt
81fe659aad
gnu: sbcl-cl-online-learning: Remove unnecessary arguments.
...
The updated build system is now able to find the system on its own.
* gnu/packages/lisp-xyz.scm (sbcl-cl-online-learning)[arguments]: Do it.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:54 +02:00
Pierre Neidhardt
b6355dc2c4
gnu: sbcl-quantile-estimator: Enable tests.
...
* gnu/packages/lisp-xyz.scm (sbcl-quantile-estimator)[arguments]: Do it.
[native-inputs]: Add sbcl-mw-equiv, sbcl-prove, sbcl-log4cl.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:54 +02:00
Pierre Neidhardt
bcb3335716
gnu: Add cl-mw-equiv.
...
* gnu/packages/lisp-xyz.scm (cl-mw-equiv, ecl-mw-equiv, sbcl-mw-equiv): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:54 +02:00
Pierre Neidhardt
c1b4608ac5
gnu: sbcl-hdf5-cffi: Enable tests.
...
* gnu/packages/lisp-xyz.scm (sbcl-hdf5-cffi)[arguments]: Do it.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:54 +02:00
Pierre Neidhardt
440372efcd
gnu: sbcl-vas-string-metrics: Re-enable tests.
...
* gnu/packages/lisp-xyz.scm (sbcl-vas-string-metrics)[arguments]: Specify the
name of the test system and fix the .asd file to actually do something.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:54 +02:00
Pierre Neidhardt
95010a1226
gnu: sbcl-cl-heap: Re-enable tests.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-heap)[arguments]: Specify the name
of the test system.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:54 +02:00
Pierre Neidhardt
664be491a4
gnu: sbcl-lisp-namespace: Enable tests.
...
* gnu/packages/lisp-xyz.scm (sbcl-lisp-namespace)[arguments]: Enable tests.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:54 +02:00
Pierre Neidhardt
64030b3978
gnu: sbcl-spatial-trees: Build spatial-trees.nss and fix tests.
...
* gnu/packages/lisp-xyz.scm (sbcl-spatial-trees)[arguments]: Do it.
[inputs] Add sbcl-alexandria, sbcl-optima, sbcl-iterate.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:54 +02:00
Pierre Neidhardt
a768436cda
gnu: sbcl-cl-irc: Fix tests.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-irc)[arguments]: Specify test system.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:54 +02:00
Pierre Neidhardt
c4157fd02d
gnu: sbcl-jonathan: Fix tests.
...
* gnu/packages/lisp-xyz.scm (sbcl-jonathan)[native-inputs]: Add missing
sbcl-legion input.
[arguments]: Enable tests.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:53 +02:00
Pierre Neidhardt
1fb04c2097
gnu: Add cl-legion.
...
* gnu/packages/lisp-xyz.scm (cl-legion, ecl-legion, sbcl-legion): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:53 +02:00
Pierre Neidhardt
7f35234002
gnu: sbcl-cl-reexport: Remove obsolete test workaround.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-reexport)[arguments]: Remove.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:53 +02:00
Pierre Neidhardt
f3e71d7b8e
gnu: sbcl-quri: Remove obsolete test workaround.
...
* gnu/packages/lisp-xyz.scm (sbcl-quri)[arguments]: Remove.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:53 +02:00
Pierre Neidhardt
e2562197fb
gnu: Remove obsolete references to asd-files and test-asd-file.
...
In a previous commit we've update the build system to let ASDF locate the .asd
files for us, so package definition no longer need to provide this information.
* gnu/packages/lisp-check.scm: Do it.
* gnu/packages/lisp-xyz.scm: Do it.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:53 +02:00
Pierre Neidhardt
4b7cca1b45
gnu: sbcl-cl-gamepad: Remove asdf:compile-system workaround.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-gamepad)[arguments]: Remove 'build phase
patch now that asdf-build-system/sbcl builds using asdf:load-system which
fixes the bug.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:53 +02:00
Pierre Neidhardt
6181f1f263
build-system: asdf: Let ASDF locate the .asd files.
...
This approach has many benefits:
- It simplifies the build system.
- The package definitions are easier to write.
- It fixes a bug with systems that call asdf:clear-system which would cause
the load to fail. See for instance test systems using Prove.
* guix/build-system/asdf.scm (package-with-build-system): Remove 'asd-files'
and replace 'test-asd-file' by 'asd-test-systems'.
(lower): Same.
* guix/build/asdf-build-system.scm (source-asd-file): Remove since ASDF does
it better than us.
(find-asd-files): Same.
(build): Remove unused asd-files argument.
(check): Remove asd-files argument and replace asd-systems by
asd-test-systems.
* guix/build/lisp-utils.scm (compile-systems): Call to ASDF to find the
systems.
(test-system): Same.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:53 +02:00
Pierre Neidhardt
6b5ef03a25
guix: build: Switch from asdf:compile-system to asdf:load-system.
...
According to the ASDF manual:
This will make sure all the files in the system are compiled, but not
necessarily load any of them in the current image; on most systems, it
will _not_ load all compiled files in the current image. This function
exists for symmetry with 'load-system' but is not recommended unless you
are writing build scripts and know what you're doing.
* guix/build/lisp-utils.scm (compile-systems): Switch from asdf:compile-system
to asdf:load-system.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net >
2022-08-03 16:45:53 +02:00
Ludovic Courtès
c4e58c119d
gnu: xscreensaver: Remove input labels.
...
* gnu/packages/xdisorg.scm (xscreensaver)[inputs]: Remove labels.
2022-08-03 12:21:05 +02:00
r0man
45456595ac
gnu: xscreensaver: Update to 6.04.
...
* gnu/packages/xdisorg.scm (xscreensaver): Update to 6.04.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 12:18:32 +02:00
Artyom V. Poptsov
28e523cc32
gnu: Add evtest.
...
* gnu/packages/linux.scm (evtest): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 12:17:04 +02:00
Hilton Chain
815710cf37
gnu: font-sarasa-gothic: Update to 0.36.6
...
From 46bc3dcc324074b633c5bb3e1c1bdb5f209f5c15 Mon Sep 17 00:00:00 2001
* gnu/packages/fonts.scm (font-sarasa-gothic): Update to 0.36.6.
Signed-off-by: Hilton Chain <hako@ultrarare.space >
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 12:14:13 +02:00
kiasoc5
4e9818db34
gnu: Add android-file-transfer.
...
* gnu/packages/android.scm (android-file-transfer): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 12:13:17 +02:00
Ontje Lünsdorf
b13966a907
gnu: fenics: Do not mpirun tests.
...
* gnu/packages/simulation.scm (fenics)[phases]: Do not use mpirun for tests
and skip failing XDMF test.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-03 12:03:51 +02:00
Hilton Chain
ae0c11f920
gnu: Add font-chiron-hei-hk.
...
* gnu/packages/fonts (font-chiron-hei-hk): New variable.
Signed-off-by: Hilton Chain <hako@ultrarare.space >
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 15:47:17 +08:00
Hilton Chain
30e89f47d1
gnu: Add font-chiron-sung-hk.
...
* gnu/packages/fonts (font-chiron-sung-hk): New variable.
Signed-off-by: Hilton Chain <hako@ultrarare.space >
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 15:17:47 +08:00
André A. Gomes
fab316f7ec
gnu: emacs: Suppress loading messages for guix emacs packages.
...
* gnu/packages/aux-files/emacs/guix-emacs.el
(guix-emacs-autoload-packages): Pass NOMESSAGE as t for 'load'.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 15:07:55 +08:00
John Kehayias
0ff99893bd
gnu: Add hashlink.
...
* gnu/packages/haxe.scm (hashlink): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 14:50:46 +08:00
John Kehayias
0dba452898
gnu: Add haxe.
...
* gnu/packages/haxe.scm (haxelib-src): New variable.
(haxe): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 14:50:01 +08:00
John Kehayias
a4c131a749
gnu: Add neko.
...
* gnu/packages/haxe.scm: New module.
(neko): New variable.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add new module.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 14:25:52 +08:00
Vivien Kraus
e2ad0b0f8b
gnu: nsis: Update to 3.08.
...
* gnu/packages/patches/nsis-source-date-epoch.patch: Drop this patch.
* gnu/local.mk (dist_patch_DATA): Remove it.
* gnu/packages/patches/nsis-env-passthru.patch: Adjust the patch.
* gnu/packages/installers.scm (make-nsis): Update to 3.08.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 14:23:00 +08:00
John Kehayias
cb14d802ae
gnu: Add minimp3.
...
* gnu/packages/mp3.scm (minimp3): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 13:59:37 +08:00
John Kehayias
bf74f708d3
gnu: Add mikktspace.
...
* gnu/packages/graphics.scm (mikktspace): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 13:54:39 +08:00
John Kehayias
1b5d4bf4be
gnu: Add ocaml-xml-light.
...
* gnu/packages/ocaml.scm (ocaml-xml-light): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 13:51:05 +08:00
John Kehayias
c99487c235
gnu: Add ocaml-sha.
...
* gnu/packages/ocaml.scm (ocaml-sha): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 13:47:25 +08:00
John Kehayias
dca0a3ac93
gnu: Add ocaml-ptmap.
...
* gnu/packages/ocaml.scm (ocaml-ptmap): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 13:40:13 +08:00
John Kehayias
e2020eb24a
gnu: Add ocaml-luv.
...
* gnu/packages/ocaml.scm (ocaml-luv): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 13:37:23 +08:00
FELŠÖCI Marek
94f801a426
gnu: python-dill: Update to 0.3.5.1.
...
* gnu/packages/python-xyz.scm (python-dill): Update to 0.3.5.1.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 11:25:08 +08:00
Morgan Smith
3d727b8334
gnu: qt5ct: Fix build.
...
* gnu/packages/qt.scm (qt5ct)[build-system]: Change to qt-build-system.
[arguments]: Adjust accordingly.
[inputs]: Remove qtbase-5.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 11:12:39 +08:00
Hilton Chain
ebdd352301
gnu: Add font-lxgw-wenkai-tc.
...
* gnu/packages/fonts (font-lxgw-wenkai-tc): New variable.
Signed-off-by: Hilton Chain <hako@ultrarare.space >
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 10:19:22 +08:00
Hilton Chain
c67635f507
gnu: Add font-lxgw-wenkai.
...
* gnu/packages/fonts.scm (font-lxgw-wenkai): New variable.
Signed-off-by: Hilton Chain <hako@ultrarare.space >
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-03 10:17:26 +08:00
Maxim Cournoyer
1a5384e9a7
gnu: createrepo-c: Update to 0.20.1.
...
* gnu/packages/rpm.scm (createrepo-c): Update to 0.20.1.
2022-08-02 15:10:01 -04:00
Maxim Cournoyer
de40c03a75
gnu: zchunk: Update to 1.2.2.
...
* gnu/packages/compression.scm (zchunk): Update to 1.2.2.
2022-08-02 15:10:01 -04:00
Maxim Cournoyer
da96de3b66
gnu: drpm: Update to 0.5.1.
...
* gnu/packages/rpm.scm (drpm): Update to 0.5.1.
2022-08-02 15:10:01 -04:00
Maxim Cournoyer
c162dc379c
gnu: createrepo-c: Use gexps.
...
* gnu/packages/rpm.scm (createrepo-c)
[phases]: Use gexps.
2022-08-02 15:10:01 -04:00
Maxim Cournoyer
5ee30cfa84
gnu: libmodulemd: Fix build and use new style inputs and gexps.
...
* gnu/packages/rpm.scm (libmodulemd)
[arguments]: Use gexps.
[phases]{fix-glib-doc-prefix}: Use search-input-directory.
{fix-docbook-references}: Use search-input-file.
{move-documentation}: Use search-input-directory.
[native-inputs]: Use new style. Add python.
[inputs]: Use new style.
2022-08-02 15:10:00 -04:00
Maxim Cournoyer
b316ddbd83
gnu: rpm: Update to 4.17.1.
...
* gnu/packages/package-management.scm (rpm): Update to 4.17.1.
2022-08-02 15:10:00 -04:00
Maxim Cournoyer
3685939f1b
gnu: rpm: Make popt a propagated input.
...
* gnu/packages/package-management.scm (rpm)[inputs]: Move popt...
[propagated-inputs]: ... to here.
2022-08-02 15:10:00 -04:00
andy Tai
f0be1b82dc
gnu: xpra: Update to 4.3.4
...
gnu/packages/xorg.scm (xpra): Update to 4.3.4
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-08-02 21:23:15 +03:00
Paul A. Patience
7e13054373
gnu: python-pyvista: Update to 0.35.2.
...
* gnu/packages/python-science.scm (python-pyvista): Update to 0.35.2.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-08-02 20:59:15 +03:00
Paul A. Patience
797f3de592
gnu: gnuplot: Update to 5.4.4.
...
* gnu/packages/maths.scm (gnuplot): Update to 5.4.4.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-08-02 20:50:01 +03:00
Paul A. Patience
a53bc40036
gnu: gnuplot: Use G-expressions.
...
* gnu/packages/maths.scm (gnuplot)[arguments]: Use G-expressions.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-08-02 20:49:56 +03:00
Paul A. Patience
44c7098809
gnu: gnuplot: Remove input labels.
...
* gnu/packages/maths.scm (gnuplot)[inputs]: Move below native-inputs and
sort.
[native-inputs]: Remove labels.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-08-02 20:49:50 +03:00
Efraim Flashner
29c51c6525
gnu: wcalc: Remove pre-generated files.
...
* gnu/packages/maths.scm (wcalc)[source]: Add snippet to remove files
generated by bison and flex.
[native-inputs]: Add bison, flex.
2022-08-02 19:47:50 +03:00
Efraim Flashner
e1fb703e3e
gnu: nano: Update to 6.4.
...
* gnu/packages/nano.scm (nano): Update to 6.4.
2022-08-02 19:09:22 +03:00
Efraim Flashner
51a6dd170b
gnu: parallel: Add bash-minimal.
...
* gnu/packages/parallel.scm (parallel)[inputs]: Add bash-minimal.
2022-08-02 19:04:36 +03:00
Efraim Flashner
6f52d3aec1
gnu: parallel: Update to 20220722.
...
* gnu/packages/parallel.scm (parallel): Update to 20220722.
2022-08-02 18:55:26 +03:00
Ricardo Wurmus
d5ba31c19a
gnu: Add r-rcppalgos.
...
* gnu/packages/cran.scm (r-rcppalgos): New variable.
2022-08-02 15:12:10 +02:00
Ricardo Wurmus
20f9473532
gnu: Add r-phylotools.
...
* gnu/packages/cran.scm (r-phylotools): New variable.
2022-08-02 15:12:01 +02:00
Ricardo Wurmus
03858a7908
gnu: Add python-scanorama.
...
* gnu/packages/bioinformatics.scm (python-scanorama): New variable.
2022-08-02 14:37:38 +02:00
Ricardo Wurmus
c69c2c1c4d
gnu: python-intervaltree: Update to 3.1.0.
...
* gnu/packages/bioinformatics.scm (python-intervaltree): Update to 3.1.0.
2022-08-02 14:37:38 +02:00
Ricardo Wurmus
4bc130dcc0
gnu: Add python-geosketch.
...
* gnu/packages/python-science.scm (python-geosketch): New variable.
2022-08-02 14:37:38 +02:00
Ricardo Wurmus
d4b0dc047f
gnu: Add python-fbpca.
...
* gnu/packages/python-science.scm (python-fbpca): New variable.
2022-08-02 14:37:38 +02:00
Guillaume Le Vaillant
d4b7aae9f4
gnu: monero-gui: Update to 0.18.0.0.
...
* gnu/packages/finance.scm (monero-gui): Update to 0.18.0.0.
[inputs]: remove labels.
[arguments]: Use gexps.
2022-08-02 12:32:46 +02:00
Guillaume Le Vaillant
e7bac8584b
gnu: monero: Update to 0.18.0.0.
...
* gnu/packages/finance.scm (monero): Update to 0.18.0.0.
[source]: Update snippet.
[arguments]: Use gexps.
2022-08-02 12:32:46 +02:00
Nicolas Goaziou
b4d9493ceb
gnu: scummvm: Update to 2.6.0.
...
* gnu/packages/emulators.scm (scummvm): Update to 2.6.0.
2022-08-02 11:53:59 +02:00
Nicolas Goaziou
fde477442e
gnu: emacs-clojure-mode: Update to 5.15.1.
...
* gnu/packages/emacs-xyz.scm (emacs-clojure-mode): Update to 5.15.1.
2022-08-02 11:53:59 +02:00
Andrew Tropin
9355d46329
home: Add explicit dependency on env to activation script.
...
* gnu/home/services.scm (compute-activation-script): Add explicit dependency
on env to activation script.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-02 16:53:29 +08:00
Michael Rohleder
ead27209b5
gnu: strawberry: Update to 1.0.7.
...
* gnu/packages/music.scm (strawberry): Update to 1.0.7.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-02 16:21:29 +08:00
Peter Polidoro
a1f7d98a9c
gnu: kicad: Update to 6.0.7.
...
* gnu/packages/engineering.scm (kicad): Update to 6.0.7.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org >
2022-08-02 14:13:49 +08:00
Mădălin Ionel Patrașcu
af207dd46d
gnu: Add r-infercnv.
...
* gnu/packages/bioconductor.scm (r-infercnv): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2022-08-01 23:53:23 +02:00
Mădălin Ionel Patrașcu
5baa37b56c
gnu: Add r-phyclust.
...
* gnu/packages/cran.scm (r-phyclust): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2022-08-01 23:53:23 +02:00
Efraim Flashner
1085514a18
gnu: node-lts: Build with icu4c-71.
...
* gnu/packages/node.scm (node-lts)[inputs]: Replace icu4c-70 with
icu4c-71.
[native-inputs]: Same.
2022-08-02 00:45:41 +03:00
Maxim Cournoyer
4637de6a41
gnu: Add qtlottie.
...
* gnu/packages/qt.scm (qtlottie): New variable.
2022-08-01 17:21:01 -04:00
Maxim Cournoyer
f5cc7d03a7
gnu: telephony: Add a Jami test for a partially defined jami-account.
...
* gnu/tests/telephony.scm (%dummy-jami-account-partial): New variable.
(make-jami-os): Add a PARTIAL? argument and use it to select the jami-account
variant to use.
(%jami-os-provisioning-partial): New variable.
(run-jami-test): Add a PARTIAL? argument, and use it to select operating
system variant. Skip allowed-contacts and moderators test when PARTIAL? is
true.
(%test-jami-provisioning-partial): New test.
2022-08-01 12:49:44 -04:00
Maxim Cournoyer
a2b89a3319
services: configuration: Step back from *unspecified*.
...
Fixes <https://issues.guix.gnu.org/56799 >.
This partially reverts 8cb1a49a39 .
Rationale: *unspecified* cannot be serialized thus used as a G-Expression
input, which is problematic/inconvenient when using deeply nested records. As
an example, jami-service-type was broken when using partially defined
<jami-account> records.
* gnu/services/configuration.scm (define-maybe-helper): Check against the
'unset symbol.
(normalize-field-type+def): Adjust value to 'unset.
(define-configuration-helper): Use 'unset as the default value thunk.
* gnu/services/file-sharing.scm (serialize-maybe-string): Check against the
'unset symbol.
(serialize-maybe-file-object): Likewise.
* gnu/services/messaging.scm (define-all-configurations): Use 'unset as
value.
(raw-content?): Check against 'unset symbol.
(prosody-configuration)[http-max-content-size]: Default to 'unset.
[http-external-url]: Likewise.
[mod-muc]: Likewise.
[raw-content]: Likewise.
* gnu/services/networking.scm (opendht-configuration): Adjust documentation.
* gnu/services/telephony.scm (jami-shepherd-services): Replace *undefined*
with the 'unset symbol.
* tests/services/configuration.scm ("maybe type, no default"): Check against
the 'unset symbol.
* doc/guix.texi: Regenerate the opendht-configuration,
openvpn-client-configuration and openvpn-server-configuration documentation.
2022-08-01 12:49:35 -04:00
Maxim Cournoyer
4905b5b839
build-system: qt: Ensure a default value is provided for #:qtbase.
...
* guix/build-system/qt.scm (qt-build)[qtbase]: Specify a default value. Lower
it using ungexp-native.
(qt-cross-build): Likewise.
Reported-by: Maxime Devos <maximedevos@telenet.be > and others.
2022-08-01 12:48:37 -04:00
Ricardo Wurmus
f1b9ae8c20
gnu: python-bbknn: Update to 1.5.1.
...
* gnu/packages/bioinformatics.scm (python-bbknn): Update to 1.5.1.
[propagated-inputs]: Add python-pandas.
2022-08-01 17:46:21 +02:00
muradm
d7e7494bc4
gnu: Add fail2ban.
...
* gnu/packages/admin.scm (fail2ban): New variable.
* gnu/packages/patches/fail2ban-0.11.2_CVE-2021-32749.patch,
gnu/packages/patches/fail2ban-0.11.2_fix-setuptools-drop-2to3.patch,
gnu/packages/patches/fail2ban-0.11.2_fix-test-suite.patch,
gnu/packages/patches/fail2ban-paths-guix-conf.patch,
gnu/packages/patches/fail2ban-python310-server-action.patch,
gnu/packages/patches/fail2ban-python310-server-actions.patch,
gnu/packages/patches/fail2ban-python310-server-jails.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add them.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 17:20:27 +02:00
Paul A. Patience
18d998ffdb
gnu: trilinos-for-dealii-openmpi: Use G-expressions.
...
* gnu/packages/maths.scm (trilinos-for-dealii-openmpi)[arguments]: Use
G-expressions.
<#:phases>: Remove trailing boolean.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 17:20:27 +02:00
Paul A. Patience
32bcadc98c
gnu: trilinos-for-dealii-openmpi: Remove input labels.
...
* gnu/packages/maths.scm (trilinos-for-dealii-openmpi)[native-inputs,
inputs, propagated-inputs]: Remove labels.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 17:20:26 +02:00
Paul A. Patience
a42730183a
gnu: dealii: Update to 9.4.0.
...
* gnu/packages/maths.scm (dealii): Update to 9.4.0.
[propagated-inputs]: Replace sundials-5 with sundials.
(dealii-openmpi)[propagated-inputs]: Replace sundials-openmpi-5 with
sundials-openmpi.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 17:20:26 +02:00
Paul A. Patience
6a15bd031f
gnu: dealii: Use G-expressions.
...
* gnu/packages/maths.scm (dealii)[snippet, arguments]: Use
G-expressions.
(dealii-openmpi)[arguments]: Same.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 17:20:26 +02:00
Paul A. Patience
bbf5e033d4
gnu: trilinos-for-dealii-openmpi: Fix build.
...
* gnu/packages/maths.scm (trilinos-for-dealii-openmpi)[native-inputs]:
Add gcc-7 to fix the failing build with newer versions of gcc.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 17:20:26 +02:00
Mădălin Ionel Patrașcu
c6800aa31e
gnu: Add r-muscat.
...
* gnu/packages/bioconductor.scm (r-muscat): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2022-08-01 16:08:11 +02:00
muradm
7e3234cb70
gnu: mu: Update to 1.8.7.
...
* gnu/packages/mail.scm (mu): Update to 1.8.7.
[source]: Fetch from git.
[build-system]: Use meson-build-system.
[native-inputs]: Remove glib:bin and tzdata; add gnupg and texinfo; use new
style.
[inputs]: Remove guile.
[arguments]: Remove obsolete 'patch-configure, 'fix-ffi, and
'check-tz-setup phases. Rename 'patch-bin-sh-in-tests
to 'patch-bin-references and update it.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2022-08-01 16:03:21 +02:00
Maxim Cournoyer
c454cf6343
gnu: qutebrowser: Fix indentation.
...
* gnu/packages/web-browsers.scm (qutebrowser): Fix indentation.
2022-08-01 09:32:28 -04:00
Maxim Cournoyer
aea756ea33
gnu: qutebrowser: Fix build.
...
Fixes <https://issues.guix.gnu.org/56864 >, which is a regression introduced
with a0beb297a3 .
* gnu/packages/web-browsers.scm (qutebrowser)
[phases]{wrap-qt-process-path}: Do not use the (no longer valid)
"qtwebengine-5" label; instead, locate QtWebEngineProcess via
'search-input-file'.
Reported-by: Jack Hill <jackhill@jackhill.us >
2022-08-01 09:32:28 -04:00
Mădălin Ionel Patrașcu
8d7a721400
gnu: Add r-millefy.
...
* gnu/packages/bioinformatics.scm (r-millefy): New variable.
2022-08-01 15:14:47 +02:00
Marcel van der Boom
b8df15b748
gnu: exiv2: Fix test failure on ppc64le and aarch64.
...
ppc64 and aarch64 do not raise exception and thus output and exit code
for test is different.
See:
https://github.com/Exiv2/exiv2/issues/365 and
https://github.com/Exiv2/exiv2/issues/933
* gnu/packages/image.scm (exiv2)[arguments]: Add 'adjust-tests' phase.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 14:08:09 +02:00
Philip McGrath
d7ab54cdb1
gnu: Add python-biblib.
...
* gnu/packages/python-xyz.scm (python-biblib): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 14:08:09 +02:00
Maya
dd3cf14402
services: opensmtpd: Make commands setgid to "smtpq" by default.
...
This is a patch that fixes "<executable name>: this program must be setgid smtpq".
* gnu/services/mail.scm (<opensmtpd-configuration>)[setgid-commands?]: New field.
(opensmtpd-set-gids): New procedure.
(opensmtpd-service-type)[extensions]: Add SETUID-PROGRAM-SERVICE-TYPE extension.
* doc/guix.texi (Mail Services): Document it.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 14:08:08 +02:00
Danial Behzadi
432ea6446d
gnu: tractor: Update to 3.14.
...
* gnu/packages/tor.scm (tractor): Update to 3.14.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 14:08:08 +02:00
Paul A. Patience
d1b60cb65b
gnu: Add comma after “i.e.” in descriptions.
...
* gnu/packages/bioconductor.scm (r-anota)[description]: Add comma after
“i.e.”.
* gnu/packages/code.scm (xenon)[description]: Same.
* gnu/packages/cran.scm (r-crosstalk)[description]: Same.
* gnu/packages/python-xyz.scm (python-radon)[description]: Same.
* gnu/packages/statistics.scm (r-logspline)[description]: Same.
* gnu/packages/suckless.scm (tabbed)[description]: Same.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 14:08:08 +02:00
Paul A. Patience
e0de48f0e4
gnu: hdf5-1.8: Add missing comma to linker flag.
...
* gnu/packages/maths.scm (hdf5-1.8)[arguments]<#:phases>: Add missing
comma to linker flag.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 14:08:08 +02:00
Z572
dee64d4776
gnu: guile-lens: Fix build.
...
* gnu/packages/guile-xyz.scm (guile-lens)
[phases]{run-hall}: replace "dist" to "build-system".
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 14:08:08 +02:00
Denis 'GNUtoo' Carikli
49000523d2
gnu: xdot: Build with librsvg-for-system.
...
* gnu/packages/graphviz.scm (xdot)[inputs]: Replace librsvg with
librsvg-for-system.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 14:08:07 +02:00
Denis 'GNUtoo' Carikli
4f57da7668
gnu: Add cardpeek.
...
* gnu/packages/security-token.scm (cardpeek): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 14:08:07 +02:00
Sharlatan Hellseher
d790ec21e8
gnu: python-sep: Update to 1.2.1
...
* gnu/packages/astronomy.scm: (python-sep): Update to 1.2.1.
Inherit from libsep
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 14:08:07 +02:00
Sharlatan Hellseher
6ad9a094c1
gnu: Add libsep
...
* gnu/packages/astronomy.scm: (libsep): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-08-01 14:08:07 +02:00
Ludovic Courtès
5a96748a99
gnu: gnutls: Add 3.7.7.
...
* gnu/packages/tls.scm (gnutls-latest): New variable.
2022-08-01 14:08:07 +02:00
Ludovic Courtès
cce7427f95
download: 'url-fetch' closes its HTTP/HTTPS port.
...
* guix/build/download.scm (url-fetch)[fetch]: In the http/https case,
close PORT before returning.
2022-08-01 14:08:07 +02:00
Ricardo Wurmus
dc3ad40c6b
gnu: python-bbknn: Set NUMBA_CACHE_DIR.
...
* gnu/packages/bioinformatics.scm (python-bbknn)[arguments]: Add phase
'set-numba-cache-dir.
2022-08-01 12:46:19 +02:00
Ricardo Wurmus
9b1a2dcd5b
gnu: python-umap-learn: Disable unreliable test.
...
* gnu/packages/machine-learning.scm (python-umap-learn)[arguments]: Disable
test_densmap_trustworthiness_on_iris_supervised.
2022-08-01 12:46:19 +02:00
Ricardo Wurmus
a69f2cd076
gnu: python-umap-learn: Set NUMBA_CACHE_DIR.
...
* gnu/packages/machine-learning.scm (python-umap-learn)[arguments]: Add phase
to set NUMBA_CACHE_DIR.
2022-08-01 12:46:19 +02:00
Maxim Cournoyer
3a656ea836
gnu: jami: Apply upstream patch that fixes a usability issue.
...
* gnu/packages/patches/jami-fix-esc-bug.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/jami.scm (%jami-sources): Apply it.
2022-07-31 23:08:51 -04:00
Maxim Cournoyer
ccf6401d05
gnu: jami: Update to 20220726.1515.da8d1da.
...
* gnu/packages/jami.scm (jami): Update to 20220726.1515.da8d1da.
[configure-flags]: New argument.
[phases]{fix-version-string}: Adjust file name.
{use-desktop-opengl}: Delete obsolete phase.
{patch-source}: New phase.
[native-inputs]: Add googletest and vulkan-headers. Replace qttools-5 with
qttools.
[inputs]: Add libxkbcommon, qt5compat, qtnetworkauth, qtpositioning and
vulkan-loader. Remove qtwebengine-5, qtwebchannel-5, qtgraphicaleffects,
qtquickcontrols-5 and qtquickcontrols2-5. Update qtsvg-5, qtmultimedia-5 and
qtdeclarative-5 to their Qt 6 equivalent.
2022-07-31 21:55:50 -04:00
Maxim Cournoyer
f80f1667f1
gnu: Deprecate jami-gnome for jami.
...
* gnu/packages/jami.scm (jami-gnome): Delete package, deprecating it for jami.
2022-07-31 21:55:50 -04:00
Maxim Cournoyer
46f5623cc1
gnu: Remove jami-libclient.
...
* gnu/packages/jami.scm (jami-libclient): Delete variable.
(libringclient): Likewise.
(jami-gnome)[inputs]: Remove jami-libclient.
(jami)[inputs]: Likewise.
2022-07-31 21:55:49 -04:00
Maxim Cournoyer
3d812fea06
gnu: libjami: Enable test agent.
...
* gnu/packages/jami.scm (libjami)[configure-flags]: Add '--enable-agent' and
remove FIXME.
[tests?]: Update comment.
2022-07-31 21:55:49 -04:00
Maxim Cournoyer
bdf0fce88e
gnu: libjami: Update to 20220726.1515.da8d1da.
...
* gnu/packages/patches/jami-fix-crash-on-quit.patch: Delete file.
* gnu/packages/patches/jami-images-loading.patch: Likewise.
* gnu/packages/patches/jami-libclient-audio-managers.patch: Likewise.
* gnu/packages/patches/jami-memory-usage.patch: Likewise.
* gnu/local.mk (dist_patch_DATA): De-register removed patches.
* gnu/packages/jami.scm (%jami-version): Update to 20220726.1515.da8d1da.
(libjami)[configure-flags]: Add '--disable-static'.
(jami-apply-custom-patches): Adjust for top directory renaming.
(%ffmpeg-default-configure-flags): Add muxer support
for g726 and g726le. Add demuxer support for g723_1, g726 and g726le. Add
encoder/decoder support for g726, g726le and g723_1. Add decoder support for
g729.
(ffmpeg-jami)[patches]: Add 'libopusenc-reload-packet-loss-at-encode'.
(jami-libclient)[native-inputs]: New field.
[inputs]: Add ffmpeg-jami and libxkbcommon.
[propagated-inputs]: Replace qtbase-5 with qtbase.
2022-07-31 21:55:49 -04:00
Maxim Cournoyer
1f466ed6be
build: qt: Add qtbase argument and wrap Qt environment variables exactly.
...
* guix/build-system/qt.scm (default-qtbase): New variable.
(lower) <#:qtbase>: Add argument...
[build-inputs]: ... and propagate it here.
(qt-build): Add qtbase argument.
(qt-cross-build): Likewise.
* guix/build/qt-utils.scm (%default-qt-major-version): New variable.
(variables-for-wrapping): Add qt-major-version argument, and use it to format
the various path prefixes. Wrap QT environment variables exactly.
(wrap-qt-program*): Add qt-major-version argument, and pass it to
variables-for-wrapping.
(wrap-qt-program): Add qt-major-version argument, and pass it to
wrap-qt-program*.
(wrap-all-qt-programs): Add qtbase argument, and extract the major version
from it, passing it to wrap-qt-program*.
2022-07-31 21:55:49 -04:00
Maxim Cournoyer
a13a687989
gnu: Add qtpositioning.
...
* gnu/packages/qt.scm (qtpositioning): New variable.
2022-07-31 21:55:49 -04:00
Maxim Cournoyer
d9e8d7f4aa
gnu: Add qtnetworkauth, version 6.3.1.
...
* gnu/packages/qt.scm (qtnetworkauth): New variable.
2022-07-31 21:55:48 -04:00
Maxim Cournoyer
2e27ccec83
gnu: qtnetworkauth: Rename to qtnetworkauth-5.
...
Automated with:
git grep -l qtnetworkauth | xargs sed 's/\bqtnetworkauth\b/\0-5/g' -i
2022-07-31 21:55:48 -04:00
Maxim Cournoyer
a4784b3273
gnu: Add qttools, version 6.3.1.
...
* gnu/packages/qt.scm (qttools): New variable.
2022-07-31 21:55:48 -04:00
Maxim Cournoyer
eef8e2ec46
gnu: qttools: Rename to qttools-5.
...
Automated with:
git grep -l qttools | xargs sed 's/\bqttools\b/\0-5/g' -i
git checkout NEWS
2022-07-31 21:55:48 -04:00
Maxim Cournoyer
de20b74fc2
gnu: Add qt5compat.
...
* gnu/packages/qt.scm (qt5compat): New variable.
2022-07-31 21:55:47 -04:00
Maxim Cournoyer
f1e126c03b
gnu: Add qtwebengine, version 6.3.1.
...
* gnu/packages/qt.scm (qtwebengine): New variable.
2022-07-31 21:55:47 -04:00
Maxim Cournoyer
a0beb297a3
gnu: qtwebengine: Rename to qtwebengine-5.
...
Automated with:
git grep -l qtwebengine | xargs sed 's/\bqtwebengine\b/\0-5/g' -i
git checkout NEWS
2022-07-31 21:55:47 -04:00
Maxim Cournoyer
ef648459df
gnu: Add qtwebchannel, version 6.3.1.
...
* gnu/packages/qt.scm (qtwebchannel): New variable.
2022-07-31 21:55:46 -04:00
Maxim Cournoyer
0938c3e34a
gnu: qtwebchannel: Rename to qtwebchannel-5.
...
Automated via:
git grep -l qtwebchannel | xargs sed 's/\bqtwebchannel\b/\0-5/g' -i
git checkout NEWS
2022-07-31 21:55:46 -04:00
Maxim Cournoyer
573055b7ef
gnu: Add qtwebsockets, version 6.3.1.
...
* gnu/packages/qt.scm (qtwebsockets): New variable.
2022-07-31 21:55:46 -04:00
Maxim Cournoyer
d15258d991
gnu: qtwebsockets: Rename to qtwebsockets-5.
...
Automated via:
git grep -l qtwebsockets | xargs sed 's/\bqtwebsockets\b/\0-5/g' -i
git checkout NEWS
2022-07-31 21:55:46 -04:00
Maxim Cournoyer
d90031f799
gnu: qtquickcontrols2: Define as obsoleted by qtdeclarative.
...
* gnu/packages/qt.scm (qtquickcontrols2): New variable.
2022-07-31 21:55:45 -04:00
Maxim Cournoyer
1130fc5991
gnu: qtquickcontrols2: Rename to qtquickcontrols2-5.
...
Automated via:
git grep -l qtquickcontrols2 | xargs sed 's/\bqtquickcontrols2\b/\0-5/g' -i
git checkout NEWS
2022-07-31 21:55:45 -04:00
Maxim Cournoyer
65e5e85d28
gnu: qtquickcontrols: Rename to qtquickcontrols-5.
...
Automated via:
git grep -l qtquickcontrols | xargs sed 's/\bqtquickcontrols\b/\0-5/g' -i
git checkout NEWS
2022-07-31 21:55:45 -04:00
Maxim Cournoyer
397d05a4bf
gnu: Add qtdeclarative, version 6.3.1.
...
* gnu/packages/qt.scm (qtdeclarative): New variable.
2022-07-31 21:55:44 -04:00
Maxim Cournoyer
735d340ae4
gnu: qtdeclarative: Rename to qtdeclarative-5.
...
Automated via the following commands:
git grep -l '\bqtdeclarative\b' | xargs sed -E 's/qtdeclarative/\0-5/g' -i
git checkout NEWS
2022-07-31 21:55:44 -04:00
Maxim Cournoyer
983a061e98
gnu: Add qtmultimedia, version 6.3.1.
...
* gnu/packages/qt.scm (qtmultimedia): New variable.
2022-07-31 21:55:44 -04:00
Maxim Cournoyer
5f22854339
gnu: qtmultimedia: Rename to qtmultimedia-5.
...
Automated via:
git grep -l qtmultimedia | xargs sed 's/qtmultimedia/qtmultimedia-5/g' -i
git checkout NEWS
2022-07-31 21:55:44 -04:00
Maxim Cournoyer
1d65ff8fde
gnu: Add qtshadertools.
...
* gnu/packages/qt.scm (qtshadertools): New variable.
2022-07-31 21:55:43 -04:00
Maxim Cournoyer
6165dd3c72
gnu: qpwgraph: Migrate to Qt 6 and add libxkbcommon input.
...
* gnu/packages/audio.scm (qpwgraph)[inputs]: Replace qtbase-5 with qtbase,
qtsvg-5 with qtsvg. Add libxkbcommon.
2022-07-31 21:55:43 -04:00
Maxim Cournoyer
49f673415f
gnu: Add qtsvg, version 6.3.1.
...
* gnu/packages/qt.scm (qtsvg): New variable.
2022-07-31 21:55:43 -04:00
Maxim Cournoyer
580b033a50
gnu: qtsvg-5: Fix indentation.
...
* gnu/packages/qt.scm (qtsvg-5): Fix indentation.
2022-07-31 21:55:43 -04:00
Maxim Cournoyer
1ef04fb228
gnu: qtsvg: Rename variable to qtsvg-5.
...
This is in preparation of the qtsvg update to version 6.
This change was automated via the following command:
git grep -l '\bqtsvg\b' | xargs sed 's/qtsvg/qtsvg-5/g' -i
2022-07-31 21:55:43 -04:00
Maxim Cournoyer
4af9984a4e
gnu: qtbase: Revert to gtk+ (3) instead of gtk (4).
...
This revert the upgrade from GTK 3 to 4 in
8d7fdbe261 . Qt doesn't yet support GTK 4.
* gnu/packages/qt.scm (qtbase)[native-inputs]: Remove gtk.
[inputs]: Do not replace gtk+ by gtk.
2022-07-31 21:55:42 -04:00
Maxim Cournoyer
de6f155426
gnu: qtbase: Enable test suite.
...
* gnu/packages/qt.scm (qtbase)[tests?]: Delete argument.
[configure-flags]: Add "-DQT_BUILD_TESTS=ON".
[phases]{check}: Move after the patch-prl-files phase and override.
[native-inputs]: Add xvfb-run.
2022-07-31 21:55:42 -04:00
Maxim Cournoyer
d48c98cd12
gnu: qtbase: Honor CMAKE_PREFIX_PATH.
...
* gnu/packages/qt.scm (qtbase)[phases]{honor-CMAKE_PREFIX_PATH}: New phase.
2022-07-31 21:55:42 -04:00
Maxim Cournoyer
663f12ea24
gnu: qtbase: Patch /bin/pwd in executable scripts.
...
* gnu/packages/qt.scm (qtbase)[phases]{patch-paths}: Patch /bin/pwd.
[inputs]: Add coreutils-minimal.
2022-07-31 21:55:42 -04:00
Ludovic Courtès
ab59155c5a
gnu: mtd-utils: Disable parallel tests.
...
This is a followup to 7a409a217c .
* gnu/packages/linux.scm (mtd-utils)[arguments]: Add #:parallel-tests?.
2022-08-01 00:02:04 +02:00
Ludovic Courtès
7d0ebc467f
services: rottlog: More convenient default options for <log-rotation>.
...
* gnu/services/admin.scm (%default-log-rotation-options): New variable.
(%default-rotations): Use it.
* gnu/services/cuirass.scm (cuirass-log-rotations): Likewise.
* doc/guix.texi (Log Rotation): Adjust accordingly.
2022-08-01 00:02:04 +02:00
Ludovic Courtès
4de445f3da
guix gc: '--delete-generations' now deletes old Home generations.
...
This reverts commit 24c0518dd4 ,
thereby reinstating ba22560627 , with an
additional fix in (guix self).
Fixes <https://issues.guix.gnu.org/56722 >.
Reported by "(" <paren@disroot.org >.
* guix/scripts/gc.scm (guix-gc)[delete-generations]: Add call to
'home-generation-base'.
* guix/self.scm (compiled-guix)[*core-cli-modules*]: Remove (guix
scripts gc).
* doc/guix.texi (Invoking guix gc): Document the change.
2022-08-01 00:02:04 +02:00
Ludovic Courtès
61db74a687
home: Add 'home-generation-base'.
...
This reverts commit 670818a404 ,
thereby reinstating 5df8f7802e .
* gnu/home.scm (%profile-generation-rx): New variable.
(home-generation-base): New procedure.
2022-08-01 00:02:04 +02:00
Ludovic Courtès
a3a6931c75
gnu: rottlog: Remove input labels.
...
* gnu/packages/admin.scm (rottlog)[arguments]: In 'tweak-rc-weekly', use
'search-input-file' instead of 'assoc-ref'.
[inputs]: Remove labels.
2022-08-01 00:02:04 +02:00
Ludovic Courtès
e5a6900baf
services: rottlog: Keep important /var/log files for 16 weeks.
...
The default "rotate" value is 1 as of rottlog 0.72.2, meaning that only
one rotated file would be kept in addition to the active file.
* gnu/services/admin.scm (%default-rotations): Add "rotate" option for
%ROTATED-FILES.
2022-08-01 00:02:04 +02:00
Ludovic Courtès
bfe3fdbc75
services: tor: Do not write to /var/log/tor.log.
...
The service uses syslog and additionally shepherd 0.9 captures its
stdout/stderr, so there's no point in passing #:log-file.
* gnu/services/networking.scm (tor-shepherd-service): Remove #:log-file
argument to 'make-forkexec-constructor'.
(%tor-log-rotation): Remove.
(tor-service-type): Remove ROTTLOG-SERVICE-TYPE extension.
2022-08-01 00:02:03 +02:00
Nicolas Goaziou
7c1010f326
gnu: emacs-dtrt-indent: Update to 1.8.
...
* gnu/packages/emacs-xyz.scm (emacs-dtrt-indent): Update to 1.8.
2022-08-01 00:00:00 +02:00
Nicolas Goaziou
4d02b9c334
gnu: emacs-pabbrev: Update to 4.2.2.
...
* gnu/packages/emacs-xyz.scm (emacs-pabbrev): Update to 4.2.2.
[source]<origin>: Change file extension.
2022-07-31 23:58:19 +02:00
Nicolas Goaziou
0114c7b2df
gnu: emacs-org-jira: Update to 4.4.0.
...
* gnu/packages/emacs-xyz.scm (emacs-org-jira): Update to 4.4.0.
2022-07-31 23:56:19 +02:00
Nicolas Goaziou
218add33da
gnu: emacs-devdocs: Update to 0.5.
...
* gnu/packages/emacs-xyz.scm (emacs-devdocs): Update to 0.5.
2022-07-31 23:54:40 +02:00
Nicolas Goaziou
48dae20007
gnu: emacs-tramp: Update to 2.5.3.1.
...
* gnu/packages/emacs-xyz.scm (emacs-tramp): Update to 2.5.3.1.
2022-07-31 23:53:43 +02:00
Nicolas Goaziou
638fb2da94
gnu: emacs-parsebib: Update to 4.2.
...
* gnu/packages/emacs-xyz.scm (emacs-parsebib): Update to 4.2.
2022-07-31 23:52:27 +02:00
Vivien Kraus
0565cde689
gnu: zlib: Support mingw cross-compilation.
...
* gnu/packages/compression.scm (zlib): Only run configure if not mingw.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-07-31 12:23:41 +02:00
Jonathan Brielmaier
d1c6b8db5a
gnu: icedove: Update to 91.12.0.
...
* gnu/packages/gnuzilla.scm (icedove): Update to 91.12.0.
2022-07-29 23:18:22 +02:00
Liliana Marie Prikler
cd7438c422
gnu: gst-editing-services: Update FIXME comment.
...
There are now 23 total tests in gst-editing-services.
* gnu/packages/gstreamer.scm (gst-editing-services)[arguments]: Update FIXME.
2022-07-28 22:06:01 +02:00
Liliana Marie Prikler
ab0f743139
gnu: gst-python: Use new package style.
...
* gnu/packages/gstreamer.scm (gst-python)[arguments]: Convert to list of
G-Expressions.
2022-07-28 22:06:01 +02:00
Liliana Marie Prikler
759f9e7135
gnu: gst-editing-services: Use new package style.
...
* gnu/packages/gstreamer.scm (gst-editing-services)[arguments]: Convert to
list of G-Expressions.
[native-inputs]: Drop labels.
2022-07-28 22:06:01 +02:00
Liliana Marie Prikler
43aeb00426
gnu: gst-plugins-ugly: Use new package style.
...
* gnu/packages/gstreamer.scm (gst-plugins-ugly)[arguments]: Convert to list of
G-Expressions.
[native-inputs]: Drop labels.
2022-07-28 22:06:00 +02:00
Liliana Marie Prikler
673af7e81e
gnu: gst-plugins-bad: Use new package style.
...
* gnu/packages/gstreamer.scm (gst-plugins-bad)[arguments]: Convert to list of
G-Expressions.
[native-inputs, inputs]: Drop labels.
2022-07-28 22:06:00 +02:00
Liliana Marie Prikler
f1b70e156a
gnu: gst-plugins-good: Use new package style.
...
* gnu/packages/gstreamer.scm (gst-plugins-good)[arguments]: Convert to list of
G-Expressions.
[propagated-inputs, native-inputs]: Drop labels.
[inputs]: Drop labels, also sort alphabetically.
2022-07-28 20:52:13 +02:00
Liliana Marie Prikler
4d08f984e9
gnu: gstreamer: Use new package style.
...
* gnu/packages/gstreamer.scm (gstreamer)[arguments]: Convert to list of
G-Expressions.
[native-inputs]: Drop labels.
2022-07-28 20:52:13 +02:00
Liliana Marie Prikler
442bfe12bb
gnu: webkitgtk: Add missing inputs.
...
* gnu/packages/webkit.scm (webkitgtk)[inputs]: Add gst-plugins-bad-minimal and
libgudev.
2022-07-28 20:52:13 +02:00
Liliana Marie Prikler
98f170e61c
gnu: Add gst-plugins-bad-minimal.
...
* gnu/packages/gstreamer.scm (gst-plugins-bad-minimal): New variable.
2022-07-28 20:52:13 +02:00
Liliana Marie Prikler
f1fdde3c45
gnu: gst-plugins/selection: Implement in terms of G-Expressions.
...
* gnu/packages/gstreamer.scm (gst-plugins/selection)[#:configure-flags]:
Use G-Expressions.
[#:phases]: Likewise. Drop trailing #t.
* gnu/packages/video.scm (pitivi)[inputs]: Adjust accordingly.
2022-07-28 20:52:06 +02:00
Liliana Marie Prikler
badee2b419
gnu: python-gst: Update to 1.20.3.
...
* gnu/packages/gstreamer.scm (python-gst): Update to 1.20.3.
2022-07-28 20:30:45 +02:00
Liliana Marie Prikler
c33b2ccddf
gnu: gstreamer-docs: Update to 1.20.3.
...
* gnu/packages/gstreamer.scm (gstreamer-docs): Update to 1.20.3.
2022-07-28 20:30:44 +02:00
Liliana Marie Prikler
a6c3a6d798
gnu: gst-editing-services: Update to 1.20.3.
...
* gnu/packages/gstreamer.scm (gst-editing-services): Update to 1.20.3.
2022-07-28 20:30:44 +02:00
Liliana Marie Prikler
a7c64b598b
gnu: gst-libav: Update to 1.20.3.
...
* gnu/packages/gstreamer.scm (gst-libav): Update to 1.20.3.
2022-07-28 20:30:44 +02:00
Liliana Marie Prikler
00319b9835
gnu: gst-plugins-ugly: Update to 1.20.3.
...
* gnu/packages/gstreamer.scm (gst-plugins-ugly): Update to 1.20.3.
2022-07-28 20:30:44 +02:00
Liliana Marie Prikler
7d8d0addad
gnu: gst-plugins-bad: Update to 1.20.3.
...
* gnu/packages/gstreamer.scm (gst-plugins-bad): Update to 1.20.3.
2022-07-28 20:30:44 +02:00
Liliana Marie Prikler
9c02f19d6d
gnu: gst-plugins-good: Update to 1.20.3.
...
* gnu/packages/gstreamer.scm (gst-plugins-good): Update to 1.20.3.
[source]<patches>: Remove “gst-plugins-good-fix-test.patch”.
[arguments]<#:phases>: Add ‘absolutize-libsoup-library’ and
‘skip-failing-tests’.
* gnu/packages/patches/gst-plugins-good-fix-test.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-07-28 20:30:43 +02:00
Liliana Marie Prikler
f1e8cc6a98
gnu: gst-plugins-base: Update to 1.20.3.
...
* gnu/packages/gstreamer.scm (gst-plugins-base): Update to 1.20.3.
2022-07-28 20:30:43 +02:00
Liliana Marie Prikler
aaad1a19e8
gnu: gstreamer: Update to 1.20.3.
...
* gnu/packages/gstreamer.scm (gstreamer): Update to 1.20.3.
[#:phases]: Drop ‘disable-some-tests’ and ‘disable-problematic-tests’.
2022-07-28 20:30:43 +02:00
Liliana Marie Prikler
f3a5841559
gnu: python-gst: Add upstream-name.
...
* gnu/packages/gstreamer.scm (python-gst)[properties]: Add upstream-name.
2022-07-28 20:30:42 +02:00
Marius Bakke
0b770c2da4
gnu: librsvg: Update to 2.54.4.
...
* gnu/packages/gnome.scm (librsvg): Update to 2.54.4.
[arguments]: Adjust #:cargo-inputs for the new version. Remove phases
patch-docbook-xml and ignore-failing-tests. Add phase
decrease-reftest-sensitivity.
[native-inputs]: Remove DOCBOOK-XML-4.3.
(librsvg-bootstrap)[name]: Distinguish.
[source, version]: Inherit from LIBRSVG.
2022-07-27 18:13:03 +02:00
Marius Bakke
1338e25610
gnu: rust-yeslogic-fontconfig-sys: Add 2.11.2.
...
* gnu/packages/crates-io.scm (rust-yeslogic-fontconfig-sys-2): New variable.
2022-07-27 18:12:23 +02:00
Marius Bakke
4059158e6a
gnu: rust-png: Add 0.17.
...
* gnu/packages/crates-graphics.scm (rust-png-0.17): New variable.
(rust-png-0.16): Inherit from it.
2022-07-27 16:20:36 +02:00
Marius Bakke
1160932ea0
gnu: rust-deflate: Add 1.0.0.
...
* gnu/packages/crates-io.scm (rust-deflate-1): New variable.
(rust-deflate-0.9): Inherit from it.
2022-07-27 16:20:36 +02:00
Marius Bakke
b3461155d0
Merge branch 'master' into staging
2022-07-27 16:17:36 +02:00
Marius Bakke
d10effc13f
gnu: rust-glium: Add 0.31.0.
...
* gnu/packages/crates-io.scm (rust-glium-0.31): New variable.
(rust-glium-0.25): Inherit from it.
2022-07-27 16:13:39 +02:00
Marius Bakke
daf54d67e8
gnu: rust-cgmath: Add 0.18.0.
...
* gnu/packages/crates-graphics.scm (rust-cgmath-0.18): New variable.
(rust-cgmath-0.17): Inherit from it.
2022-07-27 16:13:38 +02:00
Marius Bakke
a11fc74a87
gnu: rust-glutin: Add 0.28.0.
...
* gnu/packages/crates-graphics.scm (rust-glutin-0.28): New variable.
(rust-glutin-0.26): Inherit from it.
2022-07-27 16:13:38 +02:00
Marius Bakke
68dbcbbbe6
gnu: rust-glutin-egl-sys: Update to 0.1.5.
...
* gnu/packages/crates-graphics.scm (rust-glutin-egl-sys-0.1): Update to 0.1.5.
2022-07-27 16:13:38 +02:00
Marius Bakke
36f4b7df99
gnu: rust-winit: Add 0.26.1.
...
* gnu/packages/crates-graphics.scm (rust-winit-0.26): New variable.
(rust-winit-0.24): Inherit from it.
2022-07-27 16:13:38 +02:00
Marius Bakke
86da387b65
gnu: rust-ndk-glue: Add 0.5.2.
...
* gnu/packages/crates-io.scm (rust-ndk-glue-0.5): New variable.
(rust-ndk-glue-0.2): Inherit from it.
2022-07-27 16:13:38 +02:00
Marius Bakke
591ae23cea
gnu: rust-ndk: Add 0.5.0.
...
* gnu/packages/crates-io.scm (rust-ndk-0.5): New variable.
(rust-ndk-0.2): Inherit from it.
2022-07-27 16:13:38 +02:00
Marius Bakke
94753408f3
gnu: rust-ndk-sys: Update to 0.2.2.
...
* gnu/packages/crates-io.scm (rust-ndk-sys-0.2): Update to 0.2.2.
2022-07-27 16:13:38 +02:00
Marius Bakke
596b9235c3
gnu: rust-android-logger: Add 0.10.1.
...
* gnu/packages/crates-io.scm (rust-android-logger-0.10): New variable.
(rust-android-logger-0.8): Inherit from it.
2022-07-27 16:13:38 +02:00
Marius Bakke
42a9a357c8
gnu: rust-android-log-sys: Add 0.2.0.
...
* gnu/packages/crates-io.scm (rust-android-log-sys-0.2): New variable.
(rust-android-log-sys-0.1): Inherit from it.
2022-07-27 16:13:38 +02:00
Marius Bakke
3219f25c27
gnu: Add rust-ndk-context.
...
* gnu/packages/crates-io.scm (rust-ndk-context-0.1): New variable.
2022-07-27 16:13:38 +02:00
Marius Bakke
3336406334
gnu: rust-ndk-macro: Add 0.3.0.
...
* gnu/packages/crates-io.scm (rust-ndk-macro-0.3): New variable.
(rust-ndk-macro-0.2): Inherit from it.
2022-07-27 16:13:38 +02:00
Marius Bakke
3113747e92
gnu: rust-smithay-client-toolkit: Add 0.15.4.
...
* gnu/packages/crates-graphics.scm (rust-smithay-client-toolkit-0.15): New
variable.
(rust-smithay-client-toolkit-0.12): Inherit from it.
2022-07-27 16:13:37 +02:00
Marius Bakke
2b2670399e
gnu: rust-wayland-cursor: Add 0.29.4.
...
* gnu/packages/crates-graphics.scm (rust-wayland-cursor-0.29): New variable.
(rust-wayland-cursor-0.28): Inherit from it.
2022-07-27 16:13:37 +02:00
Marius Bakke
4c980a2b9a
gnu: rust-wayland-egl: Add 0.29.4.
...
* gnu/packages/crates-graphics.scm (rust-wayland-egl-0.29): New variable.
(rust-wayland-egl-0.28): Inherit from it.
2022-07-27 16:13:37 +02:00
Marius Bakke
a9107f2703
gnu: rust-wayland-protocols: Add 0.29.4.
...
* gnu/packages/crates-graphics.scm (rust-wayland-protocols-0.29): New variable.
(rust-wayland-protocols-0.28): Inherit from it.
2022-07-27 16:13:37 +02:00
Marius Bakke
0470b4b474
gnu: rust-wayland-server: Add 0.29.4.
...
* gnu/packages/crates-graphics.scm (rust-wayland-server-0.29): New variable.
(rust-wayland-server-0.28): Inherit from it.
2022-07-27 16:13:37 +02:00
Marius Bakke
8764f1bffc
gnu: rust-wayland-client: Add 0.29.4.
...
* gnu/packages/crates-graphics.scm (rust-wayland-client-0.29): New variable.
(rust-wayland-client-0.28): Inherit from it.
2022-07-27 16:13:37 +02:00
Marius Bakke
31b08f77e7
gnu: rust-memoffset: Add cargo-inputs to inputs.
...
* gnu/packages/crates-io.scm (rust-memoffset-0.6)[inputs]: New field.
(rust-memoffset-0.5)[inputss]: Don't inherit.
2022-07-27 16:13:37 +02:00
Marius Bakke
cc97bb913b
gnu: rust-memoffset: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-memoffset-0.6)[arguments]: Remove
#:skip-build?. Add RUST-DOC-COMMENT-0.3 to #:cargo-development-inputs.
2022-07-27 16:13:37 +02:00
Marius Bakke
c132e08881
gnu: rust-nix@0.22: Add dependent packages to inputs.
...
* gnu/packages/crates-io.scm (rust-nix-0.22)[inputs]: New field.
2022-07-27 16:13:37 +02:00
Marius Bakke
615234a1d1
gnu: rust-libloading: Don't skip build.
...
* gnu/packages/crates-io.scm (rust-libloading-0.7)[arguments]: Remove
#:skip-build?.
2022-07-27 16:13:37 +02:00
Marius Bakke
1638f2c5c5
gnu: rust-libloading: Add cargo-inputs to inputs.
...
* gnu/packages/crates-io.scm (rust-libloading-0.7)[inputs]: New field.
2022-07-27 16:13:37 +02:00
Marius Bakke
90ff6c9a0b
gnu: rust-wayland-commons: Add 0.29.4.
...
* gnu/packages/crates-graphics.scm (rust-wayland-commons-0.29): New variable.
(rust-wayland-commons-0.28): Inherit from it.
2022-07-27 16:13:36 +02:00
Marius Bakke
b6242d29f4
gnu: rust-wayland-sys: Add 0.29.
...
* gnu/packages/crates-graphics.scm (rust-wayland-sys-0.29): New variable.
(rust-wayland-sys-0.28): Inherit from it.
2022-07-27 16:13:36 +02:00
Marius Bakke
8aef4c5071
gnu: rust-wayland-scanner: Add 0.29.4.
...
* gnu/packages/crates-graphics.scm (rust-wayland-scanner-0.29): New variable.
(rust-wayland-scanner-0.28): Inherit from it.
2022-07-27 16:13:36 +02:00
Marius Bakke
3f7cef4f95
gnu: rust-dlib: Add rust-libloading to inputs.
...
This is a follow-up to commit 28364584af .
* gnu/packages/crates-io.scm (rust-dlib-0.5)[inputs]: Add RUST-LIBLOADING-0.7.
2022-07-27 16:13:36 +02:00
Marius Bakke
fe76e27789
gnu: rust-mint: Update to 0.5.9.
...
* gnu/packages/crates-io.scm (rust-mint-0.5): Update to 0.5.9.
[arguments]: New field.
2022-07-27 12:52:36 +02:00
Marius Bakke
822edbf08b
gnu: rust-gzip-header: Add 1.0.0.
...
* gnu/packages/crates-io.scm (rust-gzip-header-1): New variable.
(rust-gzip-header-0.3): Inherit from it.
2022-07-27 12:52:36 +02:00
Marius Bakke
e62dd8e762
gnu: rust-crc32fast: Update to 1.3.2.
...
* gnu/packages/crates-io.scm (rust-crc32fast-1): Update to 1.3.2.
[arguments]: Update #:cargo-inputs. Remove #:skip-build?.
2022-07-27 12:52:36 +02:00
Marius Bakke
26afc27f29
gnu: rust-tinyvec@1: Update to 1.2.0.
...
* gnu/packages/crates-io.scm (rust-tinyvec-1): Update to 1.2.0.
2022-07-27 12:50:37 +02:00
Marius Bakke
de212cb74e
gnu: rust-itertools@0.10: Update to 0.10.3.
...
* gnu/packages/crates-io.scm (rust-itertools-0.10): Update to 0.10.3.
2022-07-27 12:50:37 +02:00
Marius Bakke
c7bbf937ff
gnu: rust-gdk-pixbuf: Add 0.15.11.
...
* gnu/packages/crates-gtk.scm (rust-gdk-pixbuf-0.15): New variable.
(rust-gdk-pixbuf-0.14): Inherit from it.
2022-07-27 12:50:25 +02:00
Marius Bakke
79ee7d783a
gnu: rust-gio: Add 0.15.12.
...
* gnu/packages/crates-gtk.scm (rust-gio-0.15): New variable.
(rust-gio-0.14): Inherit from it.
2022-07-27 12:50:25 +02:00
Marius Bakke
bdd55817ed
gnu: rust-gdk-pixbuf-sys: Add 0.15.
...
* gnu/packages/crates-gtk.scm (rust-gdk-pixbuf-sys-0.15): New variable.
(rust-gdk-pixbuf-sys-0.14): Inherit from it.
2022-07-27 12:50:18 +02:00
Marius Bakke
b4678e4488
gnu: rust-gio-sys: Add 0.15.10.
...
* gnu/packages/crates-gtk.scm (rust-gio-sys-0.15): New variable.
(rust-gio-sys-0.14): Inherit from it.
2022-07-27 12:50:18 +02:00
Marius Bakke
2f9aa892c6
gnu: rust-pangocairo: Add 0.15.1.
...
* gnu/packages/crates-gtk.scm (rust-pangocairo-0.15): New variable.
(rust-pangocairo-0.9): Inherit from it.
2022-07-27 12:50:17 +02:00
Marius Bakke
c5d4f2e8f0
gnu: rust-pangocairo-sys: Add 0.15.
...
* gnu/packages/crates-gtk.scm (rust-pangocairo-sys-0.15): New variable.
(rust-pangocairo-sys-0.10): Inherit from it.
2022-07-27 12:50:17 +02:00
Marius Bakke
713b289ff0
gnu: rust-pango: Add 0.15.10.
...
* gnu/packages/crates-gtk.scm (rust-pango-0.15): New variable.
(rust-pango-0.14): Inherit from it.
2022-07-27 12:50:16 +02:00
Marius Bakke
def0acd5e5
gnu: rust-pango-sys: Add 0.15.
...
* gnu/packages/crates-gtk.scm (rust-pango-sys-0.15): New variable.
(rust-pango-sys-0.14): Inherit from it.
2022-07-27 12:50:16 +02:00
Marius Bakke
01c410a440
gnu: rust-cairo-rs: Add 0.15.12.
...
* gnu/packages/crates-gtk.scm (rust-cairo-rs-0.15): New variable.
(rust-cairo-rs-0.14): Inherit from it.
2022-07-27 12:50:16 +02:00
Marius Bakke
bc9ea4f6e8
gnu: rust-glib: Add 0.15.12.
...
* gnu/packages/crates-gtk.scm (rust-glib-0.15): New variable.
(rust-glib-0.14): Inherit from it.
2022-07-27 12:50:16 +02:00
Marius Bakke
ac393134e5
gnu: rust-glib-macros: Add 0.15.
...
* gnu/packages/crates-gtk.scm (rust-glib-macros-0.15): New variable.
(rust-glib-macros-0.14): Inherit from it.
2022-07-27 12:50:16 +02:00
Marius Bakke
633c4ca407
gnu: rust-gobject-sys: Add 0.15.10.
...
* gnu/packages/crates-gtk.scm (rust-gobject-sys-0.15): New variable.
(rust-gobject-sys-0.14): Inherit from it.
2022-07-27 12:50:16 +02:00
Marius Bakke
21e5e408bf
gnu: rust-cairo-sys: Add 0.15.1.
...
* gnu/packages/crates-gtk.scm (rust-cairo-sys-rs-0.15): New variable.
(rust-cairo-sys-rs-0.14): Inherit from it.
2022-07-27 12:50:16 +02:00
Marius Bakke
e31cc7f0c9
gnu: rust-glib-sys: Add 0.15.
...
* gnu/packages/crates-gtk.scm (rust-glib-sys-0.15): New variable.
(rust-glib-sys-0.14): Inherit from it.
2022-07-27 12:50:16 +02:00
Marius Bakke
8d05800f67
gnu: rust-system-deps: Add 6.0.2.
...
* gnu/packages/crates-io.scm (rust-system-deps-6): New variable.
(rust-system-deps-3): Inherit from it.
2022-07-27 12:50:12 +02:00
Marius Bakke
7b38d7731a
gnu: rust-cfg-expr: Add 0.10.3.
...
* gnu/packages/crates-io.scm (rust-cfg-expr-0.10): New variable.
(rust-cfg-expr-0.8): Inherit from it.
2022-07-27 12:48:37 +02:00
Marius Bakke
ca5f1dd01e
gnu: rust-target-lexicon: Update to 0.12.4.
...
* gnu/packages/crates-io.scm (rust-target-lexicon-0.12): Update to 0.12.4.
2022-07-27 12:48:36 +02:00
Marius Bakke
f3673447cc
gnu: rust-smallvec: Update to 1.9.0.
...
* gnu/packages/crates-io.scm (rust-smallvec-1): Update to 1.9.0.
[arguments]: Add RUST-ARBITRATY-1 to #:cargo-inputs.
2022-07-27 12:48:36 +02:00
Marius Bakke
6611cabd1c
Merge branch 'master' into staging
2022-07-27 12:33:53 +02:00
Marius Bakke
25d59733a5
gnu: rust-raw-window-handle: Add 0.4.3.
...
* gnu/packages/crates-graphics.scm (rust-raw-window-handle-0.4): New variable.
(rust-raw-window-handle-0.3): Inherit from it.
2022-07-27 12:31:26 +02:00
Marius Bakke
551e9e9587
gnu: rust-calloop: Add 0.9.3.
...
* gnu/packages/crates-io.scm (rust-calloop-0.9): New variable.
(rust-calloop-0.6): Inherit from it.
2022-07-27 12:31:26 +02:00
Marius Bakke
2e217866cd
gnu: rust-num-enum: Add 0.5.7.
...
* gnu/packages/crates-io.scm (rust-num-enum-0.5): New variable.
(rust-num-enum-0.4): Inherit from it.
2022-07-27 12:31:26 +02:00
Marius Bakke
986fc17956
gnu: rust-num-enum-derive: Add 0.5.7.
...
* gnu/packages/crates-io.scm (rust-num-enum-derive-0.5): New variable.
(rust-num-enum-derive-0.4): Inherit from it.
2022-07-27 12:31:26 +02:00
Marius Bakke
c5837dfd81
gnu: rust-takeable-option: Add 0.5.0.
...
* gnu/packages/crates-io.scm (rust-takeable-option): Add 0.5.0.
(rust-takeable-option-0.4): Inherit from it.
2022-07-27 12:31:26 +02:00
Marius Bakke
6f7b463cbb
gnu: Add rust-yeslogic-fontconfig-sys.
...
* gnu/packages/crates-io.scm (rust-yeslogic-fontconfig-sys-3): New variable.
2022-07-27 12:31:26 +02:00
Marius Bakke
665fb3b188
gnu: Add rust-const-cstr.
...
* gnu/packages/crates-io.scm (rust-const-cstr-0.3): New variable.
2022-07-27 12:31:25 +02:00
Marius Bakke
28364584af
gnu: rust-dlib: Add 0.5.0.
...
* gnu/packages/crates-io.scm (rust-dlib-0.5): New variable.
(rust-dlib-0.4): Inherit from it.
2022-07-27 12:31:25 +02:00
Marius Bakke
65a0cb14cd
gnu: Add rust-test-generator.
...
* gnu/packages/crates-io.scm (rust-test-generator-0.3): New variable.
2022-07-27 12:31:25 +02:00
Marius Bakke
42eaddb1e1
gnu: rust-selectors: Add 0.23.0.
...
* gnu/packages/crates-io.scm (rust-selectors-0.23): New variable.
(rust-selectors-0.22): Inherit from it.
2022-07-27 12:31:25 +02:00
Marius Bakke
da5fdb9710
gnu: rust-rctree: Add 0.4.
...
* gnu/packages/crates-io.scm (rust-rctree-0.4): New variable.
(rust-rctree-0.3): Inherit from it.
2022-07-27 12:31:25 +02:00
Marius Bakke
5830332150
gnu: rust-nalgebra: Add 0.29.0.
...
* gnu/packages/crates-io.scm (rust-nalgebra-0.29): New variable.
(rust-nalgebra-0.26): Inherit from it.
2022-07-27 12:31:25 +02:00
Marius Bakke
4c7888f628
gnu: rust-simba: Add 0.6.0.
...
* gnu/packages/crates-io.scm (rust-simba-0.6): New variable.
(rust-simba-0.5, rust-simba-0.1): Inherit from it.
2022-07-27 12:31:25 +02:00
Marius Bakke
29787b45f0
gnu: rust-wide: Add 0.7.4.
...
* gnu/packages/crates-io.scm (rust-wide-0.7): New variable.
(rust-wide-0.6, rust-wide-0.4): Inherit from it.
2022-07-27 12:31:25 +02:00
Marius Bakke
0a7560ec6f
gnu: rust-safe-arch: Add 0.6.0.
...
* gnu/packages/crates-io.scm (rust-safe-arch-0.6): New variable.
(rust-safe-arch-0.5): Inherit from it.
2022-07-27 12:31:25 +02:00
Marius Bakke
74900a671a
gnu: rust-language-tags: Add 0.3.2.
...
* gnu/packages/crates-io.scm (rust-language-tags-0.3): New variable.
(rust-language-tags-0.2): Inherit from it.
2022-07-27 12:31:25 +02:00
Marius Bakke
37d28a662b
gnu: rust-serial-test: Add 0.6.0.
...
* gnu/packages/crates-io.scm (rust-serial-test-0.6): New variable.
(rust-serial-test-0.5): Inherit from it.
2022-07-27 12:31:25 +02:00
Marius Bakke
ead1112bb9
gnu: Add rust-fslock.
...
* gnu/packages/crates-io.scm (rust-fslock-0.2): New variable.
2022-07-27 12:31:24 +02:00
Marius Bakke
df17c1aeb0
gnu: rust-serial-test-derive: Add 0.6.0.
...
* gnu/packages/crates-io.scm (rust-serial-test-derive-0.6): New variable.
(rust-serial-test-derive-0.5): Inherit from it.
2022-07-27 12:31:24 +02:00
Marius Bakke
433cca4bc1
gnu: rust-cast: Add 0.3.
...
* gnu/packages/crates-io.scm (rust-cast-0.3): New variable.
(rust-cast-0.2): Inherit from it.
2022-07-27 12:31:24 +02:00
Marius Bakke
b9ad6cb413
gnu: Add rust-similar-asserts.
...
* gnu/packages/crates-io.scm (rust-similar-asserts-1): New variable.
2022-07-27 12:31:24 +02:00
Marius Bakke
6fd0b018c6
gnu: rust-version-compare: Add 0.1.
...
* gnu/packages/crates-io.scm (rust-version-compare-0.1): New variable.
(rust-version-compare-0.0.11): Inherit from it.
2022-07-27 12:31:24 +02:00
Nicolas Graves
7aad4a99f7
gnu: rust-adler32-1: Update to 1.2.0.
...
* gnu/packages/crates-io.scm (rust-adler32-1): Update to 1.2.0.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-27 11:35:28 +02:00
Marius Bakke
f098d93352
gnu: nss, nss-certs: Update to 3.81.
...
* gnu/packages/certs.scm (nss-certs): Update to 3.81.
* gnu/packages/nss.scm (nss): Likewise.
2022-07-27 11:35:27 +02:00
Tobias Geerinckx-Rice
069d6a3f64
gnu: fstrm: Refer to HPND licence by name.
...
* gnu/packages/protobuf.scm (fstrm)[license]: Use license:hpnd directly.
2022-07-24 02:00:11 +02:00
Felix Gruber
69eb840945
gnu: oil: Update to 0.12.0.
...
* gnu/packages/shells.scm (oil): Update to 0.12.0.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr >
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
75bc96ed8e
download: Refresh KDE mirror list.
...
* guix/download.scm (%mirrors)[kde]: Update list, using HTTPS wherever
possible.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
ff44eff58b
gnu: osinfo-db: Update to 20220516.
...
* gnu/packages/virtualization.scm (osinfo-db): Update to 20220516.
2022-07-24 02:00:02 +02:00
Tobias Geerinckx-Rice
313a442f7b
gnu: get-iplayer: Update to 3.30.
...
* gnu/packages/video.scm (get-iplayer): Update to 3.30.
[arguments]: Don't explicitly return #t from phases.
2022-07-24 02:00:02 +02:00
Tobias Geerinckx-Rice
5f4cd5243c
gnu: libconfini: Omit static library.
...
* gnu/packages/cpp.scm (libconfini)[arguments]: Add "--disable-static"
to #:configure-flags.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
6efe29d2e7
gnu: libconfini: Update to 1.16.4.
...
* gnu/packages/cpp.scm (libconfini): Update to 1.16.4.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
15ac9ace9c
gnu: ndisc6: Update to 1.0.6.
...
* gnu/packages/networking.scm (ndisc6): Update to 1.0.6.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
8d1f308e1d
gnu: nbd: Update to 3.24.
...
* gnu/packages/networking.scm (nbd): Update to 3.24.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
9177a28169
gnu: podofo: Remove input labels.
...
* gnu/packages/pdf.scm (podofo)[inputs]:
Remove input labels.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
84be8bc1f4
gnu: podofo: Update to 0.9.8.
...
* gnu/packages/pdf.scm (podofo): Update to 0.9.8.
[arguments]: Don't explicitly return #t from phases.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
80108cac05
gnu: qtractor: Remove input labels.
...
* gnu/packages/music.scm (qtractor)[inputs]:
Remove input labels.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
59d7976782
gnu: fstrm: Omit static library.
...
* gnu/packages/protobuf.scm (fstrm)[arguments]:
Add "--disable-static" to #:configure-flags.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
7a409a217c
gnu: mtd-utils: Update to 2.1.4.
...
* gnu/packages/linux.scm (mtd-utils): Update to 2.1.4.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
85347b0f34
gnu: qtractor: Update to 0.9.27.
...
* gnu/packages/music.scm (qtractor): Update to 0.9.27.
[inputs]: Add qtsvg.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
b167c54e51
gnu: fstrm: Update to 0.6.1.
...
* gnu/packages/protobuf.scm (fstrm): Update to 0.6.1.
[license]: Update too.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
bd756d9c15
gnu: libostree: Update to 2022.5.
...
* gnu/packages/package-management.scm (libostree): Update to 2022.5.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
6629265414
gnu: imgui: Update to 1.88.
...
* gnu/packages/toolkits.scm (imgui): Update to 1.88.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
6f3961ec00
gnu: bitcoin: Use language-agnostic home page.
...
* gnu/packages/finance.scm (beancount)[home-page]: Remove "/en".
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
986df4ec0f
gnu: ncmpc: Update to 0.47.
...
* gnu/packages/mpd.scm (ncmpc): Update to 0.47.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
171964da5b
gnu: es: Use URL-FETCH/TARBOMB.
...
* gnu/packages/shells.scm (es)[source]: Use URL-FETCH/TARBOMB to let us…
[arguments]: …delete the ad-hoc 're-enter-rootdir phase.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
c5320bdf06
gnu: beancount: Update home page.
...
* gnu/packages/finance.scm (beancount)[home-page]: Update.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
06261a445a
gnu: mpd: Update to 0.23.8.
...
* gnu/packages/mpd.scm (mpd): Update to 0.23.8.
2022-07-24 02:00:00 +02:00
Pierre Neidhardt
119ac132d7
gnu: sbcl-clss: Update to 20220728.
...
* gnu/packages/lisp-xyz.scm (sbcl-clss): Update to 20220728.
2022-07-29 08:44:34 +02:00
Tobias Geerinckx-Rice
42c99f282c
gnu: mtools: Update to 4.0.40.
...
* gnu/packages/mtools.scm (mtools): Update to 4.0.40.
2022-07-24 02:00:02 +02:00
Tobias Geerinckx-Rice
cbcda3965e
gnu: net-snmp: Update to 5.9.3.
...
* gnu/packages/networking.scm (net-snmp): Update to 5.9.3.
[source]: Don't explicitly return #t from the snippet.
[arguments]: Likewise for phases.
2022-07-24 02:00:02 +02:00
Tobias Geerinckx-Rice
2ac922a8ec
gnu: ipcalc: Update to 0.51.
...
* gnu/packages/networking.scm (ipcalc): Update to 0.51.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
[inputs]: Remove tar, gzip, and the bogus ‘tarball’.
[arguments]: Adjust to build from Git.
[home-page]: Update.
2022-07-24 02:00:02 +02:00
Tobias Geerinckx-Rice
d3d506a0d1
gnu: nginx-documentation: Update to 1.23.1-2869-9383e934e546.
...
* gnu/packages/web.scm (nginx-documentation): Update to 1.23.1-2869-9383e934e546.
2022-07-24 02:00:02 +02:00
Tobias Geerinckx-Rice
361b1eaeec
gnu: nginx: Update to 1.23.1.
...
* gnu/packages/web.scm (nginx): Update to 1.23.1.
2022-07-24 02:00:02 +02:00
Tobias Geerinckx-Rice
b849d7194e
gnu: libsocketcan: Omit duplicate LICENSE file.
...
* gnu/packages/networking.scm (libsocketcan)[arguments]: Delete the default
'install-license-files phase.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
34680d5406
gnu: libsocketcan: Update to 0.0.12.
...
* gnu/packages/networking.scm (libsocketcan): Update to 0.0.12.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
0de6c3178b
gnu: nnn: Update to 4.6.
...
* gnu/packages/admin.scm (nnn): Update to 4.6.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
943a5b1ee7
gnu: lldpd: Use G-expressions.
...
* gnu/packages/networking.scm (lldpd)[arguments]:
Rewrite as G-expressions.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
090667a258
gnu: lldpd: Update to 1.0.14.
...
* gnu/packages/networking.scm (lldpd): Update to 1.0.14.
[source]: Don't explicitly return #t from the snippet.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
15d55744fd
gnu: pamixer: Update to 1.6.
...
* gnu/packages/pulseaudio.scm (pamixer): Update to 1.6.
[build-system]: Switch to Meson.
[arguments]: Remove field.
[native-inputs]: Add pkg-config.
[inputs]: Remove boost; add cxxopts.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
3dab424a3d
gnu: es: Update to 0.9.2.
...
* gnu/packages/shells.scm (es): Update to 0.9.2.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
ca4d834c2f
gnu: paprefs: Update to 1.2.
...
* gnu/packages/pulseaudio.scm (paprefs): Update to 1.2.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
f8b7320ab2
gnu: freetalk: Modernise arguments' style.
...
* gnu/packages/messaging.scm (freetalk)[arguments]: Use a G-expression.
Use SEARCH-INPUT-FILE to find representative binaries instead of relying
on package names, and 'suffix rather than 'prefix their location to PATH.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
4aa2a62345
gnu: eid-mw: Remove input labels.
...
* gnu/packages/security-token.scm (eid-mw)[native-inputs]:
Remove input labels.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
d62b180ffd
gnu: freetalk: Update to 4.2.
...
* gnu/packages/messaging.scm (freetalk): Update to 4.2.
[arguments]: Remove unneeded "CFLAGS=-fcommon" from #:configure-flags.
Don't explicitly return #t from phases.
[inputs]: Update guile-2.0 to guile-3.0.
2022-07-24 02:00:00 +02:00
Nicolas Graves
56e17f6493
gnu: Add rust-miniz-oxide-0.5.
...
* gnu/packages/crates-io.scm (rust-miniz-oxide-0.5): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-27 11:48:03 +02:00
Nicolas Graves
d851cecc14
gnu: Add rust-simd-adler32-0.3.
...
* gnu/packages/crates-io.scm (rust-simd-adler32-0.3): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-27 11:48:03 +02:00
Nicolas Graves
a058975229
gnu: Add rust-adler-1.
...
* gnu/packages/crates-io.scm
(rust-adler-1): New variable.
(rust-adler-0.2): Add development-inputs.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-27 11:48:03 +02:00
Nicolas Graves
540b74847d
gnu: rust-miniz-oxide: Do not skip build.
...
* gnu/packages/crates-io.scm
(rust-miniz-oxide-0.2): Keeping skip-build? #t.
(rust-miniz-oxide-0.3): Deleting skip-build? #t.
(rust-miniz-oxide-0.4): Deleting skip-build? #t.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-27 11:48:03 +02:00
Marius Bakke
9a1cd6e7e8
gnu: FFmpeg: Update to 5.1.
...
* gnu/packages/video.scm (ffmpeg-5): Update to 5.1.
2022-07-27 11:48:03 +02:00
Marius Bakke
8007a835cd
gnu: modem-manager: Add 'upstream-name' property.
...
* gnu/packages/freedesktop.scm (modem-manager)[properties]: New field.
2022-07-27 11:48:03 +02:00
Maxim Cournoyer
e6480571a0
gnu: opendht: Really disable the problematic testListen test.
...
* gnu/packages/networking.scm (opendht)
[phases]{disable-problematic-tests}: Adjust regexp pattern.
Reported-by: Jack Hill <jackhill@jackhill.us >
2022-07-26 21:57:31 -04:00
Tobias Geerinckx-Rice
ac65e3029b
gnu: axc: Update to 0.3.7.
...
* gnu/packages/messaging.scm (axc): Update to 0.3.7.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
555d53d486
gnu: libmtp: Use G-expressions.
...
* gnu/packages/libusb.scm (libmtp)[arguments]:
Rewrite as G-expressions.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
607722a835
gnu: eid-mw: Update to 5.1.6.
...
* gnu/packages/security-token.scm (eid-mw): Update to 5.1.6.
[inputs]: Remove libbsd as promised.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
237a7f6bbc
gnu: libmtp: Update to 1.1.20.
...
* gnu/packages/libusb.scm (libmtp): Update to 1.1.20.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
893f58adca
gnu: hugin: Remove input labels.
...
* gnu/packages/photo.scm (hugin)[native-inputs, inputs]:
Remove input labels.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
47248f526f
gnu: gnome-commander: Update to 1.14.3.
...
* gnu/packages/gnome.scm (gnome-commander): Update to 1.14.3.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
3a5e01aa7b
gnu: hugin: Update to 2021.0.0.
...
* gnu/packages/photo.scm (hugin): Update to 2021.0.0.
[arguments]: Don't explicitly return #t from phases.
2022-07-24 02:00:00 +02:00
Efraim Flashner
e6bdd94c38
gnu: plink-ng: Fix building on other architectures.
...
* gnu/packages/bioinformatics.scm (plink-ng)[arguments]: Adjust
make-flags to add simde includes to CFLAGS.
[native-inputs]: Add simde.
2022-07-28 23:47:40 +03:00
Efraim Flashner
99d1122f8b
gnu: plink-ng: Update to 2.00a3.3.
...
* gnu/packages/bioinformatics.scm (plink-ng): Update to 2.00a3.3.
2022-07-28 22:55:07 +03:00
Tobias Geerinckx-Rice
bdb2e262fc
gnu: libpano13: Update to 2.9.21.
...
* gnu/packages/photo.scm (libpano13): Update to 2.9.21.
[native-inputs]: Add perl.
2022-07-24 02:00:15 +02:00
Tobias Geerinckx-Rice
0bb061190e
gnu: console-setup: Use G-expressions.
...
* gnu/packages/xorg.scm (console-setup)[arguments]:
Rewrite as G-expressions.
2022-07-24 02:00:26 +02:00
Tobias Geerinckx-Rice
a2bd3758c1
gnu: console-setup: Clean up #:make-flags.
...
* gnu/packages/xorg.scm (console-setup)[arguments]: Properly
set #:make-flags once. Use them across all phases.
2022-07-24 02:00:26 +02:00
Tobias Geerinckx-Rice
54c6e39188
gnu: console-setup: Fix cross-compilation.
...
* gnu/packages/xorg.scm (console-setup)[inputs]: Add bash-minimal and
coreutils.
[arguments]: Use them in place of the native ones where appropriate.
2022-07-24 02:00:13 +02:00
Tobias Geerinckx-Rice
532bdeff3e
gnu: console-setup: Update to 1.209.
...
* gnu/packages/xorg.scm (console-setup): Update to 1.209.
2022-07-24 02:00:25 +02:00
Tobias Geerinckx-Rice
f081f5691e
gnu: duc: Run tests.
...
* gnu/packages/disk.scm (duc)[arguments]: Replace the 'check phase to run tests.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
8fc748d054
gnu: duc: Update to 1.4.5.
...
* gnu/packages/disk.scm (duc): Update to 1.4.5.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
054c001d26
gnu: Add mce-inject.
...
* gnu/packages/linux.scm (mce-inject): New public variable.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
bad54d57db
gnu: nanodbc: Update to 2.14.0.
...
* gnu/packages/databases.scm (nanodbc): Update to 2.14.0.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
a7068d3e97
gnu: qdirstat: Update to 1.8.1.
...
* gnu/packages/disk.scm (qdirstat): Update to 1.8.1.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
01467df791
gnu: pegtl: Update to 3.2.7.
...
* gnu/packages/cpp.scm (pegtl): Update to 3.2.7.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
588e63ee94
gnu: linux-libre@5.10: Update to 5.10.133.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.133.
(linux-libre-5.10-pristine-source): Update hash.
2022-07-24 02:00:00 +02:00
Mark H Weaver
57ee9b069d
gnu: icecat: Update to 91.12.0-guix0-preview1 [security fixes].
...
Includes fixes for CVE-2022-36318 and CVE-2022-36319.
* gnu/packages/gnuzilla.scm (%icecat-version, %icecat-build-id): Update.
(icecat-source): Update gnuzilla commit, base version, and hashes.
2022-07-26 14:35:22 -04:00
Efraim Flashner
80961ca44c
gnu: poke: Update to 2.4.
...
* gnu/packages/engineering.scm (poke): Update to 2.4.
2022-07-26 21:07:41 +03:00
Efraim Flashner
ecc9886180
gnu: datamash: Update to 1.8.
...
* gnu/packages/datamash.scm (datamash): Update to 1.8.
2022-07-26 20:48:58 +03:00
Efraim Flashner
ce480594aa
gnu: gnuastro: Update to 0.18.
...
* gnu/packages/astronomy.scm (gnuastro): Update to 0.18.
2022-07-26 20:48:28 +03:00
Tobias Geerinckx-Rice
eafdd4f2c4
gnu: linux-libre@5.4: Update to 5.4.207.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.207.
(linux-libre-5.4-pristine-source): Update hash.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
3487aa4f24
gnu: linux-libre@5.15: Update to 5.15.57.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.57.
(linux-libre-5.15-pristine-source): Update hash.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
4d1ce332f4
gnu: linux-libre@4.14: Update to 4.14.289.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.289.
(linux-libre-4.14-pristine-source): Update hash.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
827dca8510
gnu: linux-libre@4.19: Update to 4.19.253.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.253.
(linux-libre-4.19-pristine-source): Update hash.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
ef567e0fe5
gnu: linux-libre@4.9: Update to 4.9.324.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.324.
(linux-libre-4.9-pristine-source): Update hash.
2022-07-24 02:00:01 +02:00
Tobias Geerinckx-Rice
ea0f76c0d5
gnu: libkeyfinder: Update to 2.2.7.
...
* gnu/packages/audio.scm (libkeyfinder): Update to 2.2.7.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
65a3872253
gnu: linux-libre@5.10: Update to 5.10.132.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.132.
(linux-libre-5.10-pristine-source): Update hash.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
f1b727c263
gnu: btrbk: Use SEARCH-INPUT-FILES.
...
* gnu/packages/backup.scm (btrbk)[arguments]: Use SEARCH-INPUT-FILE to
construct the wrapper's PATH, rather than hard-coding package variables.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
76d34d1e08
gnu: linux-libre@5.18: Update to 5.18.14.
...
* gnu/packages/linux.scm (linux-libre-5.18-version): Update to 5.18.14.
(linux-libre-5.18-pristine-source): Update hash.
2022-07-24 02:00:00 +02:00
Arun Isaac
08e64ee6a9
gnu: openconnect: Update to 9.01.
...
* gnu/packages/vpn.scm (openconnect): Update to 9.01.
2022-07-26 18:33:08 +05:30
Arun Isaac
6737510912
gnu: openfortivpn: Update to 1.17.3.
...
* gnu/packages/vpn.scm (openfortivpn): Update to 1.17.3.
2022-07-26 17:32:32 +05:30
Arun Isaac
dbcd787656
gnu: phockup: Update to 1.9.0.
...
* gnu/packages/image.scm (phockup): Update to 1.9.0.
2022-07-26 00:46:25 +05:30
Arun Isaac
14dbb549f8
gnu: phockup: Add bash-minimal to inputs.
...
* gnu/packages/image.scm (phockup)[inputs]: Add bash-minimal.
2022-07-26 00:45:17 +05:30
Arun Isaac
f55e83fa3d
gnu: phockup: Make exiftool substitution more specific.
...
* gnu/packages/image.scm (phockup)[arguments]: Make exiftool substitution in
configure phase more specific.
2022-07-26 00:43:31 +05:30
Maxim Cournoyer
e78bb31aa1
gnu: emacs-robot-log: Update to 0.1.4.
...
* gnu/packages/emacs-xyz.scm (emacs-robot-log): Update to 0.1.4.
2022-07-25 10:05:53 -04:00
Tobias Geerinckx-Rice
c7a13d29a2
gnu: btrbk: Update to 0.32.2.
...
* gnu/packages/backup.scm (btrbk): Update to 0.32.2.
2022-07-24 02:00:00 +02:00
Tobias Geerinckx-Rice
212ca81895
gnu: python-fontpens: Remove failing docstring assertion.
...
* gnu/packages/fontutils.scm (python-fontpens)[arguments]:
Add a new 'drop-flaky-docstring phase.
2022-07-24 02:00:00 +02:00
Efraim Flashner
a2011d73bc
gnu: dbxfs: Update to 1.0.63.
...
* gnu/packages/file-systems.scm (dbxfs): Update to 1.0.63.
* gnu/packages/patches/dbxfs-remove-sentry-sdk.patch: Update patch.
2022-07-24 15:27:05 +03:00
Efraim Flashner
0e57c02ce5
gnu: python-dropbox: Update to 11.33.0.
...
* gnu/packages/file-systems.scm (python-dropbox): Update to 11.33.0.
2022-07-24 15:27:05 +03:00
Efraim Flashner
0248d5fe15
gnu: python-userspacefs: Update to 2.0.5.
...
* gnu/packages/python-xyz.scm (python-userspacefs): Update to 2.0.5.
2022-07-24 15:27:04 +03:00
Pierre Neidhardt
5bc131ca7a
gnu: Add ndebug.
...
* gnu/packages/lisp-xyz.scm (cl-ndebug, ecl-ndebug, sbcl-ndebug): New variables.
2022-07-24 11:32:29 +02:00
Pierre Neidhardt
c5a80784e2
gnu: Add ospm.
...
* gnu/packages/lisp-xyz.scm (cl-ospm, ecl-ospm, sbcl-ospm): New variables.
2022-07-24 08:59:30 +02:00
Tobias Geerinckx-Rice
e3ca4088d0
gnu: btrbk: Add findutils to PATH.
...
* gnu/packages/backup.scm (btrbk)[arguments]:
Add findutils to WRAP-PROGRAM's PATH list.
2022-07-24 02:00:00 +02:00
Antero Mejr
97285a431b
gnu: Add grimshot.
...
* gnu/packages/wm.scm (grimshot): New variable.
Reviewed-by: Maxime Devos <maximedevos@telenet.be >
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-07-27 20:37:19 +02:00
Liliana Marie Prikler
3b1bac3b97
gnu: Add cambalache.
...
* gnu/packages/gnome.scm (cambalache): New variable.
2022-07-27 18:50:15 +02:00
Antero Mejr
ecb91c993d
gnu: libphonenumber: Build reproducibly.
...
* gnu/packages/messaging.scm (libphonenumber): Add patch.
* gnu/packages/patches/libphonenumber-reproducible-build.patch: New
file.
* gnu/local.mk (dist_patch_DATA): Register patch.
Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de >
2022-07-27 16:55:22 +02:00
Marius Bakke
68aab436af
gnu: modem-manager: Update to 1.18.10.
...
* gnu/packages/freedesktop.scm (modem-manager): Update to 1.18.10.
[native-inputs]: Add PYTHON, PYTHON-DBUS, and PYTHON-PYGOBJECT.
2022-07-23 22:57:46 +02:00
Marius Bakke
fdd40f391c
gnu: modem-manager: Remove obsolete input.
...
* gnu/packages/freedesktop.scm (modem-manager)[native-inputs]: Remove
INTLTOOL. Add GETTEXT-MINIMAL.
2022-07-23 22:57:46 +02:00
Marius Bakke
9ee4069eb0
gnu: modem-manager: Use G-expression.
...
* gnu/packages/freedesktop.scm (modem-manager)[arguments]: Use gexp.
2022-07-23 22:57:46 +02:00
Marius Bakke
40992a1e02
gnu: modem-manager: Remove input labels.
...
* gnu/packages/freedesktop.scm (modem-manager)[native-inputs]: Remove labels.
2022-07-23 22:57:46 +02:00
Marius Bakke
718f75a55a
gnu: libqmi: Update to 1.30.8.
...
* gnu/packages/freedesktop.scm (libqmi): Update to 1.30.8.
2022-07-23 22:57:46 +02:00
Marius Bakke
4625519f2c
gnu: libmbim: Update to 1.26.4.
...
* gnu/packages/freedesktop.scm (libmbim): Update to 1.26.4.
2022-07-23 22:57:46 +02:00
Marius Bakke
c3da692293
gnu: perl-file-mimeinfo: Update to 0.33.
...
* gnu/packages/freedesktop.scm (perl-file-mimeinfo): Update to 0.33.
2022-07-23 22:57:46 +02:00
Marius Bakke
7aab4eddd0
gnu: PHP: Fix test failure with newer cURL.
...
* gnu/packages/patches/php-curl-compat.patch: New file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/php.scm (php)[source](patches): Add it.
2022-07-23 18:37:57 +02:00
Marius Bakke
8f2be58833
gnu: PHP: Update to 7.4.30.
...
* gnu/packages/php.scm (php): Update to 7.4.30.
[source](patches): Remove obsolete patch.
* gnu/packages/patches/php-openssl_x509_checkpurpose_basic.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-07-23 18:37:57 +02:00
Marius Bakke
3d446d85ce
gnu: perl-catalystx-script-server-starman: Add missing input.
...
* gnu/packages/web.scm (perl-catalystx-script-server-starman)[native-inputs]:
Add PERL-POD-PARSER.
2022-07-23 18:37:57 +02:00
Marius Bakke
c948b935e1
gnu: perl-cpanel-json-xs: Update to 4.30.
...
* gnu/packages/perl.scm (perl-cpanel-json-xs): Update to 4.30.
2022-07-23 18:37:57 +02:00
Marius Bakke
9b4b5e33c4
gnu: perl-file-basedir: Update to 0.09.
...
* gnu/packages/freedesktop.scm (perl-file-basedir): Update to 0.09.
2022-07-23 06:14:36 +02:00
Marius Bakke
c0c6944f1a
gnu: perl-pod-parser: Update to 1.65.
...
* gnu/packages/perl.scm (perl-pod-parser): Update to 1.65.
2022-07-22 16:17:02 +02:00
Marius Bakke
abea091dbe
Merge branch 'master' into staging
2022-07-21 23:52:47 +02:00
Marius Bakke
3b20467807
gnu: libva: Update to 2.15.0.
...
* gnu/packages/video.scm (libva): Update to 2.15.0.
2022-07-21 23:43:51 +02:00
Maxim Cournoyer
3f171587bc
ffmpeg-jami: Re-enable matroska muxer.
...
Disabled by mistake in 1ed66d1461 .
* gnu/packages/jami.scm (%ffmpeg-default-configure-flags): Un-comment
'--enable-muxer=matroska'.
2022-07-21 10:12:15 -04:00
Maxim Cournoyer
4406e0e9e2
gnu: asio: Update to 1.22.2.
...
* gnu/packages/networking.scm (asio): Update to 1.22.2.
2022-07-21 10:12:05 -04:00
Maxim Cournoyer
6d2eb9ebf9
gnu: opendht: Enable tests.
...
* gnu/packages/networking.scm (opendht)
[phases]{disable-problematic-tests}: New phase.
{check}: New phase override.
[propagated-inputs]: Re-indent comments.
2022-07-21 10:11:30 -04:00
Maxim Cournoyer
9dcde6147e
gnu: opendht: Update to 2.4.9.
...
* gnu/packages/networking.scm (opendht): Update to 2.4.9.
2022-07-21 10:11:25 -04:00
Maxim Cournoyer
cdb5b560af
gnu: qpwgraph: Update to 0.3.4.
...
* gnu/packages/audio.scm (qpwgraph): Update to 0.3.4.
2022-07-21 10:11:00 -04:00
Ricardo Wurmus
a2e57f6017
gnu: gwl: Update to 0.5.0.
...
* gnu/packages/package-management.scm (gwl): Update to 0.5.0.
[arguments]: Disable integration tests.
2022-07-21 12:49:46 +02:00
Taiju HIGASHI
85bb38fd96
gnu: guile-hall: Update to 0.4.1.
...
* gnu/packages/guile-xyz.scm (guile-hall): Update to 0.4.1.
2022-07-21 12:47:36 +02:00
Taiju HIGASHI
15adec6f0a
gnu: guile-config: Update to 0.5.1.
...
* gnu/packages/guile-xyz.scm (guile-config): Update to 0.5.1.
2022-07-21 12:47:36 +02:00
Marius Bakke
36f55a9328
gnu: ungoogled-chromium: Update to 103.0.5060.134-1.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 103.0.5060.134.
(%ungoogled-origin, ungoogled-chromium): Update hashes.
2022-07-20 17:18:18 +02:00
Nicolas Graves
cda3de3b7d
gnu: modifying make-chromium-extension to rely on node-crx3.
...
* gnu/build/chromium-extension.scm (make-crx): Lift Xorg and Chromium
dependencies, rely on node-crx3 instead.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-20 16:50:08 +02:00
Nicolas Graves
1b323c58c8
gnu: Add node-crx3.
...
* gnu/packages/node-xyz.scm (node-crx3): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-20 16:50:08 +02:00
Nicolas Graves
cf8319d17d
gnu: Add node-minimist.
...
* gnu/packages/node-xyz.scm (node-minimist): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-20 16:50:08 +02:00
Nicolas Graves
c41ac67cfd
gnu: Add node-pbf.
...
* gnu/packages/node-xyz.scm (node-pbf): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-20 16:50:08 +02:00
Nicolas Graves
9b8567e293
gnu: Add node-ieee754.
...
* gnu/packages/node-xyz.scm (node-ieee754): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-20 16:50:08 +02:00
Nicolas Graves
9ae6dd7aa5
gnu: Add node-resolve-protobuf-schema.
...
* gnu/packages/node-xyz.scm (node-resolve-protobuf-schema): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-20 16:50:08 +02:00
Nicolas Graves
13e50d75e8
gnu: Add node-protocol-buffers-schema.
...
* gnu/packages/node-xyz.scm (node-protocol-buffers-schema): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-20 16:50:08 +02:00
Nicolas Graves
2b7fc10185
gnu: Add node-yazl.
...
* gnu/packages/node-xyz.scm (node-yazl): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-20 16:50:08 +02:00
Nicolas Graves
a61d5df8c3
gnu: Add node-buffer-crc32.
...
* gnu/packages/node-xyz.scm (node-buffer-crc32): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-20 16:50:08 +02:00
Marius Bakke
c8f33b613e
gnu: fossil: Update to 2.18.
...
* gnu/packages/version-control.scm (fossil): Update to 2.18.
[source](snippet): Add substitution to fix SQLite compatibility.
2022-07-20 16:50:08 +02:00
Marius Bakke
9c814255a6
gnu: SQLite: Update to 3.39.1.
...
* gnu/packages/sqlite.scm (sqlite-next): Update to 3.39.1.
2022-07-20 16:50:08 +02:00
Marius Bakke
12efb1d381
gnu: fossil: Add 'release-monitoring-url' property.
...
* gnu/packages/version-control.scm (fossil)[properties]: New field.
2022-07-20 16:50:07 +02:00
Marius Bakke
66cd4c7c1f
gnu: smb4k: Update to 3.1.3.
...
* gnu/packages/kde-utils.scm (smb4k): Update to 3.1.3.
[source](uri): Remove /download part.
[source](file-name): Remove.
[inputs]: Add KDNSSD.
2022-07-20 16:49:40 +02:00
Efraim Flashner
6aa648f8d6
gnu: diffoscope: Only build with fpc on supported architectures.
...
* gnu/packages/diffoscope.scm (diffoscope)[native-inputs]: Only add fpc
on x86_64-linux or i686-linux.
2022-07-20 17:02:02 +03:00
Ricardo Wurmus
08dff365f6
gnu: guile-irc: Update to 0.3.0-1.7d08ce6.
...
* gnu/packages/guile-xyz.scm (guile-irc): Update to 0.3.0-1.7d08ce6.
[native-inputs]: Add pkg-config.
2022-07-20 15:54:51 +02:00
Nicolas Goaziou
855a37200b
gnu: emacs-eldoc: Update to 1.13.0.
...
* gnu/packages/emacs-xyz.scm (emacs-eldoc): Update to 1.13.0.
2022-07-20 15:08:22 +02:00
Nicolas Goaziou
f524917889
gnu: emacs-org-jira: Update to 4.3.3.
...
* gnu/packages/emacs-xyz.scm (emacs-org-jira): Update to 4.3.3.
2022-07-20 15:07:12 +02:00
jgart via Guix-patches via
c8b9740fec
gnu: emacs-org-modern: Update to 0.4.
...
* gnu/packages/emacs-xyz.scm (emacs-org-modern): Update to 0.4.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-07-20 15:04:15 +02:00
Jean-Pierre De Jesus DIAZ
7767d30f55
gnu: polkit-mozjs: Fix native-inputs on stage.
...
* gnu/packages/polkit.scm (polkit-duktape)[arguments]: Change the use of
`inputs' to `(or native-inputs inputs)' when searching for `docbook-xsl'
path.
Signed-off-by: Marius Bakke <marius@gnu.org >
2022-07-20 15:02:13 +02:00
Adam Kandur
b8e17dc223
gnu: Add emacs-soothe-theme.
...
* gnu/packages/emacs-xyz.scm (emacs-soothe-theme): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-07-20 14:59:51 +02:00
Tobias Geerinckx-Rice
479d9ea0c2
gnu: slang: Update code style.
...
* gnu/packages/slang.scm (slang)[source]: Turn the snippet into a
G-expression and remove the trailing #t.
[arguments]: Use G-expressions. Use 'fix-configure-script phase
from most.
2022-07-17 02:00:11 +02:00
Tobias Geerinckx-Rice
3928f69d00
gnu: Add most.
...
* gnu/packages/slang.scm (most): New public variable.
2022-07-17 02:00:11 +02:00
Tobias Geerinckx-Rice
687122b452
gnu: hdparm: Update to 9.64.
...
* gnu/packages/linux.scm (hdparm): Update to 9.64.
2022-07-17 02:00:16 +02:00
Tobias Geerinckx-Rice
dc2f6aaa56
gnu: libdeflate: Use G-expressions.
...
* gnu/packages/compression.scm (libdeflate)[arguments]:
Rewrite as G-expressions.
2022-07-17 02:00:16 +02:00
Tobias Geerinckx-Rice
0f4353d30a
gnu: libdeflate: Update to 1.12.
...
* gnu/packages/compression.scm (libdeflate): Update to 1.12.
2022-07-17 02:00:16 +02:00
Tobias Geerinckx-Rice
a432ae0c0b
gnu: feh: Use G-expressions.
...
* gnu/packages/image-viewers.scm (feh)[arguments]:
Rewrite as G-expressions.
2022-07-17 02:00:16 +02:00
Tobias Geerinckx-Rice
a7c3eb8fdf
gnu: feh: Update to 3.9.
...
* gnu/packages/image-viewers.scm (feh): Update to 3.9.
[arguments]: Add "magic=1" to #:make-flags.
2022-07-17 02:00:15 +02:00
Tobias Geerinckx-Rice
db0bab5b9e
gnu: inxi-minimal: Update to 3.3.19-1.
...
* gnu/packages/admin.scm (inxi-minimal): Update to 3.3.19-1.
2022-07-17 02:00:15 +02:00
Tobias Geerinckx-Rice
4f878006ff
gnu: hwinfo: Update to 21.82.
...
* gnu/packages/hardware.scm (hwinfo): Update to 21.82.
2022-07-17 02:00:15 +02:00
Tobias Geerinckx-Rice
7b6d522a81
gnu: libdmtx: Omit static library.
...
* gnu/packages/aidc.scm (libdmtx)[arguments]: Add "--disable-static"
to #:configure-flags.
2022-07-17 02:00:15 +02:00
Tobias Geerinckx-Rice
4450284372
gnu: libdmtx: Update to 0.7.7.
...
* gnu/packages/aidc.scm (libdmtx): Update to 0.7.7.
[arguments]: Re-enable tests.
2022-07-17 02:00:14 +02:00
Tobias Geerinckx-Rice
0b3f1e6702
gnu: diffoscope: Update to 219.
...
* gnu/packages/diffoscope.scm (diffoscope): Update to 219.
2022-07-17 02:00:14 +02:00
Tobias Geerinckx-Rice
85e859baa6
gnu: cpuid: Use G-expressions.
...
* gnu/packages/linux.scm (cpuid)[arguments]:
Rewrite as G-expressions.
2022-07-17 02:00:14 +02:00
Tobias Geerinckx-Rice
ce2635852f
gnu: cpuid: Update to 20220620.
...
* gnu/packages/linux.scm (cpuid): Update to 20220620.
2022-07-17 02:00:14 +02:00
Tobias Geerinckx-Rice
06d2e72262
gnu: dmidecode: Use G-expressions.
...
* gnu/packages/admin.scm (dmidecode)[arguments]:
Rewrite as G-expressions.
2022-07-17 02:00:13 +02:00
Tobias Geerinckx-Rice
e36fa380c4
gnu: dmidecode: Update to 3.4.
...
* gnu/packages/admin.scm (dmidecode): Update to 3.4.
2022-07-17 02:00:13 +02:00
Tobias Geerinckx-Rice
42d8cff4fd
gnu: nginx: Update to 1.23.0.
...
* gnu/packages/web.scm (nginx): Update to 1.23.0.
(nginx-documentation): Update to 1.23.0-2862-cf7551842617.
2022-07-17 02:00:13 +02:00
Tobias Geerinckx-Rice
c2aecd6738
gnu: lolcat: Move to (gnu packages toys).
...
As fun as this is, the gameplay is disappointing.
Also add a missing 2019 copyright for Liliana Marie.
* gnu/packages/games.scm (lolcat): Move from here…
* gnu/packages/toys.scm (lolcat): …to here.
2022-07-17 02:00:12 +02:00
Tobias Geerinckx-Rice
023b3ca6e5
gnu: smartmontools: Do not claim to be a ‘local build’.
...
* gnu/packages/admin.scm (smartmontools)[arguments]: Set BUILD_INFO
in #:make-flags.
2022-07-17 02:00:12 +02:00
Ricardo Wurmus
be7b314f3f
import: Enable recursive import for texlive packages.
...
* guix/import/texlive.scm (tlpdb->package): Add VERSION argument; include
explicit version field in output.
(texlive->guix-package): Set default value for VERSION argument; adjust call
of tlpdb->package.
(texlive-recursive-import): Accept REPO and VERSION keyword arguments.
* guix/import/utils.scm (package->definition): Add a clause to deal with
output from tlpdb->package.
* guix/scripts/import/texlive.scm (%options): Add "recursive" option.
(guix-import-texlive): Honor "recursive" option.
* doc/guix.texi (Using TeX and LaTeX): Mention "recursive" option.
2022-07-19 23:49:42 +02:00
arkhan
22530b2645
gnu: flameshot: Update to 12.1.0.
...
* gnu/packages/image.scm (flameshot): Update to 12.1.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 23:23:37 +02:00
Nikolay Korotkiy
3f62ddc0d5
gnu: gaupol: Update to 1.11.
...
* gnu/packages/video.scm (gaupol): Update to 1.11.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 23:10:25 +02:00
Wiktor Żelazny
cba0bc2942
gnu: Add texlive-babel-danish.
...
* gnu/packages/tex.scm (texlive-babel-danish): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 23:08:02 +02:00
Wiktor Żelazny
a8f1abec7f
gnu: Add texlive-generic-babel-norsk.
...
* gnu/packages/tex.scm (texlive-generic-babel-norsk): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 23:07:58 +02:00
jgart
5d66756662
gnu: Add berry.
...
* gnu/packages/wm.scm (berry): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 23:03:57 +02:00
Sharlatan Hellseher
c62b3e6575
gnu: Add glop
...
* gnu/packages/lisp-xyz.scm: (sbcl-glop, ecl-glop, cl-glop): New variables.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 23:00:36 +02:00
Antero Mejr
f2e6891f7d
gnu: Add python-bsdiff4.
...
* gnu/packages/python-xyz.scm (python-bsdiff4): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 21:39:53 +02:00
jgart
fce8de7800
gnu: Add python-clrprint.
...
* gnu/packages/python-xyz.scm (python-clrprint): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 21:38:45 +02:00
Ludovic Courtès
dbf0987971
gnu: clyrics: Update to 0.13.
...
* gnu/packages/music.scm (clyrics): Update to 0.13.
2022-07-19 18:57:05 +02:00
Ludovic Courtès
fb868cd779
services: tor: Switch to 'least-authority-wrapper'.
...
* gnu/services/networking.scm (tor-configuration->torrc): Remove "User"
and "PidFile".
(tor-shepherd-service): Use 'least-authority-wrapper' and
'make-forkexec-constructor' instead of
'make-forkexec-constructor/container'.
2022-07-19 18:54:42 +02:00
Thomas Danckaert
f0acb12db9
gnu: k3b: Add inputs bash-minimal and cdrtools.
...
* gnu/packages/kde-multimedia.scm (k3b)[inputs]: Add
bash-minimal (wrap-program is used), add cdrtools.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 18:54:42 +02:00
Thomas Danckaert
3b3fea7250
gnu: k3b: Fix build.
...
* gnu/packages/kde-multimedia.scm (k3b)[phases]: Add phase fix-cmake-taglib in
order to use correct Taglib include and library variables.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 18:54:42 +02:00
Antero Mejr
95acd67dd3
system: Add -I, --list-installed option.
...
* guix/scripts/system.scm (display-system-generation): Add
#:list-installed-regex and honor it.
(list-generations): Likewise.
(show-help, %options): Add "--list-installed".
(process-command): For 'describe' and 'list-generation', honor the
'list-installed option.
* doc/guix.texi (Invoking Guix System): Add information for
--list-installed flag.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 18:54:42 +02:00
Antero Mejr
55725724dd
home: Add -I, --list-installed option.
...
* guix/scripts/package.scm (list-installed): New procedure.
* guix/scripts/home.scm (%options, show-help): Add '--list-installed'.
(process-command): For 'describe' and 'list-generations', honor the
'list-installed option.
(display-home-environment-generation): Add #:list-installed-regex and
honor it.
(list-generations): Likewise.
* guix/scripts/utils.scm (pretty-print-table): New argument "left-pad".
* doc/guix.texi (Invoking Guix Home): Add information and example for
--list-installed flag.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 18:54:42 +02:00
Ekaitz Zarraga
18bb89c2b2
gnu: tcc: Update to a83b285.
...
Fixes <https://issues.guix.gnu.org/52140 >.
Reported by Guillaume Le Vaillant <glv@posteo.net >.
* gnu/packages/c.scm (tcc): Update to a83b28568596afd8792fd58d1a5bd157fc6b6634.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 18:54:42 +02:00
Ekaitz Zarraga
f35b771a0f
gnu: commencement: Explicitly provide the source of 'tcc-boot'.
...
* gnu/packages/commencement.scm (tcc-boot)[source]: Remove dependency on
tcc.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-19 18:54:41 +02:00
Ludovic Courtès
e87c6fb95a
upstream: Sort '%updaters' alphabetically.
...
Previously the output of 'guix refresh --list-updaters' would be
non-deterministic, and likewise the order in which updaters are tried
would be non-deterministic.
Reported by zimoun <zimon.toutoune@gmail.com >.
* guix/upstream.scm (%updaters): Add call to 'sort'.
2022-07-19 18:54:41 +02:00
Pierre Neidhardt
d519305d83
gnu: Add trivial-custom-debugger.
...
* gnu/packages/lisp-xyz.scm (cl-trivial-custom-debugger,
ecl-trivial-custom-debugger, sbcl-trivial-custom-debugger): New variables.
2022-07-19 06:35:32 +02:00
Efraim Flashner
8f0d45ccac
gnu: bidiv: Add release-monitoring-url.
...
* gnu/packages/fribidi.scm (bidiv)[properties]: New field.
2022-07-18 14:59:40 +03:00
Efraim Flashner
d65e327384
gnu: khal: Update to 0.10.5.
...
* gnu/packages/calendar.scm (khal): Update to 0.10.5.
[arguments]: Remove trailing #t from phases.
2022-07-18 14:26:25 +03:00
Efraim Flashner
f44dff89ad
gnu: weechat: Update to 3.6.
...
* gnu/packages/irc.scm (weechat): Update to 3.6.
[arguments]: Adjust instances of architecture specific code.
2022-07-18 14:17:52 +03:00
Efraim Flashner
548b7b182f
gnu: tig: Rebuild some of the generated documentation.
...
* gnu/packages/version-control.scm (tig)[source]: Add snippet to remove
some of the generated documentation.
2022-07-18 13:52:23 +03:00
Efraim Flashner
4ca19e88de
gnu: tig: Install shell completions.
...
* gnu/packages/version-control.scm (tig)[arguments]: Add custom phase to
install shell completions.
2022-07-18 13:22:15 +03:00
Efraim Flashner
cde4f3fdcb
gnu: tig: Update to 2.5.6.
...
* gnu/packages/version-control.scm (tig): Update to 2.5.6.
2022-07-18 12:43:46 +03:00
Nicolas Goaziou
584aeadb69
gnu: emacs-plz: Update to 0.2.
...
* gnu/packages/emacs-xyz.scm (emacs-plz): Update to 0.2.
2022-07-18 10:35:51 +02:00
Felix Gruber
236746900f
gnu: qgis: Disable failing tests.
...
* gnu/packages/geo.scm (qgis)[arguments]: Disable tests that fail after
upgrading geos to 3.10.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-18 00:21:32 +02:00
Felix Gruber
4f5babf936
gnu: saga: Update to 8.2.1.
...
* gnu/packages/geo.scm (saga): Update to 8.2.1.
[build-system]: Use cmake-build-system.
[arguments]: Set tests? to #f as there are no tests.
Add phase for changing into saga-gis directory which contains the
actual source code.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-18 00:21:32 +02:00
Felix Gruber
d58dc0fcd2
gnu: pcb2gcode: Update to 2.4.0.
...
* gnu/packages/engineering.scm (pcb2gcode): Update to 2.4.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-18 00:21:32 +02:00
Felix Gruber
c493ecfa9b
gnu: geos: Update to 3.10.2.
...
* gnu/packages/geo.scm (geos): Update to 3.10.2.
[build-system]: Use cmake-build-system.
[arguments]: Remove trailing #t in 'patch-test-shebangs phase.
[homepage]: Change to https://libgeos.org/ .
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-18 00:21:32 +02:00
Felix Gruber
df70fd3348
gnu: grass: Update to 7.8.7.
...
* gnu/packages/geo.scm (grass): Update to 7.8.7.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-18 00:21:32 +02:00
Felix Gruber
17a8a09795
gnu: libgeotiff: Update to 1.7.1.
...
* gnu/packages/geo.scm (libgeotiff): Update to 1.7.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-18 00:21:31 +02:00
Philip McGrath
87a10e315f
gnu: Add gbonds.
...
* gnu/packages/finance.scm (gbonds): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-18 00:21:31 +02:00
John Kehayias
44857d4baa
gnu: Add oauth2ms.
...
* gnu/packages/python-web.scm (oauth2ms): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-18 00:21:31 +02:00
John Kehayias
543f27caef
gnu: Add python-msal.
...
* gnu/packages/python-web.scm (python-msal): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-18 00:21:31 +02:00
Rostislav Svoboda
969e86784b
doc: Fix the example of "Run make automatically"
...
* doc/contributing.texi (Running Guix Before It Is Installed): add missing
command separator '--'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-18 00:21:31 +02:00
Jean-Pierre De Jesus DIAZ
f38adc47d0
gnu: xl2tpd: Update to 1.3.17.
...
* gnu/packages/vpn.scm (xl2tpd)[version]: Update to 1.3.17.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-18 00:21:31 +02:00
Paul A. Patience
3a3a32af12
gnu: Add pw.
...
* gnu/packages/monitoring.scm (pw): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-18 00:21:31 +02:00
Ludovic Courtès
fa65e645e9
doc: Tweak.
...
* doc/guix.texi (Using Guix Interactively): Add @cindex commands. Add
missing word.
2022-07-18 00:21:30 +02:00
Efraim Flashner
17984b0794
gnu: gst-plugins-bad: Limit inputs based on architecture.
...
* gnu/packages/gstreamer.scm (gst-plugins-bad)[inputs]: Only build with
mediasdk and svt-hevc on supported architectures.
2022-07-18 01:08:29 +03:00
Efraim Flashner
84997d9506
gnu: mediasdk: Limit supported architectures.
...
* gnu/packages/video.scm (mediasdk)[supported-systems]: New field.
2022-07-18 01:08:20 +03:00
Efraim Flashner
ba96d8c142
gnu: svt-hevc: Limit supported architectures.
...
* gnu/packages/video.scm (svt-hevc)[supported-systems]: New field.
2022-07-18 01:07:47 +03:00
Efraim Flashner
0f646fc79a
gnu: libmpeg3: Fix building on many architectures.
...
* gnu/packages/video.scm (libmpeg3)[arguments]: Add a custom phase to
set the CFLAGS based on the Makefile. Remove trailing #t from phases.
2022-07-17 23:33:55 +03:00
Efraim Flashner
f4ac752058
gnu: gama: Update to 2.21.
...
* gnu/packages/gps.scm (gama): Update to 2.21.
2022-07-17 20:41:50 +03:00
Nikolai Weidt
25354b5874
gnu: clojure-tools: Install tools.
...
When installing clojure-tools, clojure still had no access to the
tools because they were not installed.
* gnu/packages/clojure.scm (clojure-tools)[arguments]: Install
`tools.edn'.
Signed-off-by: Julien Lepiller <julien@lepiller.eu >
2022-07-17 15:21:06 +02:00
Julien Lepiller
2b29176f78
gnu: smb4k: Fix build.
...
Since the source file was called `download', it wasn't uncompressed during
the build.
* gnu/packages/kde-utils.scm (smb4k)[source]: Add `file-name'.
2022-07-17 15:09:42 +02:00
Leo Famulari
7558417360
gnu: linux-libre 5.4: Update to 5.4.206.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.206.
(linux-libre-5.4-pristine-source): Update hash.
2022-07-17 02:08:49 -04:00
Leo Famulari
08620f554a
gnu: linux-libre 5.10: Update to 5.10.131.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.131.
(linux-libre-5.10-pristine-source): Update hash.
2022-07-17 02:08:49 -04:00
Leo Famulari
8f97a42c0c
gnu: linux-libre 5.15: Update to 5.15.55.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.55.
(linux-libre-5.15-pristine-source): Update hash.
2022-07-17 02:08:49 -04:00
Leo Famulari
4b72f5c73f
gnu: linux-libre: Update to 5.18.12.
...
* gnu/packages/linux.scm (linux-libre-5.18-version): Update to 5.18.12.
(linux-libre-5.18-pristine-source): Update hash.
2022-07-17 02:08:41 -04:00
Maxim Cournoyer
8d7fdbe261
gnu: qtbase: Update to 6.3.1.
...
* gnu/packages/qt.scm (qtbase): Update to 6.3.1.
[cmake]: Delete commented out argument.
[configure-flags]: Add -DFEATURE_system_xcb_xinput=ON.
[phases]: Use gexps.
{patch-more-paths}: Use search-input-file. Patch /bin/ls.
{patch-mkspecs}: Use search-input-directory and search-input-file.
[native-inputs]: Rewrite with modify-inputs. Replace gtk+ with gtk. Remove
xorg-server-for-tests.
[inputs]: Override field to extend with bash-minimal, libxcb and md4c.
replace gtk+ with gtk. Use latest postgresql.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-17 00:45:37 -04:00
Tobias Geerinckx-Rice
670818a404
Revert "home: Add 'home-generation-base'."
...
This reverts commit 5df8f7802e .
This commit or the next one appears to have broken ‘guix pull’.
2022-07-17 02:00:00 +02:00
Tobias Geerinckx-Rice
24c0518dd4
Revert "guix gc: '--delete-generations' now deletes old Home generations."
...
This reverts commit ba22560627 .
2022-07-17 02:00:00 +02:00
Greg Hogan
32a0036343
gnu: iotop: Update to 1.22.
...
* gnu/packages/linux.scm (iotop): Update to 1.22.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-23 00:39:57 +02:00
Greg Hogan
50d2556149
gnu: git: Update to 2.37.1.
...
* gnu/packages/version-control.scm (git): Update to 2.37.1.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-23 00:39:57 +02:00
Ludovic Courtès
6c42db8351
doc: Clarify "Replicating Guix" section.
...
* doc/guix.texi (Specifying Additional Channels): Replace 'guix pull
--list-generations' example with 'guix describe'.
(Replicating Guix): Rewrite to insist on 'guix describe', to include
an example capturing channels and another one restoring them, and
mention "lock files".
2022-07-23 00:39:57 +02:00
r0man
666f12f125
gnu: clojure-instaparse: Update to 1.4.12.
...
This patch updates clojure-instaparse to 1.4.12. Due to the following AOT
related error I disabled AOT compilation for this package.
```
starting phase `build'
Execution error (IllegalArgumentException) at instaparse.auto-flatten-seq/fn$G (auto_flatten_seq.cljc:7).
No implementation of method: :conj-flat of protocol: #'instaparse.auto-flatten-seq/ConjFlat found for class: instaparse.auto_flatten_seq.AutoFlattenSeq
```
This seems to be a known issue with AOT compilation. The issue has been
discussed [1] and seems to be still an open issue.
[1] https://github.com/Engelberg/instaparse/issues/85
* gnu/packages/clojure.scm (clojure-instaparse): Update to 1.4.12.
[arguments]: Add 'fix-import' phase.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-23 00:39:57 +02:00
r0man
f65270c799
gnu: clojure-core-match: Update to 1.0.0.
...
* gnu/packages/clojure.scm (clojure-core-match): Update to 1.0.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-23 00:39:57 +02:00
r0man
884c87a100
gnu: clojure-algo-generic: Fix test failing under AOT in Clojure 1.11.1.
...
* gnu/packages/clojure.scm (clojure-algo-generic)[arguments]: Add
'fix-import' phase.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-23 00:39:57 +02:00
r0man
af7dd52136
gnu: clojure: Update to 1.11.1.
...
This patch updates Clojure to 1.11.1. It also adds the 'reset-class-timestamps
phase to the Clojure build system.
This phase makes sure the timestamp of compiled class files is set to a later
point in time than the timestamp of the corresponding Clojure source files. If
the timestamps of the class and source files are the same, the Clojure
compiler will compile the sources again which can lead to issues. This problem
has been discussed here [1]. The suggested solution was to keep/adjust the
timestamps of the class files.
[1] https://www.mail-archive.com/clojure@googlegroups.com/msg99928.html
* gnu/packages/clojure.scm (clojure): Update to 1.11.1 and update all of
LIBRARIES accordingly.
[arguments]: In 'unpack-library-sources' phase, copy from
"core-specs-alpha-src" and "spec-alpha-src" as well. Add
phases 'closure-spec-skip-macros', 'clojure-spec-compile',
'maven-classpath-properties', and 'reset-class-timestamps'.
* guix/build/clojure-build-system.scm (regular-jar-file?)
(reset-class-timestamps): New procedures.
(%standard-phases): Add 'reset-class-timestamps' phase.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-07-23 00:39:56 +02:00
r0man
9599122c4f
gnu: clojure-tools: Update to 1.11.1.1149.
...
* gnu/packages/clojure.scm (clojure-tools): Update to 1.11.1.1149.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-23 00:39:56 +02:00
r0man
1eb357fdac
gnu: clojure-tools-deps-alpha: Update to 0.14.1212.
...
* gnu/packages/clojure.scm (clojure-tools-deps-alpha): Update to 0.14.1212.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-23 00:39:56 +02:00
r0man
b20af3b5c3
gnu: clojure-tools-gitlibs: Update to 2.4.181.
...
* gnu/packages/clojure.scm (clojure-tools-gitlibs): Update to 2.4.181.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-23 00:39:56 +02:00
r0man
b11fc326fa
gnu: clojure-tools-cli: Update to 1.0.206.
...
* gnu/packages/clojure.scm (clojure-tools-cli): Update to 1.0.206.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-23 00:39:56 +02:00
vicvbcun
a0f39b7d79
gnu: eigen: Update to 3.4.0.
...
* gnu/packages/algebra.scm (eigen): Update to 3.4.0.
* gnu/packages/patches/eigen-fix-strict-aliasing-bug.patch: New file.
* gnu/packages/patches/eigen-remove-openmp-error-counting.patch,
gnu/packages/patches/eigen-stabilise-sparseqr-test.patch: Delete files.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-23 00:39:56 +02:00
Ludovic Courtès
ba22560627
guix gc: '--delete-generations' now deletes old Home generations.
...
Previously, 'guix gc -d4m' would ignore Home generations. With this
change, they are treated like profiles and generations that match the
pattern are deleted.
* guix/scripts/gc.scm (guix-gc)[delete-generations]: Add call to
'home-generation-base'.
* doc/guix.texi (Invoking guix gc): Document the change.
2022-07-23 00:39:55 +02:00
Ludovic Courtès
5df8f7802e
home: Add 'home-generation-base'.
...
* gnu/home.scm (%profile-generation-rx): New variable.
(home-generation-base): New procedure.
2022-07-23 00:39:55 +02:00
Ludovic Courtès
ff94f9dfde
deploy: Honor '--dry-run'.
...
* guix/scripts/deploy.scm (%options): Add "dry-run".
(show-what-to-deploy): Add #:dry-run? and honor it.
(guix-deploy): Honor --dry-run.
2022-07-23 00:39:55 +02:00
Ricardo Wurmus
c9a37f57cb
tests: Adjust texlive importer tests.
...
This is a follow-up to commit be7b314f3f .
* tests/texlive.scm: Add version field to expected output.
2022-07-22 23:03:46 +02:00
Tobias Geerinckx-Rice
cd3c4ad8fc
gnu: bind: Update to 9.16.31.
...
* gnu/packages/dns.scm (isc-bind): Update to 9.16.31.
2022-07-17 02:00:14 +02:00
Tobias Geerinckx-Rice
2dc229a30e
gnu: gsm: Update to 1.0.20.
...
* gnu/packages/audio.scm (gsm): Update to 1.0.20.
[arguments]: Don't explicitly return #t from phases.
2022-07-17 02:00:14 +02:00
Tobias Geerinckx-Rice
64466063ec
gnu: Add xvkbd.
...
* gnu/packages/xdisorg.scm (xvkbd): New public variable.
2022-07-17 02:00:14 +02:00
Marius Bakke
8d241c685a
gnu: python-chardet: Update to 5.0.0.
...
* gnu/packages/python-xyz.scm (python-chardet): Update to 5.0.0.
2022-07-16 18:32:13 +02:00
Marius Bakke
572ed223ab
gnu: python-requests: Update to 2.28.1.
...
* gnu/packages/python-web.scm (python-requests): Update to 2.28.1.
[arguments]: Remove #:phases.
2022-07-16 18:32:12 +02:00
Marius Bakke
1f22184b22
gnu: python-attrs: Disable test deadline on all architectures.
...
* gnu/packages/python-xyz.scm (python-attrs)[arguments]: Remove conditional.
2022-07-16 18:32:12 +02:00
Marius Bakke
13040cd309
gnu: mozjs: Remove obsolete workaround.
...
* gnu/packages/gnuzilla.scm (mozjs)[arguments]: Remove "--disable-rust-simd"
from #:configure-flags.
2022-07-16 18:32:12 +02:00
Marius Bakke
03a4908ea5
gnu: mozjs: Build with the default LLVM.
...
* gnu/packages/gnuzilla.scm (mozjs)[native-inputs]: Change from LLVM-9 to LLVM.
2022-07-16 18:32:12 +02:00
Marius Bakke
f49eef43fd
gnu: iso-codes: Remove input labels.
...
* gnu/packages/iso-codes.scm (iso-codes/official)[native-inputs]: Remove
conditional and labels.
[inputs]: Remove.
2022-07-16 18:32:12 +02:00
Marius Bakke
97e2983310
gnu: python-cffi: Remove input labels.
...
* gnu/packages/libffi.scm (python-cffi)[arguments]: Use SEARCH-INPUT-FILE
instead of labels.
2022-07-16 18:32:12 +02:00
Marius Bakke
32b7e12e77
gnu: python-cffi: Update to 1.15.1.
...
* gnu/packages/libffi.scm (python-cffi): Update to 1.15.1.
(python-cffi-1.15): Remove variable.
2022-07-16 18:32:12 +02:00
Michael Rohleder
f6904c0b19
gnu: xfce4-xkb-plugin: Update to 0.8.3.
...
* gnu/packages/xfce.scm (xfce4-xkb-plugin): Update to 0.8.3.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-15 23:37:09 -04:00
Michael Rohleder
0b393436d3
gnu: ristretto: Update to 0.12.3.
...
* gnu/packages/xfce.scm (ristretto): Update to 0.12.3.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-15 23:37:03 -04:00
Michael Rohleder
3c63bfcc68
gnu: exo: Update to 4.16.4.
...
* gnu/packages/xfce.scm (exo): Update to 4.16.4.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-15 23:36:57 -04:00
Maxim Cournoyer
88bfd423df
gnu: emacs-telega-contrib: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-telega-contrib)
[propagated-inputs]: Delete emacs-transient.
2022-07-15 23:17:54 -04:00
Maxim Cournoyer
0853bd0090
gnu: emacs-tshell: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-tshell)
[propagated-inputs]: Delete emacs-transient.
2022-07-15 23:17:54 -04:00
Maxim Cournoyer
d9e7fd8ca0
gnu: emacs-seriestracker: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-seriestracker)
[propagated-inputs]: Delete emacs-transient.
2022-07-15 23:17:54 -04:00
Maxim Cournoyer
95fadee0f2
gnu: emacs-calibredb: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-calibredb)
[propagated-inputs]: Remove emacs-transient.
2022-07-15 23:17:54 -04:00
Maxim Cournoyer
e02641f1ee
gnu: emacs-vdiff-magit: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-vdiff-magit)
[propagated-inputs]: Remove emacs-transient.
2022-07-15 23:17:53 -04:00
Maxim Cournoyer
f3a1add242
gnu: emacs-matcha: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-matcha)
[propagated-inputs]: Remove emacs-transient.
2022-07-15 23:17:53 -04:00
Maxim Cournoyer
2201e4ff1a
gnu: emacs-forge: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-forge)
[propagated-inputs]: Remove emacs-transient.
2022-07-15 23:17:53 -04:00
Maxim Cournoyer
e32f200e4c
gnu: emacs-docker: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-docker)
[propagated-inputs]: Remove emacs-transient.
2022-07-15 23:17:53 -04:00
Maxim Cournoyer
6e3589dea0
gnu: emacs-org-ql: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-org-ql)
[propagated-inputs]: Remove emacs-transient.
2022-07-15 23:17:53 -04:00
Maxim Cournoyer
110066508a
gnu: emacs-toodoo: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-toodoo)
[propagated-inputs]: Remove emacs-transient.
2022-07-15 23:17:53 -04:00
Maxim Cournoyer
0620e770b0
gnu: emacs-rg: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-rg)
[propagated-inputs]: Remove emacs-transient.
2022-07-15 23:17:52 -04:00
Maxim Cournoyer
268b53b3a6
gnu: emacs-magit-annex: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-magit-annex)
[propagated-inputs]: Remove emacs-transient.
2022-07-15 23:17:44 -04:00
Maxim Cournoyer
2751b36e45
gnu: emacs-magit-svn: Use builtin transient library.
...
* gnu/packages/emacs-xyz.scm (emacs-magit-svn)
[propagated-inputs]: Delete emacs-transient.
2022-07-15 23:14:28 -04:00
Jorge P. de Morais Neto
82fa1a38e7
gnu: emacs-git-timemachine: Use builtin transient library.
...
The transient library is now included in Emacs 28.
* gnu/packages/emacs-xyz.scm (emacs-git-timemachine)
[propagated-inputs]: Delete field.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-15 22:55:19 -04:00
Jorge P. de Morais Neto
44c4917ecb
gnu: emacs-ytdl: Use builtin transient library.
...
The transient library is now included in Emacs 28.
* gnu/packages/emacs-xyz.scm (emacs-ytdl)
[propagated-inputs]: Delete emacs-transient. Add emacs-dash.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-15 22:54:43 -04:00
Jorge P. de Morais Neto
20997b6409
gnu: emacs-magit: Use builtin transient library.
...
The transient library is now included in Emacs 28.
* gnu/packages/emacs-xyz.scm (emacs-magit)
[propagated-inputs]: Delete emacs-transient.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-15 22:54:26 -04:00
Jorge P. de Morais Neto
6ff3fe86b5
gnu: emacs-geiser: Use builtin project and transient libraries.
...
These libraries are now included in Emacs 28.
* gnu/packages/emacs-xyz.scm (emacs-geiser)[propagated-inputs]: Delete field.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-15 22:54:17 -04:00
Michael Rohleder
afb63c840c
gnu: mousepad: Update to 0.5.10.
...
* gnu/packages/xfce.scm (mousepad): Update to 0.5.10.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-15 21:19:42 -04:00
Michael Rohleder
08ef65f6af
gnu: xfce4-settings: Update to 4.16.3.
...
* gnu/packages/xfce.scm (xfce4-settings): Update to 4.16.3.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-15 21:18:06 -04:00
Michael Rohleder
febd167c7d
gnu: xfce4-wavelan-plugin: Update to 0.6.3.
...
* gnu/packages/xfce.scm (xfce4-wavelan-plugin): Update to 0.6.3.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-15 21:16:39 -04:00
Liliana Marie Prikler
5b351982c2
Revert "gnu: Add chicken-args."
...
This reverts commit 44bb5507d6 , which references
a package that does not exist, thus breaking “guix pull”.
2022-07-16 02:26:55 +02:00
Maxim Cournoyer
154d270012
vala-next: Do not wrap binaries, use gexps, default to 'gcc' rather than 'cc'.
...
Fixes <https://issues.guix.gnu.org/56467 >.
Reported by <two@envs.net >.
* gnu/packages/gnome.scm (vala-next)[arguments]: Override inherited field.
Use gexps.
[phases]{use-gcc-by-default}: New phase.
{patch-docbook-xml}: Use search-input-directory.
{glib-or-gtk-wrap}: Delete phase.
2022-07-15 17:42:04 -04:00
Maxim Cournoyer
e2bd783657
gnu: Add vala-next, upgraded to 0.56.2.
...
* gnu/packages/gnome.scm (vala-next): New variable.
2022-07-15 17:41:41 -04:00
Hartmut Goebel
bf82f7cbe3
import: pypi: Fix coding style.
...
I missed this remark from the review when pushing the last change.
* guix/import/pypi.scm(python->package-name): Replace the trailing '#t'-case
by a 'else'.
2022-07-15 21:19:08 +02:00
Hartmut Goebel
2e0b7867fe
import: pypi: Add special treatment for Tryton package names,
...
Trytond modules are Python packages, and treated like this in guix. Anyhow,
since they are add-ons for the “Trytond“ application, their guix package name
do not get the "python-" prefix like other Python modules, (see also
https://issues.guix.gnu.org/46057#1 ). This change disables adding the
"python-" prefix to the guix package name for Trytond modules when importing
and updating, thus inhibiting irritating messages like in this example:
$ guix refresh -u trytond-party
…
trytond-party: consider adding this propagated input: python-trytond-country
trytond-party: consider removing this propagated input: trytond-country
Handling this special case seems appropriate since (as of now) there are
about 165 packages for Trytond and the number is growing.
* guix/import/pypi.scm(python->package-name): Don't add "python-" prefix for
trytond packages.
2022-07-15 21:14:22 +02:00
Hartmut Goebel
af025d99f4
import: egg: Fix updater.
...
'egg-source-url' did not return the URL, but the quoted expression. This did
break the updater, which expects the URL as a string.
* guix/import/egg.scm(egg-source-url): Remove.
(egg->guix-package)[egg-content]: Use quoted expression directly.
(latest-release): Call egg-uri instead of egg-source-url.
2022-07-15 20:17:37 +02:00
Hartmut Goebel
44bb5507d6
gnu: Add chicken-args.
...
* gnu/packages/chicken.scm (chicken-args): New variable.
2022-07-15 20:17:36 +02:00
Hartmut Goebel
ad9adec6b4
gnu: Add chicken-srfi-13.
...
* gnu/packages/chicken.scm (chicken-srfi-13): New variable.
2022-07-15 20:17:36 +02:00
Hartmut Goebel
7de49a0e01
gnu: Add chicken-crypto-tools.
...
* gnu/packages/chicken.scm (chicken-crypto-tools): New variable.
2022-07-15 20:17:36 +02:00
Ludovic Courtès
4ce7f1fb24
monad-repl: Add "build", "lower", and "verbosity" commands.
...
Fixes <https://issues.guix.gnu.org/56114 >.
Reported by Maxime Devos <maximedevos@telenet.be >.
* guix/monad-repl.scm (%build-verbosity): New variable.
(evaluate/print-with-store): New procedure.
(run-in-store): Rewrite in terms of 'evaluate/print-with-store'.
(verbosity, lower, build): New meta-commands.
* doc/guix.texi (Using Guix Interactively): New node.
(The Store Monad): Link to it.
(Invoking guix repl): Likewise.
* doc/contributing.texi (Running Guix Before It Is Installed): Refer to
it.
(The Perfect Setup): Suggest 'guix install' rather than 'guix package -i'.
2022-07-15 17:36:57 +02:00
Ludovic Courtès
30915a7419
shell: Ignore cached profiles when using '--export-manifest'.
...
Fixes <https://issues.guix.gnu.org/56539 >.
Fixes a bug where "guix shell -D pkg --export-manifest" would provide
the expansion of PKG's dependencies instead of a call to
'package-development-manifest' if that profile happened to be cached.
* guix/scripts/shell.scm (profile-cached-gc-root): Add clause for 'export-manifest?.
2022-07-15 17:36:57 +02:00
Nicolas Goaziou
4eb33b3706
gnu: giac: Update to 1.9.0-19.
...
* gnu/packages/algebra.scm (giac): Update to 1.9.0-19.
2022-07-15 15:06:56 +02:00
Efraim Flashner
57629484b0
gnu: python-numpy: Fix buidling on powerpc64le-linux.
...
Reported by mrvdb- on IRC.
* gnu/packages/python-xyz.scm (python-numpy)[arguments]: Adjust custom
'fix-executable-paths phase to substitute occurrences of '/bin/true'.
2022-07-15 15:31:41 +03:00
Nicolas Goaziou
8bfc8ffb82
gnu: emacs-org-fragtog: Remove ".git" suffix from repository URI.
...
* gnu/packages/emacs-xyz.scm (emacs-org-fragtog)[source]<uri>: Remove ".git" suffix.
2022-07-15 13:53:06 +02:00
Nicolas Goaziou
9bf9454494
gnu: emacs-org-fragtog: Update to 0.4.2.
...
* gnu/packages/emacs-xyz.scm (emacs-org-fragtog): Update to 0.4.2.
2022-07-15 13:52:53 +02:00
Nicolas Goaziou
571a2c60da
gnu: emacs-elpher: Update to 3.4.2.
...
* gnu/packages/emacs-xyz.scm (emacs-elpher): Update to 3.4.2.
2022-07-15 13:52:02 +02:00
Nicolas Goaziou
88af17f23d
gnu: emacs-lsp-ui: Update to 8.0.1.
...
* gnu/packages/emacs-xyz.scm (emacs-lsp-ui): Update to 8.0.1.
2022-07-15 13:50:27 +02:00
jgart
4579087b44
gnu: emacs-spaceleader: Update to 0.0.3-1.5d88d12.
...
* gnu/packages/emacs-xyz.scm (emacs-spaceleader): Update to 0.0.3-1.5d88d12.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr >
2022-07-15 13:47:43 +02:00
Paul A. Patience
a15b769c2f
gnu: python-pyvista: Update to 0.35.1.
...
* gnu/packages/python-science (python-pyvista): Update to 0.35.1.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-15 09:46:51 +01:00
Paul A. Patience
fa21cd31cb
gnu: gmsh: Update to 4.10.5.
...
* gnu/packages/maths.scm (gmsh): Update to 4.10.5.
[source]: Reindent.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-15 09:46:16 +01:00
Paul A. Patience
ab636bde18
gnu: gmsh: Remove trailing booleans.
...
* gnu/packages/maths.scm (gmsh)[snippet, arguments]: Remove trailing
booleans.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-15 09:46:15 +01:00
Paul A. Patience
d10af3fc97
gnu: gmsh: Remove input labels.
...
* gnu/packages/maths.scm (gmsh)[inputs]: Remove labels.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-15 09:46:15 +01:00
Paul A. Patience
37c53cb1e8
gnu: asymptote: Update to 2.81.
...
* gnu/packages/plotutils.scm (asymptote): Update to 2.81.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-15 09:44:48 +01:00
Christopher Baines
3bc9c7ecb0
gnu: guix-build-coordinator: Update to 0-59.cc884ef.
...
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-59.cc884ef.
2022-07-15 09:40:15 +01:00
Christopher Baines
7558b27b22
gnu: guix-data-service: Update to 0.0.1-33.ee73d2c.
...
* gnu/packages/web.scm (guix-data-service): Update to 0.0.1-33.ee73d2c.
2022-07-15 09:39:40 +01:00
Timotej Lazar
6a2a8ca1f5
gnu: tests: Fix guix-data-service test.
...
Since revision 32, guix-data-service starts immediately but returns an HTTP
error code until initialization is complete. Adjust the test accordingly, and
remove the increased startup time limit.
* gnu/services/guix.scm (guix-data-service): Use default #:pid-file-timeout.
* gnu/tests/guix.scm (guix-data-service): Retry the http-get test several
times to give the service time to initialize.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-15 09:38:42 +01:00
Ricardo Wurmus
9238ba5874
gnu: r-affycompatible: Build reproducibly.
...
* gnu/packages/bioconductor.scm (r-affycompatible)[arguments]: Sort XML
elements before generating R code from them.
2022-07-15 00:07:42 +02:00
Maxim Cournoyer
cbdfa54c77
gnu: system: Add fusermount3 to setuid-programs.
...
Fixes <https://issues.guix.gnu.org/47716 >.
* gnu/system.scm (%setuid-programs): Add /bin/fusermount3 from the fuse-3
package.
Reported-by: raingloom <raingloom@riseup.net >
2022-07-14 15:16:23 -04:00
Leo Famulari
0918c890ac
gnu: linux-libre 4.9: Update to 4.9.323.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.323.
(linux-libre-4.9-pristine-source): Update hash.
2022-07-14 13:19:47 -04:00
Leo Famulari
8698db32a3
gnu: linux-libre 4.14: Update to 4.14.288.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.288.
(linux-libre-4.14-pristine-source): Update hash.
2022-07-14 13:19:47 -04:00
Leo Famulari
64cfc6858d
gnu: linux-libre 4.19: Update to 4.19.252.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.252.
(linux-libre-4.19-pristine-source): Update hash.
2022-07-14 13:19:46 -04:00
Leo Famulari
323ef7a282
gnu: linux-libre 5.4: Update to 5.4.205.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.205.
(linux-libre-5.4-pristine-source): Update hash.
2022-07-14 13:19:46 -04:00
Leo Famulari
d47f028715
gnu: linux-libre 5.10: Update to 5.10.130.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.130.
(linux-libre-5.10-pristine-source): Update hash.
2022-07-14 13:19:46 -04:00
Leo Famulari
e61cfd48bf
gnu: linux-libre 5.15: Update to 5.15.54.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.54.
(linux-libre-5.15-pristine-source): Update hash.
2022-07-14 13:19:45 -04:00
Leo Famulari
16c2d79262
gnu: linux-libre: Update to 5.18.11.
...
* gnu/packages/linux.scm (linux-libre-5.18-version): Update to 5.18.11.
(linux-libre-5.18-pristine-source): Update hash.
2022-07-14 13:19:38 -04:00
Lars-Dominik Braun
56136cfc30
gnu: kakoune: Update to 2021.11.08.
...
* gnu/packages/text-editors.scm (kakoune)[version]: Update to 2021.11.08.
[arguments]<#:phases>: Remove unnecessary phase 'chdir and drop deprecated #t
return value.
[native-inputs]: Drop ruby and asciidoc, which are not used during build.
2022-07-14 10:28:00 +02:00
Maxim Cournoyer
692c2ad327
gnu: python-gevent: Disable failing test on i686-linux.
...
Fixes <https://issues.guix.gnu.org/42553 >.
* gnu/packages/python-xyz.scm (python-gevent)
[phases]{adjust-tests}: Skip the test__core_stat.py test suite.
2022-07-13 22:34:58 -04:00
Oleg Pykhalov
b33e1a183f
services: docker: Fix race condition.
...
Fixes <https://issues.guix.gnu.org/38432 >.
* gnu/packages/patches/containerd-create-pid-file.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add this.
* gnu/packages/docker.scm (containerd)[source]: Add this patch.
* gnu/services/docker.scm
(containerd-shepherd-service): Add #:pid-file and #:pid-file-timeout.
* gnu/services/docker.scm (docker-shepherd-service): Add --containerd flag.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-13 21:36:41 -04:00
Ludovic Courtès
5f8adea86c
doc: Add example of 'bash-extension'.
...
* doc/guix.texi (Shells Home Services): Add 'bash-extension' example.
2022-07-14 01:05:34 +02:00
Ludovic Courtès
af4c103595
home: services: environment-variables: Double-quote values.
...
Fixes <https://issues.guix.gnu.org/54469 >.
Reported by Maxime Devos <maximedevos@telenet.be >.
* gnu/home/services.scm (environment-variable-shell-definitions): New
procedure, with code formerly in 'serialize-posix-env-vars'.
(environment-variables->setup-environment-script): Change
"setup-environment" from 'mixed-text-file' to 'computed-file', and use
'environment-variable-shell-definitions'.
* tests/guix-home.sh: Test it.
* gnu/home/services/shells.scm (serialize-posix-env-vars): Delegate to
'environment-variable-shell-definitions'.
2022-07-14 01:05:34 +02:00
Ludovic Courtès
8af749224f
home: services: shells: Double-quote environment variable values.
...
Fixes <https://issues.guix.gnu.org/56540 >.
Until now, environment variable values were emitted unquoted, producing
invalid shell code if the value contains spaces for example.
* gnu/home/services/shells.scm (serialize-posix-env-vars): Define
'shell-quote' procedure in staged code and use it for #$value.
* tests/guix-home.sh: Add test for PS1 variable with a value containing
spaces.
2022-07-14 01:05:34 +02:00
Ludovic Courtès
9e4cbb3076
home: services: shell: Do not use "setup" as a verb.
...
* gnu/home/services/shells.scm (zsh-file-zprofile)
(add-bash-configuration): Do not use "setup" as a word in generated
files. End sentences with a period.
2022-07-14 01:05:34 +02:00
Ludovic Courtès
7a6302acb0
home: services: Fix typo.
...
* gnu/home/services.scm (environment-variables->setup-environment-script):
Fix spelling of 'warn-about-duplicate-definitions'.
2022-07-14 01:05:34 +02:00
Marius Bakke
c420b66c23
gnu: xorg-server: Update to 21.1.4 [fixes CVE-2022-2319, CVE-2022-2320].
...
* gnu/packages/xorg.scm (xorg-server): Update to 21.1.4.
2022-07-14 00:00:50 +02:00
Marius Bakke
4442a5db77
Merge branch 'master' into staging
2022-07-13 23:34:58 +02:00
Marius Bakke
5b48591176
gnu: python-pillow: Update to 9.2.0.
...
* gnu/packages/python-xyz.scm (python-pillow): Update to 9.2.0.
2022-07-13 23:31:23 +02:00
Marius Bakke
d33f051740
gnu: libmng: Remove input labels.
...
* gnu/packages/image.scm (libmng)[propagated-inputs]: Remove labels.
2022-07-13 23:31:23 +02:00
Marius Bakke
dce7ed146d
gnu: libunwind: Enable tests.
...
* gnu/packages/libunwind.scm (libunwind)[arguments]: Remove #:tests?. Add
#:make-flags.
2022-07-13 23:30:59 +02:00
Marius Bakke
b160795a0b
gnu: samba: Update to 4.16.2.
...
* gnu/packages/samba.scm (samba): Update to 4.16.2.
2022-07-13 23:25:12 +02:00
Marius Bakke
5b6b731c7d
gnu: Remove duplicate package.
...
* gnu/packages/autotools.scm (libtool-2.4.7): Remove variable.
2022-07-13 23:25:11 +02:00
Jonathan Brielmaier
45ca6967ab
etc: teams: Add entry for Jonathan Brielmaier.
...
* etc/teams.scm.in ("Jonathan Brielmaier"): New member.
2022-07-13 20:06:26 +02:00
Jonathan Brielmaier
a3f8eac564
etc: teams: Add mozilla team.
...
* etc/teams.scm.in (mozilla): New team.
2022-07-13 20:03:35 +02:00
Maxim Cournoyer
2e6be59131
gnu: mapnik: Update to 3.1.0.
...
The build still fails, but hopefully it gets us closer.
* gnu/packages/geo.scm (mapnik): Update to 3.1.0.
2022-07-13 12:51:25 -04:00
Raghav Gururajan
6ed5b496bc
gnu: gajim: Update to 1.4.6.
...
* gnu/packages/messaging.scm (gajim)[version]: Update to 1.4.6.
2022-07-13 12:00:43 -04:00
Raghav Gururajan
2998009850
gnu: gajim: Disable failing tests.
...
* gnu/packages/messaging.scm (gajim)[phases]: Add disable-failing-tests phase.
2022-07-13 11:58:16 -04:00
Maxim Cournoyer
dcf133587a
tests: build-emacs-utils: Allow test to pass on Emacs 27 too.
...
* tests/build-emacs-utils.scm
("emacs-batch-script: raise &emacs-batch-error on failure"): More loosely
match expected error string, which differs between Emacs 27 and Emacs 28.
2022-07-13 10:49:40 -04:00
Nicolas Goaziou
e1a8100936
gnu: emacs-hyperbole: Improve package style.
...
* gnu/packages/emacs-xyz.scm (emacs-hyperbole)[arguments]: Use G-expressions.
2022-07-13 16:06:22 +02:00
Nicolas Goaziou
f6b18b5372
gnu: emacs-hyperbole: Update to 8.0.0.
...
* gnu/packages/emacs-xyz.scm (emacs-hyperbole): Update to 8.0.0.
[arguments]<#:include>: Use %default-include.
<#:phases>: Add build fix.
* gnu/packages/patches/emacs-hyperbole-toggle-messaging.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Delete reference to removed file.
2022-07-13 16:02:36 +02:00
Nicolas Goaziou
e31f3e9d1c
gnu: emacs-evil-nerd-commenter: Update to 3.5.7.
...
* gnu/packages/emacs-xyz.scm (emacs-evil-nerd-commenter): Update to 3.5.7.
2022-07-13 15:41:54 +02:00
Nicolas Goaziou
758e49a7ae
gnu: emacs-evil-matchit: Update to 3.0.0.
...
* gnu/packages/emacs-xyz.scm (emacs-evil-matchit): Update to 3.0.0.
2022-07-13 15:40:37 +02:00
Nicolas Goaziou
0e87328f0b
gnu: emacs-dts-mode: Update to 1.0.
...
* gnu/packages/emacs-xyz.scm (emacs-dts-mode): Update to 1.0.
[source]<origin>: Switch to ELPA repository since GitHub repository does not
seem to be up to date anymore.
[home-page]: Update URL.
2022-07-13 15:31:33 +02:00
Nicolas Goaziou
9611664d87
gnu: emacs-fennel-mode: Update to 0.5.0.
...
* gnu/packages/emacs-xyz.scm (emacs-fennel-mode): Update to 0.5.0.
[source]<origin>: Update URI.
[home-page]: Update URL.
2022-07-13 15:28:36 +02:00
Nicolas Goaziou
e98f363b13
gnu: emacs-meow: Update to 1.4.2.
...
* gnu/packages/emacs-xyz.scm (emacs-meow): Update to 1.4.2.
2022-07-13 15:18:35 +02:00
Nicolas Goaziou
0a4827a96b
gnu: emacs-org-static-blog: Update to 1.6.0.
...
* gnu/packages/emacs-xyz.scm (emacs-org-static-blog): Update to 1.6.0.
2022-07-13 15:17:04 +02:00
Nicolas Goaziou
1aecb0c574
gnu: emacs-prescient: Update to 5.2.1.
...
* gnu/packages/emacs-xyz.scm (emacs-prescient): Update to 5.2.1.
2022-07-13 15:14:37 +02:00
Nicolas Goaziou
1f8b50a60d
gnu: emacs-yaml: Update to 0.5.1.
...
* gnu/packages/emacs-xyz.scm (emacs-yaml): Update to 0.5.1.
2022-07-13 15:10:16 +02:00
Maxim Cournoyer
6d5b3df7af
gnu: sushi: Fix URI.
...
Fixes <https://issues.guix.gnu.org/56537 >, introduced with ef82f34482 .
* gnu/packages/gnome.scm (sushi)[source]: Adjust URI.
Reported-by: Christopher Howard <christopher@librehacker.com >
2022-07-13 08:38:56 -04:00
Maxim Cournoyer
f516f33337
gnu: r-d3r: Update d3.js input hashes, mutated in place.
...
Fixes <https://issues.guix.gnu.org/46456 >.
* gnu/packages/cran.scm (r-d3r)[native-inputs]: Update hashes for d3.v5.js,
d3.v6.js and d3.v7.js.
Reported-by: Danny Milosavljevic <dannym@scratchpost.org >
2022-07-13 08:36:04 -04:00
Jan (janneke) Nieuwenhuizen
c93f83757a
gnu: dezyne: Update to 2.15.4.
...
* gnu/packages/dezyne.scm (dezyne): Update to 2.15.4.
2022-07-13 08:21:41 +02:00
Maxim Cournoyer
734f50c31d
gnu: elpa: Update source URL.
...
Fixes <https://issues.guix.gnu.org/46460 >.
* gnu/packages/maths.scm (elpa): Update source URL.
Reported-by: Danny Milosavljevic <dannym@scratchpost.org >
2022-07-13 01:08:59 -04:00
Maxim Cournoyer
84eab6dc74
gnu: r-rda: Update hash.
...
Fixes <https://issues.guix.gnu.org/46475 >.
* gnu/packages/cran.scm (r-rda): Update hash.
Reported-by: Danny Milosavljevic <dannym@scratchpost.org >
2022-07-13 00:53:29 -04:00
Maxim Cournoyer
b729be989f
gnu: trilinos-serial-xyce: Fetch source from git.
...
Fixes <https://issues.guix.gnu.org/46480 >.
* gnu/packages/engineering.scm (trilinos-serial-xyce)[source]: Fetch from git.
[phases]: Delete trailing #t.
[native-inputs, inputs]: Use new style.
Reported-by: Danny Milosavljevic <dannym@scratchpost.org >
2022-07-13 00:32:23 -04:00
Maxim Cournoyer
c8f32406e8
gnu: deja-dup: Use new style inputs.
...
* gnu/packages/gnome.scm (deja-dup)[inputs, native-inputs]: Use new style.
2022-07-12 23:23:27 -04:00
Maxim Cournoyer
cabfbcf6e0
gnu: deja-dup: Update to 43.4.
...
Fixes <https://issues.guix.gnu.org/55544 >.
* gnu/packages/gnome.scm (deja-dup): Update to 43.4.
[phases]{patch-paths}: Adjust Duplicityinstance.vala path.
{skip-gtk-update-icon-cache}: Delete phase.
[inputs]: Replace gtk+ with gtk. Add libadwaita. Replace libsoup-minimal-2
with libsoup.
[native-inputs]: Add gtk:bin.
Reported-by: Michael Terry <mike@mterry.name >
2022-07-12 23:23:27 -04:00
Maxim Cournoyer
3f814d1878
gnu: gtk: Use new style inputs.
...
* gnu/packages/gtk.scm (gtk)[native-inputs]: Use new style.
[propagated-inputs]: Likewise.
2022-07-12 23:23:26 -04:00
Maxim Cournoyer
9819aac1d8
gnu: gtk: Update to 4.6.6.
...
* gnu/packages/gtk.scm (gtk): Update to 4.6.6.
[phases]{patch}: Disable 'unaligned-offscreen' test.
2022-07-12 23:23:26 -04:00
Maxim Cournoyer
ad7a2be415
gnu: inkscape: Add bash-minimal to inputs.
...
* gnu/packages/inkscape.scm (inkscape)[inputs]: Add bash-minimal.
2022-07-12 23:23:26 -04:00
Maxim Cournoyer
b1523ffac5
gnu: inkscape: Wrap GDK_PIXBUF_MODULE_FILE.
...
Fixes <https://issues.guix.gnu.org/55634 >.
* gnu/packages/inkscape.scm (inkscape)
[phases]{wrap-program}: Override phase.
Reported-by: Maxime Devos <maximedevos@telenet.be >
2022-07-12 23:23:26 -04:00
Maxim Cournoyer
7dcba233a3
gnu: inkscape: Reintroduce variable, updated to 1.2.
...
* gnu/packages/inkscape.scm (inkscape): Update to 1.2.
[phases]{disable-problematic-tests}: New phase.
2022-07-12 23:23:26 -04:00
Maxim Cournoyer
023259c4bd
gnu: inkscape: Rename variable to inkscape/stable and hide package.
...
This will allow introducing a new 'inkscape' package that can be more freely
upgraded on the main branch.
* gnu/packages/inkscape.scm (inkscape): Rename to...
(inkscape/stable): ... this, and make it a hidden package.
* gnu/packages/admin.scm (wpa-supplicant-gui)[native-inputs]: Rename inkscape
input accordingly.
* gnu/packages/docbook.scm (dblatex): Likewise.
* gnu/packages/gnome-xyz.scm (arc-theme): Likewise.
* gnu/packages/python-xyz.scm (python-matplotlib-documentation): Likewise.
(python-nbconvert): Likewise.
* gnu/packages/xfce.scm (xfdesktop): Likewise.
* gnu/packages/xorg.scm (hackneyed-x11-cursors): Likewise.
2022-07-12 23:23:25 -04:00
Maxim Cournoyer
73d7247aac
gnu: tracker-miners: Use new style inputs.
...
* gnu/packages/gnome.scm (tracker-miners)
[native-inputs]: Use new style inputs.
[inputs]: Likewise.
2022-07-12 23:23:25 -04:00
Maxim Cournoyer
c13a258575
gnu: tracker-miners: Update to 3.3.1.
...
* gnu/packages/gnome.scm (tracker-miners): Update to 3.3.1.
[inputs]: Replace libsoup-minimal-2 with libsoup.
[phases]{check}: Do not run the 'slow' tests, which fail.
2022-07-12 23:23:25 -04:00
Maxim Cournoyer
5f52155549
gnu: tracker: Use new style inputs.
...
* gnu/packages/gnome.scm (tracker)
[native-inputs]: Use new style inputs.
[inputs]: Likewise.
2022-07-12 23:23:25 -04:00
Maxim Cournoyer
d6556ba1bf
gnu: tracker: Propagate libraries 'required' by pkg-config.
...
* gnu/packages/gnome.scm (tracker)[inputs]: Move libxml2, icu4c, json-glib and
sqlite to...
[propagated-inputs]: ... here. Add glib.
2022-07-12 23:23:25 -04:00
Maxim Cournoyer
d0f2441dac
gnu: tracker: Update to 3.3.1.
...
* gnu/packages/gnome.scm (tracker): Update to 3.3.1.
[inputs]: Replace libsoup-minimal-2 with libsoup.
2022-07-12 23:23:25 -04:00
Maxim Cournoyer
fcd552d776
gnu: libadwaita: Propagate gtk.
...
* gnu/packages/gnome.scm (libadwaita)[inputs]: Move gtk to...
[propagated-inputs]: ... here.
2022-07-12 23:23:24 -04:00
Maxim Cournoyer
58dba446e3
gnu: sushi: Add bash-minimal to inputs.
...
* gnu/packages/gnome.scm (sushi)[inputs]: Add bash-minimal.
2022-07-12 23:23:24 -04:00
Maxim Cournoyer
0fc3d5a6d4
gnu: sushi: Use new style inputs.
...
* gnu/packages/gnome.scm (sushi)[native-inputs, inputs]: Use new style.
2022-07-12 23:23:24 -04:00
Maxim Cournoyer
ef82f34482
gnu: sushi: Update to 42.0.
...
* gnu/packages/gnome.scm (sushi): Update to 42.0.
[inputs]: Replace webkitgtk-with-libsoup2 with webkitgtk.
2022-07-12 23:23:24 -04:00
Ludovic Courtès
6cd6753218
doc: Prefer "guix show" over "guix package --show".
...
* doc/contributing.texi (Synopses and Descriptions): Use "guix show"
instead of "guix package --show".
2022-07-13 00:20:06 +02:00
Greg Hogan
bfec24b118
gnu: faust-2: Update to 2.41.1.
...
* gnu/packages/audio.scm (faust-2): Update to 2.41.1.
[build-system]: Replace gnu-build-system with cmake-build-system.
[arguments]<#:phases>: Invoke cmake directly to build the main package
and invoke make directly to build ancillary tools.
[native-inputs]: Replace llvm-3.8 with llvm.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-13 00:20:06 +02:00
Artyom V. Poptsov
74bbe09b1f
gnu: Add candle.
...
* gnu/packages/engineering.scm (candle): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-13 00:20:05 +02:00
Samuel Fadel
20693769d6
gnu: Add breeze-gtk.
...
* gnu/packages/kde-plasma.scm (breeze-gtk): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-13 00:20:05 +02:00
Greg Hogan
3bfd7eaaeb
gnu: git: Update to 2.37.0.
...
* gnu/packages/version-control.scm (git): Update to 2.37.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-13 00:20:05 +02:00
Ricardo Wurmus
82e7e05dea
gnu: lv2-mda-piano: Add missing native input.
...
* gnu/packages/audio.scm (lv2-mda-piano)[native-inputs]: Add ttl2c.
2022-07-13 00:16:27 +02:00
Ricardo Wurmus
82de3b60b5
gnu: lvtk: Bump version number.
...
This is really version 2.x of the API.
* gnu/packages/audio.scm (lvtk): Rename this variable...
(lvtk-2): ...to this.
[version]: Bump major version to 2.
(lvtk): Alias to lvtk-1.
2022-07-13 00:16:27 +02:00
Ricardo Wurmus
d963e6d721
gnu: Add lvtk-1.
...
* gnu/packages/audio.scm (lvtk-1): New variable.
2022-07-13 00:16:27 +02:00
Ricardo Wurmus
2829fb4a83
gnu: Add ttl2c.
...
* gnu/packages/audio.scm (ttl2c): New variable.
2022-07-13 00:16:27 +02:00
Efraim Flashner
c8045fa052
gnu: openmpi: Only build with valgrind on supported systems.
...
* gnu/packages/mpi.scm (openmpi)[inputs]: Wrap valgrind in if-supported
macro.
[arguments]: Adjust configure-flags based on if valgrind is present.
2022-07-12 21:37:09 +03:00
Efraim Flashner
40095549f4
gnu: sbcl: Fix building on powerpc-linux.
...
* gnu/packages/lisp.scm (sbcl)[native-inputs]: Remove clisp, add ecl.
[arguments]: In custom 'build phase replace 'clisp' with 'ecl' for
powerpc-linux and adjust the dynamic-space-size to closer to the maximum
RAM for the architecture.
2022-07-12 21:37:09 +03:00
Maxim Cournoyer
f0c8abe857
gnu: pokerth: Fix build and modernize package.
...
Fixes <https://issues.guix.gnu.org/51093 >.
* gnu/packages/games.scm (pokerth) [source]: Apply patch
[inputs]: Use new style.
[phases]: Delete trailing #t. Use gexps.
{fix-paths}: Remove the gsasl and libircclient related substitutions.
2022-07-12 11:18:13 -04:00
Maxim Cournoyer
07fdfb9e1e
gnu: protobuf-2: Fix build.
...
Partially fixes <https://issues.guix.gnu.org/51093 >.
* gnu/packages/protobuf.scm (protobuf-2)
[phases]{disable-broken-tests}: Delete phase.
2022-07-12 11:18:13 -04:00
Efraim Flashner
094505d56c
gnu: numactl: Enable armhf-linux as a supported system.
...
* gnu/packages/linux.scm (numactl)[supported-systems]: Remove field.
2022-07-12 17:39:57 +03:00
Efraim Flashner
706af6dfd7
gnu: numactl: Fix building on riscv64-linux.
...
* gnu/packages/linux.scm (numactl)[arguments]: When building for
riscv64-linux always link with libatomic.
2022-07-12 17:39:57 +03:00
Efraim Flashner
321bb9f0e9
gnu: libratbag: Only build with valgrind on supported systems.
...
* gnu/packages/gnome.scm (libratbag)[arguments]: Disable some tests when
valgrind isn't present.
[native-inputs]: Only add valgrind on systems which support it.
2022-07-12 17:39:57 +03:00
Efraim Flashner
d1a235d72d
gnu: bcachefs-tools: Enable tests.
...
* gnu/packages/file-systems.scm (bcachefs-tools)[arguments]: Adjust
make-flags to find pytest. Don't disable tests.
2022-07-12 17:39:57 +03:00
Efraim Flashner
f58ba4031f
gnu: bcachefs-tools: Only build with valgrind on supported systems.
...
* gnu/packages/file-systems.scm (bcachefs-tools)[native-inputs]: Only
add valgrind on systems where valgrind is supported.
2022-07-12 17:39:56 +03:00
Efraim Flashner
0d6d7b3efc
gnu: sbcl: Fix building on armhf-linux.
...
* gnu/packages/lisp.scm (sbcl)[arguments]: When building for armhf-linux
add a phase to remove build optimizations targeting armv5.
2022-07-12 17:39:56 +03:00
Efraim Flashner
79a7c6e811
gnu: python-tornado-6: Adjust test timeout.
...
* gnu/packages/python-web.scm (python-tornado-6)[arguments]: Adjust
custom 'check phase to allow a longer test timeout.
2022-07-12 17:39:56 +03:00
Efraim Flashner
aba4cdc87f
gnu: python-tornado-6: Honor tests flag.
...
* gnu/packages/python-web.scm (python-tornado-6)[arguments]: Adjust
custom 'check phase to honor the #:tests? flag.
2022-07-12 17:39:56 +03:00
Efraim Flashner
908b680a5f
gnu: python-attrs: Remove test deadlines on riscv64-linux.
...
* gnu/packages/python-xyz.scm (python-attrs)[arguments]: When building
for riscv64-linux remove the hypothesis test deadlines.
2022-07-12 17:39:49 +03:00
Maxim Cournoyer
9173cb522d
gnu: gvfs: Update to 1.50.2 and modernize definition.
...
* gnu/packages/gnome.scm (gvfs): Update to 1.50.2.
[arguments]: Use gexps.
[native-inputs, inputs]: Use new style.
2022-07-12 09:24:46 -04:00
Nicolas Goaziou
5cd7e0cf26
gnu: emacs-easy-kill: Update to 0.9.5.
...
* gnu/packages/emacs-xyz.scm (emacs-easy-kill): Update to 0.9.5.
2022-07-12 12:40:43 +02:00
Nicolas Goaziou
3f772eb427
gnu: emacs-all-the-icons-dired: Update to 2.0.
...
* gnu/packages/emacs-xyz.scm (emacs-all-the-icons-dired): Update to 2.0.
[source]<origin>: Update URI.
[home-page]: Update URL.
2022-07-12 12:37:54 +02:00
Nicolas Goaziou
38a11e5fba
gnu: emacs-mastodon: Update package style.
...
* gnu/packages/emacs-xyz.scm (emacs-mastodon)[arguments]: Use
G-expressions. Remove trailing #T in phases.
2022-07-12 12:27:45 +02:00
Nicolas Goaziou
f2f29271b4
gnu: emacs-mastodon: Update to 1.0.0.
...
* gnu/packages/emacs-xyz.scm (emacs-mastodon): Update to 1.0.0.
[propagated-inputs]: Add EMACS-REQUEST.
[source]<origin>: Update URI.
[home-page]: Update URL.
2022-07-12 12:27:34 +02:00
Nicolas Goaziou
a717bd5eb7
gnu: emacs-ebib: Update to 2.38.1.
...
* gnu/packages/emacs-xyz.scm (emacs-ebib): Update to 2.38.1.
2022-07-12 12:15:00 +02:00
Nicolas Goaziou
2c538e2d1e
gnu: emacs-ebuild-mode: Update to 1.60.
...
* gnu/packages/emacs-xyz.scm (emacs-ebuild-mode): Update to 1.60.
2022-07-12 12:14:10 +02:00
Nicolas Goaziou
e9a3b3e4f3
gnu: emacs-pandoc-mode: Update to 2.32.
...
* gnu/packages/emacs-xyz.scm (emacs-pandoc-mode): Update to 2.32.
2022-07-12 12:12:42 +02:00
Nicolas Goaziou
50274c3c02
gnu: emacs-logview: Update to 0.15.
...
* gnu/packages/emacs-xyz.scm (emacs-logview): Update to 0.15.
2022-07-12 12:11:41 +02:00
Nicolas Goaziou
ae92a7ea45
gnu: emacs-pyim-basedict: Update to 0.5.4.
...
* gnu/packages/emacs-xyz.scm (emacs-pyim-basedict): Update to 0.5.4.
[propagated-inputs]: Add EMACS-PYIM.
2022-07-12 12:09:32 +02:00
Nicolas Goaziou
e9dc7c8b24
gnu: emacs-pyim: Update to 5.2.3.
...
* gnu/packages/emacs-xyz.scm (emacs-pyim): Update to 5.2.3.
[propagated-inputs]: Remove EMACS-PYIM-BASEDICT.
2022-07-12 12:09:12 +02:00
Nicolas Goaziou
d6551d68fb
gnu: emacs-rustic: Update to 3.2.
...
* gnu/packages/emacs-xyz.scm (emacs-rustic): Update to 3.2.
2022-07-12 12:00:20 +02:00
Nicolas Goaziou
7c151ff7fd
gnu: emacs-rust-mode: Update to 1.0.5.
...
* gnu/packages/emacs-xyz.scm (emacs-rust-mode): Update to 1.0.5.
2022-07-12 11:59:47 +02:00
Nicolas Goaziou
2ba7641f3c
gnu: emacs-treemacs: Update to 2.10.
...
* gnu/packages/emacs-xyz.scm (emacs-treemacs): Update to 2.10.
2022-07-12 11:58:03 +02:00
Nicolas Goaziou
8a36f03d72
gnu: emacs-pfuture: Update to 1.10.3.
...
* gnu/packages/emacs-xyz.scm (emacs-pfuture): Update to 1.10.3.
2022-07-12 11:58:02 +02:00
Nicolas Goaziou
e51f886e19
gnu: emacs-yaml: Update to 0.5.0.
...
* gnu/packages/emacs-xyz.scm (emacs-yaml): Update to 0.5.0.
2022-07-12 11:55:39 +02:00
Nicolas Goaziou
99b27f9238
gnu: emacs-xr: Update to 1.23.
...
* gnu/packages/emacs-xyz.scm (emacs-xr): Update to 1.23.
2022-07-12 11:53:30 +02:00
Maxim Cournoyer
94b04fcd06
gnu: onionshare-cli: Update git URL.
...
* gnu/packages/tor.scm (onionshare-cli)[source]: Update git URL.
2022-07-11 23:56:39 -04:00
Maxim Cournoyer
aedd7dc8e0
gnu: onionshare: Update to 2.5 and disable tests.
...
* gnu/packages/tor.scm (onionshare): Update to 2.5.
[tests?]: Set to #f.
[phases]: Use gexps.
{patch-tests}: Delete phase.
{check}: Invoke pytest through xvfb-run.
2022-07-11 23:56:39 -04:00
Maxim Cournoyer
b54a243ec1
gnu: onionshare-cli: Update to 2.5.
...
* gnu/packages/tor.scm (onionshare-cli): Update to 2.5.
[phases]: Use gexps.
{bake-tor}: Use search-input-file and search-input-directory.
2022-07-11 23:56:39 -04:00
Reily Siegel
8d922504b2
gnu: home: Add Guix channels service.
...
* gnu/home/services/guix.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add guix.scm.
* doc/guix.texi: Add documentation for home-channels-service.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-12 01:17:46 +02:00
Greg Hogan
03bc18dfcf
gnu: clang-toolchain-14: Build with libomp-14.
...
* gnu/packages/llvm.scm (libomp-14): New variable.
(libomp-13): Inherit from libomp-14.
(libomp): Define as libomp-13.
(make-clang-toolchain): Parameterize libomp.
(clang-toolchain-14): Use libomp-14.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-12 01:17:45 +02:00
Greg Hogan
f276ebc348
gnu: LLVM, Clang, LLD: Update to 14.0.6.
...
* gnu/packages/llvm.scm (llvm-14, clang-14, lld-14): Update to 14.0.6.
(%llvm-monorepo-hashes, %llvm-patches): Adjust accordingly.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-12 01:17:45 +02:00
Greg Hogan
3485984a09
gnu: llvm-3.7, llvm-3.8: Fix build with gcc.
...
* gnu/packages/patches/clang-runtime-3.7-fix-build-with-python3.patch,
gnu/packages/patches/llvm-3.x.1-fix-build-with-gcc.patch: New files.
* gnu/packages/llvm.scm (clang-runtime-3.7, llvm-3.7, llvm-3.8): Use patches.
* gnu/local.mk: Register patches.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-12 01:17:45 +02:00
Greg Hogan
e5e352ae2a
gnu: llvm-8: Fix build with gcc-10.
...
* gnu/packages/patches/llvm-8-fix-build-with-gcc-10.patch: New file.
* gnu/packages/llvm.scm (clang-8, clang-runtime-8): Update to 8.0.1.
* gnu/packages/llvm.scm (llvm-8): Use patch and update to 8.0.1.
* gnu/local.mk: Register patch.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-12 01:17:45 +02:00
Ludovic Courtès
b8b02f4de5
style: Gracefully handle failure to locate a source file.
...
* guix/scripts/style.scm (absolute-location): Raise an error when
'search-path' returns #f.
2022-07-12 01:17:45 +02:00
Ludovic Courtès
4574ef267e
guix: Really export 'define-public'.
...
This is a followup to 3858275962 , which
didn't have any effect.
* guix.scm: Explicitly use (guix packages) so #:re-export-and-replace
is effective.
2022-07-12 01:17:45 +02:00
arkhan
dee9a32888
gnu: xonsh: Update to 0.13.0
...
* gnu/packages/shells.scm (xonsh): Update to 0.13.0.
[source]: Rewrite snippet as a gexp.
[native-inputs]: Add python-setuptools, python-wheel
[inputs]: Add python-distro, python-pygments, python-pyperclip, python-setproctitle
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-12 01:17:45 +02:00
Maxim Cournoyer
5ecbf5b163
doc: Fix cross-reference to Git Info manual.
...
Partially fixes <https://issues.guix.gnu.org/55821 >. Partially because our
git package doesn't yet include the documentation. This change will need to
go to core-updates.
* doc/contributing.texi (Submitting Patches): Adjust the node name.
2022-07-11 17:21:55 -04:00
Maxim Cournoyer
6a6d9a858e
gnu: xorg: Normalize whitespace between package definitions.
...
* gnu/packages/xorg.scm: Use a single blank line between packages.
2022-07-11 15:07:37 -04:00
Maxim Cournoyer
df44d359f3
gnu: luit: Fix invalid locale.alias location.
...
Fixes <https://issues.guix.gnu.org/43592 >.
* gnu/packages/xorg.scm (mkfontscale)[configure-flags]: Point to libx11's
locale.alias file via the '--with-localealiasfile' configure option.
[inputs]{libx11}: New input.
2022-07-11 15:06:19 -04:00
Maxim Cournoyer
85d7babe64
gnu: luit: Fix indentation.
...
* gnu/packages/xorg.scm (luit): Fix indentation.
2022-07-11 14:55:35 -04:00
jgart
6ffb3ef4d6
gnu: Add sxmo-st.
...
* gnu/packages/suckless.scm (sxmo-st): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-11 11:49:37 -04:00
Hartmut Goebel
e8cd9e3d12
import: github: Use correct URL scheme.
...
This effects packages hosted at github with source-uri like
…/releases/download/REPO-VERSION/REPO-VERSION.EXT.
E.g. ‘guix refresh udisks’ would fail to find the new release of ‘udisks’
before this change.
* guix/import/github.scm(updated-url): For one one of the
cases add missing 'prefix' and set new version.
2022-07-11 15:35:28 +02:00
Efraim Flashner
e0e87fe3a6
gnu: icu4c-70: Fix building on riscv64-linux.
...
* gnu/packages/icu4c.scm (icu4c-70)[arguments]: When building for
riscv64-linux replace the custom 'disable-failing-test phase to skip an
additional test.
2022-07-11 16:18:12 +03:00
Efraim Flashner
584cf4dadd
gnu: xwud: Update to 1.0.6.
...
* gnu/packages/xorg.scm (xwud): Update to 1.0.6.
2022-07-11 15:13:53 +03:00
Efraim Flashner
7aeab7adb2
gnu: xpr: Update to 1.1.0.
...
* gnu/packages/xorg.scm (xpr): Update to 1.1.0.
2022-07-11 15:13:53 +03:00
Efraim Flashner
f265a89187
gnu: xfontsel: Update to 1.1.0.
...
* gnu/packages/xorg.scm (xfontsel): Update to 1.1.0.
2022-07-11 15:13:52 +03:00
Efraim Flashner
b60a96dc31
gnu: xf86-video-mga: Update to 2.0.1.
...
* gnu/packages/xorg.scm (xf86-video-mga): Update to 2.0.1.
2022-07-11 15:13:52 +03:00
Efraim Flashner
b4268263c6
gnu: xf86-video-cirrus: Update to 1.6.0.
...
* gnu/packages/xorg.scm (xf86-video-cirrus): Update to 1.6.0.
2022-07-11 15:13:52 +03:00
Efraim Flashner
d1f3080b09
gnu: xf86-input-synaptics: Update to 1.9.2.
...
* gnu/packages/xorg.scm (xf86-input-synaptics): Update to 1.9.2.
2022-07-11 15:13:52 +03:00
Efraim Flashner
c9328e6966
gnu: xcmsdb: Update to 1.0.6.
...
* gnu/packages/xorg.scm (xcmsdb): Update to 1.0.6.
2022-07-11 15:13:51 +03:00
Efraim Flashner
f3e2d1dddf
gnu: xf86-video-mach64: Update to 6.9.7.
...
* gnu/packages/xorg.scm (xf86-video-mach64): Update to 6.9.7.
[source]: Remove patches.
* gnu/packages/patches/xf86-video-mach64-bool-to-boolean.patch,
gnu/packages/patches/xf86-video-mach64-glibc-2.20.patch: Remove files.
* gnu/local.mk (dist_patch_DATA): Remove them.
2022-07-11 15:13:51 +03:00
Nicolas Goaziou
34e90ea115
gnu: emacs-csv-mode: Update to 1.21.
...
* gnu/packages/emacs-xyz.scm (emacs-csv-mode): Update to 1.21.
2022-07-11 12:32:20 +02:00
Nicolas Goaziou
b2668faac0
gnu: emacs-js2-mode: Update to 20220710.
...
* gnu/packages/emacs-xyz.scm (emacs-js2-mode): Update to 20220710.
2022-07-11 12:29:30 +02:00
Nicolas Goaziou
2d6586874b
gnu: emacs-ement: Update to 0.1-pre-3.02015ea.
...
* gnu/packages/emacs-xyz.scm (emacs-ement): Update to 0.1-pre-3.02015ea.
2022-07-11 12:23:29 +02:00
Nicolas Goaziou
8bc6219cce
gnu: emacs-ement: Fix build.
...
* gnu/packages/emacs-xyz.scm (emacs-ement)[propagated-inputs]: Add
EMACS-TAXY-MAGIT-SECTION.
2022-07-11 12:20:57 +02:00
Nicolas Goaziou
2b4d43d1c3
gnu: Add emacs-taxy-magit-section.
...
* gnu/packages/emacs-xyz.scm (emacs-taxy-magit-section): New variable.
2022-07-11 12:19:03 +02:00
Nicolas Goaziou
146b49d4aa
gnu: emacs-kind-icon: Update to 0.1.6.
...
* gnu/packages/emacs-xyz.scm (emacs-kind-icon): Update to 0.1.6.
2022-07-11 12:09:30 +02:00
Efraim Flashner
556a96fe21
gnu: python-gevent: Remove cythonized files.
...
* gnu/packages/python-xyz.scm (python-gevent)[source]: Adjust snippet to
also remove generated cythonized files.
[native-inputs]: Add python-cython.
2022-07-11 13:03:33 +03:00
zimoun
1b3b653aa0
gnu: Add julia-csv.
...
* gnu/packages/julia-xyz.scm (julia-csv): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-07-11 13:03:32 +03:00
zimoun
373a625bd0
gnu: Add julia-sentinelarrays.
...
* gnu/packages/julia-xyz.scm (julia-sentinelarrays): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-07-11 13:03:32 +03:00
zimoun
c9ceb301c6
gnu: julia-weakrefstrings: Update to 1.4.0.
...
* gnu/packages/julia-xyz.scm (julia-weakrefstrings): Update to 1.4.0.
[propagated-inputs]: Add julia-inlinestrings.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-07-11 13:03:32 +03:00
zimoun
588c73f196
gnu: julia-json: Update to 0.21.3.
...
* gnu/packages/julia-xyz.scm (julia-json): Update to 0.21.3.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-07-11 13:03:32 +03:00
zimoun
e4caadb096
gnu: Add julia-inlinestrings.
...
* gnu/packages/julia-xyz.scm (julia-inlinestrings): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-07-11 13:03:31 +03:00
zimoun
4a519a1092
gnu: julia-parsers: Update to 2.2.4.
...
* gnu/packages/julia-xyz.scm (julia-parsers): Update to 2.2.4.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-07-11 13:03:29 +03:00
Nicolas Goaziou
36391f0ff0
gnu: emacs-helm-ls-git: Update to 1.9.4.
...
* gnu/packages/emacs-xyz.scm (emacs-helm-ls-git): Update to 1.9.4.
2022-07-11 12:01:40 +02:00
Nicolas Goaziou
31ffe484be
gnu: emacs-helm: Update to 3.8.6.
...
* gnu/packages/emacs-xyz.scm (emacs-helm): Update to 3.8.6.
2022-07-11 12:00:06 +02:00
Nicolas Goaziou
c8706d109e
gnu: emacs-iter2: Update to 1.2.
...
* gnu/packages/emacs-xyz.scm (emacs-iter2): Update to 1.2.
2022-07-11 11:58:04 +02:00
Nicolas Goaziou
7a7d4d1122
gnu: emacs-hl-todo: Update to 3.4.2.
...
* gnu/packages/emacs-xyz.scm (emacs-hl-todo): Update to 3.4.2.
2022-07-11 11:54:51 +02:00
Nicolas Goaziou
52abf14312
gnu: emacs-no-littering: Update to 1.2.7.
...
* gnu/packages/emacs-xyz.scm (emacs-no-littering): Update to 1.2.7.
2022-07-11 11:53:03 +02:00
Nicolas Goaziou
3062ec28fe
gnu: emacs-git-gutter: Update to 0.92.
...
* gnu/packages/emacs-xyz.scm (emacs-git-gutter): Update to 0.92.
2022-07-11 11:51:07 +02:00
Nicolas Goaziou
022847ac52
gnu: emacs-find-file-in-project: Update to 6.2.0.
...
* gnu/packages/emacs-xyz.scm (emacs-find-file-in-project): Update to 6.2.0.
2022-07-11 11:48:45 +02:00
Nicolas Goaziou
7b151edb0d
gnu: emacs-eldev: Update package style.
...
* gnu/packages/emacs-xyz.scm (emacs-eldev)[arguments]: Use G-expressions.
2022-07-11 11:46:20 +02:00
Nicolas Goaziou
1cea926ff4
gnu: emacs-eldev: Update to 1.1.3.
...
* gnu/packages/emacs-xyz.scm (emacs-eldev): Update to 1.1.3.
2022-07-11 11:44:57 +02:00
Nicolas Goaziou
ed17b08ff5
gnu: emacs-datetime: Update to 0.7.2.
...
* gnu/packages/emacs-xyz.scm (emacs-datetime): Update to 0.7.2.
2022-07-11 11:39:39 +02:00
Nicolas Goaziou
cd568008c3
gnu: emacs-counsel-etags: Update to 1.10.1.
...
* gnu/packages/emacs-xyz.scm (emacs-counsel-etags): Update to 1.10.1.
2022-07-11 11:38:25 +02:00
Nicolas Goaziou
5706fdc13f
gnu: emacs-docker: Update to 2.2.0.
...
* gnu/packages/emacs-xyz.scm (emacs-docker): Update to 2.2.0.
2022-07-11 11:37:01 +02:00
Nicolas Goaziou
d4b09ba1c5
gnu: emacs-package-build: Fix typo in synopsis.
...
* gnu/packages/emacs-xyz.scm (emacs-package-build)[synopsis]: Fix typo.
2022-07-11 11:33:08 +02:00
Nicolas Goaziou
44054b9d1f
gnu: emacs-package-build: Update to 3.1.
...
* gnu/packages/emacs-xyz.scm (emacs-package-build): Update to 3.1.
2022-07-11 11:33:00 +02:00
Nicolas Goaziou
0e00403ade
gnu: emacs-pubmed: Drop ".git" suffix in source URL.
...
* gnu/packages/emacs-xyz.scm (emacs-pubmed)[source]<origin>: Drop ".git"
suffix in URL.
2022-07-11 11:29:58 +02:00
Nicolas Goaziou
a482e389ce
gnu: emacs-pubmed: Update to 0.6.1.
...
* gnu/packages/emacs-xyz.scm (emacs-pubmed): Update to 0.6.1.
2022-07-11 11:29:49 +02:00
Nicolas Goaziou
bdaac4f931
gnu: emacs-tramp: Update to 2.5.3.
...
* gnu/packages/emacs-xyz.scm (emacs-tramp): Update to 2.5.3.
2022-07-11 11:28:23 +02:00
Nicolas Goaziou
3efc96f1e6
gnu: emacs-rec-mode: Update to 1.9.0.
...
* gnu/packages/databases.scm (emacs-rec-mode): Update to 1.9.0.
2022-07-11 11:26:19 +02:00
Nicolas Goaziou
87d0bd9a14
gnu: emacs-taxy: Update to 0.9.
...
* gnu/packages/emacs-xyz.scm (emacs-taxy): Update to 0.9.
2022-07-11 11:24:17 +02:00
Nicolas Goaziou
d5ef913670
gnu: emacs-doom-modeline: Update to 3.3.1.
...
* gnu/packages/emacs-xyz.scm (emacs-doom-modeline): Update to 3.3.1.
[propagated-inputs]: Add EMACS-COMPAT.
2022-07-11 11:22:18 +02:00
Nicolas Goaziou
77504dddae
gnu: emacs-doom-themes: Update package style.
...
* gnu/packages/emacs-xyz.scm (emacs-doom-themes)[arguments]: Use
G-expressions. Remove trailing #T at the end of a phase.
2022-07-11 11:19:37 +02:00
Nicolas Goaziou
157139612a
gnu: emacs-doom-themes: Update to 2.3.0.
...
* gnu/packages/emacs-xyz.scm (emacs-doom-themes): Update to 2.3.0.
2022-07-11 11:18:02 +02:00
Nicolas Goaziou
7093824be0
gnu: emacs-edit-indirect: Update to 0.1.10.
...
* gnu/packages/emacs-xyz.scm (emacs-edit-indirect): Update to 0.1.10.
2022-07-11 11:16:06 +02:00
Nicolas Goaziou
7b8d5c888d
gnu: emacs-eldoc: Update to 1.12.0.
...
* gnu/packages/emacs-xyz.scm (emacs-eldoc): Update to 1.12.0.
[source]<origin>: Use TAR file extension in URI.
2022-07-11 11:13:57 +02:00
Nicolas Goaziou
61739b1428
gnu: emacs-org-transclusion: Update to 1.3.0.
...
* gnu/packages/emacs-xyz.scm (emacs-org-transclusion): Update to 1.3.0.
2022-07-11 11:11:06 +02:00
Nicolas Goaziou
23fc641c85
gnu: emacs-org-mime: Update to 0.3.1.
...
* gnu/packages/emacs-xyz.scm (emacs-org-mime): Update to 0.3.1.
2022-07-11 11:09:11 +02:00
Nicolas Goaziou
c807ed4fe6
gnu: emacs-nano-modeline: Update to 0.7.1.
...
* gnu/packages/emacs-xyz.scm (emacs-nano-modeline): Update to 0.7.1.
2022-07-11 11:07:04 +02:00
Nicolas Goaziou
3d363715fa
gnu: emacs-calibredb: Update package style.
...
* gnu/packages/emacs-xyz.scm (emacs-calibredb)[arguments]: Use G-expressions
and SEARCH-INPUT-FILE.
2022-07-11 10:58:25 +02:00
Nicolas Goaziou
a3fa82ddea
gnu: emacs-calibredb: Update to 2.12.0.
...
* gnu/packages/emacs-xyz.scm (emacs-calibredb): Update to 2.12.0.
2022-07-11 10:58:25 +02:00
Nicolas Goaziou
ee23adcc32
gnu: emacs-add-node-modules-path: Update to 1.3.1.
...
* gnu/packages/emacs-xyz.scm (emacs-add-node-modules-path): Update to 1.3.1.
[propagated-inputs]: Add EMACS-S.
2022-07-11 10:58:24 +02:00
Nicolas Goaziou
7fc58dd0db
gnu: emacs-base16-theme: Update package style.
...
* gnu/packages/emacs-xyz.scm (emacs-base16-theme)[arguments]: Use G-expressions.
2022-07-11 10:58:24 +02:00
Nicolas Goaziou
eccfd5186b
gnu: emacs-base16-theme: Update to 3.0.
...
* gnu/packages/emacs-xyz.scm (emacs-base16-theme): Update to 3.0.
2022-07-11 10:58:23 +02:00
Nicolas Goaziou
fc48aacdeb
gnu: emacs-cape: Update to 0.8.
...
* gnu/packages/emacs-xyz.scm (emacs-cape): Update to 0.8.
2022-07-11 10:58:23 +02:00
Efraim Flashner
58aaef4460
gnu: parallel: Remove some pregenerated files.
...
* gnu/packages/parallel.scm (parallel)[source]: Add snippet to remove
pregenerated manpages and some documentation.
[native-inputs]: Add perl.
2022-07-11 10:00:16 +03:00
Efraim Flashner
c8c444dbd2
gnu: parallel: Update to 20220622.
...
* gnu/packages/parallel.scm (parallel): Update to 20220622.
[arguments]: Add phase to add parallel to the PATH.
2022-07-11 09:44:40 +03:00
Wiktor Żelazny
c9fad6a2ad
gnu: Add texlive-babel-dutch.
...
* gnu/packages/tex.scm (texlive-babel-dutch): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-10 23:57:15 +02:00
Thiago Jung Bauermann
d301374d97
etc: teams: Add entry for Thiago Jung Bauermann.
...
* etc/teams.scm.in ("Thiago Jung Bauermann"): New member.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-10 23:57:15 +02:00
Ludovic Courtès
5d0437ea8c
time-travel-manifest: Use a separate Git checkout cache.
...
* etc/time-travel-manifest.scm (guix-instance-compiler): Parameterize
%REPOSITORY-CACHE-DIRECTORY.
2022-07-10 23:57:14 +02:00
Ludovic Courtès
9fdc4b6c28
monads: Add 'mparameterize'.
...
* etc/system-tests.scm (mparameterize): Move to...
* guix/monads.scm (mparameterize): ... here.
* tests/monads.scm ("mparameterize"): New test.
* .dir-locals.el (c-mode): Add it.
2022-07-10 23:57:14 +02:00
jgart
bf0a646a5b
gnu: emacs-tempel: Update to 0.4.
...
* gnu/packages/emacs-xyz.scm (emacs-tempel): Update to 0.4.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com >
2022-07-10 20:00:22 +02:00
Efraim Flashner
05e3ff8f38
gnu: rust-1.55: Fix building on riscv64-linux.
...
* gnu/packages/rust.scm (rust-1.55)[source]: Adjust snippet to fix
riscv64 support in jemallocator crate.
2022-07-10 20:38:59 +03:00
Efraim Flashner
ca4bfb0f2d
gnu: rust-bootstrap: Add support for riscv64-linux.
...
* gnu/packages/rust.scm (%mrustc-source): Add patch.
(rust-bootstrap)[native-inputs]: On riscv64-linux add gcc@9:lib.
[supported-systems]: Add riscv64-linux. Adjust comment.
* gnu/packages/patches/mrustc-riscv64-support.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
2022-07-10 20:38:59 +03:00
Marius Bakke
f015d4f5a6
gnu: ungoogled-chromium: Update to 103.0.5060.114-1.
...
* gnu/packages/chromium.scm (%chromium-version): Set to 103.0.5060.114.
(%ungoogled-origin, ungoogled-chromium): Update hashes.
2022-07-10 18:36:43 +02:00
Marius Bakke
076146818b
gnu: Remove OpenJPEG@1.
...
* gnu/packages/image.scm (openjpeg-1): Remove variable.
2022-07-10 18:36:43 +02:00
Marius Bakke
2c292f7078
gnu: libzip: Update to 1.9.2.
...
* gnu/packages/compression.scm (libzip): Update to 1.9.2.
2022-07-10 18:36:43 +02:00
Raghav Gururajan
e47d8d1139
Revert "gnu: Add python-proton-client."
...
This reverts commit 345ae8c40f ,
which was accidentally pushed.
2022-07-10 12:04:00 -04:00
Raghav Gururajan
345ae8c40f
gnu: Add python-proton-client.
...
* gnu/packages/python-xyz.scm (python-proton-client): New variable.
2022-07-10 08:15:17 -04:00
Efraim Flashner
9bb14bd237
gnu: msmtp: Fix vim file install location.
...
* gnu/packages/mail.scm (msmtp)[arguments]: Adjust custom
'install-additional-files phase to install vim file in correct
directory.
2022-07-10 09:40:07 +03:00
Maxim Cournoyer
13c73ccd90
gnu: Add emacs-robot-log.
...
* gnu/packages/emacs-xyz.scm (emacs-robot-log): New variable.
2022-07-10 01:03:56 -04:00
Maxim Cournoyer
c9fb789fe9
.dir-locals.el: Restore Emacs 27 lisp-fill-paragraph behavior.
...
* .dir-locals.el (scheme-mode): Set fill-paragraph-function to a
lisp-fill-paragraph version that matches that of Emacs 27.
2022-07-10 01:03:56 -04:00
Maxim Cournoyer
a2397e0ecd
gnu: emacs-paredit: Update to 24-1.d0b1a2f.
...
* gnu/packages/emacs-xyz.scm (emacs-paredit): Update to 24-1.d0b1a2f.
[source]: Use git-fetch.
2022-07-10 01:03:56 -04:00
Maxim Cournoyer
1f50c8750a
gnu: phoronix-test-suite: Use latest version of gcc-toolchain.
...
This is less likely to conflict with a user installed gcc-toolchain, unless
they installed a specific version of it.
* gnu/packages/benchmark.scm (gcc-toolchain*): Use gcc-toolchain-12 instead of
gcc-toolchain.
2022-07-10 01:03:22 -04:00
Julien Lepiller
e0d47d8fac
nls: Update translations.
...
po/guix/tr.po: New file.
po/guix/LINGUAS: Add it.
2022-07-09 21:49:34 +02:00
cage
0464ab17ef
gnu: gmid: Update to 1.8.4.
...
* gnu/packages/web.scm (gmid): Update to 1.8.4.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-09 10:51:05 +01:00
Christopher Baines
a1cbd60df2
gnu: guix: Update to 1.3.0-29.9e46320.
...
* gnu/packages/package-management.scm (guix): Update to 1.3.0-29.9e46320.
2022-07-09 10:42:56 +01:00
Liliana Marie Prikler
9e4632081f
gnu: vte: Use new package style.
...
* gnu/packages/gnome.scm (vte)[arguments]: Convert to list of G-Expressions.
[native-inputs]: Drop labels.
2022-07-09 10:41:41 +02:00
Liliana Marie Prikler
55ec06ee1d
gnu: vte: Update to 0.68.0.
...
* gnu/packages/gnome.scm (vte): Update to 0.68.0.
2022-07-09 10:41:41 +02:00
Liliana Marie Prikler
15b4579a5a
gnu: Add pango-1.90.
...
* gnu/packages/gtk.scm (pango-1.90): New variable.
2022-07-09 10:41:41 +02:00
Liliana Marie Prikler
bcf6730e68
gnu: Add harfbuzz-4.
...
* gnu/packages/gtk.scm (harfbuzz-4): New variable.
2022-07-09 10:41:41 +02:00
Liliana Marie Prikler
3af9282853
gnu: harfbuzz-3: Update to 3.4.0.
...
* gnu/packages/gtk.scm (harfbuzz-3.0): Rename to...
(harfbuzz-3): ... this. Update to 3.4.0.
* gnu/packages/chromium.scm (ungoogled-chromium): Adjust accordingly.
2022-07-09 10:41:40 +02:00
Liliana Marie Prikler
67d67b757d
gnu: totem: Use new package style.
...
* gnu/packages/gnome.scm (totem)[native-inputs]: Drop labels.
[arguments]: Convert to list of G-Expressions. Drop trailing #t.
2022-07-09 10:41:40 +02:00
Liliana Marie Prikler
7e0440255f
gnu: totem: Also wrap GI_TYPELIB_PATH.
...
* gnu/packages/gnome.scm (totem)[wrap-totem]: Add GI_TYPELIB_PATH with a
suffix capturing the build path.
2022-07-09 10:41:40 +02:00
Liliana Marie Prikler
e47d0cfbb9
gnu: totem: Update to 42.0.
...
* gnu/packages/gnome.scm (totem): Update to 42.0.
[inputs]: Remove clutter, clutter-gtk, clutter-gst and lirc. Add libhandy.
2022-07-09 10:41:40 +02:00
Ricardo Wurmus
d84bedd830
gnu: Add python-cellbender.
...
* gnu/packages/bioinformatics.scm (python-cellbender): New variable.
2022-07-09 10:37:22 +02:00
Ricardo Wurmus
6416e77280
gnu: Add python-pyro-ppl.
...
* gnu/packages/machine-learning.scm (python-pyro-ppl): New variable.
2022-07-09 10:21:21 +02:00
Ricardo Wurmus
ff37afb288
gnu: Add python-visdom.
...
* gnu/packages/machine-learning.scm (python-visdom): New variable.
2022-07-09 10:21:21 +02:00
Ricardo Wurmus
2cf138db76
gnu: Add python-lap.
...
* gnu/packages/machine-learning.scm (python-lap): New variable.
2022-07-09 10:21:21 +02:00
Christopher Baines
6e2f5fe217
etc: teams: Add entry for Christopher Baines.
...
* etc/teams.scm.in ("Christopher Baines"): New member.
2022-07-08 23:36:24 +01:00
Christopher Baines
be8d0eb246
gnu: guix-data-service: Update to 32.39487cd.
...
* gnu/packages/web.scm (guix-data-service): Update to 32.39487cd.
2022-07-08 23:32:49 +01:00
Sharlatan Hellseher
95ed62c12b
gnu: Add python-glymur.
...
* gnu/packages/python-xyz.scm (python-glymur): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org >
2022-07-08 23:58:12 +02:00
Sharlatan Hellseher
e72c1f148a
gnu: Add python-cdflib.
...
* gnu/packages/astronomy.scm (python-cdflib): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-08 23:58:12 +02:00
Zhu Zihao
ff6129beb5
gnu: rtl8821ce-linux-module: Update to 0.0.0-6-be733dc.
...
Fixes the broken build with linux-libre 5.18.x.
* gnu/packages/linux.scm (rtl8821ce-linux-module): Update to 0.0.0-6-be733dc.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-08 23:58:12 +02:00
Wiktor Żelazny
0d011e54c6
gnu: Add texlive-babel-finnish.
...
* gnu/packages/tex.scm (texlive-babel-finnish): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-08 23:58:11 +02:00
Ludovic Courtès
e80f0cda96
etc: Add 'time-travel-manifest.scm'.
...
This manifest makes it easy to test travels from the current revision
back to the revision of a past Guix release.
Suggested by zimoun <zimon.toutoune@gmail.com >.
* etc/time-travel-manifest.scm: New file.
* Makefile.am (EXTRA_DIST): Add it.
2022-07-08 23:58:11 +02:00
Ludovic Courtès
c9fbd40785
channels: Emit version 3 profiles.
...
Fixes <https://issues.guix.gnu.org/56441 >.
Reported by zimoun <zimon.toutoune@gmail.com >.
Fixes a bug introduced in 4ff12d1de7 with
version 4 of the manifest format. A new 'guix time-machine' would
create a v4 manifest; when targeting an old revision (v3),
'generate-package-cache' would fail to read that manifest and abort.
Furthermore, an old Guix living in a new profile with a v4 manifest
would be unable to describe itself via (guix describe).
* guix/channels.scm (package-cache-file): Add 'format-version' field to
PROFILE.
(channel-instances->derivation): Pass #:format-version to
'profile-derivation'.
2022-07-08 23:58:11 +02:00
Ludovic Courtès
89e2288751
profiles: Support the creation of profiles with version 3 manifests.
...
* guix/profiles.scm (%manifest-format-version): New variable.
(manifest->gexp): Add optional 'format-version' parameter.
[optional, entry->gexp]: Honor it.
(profile-derivation): Add #:format-version parameter and honor it.
(<profile>)[format-version]: New field.
(profile-compiler): Honor it.
* guix/build/profiles.scm (manifest-sexp->inputs+search-paths): Support
both versions 3 and 4. Remove unused 'properties' variable.
* tests/profiles.scm ("profile-derivation format version 3"): New test.
2022-07-08 23:58:11 +02:00
Ludovic Courtès
e7e04396c0
profiles: Remove support for reading versions 0 and 1.
...
Version 2 was introduced in commit
dedb17ad01 (May 2015), which made it into
Guix 0.9.0.
* guix/profiles.scm (find-package): Remove.
(sexp->manifest)[infer-search-paths]: Remove.
Remove clauses for versions 0 and 1.
2022-07-08 23:58:11 +02:00
Pierre Neidhardt
d7d2340721
gnu: Add binary-types.
...
* gnu/packages/lisp-xyz.scm (cl-binary-types, ecl-binary-types,
sbcl-binary-types): New variables.
2022-07-08 22:14:36 +02:00
Pierre Neidhardt
114b40ed67
gnu: cl-slime-swank: Store .fasl in the ASDF registry.
...
* gnu/packages/lisp-xyz.scm (sbcl-slime-swank)[arguments]: Patch swank.asd to
store the .fasl in the ASDF registry so that they are found in the
package.
Also patch swank-loader.lisp so that it does not try to remove the .fasl from
the store.
(cl-slime-swank)[arguments]: Revert above patch of the swank.ask so that the
source package does not get bound to the SBCL package.
We would not have to do this if SLIME/Swank used ASDF properly instead of
working around it.
2022-07-08 19:32:45 +02:00
Pierre Neidhardt
1ae539eb4f
gnu: sbcl-dexador: Remove unneeded depedencies to reduce closure size.
...
* gnu/packages/lisp-xyz.scm (sbcl-dexador)[native-inputs]: Comment out.
This takes the closure size from 357 MiB down to 342 MiB.
2022-07-08 19:32:45 +02:00
Pierre Neidhardt
10ededddd3
gnu: sbcl-osicat: Remove bash reference from the closure.
...
* gnu/packages/lisp-xyz.scm (sbcl-osicat)[source]: Remove unneeded release.sh
file.
This takes the closure size of cl-osicat from 40 MiB down to 0 MiB.
2022-07-08 19:32:45 +02:00
Pierre Neidhardt
1004c54c2e
gnu: sbcl-trivial-clipboard: Replace xclip with xsel to reduce closure size.
...
* gnu/packages/lisp-xyz.scm (sbcl-trivial-clipboard)[inputs]: Replace xclip
with xsel.
[arguments]: Adapt reference.
This takes the closure size of cl-trivial-clipboard from 90 MiB down to 78 MiB.
2022-07-08 19:32:45 +02:00
Pierre Neidhardt
ced05db048
gnu: sbcl-cluffer: Remove bash reference from the closure.
...
* gnu/packages/lisp-xyz.scm (sbcl-cluffer)[arguments]: Unpatch shell shebangs.
It's only needed to generate the documentation (which we should do at
build-time by the way).
This takes the closure size of cl-cluffer from 40 MiB down to 0 MiB.
2022-07-08 19:32:45 +02:00
Pierre Neidhardt
5fb69a3bed
gnu: sbcl-cl-gopher: Remove sbcl-cl-gopher reference in cl-gopher
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-gopher)[arguments]: Delete the
useless '.lsh' files.
This takes the closure size from 150 MiB down to 0 MiB.
2022-07-08 19:32:45 +02:00
Pierre Neidhardt
6702441f17
gnu: sbcl-moptilities: Remove sbcl-moptilities reference in cl-moptilities.
...
* gnu/packages/lisp-xyz.scm (sbcl-moptilities)[arguments]: Delete the
'test-results' folder.
This takes the closure size from 158 MiB down to 0 MiB :)
2022-07-08 19:32:45 +02:00
Pierre Neidhardt
fcac44c012
gnu: sbcl-slime-swank: Remove gawk reference from closure.
...
* gnu/packages/lisp-xyz.scm (sbcl-slime-swank)[source]: Delete the 'doc' folder.
This takes the closure size from 159 MiB down to 156 MiB.
2022-07-08 19:32:45 +02:00
Pierre Neidhardt
513f6c2786
gnu: sbcl-clsql: Remove Make reference from closure.
...
* gnu/packages/lisp-xyz.scm (sbcl-clsql)[source]: Delete the 'debian' folder
and all Makefiles.
This takes the closure size from 930 MiB down to 889 MiB.
2022-07-08 19:32:45 +02:00
Pierre Neidhardt
681a02916d
gnu: sbcl-uffi: Remove Make reference from closure.
...
* gnu/packages/lisp-xyz.scm (sbcl-uffi)[source]: Delete the 'debian' folder.
This takes the closure size from 209 MiB down to 151 MiB.
2022-07-08 19:32:44 +02:00
Pierre Neidhardt
474a3da8e4
gnu: sbcl-rss: Remove Make reference from closure.
...
* gnu/packages/lisp-xyz.scm (sbcl-rss)[source]: Delete the 'debian' folder.
This takes the closure size from 234 MiB down to 176 MiB.
2022-07-08 19:32:44 +02:00
Pierre Neidhardt
04e3aa711a
gnu: sbcl-cl-base64: Remove Make reference from closure.
...
* gnu/packages/lisp-xyz.scm (sbcl-cl-base64)[source]: Delete the 'debian' folder.
This takes the closure size from 209 MiB down to 151 MiB.
2022-07-08 19:32:44 +02:00
Pierre Neidhardt
b48e086e32
gnu: sbcl-kmrcl: Remove Make reference from closure.
...
* gnu/packages/lisp-xyz.scm (sbcl-kmrcl)[source]: Delete the 'debian' folder.
This takes the closure size from 209 MiB down to 151 MiB.
2022-07-08 19:32:44 +02:00
Pierre Neidhardt
b212cdaedb
gnu: sbcl-puri: Remove Make reference from closure.
...
* gnu/packages/lisp-xyz.scm (sbcl-puri)[source]: Delete the 'debian' folder.
This takes the closure size from 209 MiB down to 151 MiB.
2022-07-08 19:32:44 +02:00
Pierre Neidhardt
baed82efa7
gnu: sbcl-xlunit: Remove Make reference from closure.
...
* gnu/packages/lisp-check.scm (sbcl-xlunit)[source]: Delete the 'debian' folder.
This takes the closure size from 209 MiB down to 151 MiB.
2022-07-08 19:32:44 +02:00
Pierre Neidhardt
ffc6e0a391
gnu: sbcl-ptester: Remove Make reference from closure.
...
* gnu/packages/lisp-check.scm (sbcl-ptester)[source]: Delete the 'debian' folder.
This takes the closure size from 209 MiB down to 151 MiB.
2022-07-08 19:32:44 +02:00
Pierre Neidhardt
fef5fa4815
gnu: sbcl-rt: Remove Make reference from closure.
...
* gnu/packages/lisp-check.scm (sbcl-rt)[source]: Delete the 'debian' folder.
This takes the closure size from 209 MiB down to 151 MiB.
2022-07-08 19:32:44 +02:00
Pierre Neidhardt
d14070bd29
gnu: sbcl: Remove Coreutils reference from closure.
...
* gnu/packages/lisp.scm (sbcl)[arguments]: Add phase to do it.
This shrinks SBCL from 167MiB to 150MiB.
Most importantly, this propagates to all sbcl-* packages.
2022-07-08 19:32:41 +02:00
Gabriel Wicki
1051db2526
gnu: Add ack.
...
* gnu/packages/textutils.scm (ack): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2022-07-08 18:41:35 +02:00
Gabriel Wicki
dbb40b883e
gnu: Add perl-file-next.
...
* gnu/packages/perl.scm (perl-file-next): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net >
2022-07-08 18:41:35 +02:00
Ricardo Wurmus
bafa7a00a1
gnu: Add python-pyro-api.
...
* gnu/packages/machine-learning.scm (python-pyro-api): New variable.
2022-07-08 18:41:35 +02:00
Ricardo Wurmus
22e223e489
gnu: Add python-nbstripout.
...
* gnu/packages/jupyter.scm (python-nbstripout): New variable.
2022-07-08 18:41:35 +02:00
Ricardo Wurmus
e56b07663c
gnu: Add python-pytest-cram.
...
* gnu/packages/python-check.scm (python-pytest-cram): New variable.
2022-07-08 18:41:35 +02:00
Ricardo Wurmus
684c718e6a
gnu: Add python-opt-einsum.
...
* gnu/packages/python-science.scm (python-opt-einsum): New variable.
2022-07-08 18:41:35 +02:00
Ricardo Wurmus
c6136b48c2
gnu: Add python-torchfile.
...
* gnu/packages/machine-learning.scm (python-torchfile): New variable.
2022-07-08 18:41:35 +02:00
Leo Famulari
788ba04f38
gnu: FFmpeg 3: Update to 3.4.11.
...
* gnu/packages/video.scm (ffmpeg-3.4): Update to 3.4.11.
2022-07-08 12:15:30 -04:00
Leo Famulari
df7acf25bc
gnu: FFmpeg 2: Update to 2.8.20.
...
* gnu/packages/video.scm (ffmpeg-2.8): Update to 2.8.20.
2022-07-08 12:15:29 -04:00
Leo Famulari
f081342e10
gnu: linux-libre 4.9: Update to 4.9.322.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.322.
(linux-libre-4.9-pristine-source): Update hash.
2022-07-08 11:50:37 -04:00
Leo Famulari
564b60796e
gnu: linux-libre 4.14: Update to 4.14.287.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.287.
(linux-libre-4.14-pristine-source): Update hash.
2022-07-08 11:50:37 -04:00
Leo Famulari
942627ab14
gnu: linux-libre 4.19: Update to 4.19.251.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.251.
(linux-libre-4.19-pristine-source): Update hash.
2022-07-08 11:50:36 -04:00
Leo Famulari
010c233095
gnu: linux-libre 5.4: Update to 5.4.204.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.204.
(linux-libre-5.4-pristine-source): Update hash.
2022-07-08 11:50:36 -04:00
Leo Famulari
f18e4e268b
gnu: linux-libre 5.10: Update to 5.10.129.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.129.
(linux-libre-5.10-pristine-source): Update hash.
2022-07-08 11:50:36 -04:00
Leo Famulari
8dc0de8adb
gnu: linux-libre 5.15: Update to 5.15.53.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.53.
(linux-libre-5.15-pristine-source): Update hash.
2022-07-08 11:50:35 -04:00
Leo Famulari
e554c67e0e
gnu: linux-libre 5.18: Update to 5.18.10.
...
* gnu/packages/linux.scm (linux-libre-5.18-version): Update to 5.18.10.
(linux-libre-5.18-pristine-source): Update hash.
2022-07-08 11:50:28 -04:00
Paul A. Patience
e07fa9b040
gnu: Add cppawk and cppawk-egawk.
...
* gnu/packages/gawk.scm (cppawk, cppawk-egawk): New variables.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-08 17:36:51 +02:00
Paul A. Patience
1fed71ce19
gnu: Add egawk-next.
...
* gnu/packages/gawk.scm (egawk-next): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-08 17:36:38 +02:00
Paul A. Patience
2e5c519b3f
gnu: Add gawk-mpfr.
...
* gnu/packages/gawk.scm (gawk-mpfr): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-08 17:36:27 +02:00
Paul A. Patience
f5efde47f7
gnu: Use 'license:' prefix in (gnu packages gawk).
...
* gnu/packages/gawk.scm: Import (guix licenses) with 'license:' prefix.
(gawk, mawk)[license]: Prefix with 'license:'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-08 17:36:23 +02:00
Ale Abdo
b4e74f875f
gnu: python-graph-tool: Update to 2.45.
...
* gnu/packages/graph.scm (python-graph-tool): Update to 2.45.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-08 17:32:15 +02:00
Ludovic Courtès
9100acb6fb
doc: cookbook: Link to "A Scheme Primer".
...
* doc/guix-cookbook.texi (A Scheme Crash Course): Link to "A Scheme
Primer". Group references in @quotation for clarity.
2022-07-08 17:28:50 +02:00
Ludovic Courtès
da7bee91fa
doc: cookbook: Suggest 'guix shell'.
...
* doc/guix-cookbook.texi (A Scheme Crash Course): Suggest 'guix shell'
instead of 'guix environment'.
(Customizing the Kernel, The benefits of manifests): Likewise.
2022-07-08 17:28:50 +02:00
Ludovic Courtès
3759b71dc8
gnu: curl@7.84.0: Reduce lib3026 resource use on 32-bit platforms.
...
This is a followup to c145e51844 .
See discussion at
<https://lists.gnu.org/archive/html/guix-devel/2022-07/msg00011.html >.
* gnu/packages/curl.scm (curl-7.84.0)[arguments]: Remove
'skip-failing-tests' and add 'tweak-lib3026-test'.
2022-07-08 17:28:50 +02:00
Björn Höfling
ff751a68dc
etc: teams: Add entry for Björn Höfling.
...
* etc/teams.scm.in ("Björn Höfling"): New member.
2022-07-08 17:11:24 +02:00
Felix Gruber
6f909b37fa
gnu: gdal: Use cmake-build-system.
...
Gdal declared its configure script as deprecated with the release of
version 3.5 and is planning to deprecate it with release 3.6 which is
scheduled for November 2022.
* gnu/packages/geo.scm (gdal)[build-system]: Use cmake-build-system.
[arguments]: Remove configure flags for library search paths;
they are found automatically by cmake now. Add
-DGDAL_USE_INTERNAL_LIBS=WHEN_NO_EXTERNAL and
-DGDAL_USE_JPEG12_INTERNAL=OFF to get approximately the same results
as with the old configure script.
[inputs]: Remove pcre. Add pcre2 and qhull.
2022-07-08 17:11:23 +02:00
jgart
15943fa757
gnu: python-debug: Improve synopsis.
...
* gnu/packages/python.scm (python-debug) [synopsis]: Update.
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-08 09:33:12 -04:00
Timotej Lazar
a9fd061212
gnu: sssd: Update to 2.7.3.
...
* gnu/packages/sssd.scm (sssd): Update to 2.7.3.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-08 13:52:13 +01:00
Christopher Baines
b4c4a6acb1
guix: inferior: Fix the behaviour of open-inferior #:error-port.
...
I'm looking at this as the Guix Data Service uses this behaviour to record and
display logs from inferior processes.
* guix/inferior.scm (open-bidirectional-pipe): Call dup2 for file descriptor
2, passing either the file number for the current error port, or a file
descriptor for /dev/null.
* tests/inferior.scm ("#:error-port stderr", "#:error-port pipe"): Add two new
tests that cover some of the #:error-port behaviour.
2022-07-08 13:51:34 +01:00
Arun Isaac
37dd7e53b9
gnu: Add omega.
...
* gnu/packages/search.scm (omega): New variable.
* gnu/packages/search.scm (xapian): Add note to update omega when updating
xapian.
2022-07-08 11:32:46 +05:30
Simon South
7dfb8dc4c1
gnu: vlc: Add bash-minimal as an input.
...
* gnu/packages/video.scm (vlc)[inputs]: Add bash-minimal, silencing a warning
from "guix lint vlc" as "wrap-program" is used in the package definition.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-08 00:16:15 +01:00
Simon South
f53e14be33
gnu: vlc: Remove input labels.
...
* gnu/packages/video.scm (vlc)[native-inputs]: Remove input labels.
[inputs]: Remove input labels and re-sort.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-08 00:16:14 +01:00
Simon South
07986d0fad
gnu: Remove srt-1.4.1.
...
* gnu/packages/networking.scm (srt-1.4.1): Delete variable.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-08 00:16:14 +01:00
Simon South
6b9d373083
gnu: vlc: Use regular srt.
...
* gnu/packages/video.scm (vlc)[inputs]: Use regular srt package, supported
since upstream commit 9a28929.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-08 00:16:14 +01:00
Simon South
5feeb51f1b
gnu: srt: Update to 1.4.4.
...
* gnu/packages/networking.scm (srt): Update to 1.4.4.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-08 00:16:13 +01:00
Simon South
70f3914c24
gnu: srt: Remove input labels.
...
* gnu/packages/networking.scm (srt)[native-inputs]: Remove input labels.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-08 00:16:13 +01:00
Christopher Baines
a4c6997acb
gnu: guix-build-coordinator: Update to 0-58.a7bbf9d.
...
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-58.a7bbf9d.
2022-07-08 00:15:50 +01:00
Simon South
8cc2061bc0
gnu: mame: Update to 0.245.
...
* gnu/packages/emulators.scm (mame): Update to 0.245.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-07 23:24:58 +01:00
Christopher Baines
45ed812da5
gnu: guix-build-coordinator: Update to 0-57.3175ac2.
...
* gnu/packages/package-management.scm (guix-build-coordinator): Update to
0-57.3175ac2.
2022-07-07 22:16:12 +01:00
jgart
7fcf6f454e
gnu: cl-gopher: Update to 0899e7f.
...
* gnu/packages/lisp-xyz.scm (cl-gopher): Update to 0899e7f.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-07 22:16:12 +01:00
jgart
0d2ac2bdd4
gnu: cl-http-body: Update to 3e4bedd.
...
* gnu/packages/lisp-xyz.scm (cl-http-body): Update to 3e4bedd.
[inputs]: Add missing dependencies.
[native-inputs]: Add missing dependencies.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-07 22:16:12 +01:00
jgart
89161d4919
gnu: perl-scalar-list-utils: Update to 1.62.
...
* gnu/packages/perl.scm (perl-scalar-list-utils): Update to 1.62.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-07 22:16:11 +01:00
Felix Gruber
ca291e4f73
gnu: mia: Build against VTK 9.
...
* gnu/packages/image-processing.scm (mia): Build against VTK 9.
[inputs]: Remove vtk-7; add vtk.
[source]: Add mia-vtk9.patch.
* gnu/packages/patches/mia-vtk9.patch: New file.
* gnu/local.mk: Add it.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-07 22:16:11 +01:00
Felix Gruber
6cc559b47d
gnu: sameboy: Update to 0.15.
...
* gnu/packages/emulators.scm (sameboy): Update to 0.15.
Signed-off-by: Christopher Baines <mail@cbaines.net >
2022-07-07 22:16:11 +01:00
jgart
08efb331d0
gnu: Add python-pydantic-cli.
...
* gnu/packages/python-xyz.scm (python-pydantic-cli): New variable.
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-07 17:10:07 -04:00
jgart
ad4cd4f073
gnu: emacs-psc-ide: Update to ce97d71.
...
* gnu/packages/emacs-xyz.scm (emacs-psc-ide): Update to ce97d71.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-07 16:23:56 -04:00
(unmatched-parenthesis
96eb2337b5
gnu: Add cproc.
...
* gnu/packages/c.scm (cproc): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-07 16:12:11 -04:00
jgart
5299628b90
gnu: Add sbase.
...
* gnu/packages/suckless.scm (sbase): New variable.
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-07 15:54:17 -04:00
jgart
e103d61485
doc: Document the documentation process.
...
* doc/contributing.texi (Contributing): Add Writing Documentation section.
Co-authored-by: Julien Lepiller <julien@lepiller.eu >
Co-authored-by: Matt Trzcinski <matt@excalamus.com >
Co-authored-by: Fabio Natali <me@fabionatali.com >
Co-authored-by: Gabor Boskovits <boskovits@gmail.com >
Co-authored-by: Luis Felipe <luis.felipe.la@protonmail.com >
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com >
2022-07-07 14:40:50 -04:00
jgart via Guix-patches via
3e8a1e8f25
etc: teams: Add entry for jgart.
...
* etc/teams.scm.in ("jgart"): New member.
Signed-off-by: Lars-Dominik Braun <lars@6xq.net >
2022-07-07 20:08:01 +02:00
Lars-Dominik Braun
c3e4532498
etc: teams: Add entry for Lars-Dominik Braun.
...
* etc/teams.scm.in ("Lars-Dominik Braun"): New member.
2022-07-07 20:06:49 +02:00
John Kehayias
42224e36d1
gnu: darktable: Update to 4.0.0.
...
* gnu/packages/photo.scm (darktable): Update to 4.0.0.
Signed-off-by: Lars-Dominik Braun <lars@6xq.net >
2022-07-07 19:54:09 +02:00
Maxim Cournoyer
fa4a9016be
gnu: pitivi: Update to 2022.06.0.
...
* gnu/packages/patches/pitivi-fix-build-with-meson-0.60.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): De-register it.
* gnu/packages/video.scm (pitivi): Update to 2022.06.0.
[version]: Do not prefix with previous semver version.
[inputs]{gst-plugins/selection}: Add comment about cvtracker.
{python-librosa}: New input.
2022-07-07 12:19:13 -04:00
Maxim Cournoyer
47f0b3ad14
gnu: pitivi: Propagate librsvg.
...
Fixes <https://issues.guix.gnu.org/56288 >.
* gnu/packages/video.scm (pitivi)[native-inputs]: Use new style, relocate
before inputs.
[inputs]: Add bash-minimal, for wrap-program. Move librsvg to...
[propagated-inputs]: ... this new field.
[phases]{wrap-other-dependencies}: Use search-input-file to find output
binary.
Reported-by: Christian Miller <miller.christian@proton.me >
2022-07-07 11:51:58 -04:00
Maxim Cournoyer
6428f854f9
Revert "maint: Disable telephony service tests."
...
This reverts commit c23e0aa65d , since the
telephony service tests have now been fixed.
2022-07-07 10:43:18 -04:00
Maxim Cournoyer
258bc4c4e6
tests: telephony: Remove obsolete parsing tests.
...
Fixes <https://issues.guix.gnu.org/56343 >.
* tests/services/telephony.scm (parse-dbus-reply, parse-account-ids)
(parse-account-details, parse-contacts, getAccountList-reply): Delete
procedures.
("parse-account-ids"): Delete test.
(getAccountDetails-reply): Delete procedure.
("parse-account-details; username, alias and display name"): Delete test.
(getContacts-reply): Delete procedure.
("parse-account-contacts"): Delete test.
(getContacts-empty-reply): Delete procedure.
("parse-account-contacts, empty array"): Delete test.
Reported-by: Ludovic Courtès <ludo@gnu.org >
2022-07-07 10:43:08 -04:00
Ricardo Wurmus
ba86c7604d
gnu: python-torchvision: Update to 0.13.0.
...
* gnu/packages/machine-learning.scm (python-torchvision): Update to 0.13.0.
2022-07-07 14:02:33 +02:00
Ricardo Wurmus
deae5d0df1
gnu: python-pytorch: Update to 1.12.0.
...
* gnu/packages/machine-learning.scm (python-pytorch): Update to 1.12.0.
[arguments]: Explicitly request the use of our pybind11 package.
2022-07-07 14:02:33 +02:00
Ricardo Wurmus
87b43ab562
gnu: xnnpack: Update to 0.0-2.ae108ef.
...
* gnu/packages/machine-learning.scm (xnnpack): Update to 0.0-2.ae108ef.
* gnu/packages/patches/xnnpack-system-libraries.patch: Update.
2022-07-07 14:02:33 +02:00
Ricardo Wurmus
c929619b36
gnu: python-pytorch-for-r-torch: Explicitly keep at 1.11.0.
...
* gnu/packages/machine-learning.scm (python-pytorch-for-r-torch): Separate
from python-pytorch by overriding version and source.
2022-07-07 14:02:33 +02:00
Efraim Flashner
4ddf903872
gnu: radicale: Update to 3.1.7.
...
* gnu/packages/dav.scm (radicale): Update to 3.1.7.
2022-07-07 14:46:29 +03:00
Pierre Neidhardt
dfeafdf109
gnu: emacs-sly-asdf: Update to 20220707.
...
* gnu/packages/emacs-xyz.scm (emacs-sly-asdf): Update to 20220707.
2022-07-07 09:22:41 +02:00
Florian Pelz
b150c70b15
etc: teams: Add entry for Florian Pelz.
...
* etc/teams.scm.in ("Florian Pelz"): New member.
2022-07-07 00:29:14 +02:00
Julien Lepiller
3ce152bf5b
etc: teams: Add entry for Julien Lepiller.
...
* etc/teams.scm.in ("Julien Lepiller"): New member.
2022-07-06 22:16:46 +02:00
Nicolas Goaziou
20a0ed8cf5
gnu: emacs-org-re-reveal: Update to 3.14.1.
...
* gnu/packages/emacs-xyz.scm (emacs-org-re-reveal): Update to 3.14.1.
2022-07-06 21:57:32 +02:00
Nicolas Goaziou
d3e406caf2
gnu: emacs-burly: Update to 0.2.
...
* gnu/packages/emacs-xyz.scm (emacs-burly): Update to 0.2.
2022-07-06 21:46:07 +02:00
Nicolas Goaziou
e20011fda4
gnu: emacs-ctable: Update to 0.1.3.
...
* gnu/packages/emacs-xyz.scm (emacs-ctable): Update to 0.1.3.
[arguments]<#:exclude>: Exclude unnecessary file leading to a build error.
2022-07-06 21:42:52 +02:00
Nicolas Goaziou
eb9ea4c227
gnu: emacs-circe: Update to 2.12.
...
* gnu/packages/emacs-xyz.scm (emacs-circe): Update to 2.12.
2022-07-06 21:35:18 +02:00
Nicolas Goaziou
1fdba16821
gnu: emacs-elfeed-score: Update to 1.2.4.
...
* gnu/packages/emacs-xyz.scm (emacs-elfeed-score): Update to 1.2.4.
2022-07-06 21:26:39 +02:00
Ricardo Wurmus
17892c5f9c
gnu: mumi: Update to 0.0.2-1.0248507.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.2-1.0248507.
2022-07-06 20:31:27 +02:00
Nicolas Goaziou
ca3ba07b17
gnu: emacs-apheleia: Update to 3.0.
...
* gnu/packages/emacs-xyz.scm (emacs-apheleia): Update to 3.0.
2022-07-06 20:30:07 +02:00
Leo Famulari
fe24e0c29c
gnu: OpenSSL 3.0.0: Update to 3.0.5 [fixes CVE-2022-2097 and CVE-2022-2274].
...
https://www.cve.org/CVERecord?id=CVE-2022-2097
https://www.cve.org/CVERecord?id=CVE-2022-2274
* gnu/packages/tls.scm (openssl-3.0): Update to 3.0.5.
2022-07-06 14:28:24 -04:00
Leo Famulari
39dcbc7fa3
gnu: OpenSSL: Update to 1.1.1q [fixes CVE-2022-2097].
...
https://www.cve.org/CVERecord?id=CVE-2022-2097
* gnu/packages/tls.scm (openssl/fixed): Update to 1.1.1q.
2022-07-06 14:28:21 -04:00
Nicolas Goaziou
7af6a2caff
gnu: emacs-ox-hugo: Update to 0.12.2.
...
* gnu/packages/emacs-xyz.scm (emacs-ox-hugo): Update to 0.12.2.
2022-07-06 20:25:52 +02:00
Nicolas Goaziou
0231871eb9
gnu: emacs-typit: Update to 0.3.0.
...
* gnu/packages/emacs-xyz.scm (emacs-typit): Update to 0.3.0.
2022-07-06 20:21:03 +02:00
Nicolas Goaziou
ad5f1aa810
gnu: emacs-writegood-mode: Update to 2.2.0.
...
* gnu/packages/emacs-xyz.scm (emacs-writegood-mode): Update to 2.2.0.
2022-07-06 20:19:15 +02:00
Nicolas Goaziou
8697f48a02
gnu: emacs-visual-fill-column: Update to 2.5.
...
* gnu/packages/emacs-xyz.scm (emacs-visual-fill-column): Update to 2.5.
[source]: Update URL.
[home-page]: Update URL.
2022-07-06 20:16:56 +02:00
Nicolas Goaziou
4ea381aa40
gnu: emacs-crdt: Update to 0.3.0.
...
* gnu/packages/emacs-xyz.scm (emacs-crdt): Update to 0.3.0.
2022-07-06 20:11:42 +02:00
Nicolas Goaziou
059b6b3aba
gnu: emacs-citar: Update to 0.9.7.
...
* gnu/packages/emacs-xyz.scm (emacs-citar): Update to 0.9.7.
2022-07-06 20:06:57 +02:00
Nicolas Goaziou
2322567cdc
gnu: fsearch: Update to 0.1.4.
...
* gnu/packages/search.scm (fsearch): Update to 0.1.4.
2022-07-06 19:48:07 +02:00
Nicolas Goaziou
8821777808
gnu: rosegarden: Update to 22.06.
...
* gnu/packages/music.scm (rosegarden): Update to 22.06.
2022-07-06 19:45:01 +02:00
Nicolas Goaziou
7535fc29fb
gnu: emacs-ebdb: Update to 0.8.14.
...
* gnu/packages/emacs-xyz.scm (emacs-ebdb): Update to 0.8.14.
2022-07-06 19:27:33 +02:00
Ricardo Wurmus
e1ae5ab2b9
gnu: mumi: Update to 0.0.2-0.88a68ba.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.2-0.88a68ba.
2022-07-06 18:10:49 +02:00
Ricardo Wurmus
563bb6eab1
gnu: Add python-torchvision.
...
* gnu/packages/machine-learning.scm (python-torchvision): New variable.
2022-07-06 17:16:15 +02:00
Ricardo Wurmus
d4d07ed92b
gnu: mumi: Update to 0.0.1-9.f73df11.
...
* gnu/packages/mail.scm (mumi): Update to 0.0.1-9.f73df11.
2022-07-06 14:21:32 +02:00
Ricardo Wurmus
6211ecfec8
gnu: Add hh-suite.
...
* gnu/packages/bioinformatics.scm (hh-suite): New variable.
2022-07-06 14:00:21 +02:00
Ricardo Wurmus
5bd7de4ced
gnu: Add rust-trycmd-0.13.
...
* gnu/packages/crates-io.scm (rust-trycmd-0.13): New variable.
2022-07-06 14:00:21 +02:00
Ricardo Wurmus
c813136330
gnu: Add rust-toml-edit-0.14.
...
* gnu/packages/crates-io.scm (rust-toml-edit-0.14): New variable.
2022-07-06 14:00:21 +02:00
Ricardo Wurmus
2fd79d33c6
gnu: Add rust-pretty-assertions-1.
...
* gnu/packages/crates-io.scm (rust-pretty-assertions-1): New variable.
2022-07-06 14:00:21 +02:00
Ricardo Wurmus
6a246e151b
gnu: Add rust-kstring-2.
...
* gnu/packages/crates-io.scm (rust-kstring-2): New variable.
2022-07-06 14:00:21 +02:00
Ricardo Wurmus
54e48e37d3
gnu: Add rust-snapbox-0.2.
...
* gnu/packages/crates-io.scm (rust-snapbox-0.2): New variable.
2022-07-06 14:00:21 +02:00
Ricardo Wurmus
e4d020d53a
gnu: Add rust-similar-2.
...
* gnu/packages/crates-io.scm (rust-similar-2): New variable.
2022-07-06 14:00:21 +02:00
Ricardo Wurmus
5c9461fb47
gnu: Add rust-libtest-mimic-0.3.
...
* gnu/packages/crates-io.scm (rust-libtest-mimic-0.3): New variable.
2022-07-06 14:00:21 +02:00
Efraim Flashner
422e5d3513
gnu: xl2tpd: Fix cross-compiling.
...
* gnu/packages/vpn.scm (xl2tpd)[arguments]: Rewrite using gexps. Don't
hard-code CC as gcc.
2022-07-06 12:44:16 +03:00
Jean-Pierre De Jesus DIAZ
8760decca7
gnu: connman: Fix cross-compilation.
...
* gnu/packages/connman.scm (connman): Fix cross-compilation.
[arguments]: Use G-Expressions. Set path to binaries at
`#:configure-flags'.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-07-06 12:44:13 +03:00
Pierre Neidhardt
932bf7b293
gnu: sbcl-sketch: Include examples.
...
* gnu/packages/lisp-xyz.scm (sbcl-sketch)[arguments]: Add sketch-examples to
asd-systems.
2022-07-06 11:13:20 +02:00
Efraim Flashner
bf22d0d038
gnu: txr: Install vim syntax files.
...
* gnu/packages/lisp.scm (txr)[arguments]: Add phase to install vim
syntax files.
2022-07-06 12:06:53 +03:00
Paul A. Patience
c2fe78db73
gnu: txr: Update to 278.
...
* gnu/packages/lisp.scm (txr): Update to 278.
[source]: Use 'https' in url.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-07-06 12:06:52 +03:00
André A. Gomes
ff181ed7a1
gnu: sbcl-quri: Update to 0.6.0.
...
* gnu/packages/lisp-xyz.scm (sbcl-quri): Update to 0.6.0.
Signed-off-by: Pierre Neidhardt <mail@ambrevar.xyz >
2022-07-06 11:05:36 +02:00
Philippe SWARTVAGHER
111bdcff48
gnu: hwloc: Update to 2.8.0
...
* gnu/packages/mpi.scm (hwloc): Update to 2.8.0
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-07-06 11:49:31 +03:00
Juliana Sims
8bea879715
gnu: qpwgraph: Add qpwgraph.
...
* gnu/packages/audio.scm (qpwgraph): Add qpwgraph.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il >
2022-07-06 11:15:36 +03:00
Efraim Flashner
8af3a97b9e
gnu: libatomic-ops: Update to 7.6.12.
...
* gnu/packages/bdw-gc.scm (libatomic-ops): Update to 7.6.12.
2022-07-06 09:41:52 +03:00
Leo Famulari
3eeeaa26aa
gnu: Syncthing: Update to 1.20.3.
...
* gnu/packages/syncthing.scm (syncthing): Update to 1.20.3.
2022-07-05 23:09:30 -04:00
Leo Famulari
fca8991850
gnu: Go: Update to 1.17.11.
...
* gnu/packages/golang.scm (go-1.17): Update to 1.17.11.
2022-07-05 23:09:27 -04:00
Leo Famulari
c72c3e851b
gnu: WebKit: Update to 2.36.4 [security fixes].
...
Fixes CVE-2022-22677 and CVE-2022-26710.
* gnu/packages/webkit.scm (%webkit-version, webkitgtk, wpewebkit):
Update to 2.36.4.
2022-07-05 18:46:24 -04:00
Ludovic Courtès
43cf8861b8
gnu: liblantern: Update to 0.8.0.
...
* gnu/packages/machine-learning.scm (liblantern): Update to 0.8.0.
2022-07-05 16:56:05 +02:00
Ludovic Courtès
20f55375dc
gnu: python-pytorch: Update to 1.11.0.
...
* gnu/packages/machine-learning.scm (python-pytorch): Update to 1.11.0.
[source](snippet): Remove now unnecessary "caffe2/onnx/backend.cc"
substitution.
[arguments]: Add 'remove-caffe2-onnx-scripts' phase.
* gnu/packages/patches/python-pytorch-runpath.patch,
gnu/packages/patches/python-pytorch-system-libraries.patch: Update.
2022-07-05 16:56:04 +02:00
Ludovic Courtès
b211824f0a
gnu: onnx: Update to 1.12.0.
...
* gnu/packages/machine-learning.scm (onnx): Update to 1.12.0.
2022-07-05 16:56:04 +02:00
Ludovic Courtès
ef97576972
doc: Document the 'validate-runpath' phase.
...
* doc/guix.texi (Build Systems): Replace paragraph about RUNPATH
validation with a cross-reference.
(Build Phases): Add 'validate-runpath' phase, with the paragraph taken
above.
2022-07-05 16:56:04 +02:00
Nicolas Goaziou
f14895d0c4
gnu: emacs-org-ql: Sort inputs alphabetically.
...
* gnu/packages/emacs-xyz.scm (emacs-org-ql)[propagated-inputs]: Sort inputs
alphabetically.
2022-07-05 14:18:25 +02:00
Nicolas Goaziou
36253cb636
gnu: emacs-org-ql: Update to 0.6.2.
...
* gnu/packages/emacs-xyz.scm (emacs-org-ql): Update to 0.6.2.
2022-07-05 14:16:45 +02:00
Ricardo Wurmus
801be314d2
gnu: r-sandwich: Delete more generated vignette files.
...
* gnu/packages/cran.scm (r-sandwich)[source]: Delete more files.
2022-07-05 13:47:12 +02:00
Efraim Flashner
37cf96835c
gnu: rust: Add correct triplet for riscv64-linux.
...
* gnu/packages/rust.scm (nix-system->gnu-triplet-for-rust): Add entry
for riscv64-linux.
2022-07-05 12:52:53 +03:00
Efraim Flashner
5cf9a03b7a
gnu: rust: Bootstrap with rust-1.54.0.
...
* gnu/packages/rust.scm (rust-1.39): Rename to rust-bootstrap. Update to
1.54.0.
[source]: Update snippet to new version. Replace mrustc patch for 1.39.0
with patch for 1.54.0.
[inputs]: Remove libssh2. Replace llvm-9 with llvm. Add gcc-9.
[arguments]: Adjust custom 'setup-mrustc-sources to also create file
with rust version. Adjust custom 'patch-makefiles phase to changes in
mrustc's build steps. Adjust custom 'build phase to follow mrustc's
build steps for rust-1.54.
(rust-1.40): Replace post-bootstrapped rust-1.40 with 1.55.
[arguments]: Add custom 'set-linker-locale-to-utf8 phase. Adjust custom
'build phase. Remove custom 'neuter-tidy phase.
[inputs]: Replace llvm-9 with llvm.
(rust-1.41, rust-1.42, rust-1.43, rust-1.44, rust-1.45, rust-1.46,
rust-1.47, rust-1.48, rust-1.49, rust-1.50, rust-1.51, rust-1.52,
rust-1.53): Remove variables.
* gnu/packages/patches/rust-1.39.0-src.patch: Remove file.
* gnu/packages/patches/rust-1.54.0-src.patch: Add file.
* gnu/local.mk (dist_patch_DATA): Register changes.
2022-07-05 12:52:48 +03:00
Lars-Dominik Braun
06493e7388
gnu: guix: Update to 1.3.0-28.c23e0aa.
...
Fixes a problem with the binary installer, whose guix command does not
understand manifest format 4 yet.
* gnu/packages/package-management.scm (guix): Update to 1.3.0-28.c23e0aa.
2022-07-05 11:23:21 +02:00
Lars-Dominik Braun
c23e0aa65d
maint: Disable telephony service tests.
...
Temporarily, so we can bump the guix package.
* Makefile.am (SCM_TESTS): Remove tests/services/telephony.scm.
2022-07-05 11:04:18 +02:00
Nicolas Goaziou
02ca41d901
gnu: emacs-parsebib: Update to 4.1.
...
* gnu/packages/emacs-xyz.scm (emacs-parsebib): Update to 4.1.
Fixes bug#56346.
2022-07-05 10:09:22 +02:00
Nicolas Goaziou
85bc10fdab
gnu: emacs-citar: Update to 0.9.6.
...
* gnu/packages/emacs-xyz.scm (emacs-citar): Update to 0.9.6.
[propagated-inputs]: Add EMACS-CITAR.
2022-07-05 09:52:51 +02:00
Marius Bakke
c2ce62b6db
gnu: python-django@3.2: Update to 3.2.14 [fixes CVE-2022-34265].
...
* gnu/packages/django.scm (python-django-3.2): Update to 3.2.14.
2022-07-05 01:56:51 +02:00
Marius Bakke
87fcfb8365
gnu: Django: Update to 4.0.6 [fixes CVE-2022-34265].
...
* gnu/packages/django.scm (python-django-4.0): Update to 4.0.6.
2022-07-05 01:56:50 +02:00
Ludovic Courtès
8d9291bd2c
style: For 'let' and similar forms, emit one binding per line.
...
Previously, 'let' bindings could be rendered like this:
(let ((x 1) (y 2)
(z 3))
...)
With this change, each bindings goes in its own line.
Partly fixes <https://issues.guix.gnu.org/56297 >.
Reported by Maxime Devos <maximedevos@telenet.be >.
* guix/scripts/style.scm (pretty-print-with-comments)[list-of-lists?]:
New procedure.
Use it.
* tests/style.scm: Add tests with 'let' and 'substitute-keyword-arguments'.
2022-07-04 23:38:38 +02:00
Philip McGrath
3348e485b7
etc/guix-install.sh: Check for profile from 'guix home'.
...
If "$HOME/.guix-home/profile" exists, use it for GUIX_PROFILE instead of
"$HOME/.guix-profile".
* etc/guix-install.sh (sys_create_init_profile): Check for 'guix home'
profile.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-04 23:38:38 +02:00
Philip McGrath
23aafc800c
etc/guix-install.sh: Initialize XDG base directories.
...
The default values from the XDG base directory specification make little
sense for Guix System, and some scripts in Guix assume that they are not
"empty or unset": for example, see <https://issues.guix.gnu.org/56050 >.
On foreign distros, however, omitting the default values is likely to
break software from the distro, perhaps even preventing the desktop
environment from starting. To smooth over the difference, use the
system-wide configuration to ensure the environment variables are always
explicitly set on foreign distros.
* etc/guix-install.sh (sys_create_init_profile): Explicitly initialize
XDG base directory variables.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-04 23:38:37 +02:00
Hartmut Goebel
a3d86b341d
style: Add option '--list-stylings'.
...
* guix/scripts/style.scm (show-stylings): New procedure.
(%options, show-help): Add "--list-stylings".
* doc/guix.texi (Invoking guix style): Document "-l".
2022-07-04 16:13:13 +02:00
Hartmut Goebel
fdcd0133b2
gnu: Add trytond-stock-package-shipping-dpd.
...
* gnu/packages/tryton.scm (trytond-stock-package-shipping-dpd): New variable.
2022-07-04 16:10:53 +02:00
Hartmut Goebel
c8f49e5c70
gnu: Add trytond-google-maps.
...
* gnu/packages/tryton.scm (trytond-google-maps): New variable.
2022-07-04 16:10:53 +02:00
Hartmut Goebel
d0326574f8
gnu: Add trytond-gis.
...
* gnu/packages/tryton.scm (trytond-gis): New variable.
2022-07-04 16:10:52 +02:00
Hartmut Goebel
bc6780ee9a
gnu: Add python-geomet.
...
* gnu/packages/python-xyz.scm (python-geomet): New variable.
2022-07-04 16:10:51 +02:00
Nicolas Goaziou
477e561a46
gnu: emacs-emms-print-metadata: Improve package style.
...
* gnu/packages/emacs-xyz.scm (emacs-emms-print-metadata)[arguments]: Use G-expressions.
2022-07-04 15:37:31 +02:00
Nicolas Goaziou
97be378dae
gnu: emacs-emms: Update to 11.
...
* gnu/packages/emacs-xyz.scm (emacs-emms): Update to 11.
2022-07-04 15:36:17 +02:00
Nicolas Goaziou
44b832d719
gnu: emacs-rg: Improve package style.
...
* gnu/packages/emacs-xyz.scm (emacs-rg)[arguments]: Use G-expressions and MAKE-FILE-WRITABLE.
2022-07-04 15:33:15 +02:00
Nicolas Goaziou
30f8183b9a
gnu: emacs-rg: Update to 2.2.1.
...
* gnu/packages/emacs-xyz.scm (emacs-rg): Update to 2.2.1.
2022-07-04 15:32:34 +02:00
Nicolas Goaziou
e5b3349128
gnu: fsearch: Update to 0.1.3.
...
* gnu/packages/search.scm (fsearch): Update to 0.1.3.
2022-07-04 15:31:08 +02:00
Nicolas Goaziou
942dcd30c4
gnu: manuskript: Update package style.
...
* gnu/packages/text-editors.scm (manuskript)[arguments]: Use
G-expressions. Remove trailing #T.
2022-07-04 15:28:07 +02:00
Nicolas Goaziou
ba2d504939
gnu: manuskript: Update to 0.14.0.
...
* gnu/packages/text-editors.scm (manuskript): Update to 0.14.0.
2022-07-04 15:25:14 +02:00
Nicolas Goaziou
c0f6287974
gnu: nauty: Update package style.
...
* gnu/packages/maths.scm (nauty)[arguments]: Use G-expressions. Remove
trailing #T.
2022-07-04 15:22:03 +02:00
Nicolas Goaziou
c3a2d354e3
gnu: nauty: Update to 2.7r4.
...
* gnu/packages/maths.scm (nauty): Update to 2.7r4.
2022-07-04 15:19:11 +02:00
Nicolas Goaziou
f5758b36da
gnu: tlpui: Use G-expressions.
...
* gnu/packages/linux.scm (tlpui)[arguments]: Use G-expressions.
2022-07-04 15:11:39 +02:00
Nicolas Goaziou
16c2372fe8
gnu: tlpui: Honor TESTS?.
...
* gnu/packages/linux.scm (tlpui)[arguments]<#:phases>: Honor TESTS? in CHECK
phase.
2022-07-04 15:08:36 +02:00
Nicolas Goaziou
56892af033
gnu: tlpui: Update to 1.5.0-1.
...
* gnu/packages/linux.scm (tlpui): Update to 1.5.0-1.
2022-07-04 15:07:54 +02:00
Pierre Neidhardt
741a5ec00a
gnu: emacs-sly-stepper: Update to 20220704.
...
* gnu/packages/emacs-xyz.scm (emacs-sly-stepper): Update to 20220704.
2022-07-04 14:52:24 +02:00
Ricardo Wurmus
a0125732ef
gnu: Add r-sccustomize.
...
* gnu/packages/bioinformatics.scm (r-sccustomize): New variable.
2022-07-04 13:48:58 +02:00
Ricardo Wurmus
602cf66c79
gnu: Add r-dittoseq.
...
* gnu/packages/bioconductor.scm (r-dittoseq): New variable.
2022-07-04 13:48:58 +02:00
Ricardo Wurmus
e05f62bf6a
gnu: Add r-ggprism.
...
* gnu/packages/cran.scm (r-ggprism): New variable.
2022-07-04 13:48:58 +02:00
Ricardo Wurmus
cbfcff5961
gnu: Add r-ggrastr.
...
* gnu/packages/cran.scm (r-ggrastr): New variable.
2022-07-04 13:48:57 +02:00
Ricardo Wurmus
4aee04819e
gnu: Add r-janitor.
...
* gnu/packages/cran.scm (r-janitor): New variable.
2022-07-04 13:48:57 +02:00
Ricardo Wurmus
12d206901a
gnu: Add r-paletteer.
...
* gnu/packages/cran.scm (r-paletteer): New variable.
2022-07-04 13:48:57 +02:00
Ricardo Wurmus
9c58c87aa9
gnu: Add r-prismatic.
...
* gnu/packages/cran.scm (r-prismatic): New variable.
2022-07-04 13:48:57 +02:00
Ricardo Wurmus
738e4eea14
gnu: Add r-colorway.
...
* gnu/packages/statistics.scm (r-colorway): New variable.
2022-07-04 13:48:57 +02:00
Jean-Pierre De Jesus DIAZ
31e4eaf52c
gnu: vpnc: Add bsd-2 license.
...
* gnu/packages/vpn.scm (vpnc)[license]: Add bsd-2.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-04 12:29:05 +02:00
Jean-Pierre De Jesus DIAZ
bb88505ee8
gnu: vpnc: Fix cross-compilation.
...
* gnu/packages/vpn.scm (vpnc): Fix cross-compilation.
[native-inputs]: Add conditional input of `this-package' (vpnc)
to reuse the man page and add `pkg-config'.
[arguments]: Use G-Expressions.
[arguments]: Make use of `make-flags' instead of using substitutions.
[arguments]: Remove unneeded deletion of `configure'.
[arguments]: Use `pkg-config' to search for libgcrypt.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-04 12:29:05 +02:00
Sharlatan Hellseher
e8e7b4cdae
gnu: Add giza
...
* gnu/packages/maths.scm (giza): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-04 12:29:05 +02:00
Zhu Zihao
84d413d2fd
gnu: solidity: Update to 0.8.15.
...
* gnu/packages/solidity.scm (solidity): Update to 0.8.15.
[source]: Use Github release.
[arguments]<#:phases>: Remove phase 'create-commit_hash.txt'.
Restore phase 'configure' and phase 'install'.
Remove modifications applied to the phase 'build' and phase 'check'.
Add phase 'unbundle-3rd-party-dependencies'.
[inputs]: Add fmt-for-solidity, range-v3.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-04 12:29:05 +02:00
Zhu Zihao
b49c2e558d
gnu: Add fmt-for-solidity.
...
* gnu/packages/pretty-print.scm (fmt-for-solidity): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-04 12:29:05 +02:00
Zhu Zihao
da6ea4ab88
gnu: solidity: Use G-expressions.
...
* gnu/packages/solidity.scm (solidity)[arguments]: Use G-expressions.
[native-inputs]: Use label-less style inputs.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-04 12:29:05 +02:00
Zhu Zihao
0e64835b2e
gnu: z3: Prefer CMake to build the package.
...
Z3 developer recommends to use CMake to build Z3 except the OCaml bindings.
Use CMake also enable us to cross compile z3.
* gnu/packages/maths.scm (z3)[build-system]: Use cmake-build-system.
[arguments]<#:configure-flags>: Add flags for CMake.
<#:phases>: Remove stale phase 'fix-compatability'.
In phase 'check', build the z3 test binary and don't test when cross
compiling.
Add phase 'compile-python-modules' phase to generate python bytecode cache for
z3 python binding.
Add phase 'fix-z3-library-path' to help z3 pythong binding to find the z3
shared library.
(ocaml-z3)[build-system]: Override the inherited value with 'gnu-build-system'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-04 12:29:04 +02:00
Zhu Zihao
cec5142183
gnu: z3: Update to 4.8.17.
...
* gnu/packages/maths.scm (z3): Update to 4.8.17.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-04 12:29:04 +02:00
Zhu Zihao
3366be5db0
gnu: z3: Use G-expressions.
...
* gnu/packages/maths.scm (z3)[arguments]: Use G-expressions.
[native-inputs]: Use label-less style.
Signed-off-by: Ludovic Courtès <ludo@gnu.org >
2022-07-04 12:29:04 +02:00
Pierre Neidhardt
7cddd130df
gnu: sbcl-nkeymaps: Update to 1.0.0.
...
* gnu/packages/lisp-xyz.scm (sbcl-nkeymaps): Update to 1.0.0.
2022-07-04 11:03:06 +02:00
Efraim Flashner
b56dad9b2c
gnu: tbb: Fix building on riscv64-linux.
...
* gnu/packages/tbb.scm (tbb)[source]: Add patch.
* gnu/packages/patches/tbb-other-arches.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
2022-07-04 11:14:41 +03:00
Efraim Flashner
47ed000d4d
etc: teams: Add entry for Efraim Flashner.
...
* etc/teams.scm.in ("Efraim Flashner"): New member.
2022-07-04 11:14:39 +03:00
Leo Famulari
4d126e7762
gnu: linux-libre 4.9: Update to 4.9.321.
...
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.321.
(linux-libre-4.9-pristine-source): Update hash.
2022-07-03 23:56:14 -04:00
Leo Famulari
2a9e397043
gnu: linux-libre 4.14: Update to 4.14.286.
...
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.286.
(linux-libre-4.14-pristine-source): Update hash.
2022-07-03 23:56:14 -04:00
Leo Famulari
a2e56e6a1c
gnu: linux-libre 4.19: Update to 4.19.250.
...
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.250.
(linux-libre-4.19-pristine-source): Update hash.
2022-07-03 23:56:14 -04:00
Leo Famulari
71281783fc
gnu: linux-libre 5.4: Update to 5.4.203.
...
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.203.
(linux-libre-5.4-pristine-source): Update hash.
2022-07-03 23:56:14 -04:00
Leo Famulari
004be75424
gnu: linux-libre 5.10: Update to 5.10.128.
...
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.128.
(linux-libre-5.10-pristine-source): Update hash.
2022-07-03 23:56:13 -04:00
Leo Famulari
5df7a33af7
gnu: linux-libre 5.15: Update to 5.15.52.
...
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.52.
(linux-libre-5.15-pristine-source): Update hash.
2022-07-03 23:56:13 -04:00
Leo Famulari
9cd92b259b
gnu: linux-libre: Update to 5.18.9.
...
* gnu/packages/linux.scm (linux-libre-5.18-version): Update to 5.18.9.
(linux-libre-5.18-pristine-source): Update hash.
2022-07-03 23:56:13 -04:00
Leo Famulari
1f33ff1173
teams: Add leo Famulari.
...
* etc/teams.scm.in ("Leo Famulari"): New member.
2022-07-03 22:50:31 -04:00
Raghav Gururajan
a78d101eb3
gnu: bitmask: Fix loading of GUI.
...
* gnu/packages/vpn.scm (bitmask)[inputs]: Add qtgraphicaleffects.
2022-07-03 21:59:20 -04:00
Efraim Flashner
9061ac29af
gnu: libunwind: Update to 1.6.2.
...
* gnu/packages/libunwind.scm (libunwind): Update to 1.6.2.
2022-07-03 10:25:43 +03:00
Marius Bakke
01d1b285b8
gnu: nss: Use G-expressions.
...
* gnu/packages/nss.scm (nss)[arguments]: Use gexp and remove labels.
2022-06-29 21:22:33 +02:00
Marius Bakke
b316d8b751
gnu: nspr: Use G-expressions.
...
* gnu/packages/nss.scm (nspr)[arguments]: Convert to gexp.
2022-06-29 21:22:33 +02:00
Marius Bakke
fd004ddafa
gnu: nss, nss-certs: Update to 3.80.
...
* gnu/packages/certs.scm (nss-certs): Update to 3.80.
* gnu/packages/nss.scm (nss): Likewise.
2022-06-29 21:22:33 +02:00
Marius Bakke
de9d389c54
gnu: nspr: Update to 4.34.
...
* gnu/packages/nss.scm (nspr): Update to 4.34.
2022-06-29 21:22:33 +02:00
Efraim Flashner
a56ab603fd
gnu: python-shiboken-2: Update to 5.15.5.
...
* gnu/packages/qt.scm (python-shiboken-2): Update to 5.15.5.
2022-06-28 12:48:30 +03:00
Efraim Flashner
93bff2d79d
gnu: python-pyqtwebengine: Update to 5.15.5.
...
* gnu/packages/qt.scm (python-pyqtwebengine): Update to 5.15.5.
2022-06-28 12:48:30 +03:00
Efraim Flashner
c6c56f989b
gnu: python-pyqt: Update to 5.15.5.
...
* gnu/packages/qt.scm (python-pyqt): Update to 5.15.5.
2022-06-28 12:48:30 +03:00
Efraim Flashner
1218a5ad69
gnu: qt-5: Update to 5.15.5.
...
* gnu/packages/qt.scm (qtbase-5, qtsvg, qtimageformats, qtx11extras,
qtxmlpatterns, qtdeclarative, qtconnectivity, qtwebsockets, qtsensors,
qtmultimedia, qtwayland, qtserialport, qtserialbus, qtwebchannel,
qtwebglplugin, qtwebview, qtlocation, qttools, qtscript,
qtquickcontrols, qtquickcontrols2, qtgraphicaleffects, qtgamepad,
qtscxml, qtpurchasing, qtcharts, qtdatavis3d, qtnetworkauth,
qtremoteobjects, qtspeech, qtwebengine): Update to 5.15.5.
(qtscxml)[arguments]: Skip tests.
(qtwebengine)[inputs]: Add libxkbfile.
2022-06-28 12:42:30 +03:00
Efraim Flashner
71fb77cb65
gnu: python-shiboken-2: Update to 5.15.4.
...
* gnu/packages/qt.scm (python-shiboken-2): Update to 5.15.4.
2022-06-25 21:09:07 +03:00
Efraim Flashner
571fdf91cc
gnu: python-pyqtwebengine: Update to 5.15.4.
...
* gnu/packages/qt.scm (python-pyqtwebengine): Update to 5.15.4.
2022-06-25 21:09:00 +03:00
Efraim Flashner
74e8b14129
gnu: python-pyqt5-sip: Update to 12.10.1.
...
* gnu/packages/qt.scm (python-pyqt5-sip): Update to 12.10.1.
2022-06-25 21:08:52 +03:00
Efraim Flashner
566250ec34
gnu: python-pyqt: Update to 5.15.4.
...
* gnu/packages/qt.scm (python-pyqt): Update to 5.15.4.
2022-06-25 21:08:44 +03:00
Efraim Flashner
2ca5163651
gnu: qt-5: Update to 5.15.4.
...
* gnu/packages/qt.scm (qtbase-5, qtsvg, qtimageformats, qtx11extras,
qtxmlpatterns, qtconnectivity, qtwebsockets, qtsensors, qtmultimedia,
qtwayland, qtserialport, qtserialbus, qtwebchannel, qtwebglplugin,
qtwebview, qtlocation, qttools, qtscript, qtquickcontrols,
qtquickcontrols2, qtgraphicaleffects, qtgamepad, qtscxml, qtpurchasing,
qtcharts, qtdatavis3d, qtnetworkauth, qtremoteobjects, qtspeech,
qtwebengine): Update to 5.15.4.
(qt5-urls): Adjust to new upstream URI names.
(qtsvg, qtxmlpatterns, qtdeclarative, qtsensors, qtwayland, qtserialport,
qtwebglplugin, qtscxml, qtremoteobjects)[arguments]: Remove trailing #t
from phases.
(qtimageformats, qtmultimedia)[source]: Remove #t from snippet.
(qtimageformats)[arguments]: Remove field.
(qtxmlpatterns)[arguments]: Enable tests. Add phase to skip another test.
(qtlocation)[source]: Use qt5-urls format.
[arguments]: Add phase in preparation to run the tests.
(qtcharts)[arguments]: Don't disable the tests. Add a phase to skip some
failing tests.
(qtnetworkauth)[arguments]: Remove field.
(qtwebengine)[source]: Adjust the preserved-third-party-files and the
substitutions due to changes in the sources.
[native-inputs]: Add node.
2022-06-25 21:08:27 +03:00
Marius Bakke
66e3adcad8
gnu: Remove unused patch.
...
This is a follow-up to commit fce910af55 .
* gnu/packages/patches/postgresql-riscv-spinlocks.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-06-24 00:07:32 +02:00
Marius Bakke
6c7fcc71d1
gnu: qtbase: Build with PostgreSQL@14.
...
* gnu/packages/qt.scm (qtbase-5)[inputs]: Change from POSTGRESQL-13 to
POSTGRESQL-14.
2022-06-23 19:55:44 +02:00
Marius Bakke
fce910af55
gnu: Remove postgresql@13 replacement.
...
* gnu/packages/databases.scm (postgresql-13)[replacement]: Remove.
[source](patches): Inherit from POSTGRESQL-14.
(postgresql-13/replacement): Remove variable.
* gnu/packages/databases.scm (postgresql-11)[source](patches): Inherit from
POSTGRESQL-13.
2022-06-23 19:55:44 +02:00
Marius Bakke
421a3c8172
gnu: libinput: Update to 1.19.4.
...
* gnu/packages/freedesktop.scm (libinput): Update to 1.19.4.
2022-06-23 19:55:44 +02:00
Marius Bakke
b40151ff4f
gnu: glu: Update to 9.0.2.
...
* gnu/packages/gl.scm (glu): Update to 9.0.2.
[source]: Switch to GIT-FETCH.
[native-inputs]: Add PKG-CONFIG, AUTOCONF, AUTOMAKE, and LIBTOOL.
2022-06-23 19:55:43 +02:00
Marius Bakke
ddc538ac32
gnu: libical: Update to 3.0.14.
...
* gnu/packages/calendar.scm (libical): Update to 3.0.14.
[arguments]: Remove trailing #t's.
2022-06-23 19:55:43 +02:00
Marius Bakke
a6bc7baa54
gnu: freeglut: Update to 3.2.2.
...
* gnu/packages/gl.scm (freeglut): Update to 3.2.2.
[source](uri): Switch to new primary download location.
[source](patches): Remove.
* gnu/packages/patches/freeglut-gcc-compat.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-06-23 19:55:43 +02:00
Marius Bakke
60f17c197d
gnu: bluez: Use new style.
...
* gnu/packages/linux.scm (bluez)[arguments]: Use G-expressions and remove
trailing #t's.
2022-06-23 19:55:43 +02:00
Marius Bakke
6cb7e67dc5
gnu: bluez: Simplify inputs.
...
* gnu/packages/linux.scm (bluez)[native-inputs]: Remove labels.
2022-06-23 19:55:43 +02:00
Marius Bakke
7f209d8425
gnu: bluez: Update to 5.64.
...
* gnu/packages/linux.scm (bluez): Update to 5.64.
2022-06-23 19:55:43 +02:00
Marius Bakke
1535d8c5d8
gnu: libwebp: Simplify inputs.
...
* gnu/packages/image.scm (libwebp)[inputs]: Remove labels.
2022-06-23 19:55:43 +02:00
Marius Bakke
c209146212
gnu: libwebp: Update to 1.2.2.
...
* gnu/packages/image.scm (libwebp): Update to 1.2.2.
2022-06-23 19:55:43 +02:00
Marius Bakke
2692624ecf
gnu: libepoxy: Use new style.
...
* gnu/packages/gl.scm (libepoxy)[arguments]: Use gexp and remove labels.
While at it, remove obsolete substitution.
2022-06-23 19:55:43 +02:00
Marius Bakke
32c676bbcd
gnu: libepoxy: Update to 1.5.10.
...
* gnu/packages/gl.scm (libepoxy): Update to 1.5.10.
[source]: Switch to GIT-FETCH.
[arguments]: Remove trailing #t and defunct bootstrap phase.
2022-06-23 19:55:43 +02:00
Marius Bakke
3787f0d215
gnu: python-charset-normalizer: Update to 2.1.0.
...
* gnu/packages/python-xyz.scm (python-charset-normalizer): Update to 2.1.0.
2022-06-23 19:55:43 +02:00
Marius Bakke
a4283bf55f
gnu: python-urllib3: Update to 1.26.9.
...
* gnu/packages/python-web.scm (python-urllib3): Update to 1.26.9.
2022-06-23 19:55:42 +02:00
Marius Bakke
647ec2ae78
gnu: python-requests: Update to 2.28.0.
...
* gnu/packages/python-web.scm (python-requests): Update to 2.28.0.
[arguments]: Loosen charset-normalizer requirement.
2022-06-23 19:55:42 +02:00
Marius Bakke
9acd1a150f
gnu: python-certifi: Update to 2022.6.15.
...
* gnu/packages/python-crypto.scm (python-certifi): Update to 2022.6.15.
2022-06-23 19:55:42 +02:00
Marius Bakke
e850e361b6
gnu: python-sphinx: Update to 5.0.2.
...
* gnu/packages/sphinx.scm (python-sphinx): Update to 5.0.2.
2022-06-23 19:55:42 +02:00
Marius Bakke
a5436115a0
gnu: python-babel: Update to 2.10.3.
...
* gnu/packages/python-xyz.scm (python-babel): Update to 2.10.3.
2022-06-23 19:55:42 +02:00
Marius Bakke
87793b349f
gnu: libva: Use G-expressions.
...
* gnu/packages/video.scm (libva)[arguments]: Use G-expressions.
2022-06-23 19:55:42 +02:00
Marius Bakke
a49c829a05
gnu: libva: Update to 2.14.0.
...
* gnu/packages/video.scm (libva): Update to 2.14.0.
* gnu/packages/gl.scm (libva-without-mesa)[arguments]: Remove obsolete
configure flag. While here, remove unnecessary splicing.
2022-06-23 19:55:42 +02:00