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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2ADDD158086 for ; Sat, 27 Nov 2021 00:03:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7051E075F; Sat, 27 Nov 2021 00:03:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 53E79E079C for ; Sat, 27 Nov 2021 00:03:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5293F343252 for ; Sat, 27 Nov 2021 00:03:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8EB631E6 for ; Sat, 27 Nov 2021 00:03:21 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1637970646.3a467dfdc26d9fc7fadb12bb03ce016cc2e92e7a.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-firmware/ipw2100-firmware/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-firmware/ipw2100-firmware/ipw2100-firmware-1.3-r1.ebuild X-VCS-Directories: sys-firmware/ipw2100-firmware/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 3a467dfdc26d9fc7fadb12bb03ce016cc2e92e7a X-VCS-Branch: master Date: Sat, 27 Nov 2021 00:03:21 +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: 0b796c7e-c42d-4039-b36e-525b34ed6f6a X-Archives-Hash: e0960e09d22e3227d9470f6c0aef2750 commit: 3a467dfdc26d9fc7fadb12bb03ce016cc2e92e7a Author: Marek Szuba gentoo org> AuthorDate: Fri Nov 26 23:50:46 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Fri Nov 26 23:50:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a467dfd sys-firmware/ipw2100-firmware: update EAPI 5 -> 8 Signed-off-by: Marek Szuba gentoo.org> .../ipw2100-firmware/ipw2100-firmware-1.3-r1.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/sys-firmware/ipw2100-firmware/ipw2100-firmware-1.3-r1.ebuild b/sys-firmware/ipw2100-firmware/ipw2100-firmware-1.3-r1.ebuild new file mode 100644 index 000000000000..319a34b61d7b --- /dev/null +++ b/sys-firmware/ipw2100-firmware/ipw2100-firmware-1.3-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_P=${P/firmware/fw} + +DESCRIPTION="Firmware for the Intel PRO/Wireless 2100 3B miniPCI adapter" +HOMEPAGE="http://ipw2100.sourceforge.net/" +SRC_URI="mirror://gentoo/${MY_P}.tgz" + +LICENSE="ipw2100-fw" +SLOT="${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +S=${WORKDIR} + +src_install() { + insinto /lib/firmware + doins ipw2100-${PV}{,-i,-p}.fw +}