[jhbuild] sanitycheck: Don't check for CVS or Subversion



commit 88531417635567ef76bb45fb92d1d5387042a9e4
Author: Daniel Boles <dboles src gnome org>
Date:   Mon Dec 5 20:27:39 2016 +0000

    sanitycheck: Don't check for CVS or Subversion
    
    https://bugzilla.gnome.org/show_bug.cgi?id=775660

 jhbuild/commands/sanitycheck.py |    9 +--------
 1 files changed, 1 insertions(+), 8 deletions(-)
---
diff --git a/jhbuild/commands/sanitycheck.py b/jhbuild/commands/sanitycheck.py
index d44757a..7675c7d 100644
--- a/jhbuild/commands/sanitycheck.py
+++ b/jhbuild/commands/sanitycheck.py
@@ -115,14 +115,7 @@ class cmd_sanitycheck(Command):
         except:
             uprint(_('Could not find the Perl module %s (usually part of package \'libxml-parser-perl\' or 
\'perl-XML-Parser\')') % perlmod)
 
-        # check for cvs:
-        if not inpath('cvs', os.environ['PATH'].split(os.pathsep)):
-            uprint(_('%s not found') % 'cvs')
-
-        # check for svn:
-        if not inpath('svn', os.environ['PATH'].split(os.pathsep)):
-            uprint(_('%s not found (usually part of the package \'subversion\')') % 'svn')
-
+        # check for a downloading util:
         if not (inpath('curl', os.environ['PATH'].split(os.pathsep)) or
                 inpath('wget', os.environ['PATH'].split(os.pathsep))):
             uprint(_('curl or wget not found'))


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]