Gentoo Archives: gentoo-commits

From: Ian Delaney <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/minidb/
Date: Tue, 29 Mar 2016 13:53:33
Message-Id: 1459259567.85dab0e18944605c7417a6f758edcf4f3021b910.idella4@gentoo
1 commit: 85dab0e18944605c7417a6f758edcf4f3021b910
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Tue Mar 29 12:03:25 2016 +0000
4 Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 29 13:52:47 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85dab0e1
7
8 dev-python/minidb: add missing PYTHON_REQ_USE, minor fixes
9
10 edit to vn. 2.0.1
11 Package-Manager: portage-2.2.28
12 Closes: https://github.com/gentoo/gentoo/pull/1160
13
14 Signed-off-by: Ian Delaney <idella4 <AT> gentoo.org>
15
16 dev-python/minidb/metadata.xml | 1 +
17 dev-python/minidb/minidb-2.0.1.ebuild | 7 +++----
18 2 files changed, 4 insertions(+), 4 deletions(-)
19
20 diff --git a/dev-python/minidb/metadata.xml b/dev-python/minidb/metadata.xml
21 index 41161b6..9144106 100644
22 --- a/dev-python/minidb/metadata.xml
23 +++ b/dev-python/minidb/metadata.xml
24 @@ -13,5 +13,6 @@
25 <upstream>
26 <remote-id type="pypi">minidb</remote-id>
27 <remote-id type="github">thp/minidb</remote-id>
28 + <bugs-to>https://github.com/thp/minidb/issues</bugs-to>
29 </upstream>
30 </pkgmetadata>
31
32 diff --git a/dev-python/minidb/minidb-2.0.1.ebuild b/dev-python/minidb/minidb-2.0.1.ebuild
33 index 0db93ab..c3097b0 100644
34 --- a/dev-python/minidb/minidb-2.0.1.ebuild
35 +++ b/dev-python/minidb/minidb-2.0.1.ebuild
36 @@ -2,15 +2,16 @@
37 # Distributed under the terms of the GNU General Public License v2
38 # $Id$
39
40 -EAPI=5
41 +EAPI=6
42
43 PYTHON_COMPAT=( python{3_4,3_5} )
44 +PYTHON_REQ_USE="sqlite"
45
46 inherit distutils-r1
47
48 DESCRIPTION="Simple SQLite-based object store"
49 HOMEPAGE="http://thp.io/2010/minidb/"
50 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${PN}-${PV}.tar.gz"
51 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
52
53 LICENSE="ISC"
54 SLOT="0"
55 @@ -22,8 +23,6 @@ DEPEND="
56 test? ( dev-python/nose[${PYTHON_USEDEP}] )
57 "
58
59 -S="${WORKDIR}/${PN}-${PV}"
60 -
61 python_test() {
62 nosetests test || die "tests failed with ${EPYTHON}"
63 }