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 DFF3515ACFB for ; Fri, 28 Apr 2023 06:31:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29DDBE0990; Fri, 28 Apr 2023 06:31:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 0E7BCE0990 for ; Fri, 28 Apr 2023 06:31:26 +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 41B7E340DB9 for ; Fri, 28 Apr 2023 06:31:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF919920 for ; Fri, 28 Apr 2023 06:31:23 +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: <1682663470.f236072f139a77e9eff920710007f305c782cfad.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-r1.ebuild X-VCS-Directories: dev-libs/keystone/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f236072f139a77e9eff920710007f305c782cfad X-VCS-Branch: master Date: Fri, 28 Apr 2023 06:31:23 +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: 1c915163-00ff-4534-b3db-1c4550956fbb X-Archives-Hash: 061f0436c6037385f2bd9b56a45902dd commit: f236072f139a77e9eff920710007f305c782cfad Author: Mario Haustein hrz tu-chemnitz de> AuthorDate: Thu Apr 27 21:24:27 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Apr 28 06:31:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f236072f dev-libs/keystone: drop 0.9.2-r1 Closes: https://bugs.gentoo.org/905164 Signed-off-by: Mario Haustein hrz.tu-chemnitz.de> Signed-off-by: Sam James gentoo.org> dev-libs/keystone/keystone-0.9.2-r1.ebuild | 95 ------------------------------ 1 file changed, 95 deletions(-) diff --git a/dev-libs/keystone/keystone-0.9.2-r1.ebuild b/dev-libs/keystone/keystone-0.9.2-r1.ebuild deleted file mode 100644 index 04cf7b23ade1..000000000000 --- a/dev-libs/keystone/keystone-0.9.2-r1.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LLVM_MAX_SLOT=14 -DISTUTILS_OPTIONAL=1 -PYTHON_COMPAT=( python3_{9..11} ) - -inherit cmake distutils-r1 llvm - -DESCRIPTION="assembly/assembler framework + bindings" -HOMEPAGE="https://www.keystone-engine.org/" - -if [[ ${PV} == 9999* ]]; then - EGIT_REPO_URI="https://github.com/keystone-engine/keystone.git" - 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" -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[@]/%/?} - -IUSE="python ${ALL_LLVM_TARGETS[*]}" - -RDEPEND=" - /dev/null || die - distutils-r1_${1} "$@" - popd >/dev/null || die - fi -} - -pkg_setup() { - python_setup -} - -src_prepare() { - default - - sed -i '/NOT uppercase_CMAKE_BUILD_TYPE MATCHES/ s/DEBUG/GENTOO|DEBUG/' \ - llvm/CMakeLists.txt || die - cmake_src_prepare - wrap_python ${FUNCNAME} -} - -src_configure() { - local libdir="$(get_libdir)" - local mycmakeargs=( - -DCMAKE_CONFIGURATION_TYPES="Gentoo" - -DLLVM_LIBDIR_SUFFIX=${libdir#lib} - -DBUILD_SHARED_LIBS=ON - -DLLVM_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" - -DLLVM_HOST_TRIPLE="${CHOST}" - -DPYTHON_EXECUTABLE="${PYTHON}" - ) - - cmake_src_configure - wrap_python ${FUNCNAME} -} - -src_compile() { - cmake_src_compile - wrap_python ${FUNCNAME} -} - -src_install() { - cmake_src_install - wrap_python ${FUNCNAME} -}