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 B0D29158087 for ; Fri, 22 Oct 2021 02:47:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91F6FE0871; Fri, 22 Oct 2021 02:47:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 772A4E0871 for ; Fri, 22 Oct 2021 02:47:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4CD1C343585 for ; Fri, 22 Oct 2021 02:47:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC1A8169 for ; Fri, 22 Oct 2021 02:47:15 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1634870823.7d55f4a0a5e4fb64d393ce172ec11bbda2c10c2a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opencolorio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/opencolorio/opencolorio-2.0.2.ebuild X-VCS-Directories: media-libs/opencolorio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7d55f4a0a5e4fb64d393ce172ec11bbda2c10c2a X-VCS-Branch: master Date: Fri, 22 Oct 2021 02:47:15 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 16f2b7ab-4f89-46ad-ba29-6d9bfa792715 X-Archives-Hash: d9d36871ed52c4080ec95bee91bfb5c6 commit: 7d55f4a0a5e4fb64d393ce172ec11bbda2c10c2a Author: Marek BehĂșn kernel org> AuthorDate: Thu Oct 21 10:12:10 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Oct 22 02:47:03 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d55f4a0 media-libs/opencolorio: fix OCIO_PYTHON_VERSION The OCIO_PYTHON_VERSION cmake argument needs to contain only the version number (i.e. 3.9), not EPYTHON (i.e. python3.9). Bug: https://bugs.gentoo.org/819132 Signed-off-by: Marek BehĂșn kernel.org> Closes: https://github.com/gentoo/gentoo/pull/22654 Signed-off-by: Sam James gentoo.org> media-libs/opencolorio/opencolorio-2.0.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/opencolorio/opencolorio-2.0.2.ebuild b/media-libs/opencolorio/opencolorio-2.0.2.ebuild index 7bef3bb4a1b..1d263c5aee8 100644 --- a/media-libs/opencolorio/opencolorio-2.0.2.ebuild +++ b/media-libs/opencolorio/opencolorio-2.0.2.ebuild @@ -77,7 +77,7 @@ src_configure() { -DOCIO_BUILD_DOCS=$(usex doc) -DOCIO_BUILD_APPS=$(usex opengl) -DOCIO_BUILD_PYTHON=$(usex python) - -DOCIO_PYTHON_VERSION="${EPYTHON}" + -DOCIO_PYTHON_VERSION="${EPYTHON/python/}" -DOCIO_BUILD_JAVA=OFF -DOCIO_USE_SSE=$(usex cpu_flags_x86_sse2) -DOCIO_BUILD_TESTS=$(usex test)