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 81917158064 for ; Fri, 3 May 2024 03:33:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3FBAE2A11; Fri, 3 May 2024 03:33:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 AA3E2E2A12 for ; Fri, 3 May 2024 03:33:53 +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 D950A343084 for ; Fri, 3 May 2024 03:33:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68EB31779 for ; Fri, 3 May 2024 03:33:51 +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: <1714707198.88c844cb1e45a4b1487e8b32618352d82902093e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/osl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/osl/osl-1.12.14.0-r1.ebuild media-libs/osl/osl-1.13.7.0.ebuild media-libs/osl/osl-9999.ebuild X-VCS-Directories: media-libs/osl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 88c844cb1e45a4b1487e8b32618352d82902093e X-VCS-Branch: master Date: Fri, 3 May 2024 03:33:51 +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: cacd0a42-826f-4d8f-9865-292a8faf2fb4 X-Archives-Hash: d1e27642863007f006a0076eaca34533 commit: 88c844cb1e45a4b1487e8b32618352d82902093e Author: Eli Schwartz gmail com> AuthorDate: Thu May 2 23:47:14 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 3 03:33:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88c844cb media-libs/osl: fix live ebuild that was never once tested It was originally added while updating a tagged release. It cannot have ever been tested because at the time it was added, it unconditionally defined ${S} to something suitable for a tarball, whereas git-r3 sets things up based on ${PN} for you already. Fixes: c920bc0801087518ea87d472f7a78bfa25cb04c8 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> media-libs/osl/osl-1.12.14.0-r1.ebuild | 3 +-- media-libs/osl/osl-1.13.7.0.ebuild | 3 +-- media-libs/osl/osl-9999.ebuild | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/media-libs/osl/osl-1.12.14.0-r1.ebuild b/media-libs/osl/osl-1.12.14.0-r1.ebuild index 66765c891954..c6a86ec36e2f 100644 --- a/media-libs/osl/osl-1.12.14.0-r1.ebuild +++ b/media-libs/osl/osl-1.12.14.0-r1.ebuild @@ -20,10 +20,9 @@ else # If a development release, please don't keyword! SRC_URI="https://github.com/AcademySoftwareFoundation/OpenShadingLanguage/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~arm ~arm64 ~ppc64" + S="${WORKDIR}/OpenShadingLanguage-${PV}" fi -S="${WORKDIR}/OpenShadingLanguage-${PV}" - LICENSE="BSD" SLOT="0/$(ver_cut 1-3)" diff --git a/media-libs/osl/osl-1.13.7.0.ebuild b/media-libs/osl/osl-1.13.7.0.ebuild index 673742be896a..45ff2f64c225 100644 --- a/media-libs/osl/osl-1.13.7.0.ebuild +++ b/media-libs/osl/osl-1.13.7.0.ebuild @@ -20,10 +20,9 @@ else # If a development release, please don't keyword! SRC_URI="https://github.com/AcademySoftwareFoundation/OpenShadingLanguage/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~arm ~arm64 ~ppc64" + S="${WORKDIR}/OpenShadingLanguage-${PV}" fi -S="${WORKDIR}/OpenShadingLanguage-${PV}" - LICENSE="BSD" SLOT="0/$(ver_cut 1-3)" diff --git a/media-libs/osl/osl-9999.ebuild b/media-libs/osl/osl-9999.ebuild index 9ae3ddb5a40d..02e2f6079c81 100644 --- a/media-libs/osl/osl-9999.ebuild +++ b/media-libs/osl/osl-9999.ebuild @@ -20,10 +20,9 @@ else # If a development release, please don't keyword! SRC_URI="https://github.com/AcademySoftwareFoundation/OpenShadingLanguage/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~arm ~arm64 ~ppc64" + S="${WORKDIR}/OpenShadingLanguage-${PV}" fi -S="${WORKDIR}/OpenShadingLanguage-${PV}" - LICENSE="BSD" SLOT="0/$(ver_cut 1-3)"