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 8BF2515ACFB for ; Tue, 25 Apr 2023 21:30:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6107BE092B; Tue, 25 Apr 2023 21:30:28 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3619BE092B for ; Tue, 25 Apr 2023 21:30: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 6E478340F62 for ; Tue, 25 Apr 2023 21:30:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ADC25A4F for ; Tue, 25 Apr 2023 21:30:25 +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: <1682458011.2a52d587ee6b149e97f67decb9cd64bec7598870.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/keystone/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/keystone/keystone-0.9.2-r2.ebuild dev-libs/keystone/keystone-9999.ebuild X-VCS-Directories: dev-libs/keystone/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2a52d587ee6b149e97f67decb9cd64bec7598870 X-VCS-Branch: master Date: Tue, 25 Apr 2023 21:30:25 +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: dd740c32-841a-405a-8fa5-de0245dea206 X-Archives-Hash: b0be0b9daf28136782a6ee777d57fabb commit: 2a52d587ee6b149e97f67decb9cd64bec7598870 Author: Mario Haustein hrz tu-chemnitz de> AuthorDate: Tue Apr 25 19:27:34 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Apr 25 21:26:51 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a52d587 dev-libs/keystone: remove unnecessary dependency to sys-devel/llvm LLVM is bundled to the keystone. Closes: https://bugs.gentoo.org/905008 Signed-off-by: Mario Haustein hrz.tu-chemnitz.de> Closes: https://github.com/gentoo/gentoo/pull/30755 Signed-off-by: Sam James gentoo.org> .../{keystone-9999.ebuild => keystone-0.9.2-r2.ebuild} | 15 +++++---------- dev-libs/keystone/keystone-9999.ebuild | 13 ++++--------- 2 files changed, 9 insertions(+), 19 deletions(-) diff --git a/dev-libs/keystone/keystone-9999.ebuild b/dev-libs/keystone/keystone-0.9.2-r2.ebuild similarity index 76% copy from dev-libs/keystone/keystone-9999.ebuild copy to dev-libs/keystone/keystone-0.9.2-r2.ebuild index 0187a48fc4cd..7298fa032259 100644 --- a/dev-libs/keystone/keystone-9999.ebuild +++ b/dev-libs/keystone/keystone-0.9.2-r2.ebuild @@ -3,7 +3,6 @@ EAPI=8 -LLVM_MAX_SLOT=14 DISTUTILS_EXT=1 DISTUTILS_OPTIONAL=1 DISTUTILS_USE_PEP517=setuptools @@ -19,22 +18,19 @@ if [[ ${PV} == 9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/keystone-engine/keystone/archive/${PV/_rc/-rc}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86" fi S="${WORKDIR}"/${P/_rc/-rc} LICENSE="GPL-2" SLOT="0" -# Keep in sync with llvm/CMakeLists.txt, subset of sys-devel/llvm -ALL_LLVM_TARGETS=( AArch64 ARM Hexagon Mips PowerPC Sparc SystemZ X86 ) -ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" ) -LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?} +# Keep in sync with llvm/CMakeLists.txt +KEYSTONE_TARGETS="AArch64 ARM Hexagon Mips PowerPC Sparc SystemZ X86" -IUSE="debug python ${ALL_LLVM_TARGETS[*]}" +IUSE="debug python" RDEPEND=" -