Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-fileutils/
Date: Wed, 09 Jun 2021 21:45:32
Message-Id: 1623274514.ec804ac6c48a59e463a80bf9fbe7cbf7b37f719c.sam@gentoo
1 commit: ec804ac6c48a59e463a80bf9fbe7cbf7b37f719c
2 Author: Rafael Kitover <rkitover <AT> gmail <DOT> com>
3 AuthorDate: Wed Jun 9 09:54:55 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 9 21:35:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec804ac6
7
8 dev-ml/ocaml-fileutils: add 0.6.3
9
10 No changes to ebuild.
11
12 Closes: https://bugs.gentoo.org/769233
13
14 Signed-off-by: Rafael Kitover <rkitover <AT> gmail.com>
15 Closes: https://github.com/gentoo/gentoo/pull/21172
16 Signed-off-by: Sam James <sam <AT> gentoo.org>
17
18 dev-ml/ocaml-fileutils/Manifest | 1 +
19 .../ocaml-fileutils/ocaml-fileutils-0.6.3.ebuild | 31 ++++++++++++++++++++++
20 2 files changed, 32 insertions(+)
21
22 diff --git a/dev-ml/ocaml-fileutils/Manifest b/dev-ml/ocaml-fileutils/Manifest
23 index 215d6c3c647..da1779a20b3 100644
24 --- a/dev-ml/ocaml-fileutils/Manifest
25 +++ b/dev-ml/ocaml-fileutils/Manifest
26 @@ -1 +1,2 @@
27 DIST ocaml-fileutils-0.6.2.tar.bz2 43060 BLAKE2B 20828875a25b1a9d2a41bf495cda00b0ac753efa20111b32a9d2ca439a56e9f07bf0953d16ee9148cf065e204fa1d8d624eaa89f6f4ae7e1613fdaa7cb44fc24 SHA512 104c7389832f22ec189ce6f1596144b28dcaeea7d23d5b19d369c44e54326e97fcb7b4f4c4a8d2965523e63b35b594a1351b7e630dde590871efe512fe38853c
28 +DIST ocaml-fileutils-0.6.3.tar.bz2 43157 BLAKE2B a9adf17d028abd664dbdec3fefa301a6b502941a6da4ef9c3ef02b876f187d224e404f6a9ffb5460035ba475154c60109a5218cb8b9bb36153ca791f8d218e7d SHA512 2c5e75b894e9f5e3b003d61977a87f5c6964a89d844949eedc55f97c5875cc52052182420bbb4e73925d306479c66400df74e4adfccc5b2102347d13e99505cf
29
30 diff --git a/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.3.ebuild b/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.3.ebuild
31 new file mode 100644
32 index 00000000000..72c2b68e413
33 --- /dev/null
34 +++ b/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.3.ebuild
35 @@ -0,0 +1,31 @@
36 +# Copyright 1999-2021 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +DUNE_PKG_NAME="fileutils"
42 +
43 +inherit dune
44 +
45 +DESCRIPTION="Pure OCaml functions to manipulate real file (POSIX like) and filename"
46 +HOMEPAGE="https://github.com/gildor478/ocaml-fileutils"
47 +SRC_URI="https://github.com/gildor478/${PN}/releases/download/v${PV}/${DUNE_PKG_NAME}-v${PV}.tbz -> ${P}.tar.bz2"
48 +
49 +LICENSE="LGPL-2.1-with-linking-exception"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +IUSE="+ocamlopt"
53 +
54 +DEPEND=">=dev-ml/ounit2-2.0.0
55 + >=dev-ml/stdlib-shims-0.2.0"
56 +
57 +DOCS=( "README.md" "CHANGES.md" "LICENSE.txt" )
58 +
59 +S="${WORKDIR}/${DUNE_PKG_NAME}-v${PV}"
60 +
61 +src_prepare() {
62 + default
63 +
64 + # Port to dev-ml/ounit2
65 + sed -i -e 's/oUnit/ounit2/' test/dune || die
66 +}