From 17bb7fdf2c07233daeb317f76d86f82cd702e98d Mon Sep 17 00:00:00 2001 From: Aidan Harris Date: Sun, 29 Mar 2020 17:03:56 +0000 Subject: [PATCH] sys-kernel/kconfig-hardened-check: Convert ebuild to use distutils-r1.eclass Signed-off-by: Aidan Harris --- .../kconfig-hardened-check-9999.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sys-kernel/kconfig-hardened-check/kconfig-hardened-check-9999.ebuild b/sys-kernel/kconfig-hardened-check/kconfig-hardened-check-9999.ebuild index f861912c5..1559be3ed 100644 --- a/sys-kernel/kconfig-hardened-check/kconfig-hardened-check-9999.ebuild +++ b/sys-kernel/kconfig-hardened-check/kconfig-hardened-check-9999.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{6,7,8} ) -inherit python-r1 +inherit distutils-r1 DESCRIPTION="A script for checking the hardening options in the Linux kernel config" HOMEPAGE="https://github.com/a13xp0p0v/kconfig-hardened-check" @@ -25,7 +25,6 @@ RDEPEND="${PYTHON_DEPS}" DEPEND="${RDEPEND}" src_install() { - dodoc -r config_files/ README.md - python_foreach_impl python_newscript \ - kconfig-hardened-check.py kconfig-hardened-check + distutils-r1_src_install + dodoc -r "${PN//-/_}"/config_files/ README.md }