From e2f65b56cb902173d16e9a6c07837ececeae4775 Mon Sep 17 00:00:00 2001 From: Sam Jorna Date: Sun, 3 Jul 2022 21:24:59 +1000 Subject: sys-apps/kcheck: bump python compat, fix distutils * Bump PYTHON_COMPAT to 3.8-3.10. * Fix wrong value for DISTUTILS_USE_SETUPTOOLS per bug 810772. Closes: https://bugs.gentoo.org/832254 Closes: https://bugs.gentoo.org/810772 Signed-off-by: Sam Jorna --- sys-apps/kcheck/kcheck-0.0.2-r2.ebuild | 32 ++++++++++++++++++++++++++++++++ sys-apps/kcheck/kcheck-9999.ebuild | 3 +-- 2 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 sys-apps/kcheck/kcheck-0.0.2-r2.ebuild (limited to 'sys-apps/kcheck') diff --git a/sys-apps/kcheck/kcheck-0.0.2-r2.ebuild b/sys-apps/kcheck/kcheck-0.0.2-r2.ebuild new file mode 100644 index 000000000000..364c02952611 --- /dev/null +++ b/sys-apps/kcheck/kcheck-0.0.2-r2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://github.com/wraeth/kcheck" + inherit git-r3 +else + SRC_URI="https://github.com/wraeth/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="Record and check required kernel symbols are set" +HOMEPAGE="https://github.com/wraeth/kcheck" + +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + dev-python/ConfigArgParse[${PYTHON_USEDEP}] + sys-apps/portage[${PYTHON_USEDEP}]" + +src_install() { + distutils-r1_src_install + mkdir "${D}"/etc || die + mv -v "${D}"/{usr/,}etc/kcheck.conf || die + rmdir -v "${D}"/usr/etc || die +} diff --git a/sys-apps/kcheck/kcheck-9999.ebuild b/sys-apps/kcheck/kcheck-9999.ebuild index f710c7d3e34f..364c02952611 100644 --- a/sys-apps/kcheck/kcheck-9999.ebuild +++ b/sys-apps/kcheck/kcheck-9999.ebuild @@ -2,8 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) -DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 -- cgit v1.2.3-65-gdbad