Diff ocamlnet-4.1.8-r1 with a ocamlnet-4.1.9-r1

/usr/portage/dev-ml/ocamlnet/ocamlnet-4.1.9-r1.ebuild 2023-10-09 14:52:29.796368358 +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=7
......
35 35
"
36 36
DEPEND="${RDEPEND}"
37 37

  
38
PATCHES=(
39
	"${FILESDIR}"/${P}-unboundLexer.patch
40
	"${FILESDIR}"/${P}-shuffle.patch
41
)
42

  
38 43
ocamlnet_use_with() {
39 44
	if use $1; then
40 45
		echo "-with-$2"
......
51 56
	fi
52 57
}
53 58

  
59
src_prepare() {
60
	sed -i \
61
		-e "s:^version.*$:version=${PV}:" \
62
		configure \
63
		|| die
64
	default
65
}
66

  
54 67
src_configure() {
55 68
	./configure \
56 69
		-bindir /usr/bin \
Thank you!