summaryrefslogtreecommitdiffstats
path: root/lib/bb/__init__.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-03-24 09:21:53 -0700
committerChris Larson <chris_larson@mentor.com>2010-03-24 11:24:58 -0700
commit62983ad9b151ee8d51e8cf9a31c736c7813edf16 (patch)
tree678736c239b263a02ea7197602d9af3b842f3ad9 /lib/bb/__init__.py
parent7af05cba87ec9f3ea5e53689b3d9f0a63784d1b5 (diff)
downloadbitbake-62983ad9b151ee8d51e8cf9a31c736c7813edf16.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 Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/__init__.py')
-rw-r--r--lib/bb/__init__.py18
1 files changed, 1 insertions, 17 deletions
diff --git a/lib/bb/__init__.py b/lib/bb/__init__.py
index ae53b481c..f84bcd5f6 100644
--- a/lib/bb/__init__.py
+++ b/lib/bb/__init__.py
@@ -32,20 +32,7 @@ __all__ = [
"mkdirhier",
"movefile",
-
- "tokenize",
- "evaluate",
- "flatten",
- "relparse",
- "ververify",
- "isjustname",
- "isspecific",
- "pkgsplit",
- "catpkgsplit",
"vercmp",
- "pkgcmp",
- "dep_parenreduce",
- "dep_opconvert",
# fetch
"decodeurl",
@@ -98,10 +85,7 @@ def fatal(*args):
from bb.fetch import MalformedUrl, encodeurl, decodeurl
from bb.data import VarExpandError
from bb.utils import mkdirhier, movefile, copyfile, which
-from bb.utils import tokenize, evaluate, flatten
-from bb.utils import vercmp, pkgcmp, relparse, ververify
-from bb.utils import pkgsplit, catpkgsplit, isjustname, isspecific
-from bb.utils import dep_parenreduce, dep_opconvert
+from bb.utils import vercmp
if __name__ == "__main__":
import doctest, bb