Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar-jhbuild
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-01-03 23:38:55 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-01-03 23:38:55 (GMT)
commite6db5c3f93de717ab70c414414a095006b4e2700 (patch)
treeab1e72bb51023172c8f4ef65c8faad4d779acc3b /sugar-jhbuild
parent82c5c408282c41cb217e4b4f657419d9288e63ef (diff)
Checkout GNOME from svn, still needs a patch to jhbuild to work.
Diffstat (limited to 'sugar-jhbuild')
-rwxr-xr-xsugar-jhbuild6
1 files changed, 2 insertions, 4 deletions
diff --git a/sugar-jhbuild b/sugar-jhbuild
index 7990004..cfe60e5 100755
--- a/sugar-jhbuild
+++ b/sugar-jhbuild
@@ -9,13 +9,11 @@ from dependency import LibDependency
def update_jhbuild():
print 'Updating jhbuild...'
sys.path.append(os.path.join(base_dir))
- import cvs
os.chdir(build_scripts_dir)
- cvsroot = ':pserver:anonymous@anoncvs.gnome.org:/cvs/gnome'
- cvs.login(cvsroot, 'anonymous')
- cvs.checkout(cvsroot, 'jhbuild')
+ cmd = ['svn', 'co', 'svn://svn.gnome.org/svn/jhbuild/trunk', 'jhbuild']
+ os.spawnvp(os.P_WAIT, 'svn', cmd)
os.chdir(exec_dir)