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 38B4E158086 for ; Tue, 14 Dec 2021 16:18:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83A462BC04F; Tue, 14 Dec 2021 16:18:14 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6EBB92BC04C for ; Tue, 14 Dec 2021 16:18:14 +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 9D8B034381A for ; Tue, 14 Dec 2021 16:18:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B40AD0 for ; Tue, 14 Dec 2021 16:18:12 +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: <1639498667.e970839e8043caaa0483d1507197eefbcd08cc05.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-firmware/atmel-firmware/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-firmware/atmel-firmware/atmel-firmware-1.3-r1.ebuild X-VCS-Directories: sys-firmware/atmel-firmware/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: e970839e8043caaa0483d1507197eefbcd08cc05 X-VCS-Branch: master Date: Tue, 14 Dec 2021 16:18:12 +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: dd37e9ef-7a66-4ef9-9218-18ebfb0f72cb X-Archives-Hash: 0128c54d45cf6b38629aac478b8ca0b5 commit: e970839e8043caaa0483d1507197eefbcd08cc05 Author: Jakov Smolić gentoo org> AuthorDate: Tue Dec 14 16:17:47 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Tue Dec 14 16:17:47 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e970839e sys-firmware/atmel-firmware: Drop EAPI-5 ebuild Signed-off-by: Jakov Smolić gentoo.org> .../atmel-firmware/atmel-firmware-1.3-r1.ebuild | 55 ---------------------- 1 file changed, 55 deletions(-) diff --git a/sys-firmware/atmel-firmware/atmel-firmware-1.3-r1.ebuild b/sys-firmware/atmel-firmware/atmel-firmware-1.3-r1.ebuild deleted file mode 100644 index bcd244232549..000000000000 --- a/sys-firmware/atmel-firmware/atmel-firmware-1.3-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit toolchain-funcs - -DESCRIPTION="Firmware and config for atmel and atmel_cs wlan drivers included in linux 2.6" -HOMEPAGE="http://www.thekelleys.org.uk/atmel/" -SRC_URI="http://www.thekelleys.org.uk/atmel/${P}.tar.gz" - -LICENSE="Atmel" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="pcmcia usb" - -RDEPEND=">=net-wireless/wireless-tools-26-r1 - pcmcia? ( sys-apps/pcmciautils )" - -src_compile() { - tc-export CC - emake atmel_fwl -} - -src_install() { - # atmel_at76c504c-wpa.bin should be renamed to atmel_at76c504-wpa.bin, bug #398803 - mv images/atmel_at76c504c-wpa.bin images/atmel_at76c504-wpa.bin || die - - insinto /lib/firmware - doins images/*.bin - - if use usb; then - doins images.usb/*.bin - fi - - if use pcmcia; then - insinto /etc/pcmcia - doins atmel.conf - fi - - dosbin atmel_fwl atmel_fwl.pl - doman atmel_fwl.8 - dodoc README VERSION -} - -pkg_postinst() { - if use pcmcia && [ -f /var/run/cardmgr.pid ]; then - kill -HUP `cat /var/run/cardmgr.pid` - fi -} - -pkg_postrm() { - if use pcmcia && [ -f /var/run/cardmgr.pid ]; then - kill -HUP `cat /var/run/cardmgr.pid` - fi -}