Diff numactl-2.0.14-r1 with a numactl-2.0.16

/usr/portage/sys-process/numactl/numactl-2.0.16.ebuild 2023-10-09 14:52:35.584368504 +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
if [[ ${PV} != 2.0.14 ]] ; then
7
	eerror "Please do not bump to 2.0.15! It's broken:"
8
	eerror "https://github.com/numactl/numactl/issues/135"
9
	eerror "It's also missing a dist tarball:"
10
	eerror "https://github.com/numactl/numactl/issues/140"
11
	die "Please check ebuild!"
12
fi
13

  
14 6
inherit autotools multilib-minimal
15 7

  
16 8
DESCRIPTION="Utilities and libraries for NUMA systems"
......
28 20
IUSE="static-libs"
29 21

  
30 22
PATCHES=(
31
	"${FILESDIR}"/${PN}-2.0.14-latomic.patch
32 23
	"${FILESDIR}"/${PN}-2.0.14-numademo-cflags.patch # bug #540856
33 24
)
34 25

  
Thank you!