remove any KDE special treatment from sourcecode, this is all a matter of configurati...
[mass-build.git] / vcs.py
diff --git a/vcs.py b/vcs.py
index f7a99c10d006557918a17e4f6497e463cb5a0d10..b2387c7f53eb65e2207a9577bdb613652a7ffde0 100644 (file)
--- a/vcs.py
+++ b/vcs.py
@@ -52,10 +52,6 @@ class Git:
                if v.startswith('v'): v = v[1:]
                return v
 
-class KDEGit(Git):
-       def __init__(self, folder, name, commit):
-               Git.__init__(self, folder, 'kde:'+name, commit)
-
 # Fetch updates via SVN
 class SVN:
        def __init__(self, folder, svnPath, versionName):
@@ -72,7 +68,3 @@ class SVN:
 
        def version(self):
                return self.versionName
-
-class KDESVN(SVN):
-       def __init__(self, folder, svnPath, version):
-               SVN.__init__(self, folder, 'svn://svn.kde.org/home/kde/'+svnPath, version)