Formatting cleanups

(Bitbake rev: 2caf134b43a44dad30af4fbe33033b3c58deee57)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Chris Larson 2010-03-24 16:56:12 -07:00 committed by Richard Purdie
parent bbf83fd988
commit 7acc132cac
41 changed files with 579 additions and 606 deletions

View File

@ -23,7 +23,8 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import sys, os, getopt, re, time, optparse, xmlrpclib
sys.path.insert(0,os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib'))
sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])),
'lib'))
import warnings
import bb
@ -40,6 +41,7 @@ if sys.hexversion < 0x020600F0:
print "Sorry, python 2.6 or later is required for this version of bitbake"
sys.exit(1)
#============================================================================#
# BBOptions
#============================================================================#
@ -47,6 +49,7 @@ class BBConfiguration( object ):
"""
Manages build options and configurations for one run
"""
def __init__(self, options):
for key, val in options.__dict__.items():
setattr(self, key, val)
@ -90,7 +93,8 @@ def main():
print "Sorry, bitbake needs python 2.5 or later."
sys.exit(1)
parser = optparse.OptionParser( version = "BitBake Build Tool Core version %s, %%prog version %s" % ( bb.__version__, __version__ ),
parser = optparse.OptionParser(
version = "BitBake Build Tool Core version %s, %%prog version %s" % (bb.__version__, __version__),
usage = """%prog [options] [package ...]
Executes the specified task (default is 'build') for a given set of BitBake files.

View File

@ -387,4 +387,3 @@ def remove_task(task, kill, d):
If kill is 1, also remove tasks that depend on this task."""
data.delVarFlag(task, 'task', d)

View File

@ -268,6 +268,3 @@ class CookerCommandSetExitCode(bb.event.Event):
def __init__(self, exitcode):
bb.event.Event.__init__(self)
self.exitcode = int(exitcode)

View File

@ -984,4 +984,3 @@ class CookerParser:
raise ParsingErrorsFound
return False
return True

View File

@ -188,4 +188,3 @@ def createDaemon(function, logfile):
function()
os._exit(0)

View File

@ -267,7 +267,6 @@ def emit_var(var, o=sys.__stdout__, d = init(), all=False):
o.write('%s="%s"\n' % (varExpanded, alter))
return 1
def emit_env(o=sys.__stdout__, d = init(), all=False):
"""Emits all items in the data store in a format such that it can be sourced by a shell."""

View File

@ -31,7 +31,7 @@ BitBake build tools.
import copy, os, re, sys, time, types
import bb
from bb import utils, methodpool
from COW import COWDictBase
from bb.COW import COWDictBase
from new import classobj
@ -349,5 +349,3 @@ class DataSmart:
def __setitem__(self, var, data):
#print "Warning deprecated"
self.setVar(var, data)

View File

@ -297,4 +297,3 @@ class DepTreeGenerated(Event):
def __init__(self, depgraph):
Event.__init__(self)
self._depgraph = depgraph

View File

@ -145,4 +145,3 @@ class Bzr(Fetch):
def _build_revision(self, url, ud, d):
return ud.revision

View File

@ -214,4 +214,3 @@ class Git(Fetch):
buildindex = "%s" % output.split()[0]
bb.msg.debug(1, bb.msg.domain.Fetcher, "GIT repository for %s in %s is returning %s revisions in rev-list before %s" % (url, ud.clonedir, buildindex, rev))
return buildindex

View File

@ -170,4 +170,3 @@ class Hg(Fetch):
Return a unique key for the url
"""
return "hg:" + ud.moddir

View File

@ -205,5 +205,3 @@ class Perforce(Fetch):
raise FetchError(module)
# cleanup
os.system('rm -rf %s' % tmpfile)

View File

@ -116,6 +116,3 @@ class PersistData:
if 'database is locked' in str(e):
continue
raise

View File

@ -1196,4 +1196,3 @@ class runQueuePipe():
if len(self.queue) > 0:
print "Warning, worker left partial message"
os.close(self.fd)

View File

@ -178,4 +178,3 @@ class BitBakeServerConnection():
self.connection.terminateServer()
except:
pass

View File

@ -184,4 +184,3 @@ class BitBakeServerConnection():
self.connection.terminateServer()
except:
pass

View File

@ -606,5 +606,3 @@ class TaskData:
bb.msg.debug(3, bb.msg.domain.TaskData, "runtime dependency ids (per fn):")
for fnid in self.rdepids:
bb.msg.debug(3, bb.msg.domain.TaskData, " %s %s: %s" % (fnid, self.fn_index[fnid], self.rdepids[fnid]))

View File

@ -15,4 +15,3 @@
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

View File

@ -15,4 +15,3 @@
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

View File

@ -454,4 +454,3 @@ class BuildManagerTreeView (gtk.TreeView):
self.append_column (col)
col.set_cell_data_func (renderer,
self.state_format_custom_cell_data_fun)

View File

@ -176,5 +176,3 @@ class RunningBuildTreeView (gtk.TreeView):
renderer = gtk.CellRendererText ()
col = gtk.TreeViewColumn ("Message", renderer, text=3)
self.append_column (col)

View File

@ -269,4 +269,3 @@ def init(server, eventHandler):
server.runCommand(["stateShutdown"])
shutdown = shutdown + 1
pass

View File

@ -74,4 +74,3 @@ def init (server, eventHandler):
running_build)
gtk.main()

View File

@ -332,4 +332,3 @@ def init(server, eventHandler):
except:
import traceback
traceback.print_exc()

View File

@ -122,4 +122,3 @@ class UIXMLRPCServer (SimpleXMLRPCServer):
return
SimpleXMLRPCServer.process_request(self, request, client_address)

View File

@ -19,11 +19,12 @@ BitBake Utility Functions
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
separators = ".-"
import re, fcntl, os, types, bb, string, stat, shutil, time
from commands import getstatusoutput
# Version comparison
separators = ".-"
# Context used in better_exec, eval
_context = {
"os": os,
@ -175,15 +176,15 @@ def vercmp_string(val1,val2):
# replace '-' by '.'
# FIXME: Is it needed? can val1/2 contain '-'?
val1 = string.split(val1,'-')
val1 = val1.split("-")
if len(val1) == 2:
val1[0] = val1[0] + "." + val1[1]
val2 = string.split(val2,'-')
val2 = val2.split("-")
if len(val2) == 2:
val2[0] = val2[0] + "." + val2[1]
val1 = string.split(val1[0],'.')
val2 = string.split(val2[0],'.')
val1 = val1[0].split('.')
val2 = val2[0].split('.')
# add back decimal point so that .03 does not become "3" !
for x in range(1, len(val1)):