diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2023-04-19 17:19:35 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2023-04-19 17:25:33 +0800 |
commit | d50ad5daa6a90b554331ab71a13acc52ce4c3b20 (patch) | |
tree | 5d1405b0276b87aaaecfc8da6c7086fd3c6fa9c8 /guix | |
parent | f87fa4f3547ff250f0c0f097fc980b201eec4f10 (diff) | |
download | copr-rpm-spec-d50ad5daa6a90b554331ab71a13acc52ce4c3b20.tar copr-rpm-spec-d50ad5daa6a90b554331ab71a13acc52ce4c3b20.tar.gz copr-rpm-spec-d50ad5daa6a90b554331ab71a13acc52ce4c3b20.tar.bz2 copr-rpm-spec-d50ad5daa6a90b554331ab71a13acc52ce4c3b20.tar.lz copr-rpm-spec-d50ad5daa6a90b554331ab71a13acc52ce4c3b20.tar.xz copr-rpm-spec-d50ad5daa6a90b554331ab71a13acc52ce4c3b20.tar.zst copr-rpm-spec-d50ad5daa6a90b554331ab71a13acc52ce4c3b20.zip |
guix: Skip failed guile-git tests on Fedora 38
https://gitlab.com/guile-git/guile-git/-/issues/29
Diffstat (limited to 'guix')
-rw-r--r-- | guix/guile-git/guile-git.spec | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/guix/guile-git/guile-git.spec b/guix/guile-git/guile-git.spec index fd460ca..ff6fb87 100644 --- a/guix/guile-git/guile-git.spec +++ b/guix/guile-git/guile-git.spec @@ -8,7 +8,7 @@ Name: guile-git Version: 0.5.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Guile bindings of libgit2 License: GPLv3+ and LGPLv3+ @@ -44,6 +44,11 @@ autoreconf -fiv %check +# libgit2 needs known_hosts to verify the server public key. +# https://gitlab.com/guile-git/guile-git/-/issues/29 +%if 0%{?fedora} >= 38 +sed -i 's|tests/clone\.scm||' Makefile +%endif %{__make} %{?_smp_mflags} check @@ -79,6 +84,9 @@ fi %changelog +* Wed Apr 19 2023 Ting-Wei Lan <lantw44@gmail.com> - 0.5.2-5 +- Skip tests/clone.scm on Fedora 38 and later because it needs known_hosts + * Sun Feb 12 2023 Ting-Wei Lan <lantw44@gmail.com> - 0.5.2-4 - Switch to Guile 3.0 - Run SSH tests |