public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alfredo Tupone" <tupone@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ppxlib/
Date: Fri, 18 Oct 2024 17:54:17 +0000 (UTC)	[thread overview]
Message-ID: <1729274041.fc243a082e9988a6690f2e1a58fe07ade8ea3e48.tupone@gentoo> (raw)

commit:     fc243a082e9988a6690f2e1a58fe07ade8ea3e48
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 18 17:54:01 2024 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Fri Oct 18 17:54:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc243a08

dev-ml/ppxlib: add 0.33.0

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/ppxlib/Manifest             |  1 +
 dev-ml/ppxlib/ppxlib-0.33.0.ebuild | 40 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/dev-ml/ppxlib/Manifest b/dev-ml/ppxlib/Manifest
index 4d396cba52b4..9eaa21a58d42 100644
--- a/dev-ml/ppxlib/Manifest
+++ b/dev-ml/ppxlib/Manifest
@@ -7,3 +7,4 @@ DIST ppxlib-0.29.0.tar.gz 572842 BLAKE2B e772cfbbc5ff0390b1d256b7671e51aac0c86fe
 DIST ppxlib-0.29.1.tar.gz 543819 BLAKE2B b0d3920b2aaef887b0120ae66dfa3a0f83d4a4edb237390bddd5206084f77bbd8483d99bc422ce6411a9a1aca7de4fcc5f1f85f9cf46532b7e06c476f2b76b72 SHA512 9bfd52709a63399ff35697b442de6818e2a61b9a2ccf33638f2da6295e3e034e2ae6108a2b8567402e80d928636cdee1572cc14d228a47fbda50625219e411f9
 DIST ppxlib-0.30.0.tar.gz 573753 BLAKE2B f16ba3b01288a535ebf7842d8b9379061cc86cb1bad7841540855508d7d9c10c27e63456d68a16a2408a6eee5cffe82c3c0202ad7894b9fabad8194136762e30 SHA512 a7310c5c0fe76c72984bc6a27648bf12ac83222c029b91a7abf8be13f1950f84de4b24e28f2bb50a6a65c16c9a6bb8c4d3d0596c4b5f7f5bedba87f8ca55a810
 DIST ppxlib-0.32.1.tar.gz 610383 BLAKE2B 307b8591eb3d0c5fe44cb4b8361c1196eb84d65fd1613e7e1fc0e6ae51a7572003acb6fb76f273a484d36cd53b5a26d7daaeb8074253fba64024dbf56031a5a4 SHA512 542b49667b3536ac20ddefe0673b833ec728cf0b02ef79da2c98a750bf5ea1293f688134b227638acbbcffd0e5f344ab4ed5b8db6291f1aef096d106fffd0ce9
+DIST ppxlib-0.33.0.tar.gz 638136 BLAKE2B a4b8b82912d6ea83104be05bc8784b4666c3749e906b4c52406f90924afafd2358bfbf2c6d715c02b6c55a539264c8f9655c1c44b7dfd239f63e6012bfa497cb SHA512 8437ed1e7616deb371b50a4ca11cb3d50a294a722b64d7732808321d312aa212d9433bedc4a66ea3a4ebbfeed1ab6f739470b99a01991ac56279cea151b2ded8

diff --git a/dev-ml/ppxlib/ppxlib-0.33.0.ebuild b/dev-ml/ppxlib/ppxlib-0.33.0.ebuild
new file mode 100644
index 000000000000..96351ba3ae61
--- /dev/null
+++ b/dev-ml/ppxlib/ppxlib-0.33.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune
+
+# Note that new "major" versions may change which OCaml version they support
+# See:
+# https://github.com/ocaml-ppx/ppxlib/issues/243
+# https://github.com/ocaml-ppx/ppxlib/issues/232
+
+DESCRIPTION="Base library and tools for ppx rewriters"
+HOMEPAGE="https://github.com/ocaml-ppx/ppxlib"
+SRC_URI="https://github.com/ocaml-ppx/ppxlib/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64"
+IUSE="+ocamlopt test"
+RESTRICT="!test? ( test )"
+
+# It also works with ocaml >= 4 but tests are to be fixed
+RDEPEND="
+	>=dev-lang/ocaml-5:=
+	>=dev-ml/ocaml-compiler-libs-0.17:=[ocamlopt?]
+	dev-ml/ppx_derivers:=[ocamlopt?]
+	dev-ml/sexplib0:0/0.17[ocamlopt?]
+	dev-ml/stdlib-shims:=[ocamlopt?]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	>=dev-ml/dune-3.11
+	test? (
+		dev-ml/base:0/0.17
+		dev-ml/cinaps
+		>=dev-ml/findlib-1.9.6[ocamlopt?]
+		dev-ml/re
+	)
+"


             reply	other threads:[~2024-10-18 17:54 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-18 17:54 Alfredo Tupone [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-15 18:30 [gentoo-commits] repo/gentoo:master commit in: dev-ml/ppxlib/ Alfredo Tupone
2023-12-29 22:14 Alfredo Tupone
2023-10-08 17:42 Arthur Zamarin
2023-10-08 17:41 Arthur Zamarin
2023-10-08 15:29 Arthur Zamarin
2023-10-08 15:29 Arthur Zamarin
2023-10-08 15:29 Arthur Zamarin
2023-07-01 20:12 Alfredo Tupone
2023-04-24 11:32 Alfredo Tupone
2023-03-17  9:00 Arthur Zamarin
2023-03-17  9:00 Arthur Zamarin
2023-03-17  9:00 Arthur Zamarin
2023-03-17  9:00 Arthur Zamarin
2023-03-16 12:55 Alfredo Tupone
2023-02-15 20:53 Alfredo Tupone
2023-02-08 19:37 Alfredo Tupone
2023-01-27 22:25 Alfredo Tupone
2021-12-10 12:51 Maciej Barć
2021-11-02  9:14 Agostino Sarubbo
2021-11-02  9:13 Agostino Sarubbo
2021-10-29 12:33 Sam James
2021-10-29 12:33 Sam James
2021-10-19  5:53 Agostino Sarubbo
2021-10-18 15:22 Agostino Sarubbo
2021-10-15  3:04 Sam James
2021-10-15  3:04 Sam James
2021-10-02  5:33 Sam James
2021-10-02  5:33 Sam James
2021-10-02  5:23 Sam James
2021-07-10 18:45 Alfredo Tupone
2021-03-01 13:49 Alfredo Tupone
2021-02-12 22:19 Sam James
2021-02-09 16:55 Sam James
2021-02-08  8:02 Sam James
2021-01-24 22:40 Sam James
2021-01-24 22:40 Sam James
2021-01-16 12:56 Alfredo Tupone
2020-10-16 15:17 Mark Wright
2020-10-15 13:48 Mark Wright
2020-10-15 12:20 Mark Wright

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1729274041.fc243a082e9988a6690f2e1a58fe07ade8ea3e48.tupone@gentoo \
    --to=tupone@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox