From 6c4ad74c86ef31f69f563feb25af3355db4d3d53 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 19 Jun 2024 10:32:51 +0100 Subject: sys-kernel/tp_smapi-dkms : EAPI bump --- .../tp_smapi-dkms/tp_smapi-dkms-0.44-r1.ebuild | 53 +++++++++++++++++++++ sys-kernel/tp_smapi-dkms/tp_smapi-dkms-0.44.ebuild | 55 ---------------------- 2 files changed, 53 insertions(+), 55 deletions(-) create mode 100644 sys-kernel/tp_smapi-dkms/tp_smapi-dkms-0.44-r1.ebuild delete mode 100644 sys-kernel/tp_smapi-dkms/tp_smapi-dkms-0.44.ebuild (limited to 'sys-kernel') diff --git a/sys-kernel/tp_smapi-dkms/tp_smapi-dkms-0.44-r1.ebuild b/sys-kernel/tp_smapi-dkms/tp_smapi-dkms-0.44-r1.ebuild new file mode 100644 index 00000000..e50f0538 --- /dev/null +++ b/sys-kernel/tp_smapi-dkms/tp_smapi-dkms-0.44-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN=tp_smapi +MY_P=${MY_PN}-${PV} +DESCRIPTION="IBM ThinkPad SMAPI BIOS driver sources" +HOMEPAGE="https://github.com/linux-thinkpad/tp_smapi" +SRC_URI="https://github.com/linux-thinkpad/tp_smapi/releases/download/tp-smapi/${PV}/${MY_P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" + +IUSE="hdaps" + +DEPEND="sys-kernel/dkms" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P} + +pkg_setup() { + if use hdaps; then + local CONFIG_CHECK="~INPUT_UINPUT" + local WARNING_INPUT_UINPUT="Your kernel needs uinput for the hdaps module to perform better" + local CONFIG_CHECK="~!SENSORS_HDAPS" + local ERROR_SENSORS_HDAPS="${P} with USE=hdaps conflicts with in-kernel HDAPS (CONFIG_SENSORS_HDAPS)" + fi +} + +src_compile() { + : +} + +src_install() { + if use hdaps; then + cp "${FILESDIR}"/dkms-hdaps.conf "${S}"/dkms.conf || die + else + cp "${FILESDIR}"/dkms.conf "${S}" || die + fi + dodir /usr/src/${P} + insinto /usr/src/${P} + doins -r "${S}"/* +} + +pkg_postinst() { + dkms add ${PN}/${PV} +} + +pkg_prerm() { + dkms remove ${PN}/${PV} --all +} diff --git a/sys-kernel/tp_smapi-dkms/tp_smapi-dkms-0.44.ebuild b/sys-kernel/tp_smapi-dkms/tp_smapi-dkms-0.44.ebuild deleted file mode 100644 index b97ec7e2..00000000 --- a/sys-kernel/tp_smapi-dkms/tp_smapi-dkms-0.44.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils - -MY_PN=tp_smapi -MY_P=${MY_PN}-${PV} -DESCRIPTION="IBM ThinkPad SMAPI BIOS driver sources" -HOMEPAGE="https://github.com/linux-thinkpad/tp_smapi" -SRC_URI="https://github.com/linux-thinkpad/tp_smapi/releases/download/tp-smapi/${PV}/${MY_P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" - -IUSE="hdaps" - -DEPEND="sys-kernel/dkms" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${MY_P} - -pkg_setup() { - if use hdaps; then - local CONFIG_CHECK="~INPUT_UINPUT" - local WARNING_INPUT_UINPUT="Your kernel needs uinput for the hdaps module to perform better" - local CONFIG_CHECK="~!SENSORS_HDAPS" - local ERROR_SENSORS_HDAPS="${P} with USE=hdaps conflicts with in-kernel HDAPS (CONFIG_SENSORS_HDAPS)" - fi -} - -src_compile() { - : -} - -src_install() { - if use hdaps; then - cp "${FILESDIR}"/dkms-hdaps.conf "${S}"/dkms.conf || die - else - cp "${FILESDIR}"/dkms.conf "${S}" || die - fi - dodir /usr/src/${P} - insinto /usr/src/${P} - doins -r "${S}"/* -} - -pkg_postinst() { - dkms add ${PN}/${PV} -} - -pkg_prerm() { - dkms remove ${PN}/${PV} --all -} -- cgit v1.2.3