From d7ed2b01311f15ba54fe8ea872aab7d59ab2b193 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 29 Jan 2021 18:03:51 +0000 Subject: gentoo resync : 29.01.2021 --- dev-ml/ocaml-sqlite3/Manifest | 4 ++- dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.3.0-r1.ebuild | 34 ++++++++++++++++++++ dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.3.0.ebuild | 36 ---------------------- dev-ml/ocaml-sqlite3/ocaml-sqlite3-5.0.2.ebuild | 30 ++++++++++++++++++ 4 files changed, 67 insertions(+), 37 deletions(-) create mode 100644 dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.3.0-r1.ebuild delete mode 100644 dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.3.0.ebuild create mode 100644 dev-ml/ocaml-sqlite3/ocaml-sqlite3-5.0.2.ebuild (limited to 'dev-ml/ocaml-sqlite3') diff --git a/dev-ml/ocaml-sqlite3/Manifest b/dev-ml/ocaml-sqlite3/Manifest index 7f2839644286..26e959bd809c 100644 --- a/dev-ml/ocaml-sqlite3/Manifest +++ b/dev-ml/ocaml-sqlite3/Manifest @@ -1,3 +1,5 @@ +DIST ocaml-sqlite3-5.0.2.tar.gz 33077 BLAKE2B 3f34a930477880326179a3014575db49bd9d614d90bdea98fc14af83287b889c6e02b8375dd5817c5139fe51706d83b332e148ccc084e46abf6b06ec9015a7c8 SHA512 330ac34490cbe004e9b950d7bbded2728b6a938179f3a19fb0043075c6d9a4e14fd82acea6c5787c84f2634d80017644bf988fd00b7dbd1374142771485cffd0 DIST sqlite3-4.3.0.tbz 22498 BLAKE2B c57d8edbc0897229cb415d48efb02ae41dff1d87fabc667a40b984807c5c5885201dca3d7f523872435b7e18b450c15707212eeeafc0a75f1ad28d7e7671b4c7 SHA512 f09d425830ac24ea835a403bc51d257c265b6e77b1dce01367c715545cbd98f3ad2694e6dfdbc7491d590aa809c0313329e81c9614228170f90197f2a94200c9 -EBUILD ocaml-sqlite3-4.3.0.ebuild 706 BLAKE2B dcf608ec1e70b6ec84cdbc6c9666abf1b43c65bfa1c284ad1847431c5f9209d956654850b899772da3590e793e4e422a35011027bdc624573ce89d95e0ab4cb2 SHA512 04bd680d44d56e05eed62dd38a1a12c6400fd5cb88b200e5cb2308a24cc784fc892d89cf6402db3ce770f2e77c9ece22bc681afaef1a4c825a982e01d1ab3ca0 +EBUILD ocaml-sqlite3-4.3.0-r1.ebuild 705 BLAKE2B 2b3585e90674970e76263bdeb47d60bcbb682ca448eb56424da462c8cb87c4a484d7dc52165b5d9cf6b578354468ecfc9722e722144e34222512b618b6ff00d6 SHA512 d661ce041c0de98c65dda32942cf90a45e3acf3867af8856f45f6ff7b004bee3ce4a36afbfdd35ce0d36289fe439cf20c8a7433b85a0b9dfe642d30756cd8432 +EBUILD ocaml-sqlite3-5.0.2.ebuild 707 BLAKE2B 620442370bf3fbd264860ef9d8488897fa62275e80662c07971d15d8d495ce9bd256c852e2a2d6d0dd73560e84166e4f6aa2a3f31ffbc5bc03fee0242b397f10 SHA512 7f4490eb4eaea73e0c68e6beb1f1e0279e20056a84532b1d7584e07c66a9db056dfba2cc45ecd3aec741b6dfa8eca280f81de52a25d528276e20231996feedbe MISC metadata.xml 322 BLAKE2B 943cead5c3010411a8507ac09a05d88a413db06c3fac3967ecb6bde0bdddaa4bb9a7ea081e31e6382c805e3c437f64d26b254b0a630a963021c0507ec51e8526 SHA512 c3844393c1910c1982d20a00e04727028be2cf63a33daa48fba4ea13068cfd6b1d3d175446185e82ba3753880c0559d4b4ed0542243e55908569f603e2524c10 diff --git a/dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.3.0-r1.ebuild b/dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.3.0-r1.ebuild new file mode 100644 index 000000000000..646881f93fd5 --- /dev/null +++ b/dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.3.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit opam + +MY_PN="sqlite3" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A package for ocaml that provides access to SQLite databases" +HOMEPAGE="http://mmottl.github.io/sqlite3-ocaml/" +SRC_URI="https://github.com/mmottl/sqlite3-ocaml/releases/download/${PV}/${MY_P}.tbz" +S="${WORKDIR}/${MY_P}" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND=">=dev-db/sqlite-3.3.3" +DEPEND="${RDEPEND} + dev-ml/jbuilder + dev-ml/base:= + dev-ml/stdio:= + dev-ml/configurator:= + >=dev-ml/findlib-1.3.2" + +src_compile() { + jbuilder build @install || die +} + +src_install() { + opam_src_install "${MY_PN}" +} diff --git a/dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.3.0.ebuild b/dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.3.0.ebuild deleted file mode 100644 index f93d515733bf..000000000000 --- a/dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.3.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit opam - -MY_PN="sqlite3" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="A package for ocaml that provides access to SQLite databases" -HOMEPAGE="http://mmottl.github.io/sqlite3-ocaml/" -SRC_URI="https://github.com/mmottl/sqlite3-ocaml/releases/download/${PV}/${MY_P}.tbz" - -LICENSE="MIT" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND=">=dev-db/sqlite-3.3.3" -DEPEND="${RDEPEND} - dev-ml/jbuilder - dev-ml/base - dev-ml/stdio - dev-ml/configurator - >=dev-ml/findlib-1.3.2" - -S=${WORKDIR}/${MY_P} - -src_compile() { - jbuilder build @install || die -} - -src_install() { - opam_src_install "${MY_PN}" -} diff --git a/dev-ml/ocaml-sqlite3/ocaml-sqlite3-5.0.2.ebuild b/dev-ml/ocaml-sqlite3/ocaml-sqlite3-5.0.2.ebuild new file mode 100644 index 000000000000..c27dbb6c239d --- /dev/null +++ b/dev-ml/ocaml-sqlite3/ocaml-sqlite3-5.0.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DUNE_PKG_NAME="sqlite3" +inherit dune + +DESCRIPTION="A package for ocaml that provides access to SQLite databases" +HOMEPAGE="http://mmottl.github.io/sqlite3-ocaml/" +SRC_URI="https://github.com/mmottl/sqlite3-ocaml/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/sqlite3-ocaml-${PV}" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="+ocamlopt test" +RESTRICT="!test? ( test )" + +RDEPEND=">=dev-db/sqlite-3.3.3" +BDEPEND=" + >=dev-lang/ocaml-4.05 + dev-ml/dune-configurator +" +DEPEND="${RDEPEND} + dev-ml/base:= + dev-ml/stdio:= + dev-ml/configurator:= + test? ( dev-ml/ppx_inline_test ) +" -- cgit v1.2.3