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 A97C815803E for ; Sun, 31 Dec 2023 02:49:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB8002BC03B; Sun, 31 Dec 2023 02:49:02 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B45112BC03B for ; Sun, 31 Dec 2023 02:49:02 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0A0F2340C33 for ; Sun, 31 Dec 2023 02:49:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5034E14C4 for ; Sun, 31 Dec 2023 02:48:59 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1703990918.1783fc2634183a2d5738015210eb57adc66025f6.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/portapack-firmware/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/portapack-firmware/portapack-firmware-20190405.ebuild X-VCS-Directories: net-wireless/portapack-firmware/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 1783fc2634183a2d5738015210eb57adc66025f6 X-VCS-Branch: master Date: Sun, 31 Dec 2023 02:48:59 +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: 205b7f9c-0a8c-4b6b-ad32-7a88a0c6843a X-Archives-Hash: e1b144594d3dee63e524a20819836976 commit: 1783fc2634183a2d5738015210eb57adc66025f6 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu Dec 28 18:11:11 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Dec 31 02:48:38 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1783fc26 net-wireless/portapack-firmware: EAPI8 bump, fix LICENSE Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../portapack-firmware/portapack-firmware-20190405.ebuild | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/net-wireless/portapack-firmware/portapack-firmware-20190405.ebuild b/net-wireless/portapack-firmware/portapack-firmware-20190405.ebuild index 5da4e1ade90a..f38f39b3114a 100644 --- a/net-wireless/portapack-firmware/portapack-firmware-20190405.ebuild +++ b/net-wireless/portapack-firmware/portapack-firmware-20190405.ebuild @@ -1,24 +1,22 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="Firmware and scripts for controlling the Portapack from Sharebrained" HOMEPAGE="https://github.com/sharebrained/portapack-hackrf/releases" SRC_URI="https://github.com/sharebrained/portapack-hackrf/releases/download/${PV}/portapack-h1-firmware-${PV}.tar.bz2" +S="${WORKDIR}/portapack-h1-firmware-${PV}" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" PDEPEND=">=net-wireless/hackrf-tools-2015.07.2-r1 >=app-mobilephone/dfu-util-0.7" -S="${WORKDIR}/portapack-h1-firmware-${PV}" - src_install() { insinto /usr/share/hackrf newins portapack-h1-firmware.bin portapack-h1-firmware-${PV}.bin - ln -s portapack-h1-firmware-${PV}.bin "${ED}/usr/share/hackrf/portapack-h1-firmware.bin" + ln -s portapack-h1-firmware-${PV}.bin "${ED}/usr/share/hackrf/portapack-h1-firmware.bin" || die }