From 4702849bfe7462fb6c6303786dac1b670c8f0f8f Mon Sep 17 00:00:00 2001 From: Andrew Tropin Date: Wed, 14 Sep 2022 09:17:31 +0300 Subject: [PATCH] remove copypasted kvaq test --- kv-tests.el | 7 ------- 1 file changed, 7 deletions(-) diff --git a/kv-tests.el b/kv-tests.el index 1713e5e..abd6a24 100644 --- a/kv-tests.el +++ b/kv-tests.el @@ -105,13 +105,6 @@ (should-not (equal "b" (kvaq "a" '((:a . :b)("a" . "b"))))) (should-not (kvaq "b" '((:a . :b)("a" . "b"))))) -(ert-deftest kvaq () - "Test the simple assq." - (should (equal :b (kvaq :a '((:a . :b)("a" . "b"))))) - (should (equal 2 (kvaq 1 '((1 . 2)("a" . "b"))))) - (should-not (equal "b" (kvaq "a" '((:a . :b)("a" . "b"))))) - (should-not (kvaq "b" '((:a . :b)("a" . "b"))))) - (ert-deftest kvaqc () "Test the simple assq." (should (equal :b (kvaqc :a '((:a . :b)("a" . "b"))))) -- 2.37.3 Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/mpd.scm
AgeCommit message (Expand)Author
2024-08-31gnu: mpd: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/mpd.scm (sonata)[native-inputs]: Remove labels. [inputs]: Add 'bash-minimal'. (mcg)[inputs]: Likewise. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I46f0f5f57a6053c7b03f0a3830df3b8bc752f361 Maxime Devos
2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer
2024-04-03gnu: sonata: Add gvfs as an input....I'm getting the following error and this change resolves it: /gnu/store/rw6n86c008xqdbjs3nk4i7ggf6srdpgs-python-wrapper-3.10.7/bin/python: symbol lookup error: /run/current-system/profile/lib/gio/modules/libgvfsdbus.so: undefined symbol: g_task_set_static_name Change-Id: I6f74a5a867ba7c3b3d7b233916af0e75d9e5501f Signed-off-by: Christopher Baines <mail@cbaines.net> Christopher Baines
2024-01-05gnu: mpd: Add D-Bus dependency....MPD requires D-Bus for Zeroconf support. Avahi is currently included as a dependency, but Zeroconf isn't actually enabled due D-Bus. This also enables udisks support. Before this change, `mpd -V' returns: Other features: epoll icu inotify ipv6 systemd tcp un After this change, `mpd -V' returns: Other features: avahi dbus udisks epoll icu inotify ipv6 systemd tcp un * gnu/packages/mpd.scm (mpd): Add D-Bus dependency. [inputs]: Add dbus. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Leo Nikkilä
2024-01-05gnu: mpd: Update to 0.23.15....* gnu/packages/mpd.scm (mpd): Update to 0.23.15. Change-Id: I584f33d5be6b1b62a97b014a758dfbecc8a6fa99 Maxim Cournoyer
2023-12-31gnu: mympd: Update to 13.0.6....* gnu/packages/mpd.scm (mympd): Update to 13.0.6. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Change-Id: Iaaf3985ce4c1399bb0709f2e6702df2a232a1e48 Bruno Victal