Diff nsd-4.6.1-r1 with a nsd-4.7.0

/usr/portage/net-dns/nsd/nsd-4.7.0.ebuild 2023-10-09 14:52:33.364368448 +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
......
17 17
	MY_PV="${MY_PV/_rc/rc}"
18 18
	MY_P="${PN}-${MY_PV}"
19 19

  
20
	if [[ ${PV} != *_beta* ]] && [[ ${PV} != *_rc* ]] ; then
20
	if [[ ${PV} != *_beta* && ${PV} != *_rc* ]] ; then
21 21
		SRC_URI="https://www.nlnetlabs.nl/downloads/${PN}/${MY_P}.tar.gz"
22 22
		S="${WORKDIR}"/${MY_P}
23 23

  
......
51 51
PATCHES=(
52 52
	# Fix the paths in the munin plugin to match our install
53 53
	"${FILESDIR}"/nsd_munin_.patch
54
	"${FILESDIR}"/${P}-incompatible-ptr-types.patch
54
	# bug #907997
55
	"${FILESDIR}"/${P}-no-bind8-stats-no-ssl.patch
55 56
)
56 57

  
57 58
src_prepare() {
Thank you!