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 1RFs36-0006Bz-9F for garchives@archives.gentoo.org; Mon, 17 Oct 2011 18:36:32 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D06D21C095; Mon, 17 Oct 2011 18:36:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 570E821C095 for ; Mon, 17 Oct 2011 18:36:24 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C23031B4003 for ; Mon, 17 Oct 2011 18:36:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 23FD580042 for ; Mon, 17 Oct 2011 18:36:23 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: Subject: [gentoo-commits] proj/portage:prefix commit in: / X-VCS-Repository: proj/portage X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: d9f449ca690417b6268ce1e3ef16e5c3f0e01a6f Date: Mon, 17 Oct 2011 18:36:23 +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: 77765fa3a5d711fc18635e7d20b8c19c commit: d9f449ca690417b6268ce1e3ef16e5c3f0e01a6f Author: Fabian Groffen gentoo org> AuthorDate: Mon Oct 17 18:33:56 2011 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Mon Oct 17 18:33:56 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Dd9f449ca Merge remote-tracking branch 'overlays-gentoo-org/master' into prefix bin/repoman | 116 +++++++++---------- man/emerge.1 | 7 +- man/repoman.1 | 7 +- pym/_emerge/EbuildBuild.py | 3 +- pym/_emerge/EbuildMetadataPhase.py | 6 +- pym/_emerge/Scheduler.py | 7 +- pym/_emerge/main.py | 28 ++++- pym/portage/checksum.py | 4 +- pym/portage/dbapi/porttree.py | 23 ++-- pym/portage/eclass_cache.py | 13 ++- pym/portage/tests/emerge/test_simple.py | 42 ++++++- pym/portage/tests/repoman/test_simple.py | 96 ++++++++++++++-- pym/repoman/utilities.py | 183 ++++++++++++++++++++++++= +++++- 13 files changed, 428 insertions(+), 107 deletions(-) diff --cc bin/repoman index 1f4175b,ad1e688..56b2b7a --- a/bin/repoman +++ b/bin/repoman @@@ -75,10 -73,9 +75,10 @@@ from portage.process import find_binary from portage.output import bold, create_color_func, \ green, nocolor, red from portage.output import ConsoleStyleFile, StyleWriter - from portage.util import cmp_sort_key, writemsg_level, writemsg_stdout + from portage.util import cmp_sort_key, writemsg_level from portage.package.ebuild.digestgen import digestgen from portage.eapi import eapi_has_iuse_defaults, eapi_has_required_use +from portage.const import EPREFIX =20 if sys.hexversion >=3D 0x3000000: basestring =3D str