Diff zeromq-4.3.4-r1 with a zeromq-4.3.4-r2

/usr/portage/net-libs/zeromq/zeromq-4.3.4-r2.ebuild 2023-10-09 14:52:34.604368479 +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="7"
......
11 11

  
12 12
LICENSE="LGPL-3"
13 13
SLOT="0/5"
14
KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
14
KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~x64-macos"
15 15
IUSE="doc drafts +libbsd pgm +sodium static-libs test unwind"
16 16
RESTRICT="!test? ( test )"
17 17

  
18 18
RDEPEND="
19 19
	!elibc_Darwin? ( unwind? ( sys-libs/libunwind ) )
20 20
	libbsd? ( dev-libs/libbsd:= )
21
	sodium? ( dev-libs/libsodium:= )"
22
DEPEND="${RDEPEND}
21
	sodium? ( dev-libs/libsodium:= )
22
"
23
DEPEND="
24
	${RDEPEND}
23 25
	!elibc_Darwin? ( sys-apps/util-linux )
26
"
27
BDEPEND="
24 28
	doc? (
25 29
		app-text/asciidoc
26 30
		app-text/xmlto
27 31
	)
28
	pgm? ( virtual/pkgconfig )"
32
	pgm? ( virtual/pkgconfig )
33
"
34

  
35
PATCHES=(
36
	"${FILESDIR}"/${P}-gcc-13.patch
37
	"${FILESDIR}"/${P}-qemu-user.patch
38
)
29 39

  
30 40
src_prepare() {
31 41
	sed \
Thank you!