Diff lutok-0.4-r10 with a lutok-0.4-r11

/usr/portage/dev-lua/lutok/lutok-0.4-r11.ebuild 2023-10-09 14:52:29.780368357 +0300
1
# Copyright 2017-2022 Gentoo Authors
1
# Copyright 2017-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
......
12 12

  
13 13
LICENSE="BSD"
14 14
SLOT="0"
15
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~ppc-macos ~x64-macos ~x64-solaris"
15
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-macos ~x64-macos ~x64-solaris"
16 16
IUSE="test"
17 17
REQUIRED_USE="${LUA_REQUIRED_USE}"
18 18
RESTRICT="!test? ( test )"
......
32 32
}
33 33

  
34 34
src_configure() {
35
	# Uses std::auto_ptr (deprecated in c++11, removed in c++17)
36
	# <https://github.com/jmmv/lutok/issues/7>
37
	export CXXFLAGS="-std=c++14 ${CXXFLAGS}"
38

  
35 39
	lua_setup
36 40
	local myconf=(
37 41
		--enable-shared
Thank you!