Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 3385287bb091f694a9f0f9b082b923a2dfc59f83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python

# Copyright (C) 2009, Aleksey Lim
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

"""Convenient setup.py to bundle saccharin/0install to newly created .xo"""

import os
import shutil
import subprocess
from optparse import OptionParser

from sugar.activity import bundlebuilder


def call(cmd):
    if subprocess.call(cmd, shell=True) != 0:
        raise Exception('Fail to execute "%s" command' % cmd)


def fetch_saccharin():
    if os.path.exists(spath):
        # keep for moving back after failures
        shutil.move(spath, spath + '~')

    try:
        call('git clone git://git.sugarlabs.org/saccharin/mainline.git ' \
             '--branch production --depth 1 %s' % spath)
        call('git clone ' \
             'git://git.sugarlabs.org/zeroinstall-injector/mainline.git ' \
             '--branch xo --depth 1 %s' % zpath)
        shutil.move(os.path.join(zpath, 'zeroinstall'), spath)
        shutil.rmtree(zpath)
        shutil.rmtree(os.path.join(spath, '.git'))
    except Exception:
        shutil.rmtree(spath, ignore_errors=True)
        if os.path.exists(spath + '~'):
            print 'Bundle previous saccharin.'
            shutil.move(spath + '~', spath)
            return
        raise

    shutil.rmtree(spath + '~', ignore_errors=True)
    call('%s fix_manifest' % __file__)


parser = OptionParser()
parser.disable_interspersed_args()
(_, args) = parser.parse_args()

spath = os.path.join(os.path.dirname(__file__), 'saccharin')
zpath = os.path.join(spath, 'zeroinstall-injector')

if args and args[0] == 'fetch_saccharin':
    fetch_saccharin()
    exit(0)

if args and args[0] == 'dist_xo' and not os.path.islink(spath):
    fetch_saccharin()

bundlebuilder.start()