Statistics
| Branch: | Tag: | Revision:

root / fabfile.py @ c1129823

History | View | Annotate | Download (6.1 kB)

1
# Copyright 2011 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33
#
34

    
35
import os
36
import sys
37

    
38
from contextlib import contextmanager
39
from fabric.api import *
40
from fabric.colors import *
41

    
42
env.project_root = "./"
43
env.develop = False
44
env.autoremove = True
45
env.packages = ['snf-common', 'snf-app', 'snf-ganeti-tools', 'snf-webproject',
46
                'snf-okeanos-site']
47
env.deb_packages = ['snf-common', 'snf-app', 'snf-ganeti-tools', 'snf-webproject']
48
env.capture = False
49
env.colors = True
50
env.pypi_root = 'pypi'
51
env.roledefs = {
52
    'docs': ['docs.dev.grnet.gr'],
53
    'pypi': ['docs.dev.grnet.gr']
54
}
55

    
56

    
57
# coloured logging
58
notice = lambda x: sys.stdout.write(yellow(x) + "\n")
59
info = lambda x: sys.stdout.write(green(x) + "\n")
60
error = lambda x: sys.stdout.write(red(x) + "\n")
61

    
62
def dev():
63
    env.develop = True
64

    
65
# wrap local to respect global capturing setting from env.capture
66
oldlocal = local
67
def local(cmd, capture="default"):
68
    if capture != "default":
69
        capture = capture
70
    else:
71
        capture = env.capture
72
    return oldlocal(cmd, capture=capture)
73

    
74

    
75
def package_root(p):
76
    return os.path.join(env.project_root, p)
77

    
78

    
79
def remove_pkg(p):
80
    notice("uninstalling package: %s" % p)
81
    with lcd(package_root(p)):
82
        with settings(warn_only=True):
83
            local("pip uninstall %s -y" % p, env.capture)
84

    
85

    
86
def build_pkg(p):
87
    info ("building package: %s" % p)
88
    with lcd(package_root(p)):
89
        with settings(warn_only=True):
90
            local("rm -r dist build")
91
        local("python setup.py egg_info -d sdist")
92

    
93

    
94
def install_pkg(p):
95
    info("installing package: %s" % p)
96
    with lcd(package_root(p)):
97
        if env.develop:
98
            local("python setup.py develop")
99
        else:
100
            local("python setup.py install")
101

    
102

    
103
def install(*packages):
104
    for p in packages:
105
        install_pkg("snf-%s" % p)
106

    
107

    
108
def buildall():
109
    for p in env.packages:
110
        build_pkg(p)
111
    collectdists()
112

    
113

    
114
def installall():
115
    for p in env.packages:
116
        install_pkg(p)
117

    
118
def collectdists():
119
    if os.path.exists("./packages"):
120
        notice("removing 'packages' directory")
121
        local("rm -r packages");
122

    
123
    local("mkdir packages");
124
    for p in env.packages:
125
        local("cp %s/dist/*.tar.gz ./packages/" % package_root(p));
126

    
127
def removeall():
128
    for p in env.packages:
129
        remove_pkg(p)
130

    
131

    
132
def remove(*packages):
133
    for p in packages:
134
        remove_pkg("snf-%s" % p)
135

    
136

    
137
#
138
# GIT helpers
139
#
140

    
141

    
142
def git(params, locl=True):
143
    cmd = local if locl else run
144
    return cmd("git %s" % params, capture=True)
145

    
146

    
147
def branch():
148
    return git("symbolic-ref HEAD").split("/")[-1]
149

    
150

    
151
@contextmanager
152
def co(c):
153
    current_branch = branch();
154
    git("checkout %s" % c)
155
    yield
156
    git("checkout %s" % current_branch)
157

    
158

    
159
#
160
# Debian packaging helpers
161
#
162

    
163
env.debian_branch = 'debian-0.8'
164

    
165
def _last_commit(f):
166
    return local("git rev-list --all --date-order --max-count=1 %s" % f,
167
            capture=True).strip()
168

    
169
def _diff_from_master(c,f):
170
    return local("git log --oneline %s..master %s" \
171
                 " | wc -l" % (c, f), capture=True)
172

    
173
def dch(p):
174
    with co(env.debian_branch):
175
        local("git merge master")
176
        with lcd(package_root(p)):
177
            local("ls .git || mkdir .git")
178

    
179
            # check for new changes in package dir
180
            diff = _diff_from_master(_last_commit("debian/changelog"), ".")
181
            vercmd  = "git describe --tags --abbrev=0 "\
182
                      " | sed -rn '\''s/^v(.*)/\\1/p'\''"
183
            version = local(vercmd, capture=True)
184
            if int(diff) > 0:
185
                local("git-dch --debian-branch=%s --auto " \
186
                      "--spawn-editor=always -N%s" % (env.debian_branch, version))
187
                local("git commit debian/changelog " \
188
                      "-m 'Updated %s changelog'" % p)
189

    
190
            local("rm -r .git")
191

    
192
def builddeb(p, master="master", branch="debian-0.8"):
193
    with lcd(package_root(p)):
194
        local("git merge master")
195
        with settings(warn_only=True):
196
            local("ls .git || mkdir .git")
197
            local("python setup.py clean")
198
            local("git add synnefo/versions/*.py -f")
199
            local("git-buildpackage --git-upstream-branch=%s --git-debian-branch=%s \
200
--git-export=INDEX --git-ignore-new" % (master, branch))
201
            local("rm -rf .git")
202
            local("git reset synnefo/versions/*.py")
203

    
204

    
205
def builddeball(b="debian-0.8"):
206
    with co(b):
207
        for p in env.deb_packages:
208
            builddeb(p, b)
209
    collectdebs()
210

    
211

    
212
def collectdebs():
213
    build_area = env.get('build_area', '../build-area')
214
    for p in env.deb_packages:
215
        local("cp %s/%s*.deb ./packages/" % (build_area, p))
216

    
217
@roles('pypi')
218
def uploadtars():
219
    put("packages/*.tar.gz", 'www/pypi/')
220