commit: 332555e53a498cbcff0f679bd106406f4a304672 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org> AuthorDate: Sun Mar 16 08:46:20 2025 +0000 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org> CommitDate: Sun Mar 16 09:52:30 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=332555e5
dev-ml/ocaml-fileutils: add 0.6.6 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org> dev-ml/ocaml-fileutils/Manifest | 1 + .../ocaml-fileutils/ocaml-fileutils-0.6.6.ebuild | 25 ++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-ml/ocaml-fileutils/Manifest b/dev-ml/ocaml-fileutils/Manifest index f519da53cadb..1f390b53986b 100644 --- a/dev-ml/ocaml-fileutils/Manifest +++ b/dev-ml/ocaml-fileutils/Manifest @@ -1,2 +1,3 @@ DIST ocaml-fileutils-0.6.3.tar.bz2 43157 BLAKE2B a9adf17d028abd664dbdec3fefa301a6b502941a6da4ef9c3ef02b876f187d224e404f6a9ffb5460035ba475154c60109a5218cb8b9bb36153ca791f8d218e7d SHA512 2c5e75b894e9f5e3b003d61977a87f5c6964a89d844949eedc55f97c5875cc52052182420bbb4e73925d306479c66400df74e4adfccc5b2102347d13e99505cf DIST ocaml-fileutils-0.6.4.tar.bz2 43144 BLAKE2B e0024b93c17d11c9c3068da3141c7676bf70feb21fc886d79f793396194f6d5052be887734decd29fbd524d127e0b8afcd41790c9f378e000fcb92cd73e0a2ce SHA512 7053f8d92655d5631f1ec61ab7f9e3f6e3afedbe435038858dd9a026b9c769c6182afaa436491a398e7c4513b384a609e016718e030855996b2d9d54b461bd19 +DIST ocaml-fileutils-0.6.6.tar.bz2 43979 BLAKE2B 2b0ad5ccaddec79a741a7e3cb3eb362eee47c094d8e40b5e0a0b0ca3bfdc4eca9d0e385e720f9e170751ea430d8a5634cd6be3ae8516e3b76325d8faae909613 SHA512 ecc38b1577ab108bd24d1e9f0e83596254e542eefb37020dedcff7ca0109e562411cbb9806fbc6f88f4166569bf061a444971388c26950ec02dfc48b35daed90 diff --git a/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.6.ebuild b/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.6.ebuild new file mode 100644 index 000000000000..e2243812323a --- /dev/null +++ b/dev-ml/ocaml-fileutils/ocaml-fileutils-0.6.6.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DUNE_PKG_NAME=fileutils + +inherit dune + +DESCRIPTION="Pure OCaml functions to manipulate real file (POSIX like) and filename" +HOMEPAGE="https://github.com/gildor478/ocaml-fileutils" +SRC_URI="https://github.com/gildor478/${PN}/releases/download/v${PV}/${DUNE_PKG_NAME}-${PV}.tbz -> ${P}.tar.bz2" +S="${WORKDIR}"/${DUNE_PKG_NAME}-${PV} + +LICENSE="LGPL-2.1-with-linking-exception" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="+ocamlopt test" +RESTRICT="!test? ( test )" + +DEPEND="dev-ml/stdlib-shims:=" +RDEPEND="${DEPEND}" +BDEPEND="test? ( dev-ml/ounit2 )" + +DOCS=( CHANGES.md LICENSE.txt README.md )