Diff postgis-3.2.5 with a postgis-3.3.2-r1

/usr/portage/dev-db/postgis/postgis-3.3.2-r1.ebuild 2023-10-09 14:52:29.332368346 +0300
3 3

  
4 4
EAPI=7
5 5

  
6
POSTGRES_COMPAT=( 9.6 {10..14} )
6
POSTGRES_COMPAT=( {11..15} )
7 7
POSTGRES_USEDEP="server"
8 8
inherit autotools postgres-multi toolchain-funcs
9 9

  
......
15 15
else
16 16
	PGIS="$(ver_cut 1-2)"
17 17
	SRC_URI="https://download.osgeo.org/postgis/source/${MY_P}.tar.gz"
18
	KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
18
	KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
19 19
fi
20 20

  
21 21
DESCRIPTION="Geographic Objects for PostgreSQL"
......
53 53
"
54 54

  
55 55
PATCHES=(
56
	"${FILESDIR}/${PN}-2.2.0-arflags.patch"
57
	"${FILESDIR}/${PN}-3.0.3-avoid-calling-ar-directly.patch"
58 56
	"${FILESDIR}/${PN}-3.0.3-try-other-cpp-names.patch"
57
	# source: https://github.com/google/flatbuffers/pull/7897
58
	"${FILESDIR}/${P}-flatbuffers-abseil-2023.patch" # bug 905378
59 59
)
60 60

  
61 61
src_prepare() {
Thank you!