Diff filezilla-3.61.0 with a filezilla-3.64.0

/usr/portage/net-ftp/filezilla/filezilla-3.64.0.ebuild 2023-10-09 14:52:34.436368475 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
WX_GTK_VER="3.0-gtk3"
6
WX_GTK_VER="3.2-gtk3"
7 7

  
8 8
inherit autotools wxwidgets xdg
9 9

  
......
12 12

  
13 13
DESCRIPTION="FTP client with lots of useful features and an intuitive interface"
14 14
HOMEPAGE="https://filezilla-project.org/"
15
SRC_URI="https://download.filezilla-project.org/client/${MY_P}_src.tar.bz2"
15
SRC_URI="https://download.filezilla-project.org/client/${MY_P}_src.tar.xz"
16 16
S="${WORKDIR}/${PN}-${MY_PV}"
17 17

  
18 18
LICENSE="GPL-2"
19 19
SLOT="0"
20
KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv x86"
20
KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv ~x86"
21 21
IUSE="dbus nls test"
22 22
RESTRICT="!test? ( test )"
23 23

  
24 24
# pugixml 1.7 minimal dependency is for c++11 proper configuration
25 25
RDEPEND="
26
	>=app-eselect/eselect-wxwidgets-0.7-r1
27 26
	>=dev-libs/nettle-3.1:=
28 27
	>=dev-db/sqlite-3.7
29
	>=dev-libs/libfilezilla-0.39.1:=
28
	>=dev-libs/libfilezilla-0.42.2:=
30 29
	>=dev-libs/pugixml-1.7
31 30
	>=net-libs/gnutls-3.5.7
32
	>=x11-libs/wxGTK-3.0.4:${WX_GTK_VER}[X]
31
	x11-libs/wxGTK:${WX_GTK_VER}[X]
33 32
	x11-misc/xdg-utils
34 33
	dbus? ( sys-apps/dbus )"
35 34
DEPEND="${RDEPEND}
Thank you!