package_ipk.bbclass, sanity.conf: attemp to be compatible with bitbake 1.8.8 again
authorKoen Kooi <koen@openembedded.org>
Fri, 7 Dec 2007 16:43:35 +0000 (16:43 +0000)
committerKoen Kooi <koen@openembedded.org>
Fri, 7 Dec 2007 16:43:35 +0000 (16:43 +0000)
classes/package_ipk.bbclass
conf/sanity.conf

index de7f0fe..fd6ddbc 100644 (file)
@@ -114,7 +114,7 @@ package_generate_ipkg_conf () {
 }
 
 python do_package_ipk () {
-       import sys, re, copy
+       import sys, re, copy, fcntl
 
        workdir = bb.data.getVar('WORKDIR', d, 1)
        if not workdir:
@@ -147,6 +147,16 @@ python do_package_ipk () {
                bb.debug(1, "No packages; nothing to do")
                return
 
+       def lockfile(name):
+               lf = open(name, "a+")
+               fcntl.flock(lf.fileno(), fcntl.LOCK_EX)
+               return lf
+
+       def unlockfile(lf):
+               fcntl.flock(lf.fileno(), fcntl.LOCK_UN)
+               lf.close
+
+
        for pkg in packages.split():
                localdata = bb.data.createCopy(d)
                pkgdest = bb.data.getVar('PKGDEST', d, 1)
@@ -183,7 +193,7 @@ python do_package_ipk () {
                if not g and bb.data.getVar('ALLOW_EMPTY', localdata) != "1":
                        from bb import note
                        note("Not creating empty archive for %s-%s-%s" % (pkg, bb.data.getVar('PV', localdata, 1), bb.data.getVar('PR', localdata, 1)))
-                       bb.utils.unlockfile(lf)
+                       unlockfile(lf)
                        continue
 
                controldir = os.path.join(root, 'CONTROL')
@@ -191,7 +201,7 @@ python do_package_ipk () {
                try:
                        ctrlfile = file(os.path.join(controldir, 'control'), 'w')
                except OSError:
-                       bb.utils.unlockfile(lf)
+                       unlockfile(lf)
                        raise bb.build.FuncFailed("unable to open control file for writing.")
 
                fields = []
@@ -225,7 +235,7 @@ python do_package_ipk () {
                except KeyError:
                        (type, value, traceback) = sys.exc_info()
                        ctrlfile.close()
-                       bb.utils.unlockfile(lf)
+                       unlockfile(lf)
                        raise bb.build.FuncFailed("Missing field for ipk generation: %s" % value)
                # more fields
 
@@ -262,7 +272,7 @@ python do_package_ipk () {
                        try:
                                scriptfile = file(os.path.join(controldir, script), 'w')
                        except OSError:
-                               bb.utils.unlockfile(lf)
+                               unlockfile(lf)
                                raise bb.build.FuncFailed("unable to open %s script file for writing." % script)
                        scriptfile.write(scriptvar)
                        scriptfile.close()
@@ -273,7 +283,7 @@ python do_package_ipk () {
                        try:
                                conffiles = file(os.path.join(controldir, 'conffiles'), 'w')
                        except OSError:
-                               bb.utils.unlockfile(lf)
+                               unlockfile(lf)
                                raise bb.build.FuncFailed("unable to open conffiles for writing.")
                        for f in conffiles_str.split():
                                conffiles.write('%s\n' % f)
@@ -283,7 +293,7 @@ python do_package_ipk () {
                ret = os.system("PATH=\"%s\" %s %s %s" % (bb.data.getVar("PATH", localdata, 1), 
                                                           bb.data.getVar("IPKGBUILDCMD",d,1), pkg, pkgoutdir))
                if ret != 0:
-                       bb.utils.unlockfile(lf)
+                       unlockfile(lf)
                        raise bb.build.FuncFailed("ipkg-build execution failed")
 
                for script in ["preinst", "postinst", "prerm", "postrm", "control" ]:
@@ -296,7 +306,7 @@ python do_package_ipk () {
                        os.rmdir(controldir)
                except OSError:
                        pass
-               bb.utils.unlockfile(lf)
+               unlockfile(lf)
 }
 
 python () {
index 842cab5..fe1e228 100644 (file)
@@ -3,6 +3,6 @@
 # See sanity.bbclass
 #
 # Expert users can confirm their sanity with "touch conf/sanity.conf"
-BB_MIN_VERSION = "1.8.9"
+BB_MIN_VERSION = "1.8.8"
 INHERIT += "sanity"