[gnome-ostree] supybot: Updated message, suggested by Allan Day
- From: Colin Walters <walters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-ostree] supybot: Updated message, suggested by Allan Day
- Date: Thu, 25 Oct 2012 13:08:45 +0000 (UTC)
commit 907e66516d924f7e90cab5b006b6d31078bdbe9c
Author: Colin Walters <walters verbum org>
Date: Thu Oct 25 09:06:47 2012 -0400
supybot: Updated message, suggested by Allan Day
qa/supybot/GNOMEOSTree/plugin.py | 36 ++++++++++++++++++++++++++----------
1 files changed, 26 insertions(+), 10 deletions(-)
---
diff --git a/qa/supybot/GNOMEOSTree/plugin.py b/qa/supybot/GNOMEOSTree/plugin.py
index 211745c..7452712 100644
--- a/qa/supybot/GNOMEOSTree/plugin.py
+++ b/qa/supybot/GNOMEOSTree/plugin.py
@@ -56,7 +56,7 @@ class GNOMEOSTree(callbacks.Plugin):
for channel in self._irc.state.channels:
self._irc.queueMsg(ircmsgs.privmsg(channel, msg))
- def _query_new_build(self, announce=False):
+ def _query_new_build(self, status=False):
path = os.path.expanduser('~/ostbuild/work/autobuilder-default.json')
f = open(path)
data = json.load(f)
@@ -64,27 +64,43 @@ class GNOMEOSTree(callbacks.Plugin):
builds = data['build']
if len(builds) == 0:
- if announce:
+ if status:
self._broadcast("No builds")
return
- latest = builds[-1]
+ latest = None
+ for build in reversed(builds):
+ if build['state'] == 'running':
+ continue
+ latest = build
+ break
version = latest['meta']['version']
- if (not announce and version == self._last_version):
+ version_matches = version == self._last_version
+ if (not status and version_matches):
return
self._last_version = version
- msg = "New build %s: %s" % (version, latest['state'])
+ if (not status and not version_matches):
+ msg = "New build"
+ else:
+ msg = "Current build"
+ if status and builds[-1]['state'] == 'running':
+ building = builds[-1]
+ msg = "Active build: %s; %s" % (building['build-status']['description'], msg)
+ msg += " %s: %s" % (version, latest['state'])
diff = latest['diff']
if len(diff[0]) > 0:
- msg += " added: %r" % (diff[0], )
+ msg += " Added modules: %s" % (', '.join(diff[0]), )
if len(diff[1]) > 0:
- msg += " modified: %r" % (diff[1], )
+ msg += " Updated modules: %s" % (', '.join(diff[1]), )
if len(diff[2]) > 0:
- msg += " removed: %r" % (diff[2], )
+ msg += " Removed modules: %s" % (', '.join(diff[2]), )
+
+ msg += " http://ostree.gnome.org/work/tasks/%s-build/%s/log" % (data['prefix'],
+ latest['v'])
self._broadcast(msg)
- def latest(self, irc, msg, args):
- self._query_new_build(announce=True)
+ def buildstatus(self, irc, msg, args):
+ self._query_new_build(status=True)
Class = GNOMEOSTree
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]