diff options
author | Ulrich Müller <ulm@gentoo.org> | 2020-09-08 08:42:36 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2020-09-08 08:46:13 +0200 |
commit | ec47870ec8e62e3a959f20a327d7febcb04189be (patch) | |
tree | 88bc8f24b21c569624a1247940ed8c833c62cd47 /sys-firmware | |
parent | sys-firmware/iwl1000-ucode: Remove ebuild for slot 3. (diff) | |
download | gentoo-ec47870ec8e62e3a959f20a327d7febcb04189be.tar.gz gentoo-ec47870ec8e62e3a959f20a327d7febcb04189be.tar.bz2 gentoo-ec47870ec8e62e3a959f20a327d7febcb04189be.zip |
sys-firmware/iwl1000-ucode: EAPI 7.
Closes: https://bugs.gentoo.org/740922
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'sys-firmware')
-rw-r--r-- | sys-firmware/iwl1000-ucode/iwl1000-ucode-39.31.5.1-r1.ebuild | 20 | ||||
-rw-r--r-- | sys-firmware/iwl1000-ucode/iwl1000-ucode-39.31.5.1.ebuild | 33 |
2 files changed, 20 insertions, 33 deletions
diff --git a/sys-firmware/iwl1000-ucode/iwl1000-ucode-39.31.5.1-r1.ebuild b/sys-firmware/iwl1000-ucode/iwl1000-ucode-39.31.5.1-r1.ebuild new file mode 100644 index 000000000000..b689c2319d6d --- /dev/null +++ b/sys-firmware/iwl1000-ucode/iwl1000-ucode-39.31.5.1-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_P="iwlwifi-1000-ucode-${PV}" +DESCRIPTION="Intel (R) Wireless WiFi Link 1000BGN ucode" +HOMEPAGE="https://wireless.wiki.kernel.org/en/users/Drivers/iwlwifi" +SRC_URI="https://wireless.wiki.kernel.org/_media/en/users/drivers/${MY_P}.tgz" +S="${WORKDIR}/${MY_P}" + +LICENSE="ipw3945" +SLOT="0" +KEYWORDS="amd64 x86" + +src_install() { + insinto /lib/firmware + doins iwlwifi-1000-5.ucode + dodoc README.iwlwifi-1000-ucode +} diff --git a/sys-firmware/iwl1000-ucode/iwl1000-ucode-39.31.5.1.ebuild b/sys-firmware/iwl1000-ucode/iwl1000-ucode-39.31.5.1.ebuild deleted file mode 100644 index a5f634114de6..000000000000 --- a/sys-firmware/iwl1000-ucode/iwl1000-ucode-39.31.5.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit linux-info - -MY_P="iwlwifi-1000-ucode-${PV}" -DESCRIPTION="Intel (R) Wireless WiFi Link 1000BGN ucode" -HOMEPAGE="http://intellinuxwireless.org/?p=iwlwifi" -SRC_URI="http://intellinuxwireless.org/iwlwifi/downloads/${MY_P}.tgz" - -LICENSE="ipw3945" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -S="${WORKDIR}/${MY_P}" - -pkg_pretend() { - if kernel_is lt 2 6 39; then - ewarn "Your kernel version is ${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}." - ewarn "This microcode image requires a kernel >= 2.6.39." - ewarn "For kernel versions < 2.6.39, you may unmask and install" - ewarn "${CATEGORY}/${PN}-128.50.3.1 instead." - fi -} - -src_install() { - insinto /lib/firmware - doins iwlwifi-1000-5.ucode - dodoc README.iwlwifi-1000-ucode -} |