From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7931113832E for ; Mon, 8 Aug 2016 01:57:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9268521C1EB; Mon, 8 Aug 2016 01:57:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2ECB621C1EB for ; Mon, 8 Aug 2016 01:57:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 018C6340B54 for ; Mon, 8 Aug 2016 01:57:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 986177D3 for ; Mon, 8 Aug 2016 01:57:33 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1470621431.f406bc2fb432b0e1db46f1a513669abb88a51ce9.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/g-sorcery/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/g-sorcery/g-sorcery-0.2.1-r1.ebuild X-VCS-Directories: app-portage/g-sorcery/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: f406bc2fb432b0e1db46f1a513669abb88a51ce9 X-VCS-Branch: master Date: Mon, 8 Aug 2016 01:57:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 59f0e35a-1f52-46a3-8c00-87532a18e2a1 X-Archives-Hash: 05cb3be53e2a42ddb5e288df40d9ad57 commit: f406bc2fb432b0e1db46f1a513669abb88a51ce9 Author: Benda Xu gentoo org> AuthorDate: Mon Aug 8 01:53:11 2016 +0000 Commit: Benda XU gentoo org> CommitDate: Mon Aug 8 01:57:11 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f406bc2f app-portage/g-sorcery: Prefix support. Bug: 589354 Package-Manager: portage-2.3.0 app-portage/g-sorcery/g-sorcery-0.2.1-r1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-portage/g-sorcery/g-sorcery-0.2.1-r1.ebuild b/app-portage/g-sorcery/g-sorcery-0.2.1-r1.ebuild index 5d35b25..531f8be 100644 --- a/app-portage/g-sorcery/g-sorcery-0.2.1-r1.ebuild +++ b/app-portage/g-sorcery/g-sorcery-0.2.1-r1.ebuild @@ -6,7 +6,7 @@ EAPI=6 PYTHON_COMPAT=(python{2_7,3_3,3_4,3_5}) -inherit distutils-r1 +inherit distutils-r1 prefix DESCRIPTION="framework for ebuild generators" HOMEPAGE="https://github.com/jauhien/g-sorcery" @@ -23,6 +23,11 @@ DEPEND="bson? ( dev-python/pymongo[${PYTHON_USEDEP}] ) RDEPEND="${DEPEND}" PDEPEND=">=app-portage/layman-2.2.0[g-sorcery(-),${PYTHON_USEDEP}]" +src_prepare() { + hprefixify setup.py + default +} + python_test() { PYTHONPATH="." "${PYTHON}" scripts/run_tests.py }