Diff imath-3.1.6 with a imath-3.1.7

/usr/portage/dev-libs/imath/imath-3.1.7.ebuild 2023-10-09 14:52:29.504368350 +0300
12 12
DESCRIPTION="Imath basic math package"
13 13
HOMEPAGE="https://imath.readthedocs.io"
14 14
SRC_URI="https://github.com/AcademySoftwareFoundation/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
15
# re-keywording needed for (according to ilmbase keywords): ~x64-macos ~x86-solaris
15
# re-keywording needed for (according to ilmbase keywords): ~x64-macos
16 16
KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
17 17
S="${WORKDIR}/${MY_PN}-${PV}"
18 18

  
19 19
LICENSE="BSD"
20
SLOT="3/29"
21
IUSE="doc large-stack python test"
20
SLOT="3/30"
21
IUSE="large-stack python test"
22 22
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
23 23
RESTRICT="!test? ( test )"
24 24

  
......
39 39
DEPEND="${RDEPEND}"
40 40
BDEPEND="
41 41
	virtual/pkgconfig
42
	doc? ( $(python_gen_cond_dep 'dev-python/breathe[${PYTHON_USEDEP}]') )
43 42
	python? ( ${PYTHON_DEPS} )
44 43
"
45 44

  
......
51 50

  
52 51
src_configure() {
53 52
	local mycmakeargs=(
54
		-DDOCS=$(usex doc)
53
		# requires press theme, not available in ::gentoo
54
		-DBUILD_DOCS=OFF
55 55
		-DIMATH_ENABLE_LARGE_STACK=$(usex large-stack)
56
		# the following options are at their default value
56 57
		-DIMATH_HALF_USE_LOOKUP_TABLE=ON
57 58
		-DIMATH_INSTALL_PKG_CONFIG=ON
58 59
		-DIMATH_USE_CLANG_TIDY=OFF
60
		-DIMATH_USE_DEFAULT_VISIBILITY=OFF
59 61
		-DIMATH_USE_NOEXCEPT=ON
60 62
	)
61 63
	if use python; then
Thank you!