From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1REbBh-0000a0-LR for garchives@archives.gentoo.org; Fri, 14 Oct 2011 06:24:09 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1230C21C080; Fri, 14 Oct 2011 06:24:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D232821C06C for ; Fri, 14 Oct 2011 06:24:01 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5C6181B4022 for ; Fri, 14 Oct 2011 06:24:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id A577C80044 for ; Fri, 14 Oct 2011 06:24:00 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/package/ebuild/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/package/ebuild/doebuild.py X-VCS-Directories: pym/portage/package/ebuild/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: d1499e9e3b08fd3e539f1b9a740d243bec67872c Date: Fri, 14 Oct 2011 06:24:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 18bda4402f56bd72887f079435b659a8 commit: d1499e9e3b08fd3e539f1b9a740d243bec67872c Author: Zac Medico gentoo org> AuthorDate: Fri Oct 14 06:23:48 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Oct 14 06:23:48 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Dd1499e9e Don't generate soname symlinks for bug #387053. The symlink is not really needed now that the QA notice has been available for some time (testing since 2.1.10.4, and stable since 2.1.10.11). --- pym/portage/package/ebuild/doebuild.py | 10 +--------- 1 files changed, 1 insertions(+), 9 deletions(-) diff --git a/pym/portage/package/ebuild/doebuild.py b/pym/portage/package= /ebuild/doebuild.py index 6ebe133..38f012f 100644 --- a/pym/portage/package/ebuild/doebuild.py +++ b/pym/portage/package/ebuild/doebuild.py @@ -1907,8 +1907,7 @@ def _post_src_install_soname_symlinks(mysettings, o= ut): if not missing_symlinks: return =20 - qa_msg =3D ["QA Notice: Missing soname symlink(s) " + \ - "will be automatically created:"] + qa_msg =3D ["QA Notice: Missing soname symlink(s):"] qa_msg.append("") qa_msg.extend("\t%s -> %s" % (os.path.join( os.path.dirname(obj).lstrip(os.sep), soname), @@ -1918,13 +1917,6 @@ def _post_src_install_soname_symlinks(mysettings, = out): for line in qa_msg: eqawarn(line, key=3Dmysettings.mycpv, out=3Dout) =20 - _preinst_bsdflags(mysettings) - for obj, soname in missing_symlinks: - obj_file_path =3D os.path.join(image_dir, obj.lstrip(os.sep)) - sym_file_path =3D os.path.join(os.path.dirname(obj_file_path), soname) - os.symlink(os.path.basename(obj_file_path), sym_file_path) - _reapply_bsdflags_to_image(mysettings) - def _merge_unicode_error(errors): lines =3D [] =20