Diff libltdl-2.4.7-r1 with a libltdl-2.5.4

/usr/portage/dev-libs/libltdl/libltdl-2.5.4.ebuild 2025-02-03 17:39:32.846666984 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 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
# Please bump with dev-build/libtool.
7 7

  
......
11 11

  
12 12
DESCRIPTION="A shared library tool for developers"
13 13
HOMEPAGE="https://www.gnu.org/software/libtool/"
14
SRC_URI="mirror://gnu/libtool/${MY_P}.tar.xz"
14
if false && ! [[ $(( $(ver_cut 2) % 2 )) -eq 0 ]] ; then
15
	SRC_URI="https://alpha.gnu.org/gnu/libtool/${MY_P}.tar.xz"
16
else
17
	SRC_URI="mirror://gnu/libtool/${MY_P}.tar.xz"
18
	KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
19
fi
20

  
15 21
S="${WORKDIR}"/${MY_P}/libltdl
16 22

  
17 23
LICENSE="GPL-2"
18 24
SLOT="0"
19
KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
20 25
IUSE="static-libs"
21 26
# libltdl doesn't have a testsuite.  Don't bother trying.
22 27
RESTRICT="test"
......
24 29
BDEPEND="app-arch/xz-utils"
25 30

  
26 31
multilib_src_configure() {
32
	# bug #907427
33
	filter-lto
34

  
27 35
	append-lfs-flags
28 36
	ECONF_SOURCE="${S}" \
29 37
	econf \
Thank you!