commit:     cf1630aa52f634b69a08ffd7e18fb07d57d92f0e
Author:     Hank Leininger <hlein <AT> korelogic <DOT> com>
AuthorDate: Wed Feb 14 00:44:21 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 18 10:48:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf1630aa

net-dns/bind-tools: add 9.16.48

Signed-off-by: Hank Leininger <hlein <AT> korelogic.com>
Bug: https://bugs.gentoo.org/924447
Bug: https://bugs.gentoo.org/914365
Bug: https://bugs.gentoo.org/919679
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-dns/bind-tools/Manifest                  |   1 +
 net-dns/bind-tools/bind-tools-9.16.48.ebuild | 167 +++++++++++++++++++++++++++
 2 files changed, 168 insertions(+)

diff --git a/net-dns/bind-tools/Manifest b/net-dns/bind-tools/Manifest
index 118a05bd6ad7..f219f948f74d 100644
--- a/net-dns/bind-tools/Manifest
+++ b/net-dns/bind-tools/Manifest
@@ -2,3 +2,4 @@ DIST bind-9.16.37.tar.xz 5109440 BLAKE2B 
3b18f7c780ce04e296498e30c09628ad8eb89f3
 DIST bind-9.16.39.tar.xz 5120164 BLAKE2B 
d9fb51435dce11c8854084cc21de79df3ae6529baead76dcf27711bcff33469d1fd6fbd3366b61bc921f92850620c9b7464d4dbe08dd0c7e2f3e5e1c1100cb79
 SHA512 
6e2e30815222a289e94f6857fdb6b142558ca56ecf5f8291f843f8476da8e4011042f1dd2bed031e5d9924370ae0705ce5b3ea2ce10ae830f8980b669eb26328
 DIST bind-9.16.41.tar.xz 5121884 BLAKE2B 
53ccc399acc98f79930f51314c1f4e1135370347f05c7a293ac416669c6125b2d56edda20b9ecd86e6ec3ccf05a95c3eb0b836c26b14cf7ee3d1869f578280e5
 SHA512 
93c374ef82ff36e222a790161942635d0b977813b5040f8895e1c032b4ca1925addc8ef3a06417445036dc35aeb708cc61bd589c6a9cb78980f77ab402c44bee
 DIST bind-9.16.42.tar.xz 5123476 BLAKE2B 
7cda7df38beaa602fde0142b46c8bcf401cda8afdf00383724ccaa8f3e3f71d320bbd4b7f3be33bcc9c59465932caab1f8c62ca64b79a1470cbdaa01f0048b00
 SHA512 
cf29e72c9c979f3cf8ba0b17357fb09c37f1436a7f3a518f49ce4b4c682fb367dd3d8e71de6603c166c95a7c535a77a9f2a1393a59723294626acefebbc95fd6
+DIST bind-9.16.48.tar.xz 5131176 BLAKE2B 
4a503b45df412c435cb0f75b54ee1270140cccce7ecc159cdf3e0e3cbd3c0a0866b7472782f20aacf130f57df12d20a102ac6979498138ce00a2655806d003e7
 SHA512 
83829a5045e2a29dd2b491d3ab72b545f5664023fcd4aa205a44dbb7bcc5c737b4466c0d73f124b8d88fd33c56776871a07dde1ba0530d43eec8e7304a08d353

diff --git a/net-dns/bind-tools/bind-tools-9.16.48.ebuild 
b/net-dns/bind-tools/bind-tools-9.16.48.ebuild
new file mode 100644
index 000000000000..067ea34674e9
--- /dev/null
+++ b/net-dns/bind-tools/bind-tools-9.16.48.ebuild
@@ -0,0 +1,167 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools flag-o-matic multiprocessing toolchain-funcs
+
+MY_PN=${PN//-tools}
+MY_PV=${PV/_p/-P}
+MY_PV=${MY_PV/_rc/rc}
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="bind tools: dig, nslookup, host, nsupdate, dnssec-keygen"
+HOMEPAGE="https://www.isc.org/software/bind 
https://gitlab.isc.org/isc-projects/bind9";
+SRC_URI="https://downloads.isc.org/isc/bind9/${PV}/${MY_P}.tar.xz";
+
+LICENSE="Apache-2.0 BSD BSD-2 GPL-2 HPND ISC MPL-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+IUSE="+caps doc gssapi idn libedit readline test xml"
+# no PKCS11 currently as it requires OpenSSL to be patched, also see bug 
#409687
+RESTRICT="!test? ( test )"
+
+# libuv lower bound should be the highest value seen at
+# 
https://gitlab.isc.org/isc-projects/bind9/-/blob/v9_16/lib/isc/netmgr/netmgr.c#L244
+# to avoid issues with matching stable/testing, etc
+COMMON_DEPEND="
+       >=dev-libs/libuv-1.42.0:=
+       dev-libs/openssl:=
+       caps? ( sys-libs/libcap )
+       xml? ( dev-libs/libxml2 )
+       idn? ( net-dns/libidn2:= )
+       gssapi? ( virtual/krb5 )
+       libedit? ( dev-libs/libedit )
+       !libedit? (
+               readline? ( sys-libs/readline:= )
+       )
+"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}"
+
+# sphinx required for man-page and html creation
+BDEPEND="
+       virtual/pkgconfig
+       doc? ( dev-python/sphinx )
+       test? (
+               dev-util/cmocka
+               dev-util/kyua
+       )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+       default
+
+       append-ldflags "-L${ESYSROOT}/usr/$(get_libdir)"
+
+       # Do not disable thread local storage on Solaris, it works with our
+       # toolchain, and it breaks further configure checks
+       sed -i -e '/LDFLAGS=/s/-zrelax=transtls//' configure.ac configure || die
+
+       # Slow tests
+       sed -i "s/{name='mem_test'}/{name='mem_test',timeout=900}/" 
"lib/isc/tests/Kyuafile" || die
+       sed -i "s/{name='timer_test'}/{name='timer_test',timeout=900}/" 
"lib/isc/tests/Kyuafile" || die
+
+       # Conditionally broken
+       use sparc && ( sed -i "/{name='netmgr_test'}/d" 
"lib/isc/tests/Kyuafile" || die )
+
+       # bug #220361
+       rm aclocal.m4 || die
+       rm -rf libtool.m4/ || die
+
+       eautoreconf
+}
+
+src_configure() {
+       local myeconfargs=(
+               --localstatedir="${EPREFIX}"/var
+               --without-python
+               --without-libjson
+               --without-zlib
+               --without-lmdb
+               --without-maxminddb
+               --disable-geoip
+               --with-openssl="${ESYSROOT}"/usr
+               $(use_with idn libidn2 "${ESYSROOT}"/usr)
+               $(use_with xml libxml2)
+               $(use_with gssapi)
+               $(use_with readline)
+               $(use_enable caps linux-caps)
+               AR="$(type -P $(tc-getAR))"
+       )
+
+       # bug 607400
+       if use libedit ; then
+               myeconfargs+=( --with-readline=-ledit )
+       elif use readline ; then
+               myeconfargs+=( --with-readline=-lreadline )
+       else
+               myeconfargs+=( --without-readline )
+       fi
+
+       # bug #344029
+       append-cflags "-DDIG_SIGCHASE"
+
+       # to expose CMSG_* macros from sys/sockets.h
+       [[ ${CHOST} == *-solaris* ]] && append-cflags "-D_XOPEN_SOURCE=600"
+
+       # localstatedir for nsupdate -l, bug #395785
+       tc-export BUILD_CC
+       econf "${myeconfargs[@]}"
+
+       # bug #151839
+       echo '#undef SO_BSDCOMPAT' >> config.h || die
+}
+
+src_compile() {
+       local AR="$(tc-getAR)"
+
+       emake AR="${AR}" -C lib/
+       emake AR="${AR}" -C bin/delv/
+       emake AR="${AR}" -C bin/dig/
+       emake AR="${AR}" -C bin/nsupdate/
+       emake AR="${AR}" -C bin/dnssec/
+       emake -C doc/man/ man $(usev doc)
+}
+
+src_test() {
+       # system tests ('emake test') require network configuration for IPs etc
+       # so we run the unit tests instead.
+       TEST_PARALLEL_JOBS="$(makeopts_jobs)" emake unit
+}
+
+src_install() {
+       local man_dir="${S}/doc/man"
+       local html_dir="${man_dir}/_build/html"
+
+       dodoc README CHANGES
+
+       cd "${S}"/bin/delv || die
+       dobin delv
+       doman ${man_dir}/delv.1
+
+       cd "${S}"/bin/dig || die
+       dobin dig host nslookup
+       doman ${man_dir}/{dig,host,nslookup}.1
+
+       cd "${S}"/bin/nsupdate || die
+       dobin nsupdate
+       doman ${man_dir}/nsupdate.1
+       if use doc; then
+               docinto html
+               dodoc ${html_dir}/nsupdate.html
+       fi
+
+       cd "${S}"/bin/dnssec || die
+       for tool in dsfromkey importkey keyfromlabel keygen \
+               revoke settime signzone verify; do
+               dobin dnssec-"${tool}"
+               doman ${man_dir}/dnssec-"${tool}".8
+               if use doc; then
+                       docinto html
+                       dodoc ${html_dir}/dnssec-"${tool}".html
+               fi
+       done
+}

Reply via email to