From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CD50B1384B4 for ; Thu, 3 Dec 2015 10:21:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D89821C0B7; Thu, 3 Dec 2015 10:21:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BEB2521C0A0 for ; Thu, 3 Dec 2015 10:21:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3749C340A98 for ; Thu, 3 Dec 2015 10:21:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7CC1E6C for ; Thu, 3 Dec 2015 10:21:30 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1449138063.9cf3378d672449c43b8c508649790acbec67527d.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-magic/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-magic/python-magic-0.4.10.ebuild X-VCS-Directories: dev-python/python-magic/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 9cf3378d672449c43b8c508649790acbec67527d X-VCS-Branch: master Date: Thu, 3 Dec 2015 10:21:30 +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: 7c8858ab-1413-49ed-95d6-0b89ed7db342 X-Archives-Hash: 0f708db7271672ad9dff4cf3aaf948fb commit: 9cf3378d672449c43b8c508649790acbec67527d Author: Justin Lecher gentoo org> AuthorDate: Thu Dec 3 09:53:05 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Dec 3 10:21:03 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cf3378d dev-python/python-magic: Add python3.5 support Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher gentoo.org> dev-python/python-magic/python-magic-0.4.10.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-python/python-magic/python-magic-0.4.10.ebuild b/dev-python/python-magic/python-magic-0.4.10.ebuild index 224d596..14c2cda 100644 --- a/dev-python/python-magic/python-magic-0.4.10.ebuild +++ b/dev-python/python-magic/python-magic-0.4.10.ebuild @@ -4,7 +4,7 @@ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_{3,4} ) +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) inherit distutils-r1 @@ -20,3 +20,10 @@ IUSE="" RDEPEND="sys-apps/file[-python]" DEPEND="${DEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" + +# https://github.com/ahupp/python-magic/issues/97 +RESTRICT="test" + +python_test() { + esetup.py test +}