Diff vgm-5.0 with a vgm-5.1

/usr/portage/sci-physics/vgm/vgm-5.1.ebuild 2023-10-09 14:52:35.260368496 +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
......
22 22
SLOT="0"
23 23
IUSE="doc examples +geant4 +root test"
24 24

  
25
# upper version bound for Geant, see https://github.com/vmc-project/vgm/issues/10
26 25
RDEPEND="
27 26
	sci-physics/clhep:=
28
	geant4? (
29
		>=sci-physics/geant-4.11[c++17]
30
		<sci-physics/geant-4.11.1[c++17]
31
	)
27
	geant4? ( >=sci-physics/geant-4.11:=[c++17] )
32 28
	root? ( sci-physics/root:=[c++17] )"
33 29
DEPEND="${RDEPEND}
34 30
	doc? ( app-doc/doxygen[dot] )
35 31
	test? (
36
		>=sci-physics/geant-4.11[gdml]
32
		>=sci-physics/geant-4.11:=[gdml]
37 33
		sci-physics/geant4_vmc[g4root]
38 34
	)"
39 35
RESTRICT="
......
45 41
DOCS=(
46 42
	doc/README
47 43
	doc/VGMhistory.txt
48
	doc/todo.txt
49 44
)
50 45

  
51 46
src_configure() {
Thank you!