Diff libfilezilla-0.39.1-r1 with a libfilezilla-0.42.2-r1

/usr/portage/dev-libs/libfilezilla/libfilezilla-0.42.2-r1.ebuild 2023-10-09 14:52:29.516368351 +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
......
6 6

  
7 7
DESCRIPTION="C++ library offering some basic functionality for platform-independent programs"
8 8
HOMEPAGE="https://lib.filezilla-project.org/"
9
SRC_URI="https://download.filezilla-project.org/${PN}/${P}.tar.bz2"
9
SRC_URI="https://download.filezilla-project.org/${PN}/${P}.tar.xz"
10 10

  
11 11
LICENSE="GPL-2+"
12
SLOT="0/31" # libfilezilla.so version
13
KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv x86"
12
SLOT="0/36" # libfilezilla.so version
13
KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv ~x86"
14 14
IUSE="test"
15 15

  
16 16
RESTRICT="!test? ( test )"
......
23 23
DEPEND="${RDEPEND}
24 24
	test? ( dev-util/cppunit )"
25 25

  
26
PATCHES=( "${FILESDIR}"/${PN}-0.37.1-pthread.patch )
26
PATCHES=(
27
	"${FILESDIR}"/${PN}-0.37.1-pthread.patch
28
	"${FILESDIR}"/${PN}-0.41.0-gcc13.patch
29
)
27 30

  
28 31
pkg_pretend() {
29 32
	if [[ ${MERGE_TYPE} != binary ]]; then
Thank you!