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 1QeiZz-0002r0-0V for garchives@archives.gentoo.org; Thu, 07 Jul 2011 07:00:55 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B796A21C078; Thu, 7 Jul 2011 07:00:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 89A0521C078 for ; Thu, 7 Jul 2011 07:00:45 +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 1C8D62AC051 for ; Thu, 7 Jul 2011 07:00:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 36CE08003D for ; Thu, 7 Jul 2011 07:00:44 +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/digestcheck.py X-VCS-Directories: pym/portage/package/ebuild/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: b3d25914355a95e571ca8778058b268120ae17b3 Date: Thu, 7 Jul 2011 07:00:44 +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: d77dc74808219628209a767933061cda commit: b3d25914355a95e571ca8778058b268120ae17b3 Author: Zac Medico gentoo org> AuthorDate: Thu Jul 7 07:00:04 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Jul 7 07:00:04 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Db3d25914 digestcheck: more allow-missing-manifests --- pym/portage/package/ebuild/digestcheck.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/pym/portage/package/ebuild/digestcheck.py b/pym/portage/pack= age/ebuild/digestcheck.py index e4432f1..9354bfe 100644 --- a/pym/portage/package/ebuild/digestcheck.py +++ b/pym/portage/package/ebuild/digestcheck.py @@ -32,6 +32,8 @@ def digestcheck(myfiles, mysettings, strict=3DFalse, ju= stmanifest=3DNone): pkgdir =3D mysettings["O"] manifest_path =3D os.path.join(pkgdir, "Manifest") if not os.path.exists(manifest_path): + if allow_missing: + return 1 writemsg(_("!!! Manifest file not found: '%s'\n") % manifest_path, noiselevel=3D-1) if strict: