Diff wl-clipboard-2.2.1 with a wl-clipboard-2.2.1-r1

/usr/portage/gui-apps/wl-clipboard/wl-clipboard-2.2.1-r1.ebuild 2023-10-09 14:52:31.172368393 +0300
1 1
# Copyright 2019-2023 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 meson
7 7

  
......
12 12
	inherit git-r3
13 13
	EGIT_REPO_URI="https://github.com/bugaevc/${PN}.git"
14 14
else
15
	SRC_URI="https://github.com/bugaevc/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
15
	SRC_URI="https://github.com/bugaevc/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
16 16
	KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
17 17
fi
18 18

  
19 19
LICENSE="GPL-3"
20 20
SLOT="0"
21
IUSE=""
22 21

  
23 22
DEPEND="dev-libs/wayland"
24 23
RDEPEND="${DEPEND}"
25 24
BDEPEND="
25
	dev-libs/wayland-protocols
26 26
	dev-util/wayland-scanner
27
	dev-libs/wayland-protocols"
27
"
28 28

  
29 29
src_configure() {
30
	local -a emesonargs=(
30
	local emesonargs=(
31 31
		-Dfishcompletiondir="${EPREFIX}/usr/share/fish/vendor_completions.d"
32 32
	)
33 33
	meson_src_configure
Thank you!