Diff julia-bin-1.7.3 with a julia-bin-1.8.3

/usr/portage/dev-lang/julia-bin/julia-bin-1.8.3.ebuild 2023-10-09 14:52:29.464368349 +0300
1 1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
MY_PN=${PN/-bin/}
7 7
MY_P=${MY_PN}-${PV/_/-}
......
23 23
LICENSE="MIT"
24 24
SLOT="${MY_PV}"
25 25
KEYWORDS="-* ~amd64 ~arm64 ~x86"
26

  
26 27
RESTRICT="strip"
27 28

  
28 29
RDEPEND="app-arch/p7zip"
......
31 32
QA_PREBUILT="*"
32 33
QA_SONAME="*"
33 34

  
35
# the following libs require libblastrampoline.so, which is however generated
36
# at runtime...
37
QA_DT_NEEDED="*"
38

  
34 39
src_install() {
35 40
	insinto "/usr/$(get_libdir)/${MY_P}/"
36 41
	doins -r ./etc
......
46 51
	newenvd - 99${MY_PN}${revord} <<-EOF
47 52
		PATH="${EPREFIX}/usr/$(get_libdir)/${MY_P}/bin"
48 53
	EOF
54

  
55
	elog "QA warnings about unresolved SONAME dependencies can be safely ignored."
49 56
}
Thank you!