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 0BE6E158087 for ; Thu, 21 Oct 2021 18:25:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4911E088C; Thu, 21 Oct 2021 18:25:13 +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-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA7D4E0886 for ; Thu, 21 Oct 2021 18:25:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D13AA343191 for ; Thu, 21 Oct 2021 18:25:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BFB5166 for ; Thu, 21 Oct 2021 18:25:11 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1634840575.aaca421abdb128a7e7600b9e1de1a01b4524d386.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/crackle/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/crackle/crackle-0.1-r1.ebuild net-wireless/crackle/crackle-0.1.ebuild X-VCS-Directories: net-wireless/crackle/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: aaca421abdb128a7e7600b9e1de1a01b4524d386 X-VCS-Branch: master Date: Thu, 21 Oct 2021 18:25:11 +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: bf5f647a-3b54-4b9f-9bf0-36153ed4e4fb X-Archives-Hash: 0d3db775b89df5bccb57e3961bb00c0d commit: aaca421abdb128a7e7600b9e1de1a01b4524d386 Author: Jakov Smolić gentoo org> AuthorDate: Thu Oct 21 17:01:29 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Thu Oct 21 18:22:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaca421a net-wireless/crackle: Port to EAPI 8 Signed-off-by: Jakov Smolić gentoo.org> .../crackle/{crackle-0.1.ebuild => crackle-0.1-r1.ebuild} | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/net-wireless/crackle/crackle-0.1.ebuild b/net-wireless/crackle/crackle-0.1-r1.ebuild similarity index 80% rename from net-wireless/crackle/crackle-0.1.ebuild rename to net-wireless/crackle/crackle-0.1-r1.ebuild index c7a694212e4..9bcfc7aa069 100644 --- a/net-wireless/crackle/crackle-0.1.ebuild +++ b/net-wireless/crackle/crackle-0.1-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 -inherit epatch +inherit toolchain-funcs DESCRIPTION="Crackle cracks BLE Encryption (AKA Bluetooth Smart)" HOMEPAGE="http://lacklustre.net/projects/crackle/" @@ -12,15 +12,18 @@ SRC_URI="http://lacklustre.net/projects/crackle/${P}.tgz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" DEPEND="net-libs/libpcap" RDEPEND="${DEPEND}" RESTRICT="test" -src_prepare() { - epatch "${FILESDIR}"/flags.patch +PATCHES=( + ${FILESDIR}"/flags.patch" +) + +src_configure() { + tc-export CC } src_install() {