diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-03-24 09:21:53 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-25 17:25:54 +0000 |
commit | c6940a97958be1d9981a3b5fb3ae27f74414e57f (patch) | |
tree | 63a1718995922da10404dd0429e092140e67464e /bitbake/lib/bb/__init__.py | |
parent | ec3f9089485a4d77f777c3512646874f608bcc2d (diff) | |
download | poky-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__.py | 18 |
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): | |||
98 | from bb.fetch import MalformedUrl, encodeurl, decodeurl | 85 | from bb.fetch import MalformedUrl, encodeurl, decodeurl |
99 | from bb.data import VarExpandError | 86 | from bb.data import VarExpandError |
100 | from bb.utils import mkdirhier, movefile, copyfile, which | 87 | from bb.utils import mkdirhier, movefile, copyfile, which |
101 | from bb.utils import tokenize, evaluate, flatten | 88 | from bb.utils import vercmp |
102 | from bb.utils import vercmp, pkgcmp, relparse, ververify | ||
103 | from bb.utils import pkgsplit, catpkgsplit, isjustname, isspecific | ||
104 | from bb.utils import dep_parenreduce, dep_opconvert | ||
105 | 89 | ||
106 | if __name__ == "__main__": | 90 | if __name__ == "__main__": |
107 | import doctest, bb | 91 | import doctest, bb |