changeset 294:45fd58949f8a

STUB: autobot/projects/__init__.py autobot/template.py
author Jeff Hammel <k0scist@gmail.com>
date Sun, 11 May 2014 04:30:57 -0700
parents 7bca6b5ecd90
children 773192c7c5b3
files autobot/projects/__init__.py autobot/template.py
diffstat 2 files changed, 7 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/autobot/projects/__init__.py	Tue Apr 15 22:28:10 2014 -0700
+++ b/autobot/projects/__init__.py	Sun May 11 04:30:57 2014 -0700
@@ -1,13 +1,5 @@
 """
-projects that need some testing:
-
-* logparser      [WORKING]
-* autobot        [WORKING]
-* mozmill        [IN FLIGHT]
-* devicemanager  [IN FLIGHT]
-* profilemanager [IN FLIGHT]
-* firebug        [TODO]
-* jetpack thing  [TODO]
+projects that need some CI love
 """
 
 import imp
--- a/autobot/template.py	Tue Apr 15 22:28:10 2014 -0700
+++ b/autobot/template.py	Sun May 11 04:30:57 2014 -0700
@@ -1,10 +1,11 @@
 #!/usr/bin/env python
 
 """
-makeitso templates for the A*Team's buildbot
+MakeItSo templates for autobot
+
+see http://k0s.org/hg/MakeItSo
 """
 
-import mozinfo
 import os
 import string
 import sys
@@ -32,7 +33,7 @@
 
 class AutobotMasterTemplate(MakeItSoTemplate):
     name = 'autobot-master'
-    description = 'template for the autotools buildbot master'
+    description = 'template for the autobot buildbot master'
     templates = [os.path.join('template', 'master')]
     vars = [Variable('slave', 'buildslave name', os_type or 'slave'),
             Variable('os', 'buildslave os (win, mac, linux)', os_type),
@@ -40,9 +41,9 @@
             Variable('slaveport', 'port to talk to slaves on', default=9010, cast=int),
             Variable('htmlport', 'port for waterfall display', default=8010, cast=int),
             Variable('publichtmlport', 'port for public waterfall display', default=8011, cast=int),
-            Variable('botname', 'name of IRC bot', default='autobot-test'), # use autobot in production
+            Variable('botname', 'name of IRC bot'),
             Variable('ircHost', 'IRC host'),
-            Variable('ircChannels', 'channels for the IRC bot ("-" for none)', default='#ateam-test'), # use #ateam in production
+            Variable('ircChannels', 'channels for the IRC bot ("-" for none)')
             Variable('domain', 'autobot domain name', default='localhost'),
             Variable('recipients', 'email recipients for all projects', '')
             ]
@@ -165,7 +166,6 @@
         # parse the arguments
         parser = self.parser()
         options, args = parser.parse_args(args=args)
-
         if not(args):
             parser.print_usage()
             parser.exit()