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 744AD139694 for ; Tue, 14 Feb 2017 23:53:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA90421C097; Tue, 14 Feb 2017 23:53:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 BA59721C097 for ; Tue, 14 Feb 2017 23:53:17 +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 BA4C334164D for ; Tue, 14 Feb 2017 23:53:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F2C7F4811 for ; Tue, 14 Feb 2017 23:53:14 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1487116301.3bbb8abb636e87f7245e559230e612c57e4b6395.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-cdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-cdb/python-cdb-0.34.ebuild X-VCS-Directories: dev-python/python-cdb/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 3bbb8abb636e87f7245e559230e612c57e4b6395 X-VCS-Branch: master Date: Tue, 14 Feb 2017 23:53:14 +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: d952704a-bc8c-4e31-945d-1c1c1e12bea8 X-Archives-Hash: 3dcabbd04d8722d9ae13c80f5f71292f commit: 3bbb8abb636e87f7245e559230e612c57e4b6395 Author: Manuel Rüger gentoo org> AuthorDate: Tue Feb 14 23:51:41 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Tue Feb 14 23:51:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bbb8abb dev-python/python-cdb: Remove old Package-Manager: portage-2.3.3 dev-python/python-cdb/python-cdb-0.34.ebuild | 33 ---------------------------- 1 file changed, 33 deletions(-) diff --git a/dev-python/python-cdb/python-cdb-0.34.ebuild b/dev-python/python-cdb/python-cdb-0.34.ebuild deleted file mode 100644 index e9bce998fb..0000000000 --- a/dev-python/python-cdb/python-cdb-0.34.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython" - -inherit distutils - -DESCRIPTION="A Python extension module for cdb" -SRC_URI="http://pilcrow.madison.wi.us/python-cdb/${P}.tar.gz" -HOMEPAGE="http://pilcrow.madison.wi.us/#pycdb" - -SLOT="0" -IUSE="" -LICENSE="GPL-2" -KEYWORDS="amd64 arm ia64 ppc sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos" - -DEPEND="|| ( dev-db/cdb dev-db/tinycdb )" -RDEPEND="${DEPEND}" - -DOCS="Example" - -src_test() { - testing() { - "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" install --home "${T}/test-${PYTHON_ABI}" || return 1 - # This is not really intended as test but it is better than nothing. - PYTHONPATH="${T}/test-${PYTHON_ABI}/lib/python" "$(PYTHON)" < Example - } - python_execute_function testing -}