Diff nzbget-21.1-r1 with a nzbget-21.1-r2

/usr/portage/net-nntp/nzbget/nzbget-21.1-r2.ebuild 2023-10-09 14:52:34.728368482 +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
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit autotools systemd
7 7

  
......
11 11
DESCRIPTION="A command-line based binary newsgrabber supporting .nzb files"
12 12
HOMEPAGE="https://nzbget.net/"
13 13
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}-src.tar.gz -> ${P}.tar.gz"
14
S=${WORKDIR}/${PN}-${PV/_pre*/-testing}
14 15

  
15 16
LICENSE="GPL-2+"
16 17
SLOT="0"
17
KEYWORDS="amd64 arm ppc x86"
18
KEYWORDS="amd64 arm ~arm64 ~ppc x86"
18 19
IUSE="debug gnutls ncurses +parcheck ssl test zlib"
19 20
RESTRICT="!test? ( test )"
20 21

  
......
43 44
	)
44 45
	virtual/pkgconfig
45 46
"
47

  
46 48
DOCS=( ChangeLog README nzbget.conf )
47 49

  
48
S=${WORKDIR}/${PN}-${PV/_pre*/-testing}
50
PATCHES=(
51
	# https://bugs.gentoo.org/805896
52
	# https://github.com/nzbget/nzbget/pull/793
53
	"${FILESDIR}/${P}-openssl-3.patch"
54
)
49 55

  
50 56
src_prepare() {
51 57
	default
Thank you!