Diff xournalpp-1.1.1-r3 with a xournalpp-1.1.3-r2

/usr/portage/app-text/xournalpp/xournalpp-1.1.3-r2.ebuild 2023-10-09 14:52:28.904368335 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
# Upstream only support 5.3 (see CMakeLists.txt), also bug #854615
7
LUA_COMPAT=( lua5-3 )
6
LUA_COMPAT=( lua5-3 lua5-4 )
8 7
inherit cmake lua-single xdg
9 8

  
10 9
if [[ ${PV} == *9999 ]]; then
......
12 11
	EGIT_REPO_URI="https://github.com/xournalpp/xournalpp.git"
13 12
else
14 13
	SRC_URI="https://github.com/xournalpp/xournalpp/archive/refs/tags/v${PV}.tar.gz -> ${P}.tgz"
15
	KEYWORDS="amd64 ~ppc64"
14
	KEYWORDS="~amd64 ~ppc64"
16 15
fi
17 16

  
18 17
DESCRIPTION="Handwriting notetaking software with PDF annotation support"
......
45 44
PATCHES=(
46 45
	"${FILESDIR}/${PN}-1.1.1-nostrip.patch"
47 46
	"${FILESDIR}/${PN}-1.1.1-nocompress.patch"
47
	"${FILESDIR}/${PN}-1.1.3-lua-5-4.patch"
48
	"${FILESDIR}/${PN}-1.1.3-gcc13.patch"
48 49
)
50

  
51
src_configure() {
52
	local mycmakeargs=(
53
		-DLUA_VERSION="$(lua_get_version)"
54
	)
55

  
56
	cmake_src_configure
57
}
Thank you!