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 454D5138334 for ; Sat, 21 Jul 2018 14:30:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 573DFE07D7; Sat, 21 Jul 2018 14:30:28 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 21D57E07D7 for ; Sat, 21 Jul 2018 14:30:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 31610335C7D for ; Sat, 21 Jul 2018 14:30:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3E0D35C for ; Sat, 21 Jul 2018 14:30:23 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1532183408.ebf9e4919796106103cd1a8ff4ee19e78d405b63.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/minidb/minidb-2.0.2-r1.ebuild X-VCS-Directories: dev-python/minidb/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: ebf9e4919796106103cd1a8ff4ee19e78d405b63 X-VCS-Branch: master Date: Sat, 21 Jul 2018 14:30: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 X-Archives-Salt: 8144c111-5c89-4bd7-af01-1c504184dbf5 X-Archives-Hash: 81f655841e518e3a6caa94db8ac7aa17 commit: ebf9e4919796106103cd1a8ff4ee19e78d405b63 Author: Louis Sautier gentoo org> AuthorDate: Sat Jul 21 14:28:51 2018 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sat Jul 21 14:30:08 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebf9e491 dev-python/minidb: EAPI=7, add python 3.7 Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-python/minidb/minidb-2.0.2-r1.ebuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/dev-python/minidb/minidb-2.0.2-r1.ebuild b/dev-python/minidb/minidb-2.0.2-r1.ebuild new file mode 100644 index 00000000000..51dff2891b1 --- /dev/null +++ b/dev-python/minidb/minidb-2.0.2-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{4,5,6,7} ) +PYTHON_REQ_USE="sqlite" + +inherit distutils-r1 + +DESCRIPTION="Simple SQLite-based object store" +HOMEPAGE="https://thp.io/2010/minidb/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] ) +" + +python_test() { + nosetests test || die "tests failed with ${EPYTHON}" +}