sys-kernel/kconfig-hardened-check - 9999 (waebbl)

Search

Install

Install this version:

emerge -a =sys-kernel/kconfig-hardened-check-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sys-kernel/kconfig-hardened-check-9999

Or alternatively:

emerge --autounmask-write -a =sys-kernel/kconfig-hardened-check-9999

Package Information

Description:
A script for checking the hardening options in the Linux kernel config
Homepage:
https://github.com/a13xp0p0v/kconfig-hardened-check
License:
GPL-3

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 ~x86 0
View Raw Ebuild
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..11} )

inherit distutils-r1

DESCRIPTION="A script for checking the hardening options in the Linux kernel config"
HOMEPAGE="https://github.com/a13xp0p0v/kconfig-hardened-check"

if [[ ${PV} == *9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/a13xp0p0v/kconfig-hardened-check"
else
	SRC_URI="https://github.com/a13xp0p0v/kconfig-hardened-check/archive/v${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64 ~x86"
fi

LICENSE="GPL-3"
SLOT="0"

#FIXME: should match kernel, [major_number].[kernel_version].[kernel_patchlevel]
RDEPEND="${PYTHON_DEPS}"
DEPEND="${RDEPEND}"

src_install() {
	distutils-r1_src_install
	dodoc -r "${PN//-/_}"/config_files/ README.md
}

Inherited Eclasses