Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-cdb/
Date: Tue, 14 Feb 2017 23:53:19
Message-Id: 1487116301.3bbb8abb636e87f7245e559230e612c57e4b6395.mrueg@gentoo
1 commit: 3bbb8abb636e87f7245e559230e612c57e4b6395
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 14 23:51:41 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 14 23:51:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bbb8abb
7
8 dev-python/python-cdb: Remove old
9
10 Package-Manager: portage-2.3.3
11
12 dev-python/python-cdb/python-cdb-0.34.ebuild | 33 ----------------------------
13 1 file changed, 33 deletions(-)
14
15 diff --git a/dev-python/python-cdb/python-cdb-0.34.ebuild b/dev-python/python-cdb/python-cdb-0.34.ebuild
16 deleted file mode 100644
17 index e9bce998fb..0000000000
18 --- a/dev-python/python-cdb/python-cdb-0.34.ebuild
19 +++ /dev/null
20 @@ -1,33 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI="3"
26 -PYTHON_DEPEND="2"
27 -SUPPORT_PYTHON_ABIS="1"
28 -RESTRICT_PYTHON_ABIS="3.* *-jython"
29 -
30 -inherit distutils
31 -
32 -DESCRIPTION="A Python extension module for cdb"
33 -SRC_URI="http://pilcrow.madison.wi.us/python-cdb/${P}.tar.gz"
34 -HOMEPAGE="http://pilcrow.madison.wi.us/#pycdb"
35 -
36 -SLOT="0"
37 -IUSE=""
38 -LICENSE="GPL-2"
39 -KEYWORDS="amd64 arm ia64 ppc sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
40 -
41 -DEPEND="|| ( dev-db/cdb dev-db/tinycdb )"
42 -RDEPEND="${DEPEND}"
43 -
44 -DOCS="Example"
45 -
46 -src_test() {
47 - testing() {
48 - "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" install --home "${T}/test-${PYTHON_ABI}" || return 1
49 - # This is not really intended as test but it is better than nothing.
50 - PYTHONPATH="${T}/test-${PYTHON_ABI}/lib/python" "$(PYTHON)" < Example
51 - }
52 - python_execute_function testing
53 -}