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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B3BBA158011 for ; Wed, 31 Aug 2022 09:58:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2EF9AE0855; Wed, 31 Aug 2022 09:58:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15C07E0855 for ; Wed, 31 Aug 2022 09:58:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0788C3412A1 for ; Wed, 31 Aug 2022 09:58:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 714115A4 for ; Wed, 31 Aug 2022 09:58:11 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1661939634.444a15f59bb58d7f297a5e1758e53fbdf8955638.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/optix/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/optix/optix-7.4.0.ebuild dev-libs/optix/optix-7.5.0.ebuild X-VCS-Directories: dev-libs/optix/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 444a15f59bb58d7f297a5e1758e53fbdf8955638 X-VCS-Branch: master Date: Wed, 31 Aug 2022 09:58:11 +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: ead492a7-3c63-4f69-9757-d52efd3610c0 X-Archives-Hash: 91e07078261f80251b92b9cc4ba22e87 commit: 444a15f59bb58d7f297a5e1758e53fbdf8955638 Author: Ionen Wolkens gentoo org> AuthorDate: Wed Aug 31 09:43:20 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed Aug 31 09:53:54 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=444a15f5 dev-libs/optix: fix overlooked use check and use ver_cut Signed-off-by: Ionen Wolkens gentoo.org> dev-libs/optix/optix-7.4.0.ebuild | 4 ++-- dev-libs/optix/optix-7.5.0.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/optix/optix-7.4.0.ebuild b/dev-libs/optix/optix-7.4.0.ebuild index 83f7282d967c..35e765e6ee3b 100644 --- a/dev-libs/optix/optix-7.4.0.ebuild +++ b/dev-libs/optix/optix-7.4.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -MY_PV=${PV:0:3} +MY_PV=$(ver_cut 1-2) DESCRIPTION="NVIDIA Ray Tracing Engine" HOMEPAGE="https://developer.nvidia.com/optix" @@ -73,7 +73,7 @@ src_install() { insinto /opt/${PN} doins -r include - if use !header-only; then + if use !headers-only; then DOCS=( doc/OptiX_{API_Reference,Programming_Guide}_${PV}.pdf ) einstalldocs fi diff --git a/dev-libs/optix/optix-7.5.0.ebuild b/dev-libs/optix/optix-7.5.0.ebuild index 83f7282d967c..35e765e6ee3b 100644 --- a/dev-libs/optix/optix-7.5.0.ebuild +++ b/dev-libs/optix/optix-7.5.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -MY_PV=${PV:0:3} +MY_PV=$(ver_cut 1-2) DESCRIPTION="NVIDIA Ray Tracing Engine" HOMEPAGE="https://developer.nvidia.com/optix" @@ -73,7 +73,7 @@ src_install() { insinto /opt/${PN} doins -r include - if use !header-only; then + if use !headers-only; then DOCS=( doc/OptiX_{API_Reference,Programming_Guide}_${PV}.pdf ) einstalldocs fi