aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/autobuilder/buildsteps/CreateGPLTarball.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/autobuilder/buildsteps/CreateGPLTarball.py')
-rw-r--r--lib/python2.7/site-packages/autobuilder/buildsteps/CreateGPLTarball.py40
1 files changed, 0 insertions, 40 deletions
diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/CreateGPLTarball.py b/lib/python2.7/site-packages/autobuilder/buildsteps/CreateGPLTarball.py
deleted file mode 100644
index 55b4e806..00000000
--- a/lib/python2.7/site-packages/autobuilder/buildsteps/CreateGPLTarball.py
+++ /dev/null
@@ -1,40 +0,0 @@
-'''
-Created on Dec 1, 2014
-
-__author__ = "Elizabeth 'pidge' Flanagan"
-__copyright__ = "Copyright 2014, Intel Corp."
-__credits__ = ["Elizabeth Flanagan"]
-__license__ = "GPL"
-__version__ = "2.0"
-__maintainer__ = "Elizabeth Flanagan"
-__email__ = "pidge@toganlabs.com"
-'''
-
-
-from buildbot.steps.shell import ShellCommand
-from twisted.python import log
-
-class CreateGPLTarball(ShellCommand):
- haltOnFailure = True
- flunkOnFailure = True
- name = "Create GPL Tarball"
- def __init__(self, factory, argdict=None, **kwargs):
- self.factory = factory
- for k, v in argdict.iteritems():
- setattr(self, k, v)
- self.description = "Create the GPL tarballs for compliance"
- # Timeout needs to be passed to LoggingBuildStep as a kwarg
- self.timeout = 100000
- kwargs['timeout']=self.timeout
- ShellCommand.__init__(self, **kwargs)
-
- def start(self):
- if str(self.getProperty("custom_release_tarball")) == "True":
- self.command = 'if [ -d "./build/tmp/deploy/sources" ]; then tar cvf gpl_compliance.tar.bz2 ./build/tmp/deploy/sources; fi'
- else:
- self.command = 'echo "Skipping step"'
- ShellCommand.start(self)
-
- def describe(self, done=False):
- description = ShellCommand.describe(self,done)
- return description