]> code.ossystems Code Review - openembedded-core.git/commitdiff
classes: Standardise whitespace in anonymous python methods and factor out functions...
authorRichard Purdie <richard@openedhand.com>
Mon, 20 Nov 2006 09:16:34 +0000 (09:16 +0000)
committerRichard Purdie <richard@openedhand.com>
Mon, 20 Nov 2006 09:16:34 +0000 (09:16 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@875 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/classes/base.bbclass
meta/classes/ccache.inc
meta/classes/ccdv.bbclass
meta/classes/flow-lossage.bbclass
meta/classes/gettext.bbclass
meta/classes/multimachine.bbclass
meta/classes/update-alternatives.bbclass
meta/classes/update-rc.d.bbclass

index 299bf7bee201044c9f866ce4625f39fff9b8f8ce..d8853e546458f0017e3e84aab0f15551d1d2c5e1 100644 (file)
@@ -666,52 +666,56 @@ python read_subpackage_metadata () {
                        bb.data.setVar(key, sdata[key], d)
 }
 
-python __anonymous () {
-       import exceptions
-       need_host = bb.data.getVar('COMPATIBLE_HOST', d, 1)
-       if need_host:
-               import re
-               this_host = bb.data.getVar('HOST_SYS', d, 1)
-               if not re.match(need_host, this_host):
-                       raise bb.parse.SkipPackage("incompatible with host %s" % this_host)
-
-       need_machine = bb.data.getVar('COMPATIBLE_MACHINE', d, 1)
-       if need_machine:
-               import re
-               this_machine = bb.data.getVar('MACHINE', d, 1)
-               if this_machine and not re.match(need_machine, this_machine):
-                       raise bb.parse.SkipPackage("incompatible with machine %s" % this_machine)
-
-       pn = bb.data.getVar('PN', d, 1)
-
-       srcdate = bb.data.getVar('SRCDATE_%s' % pn, d, 1)
-       if srcdate != None:
-               bb.data.setVar('SRCDATE', srcdate, d)
-
-       use_nls = bb.data.getVar('USE_NLS_%s' % pn, d, 1)
-       if use_nls != None:
-               bb.data.setVar('USE_NLS', use_nls, d)
-}
+def base_after_parse_two(d):
+    import bb
+    import exceptions
+    need_host = bb.data.getVar('COMPATIBLE_HOST', d, 1)
+    if need_host:
+        import re
+        this_host = bb.data.getVar('HOST_SYS', d, 1)
+        if not re.match(need_host, this_host):
+            raise bb.parse.SkipPackage("incompatible with host %s" % this_host)
+
+    need_machine = bb.data.getVar('COMPATIBLE_MACHINE', d, 1)
+    if need_machine:
+        import re
+        this_machine = bb.data.getVar('MACHINE', d, 1)
+        if this_machine and not re.match(need_machine, this_machine):
+            raise bb.parse.SkipPackage("incompatible with machine %s" % this_machine)
+
+    pn = bb.data.getVar('PN', d, 1)
+
+    srcdate = bb.data.getVar('SRCDATE_%s' % pn, d, 1)
+    if srcdate != None:
+        bb.data.setVar('SRCDATE', srcdate, d)
+
+    use_nls = bb.data.getVar('USE_NLS_%s' % pn, d, 1)
+    if use_nls != None:
+        bb.data.setVar('USE_NLS', use_nls, d)
+
+def base_after_parse(d):
+    import bb, os
+    mach_arch = bb.data.getVar('MACHINE_ARCH', d, 1)
+    old_arch = bb.data.getVar('PACKAGE_ARCH', d, 1)
+    if (old_arch == mach_arch):
+        # Nothing to do
+        return
+    if (bb.data.getVar('SRC_URI_OVERRIDES_PACKAGE_ARCH', d, 1) == '0'):
+        return
+    paths = []
+    for p in [ "${FILE_DIRNAME}/${PF}", "${FILE_DIRNAME}/${P}", "${FILE_DIRNAME}/${PN}", "${FILE_DIRNAME}/files", "${FILE_DIRNAME}" ]:
+        paths.append(bb.data.expand(os.path.join(p, mach_arch), d))
+    for s in bb.data.getVar('SRC_URI', d, 1).split():
+        local = bb.data.expand(bb.fetch.localpath(s, d), d)
+        for mp in paths:
+            if local.startswith(mp):
+                #bb.note("overriding PACKAGE_ARCH from %s to %s" % (old_arch, mach_arch))
+                bb.data.setVar('PACKAGE_ARCH', mach_arch, d)
+                return
 
 python () {
-       import bb, os
-       mach_arch = bb.data.getVar('MACHINE_ARCH', d, 1)
-       old_arch = bb.data.getVar('PACKAGE_ARCH', d, 1)
-       if (old_arch == mach_arch):
-               # Nothing to do
-               return
-       if (bb.data.getVar('SRC_URI_OVERRIDES_PACKAGE_ARCH', d, 1) == '0'):
-               return
-       paths = []
-       for p in [ "${FILE_DIRNAME}/${PF}", "${FILE_DIRNAME}/${P}", "${FILE_DIRNAME}/${PN}", "${FILE_DIRNAME}/files", "${FILE_DIRNAME}" ]:
-               paths.append(bb.data.expand(os.path.join(p, mach_arch), d))
-       for s in bb.data.getVar('SRC_URI', d, 1).split():
-               local = bb.data.expand(bb.fetch.localpath(s, d), d)
-               for mp in paths:
-                       if local.startswith(mp):
-#                              bb.note("overriding PACKAGE_ARCH from %s to %s" % (old_arch, mach_arch))
-                               bb.data.setVar('PACKAGE_ARCH', mach_arch, d)
-                               return
+    base_after_parse_two(d)
+    base_after_parse(d)
 }
 
 # Patch handling
index 5e9356104b128999e6b49ff8d58e3cb243c41db6..d830a1b8fe05996f9b1e9c525bd9000ecfac8997 100644 (file)
@@ -5,7 +5,7 @@
 CCACHE_DIR_TARGET = "${TMPDIR}/ccache"
 
 python () {
-       if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d):
-               bb.data.setVar('CCACHE_DIR', '${CCACHE_DIR_TARGET}', d)
-               bb.data.setVarFlag('CCACHE_DIR', 'export', '1', d)
+    if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d):
+        bb.data.setVar('CCACHE_DIR', '${CCACHE_DIR_TARGET}', d)
+        bb.data.setVarFlag('CCACHE_DIR', 'export', '1', d)
 }
index edd151ef8c46abb6f37043f1100aad0c5911fa9f..a28ea672e5f2607c7edb11ebf8d3f452356d6963 100644 (file)
@@ -1,10 +1,10 @@
 python () {
-       if bb.data.getVar('PN', d, 1) in ['ccdv-native']:
-               if not bb.data.getVar('INHIBIT_DEFAULT_DEPS', d, 1):
-                       bb.data.setVar("DEPENDS", '%s %s' % ("ccdv-native", bb.data.getVar("DEPENDS", d, 1) or ""), d)
-                       bb.data.setVar("CC", '%s %s' % ("ccdv", bb.data.getVar("CC", d, 1) or ""), d)
-                       bb.data.setVar("BUILD_CC", '%s %s' % ("ccdv", bb.data.getVar("BUILD_CC", d, 1) or ""), d)
-                       bb.data.setVar("CCLD", '%s %s' % ("ccdv", bb.data.getVar("CCLD", d, 1) or ""), d)
+    if bb.data.getVar('PN', d, 1) in ['ccdv-native']:
+        if not bb.data.getVar('INHIBIT_DEFAULT_DEPS', d, 1):
+            bb.data.setVar("DEPENDS", '%s %s' % ("ccdv-native", bb.data.getVar("DEPENDS", d, 1) or ""), d)
+            bb.data.setVar("CC", '%s %s' % ("ccdv", bb.data.getVar("CC", d, 1) or ""), d)
+            bb.data.setVar("BUILD_CC", '%s %s' % ("ccdv", bb.data.getVar("BUILD_CC", d, 1) or ""), d)
+            bb.data.setVar("CCLD", '%s %s' % ("ccdv", bb.data.getVar("CCLD", d, 1) or ""), d)
 }
 
 def quiet_libtool(bb,d):
index 3e841e3caeb2fb3684095270da37e3646025d0ee..00e6bf02578960fdd33d34556032b6e32520459e 100644 (file)
@@ -1,5 +1,5 @@
 # gcc-3.4 blows up in gtktext with -frename-registers on arm-linux
 python () {
-       cflags = (bb.data.getVar('CFLAGS', d, 1) or '').replace('-frename-registers', '')
-       bb.data.setVar('CFLAGS', cflags, d)
+    cflags = (bb.data.getVar('CFLAGS', d, 1) or '').replace('-frename-registers', '')
+    bb.data.setVar('CFLAGS', cflags, d)
 }
index 3785f5acd3f28f7772b035f33db1a7c00dc55553..a1e00e72c1fb2cb2bfb27e29d62bc5c4ccf55a70 100644 (file)
@@ -1,11 +1,15 @@
+def gettext_after_parse(d):
+    import bb
+    # Remove the NLS bits if USE_NLS is no.
+    if bb.data.getVar('USE_NLS', d, 1) == 'no':
+        cfg = oe_filter_out('^--(dis|en)able-nls$', bb.data.getVar('EXTRA_OECONF', d, 1) or "", d)
+        cfg += " --disable-nls"
+        depends = bb.data.getVar('DEPENDS', d, 1) or ""
+        bb.data.setVar('DEPENDS', oe_filter_out('^(virtual/libiconv|virtual/libintl)$', depends, d), d)
+        bb.data.setVar('EXTRA_OECONF', cfg, d)
+
 python () {
-       # Remove the NLS bits if USE_NLS is no.
-       if bb.data.getVar('USE_NLS', d, 1) == 'no':
-               cfg = oe_filter_out('^--(dis|en)able-nls$', bb.data.getVar('EXTRA_OECONF', d, 1) or "", d)
-               cfg += " --disable-nls"
-               depends = bb.data.getVar('DEPENDS', d, 1) or ""
-               bb.data.setVar('DEPENDS', oe_filter_out('^(virtual/libiconv|virtual/libintl)$', depends, d), d)
-               bb.data.setVar('EXTRA_OECONF', cfg, d)
+    gettext_after_parse(d)
 }
 
 DEPENDS =+ "gettext-native"
index 4359d6c66935b78e2ddec8f80872cd8a63407f9c..0bd6abe4192c189ad76ca016acc094d2c9a7aba9 100644 (file)
@@ -4,19 +4,24 @@ STAGING_KERNEL_DIR = "${STAGING_DIR}/${MULTIMACH_ARCH}-${TARGET_OS}/kernel"
 
 # Find any machine specific sub packages and if present, mark the 
 # whole package as machine specific for multimachine purposes.
-python __anonymous () {
-       packages = bb.data.getVar('PACKAGES', d, 1).split()
-       macharch = bb.data.getVar('MACHINE_ARCH', d, 1)
-       multiarch  = bb.data.getVar('PACKAGE_ARCH', d, 1)
 
-       for pkg in packages:
-               pkgarch = bb.data.getVar("PACKAGE_ARCH_%s" % pkg, d, 1)
+def multi_machine_after_parse(d):
+    import bb
+    packages = bb.data.getVar('PACKAGES', d, 1).split()
+    macharch = bb.data.getVar('MACHINE_ARCH', d, 1)
+    multiarch  = bb.data.getVar('PACKAGE_ARCH', d, 1)
+
+    for pkg in packages:
+        pkgarch = bb.data.getVar("PACKAGE_ARCH_%s" % pkg, d, 1)
 
-               # We could look for != PACKAGE_ARCH here but how to choose 
-               # if multiple differences are present?
-               # Look through PACKAGE_ARCHS for the priority order?
-               if pkgarch and pkgarch == macharch:
-                       multiarch = macharch
+        # We could look for != PACKAGE_ARCH here but how to choose 
+        # if multiple differences are present?
+        # Look through PACKAGE_ARCHS for the priority order?
+        if pkgarch and pkgarch == macharch:
+            multiarch = macharch
 
-       bb.data.setVar('MULTIMACH_ARCH', multiarch, d)
+    bb.data.setVar('MULTIMACH_ARCH', multiarch, d)
+
+python __anonymous () {
+    multi_machine_after_parse(d)
 }
index 6b2b547d5f8d74efe1557fddc9195871191995eb..c63581c5d1f799c65671d78f996590cae48ca42b 100644 (file)
@@ -10,11 +10,15 @@ update_alternatives_postrm() {
 update-alternatives --remove ${ALTERNATIVE_NAME} ${ALTERNATIVE_PATH}
 }
 
+def update_alternatives_after_parse(d):
+    import bb
+    if bb.data.getVar('ALTERNATIVE_NAME', d) == None:
+        raise bb.build.FuncFailed, "%s inherits update-alternatives but doesn't set ALTERNATIVE_NAME" % bb.data.getVar('FILE', d)
+    if bb.data.getVar('ALTERNATIVE_PATH', d) == None:
+        raise bb.build.FuncFailed, "%s inherits update-alternatives but doesn't set ALTERNATIVE_PATH" % bb.data.getVar('FILE', d)
+
 python __anonymous() {
-       if bb.data.getVar('ALTERNATIVE_NAME', d) == None:
-               raise bb.build.FuncFailed, "%s inherits update-alternatives but doesn't set ALTERNATIVE_NAME" % bb.data.getVar('FILE', d)
-       if bb.data.getVar('ALTERNATIVE_PATH', d) == None:
-               raise bb.build.FuncFailed, "%s inherits update-alternatives but doesn't set ALTERNATIVE_PATH" % bb.data.getVar('FILE', d)
+    update_alternatives_after_parse(d)
 }
 
 python populate_packages_prepend () {
index 0bfba467c18f2bacccc0f0ace37d044176ab6f2f..df0d62c2c5d64c24600c2c034d8ac83011ab6c4f 100644 (file)
@@ -26,44 +26,48 @@ updatercd_postrm() {
 update-rc.d $D ${INITSCRIPT_NAME} remove
 }
 
+def update_rc_after_parse(d):
+    import bb
+    if bb.data.getVar('INITSCRIPT_PACKAGES', d) == None:
+        if bb.data.getVar('INITSCRIPT_NAME', d) == None:
+            raise bb.build.FuncFailed, "%s inherits update-rc.d but doesn't set INITSCRIPT_NAME" % bb.data.getVar('FILE', d)
+        if bb.data.getVar('INITSCRIPT_PARAMS', d) == None:
+            raise bb.build.FuncFailed, "%s inherits update-rc.d but doesn't set INITSCRIPT_PARAMS" % bb.data.getVar('FILE', d)
+
 python __anonymous() {
-       if bb.data.getVar('INITSCRIPT_PACKAGES', d) == None:
-               if bb.data.getVar('INITSCRIPT_NAME', d) == None:
-                       raise bb.build.FuncFailed, "%s inherits update-rc.d but doesn't set INITSCRIPT_NAME" % bb.data.getVar('FILE', d)
-               if bb.data.getVar('INITSCRIPT_PARAMS', d) == None:
-                       raise bb.build.FuncFailed, "%s inherits update-rc.d but doesn't set INITSCRIPT_PARAMS" % bb.data.getVar('FILE', d)
+    update_rc_after_parse(d)
 }
 
 python populate_packages_prepend () {
-       def update_rcd_package(pkg):
-               bb.debug(1, 'adding update-rc.d calls to postinst/postrm for %s' % pkg)
-               localdata = bb.data.createCopy(d)
-               overrides = bb.data.getVar("OVERRIDES", localdata, 1)
-               bb.data.setVar("OVERRIDES", "%s:%s" % (pkg, overrides), localdata)
-               bb.data.update_data(localdata)
+    def update_rcd_package(pkg):
+         bb.debug(1, 'adding update-rc.d calls to postinst/postrm for %s' % pkg)
+         localdata = bb.data.createCopy(d)
+         overrides = bb.data.getVar("OVERRIDES", localdata, 1)
+         bb.data.setVar("OVERRIDES", "%s:%s" % (pkg, overrides), localdata)
+         bb.data.update_data(localdata)
 
-               postinst = bb.data.getVar('pkg_postinst', localdata, 1)
-               if not postinst:
-                       postinst = '#!/bin/sh\n'
-               postinst += bb.data.getVar('updatercd_postinst', localdata, 1)
-               bb.data.setVar('pkg_postinst_%s' % pkg, postinst, d)
-               prerm = bb.data.getVar('pkg_prerm', localdata, 1)
-               if not prerm:
-                       prerm = '#!/bin/sh\n'
-               prerm += bb.data.getVar('updatercd_prerm', localdata, 1)
-               bb.data.setVar('pkg_prerm_%s' % pkg, prerm, d)
-               postrm = bb.data.getVar('pkg_postrm', localdata, 1)
-               if not postrm:
-                       postrm = '#!/bin/sh\n'
+         postinst = bb.data.getVar('pkg_postinst', localdata, 1)
+         if not postinst:
+             postinst = '#!/bin/sh\n'
+         postinst += bb.data.getVar('updatercd_postinst', localdata, 1)
+         bb.data.setVar('pkg_postinst_%s' % pkg, postinst, d)
+         prerm = bb.data.getVar('pkg_prerm', localdata, 1)
+         if not prerm:
+             prerm = '#!/bin/sh\n'
+         prerm += bb.data.getVar('updatercd_prerm', localdata, 1)
+         bb.data.setVar('pkg_prerm_%s' % pkg, prerm, d)
+            postrm = bb.data.getVar('pkg_postrm', localdata, 1)
+            if not postrm:
+                    postrm = '#!/bin/sh\n'
                 postrm += bb.data.getVar('updatercd_postrm', localdata, 1)
-               bb.data.setVar('pkg_postrm_%s' % pkg, postrm, d)
+         bb.data.setVar('pkg_postrm_%s' % pkg, postrm, d)
 
-       pkgs = bb.data.getVar('INITSCRIPT_PACKAGES', d, 1)
-       if pkgs == None:
-               pkgs = bb.data.getVar('PN', d, 1)
-               packages = (bb.data.getVar('PACKAGES', d, 1) or "").split()
-               if not pkgs in packages and packages != []:
-                       pkgs = packages[0]
-       for pkg in pkgs.split():
-               update_rcd_package(pkg)
+    pkgs = bb.data.getVar('INITSCRIPT_PACKAGES', d, 1)
+    if pkgs == None:
+         pkgs = bb.data.getVar('PN', d, 1)
+         packages = (bb.data.getVar('PACKAGES', d, 1) or "").split()
+         if not pkgs in packages and packages != []:
+             pkgs = packages[0]
+    for pkg in pkgs.split():
+         update_rcd_package(pkg)
 }