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 A56FE158095 for ; Mon, 15 Aug 2022 16:43:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DBC1E09BA; Mon, 15 Aug 2022 16:43:06 +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 4BA48E09BA for ; Mon, 15 Aug 2022 16:43:06 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 20A6B3411C2 for ; Mon, 15 Aug 2022 16:43:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64705558 for ; Mon, 15 Aug 2022 16:43:03 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1660581636.005d681054ec4daba2a90b7ba08d861066b2546a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/shaderc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/shaderc/shaderc-2022.1-r2.ebuild X-VCS-Directories: media-libs/shaderc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 005d681054ec4daba2a90b7ba08d861066b2546a X-VCS-Branch: master Date: Mon, 15 Aug 2022 16:43:03 +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: 020c50f2-4771-4701-9ace-cc9ae7cad166 X-Archives-Hash: 04403b98b13aa34db1e9d8e22cf86e98 commit: 005d681054ec4daba2a90b7ba08d861066b2546a Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 15 11:40:38 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Aug 15 16:40:36 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=005d6810 media-libs/shaderc: update EAPI 7 -> 8, fix BDEPEND, indentation Bug: https://bugs.gentoo.org/865241 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/shaderc/shaderc-2022.1-r2.ebuild | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/media-libs/shaderc/shaderc-2022.1-r2.ebuild b/media-libs/shaderc/shaderc-2022.1-r2.ebuild index 510a9ffae13b..8df706eda6fc 100644 --- a/media-libs/shaderc/shaderc-2022.1-r2.ebuild +++ b/media-libs/shaderc/shaderc-2022.1-r2.ebuild @@ -1,12 +1,9 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 PYTHON_COMPAT=( python3_{8..10} ) - -CMAKE_ECLASS=cmake - inherit cmake-multilib python-any-r1 DESCRIPTION="Collection of tools, libraries and tests for shader compilation" @@ -27,15 +24,15 @@ RDEPEND=" DEPEND="${RDEPEND} ${PYTHON_DEPS} >=dev-util/spirv-headers-1.3.216 - doc? ( dev-ruby/asciidoctor ) test? ( dev-cpp/gtest $(python_gen_any_dep 'dev-python/nose[${PYTHON_USEDEP}]') ) " +BDEPEND="doc? ( dev-ruby/asciidoctor )" PATCHES=( - "${FILESDIR}"/${PN}-2020.4-fix-build.patch + "${FILESDIR}"/${PN}-2020.4-fix-build.patch ) # https://github.com/google/shaderc/issues/470