Diff merlin-4.7-r1 with a merlin-4.9

/usr/portage/dev-ml/merlin/merlin-4.9.ebuild 2023-10-09 14:52:29.792368358 +0300
8 8

  
9 9
DESCRIPTION="Context sensitive completion for OCaml in Vim and Emacs"
10 10
HOMEPAGE="https://github.com/ocaml/merlin/"
11
SRC_URI="
12
	https://github.com/ocaml/merlin/releases/download/v${PV}-412/${P}-412.tbz
13
	https://github.com/ocaml/merlin/releases/download/v${PV}-413/${P}-413.tbz
14
	https://github.com/ocaml/merlin/releases/download/v${PV}-414/${P}-414.tbz
15
"
11
SRC_URI="https://github.com/ocaml/merlin/releases/download/v${PV}-414/${P}-414.tbz"
16 12

  
17 13
LICENSE="MIT"
18 14
SLOT="0/${PV}"
......
27 23
	dev-ml/menhir:=
28 24
	>=dev-ml/dune-2.9:=
29 25
	|| (
30
		dev-lang/ocaml:0/4.12
31
		dev-lang/ocaml:0/4.13
32 26
		dev-lang/ocaml:0/4.14
33 27
		dev-lang/ocaml:0/4.14.1
34 28
	)
......
52 46
src_unpack() {
53 47
	default
54 48

  
55
	if has_version "dev-lang/ocaml:0/4.12" ; then
56
		mv ${P}-412 "${S}" || die
57
	elif has_version "dev-lang/ocaml:0/4.13" ; then
58
		mv ${P}-413 "${S}" || die
59
	elif has_version "dev-lang/ocaml:0/4.14" ; then
49
	if has_version "dev-lang/ocaml:0/4.14" ; then
60 50
		mv ${P}-414 "${S}" || die
61 51
	elif has_version "dev-lang/ocaml:0/4.14.1" ; then
62 52
		mv ${P}-414 "${S}" || die
......
81 71
}
82 72

  
83 73
src_compile() {
84
	dune build @install || die
74
	edune build @install
85 75

  
86 76
	if use emacs ; then
87 77
		# iedit isn't packaged yet
Thank you!