Gentoo Archives: gentoo-commits

From: Alfredo Tupone <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-file-format/
Date: Fri, 03 Mar 2023 13:38:28
Message-Id: 1677850680.58596de4cc2b966cdd4e43ca425493d81a3bf4a5.tupone@gentoo
1 commit: 58596de4cc2b966cdd4e43ca425493d81a3bf4a5
2 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 3 07:48:57 2023 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 3 13:38:00 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58596de4
7
8 dev-ml/opam-file-format: add 2.1.5
9
10 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
11
12 dev-ml/opam-file-format/Manifest | 1 +
13 .../opam-file-format/opam-file-format-2.1.5.ebuild | 22 ++++++++++++++++++++++
14 2 files changed, 23 insertions(+)
15
16 diff --git a/dev-ml/opam-file-format/Manifest b/dev-ml/opam-file-format/Manifest
17 index b3240f06814e..2e96e62ddd18 100644
18 --- a/dev-ml/opam-file-format/Manifest
19 +++ b/dev-ml/opam-file-format/Manifest
20 @@ -1 +1,2 @@
21 DIST opam-file-format-2.1.3.tar.gz 36255 BLAKE2B eabd343d1ebb5708e57a125cf6f15105e263d0cc0885717df58249313de77cf1063efa2fc0f9b92d67a83649f3bdd8fa65c13077ca4b3814182ec750701570a1 SHA512 90da53a2b19eb97c17ec71d3ac00969863ef3458f421189413b3ec2d96f8822da9fba51ef95f55064bbb17f1729104a1fe4fed1d61d5006568b53165f0c6931f
22 +DIST opam-file-format-2.1.5.tar.gz 36682 BLAKE2B 3766497f930db4f72e2c7968684b53038846dfd5ef609846b455dcc946d7f6b71a843fc684ba4b16c8e06176d57089d56d9d333423349491f9a4d7d947a0a9dc SHA512 9bb9daa31877e1555b75c6d91566bceee175397f37bf8359ffce3cac16a72f48543d6ff5a03e8bf42aef6e1e499b3a2ce6054b00356a937214848b6b87c2315f
23
24 diff --git a/dev-ml/opam-file-format/opam-file-format-2.1.5.ebuild b/dev-ml/opam-file-format/opam-file-format-2.1.5.ebuild
25 new file mode 100644
26 index 000000000000..d5bd655ecace
27 --- /dev/null
28 +++ b/dev-ml/opam-file-format/opam-file-format-2.1.5.ebuild
29 @@ -0,0 +1,22 @@
30 +# Copyright 1999-2023 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit dune
36 +
37 +MY_PV="${PV/_beta/-beta}"
38 +MY_PV="${MY_PV/_rc/-rc}"
39 +S="${WORKDIR}/${PN}-${MY_PV}"
40 +
41 +DESCRIPTION="Parser and printer for the opam file syntax"
42 +HOMEPAGE="https://github.com/ocaml/opam-file-format"
43 +SRC_URI="https://github.com/ocaml/opam-file-format/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="LGPL-2.1"
46 +SLOT="0/${PV}"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
48 +IUSE="+ocamlopt test"
49 +RESTRICT="!test? ( test )"
50 +
51 +DEPEND="test? ( dev-ml/alcotest )"