Diff paraview-5.13.2-r2 with a paraview-6.1.1

/usr/portage/sci-visualization/paraview/paraview-6.1.1.ebuild 2026-09-03 20:03:05.313217551 +0300
1
# Copyright 1999-2025 Gentoo Authors
1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_{11..12} )
6
PYTHON_COMPAT=( python3_{11..14} )
7 7
DOCS_BUILDER="doxygen"
8 8
inherit cmake flag-o-matic desktop docs python-single-r1 qmake-utils toolchain-funcs xdg
9 9

  
......
82 82
	)
83 83
	sqlite? ( dev-db/sqlite:3 )
84 84
	tk? ( dev-lang/tk:0= )
85
	webengine? ( dev-qt/qtwebengine:6[widgets] )"
85
	webengine? ( dev-qt/qtwebengine:6[widgets] )
86
"
86 87
DEPEND="${RDEPEND}
87 88
	${PYTHON_DEPS}
88 89
	boost? (
......
91 92
		')
92 93
	)
93 94
"
94

  
95 95
BDEPEND="
96 96
	openmp? ( virtual/fortran )
97 97
"
98 98

  
99 99
PATCHES=(
100
	"${FILESDIR}"/${PN}-5.5.0-allow_custom_build_type.patch
101
	"${FILESDIR}"/${PN}-5.13.0-cmake-3.31-compat.patch
102
	"${FILESDIR}"/${PN}-5.13.0-fix_compilation.patch
103
	"${FILESDIR}"/${PN}-5.13.0-fix_compilation-2.patch
100
	"${FILESDIR}"/${P}-avoid_file_collisions.patch
104 101
)
105 102

  
106 103
# false positive when checking for available HDF5 interface, bug #904731
......
148 145

  
149 146
	local mycmakeargs=(
150 147
		-DCMAKE_INSTALL_LIBDIR="${PVLIBDIR}"
148
		# paraview-6.0.0 onwards expects a relative path for documentation
149
		-DCMAKE_INSTALL_DOCDIR="share/doc/${PF}"
150

  
151 151
		-UBUILD_SHARED_LIBS
152 152
		-DPARAVIEW_BUILD_SHARED_LIBS=ON
153 153
		-DCMAKE_VERBOSE_MAKEFILE=ON
Thank you!