Statistics
| Branch: | Tag: | Revision:

root / fabfile.py @ 4e01aed3

History | View | Annotate | Download (6.9 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-pithos-backend', 'snf-pithos-app', 'snf-pithos-tools']
46
env.capture = False
47
env.colors = True
48
env.pypi_root = 'pypi'
49
env.roledefs = {
50
    'docs': ['docs.dev.grnet.gr'],
51
    'pypi': ['docs.dev.grnet.gr']
52
}
53

    
54

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

    
60
def dev():
61
    env.develop = True
62

    
63

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

    
73

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

    
77

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

    
84

    
85
def build_pkg(p):
86
    info ("building package: %s" % p)
87
    with lcd(package_root(p)):
88
        try:
89
            local("rm -r dist build")
90
        except:
91
            pass
92
        local("python setup.py egg_info -d sdist")
93

    
94

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

    
103

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

    
108

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

    
114

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

    
119

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

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

    
129

    
130
def removeall():
131
    for p in env.packages:
132
        remove_pkg(p)
133

    
134

    
135
def remove(*packages):
136
    for p in packages:
137
        remove_pkg("snf-%s" % p)
138

    
139

    
140
#
141
# GIT helpers
142
#
143

    
144

    
145
def git(params, locl=True):
146
    cmd = local if locl else run
147
    return cmd("git %s" % params, capture=True)
148

    
149

    
150
def branch():
151
    return git("symbolic-ref HEAD").split("/")[-1]
152

    
153

    
154
@contextmanager
155
def co(c):
156
    current_branch = branch();
157
    git("checkout %s" % c)
158
    # Use a try block to make sure we checkout the original branch.
159
    try:
160
        yield
161
    finally:
162
        try:
163
            git("checkout %s" % current_branch)
164
        except Exception:
165
            error("Could not checkout %s, you're still left at %s" % c)
166

    
167
#
168
# Debian packaging helpers
169
#
170

    
171
env.debian_branch = 'debian-0.9'
172
env.deb_packages = ['snf-pithos-backend', 'snf-pithos-tools', 'snf-pithos-app']
173
env.signdebs = False
174
env.debrelease = False  # Increase release number in Debian changelogs
175
env.upstream = 'packaging'
176

    
177

    
178
def _last_commit(f):
179
    return local("git rev-list --all --date-order --max-count=1 %s" % f,
180
            capture=True).strip()
181

    
182

    
183
def _diff_from_master(c,f):
184
    return local("git log --oneline %s..%s %s" \
185
                 " | wc -l" % (c, env.upstream, f), capture=True)
186

    
187

    
188
def dch(p):
189
    with co(env.debian_branch):
190
        local("git merge %s" % env.upstream)
191
        with lcd(package_root(p)):
192
            local("if [ ! -d .git ]; then mkdir .git; fi")
193

    
194
            # FIXME:
195
            # Checking for new changes in packages
196
            # has been removed temporarily.
197
            # Always create a new Debian changelog entry.
198
            ## Check for new changes in package dir
199
            #diff = _diff_from_master(_last_commit("debian/changelog"), ".")
200
            #vercmd  = "git describe --tags --abbrev=0"\
201
            #          " | sed -rn '\''s/^v(.*)/\\1/p'\''"
202
            #version = local(vercmd, capture=True)
203
            #if int(diff) > 0:
204
            if True:
205
                # Run git-dch in snapshot mode.
206
                # TODO: Support a --release mode in fabfile
207
                local(("git-dch --debian-branch=%s --auto %s" %
208
                       (env.debian_branch,
209
                        "--release" if env.debrelease else "--snapshot")))
210
                local(("git commit debian/changelog"
211
                       " -m 'Updated %s changelog'" % p))
212
                notice(("Make sure to tag Debian release in %s" %
213
                        env.debian_branch))
214

    
215
            local("rmdir .git")
216

    
217

    
218
def debrelease():
219
    env.debrelease = True
220

    
221

    
222
def signdebs():
223
    env.signdebs = True
224

    
225

    
226
def builddeb(p, master="packaging", branch="debian-0.9"):
227
    with co(branch):
228
        info("Building debian package for %s" % p)
229
        with lcd(package_root(p)):
230
            local("git merge %s" % master)
231
            local("if [ ! -d .git ]; then mkdir .git; fi")
232
            local("python setup.py clean")
233
            local("git add ./*/*/version.py -f")
234
            local(("git-buildpackage --git-upstream-branch=%s --git-debian-branch=%s"
235
                   " --git-export=INDEX --git-ignore-new %s") %
236
                   (master, branch, "" if env.signdebs else "-us -uc"))
237
            local("rm -rf .git")
238
            local("git reset ./*/*/version.py")
239
        info("Done building debian package for %s" % p)
240

    
241

    
242
def builddeball(b="debian-0.9"):
243
    for p in env.deb_packages:
244
        builddeb(p=p, branch=b)
245

    
246

    
247

    
248
@roles('pypi')
249
def uploadtars():
250
    put("packages/*.tar.gz", 'www/pypi/')
251

    
252