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 92A99139694 for ; Tue, 9 May 2017 19:28:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF53D21C075; Tue, 9 May 2017 19:28:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 8BF0521C075 for ; Tue, 9 May 2017 19:28:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 CA6453416AF for ; Tue, 9 May 2017 19:28:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44E117457 for ; Tue, 9 May 2017 19:28:31 +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: <1494358104.81a95512962bc3211fd2688e11bb85ec9470d285.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: 81a95512962bc3211fd2688e11bb85ec9470d285 X-VCS-Branch: master Date: Tue, 9 May 2017 19:28:31 +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: 0891f6bd-36eb-4f83-b430-87815bc59631 X-Archives-Hash: ab62c598958892c0c90fd7c069126fa0 commit: 81a95512962bc3211fd2688e11bb85ec9470d285 Author: Michał Górny gentoo org> AuthorDate: Tue May 9 19:20:27 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 9 19:28:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81a95512 dev-python/logilab-common: Fix namespace support .../logilab-common/logilab-common-1.2.2-r1.ebuild | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) 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 new file mode 100644 index 00000000000..e31fdcd05d4 --- /dev/null +++ b/dev-python/logilab-common/logilab-common-1.2.2-r1.ebuild @@ -0,0 +1,53 @@ +# 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}" +}