SwordArMor-gentoo-overlay/net-dns/nagios-check_dane/nagios-check_dane-1.1.ebuild
Alarig Le Lay b7ee623529
net-dns/nagios-check_dane: enable py3.12
Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr>
2024-07-02 12:02:08 +02:00

35 lines
747 B
Bash

# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
inherit python-r1
MY_PN=${PN/nagios-/}
DESCRIPTION="Nagios/Icinga plugin for checking DANE/TLSA records"
HOMEPAGE="https://github.com/debfx/check_dane"
MY_GITHUB_AUTHOR="debfx"
SRC_URI="https://github.com/${MY_GITHUB_AUTHOR}/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="
dev-libs/openssl
dev-python/dnspython
"
RDEPEND="${PYTHON_DEPS}"
src_install() {
python_scriptinto /usr/lib64/nagios/plugins/
python_foreach_impl python_doscript check_dane
dodoc README.md
}