commit: 504473d60d8c1120c7dadbcc2cd8628f967555c7 Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr> AuthorDate: Fri Jan 16 10:05:16 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Jan 19 06:36:24 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=504473d6
net-dns/redis-knot: add to 3.5.3 remove the patch for gnutls, upstream made its own Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr> Part-of: https://github.com/gentoo/gentoo/pull/45406 Signed-off-by: Sam James <sam <AT> gentoo.org> net-dns/redis-knot/Manifest | 2 ++ net-dns/redis-knot/redis-knot-3.5.3.ebuild | 50 ++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/net-dns/redis-knot/Manifest b/net-dns/redis-knot/Manifest index c1e94ae1640d..4bf8825a66cd 100644 --- a/net-dns/redis-knot/Manifest +++ b/net-dns/redis-knot/Manifest @@ -2,3 +2,5 @@ DIST knot-3.5.1.tar.xz 1676008 BLAKE2B aa6b9d173c7fc0ff7011691ac6178a8b24ae7482c DIST knot-3.5.1.tar.xz.asc 833 BLAKE2B 02f6fe62cdff94c8f274a203ff3873b0d10abc52c8fb2817325ebfcf56e16b048db46c63874894e2922db3a7db3ecfb25155f54c0958d2095054aff50aff555f SHA512 740528e26e999bf4c12cc2995838f8d1bf0aaac68d3bc823f45090ed5f498bb3cb294b4c07fa0056dd8b7033a7502f800cbdf608276fbf40c79d566035aca8d3 DIST knot-3.5.2.tar.xz 1710680 BLAKE2B 215b09a91f2ba21f23f996df2a1e6ea187f362bfb6dc80d5cd1b45cd84ebf4ccb77f90ff567e91dab36f02aae1a776efcc0aea2a54b830eb85039d0b39ff803f SHA512 4dd8e42088f792459859da807427024ded926c2a8fb5b9fd4596b631a184269e3d84f0cd4be9192f2546977c598c418f8d44cabccbc393f9f7cf2f0dd5adc595 DIST knot-3.5.2.tar.xz.asc 833 BLAKE2B e5ba45566c403b2a7b477fdf940ce7d13d5ab8901f0e25b3232eaa3bd5a85114679750a1164bd304f872336b152210923c65e7577a7b4dd485250c89f97310ba SHA512 5f6ee7fedc0d5b904572d2f6d47858065cdc4efa7217b4e9dcbb38ae63a1533646ba2b042bb0c1fe533a3caf6ba41c81010616393d2a0adcea77712608931b38 +DIST knot-3.5.3.tar.xz 1757736 BLAKE2B eff117f72248b6647eb54a2f0c230b971065205ab6adf2503785efdf045ae548568a95915bfbd594e99501ff7c8ca691e98f372ba4b1f88521ab685e015b4b3b SHA512 7064a18ce10fa9488176592baddfda32b55f6ca2470dce4083c82aca8fae95f568cb9ddd2bb9f55466eeffbb04ea616e67014f44b94f2fb2b8f98f8a419271a3 +DIST knot-3.5.3.tar.xz.asc 833 BLAKE2B 661b74b7a460d9993226862d1f7dc2d74ca9e7f9a0057b5f9eae5c4748a2fdc16415212e209a8264e0d49ea4107e6a713ccaba3d3bb91deec3b3e86cc48e1237 SHA512 4ad40aaba569b4e6ccf3b6f264d3e45866855d5c388f6bd8140704ad9db09ef71d271c59704ca8e92bd39c0e7d62894d535b1f4e0642d1db33d113855ac6d6bd diff --git a/net-dns/redis-knot/redis-knot-3.5.3.ebuild b/net-dns/redis-knot/redis-knot-3.5.3.ebuild new file mode 100644 index 000000000000..670925b7c81f --- /dev/null +++ b/net-dns/redis-knot/redis-knot-3.5.3.ebuild @@ -0,0 +1,50 @@ +# Copyright 2025-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit verify-sig + +MY_PN="knot" +MY_P="${MY_PN}-${PV}" +DESCRIPTION="Redis module for Knot DNS" +HOMEPAGE="https://www.knot-dns.cz/ https://gitlab.nic.cz/knot/knot-dns" +SRC_URI=" + https://knot-dns.nic.cz/release/${MY_P}.tar.xz + verify-sig? ( https://knot-dns.nic.cz/release/${MY_P}.tar.xz.asc ) +" +S="${WORKDIR}/${MY_P}" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv ~x86" + +# no test, it requires a Redis instance and RLTest (not packaged) +BDEPEND="verify-sig? ( sec-keys/openpgp-keys-knot )" + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/${MY_PN}.asc + +# Used to check cpuset_t in sched.h with NetBSD. +# False positive because linux have sched.h too but with cpu_set_t +QA_CONFIG_IMPL_DECL_SKIP=( cpuset_create cpuset_destroy ) + +src_configure() { + local myeconfargs=( + --disable-daemon + --disable-modules + --disable-utilities + --disable-xdp + --enable-redis=module + ) + econf "${myeconfargs[@]}" +} + +src_compile() { + emake -C src/redis +} + +src_install() { + emake DESTDIR="${D}" -C src/redis install + + find "${D}" -name '*.la' -delete || die +}
