Diff isl-0.24-r2 with a isl-0.26

/usr/portage/dev-libs/isl/isl-0.26.ebuild 2023-10-09 14:52:29.504368350 +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 multilib multilib-minimal preserve-libs toolchain-funcs
7 7

  
8 8
DESCRIPTION="A library for manipulating integer points bounded by linear constraints"
9
HOMEPAGE="http://isl.gforge.inria.fr/ https://libisl.sourceforge.io/"
10
SRC_URI="http://isl.gforge.inria.fr/${P}.tar.xz https://libisl.sourceforge.io/${P}.tar.xz"
9
HOMEPAGE="https://libisl.sourceforge.io/"
10
SRC_URI="https://libisl.sourceforge.io/${P}.tar.xz"
11 11

  
12 12
LICENSE="LGPL-2.1"
13 13
SLOT="0/23"
......
16 16

  
17 17
RDEPEND=">=dev-libs/gmp-5.1.3-r1:=[${MULTILIB_USEDEP}]"
18 18
DEPEND="${RDEPEND}"
19
BDEPEND="
20
	app-arch/xz-utils
19
BDEPEND="app-arch/xz-utils
21 20
	virtual/pkgconfig"
22 21

  
23 22
DOCS=( ChangeLog AUTHORS doc/manual.pdf )
24 23

  
25 24
PATCHES=(
26 25
	"${FILESDIR}"/${PN}-0.24-gdb-autoload-dir.patch
27
	"${FILESDIR}"/${PN}-0.24-nobash.patch
28 26
	"${FILESDIR}"/${PN}-0.24-respect-flags.patch
29 27
)
30 28

  
Thank you!