Diff ocurl-0.9.1 with a ocurl-0.9.2

/usr/portage/dev-ml/ocurl/ocurl-0.9.2.ebuild 2023-10-09 14:52:29.796368358 +0300
7 7

  
8 8
DESCRIPTION="OCaml interface to the libcurl library"
9 9
HOMEPAGE="https://forge.ocamlcore.org/projects/ocurl/ https://github.com/ygrek/ocurl"
10
LICENSE="MIT"
11 10
SRC_URI="https://github.com/ygrek/ocurl/archive/${PV}.tar.gz -> ${P}.tar.gz"
12 11

  
12
LICENSE="MIT"
13 13
SLOT="0/${PV}"
14
KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86"
14 15
IUSE="examples +ocamlopt"
15 16

  
16
BDEPEND="virtual/pkgconfig"
17 17
RDEPEND=">=net-misc/curl-7.9.8
18 18
	dev-ml/lwt:=
19 19
	dev-ml/camlp4:=
20 20
	>=dev-lang/ocaml-3.12:=[ocamlopt?]"
21 21
DEPEND="${RDEPEND}"
22
KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86"
22
BDEPEND="virtual/pkgconfig"
23 23

  
24 24
src_compile() {
25 25
	emake -j1 all
......
27 27

  
28 28
src_install() {
29 29
	findlib_src_install
30

  
30 31
	dodoc CHANGES.txt README.md
32

  
31 33
	if use examples; then
32 34
		dodoc -r examples
33 35
		docompress -x /usr/share/doc/${PF}/examples
Thank you!