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.77) (envelope-from ) id 1SloH0-0003xD-Mw for garchives@archives.gentoo.org; Mon, 02 Jul 2012 21:35:10 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BB10E065A; Mon, 2 Jul 2012 21:34:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5D6B2E065A for ; Mon, 2 Jul 2012 21:34:55 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C71251B400A for ; Mon, 2 Jul 2012 21:34:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8E0E5E5436 for ; Mon, 2 Jul 2012 21:34:53 +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: <1341264880.f38b58535453a54c4784617da4aca389cc3dedd8.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/const.py X-VCS-Directories: pym/portage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: f38b58535453a54c4784617da4aca389cc3dedd8 X-VCS-Branch: master Date: Mon, 2 Jul 2012 21:34:53 +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: 433ea807-9d22-4c16-8b5b-43787a421e51 X-Archives-Hash: 05d66743791323cb74574298e3fc4e40 commit: f38b58535453a54c4784617da4aca389cc3dedd8 Author: Zac Medico gentoo org> AuthorDate: Mon Jul 2 21:34:40 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Jul 2 21:34:40 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Df38b5853 portage.const: tweak preserve-libs conditional --- pym/portage/const.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pym/portage/const.py b/pym/portage/const.py index 4a07710..51dcfb0 100644 --- a/pym/portage/const.py +++ b/pym/portage/const.py @@ -98,7 +98,7 @@ SUPPORTED_FEATURES =3D frozenset([ "noauto", "noclean", "nodoc", "noinfo", "noma= n", "nostrip", "notitles", "parallel-fetch", "par= allel-install", "parse-eapi-ebuild-head", - "prelink-checksums", "preserve-libs", + "prelink-checksums", "protect-owned", "python-trace", "sandbox", "selinux", "sesandbox", "sfperms", "sign", "skiprocheck", "split-elog", "split-l= og", "splitdebug", @@ -173,7 +173,7 @@ _ENABLE_INHERIT_CHECK =3D True # The definitions above will differ between branches, so it's useful to = have # common lines of diff context here in order to avoid merge conflicts. =20 -if not _ENABLE_PRESERVE_LIBS: +if _ENABLE_PRESERVE_LIBS: SUPPORTED_FEATURES =3D set(SUPPORTED_FEATURES) - SUPPORTED_FEATURES.remove("preserve-libs") + SUPPORTED_FEATURES.add("preserve-libs") SUPPORTED_FEATURES =3D frozenset(SUPPORTED_FEATURES)