net-dns/ldns-tools-0.2: version bump

Signed-off-by: Fabian Groffen <grobian@gentoo.org>
This commit is contained in:
Fabian Groffen
2025-08-04 20:10:32 +02:00
parent 2da7f65545
commit 1fcffad618
2 changed files with 34 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST ldns-tools-0.1.tar.bz2 10133 BLAKE2B 5a51c62d99057d29851a5db0ef99f62c3d8a1b87524342462337c0011893a1eb9eb97b4ec02ae8e74496fa332b8c9df1e310bc0982a917abb35aef156b88ac2d SHA512 595998075dc986908951e746643ba71c96462bdb7cb2192848b174e54e62b5e841b3c994b83ed41ee519569f8eba42124346c15a179b2626f4d7b1ead4a6b0e5
DIST ldns-tools-0.2.tar.bz2 12183 BLAKE2B 65ea3bf8b7282d0d7825c0cf30155f496cc53a766f4a6b13797d9723ef41465bf55515d9b9968f866c40ca2da1205e74132e3712a380aa40987844538e8899e6 SHA512 690c309d81e9c3c1da8b5705385ff7fedee0be5a2e330f85c0188afd6d3f177def40781ad9fb56449649ca8d7097c1d600a1f6e47dc370cb9d5cf53e22d85c5c

View File

@@ -0,0 +1,33 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="ldns tools: host, nslookup"
HOMEPAGE="https://gitlab.com/grobian/ldns-tools"
SRC_URI="https://gitlab.com/grobian/${PN}/-/archive/${PV}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64-macos ~x64-macos ~x64-solaris"
DEPEND="
net-libs/ldns
sys-libs/readline
"
RDEPEND="${DEPEND}
!net-dns/bind-tools
!net-dns/bind
"
src_compile() {
tc-export CC
default
}
src_install() {
exeinto /usr/bin
doexe host nslookup
}