From 1960f9b0950430a419d740be62cce4488bdd3b54 Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Tue, 14 Jun 2011 00:21:38 +0200 Subject: Added basic SCM support --- scmprojects.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 scmprojects.py (limited to 'scmprojects.py') diff --git a/scmprojects.py b/scmprojects.py new file mode 100644 index 0000000..4ecedd0 --- /dev/null +++ b/scmprojects.py @@ -0,0 +1,21 @@ +from subprocess import call +import sys + +cmdlineget = { + "svn" : "svn checkout ", + "git" : "git clone ", + "hg" : "hg clone ", + "www" : "wget ", + } + +def getsourcecode(adress,repotype): + callstr = cmdlineget[repotype] + + try: + retcode = call(callstr + adress + " /tmp/ebuildgen/curproj",shell=True) + if retcode < 0: + print("Child was terminated by signal", -retcode, file=sys.stderr) + else: + print("Child returned", retcode, file=sys.stderr) + except OSError as e: + print("Execution failed:", e, file=sys.stderr) -- cgit v1.2.3-65-gdbad