Diff fzy-1.0-r1 with a fzy-1.1

/usr/portage/app-text/fzy/fzy-1.1.ebuild 2025-12-01 18:18:04.408590497 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2025 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 optfeature savedconfig toolchain-funcs
7 7

  
......
9 9
	inherit git-r3
10 10
	EGIT_REPO_URI="https://github.com/jhawthorn/fzy.git"
11 11
else
12
	SRC_URI="https://github.com/jhawthorn/${PN}/releases/download/${PV}/${P}.tar.gz"
13
	KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86"
12
	SRC_URI="https://github.com/jhawthorn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
13
	KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
14 14
fi
15 15

  
16 16
DESCRIPTION="Fuzzy text selector (interactive grep) for console"
......
18 18

  
19 19
LICENSE="MIT"
20 20
SLOT="0"
21
IUSE="test"
22
RESTRICT="!test? ( test )"
23 21

  
24
PATCHES=( "${FILESDIR}"/1.0-cflags.patch )
22
PATCHES=(
23
	"${FILESDIR}"/${P}-cflags.patch
24
)
25 25

  
26 26
src_prepare() {
27 27
	default
Thank you!