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 EBF14158041 for ; Sun, 25 Feb 2024 07:51:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8A92E29CA; Sun, 25 Feb 2024 07:51:28 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA726E29CA for ; Sun, 25 Feb 2024 07:51:28 +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 B083034307E for ; Sun, 25 Feb 2024 07:51:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C4FE14C9 for ; Sun, 25 Feb 2024 07:51:26 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1708847484.e5f97d8d982d806341301a6922db9720946d5f9e.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/stockfish/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-board/stockfish/stockfish-10.ebuild games-board/stockfish/stockfish-13.ebuild games-board/stockfish/stockfish-14.1.ebuild games-board/stockfish/stockfish-14.ebuild games-board/stockfish/stockfish-15-r1.ebuild games-board/stockfish/stockfish-15.1.ebuild games-board/stockfish/stockfish-16-r1.ebuild games-board/stockfish/stockfish-16.1.ebuild games-board/stockfish/stockfish-16.ebuild X-VCS-Directories: games-board/stockfish/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: e5f97d8d982d806341301a6922db9720946d5f9e X-VCS-Branch: master Date: Sun, 25 Feb 2024 07:51:26 +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: a2b1b3b6-4935-4a7d-8959-43eb70ef747e X-Archives-Hash: 0ed56495f743ddf85af75a0decddcc94 commit: e5f97d8d982d806341301a6922db9720946d5f9e Author: Patrick Lauer gentoo org> AuthorDate: Sun Feb 25 07:50:44 2024 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Sun Feb 25 07:51:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5f97d8d games-board/stockfish: Fix QA warnings Empty RDEPEND is no longer wanted Signed-off-by: Patrick Lauer gentoo.org> games-board/stockfish/stockfish-10.ebuild | 3 +-- games-board/stockfish/stockfish-13.ebuild | 3 +-- games-board/stockfish/stockfish-14.1.ebuild | 3 +-- games-board/stockfish/stockfish-14.ebuild | 3 +-- games-board/stockfish/stockfish-15-r1.ebuild | 3 +-- games-board/stockfish/stockfish-15.1.ebuild | 3 +-- games-board/stockfish/stockfish-16-r1.ebuild | 1 - games-board/stockfish/stockfish-16.1.ebuild | 1 - games-board/stockfish/stockfish-16.ebuild | 3 +-- 9 files changed, 7 insertions(+), 16 deletions(-) diff --git a/games-board/stockfish/stockfish-10.ebuild b/games-board/stockfish/stockfish-10.ebuild index f8c2aa054feb..24a0f3282954 100644 --- a/games-board/stockfish/stockfish-10.ebuild +++ b/games-board/stockfish/stockfish-10.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,7 +16,6 @@ IUSE="cpu_flags_arm_v7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse general-32 general-64 +optimize" DEPEND="|| ( app-arch/unzip app-arch/zip )" -RDEPEND="" S="${WORKDIR}/src" diff --git a/games-board/stockfish/stockfish-13.ebuild b/games-board/stockfish/stockfish-13.ebuild index 7e9dda906792..91b5480df6bd 100644 --- a/games-board/stockfish/stockfish-13.ebuild +++ b/games-board/stockfish/stockfish-13.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,7 +19,6 @@ IUSE="cpu_flags_arm_v7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse general-32 general-64 +optimize" DEPEND="|| ( app-arch/unzip app-arch/zip )" -RDEPEND="" S="${WORKDIR}/Stockfish-sf_${PV}/src" diff --git a/games-board/stockfish/stockfish-14.1.ebuild b/games-board/stockfish/stockfish-14.1.ebuild index 2ccc74178557..d23cf5af9973 100644 --- a/games-board/stockfish/stockfish-14.1.ebuild +++ b/games-board/stockfish/stockfish-14.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,7 +19,6 @@ IUSE="cpu_flags_arm_v7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse general-32 general-64 +optimize" DEPEND="|| ( app-arch/unzip app-arch/zip )" -RDEPEND="" S="${WORKDIR}/Stockfish-sf_${PV}/src" diff --git a/games-board/stockfish/stockfish-14.ebuild b/games-board/stockfish/stockfish-14.ebuild index dd2f85f84bc6..f6130d54cc74 100644 --- a/games-board/stockfish/stockfish-14.ebuild +++ b/games-board/stockfish/stockfish-14.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,7 +19,6 @@ IUSE="cpu_flags_arm_v7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse general-32 general-64 +optimize" DEPEND="|| ( app-arch/unzip app-arch/zip )" -RDEPEND="" S="${WORKDIR}/Stockfish-sf_${PV}/src" diff --git a/games-board/stockfish/stockfish-15-r1.ebuild b/games-board/stockfish/stockfish-15-r1.ebuild index 6b5725f3a328..ea7a33b131ec 100644 --- a/games-board/stockfish/stockfish-15-r1.ebuild +++ b/games-board/stockfish/stockfish-15-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,7 +19,6 @@ IUSE="cpu_flags_arm_v7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse general-32 general-64 +optimize" DEPEND="|| ( app-arch/unzip app-arch/zip )" -RDEPEND="" S="${WORKDIR}/Stockfish-sf_${PV}/src" diff --git a/games-board/stockfish/stockfish-15.1.ebuild b/games-board/stockfish/stockfish-15.1.ebuild index 41f4912b4c4e..a8d227894a51 100644 --- a/games-board/stockfish/stockfish-15.1.ebuild +++ b/games-board/stockfish/stockfish-15.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,7 +19,6 @@ IUSE="cpu_flags_arm_v7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse general-32 general-64 +optimize" DEPEND="|| ( app-arch/unzip app-arch/zip )" -RDEPEND="" S="${WORKDIR}/Stockfish-sf_${PV}/src" diff --git a/games-board/stockfish/stockfish-16-r1.ebuild b/games-board/stockfish/stockfish-16-r1.ebuild index a6734bf75de8..87fef36d749c 100644 --- a/games-board/stockfish/stockfish-16-r1.ebuild +++ b/games-board/stockfish/stockfish-16-r1.ebuild @@ -19,7 +19,6 @@ IUSE="cpu_flags_arm_v7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse cpu_flags_x86_avx512dq debug general-32 general-64 +optimize" DEPEND="|| ( app-arch/unzip app-arch/zip )" -RDEPEND="" S="${WORKDIR}/Stockfish-sf_${PV}/src" diff --git a/games-board/stockfish/stockfish-16.1.ebuild b/games-board/stockfish/stockfish-16.1.ebuild index 4d19649f7066..8d66d9cfa7cf 100644 --- a/games-board/stockfish/stockfish-16.1.ebuild +++ b/games-board/stockfish/stockfish-16.1.ebuild @@ -23,7 +23,6 @@ IUSE="cpu_flags_arm_v7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse cpu_flags_x86_avx512dq debug general-32 general-64 +optimize" DEPEND="|| ( app-arch/unzip app-arch/zip )" -RDEPEND="" S="${WORKDIR}/Stockfish-sf_${PV}/src" diff --git a/games-board/stockfish/stockfish-16.ebuild b/games-board/stockfish/stockfish-16.ebuild index 2a93af907f98..4cabca417965 100644 --- a/games-board/stockfish/stockfish-16.ebuild +++ b/games-board/stockfish/stockfish-16.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,7 +19,6 @@ IUSE="cpu_flags_arm_v7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse general-32 general-64 +optimize" DEPEND="|| ( app-arch/unzip app-arch/zip )" -RDEPEND="" S="${WORKDIR}/Stockfish-sf_${PV}/src"