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 DB6121382C5 for ; Fri, 5 Jan 2018 09:36:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E319FE0BE0; Fri, 5 Jan 2018 09:36:53 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C5E7EE0BE0 for ; Fri, 5 Jan 2018 09:36:53 +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 A8B45335C33 for ; Fri, 5 Jan 2018 09:36:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4F661A6 for ; Fri, 5 Jan 2018 09:36:48 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1515144995.20b5f47456863ce6decff95a78cf13a22e3c144c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/logilab-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/logilab-common/logilab-common-1.2.2-r1.ebuild X-VCS-Directories: dev-python/logilab-common/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 20b5f47456863ce6decff95a78cf13a22e3c144c X-VCS-Branch: master Date: Fri, 5 Jan 2018 09:36:48 +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: fa73d056-85e0-49e9-adcb-e17091a9d59b X-Archives-Hash: 3febb705fb98d52a2d6a90053087a34e commit: 20b5f47456863ce6decff95a78cf13a22e3c144c Author: Michał Górny gentoo org> AuthorDate: Thu Jan 4 23:30:04 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jan 5 09:36:35 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20b5f474 dev-python/logilab-common: Clean old up .../logilab-common/logilab-common-1.2.2-r1.ebuild | 53 ---------------------- 1 file changed, 53 deletions(-) diff --git a/dev-python/logilab-common/logilab-common-1.2.2-r1.ebuild b/dev-python/logilab-common/logilab-common-1.2.2-r1.ebuild deleted file mode 100644 index e31fdcd05d4..00000000000 --- a/dev-python/logilab-common/logilab-common-1.2.2-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="Useful miscellaneous modules used by Logilab projects" -HOMEPAGE="http://www.logilab.org/project/logilab-common https://pypi.python.org/pypi/logilab-common" -SRC_URI="ftp://ftp.logilab.org/pub/common/${P}.tar.gz mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="test" - -RDEPEND=">=dev-python/six-1.4.0[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - test? ( - $(python_gen_cond_dep 'dev-python/egenix-mx-base[${PYTHON_USEDEP}]' python2_7) - dev-python/pytz[${PYTHON_USEDEP}] - ) -" - -PATCHES=( "${FILESDIR}/${P}-test-namespace-fix.patch" ) - -python_install() { - distutils-r1_python_install - - # this package is commonly used by all logilab.* in ::gentoo, - # so let's just keep the namespace here - python_moduleinto logilab - python_domodule logilab/__init__.py -} - -python_install_all() { - distutils-r1_python_install_all - - doman doc/pytest.1 - find "${D}" -name '*.pth' -delete || die -} - -python_test() { - # https://www.logilab.org/ticket/149345 - # Prevent timezone related failure. - export TZ=UTC - - "${PYTHON}" bin/pytest-local || die "Tests fail with ${EPYTHON}" -}