commit: 78c7a1dfc9324d69ee3ba84100f397b7c4b64796 Author: Sven Wegener <swegener <AT> gentoo <DOT> org> AuthorDate: Wed Jun 21 18:47:51 2023 +0000 Commit: Sven Wegener <swegener <AT> gentoo <DOT> org> CommitDate: Wed Jun 21 18:50:07 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78c7a1df
sys-kernel/cryptodev: switch to linux-mod-r1.eclass Closes: https://bugs.gentoo.org/908726 Signed-off-by: Sven Wegener <swegener <AT> gentoo.org> .../{cryptodev-1.13.ebuild => cryptodev-1.13-r1.ebuild} | 17 ++++++++++------- sys-kernel/cryptodev/cryptodev-9999.ebuild | 17 ++++++++++------- 2 files changed, 20 insertions(+), 14 deletions(-) diff --git a/sys-kernel/cryptodev/cryptodev-1.13.ebuild b/sys-kernel/cryptodev/cryptodev-1.13-r1.ebuild similarity index 84% rename from sys-kernel/cryptodev/cryptodev-1.13.ebuild rename to sys-kernel/cryptodev/cryptodev-1.13-r1.ebuild index ac9bd1eeea15..b5a1a271a0b0 100644 --- a/sys-kernel/cryptodev/cryptodev-1.13.ebuild +++ b/sys-kernel/cryptodev/cryptodev-1.13-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit linux-info linux-mod +inherit linux-info linux-mod-r1 DESCRIPTION="device that allows access to Linux kernel cryptographic drivers" HOMEPAGE="http://cryptodev-linux.org/" @@ -26,10 +26,6 @@ DEPEND="virtual/linux-sources" #test requires that the module is already loaded RESTRICT="test" -MODULE_NAMES="cryptodev(extra:${S})" -BUILD_PARAMS="KERNEL_DIR=\"\${KV_OUT_DIR}\"" -BUILD_TARGETS="build" - pkg_pretend() { use kernel_linux || die "cryptodev ebuild only support linux" @@ -42,8 +38,15 @@ pkg_pretend() { check_extra_config } +src_compile() { + local modlist=( cryptodev=extra:${S} ) + local modargs=( KERNEL_DIR="${KV_OUT_DIR}" ) + + linux-mod-r1_src_compile +} + src_install() { - linux-mod_src_install + linux-mod-r1_src_install insinto /usr/include/crypto doins crypto/cryptodev.h diff --git a/sys-kernel/cryptodev/cryptodev-9999.ebuild b/sys-kernel/cryptodev/cryptodev-9999.ebuild index ac9bd1eeea15..b5a1a271a0b0 100644 --- a/sys-kernel/cryptodev/cryptodev-9999.ebuild +++ b/sys-kernel/cryptodev/cryptodev-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit linux-info linux-mod +inherit linux-info linux-mod-r1 DESCRIPTION="device that allows access to Linux kernel cryptographic drivers" HOMEPAGE="http://cryptodev-linux.org/" @@ -26,10 +26,6 @@ DEPEND="virtual/linux-sources" #test requires that the module is already loaded RESTRICT="test" -MODULE_NAMES="cryptodev(extra:${S})" -BUILD_PARAMS="KERNEL_DIR=\"\${KV_OUT_DIR}\"" -BUILD_TARGETS="build" - pkg_pretend() { use kernel_linux || die "cryptodev ebuild only support linux" @@ -42,8 +38,15 @@ pkg_pretend() { check_extra_config } +src_compile() { + local modlist=( cryptodev=extra:${S} ) + local modargs=( KERNEL_DIR="${KV_OUT_DIR}" ) + + linux-mod-r1_src_compile +} + src_install() { - linux-mod_src_install + linux-mod-r1_src_install insinto /usr/include/crypto doins crypto/cryptodev.h
