fixed portage bashrc and some other cosmetical stuff

git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@1282 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
(no author)
2008-02-23 15:08:20 +00:00
parent b28d2d1e16
commit 5fceb3cfa7
3 changed files with 4 additions and 7 deletions
+1 -1
View File
@@ -402,7 +402,7 @@ except Exception:
conntest = entropyTools.get_remote_data(etpConst['conntestlink'])
if (conntest != False):
print_error(darkgreen("Of course you are on the Internet..."))
rc = Text.askQuestion(" Erm... Can I send the error to my creators so they can fix me? (Your IP will be logged)")
rc = Text.askQuestion(" Erm... Can I send the error, along with some information about your hardware to my creators so they can fix me? (Your IP will be logged)")
if rc == "No":
print_error(darkgreen("Ok, ok ok ok... Sorry!"))
sys.exit(2)
+1 -1
View File
@@ -1,5 +1,5 @@
post_pkg_postrm() {
if [ "$SKIP_EQUO_SYNC" != "1" ] || [ -z "$ENTROPY_SERVER_SIDE" ]; then
if [ -z "$SKIP_EQUO_SYNC" ]; then
equo database gentoosync
fi
}
+2 -5
View File
@@ -1236,11 +1236,8 @@ def uncompressTarBz2(filepath, extractPath = None, catchEmpty = False):
try:
tarinfo.name = tarinfo.name.encode(sys.getfilesystemencoding())
except: # default encoding failed
try:
tarinfo.name = tarinfo.name.decode("latin1") # try to convert to latin1 and then back to sys.getfilesystemencoding()
tarinfo.name = tarinfo.name.encode(sys.getfilesystemencoding())
except:
raise
tarinfo.name = tarinfo.name.decode("latin1") # try to convert to latin1 and then back to sys.getfilesystemencoding()
tarinfo.name = tarinfo.name.encode(sys.getfilesystemencoding())
tar.extract(tarinfo, extractPath.encode(sys.getfilesystemencoding()))
del tar.members[:]