Diff alembic-1.8.4 with a alembic-1.8.5

/usr/portage/media-gfx/alembic/alembic-1.8.5.ebuild 2023-10-09 14:52:31.616368404 +0300
15 15
SLOT="0"
16 16
KEYWORDS="amd64 ~arm ~arm64 ~x86"
17 17
IUSE="examples hdf5 python test"
18
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
18
REQUIRED_USE="
19
	${PYTHON_REQUIRED_USE}
20
	examples? ( python )
21
"
19 22
RESTRICT="!test? ( test )"
20 23

  
21 24
RDEPEND="
......
30 33
"
31 34
DEPEND="${RDEPEND}"
32 35

  
33
PATCHES=( "${FILESDIR}"/${PN}-1.8.0-0001-set-correct-libdir.patch )
36
PATCHES=( "${FILESDIR}"/${PN}-1.8.5-set-correct-libdir.patch )
34 37

  
35 38
DOCS=( ACKNOWLEDGEMENTS.txt FEEDBACK.txt NEWS.txt README.txt )
36 39

  
40
src_prepare() {
41
	cmake_src_prepare
42
	# Tests are broken with python 3.11.  See also: https://github.com/alembic/alembic/issues/411
43
	cmake_run_in "${S}/python/PyAlembic" cmake_comment_add_subdirectory Tests
44
}
45

  
37 46
src_configure() {
38 47
	local mycmakeargs=(
39 48
		-DALEMBIC_BUILD_LIBS=ON
Thank you!