Diff kyua-0.13-r2 with a kyua-0.13-r3

/usr/portage/dev-util/kyua/kyua-0.13-r3.ebuild 2023-10-09 14:52:30.976368388 +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
inherit flag-o-matic
7

  
6 8
DESCRIPTION="Testing framework for infrastructure software"
7 9
HOMEPAGE="https://github.com/jmmv/kyua"
8 10
SRC_URI="https://github.com/jmmv/kyua/releases/download/${P}/${P}.tar.gz"
9 11

  
10 12
LICENSE="BSD"
11 13
SLOT="0"
12
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
14
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
13 15
IUSE="test"
14 16

  
15 17
# Tests fail
......
26 28
	test? ( dev-libs/atf )
27 29
"
28 30

  
31
src_configure() {
32
	# Uses std::auto_ptr (deprecated in c++11, removed in c++17)
33
	append-cxxflags "-std=c++14"
34

  
35
	default
36
}
37

  
29 38
src_install() {
30 39
	default
31 40
	rm -r "${ED}"/usr/tests || die
Thank you!