From 62983ad9b151ee8d51e8cf9a31c736c7813edf16 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 24 Mar 2010 09:21:53 -0700 Subject: 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 --- lib/bb/__init__.py | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) (limited to 'lib/bb/__init__.py') 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 -- cgit 1.2.3-korg