Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-file-format/
Date: Mon, 08 Feb 2021 17:21:04
Message-Id: 1612804853.809a564d610d444853340a1836a674e0cffa1b95.sam@gentoo
1 commit: 809a564d610d444853340a1836a674e0cffa1b95
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 8 16:56:05 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 8 17:20:53 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=809a564d
7
8 dev-ml/opam-file-format: bump to 2.1.2
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-ml/opam-file-format/Manifest | 1 +
14 .../opam-file-format/opam-file-format-2.1.2.ebuild | 22 ++++++++++++++++++++++
15 2 files changed, 23 insertions(+)
16
17 diff --git a/dev-ml/opam-file-format/Manifest b/dev-ml/opam-file-format/Manifest
18 index a0c35304640..62c1faadc83 100644
19 --- a/dev-ml/opam-file-format/Manifest
20 +++ b/dev-ml/opam-file-format/Manifest
21 @@ -1 +1,2 @@
22 DIST opam-file-format-2.1.0.tar.gz 23233 BLAKE2B 34d832c5ee13a0db43e77f3b33e7728faa7dccccc8daed50dca89630ab11d6f307413b8fecfef5a7c3e0f7ea04ef27105c8f42d8b5227d2587bdc2c2defe59d3 SHA512 b948545497de0386457a9b5772924572249e38164aa49d5ab2ac9442d1231a56a3b8132a95197d74cbbe34336a7edc04eaca351a8763c4a009a512085ca0ab25
23 +DIST opam-file-format-2.1.2.tar.gz 32120 BLAKE2B 3756ae2e2ad8e60d9611f1879ee07179e5f98ce4bd9f0fa9759e723446aac60f811e282903a57803fdb1c742f7027fb3a4b0d018dee74762645f5f0ec28aaeda SHA512 24fcc8a89dd79fee4fb54cfcd3a9b392819eb8214c97f43e226d44f1bc98111effade15f21f1e13aa5d3555cb458cbe269ba78ee4a1470c554f479446012d7ee
24
25 diff --git a/dev-ml/opam-file-format/opam-file-format-2.1.2.ebuild b/dev-ml/opam-file-format/opam-file-format-2.1.2.ebuild
26 new file mode 100644
27 index 00000000000..55d2c8ed6c8
28 --- /dev/null
29 +++ b/dev-ml/opam-file-format/opam-file-format-2.1.2.ebuild
30 @@ -0,0 +1,22 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit dune
37 +
38 +MY_PV="${PV/_beta/-beta}"
39 +MY_PV="${MY_PV/_rc/-rc}"
40 +S="${WORKDIR}/${PN}-${MY_PV}"
41 +
42 +DESCRIPTION="Parser and printer for the opam file syntax"
43 +HOMEPAGE="https://github.com/ocaml/opam-file-format"
44 +SRC_URI="https://github.com/ocaml/opam-file-format/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="LGPL-2.1"
47 +SLOT="0/${PV}"
48 +KEYWORDS="~amd64"
49 +IUSE="+ocamlopt test"
50 +RESTRICT="!test? ( test )"
51 +
52 +DEPEND="test? ( dev-ml/alcotest )"