Diff yaml-cpp-0.7.0-r2 with a yaml-cpp-0.8.0

/usr/portage/dev-cpp/yaml-cpp/yaml-cpp-0.8.0.ebuild 2023-10-09 14:52:29.312368346 +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
......
7 7

  
8 8
DESCRIPTION="YAML parser and emitter in C++"
9 9
HOMEPAGE="https://github.com/jbeder/yaml-cpp"
10
SRC_URI="https://github.com/jbeder/yaml-cpp/archive/${P}.tar.gz"
11
S="${WORKDIR}/yaml-cpp-${P}"
10
SRC_URI="https://github.com/jbeder/yaml-cpp/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
12 11

  
13 12
LICENSE="MIT"
14
SLOT="0/0.7"
15
KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
13
SLOT="0/0.8"
14
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
16 15
IUSE="test"
17 16
RESTRICT="!test? ( test )"
18 17

  
19
DEPEND="test? ( dev-cpp/gtest[${MULTILIB_USEDEP}] )"
18
DEPEND="
19
	test? ( dev-cpp/gtest[${MULTILIB_USEDEP}] )
20
"
20 21

  
21 22
PATCHES=(
22
	"${FILESDIR}/${P}-gtest.patch"
23
	"${FILESDIR}/${P}-cmake-paths.patch"
24
	"${FILESDIR}/${P}-install-paths.patch"
23
	"${FILESDIR}/yaml-cpp-0.8.0-gtest.patch"
25 24
)
26 25

  
27 26
src_configure() {
Thank you!