Diff gigolo-0.5.2 with a gigolo-0.5.3

/usr/portage/x11-misc/gigolo/gigolo-0.5.3.ebuild 2023-10-09 14:52:35.936368513 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-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 xdg-utils
7 7

  
8
DESCRIPTION="a frontend to easily manage connections to remote filesystems using GIO/GVfs"
9
HOMEPAGE="https://www.uvena.de/gigolo/ https://goodies.xfce.org/projects/applications/gigolo"
8
DESCRIPTION="A frontend to easily manage connections to remote filesystems using GIO/GVfs"
9
HOMEPAGE="
10
	https://www.uvena.de/gigolo/
11
	https://docs.xfce.org/apps/gigolo/start
12
	https://gitlab.xfce.org/apps/gigolo/
13
"
10 14
SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
11 15

  
12 16
LICENSE="GPL-2+"
13 17
SLOT="0"
14
KEYWORDS="amd64 x86"
15
IUSE=""
18
KEYWORDS="~amd64 ~x86"
16 19

  
17
RDEPEND=">=dev-libs/glib-2.16
18
	>=x11-libs/gtk+-3.14:3"
19
DEPEND="${RDEPEND}
20
DEPEND="
21
	>=dev-libs/glib-2.38.0
22
	>=x11-libs/gtk+-3.14.0:3
23
"
24
RDEPEND="
25
	${DEPEND}
26
"
27
BDEPEND="
20 28
	dev-util/intltool
21
	virtual/pkgconfig"
29
	virtual/pkgconfig
30
"
22 31

  
23 32
src_prepare() {
24 33
	rm COPYING || die
Thank you!