Diff knot-3.1.9 with a knot-3.2.2

/usr/portage/net-dns/knot/knot-3.2.2.ebuild 2023-10-09 14:52:33.360368448 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6 6
inherit flag-o-matic systemd
7 7

  
8
# subslot: libknot major.libdnssec major.libzscanner major
9
KNOT_SUBSLOT="13.9.4"
10

  
8 11
DESCRIPTION="High-performance authoritative-only DNS server"
9 12
HOMEPAGE="https://www.knot-dns.cz/ https://gitlab.nic.cz/knot/knot-dns"
10 13
SRC_URI="https://secure.nic.cz/files/knot-dns/${P/_/-}.tar.xz"
11 14

  
12 15
LICENSE="GPL-3+"
13
SLOT="0"
14
KEYWORDS="~amd64 ~riscv ~x86"
16
SLOT="0/${KNOT_SUBSLOT}"
17
KEYWORDS="amd64 ~riscv x86"
15 18

  
16 19
KNOT_MODULES=(
17 20
	"+cookies"
......
26 29
	"+synthrecord"
27 30
	"+whoami"
28 31
)
29
IUSE="doc caps doh +fastparser idn +libidn2 systemd +utils xdp ${KNOT_MODULES[@]}"
32
IUSE="doc caps doh +fastparser idn +libidn2 quic systemd +utils xdp ${KNOT_MODULES[@]}"
30 33

  
31 34
RDEPEND="
32 35
	acct-group/knot
......
47 50
		!libidn2? ( net-dns/libidn:0= !net-dns/libidn2 )
48 51
		libidn2? ( net-dns/libidn2:= )
49 52
	)
53
	quic? ( net-libs/ngtcp2:=[gnutls] )
50 54
	systemd? ( sys-apps/systemd:= )
51 55
	xdp? (
52 56
		 dev-libs/libbpf:=
......
66 70
	local my_conf=(
67 71
		--with-storage="${EPREFIX}/var/lib/${PN}"
68 72
		--with-rundir="${EPREFIX}/var/run/${PN}"
73
		$(use_enable caps cap_ng)
69 74
		$(use_enable fastparser)
70 75
		$(use_enable dnstap)
71 76
		$(use_enable doc documentation)
77
		$(use_enable quic)
72 78
		$(use_enable utils utilities)
73 79
		$(use_enable xdp)
74 80
		--enable-systemd=$(usex systemd)
Thank you!