aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2009-02-20 12:55:10 +0100
committerGuido Günther <agx@sigxcpu.org>2009-02-22 16:05:10 +0100
commitffbb38a82d2403d9495b24b68badd0d1fdf15e28 (patch)
tree547d7a972931cb773ac895242329d6d5704b4d1d /examples
parent15042e33a96aac9b7861233bd7d259c375177cbe (diff)
add gbp-posttag-push example
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/gbp-posttag-push106
1 files changed, 106 insertions, 0 deletions
diff --git a/examples/gbp-posttag-push b/examples/gbp-posttag-push
new file mode 100755
index 00000000..df00c8fa
--- /dev/null
+++ b/examples/gbp-posttag-push
@@ -0,0 +1,106 @@
+#!/usr/bin/python
+# vim: set fileencoding=utf-8 :
+#
+# (C) 2009 Guido Guenther <agx@sigxcpu.org>
+#
+# gbp-posttag-push: post tag hook to be called by git-buildpackage to push out
+# the newly created tag and to forward the remote branch to that position
+#
+# it checks for explicit push destinations, if none are found it pushes back to
+# where the branch got merged from. Before pushing it checks if the tag is
+# signed.
+#
+# use:
+# [git-buildpackage]
+# posttag = gbp-posttag-push
+#
+# Options:
+# -d: dry-run
+
+import os
+import subprocess
+import sys
+import gbp.command_wrappers as gbpc
+from optparse import OptionParser
+
+
+class Env(object):
+ pass
+
+
+def get_pushs(env):
+ """get a list of push targets"""
+ dests = {}
+ cmd = "git config --get-regexp 'remote\..*\.push' '%s(:.*)?$'" % env.branch
+ for remote in subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True).communicate()[0].split("\n"):
+ if not len(remote):
+ continue
+ print '"%s"' % remote
+ repo, refspec = remote.split()
+ repo = repo.split('.')[1] # remote.<repo>.push
+ try:
+ remote = refspec.split(':')[1] # src:dest
+ except IndexError:
+ remote = refspec
+ dests[repo] = remote
+ return dests
+
+
+def get_pull(env):
+ """where did we pull from?"""
+ cmd = 'git config --get branch."%s".remote' % env.branch
+ remote = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True).communicate()[0].strip()
+ if not remote:
+ remote = 'origin'
+ return { remote: env.branch }
+
+
+def git_push_sim(args):
+ print "git push %s" % " ".join(args)
+
+
+def main(args):
+ env = Env()
+
+ git_verify_tag = gbpc.GitCommand("tag", ["-v"])
+
+ parser = OptionParser()
+ parser.add_option("-d", "--dry-run", dest="dryrun", default=False,
+ action="store_true", help="dry run, don't push.")
+
+ (options, args) = parser.parse_args()
+
+ if options.dryrun:
+ print "Dry run mode. Not pushing."
+ git_push = git_push_sim
+ else:
+ git_push = gbpc.GitCommand("push")
+
+ for envvar in [ "GBP_TAG", "GBP_BRANCH", "GBP_SHA1" ]:
+ var = os.getenv(envvar)
+ if var:
+ env.__dict__.setdefault( "%s" % envvar.split("_")[1].lower(), var)
+ else:
+ print >>sys.stderr, "%s not set." % envvar
+ return 1
+
+ dests = get_pushs(env)
+ if not dests:
+ dests = get_pull(env)
+
+ try:
+ git_verify_tag([env.tag])
+ except gbpc.CommandExecFailed:
+ print >>sys.stderr, "Not pushing unsigned tag $GBP_TAG."
+ return 0
+
+ for dest in dests:
+ print "Pushing %s to %s" % (env.sha1, dest)
+ git_push([dest, "tag", env.tag])
+ git_push([dest, "%s:%s" % (env.sha1, dests[dest])])
+ print "done."
+
+if __name__ == '__main__':
+ sys.exit(main(sys.argv))
+
+# vim:et:ts=4:sw=4:et:sts=4:ai:set list listchars=tab\:»·,trail\:·: