Merge branch 'packaging' into debian-0.9
[pithos] / fabfile.py
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-lib', 'snf-pithos-backend', 'snf-pithos-app',
46                         'snf-pithos-tools']
47 env.capture = False
48 env.colors = True
49 env.pypi_root = 'pypi'
50 env.roledefs = {
51     'docs': ['docs.dev.grnet.gr'],
52     'pypi': ['docs.dev.grnet.gr']
53 }
54
55
56 # coloured logging
57 notice = lambda x: sys.stdout.write(yellow(x) + "\n")
58 info = lambda x: sys.stdout.write(green(x) + "\n")
59 error = lambda x: sys.stdout.write(red(x) + "\n")
60
61 def dev():
62     env.develop = True
63
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         try:
90             local("rm -r dist build")
91         except:
92             pass
93         local("python setup.py egg_info -d sdist")
94
95
96 def install_pkg(p):
97     info("installing package: %s" % p)
98     with lcd(package_root(p)):
99         if env.develop:
100             local("python setup.py develop")
101         else:
102             local("python setup.py install")
103
104
105 def install(*packages):
106     for p in packages:
107         install_pkg("snf-%s" % p)
108
109
110 def buildall():
111     for p in env.packages:
112         build_pkg(p)
113     collectdists()
114
115
116 def installall():
117     for p in env.packages:
118         install_pkg(p)
119
120
121 def collectdists():
122     if os.path.exists("./packages"):
123         notice("removing 'packages' directory")
124         local("rm -r packages");
125
126     local("mkdir packages");
127     for p in env.packages:
128         local("cp %s/dist/*.tar.gz ./packages/" % package_root(p));
129
130
131 def removeall():
132     for p in env.packages:
133         remove_pkg(p)
134
135
136 def remove(*packages):
137     for p in packages:
138         remove_pkg("snf-%s" % p)
139
140
141 #
142 # GIT helpers
143 #
144
145
146 def git(params, locl=True):
147     cmd = local if locl else run
148     return cmd("git %s" % params, capture=True)
149
150
151 def branch():
152     return git("symbolic-ref HEAD").split("/")[-1]
153
154
155 @contextmanager
156 def co(c):
157     current_branch = branch();
158     git("checkout %s" % c)
159     # Use a try block to make sure we checkout the original branch.
160     try:
161         yield
162     finally:
163         try:
164             git("checkout %s" % current_branch)
165         except Exception:
166             error("Could not checkout %s, you're still left at %s" % c)
167
168 #
169 # Debian packaging helpers
170 #
171
172 env.debian_branch = 'debian-0.8'
173 env.deb_packages = ['snf-pithos-lib', 'snf-pithos-backend',
174                     'snf-pithos-tools', 'snf-pithos-app']
175 env.signdebs = False
176 env.debrelease = False  # Increase release number in Debian changelogs
177 env.upstream = 'packaging'
178
179
180 def _last_commit(f):
181     return local("git rev-list --all --date-order --max-count=1 %s" % f,
182             capture=True).strip()
183
184
185 def _diff_from_master(c,f):
186     return local("git log --oneline %s..%s %s" \
187                  " | wc -l" % (c, env.upstream, f), capture=True)
188
189
190 def dch(p):
191     with co(env.debian_branch):
192         local("git merge %s" % env.upstream)
193         with lcd(package_root(p)):
194             local("if [ ! -d .git ]; then mkdir .git; fi")
195
196             # FIXME:
197             # Checking for new changes in packages
198             # has been removed temporarily.
199             # Always create a new Debian changelog entry.
200             ## Check for new changes in package dir
201             #diff = _diff_from_master(_last_commit("debian/changelog"), ".")
202             #vercmd  = "git describe --tags --abbrev=0"\
203             #          " | sed -rn '\''s/^v(.*)/\\1/p'\''"
204             #version = local(vercmd, capture=True)
205             #if int(diff) > 0:
206             if True:
207                 # Run git-dch in snapshot mode.
208                 # TODO: Support a --release mode in fabfile
209                 local(("git-dch --debian-branch=%s --auto %s" %
210                        (env.debian_branch,
211                         "--release" if env.debrelease else "--snapshot")))
212                 local(("git commit debian/changelog"
213                        " -m 'Updated %s changelog'" % p))
214                 notice(("Make sure to tag Debian release in %s" %
215                         env.debian_branch))
216
217             local("rmdir .git")
218
219
220 def debrelease():
221     env.debrelease = True
222
223
224 def signdebs():
225     env.signdebs = True
226
227
228 def builddeb(p, master="packaging", branch="debian-0.8"):
229     with co(branch):
230         info("Building debian package for %s" % p)
231         with lcd(package_root(p)):
232             local("git merge %s" % master)
233             local("if [ ! -d .git ]; then mkdir .git; fi")
234             local("python setup.py clean")
235             local("git add ./*/*/version.py -f")
236             local(("git-buildpackage --git-upstream-branch=%s --git-debian-branch=%s"
237                    " --git-export=INDEX --git-ignore-new %s") %
238                    (master, branch, "" if env.signdebs else "-us -uc"))
239             local("rm -rf .git")
240             local("git reset ./*/*/version.py")
241         info("Done building debian package for %s" % p)
242
243
244 def builddeball(b="debian-0.8"):
245     for p in env.deb_packages:
246         builddeb(p=p, branch=b)
247
248
249
250 @roles('pypi')
251 def uploadtars():
252     put("packages/*.tar.gz", 'www/pypi/')
253
254