From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C026E138010 for ; Thu, 30 Aug 2012 06:23:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 384DEE0160; Thu, 30 Aug 2012 06:22:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id EC285E0160 for ; Thu, 30 Aug 2012 06:22:50 +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 1AAF433CAF4 for ; Thu, 30 Aug 2012 06:22:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D4BFFE543C for ; Thu, 30 Aug 2012 06:22:48 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1346307636.47d15e2d8286b270aa119ba722ba8a91418934a9.jlec@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: dev-python/ternate/ X-VCS-Repository: proj/betagarden X-VCS-Files: dev-python/ternate/ChangeLog dev-python/ternate/metadata.xml dev-python/ternate/ternate-0.1.0.ebuild X-VCS-Directories: dev-python/ternate/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 47d15e2d8286b270aa119ba722ba8a91418934a9 X-VCS-Branch: master Date: Thu, 30 Aug 2012 06:22:48 +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: 446d5990-b190-4672-a6fa-761f0649f349 X-Archives-Hash: d56ca6e265265494961d39905c6cc42f commit: 47d15e2d8286b270aa119ba722ba8a91418934a9 Author: Justin Lecher gentoo org> AuthorDate: Thu Aug 30 06:20:36 2012 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Aug 30 06:20:36 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=47d15e2d dev-python/ternate: Bump EAPI to 4 to avoid deprecation warning of python eclass; drop herd no-herd; use thirdpartymirrors (Portage version: 2.2.0_alpha123/git/Linux x86_64, unsigned Manifest commit) --- dev-python/ternate/ChangeLog | 7 ++++++- dev-python/ternate/metadata.xml | 1 - dev-python/ternate/ternate-0.1.0.ebuild | 20 ++++++++++++++------ 3 files changed, 20 insertions(+), 8 deletions(-) diff --git a/dev-python/ternate/ChangeLog b/dev-python/ternate/ChangeLog index b8f1775..fb49024 100644 --- a/dev-python/ternate/ChangeLog +++ b/dev-python/ternate/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for dev-python/ternate -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 30 Aug 2012; Justin Lecher ternate-0.1.0.ebuild, + metadata.xml: + Bump EAPI to 4 to avoid deprecation warning of python eclass; drop herd + no-herd; use thirdpartymirrors + 01 Jul 2008; Rob Cakebread +metadata.xml, +ternate-0.1.0.ebuild: ternate: Initial commit. diff --git a/dev-python/ternate/metadata.xml b/dev-python/ternate/metadata.xml index 5e10119..cc3fe24 100644 --- a/dev-python/ternate/metadata.xml +++ b/dev-python/ternate/metadata.xml @@ -1,7 +1,6 @@ - no-herd maintainer-wanted@gentoo.org diff --git a/dev-python/ternate/ternate-0.1.0.ebuild b/dev-python/ternate/ternate-0.1.0.ebuild index e4573d4..235f16e 100644 --- a/dev-python/ternate/ternate-0.1.0.ebuild +++ b/dev-python/ternate/ternate-0.1.0.ebuild @@ -1,24 +1,29 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/nose/nose-0.10.1.ebuild,v 1.1 2008/01/31 16:38:56 hawking Exp $ +EAPI=4 + +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" + inherit distutils eutils DESCRIPTION="Tool for creating FOAF and home pages for Gentoo developers" HOMEPAGE="http://trac.assembla.com/ternate" -SRC_URI="http://pypi.python.org/packages/source/t/${PN}/${P}.tar.gz" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="doc examples" -RDEPEND="dev-python/setuptools +RDEPEND=" dev-python/lxml - dev-python/rdflib" + dev-python/rdflib + dev-python/setuptools" DEPEND="${RDEPEND}" - src_install() { distutils_src_install @@ -31,5 +36,8 @@ src_install() { } src_test() { - PYTHONPATH=. "${python}" setup.py test || die "test failed" + testing() { + PYTHONPATH=. "$(PYTHON)" setup.py test || die "test failed" + } + python_execute_function testing }