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 1QegK5-0006Pr-Oj for garchives@archives.gentoo.org; Thu, 07 Jul 2011 04:36:22 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2E2A21C187; Thu, 7 Jul 2011 04:36:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7CC8721C187 for ; Thu, 7 Jul 2011 04:36:14 +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 02B202AC032 for ; Thu, 7 Jul 2011 04:36:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 196AA8003D for ; Thu, 7 Jul 2011 04:36:13 +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: <2ba193f01310cf2980dab881bff58e7bfeb33ea3.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/, pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/EbuildFetcher.py pym/portage/const.py X-VCS-Directories: pym/portage/ pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 2ba193f01310cf2980dab881bff58e7bfeb33ea3 Date: Thu, 7 Jul 2011 04:36:13 +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: 733cff2ae4087c408b4623e4bd0b905b commit: 2ba193f01310cf2980dab881bff58e7bfeb33ea3 Author: Brian Harring gmail com> AuthorDate: Thu Jul 7 00:35:10 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Jul 7 04:19:56 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D2ba193f0 add FEATURES=3Dallow-missing-manifests The feature is as it sounds- primarily useful for temporary trees or instances where manifests aren't used. Signed-off-by: Brian Harring gmail.com> --- pym/_emerge/EbuildFetcher.py | 3 ++- pym/portage/const.py | 1 + 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/pym/_emerge/EbuildFetcher.py b/pym/_emerge/EbuildFetcher.py index c9a107d..2150241 100644 --- a/pym/_emerge/EbuildFetcher.py +++ b/pym/_emerge/EbuildFetcher.py @@ -107,10 +107,11 @@ class EbuildFetcher(SpawnProcess): not in ('yes', 'true') =20 rval =3D 1 + allow_missing =3D 'allow-missing-manifests' in self._settings.features try: if fetch(self._uri_map, self._settings, fetchonly=3Dself.fetchonly, digests=3Dcopy.deepcopy(self._digests), - allow_missing_digests=3DFalse): + allow_missing_digests=3Dallow_missing): rval =3D os.EX_OK except SystemExit: raise diff --git a/pym/portage/const.py b/pym/portage/const.py index 6bca8f9..ecaa8f1 100644 --- a/pym/portage/const.py +++ b/pym/portage/const.py @@ -86,6 +86,7 @@ EBUILD_PHASES =3D ("pretend", "setup", "unpa= ck", "prepare", "configure" "package", "preinst", "postinst","prerm", "po= strm", "nofetch", "config", "info", "other") SUPPORTED_FEATURES =3D frozenset([ + "allow-missing-manifests", "assume-digests", "binpkg-logs", "buildpkg", = "buildsyspkg", "candy", "ccache", "chflags", "collision-protect", "co= mpress-build-logs", "digest", "distcc", "distcc-pump", "distlocks= ", "ebuild-locks", "fakeroot",