From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-952487-garchives=archives.gentoo.org@lists.gentoo.org> 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 BD0B3139694 for <garchives@archives.gentoo.org>; Sun, 28 May 2017 09:26:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D36AE0C63; Sun, 28 May 2017 09:26:32 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 4210DE0C63 for <gentoo-commits@lists.gentoo.org>; Sun, 28 May 2017 09:26:32 +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 54AC33413B7 for <gentoo-commits@lists.gentoo.org>; Sun, 28 May 2017 09:26:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9E1B745F for <gentoo-commits@lists.gentoo.org>; Sun, 28 May 2017 09:26:29 +0000 (UTC) From: "Markus Meier" <maekke@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Markus Meier" <maekke@gentoo.org> Message-ID: <1495963584.12ebfda1e70d2aefd8e48f028939ffe85fe00762.maekke@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/lensfun/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/lensfun/lensfun-0.3.2.ebuild X-VCS-Directories: media-libs/lensfun/ X-VCS-Committer: maekke X-VCS-Committer-Name: Markus Meier X-VCS-Revision: 12ebfda1e70d2aefd8e48f028939ffe85fe00762 X-VCS-Branch: master Date: Sun, 28 May 2017 09:26:29 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 68105555-9ec9-4bdc-9800-4a4116e4c372 X-Archives-Hash: 115f9b36ab4da75ce4e5cafef3b69c2c commit: 12ebfda1e70d2aefd8e48f028939ffe85fe00762 Author: Markus Meier <maekke <AT> gentoo <DOT> org> AuthorDate: Sun May 28 09:26:24 2017 +0000 Commit: Markus Meier <maekke <AT> gentoo <DOT> org> CommitDate: Sun May 28 09:26:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12ebfda1 media-libs/lensfun: add python 3.6 support and fix python install prefix, bug #618134 Package-Manager: Portage-2.3.5, Repoman-2.3.1 media-libs/lensfun/lensfun-0.3.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/lensfun/lensfun-0.3.2.ebuild b/media-libs/lensfun/lensfun-0.3.2.ebuild index 2b755ccd749..a6aff26cf5a 100644 --- a/media-libs/lensfun/lensfun-0.3.2.ebuild +++ b/media-libs/lensfun/lensfun-0.3.2.ebuild @@ -3,7 +3,7 @@ EAPI=5 -PYTHON_COMPAT=( python3_{4,5} ) +PYTHON_COMPAT=( python3_{4,5,6} ) inherit multilib python-single-r1 cmake-utils @@ -34,7 +34,7 @@ src_configure() { local mycmakeargs=( -DDOCDIR="${EPREFIX}"/usr/share/doc/${PF}/html -DLIBDIR="${EPREFIX}"/usr/$(get_libdir) - -DSETUP_PY_INSTALL_PREFIX="${ED}"/$(python_get_sitedir) + -DSETUP_PY_INSTALL_PREFIX="${ED}"/usr -DBUILD_AUXFUN=ON -DBUILD_DOC=$(usex doc ON OFF) -DBUILD_FOR_SSE=$(usex cpu_flags_x86_sse ON OFF)