From: Zac Medico Date: Wed, 28 Jun 2006 22:24:07 +0000 (-0000) Subject: Update symlinks in during package moves for bug #138394. X-Git-Tag: v2.1.1~353 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5f2a64fb4053d538bf086d6885824e3267b5cbaa;p=portage.git Update symlinks in during package moves for bug #138394. svn path=/main/trunk/; revision=3687 --- diff --git a/pym/portage.py b/pym/portage.py index 18aee7bd0..f391f0ba8 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -5450,6 +5450,7 @@ class binarytree(packagetree): for cp in [origcp,newcp]: if not (isvalidatom(cp) and isjustname(cp)): raise portage_exception.InvalidPackageName(cp) + origcat = origcp.split("/")[0] mynewcat=newcp.split("/")[0] origmatches=self.dbapi.cp_list(origcp) if not origmatches: @@ -5492,6 +5493,31 @@ class binarytree(packagetree): if (mynewpkg != myoldpkg): os.rename(tbz2path,self.getname(mynewcpv)) self.dbapi.cpv_inject(mynewcpv) + + # remove the old symlink and category directory, then create + # the new ones. + try: + os.unlink(os.path.join(self.pkgdir, origcat, myoldpkg) + ".tbz2") + except OSError, e: + if e.errno != errno.ENOENT: + raise + try: + os.rmdir(os.path.join(self.pkgdir, origcat)) + except OSError, e: + if e.errno not in (errno.ENOENT, errno.ENOTEMPTY): + raise + try: + os.makedirs(os.path.join(self.pkgdir, mynewcat)) + except OSError, e: + if e.errno != errno.EEXIST: + raise + try: + os.unlink(os.path.join(self.pkgdir, mynewcat, mynewpkg) + ".tbz2") + except OSError, e: + if e.errno != errno.ENOENT: + raise + os.symlink(os.path.join("..", "All", mynewpkg) + ".tbz2", + os.path.join(self.pkgdir, mynewcat, mynewpkg) + ".tbz2") return 1 def move_slot_ent(self, mylist):