aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-06-23 13:09:30 +0000
committerZac Medico <zmedico@gentoo.org>2007-06-23 13:09:30 +0000
commit430f4be07bfc1ef0660b079c6370ea8b993eaf6a (patch)
treebc2792002c962fe78a0abc45215735592193a138 /pym/portage/dispatch_conf.py
parents/OSError/EnvironmentError/ since shutil.move() generally raises an IOError. (diff)
downloadportage-430f4be07bfc1ef0660b079c6370ea8b993eaf6a.tar.gz
portage-430f4be07bfc1ef0660b079c6370ea8b993eaf6a.tar.bz2
portage-430f4be07bfc1ef0660b079c6370ea8b993eaf6a.zip
Revert r6967 since shutil.move() is broken internally.
svn path=/main/trunk/; revision=6970
Diffstat (limited to 'pym/portage/dispatch_conf.py')
-rw-r--r--pym/portage/dispatch_conf.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/pym/portage/dispatch_conf.py b/pym/portage/dispatch_conf.py
index 6df0146d5..690772bf8 100644
--- a/pym/portage/dispatch_conf.py
+++ b/pym/portage/dispatch_conf.py
@@ -7,7 +7,7 @@
# Library by Wayne Davison <gentoo@blorf.net>, derived from code
# written by Jeremy Wohl (http://igmus.org)
-from stat import ST_GID, ST_MODE, ST_UID
+from stat import *
import os, sys, commands, shutil
import portage
@@ -72,7 +72,7 @@ def rcs_archive(archive, curconf, newconf, mrgconf):
os.system(RCS_GET + ' -r' + RCS_BRANCH + ' ' + archive)
has_branch = os.path.exists(archive)
if has_branch:
- shutil.move(archive, archive + '.dist')
+ os.rename(archive, archive + '.dist')
try:
shutil.copy2(newconf, archive)
@@ -87,7 +87,7 @@ def rcs_archive(archive, curconf, newconf, mrgconf):
mystat = os.lstat(newconf)
os.chmod(mrgconf, mystat[ST_MODE])
os.chown(mrgconf, mystat[ST_UID], mystat[ST_GID])
- shutil.move(archive, archive + '.dist.new')
+ os.rename(archive, archive + '.dist.new')
return ret
@@ -112,10 +112,10 @@ def file_archive(archive, curconf, newconf, mrgconf):
suf += 1
while suf > 1:
- shutil.move(archive + '.' + str(suf-1), archive + '.' + str(suf))
+ os.rename(archive + '.' + str(suf-1), archive + '.' + str(suf))
suf -= 1
- shutil.move(archive, archive + '.1')
+ os.rename(archive, archive + '.1')
try:
shutil.copy2(curconf, archive)
@@ -145,7 +145,7 @@ def file_archive(archive, curconf, newconf, mrgconf):
def rcs_archive_post_process(archive):
"""Check in the archive file with the .dist.new suffix on the branch
and remove the one with the .dist suffix."""
- shutil.move(archive + '.dist.new', archive)
+ os.rename(archive + '.dist.new', archive)
if os.path.exists(archive + '.dist'):
# Commit the last-distributed version onto the branch.
os.system(RCS_LOCK + RCS_BRANCH + ' ' + archive)
@@ -158,4 +158,4 @@ def rcs_archive_post_process(archive):
def file_archive_post_process(archive):
"""Rename the archive file with the .dist.new suffix to a .dist suffix"""
- shutil.move(archive + '.dist.new', archive + '.dist')
+ os.rename(archive + '.dist.new', archive + '.dist')