From b946f2614a0d5afb20da123a7f13d120cb623d2f Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 24 Sep 2022 05:31:13 +0100 Subject: gentoo auto-resync : 24:09:2022 - 05:31:13 --- dev-ml/Manifest.gz | Bin 35155 -> 35159 bytes dev-ml/yojson/Manifest | 2 +- dev-ml/yojson/yojson-2.0.2-r1.ebuild | 38 ++++++++++++++++++++++++++++++++++ dev-ml/yojson/yojson-2.0.2.ebuild | 39 ----------------------------------- 4 files changed, 39 insertions(+), 40 deletions(-) create mode 100644 dev-ml/yojson/yojson-2.0.2-r1.ebuild delete mode 100644 dev-ml/yojson/yojson-2.0.2.ebuild (limited to 'dev-ml') diff --git a/dev-ml/Manifest.gz b/dev-ml/Manifest.gz index 1cd288f12fd3..0f1a15698f9d 100644 Binary files a/dev-ml/Manifest.gz and b/dev-ml/Manifest.gz differ diff --git a/dev-ml/yojson/Manifest b/dev-ml/yojson/Manifest index 488e43ef051d..c2c79c182fdd 100644 --- a/dev-ml/yojson/Manifest +++ b/dev-ml/yojson/Manifest @@ -3,5 +3,5 @@ DIST yojson-2.0.0.tar.gz 44446 BLAKE2B 3b221a016ba418cc6a413921f0d7f2bc239b9a849 DIST yojson-2.0.2.tar.gz 46731 BLAKE2B adca246c055efe04b63e694b7735fc81a714ae3b3ab164152797cc1eff1e483976b80ff31d0ac90f9d4ac234304ec805abb118bb231d0479bc738ddeb56a236c SHA512 61e8084d66d62d05a7802ee82a414807a76959ce6e0b14fd01f1c9c71ea69976d8a2cf3d5718e4059da4161786136a08624cd8470693ef2893b862efa7d6ffd2 EBUILD yojson-1.7.0.ebuild 768 BLAKE2B 2cc607961f2f28807c7f21b4321302cc6815c9a7a1a30074544d7c86bca5a8fc42fdd27df3b0485a382c7ae546e8c4cc14f263c3f884f1c78abb57e280b50e6e SHA512 1fcc4b8b8e577162626d0665a0be6dfc7ec622d7e4d9cb7ee80f468728941da6313575b346aab2f0e37257c5cf9b4733ab438250bc053bf52ed856689cd60f5b EBUILD yojson-2.0.0.ebuild 823 BLAKE2B b97fc62e1695f573c13ba4a3e40f3dd4e6a18d2a2e2de95727e1e0190b5c58a08b2e629e378bc8243fa08aa7cbc1607b8e3450fb0fda2a1f9c1ae8144a400771 SHA512 d9187abc288ee0a96dfa286240c845686d5886b25c4b7e62444b4e32622c843342077c84fa4ceb275f4692504af7f6bf1fc8e45c2d962621f17291d0b7fb762d -EBUILD yojson-2.0.2.ebuild 823 BLAKE2B b97fc62e1695f573c13ba4a3e40f3dd4e6a18d2a2e2de95727e1e0190b5c58a08b2e629e378bc8243fa08aa7cbc1607b8e3450fb0fda2a1f9c1ae8144a400771 SHA512 d9187abc288ee0a96dfa286240c845686d5886b25c4b7e62444b4e32622c843342077c84fa4ceb275f4692504af7f6bf1fc8e45c2d962621f17291d0b7fb762d +EBUILD yojson-2.0.2-r1.ebuild 788 BLAKE2B 67a6c30419acc210e82835cc8ac6f7dd0f2bebdc1cea282cc3bd0868af697100b3880b5e61e39c46f0e92a11f14d03153951f24e5f41986c3c9b59e6947395c7 SHA512 96bc142515a0287100a935331258b23641efe28182a1f842a6ddd3fd3b6b28f76be99a320bc826e4b90562c3d5cc0d15bbfc13dc585aec60873b480fd3eb85df MISC metadata.xml 529 BLAKE2B 4cfc5392ca4b4402f01251818c776c63d607c2e1b8d216930db594ffe2e1146ac52f9492823e5ef97ba7b6f89b2ee8eaf367e785120ca5fcabdb36549ffb6ebd SHA512 7c415ac7330d8d3397911ddd213da9a6cd5dfe76fa2530ab22cbd70cd8f411fbfdb9d40aa8ca66dc202227799fe0b8ff81c81e57815f5e206c7f424b6218baf1 diff --git a/dev-ml/yojson/yojson-2.0.2-r1.ebuild b/dev-ml/yojson/yojson-2.0.2-r1.ebuild new file mode 100644 index 000000000000..c05eff79f4c5 --- /dev/null +++ b/dev-ml/yojson/yojson-2.0.2-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +DESCRIPTION="JSON parsing and pretty-printing library for OCaml" +HOMEPAGE="https://github.com/ocaml-community/yojson" +SRC_URI="https://github.com/ocaml-community/yojson/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="examples +ocamlopt test" +RESTRICT="!test? ( test )" + +RDEPEND=">=dev-lang/ocaml-4.07:=[ocamlopt?]" +DEPEND="${RDEPEND}" +BDEPEND=" + >=dev-ml/cppo-1.6.1 + test? ( dev-ml/alcotest ) +" + +src_prepare() { + default + # let's not build this + rm bench/dune yojson-bench.opam || die +} + +src_install() { + dune_src_install + + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi +} diff --git a/dev-ml/yojson/yojson-2.0.2.ebuild b/dev-ml/yojson/yojson-2.0.2.ebuild deleted file mode 100644 index 23350f1a6c06..000000000000 --- a/dev-ml/yojson/yojson-2.0.2.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit dune - -DESCRIPTION="JSON parsing and pretty-printing library for OCaml" -HOMEPAGE="https://github.com/ocaml-community/yojson" -SRC_URI="https://github.com/ocaml-community/yojson/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0/${PV}" -KEYWORDS="~amd64" -IUSE="examples +ocamlopt test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-lang/ocaml-4.02.3:=[ocamlopt?] - >=dev-ml/seq-0.2.2:=[ocamlopt?] -" -DEPEND="${RDEPEND}" -BDEPEND=">=dev-ml/cppo-1.6.1 - test? ( dev-ml/alcotest )" - -src_prepare() { - default - # let's not build this - rm bench/dune yojson-bench.opam || die -} - -src_install() { - dune_src_install - - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi -} -- cgit v1.2.3