Diff st-0.8.4-r1 with a st-0.8.5

/usr/portage/x11-terms/st/st-0.8.5.ebuild 2023-10-09 14:52:35.980368514 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
......
7 7

  
8 8
DESCRIPTION="Simple terminal implementation for X"
9 9
HOMEPAGE="https://st.suckless.org/"
10
SRC_URI="https://dl.suckless.org/st/${P}.tar.gz"
10

  
11
if [[ ${PV} == 9999 ]]; then
12
	inherit git-r3
13
	EGIT_REPO_URI="https://git.suckless.org/${PN}"
14
else
15
	SRC_URI="https://dl.suckless.org/${PN}/${P}.tar.gz"
16
	KEYWORDS="amd64 ~arm arm64 ~hppa ~m68k ppc64 ~riscv x86"
17
fi
11 18

  
12 19
LICENSE="MIT-with-advertising"
13 20
SLOT="0"
14
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~riscv ~x86"
15
IUSE="savedconfig"
16 21

  
17 22
RDEPEND="
18 23
	>=sys-libs/ncurses-6.0:0=
19 24
	media-libs/fontconfig
20 25
	x11-libs/libX11
21 26
	x11-libs/libXft
27
	~x11-terms/st-terminfo-${PV}
22 28
"
23 29
DEPEND="
24 30
	${RDEPEND}
......
26 32
"
27 33
BDEPEND="virtual/pkgconfig"
28 34

  
29
PATCHES=(
30
	"${FILESDIR}"/${P}-locale-musl-segfault.patch
31
)
32

  
33 35
src_prepare() {
34 36
	default
35 37

  
Thank you!