Diff libpcre-8.45-r1 with a libpcre-8.45-r2

/usr/portage/dev-libs/libpcre/libpcre-8.45-r2.ebuild 2023-10-09 14:52:29.524368351 +0300
1 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 libtool multilib-minimal preserve-libs usr-ldscript
7 7

  
......
10 10
MY_P="pcre-${PV/_rc/-RC}"
11 11
if [[ ${PV} != *_rc* ]] ; then
12 12
	# Only the final releases are available here.
13
	SRC_URI="mirror://sourceforge/pcre/${MY_P}.tar.bz2
13
	SRC_URI="
14
		mirror://sourceforge/pcre/${MY_P}.tar.bz2
14 15
		https://ftp.pcre.org/pub/pcre/${MY_P}.tar.bz2
15
		ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${MY_P}.tar.bz2"
16
		ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${MY_P}.tar.bz2
17
	"
16 18
else
17 19
	SRC_URI="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Testing/${MY_P}.tar.bz2"
18 20
fi
......
45 47
)
46 48

  
47 49
PATCHES=(
48
	"${FILESDIR}"/${PN}-8.41-fix-stack-size-detection.patch
50
	"${FILESDIR}"/${PN}-8.45-fix-stack-size-detection.patch
49 51
)
50 52

  
51 53
src_prepare() {
Thank you!