Diff libmspub-0.1.4 with a libmspub-9999

/usr/portage/app-text/libmspub/libmspub-9999.ebuild 2024-07-02 13:51:43.885851455 +0300
5 5

  
6 6
inherit autotools flag-o-matic
7 7

  
8
if [[ ${PV} = *9999 ]]; then
8
if [[ ${PV} = *9999* ]]; then
9 9
	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libmspub.git"
10 10
	inherit git-r3
11 11
else
12 12
	SRC_URI="https://dev-www.libreoffice.org/src/libmspub/${P}.tar.xz"
13
	KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
13
	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~sparc ~x86"
14 14
fi
15 15
DESCRIPTION="Library parsing Microsoft Publisher documents"
16 16
HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libmspub"
......
33 33
	doc? ( app-text/doxygen )
34 34
"
35 35

  
36
PATCHES=(
37
	# upstream backport
38
	"${FILESDIR}/${P}-gcc10.patch"
39
	# manually backported
40
	"${FILESDIR}/${P}-gcc15.patch"
41
)
42

  
43 36
src_prepare() {
44 37
	default
45 38
	[[ -d m4 ]] || mkdir "m4"
Thank you!