diff options
author | Jonathan Vasquez <fearedbliss@gentoo.org> | 2020-05-04 15:14:25 -0400 |
---|---|---|
committer | Jonathan Vasquez <fearedbliss@gentoo.org> | 2020-05-04 15:14:25 -0400 |
commit | 3d3a32eb89a11b62c8d64576e06bff94e030ad5d (patch) | |
tree | 42a26b2c68ec3d8f8888a16cc53d439de2028058 /sys-kernel/bliss-kernel-bin/bliss-kernel-bin-4.14.178.ebuild | |
parent | sys-cluster/minikube: remove 1.0.1 (diff) | |
download | gentoo-3d3a32eb89a11b62c8d64576e06bff94e030ad5d.tar.gz gentoo-3d3a32eb89a11b62c8d64576e06bff94e030ad5d.tar.bz2 gentoo-3d3a32eb89a11b62c8d64576e06bff94e030ad5d.zip |
sys-kernel/bliss-kernel-bin: Added Kernels 4.14.178 and 5.4.38
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Jonathan Vasquez <fearedbliss@gentoo.org>
Diffstat (limited to 'sys-kernel/bliss-kernel-bin/bliss-kernel-bin-4.14.178.ebuild')
-rw-r--r-- | sys-kernel/bliss-kernel-bin/bliss-kernel-bin-4.14.178.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sys-kernel/bliss-kernel-bin/bliss-kernel-bin-4.14.178.ebuild b/sys-kernel/bliss-kernel-bin/bliss-kernel-bin-4.14.178.ebuild new file mode 100644 index 000000000000..7df4e7a0e92c --- /dev/null +++ b/sys-kernel/bliss-kernel-bin/bliss-kernel-bin-4.14.178.ebuild @@ -0,0 +1,37 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-install + +# Variables +_LV="FC.01" # Local Version +_PLV="${PV}-${_LV}" # Package Version + Local Version (Module Dir) + +# Main +DESCRIPTION="Precompiled Vanilla Kernel (Kernel Ready-to-Eat [KRE])" +HOMEPAGE="https://wiki.gentoo.org/wiki/User:Fearedbliss" +SRC_URI="https://xyinn.org/gentoo/kernels/${_PLV}/kernel-${_PLV}.tar.xz" + +RESTRICT="strip test" +LICENSE="GPL-2" +SLOT="${_PLV}" +KEYWORDS="-* ~amd64" + +# Unset 'initramfs' since 'bliss-kernel' doesn't need them +# as an explicitly enabled IUSE from the kernel-install eclass. +IUSE="-initramfs" + +S="${WORKDIR}" +QA_PREBUILT="*" + +src_install() { + mv * "${ED}" || die +} + +pkg_postinst() { + # Stub out this function. The downloaded tarball is ready to be installed + # into the OS directly. + debug-print-function ${FUNCNAME} "${@}" +} |