summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/__init__.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-03-24 09:21:53 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-03-25 17:25:54 +0000
commitc6940a97958be1d9981a3b5fb3ae27f74414e57f (patch)
tree63a1718995922da10404dd0429e092140e67464e /bitbake/lib/bb/__init__.py
parentec3f9089485a4d77f777c3512646874f608bcc2d (diff)
downloadpoky-c6940a97958be1d9981a3b5fb3ae27f74414e57f.tar.gz
bb.utils: remove old portage remnants
The following utility functions were removed. Note that in this particular case we're bypassing a proper deprecation process, as these functions are clearly not utilized, are obvious remnants of old ways of doing things, and some of which do not even function properly. - tokenize - evaluate - flatten - relparse - ververify - isjustname - isspecific - catpkgsplit - pkgsplit - pkgcmp - dep_parenreduce - dep_opconvert (Bitbake rev: 62983ad9b151ee8d51e8cf9a31c736c7813edf16) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/__init__.py')
-rw-r--r--bitbake/lib/bb/__init__.py18
1 files changed, 1 insertions, 17 deletions
diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py
index ae53b481cd..f84bcd5f6f 100644
--- a/bitbake/lib/bb/__init__.py
+++ b/bitbake/lib/bb/__init__.py
@@ -32,20 +32,7 @@ __all__ = [
32 32
33 "mkdirhier", 33 "mkdirhier",
34 "movefile", 34 "movefile",
35
36 "tokenize",
37 "evaluate",
38 "flatten",
39 "relparse",
40 "ververify",
41 "isjustname",
42 "isspecific",
43 "pkgsplit",
44 "catpkgsplit",
45 "vercmp", 35 "vercmp",
46 "pkgcmp",
47 "dep_parenreduce",
48 "dep_opconvert",
49 36
50# fetch 37# fetch
51 "decodeurl", 38 "decodeurl",
@@ -98,10 +85,7 @@ def fatal(*args):
98from bb.fetch import MalformedUrl, encodeurl, decodeurl 85from bb.fetch import MalformedUrl, encodeurl, decodeurl
99from bb.data import VarExpandError 86from bb.data import VarExpandError
100from bb.utils import mkdirhier, movefile, copyfile, which 87from bb.utils import mkdirhier, movefile, copyfile, which
101from bb.utils import tokenize, evaluate, flatten 88from bb.utils import vercmp
102from bb.utils import vercmp, pkgcmp, relparse, ververify
103from bb.utils import pkgsplit, catpkgsplit, isjustname, isspecific
104from bb.utils import dep_parenreduce, dep_opconvert
105 89
106if __name__ == "__main__": 90if __name__ == "__main__":
107 import doctest, bb 91 import doctest, bb