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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C986D138359 for ; Sun, 5 Jul 2020 10:56:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCCB6E0841; Sun, 5 Jul 2020 10:56:17 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C3B0AE0841 for ; Sun, 5 Jul 2020 10:56:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 70D5534EF83 for ; Sun, 5 Jul 2020 10:56:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0977D2A4 for ; Sun, 5 Jul 2020 10:56:14 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1593946566.d0ab3d5f0d37a1444ae171760052d930299ffd22.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/capstone/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/capstone/capstone-4.0.2-r1.ebuild X-VCS-Directories: dev-libs/capstone/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: d0ab3d5f0d37a1444ae171760052d930299ffd22 X-VCS-Branch: master Date: Sun, 5 Jul 2020 10:56:14 +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: 2fa9e9ef-1815-405c-ada5-98f0a919c7c0 X-Archives-Hash: fa787cd94f4d007263eb57780a176b34 commit: d0ab3d5f0d37a1444ae171760052d930299ffd22 Author: Sergei Trofimovich gentoo org> AuthorDate: Sun Jul 5 10:48:20 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Jul 5 10:56:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0ab3d5f dev-libs/capstone: drop old Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Sergei Trofimovich gentoo.org> dev-libs/capstone/capstone-4.0.2-r1.ebuild | 70 ------------------------------ 1 file changed, 70 deletions(-) diff --git a/dev-libs/capstone/capstone-4.0.2-r1.ebuild b/dev-libs/capstone/capstone-4.0.2-r1.ebuild deleted file mode 100644 index 6de5971d2cd..00000000000 --- a/dev-libs/capstone/capstone-4.0.2-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_OPTIONAL=1 -PYTHON_COMPAT=( python{3_6,3_7} ) - -inherit cmake-utils distutils-r1 toolchain-funcs - -DESCRIPTION="disassembly/disassembler framework + bindings" -HOMEPAGE="http://www.capstone-engine.org/" -SRC_URI="https://github.com/aquynh/${PN}/archive/${PV/_rc/-rc}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0/4" # libcapstone.so.4 -KEYWORDS="~amd64 ~arm ~arm64 ~x86" - -RESTRICT="!test? ( test )" - -IUSE="python static-libs test" -RDEPEND="python? ( ${PYTHON_DEPS} )" -DEPEND="${RDEPEND} - python? ( dev-python/setuptools[${PYTHON_USEDEP}] ) -" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -S=${WORKDIR}/${P/_rc/-rc} - -wrap_python() { - if use python; then - pushd bindings/python >/dev/null || die - distutils-r1_${1} "$@" - popd >/dev/null - fi -} - -src_prepare() { - cmake-utils_src_prepare - - wrap_python ${FUNCNAME} -} - -src_configure() { - local mycmakeargs=( - -DCAPSTONE_BUILD_TESTS="$(usex test)" - -DCAPSTONE_BUILD_STATIC="$(usex static-libs)" - ) - cmake-utils_src_configure - - wrap_python ${FUNCNAME} -} - -src_compile() { - cmake-utils_src_compile - - wrap_python ${FUNCNAME} -} - -src_test() { - cmake-utils_src_test - - wrap_python ${FUNCNAME} -} - -src_install() { - cmake-utils_src_install - - wrap_python ${FUNCNAME} -}