From: Richard Purdie Date: Sat, 14 Sep 2013 17:03:48 +0000 (+0000) Subject: bitbake: bitbake: bitbake: bb: Drop deprecated functions X-Git-Tag: rev_ivi_2015_02_04~10708 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=646390d30f1cf5eaf7bd9e0e826f40a9760714e9;p=scm%2Fbb%2Ftizen-distro.git bitbake: bitbake: bitbake: bb: Drop deprecated functions These functions in the main bb module have long been deprecated and moved to other modules. Finally remove the compatibility links. (Bitbake rev: ccd181c3ed4852e2b9169cf19aaf18aeacddcc18) (Bitbake rev: d7f817518c5df2524a4bcf008ba63c71a8eb48bb) (Bitbake rev: 89b31a4fb44f2c2ad0bb4210151652cd3730418d) Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py index 2480d16..c0c7735 100644 --- a/bitbake/lib/bb/__init__.py +++ b/bitbake/lib/bb/__init__.py @@ -141,6 +141,3 @@ def deprecate_import(current, modulename, fromlist, renames = None): setattr(sys.modules[current], newname, newobj) -deprecate_import(__name__, "bb.fetch", ("MalformedUrl", "encodeurl", "decodeurl")) -deprecate_import(__name__, "bb.utils", ("mkdirhier", "movefile", "copyfile", "which")) -deprecate_import(__name__, "bb.utils", ["vercmp_string"], ["vercmp"])