summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-12 03:48:10 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-12 03:48:10 +0000
commitddc642bf85f84ecc8c2fa74472870f313ab94912 (patch)
tree34c6d2f126197d3a2da5cabbb635608e8d57ca4b
parentUse posix compatible find -perm arguments. Thanks to Timothy Redaelli (diff)
downloadportage-multirepo-ddc642bf85f84ecc8c2fa74472870f313ab94912.tar.gz
portage-multirepo-ddc642bf85f84ecc8c2fa74472870f313ab94912.tar.bz2
portage-multirepo-ddc642bf85f84ecc8c2fa74472870f313ab94912.zip
When translating portage uid/gid to root uid/gid after src_install on
FreeBSD, temporarily remove all file flags inside $D in order to avoid EPERM errors. Thanks to Timothy Redaelli <drizzt@g.o> for reporting. svn path=/main/trunk/; revision=13068
-rw-r--r--pym/portage/__init__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 1dc81cf5..8c2137f2 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -4884,6 +4884,17 @@ def _post_src_install_uid_fix(mysettings):
"""
inst_uid = int(mysettings["PORTAGE_INST_UID"])
inst_gid = int(mysettings["PORTAGE_INST_GID"])
+
+ if bsd_chflags:
+ # Temporarily remove all of the flags in order to avoid EPERM errors.
+ os.system("mtree -c -p %s -k flags > %s" % \
+ (_shell_quote(mysettings["D"]),
+ _shell_quote(os.path.join(mysettings["T"], "bsdflags.mtree"))))
+ os.system("chflags -R noschg,nouchg,nosappnd,nouappnd %s" % \
+ (_shell_quote(mysettings["D"]),))
+ os.system("chflags -R nosunlnk,nouunlnk %s 2>/dev/null" % \
+ (_shell_quote(mysettings["D"]),))
+
for parent, dirs, files in os.walk(mysettings["D"]):
for fname in chain(dirs, files):
fpath = os.path.join(parent, fname)
@@ -4901,6 +4912,12 @@ def _post_src_install_uid_fix(mysettings):
mode=mystat.st_mode, stat_cached=mystat,
follow_links=False)
+ if bsd_chflags:
+ # Restore all of the flags saved above.
+ os.system("mtree -e -p %s -U -k flags < %s > /dev/null" % \
+ (_shell_quote(mysettings["D"]),
+ _shell_quote(os.path.join(mysettings["T"], "bsdflags.mtree"))))
+
def _post_pkg_preinst_cmd(mysettings):
"""
Post phase logic and tasks that have been factored out of