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 F17AA138224 for ; Thu, 5 May 2016 21:11:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6537521C08C; Thu, 5 May 2016 21:11:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 DDAF521C087 for ; Thu, 5 May 2016 21:11:18 +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 EF61633FDBF for ; Thu, 5 May 2016 21:11:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A3B6860 for ; Thu, 5 May 2016 21:11:16 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1462482667.4888f8608fcb56f18e82d287aa1142b2004d89a8.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tagpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tagpy/tagpy-2013.1.ebuild X-VCS-Directories: dev-python/tagpy/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 4888f8608fcb56f18e82d287aa1142b2004d89a8 X-VCS-Branch: master Date: Thu, 5 May 2016 21:11:16 +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: eef2a821-1bed-41d1-a2e0-5362a1f5b9f8 X-Archives-Hash: 5fa3a883cdcb4bf172286b028a9059fa commit: 4888f8608fcb56f18e82d287aa1142b2004d89a8 Author: David Seifert gentoo org> AuthorDate: Thu May 5 21:00:14 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Thu May 5 21:11:07 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4888f860 dev-python/tagpy: Require USE="threads" for dev-libs/boost Gentoo-Bug: 580496 * EAPI=6 * Add python-3.5 support * Remove call to 'distutils-r1_python_configure' Package-Manager: portage-2.2.28 dev-python/tagpy/tagpy-2013.1.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-python/tagpy/tagpy-2013.1.ebuild b/dev-python/tagpy/tagpy-2013.1.ebuild index 3518f85..579986c 100644 --- a/dev-python/tagpy/tagpy-2013.1.ebuild +++ b/dev-python/tagpy/tagpy-2013.1.ebuild @@ -1,9 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) inherit distutils-r1 @@ -16,7 +17,7 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" IUSE="examples" -RDEPEND=">=dev-libs/boost-1.49.0[python${PYTHON_TARGETS}] +RDEPEND=">=dev-libs/boost-1.49.0:=[python,threads,${PYTHON_USEDEP}] >=media-libs/taglib-1.7.2" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" @@ -27,7 +28,6 @@ python_configure() { "${PYTHON}" configure.py \ --taglib-inc-dir="${EPREFIX}/usr/include/taglib" \ --boost-python-libname="boost_python-${EPYTHON#python}" - distutils-r1_python_configure } python_install_all() {