Diff libbytesize-2.8 with a libbytesize-2.9

/usr/portage/dev-libs/libbytesize/libbytesize-2.9.ebuild 2023-10-09 14:52:29.508368351 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
# py3.12 blocked by the massive dependency tree of dev-python/pocketlint
6 7
PYTHON_COMPAT=( python3_{10..11} )
7 8

  
8 9
inherit autotools python-r1
9 10

  
10
DESCRIPTION="Tiny library providing a C \"class\" for working with arbitrary big sizes in bytes"
11
DESCRIPTION="Tiny library providing a C \"class\" for working with arbitrary big byte sizes"
11 12
HOMEPAGE="https://github.com/storaged-project/libbytesize"
12 13
SRC_URI="https://github.com/storaged-project/libbytesize/releases/download/${PV}/${P}.tar.gz"
14

  
13 15
LICENSE="LGPL-2+"
14 16
SLOT="0"
15 17
KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86"
16 18
IUSE="doc python test tools"
19
RESTRICT="!test? ( test )"
17 20

  
18 21
REQUIRED_USE="
19 22
	python? ( ${PYTHON_REQUIRED_USE} )
......
21 24
"
22 25

  
23 26
RDEPEND="
24
	dev-libs/gmp:0=
27
	dev-libs/gmp:=
25 28
	dev-libs/mpfr:=
26 29
	dev-libs/libpcre2:=
27 30
	python? ( ${PYTHON_DEPS} )
28 31
"
29

  
30 32
DEPEND="${RDEPEND}"
31

  
32 33
BDEPEND="
33 34
	sys-devel/gettext
34 35
	doc? (
......
43 44

  
44 45
DOCS=( README.md )
45 46

  
46
RESTRICT="test"
47

  
48 47
PATCHES=(
49 48
	"${FILESDIR}/${PN}-2.4-no_Werror.patch"
50 49
)
Thank you!