From 60cc3e5d5595b960b8d9156fa1955c88a21486a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Mon, 4 Dec 2017 11:16:17 +0100 Subject: [PATCH] Drop checks for git and cvs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This essentially forces everyone to install cvs even though they most likely don't need it. There is no easy way to check what is actually going to be needed, so let's just put the responsibility of decoding a potential error message to users. Signed-off-by: Lubomír Sedlář --- pungi/checks.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pungi/checks.py b/pungi/checks.py index dd8d3162..0206cbe3 100644 --- a/pungi/checks.py +++ b/pungi/checks.py @@ -105,9 +105,6 @@ tools = [ ("createrepo_c", "/usr/bin/createrepo_c", is_createrepo_c_needed), ("createrepo_c", "/usr/bin/modifyrepo_c", is_createrepo_c_needed), ("createrepo_c", "/usr/bin/mergerepo_c", is_createrepo_c_needed), - - ("git", "/usr/bin/git", None), - ("cvs", "/usr/bin/cvs", None), ]