summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage.py10
-rw-r--r--pym/portage_util.py7
2 files changed, 9 insertions, 8 deletions
diff --git a/pym/portage.py b/pym/portage.py
index f833851bd..68d12fbbe 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -76,7 +76,8 @@ try:
import portage_util
from portage_util import atomic_ofstream, apply_secpass_permissions, apply_recursive_permissions, \
dump_traceback, getconfig, grabdict, grabdict_package, grabfile, grabfile_package, \
- map_dictlist_vals, pickle_read, pickle_write, stack_dictlist, stack_dicts, stack_lists, \
+ map_dictlist_vals, normalize_path, \
+ pickle_read, pickle_write, stack_dictlist, stack_dicts, stack_lists, \
unique_array, varexpand, writedict, writemsg, writemsg_stdout, write_atomic
import portage_exception
import portage_gpg
@@ -187,13 +188,6 @@ def prefix_array(array,prefix,doblanks=1):
newarray.append(x)
return newarray
-def normalize_path(mypath):
- if mypath.startswith(os.path.sep):
- # posixpath.normpath collapses 3 or more leading slashes to just 1.
- return os.path.normpath(2*os.path.sep + mypath)
- else:
- return os.path.normpath(mypath)
-
dircache = {}
cacheHit=0
cacheMiss=0
diff --git a/pym/portage_util.py b/pym/portage_util.py
index 79babe05c..0449b614f 100644
--- a/pym/portage_util.py
+++ b/pym/portage_util.py
@@ -30,6 +30,13 @@ def writemsg_stdout(mystr,noiselevel=0):
"""Prints messages stdout based on the noiselimit setting"""
writemsg(mystr, noiselevel=noiselevel, fd=sys.stdout)
+def normalize_path(mypath):
+ if mypath.startswith(os.path.sep):
+ # posixpath.normpath collapses 3 or more leading slashes to just 1.
+ return os.path.normpath(2*os.path.sep + mypath)
+ else:
+ return os.path.normpath(mypath)
+
def grabfile(myfilename, compat_level=0, recursive=0):
"""This function grabs the lines in a file, normalizes whitespace and returns lines in a list; if a line
begins with a #, it is ignored, as are empty lines"""