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 BC90759CAA for ; Tue, 29 Mar 2016 13:53:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1749FE0870; Tue, 29 Mar 2016 13:53:32 +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 A9638E0870 for ; Tue, 29 Mar 2016 13:53:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6AD3F340998 for ; Tue, 29 Mar 2016 13:53:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D1B0386E for ; Tue, 29 Mar 2016 13:53:25 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1459259567.85dab0e18944605c7417a6f758edcf4f3021b910.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/minidb/metadata.xml dev-python/minidb/minidb-2.0.1.ebuild X-VCS-Directories: dev-python/minidb/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 85dab0e18944605c7417a6f758edcf4f3021b910 X-VCS-Branch: master Date: Tue, 29 Mar 2016 13:53:25 +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: 8fe8fd48-b822-4575-b536-476f35d8b5ab X-Archives-Hash: 6837cefd865f4726157be4555162bb82 commit: 85dab0e18944605c7417a6f758edcf4f3021b910 Author: Louis Sautier gmail com> AuthorDate: Tue Mar 29 12:03:25 2016 +0000 Commit: Ian Delaney gentoo org> CommitDate: Tue Mar 29 13:52:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85dab0e1 dev-python/minidb: add missing PYTHON_REQ_USE, minor fixes edit to vn. 2.0.1 Package-Manager: portage-2.2.28 Closes: https://github.com/gentoo/gentoo/pull/1160 Signed-off-by: Ian Delaney gentoo.org> dev-python/minidb/metadata.xml | 1 + dev-python/minidb/minidb-2.0.1.ebuild | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/minidb/metadata.xml b/dev-python/minidb/metadata.xml index 41161b6..9144106 100644 --- a/dev-python/minidb/metadata.xml +++ b/dev-python/minidb/metadata.xml @@ -13,5 +13,6 @@ minidb thp/minidb + https://github.com/thp/minidb/issues diff --git a/dev-python/minidb/minidb-2.0.1.ebuild b/dev-python/minidb/minidb-2.0.1.ebuild index 0db93ab..c3097b0 100644 --- a/dev-python/minidb/minidb-2.0.1.ebuild +++ b/dev-python/minidb/minidb-2.0.1.ebuild @@ -2,15 +2,16 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python{3_4,3_5} ) +PYTHON_REQ_USE="sqlite" inherit distutils-r1 DESCRIPTION="Simple SQLite-based object store" HOMEPAGE="http://thp.io/2010/minidb/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${PN}-${PV}.tar.gz" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="ISC" SLOT="0" @@ -22,8 +23,6 @@ DEPEND=" test? ( dev-python/nose[${PYTHON_USEDEP}] ) " -S="${WORKDIR}/${PN}-${PV}" - python_test() { nosetests test || die "tests failed with ${EPYTHON}" }