* [gentoo-commits] repo/proj/guru:master commit in: dev-ml/ocaml-version/
@ 2024-07-27 17:45 David Roman
0 siblings, 0 replies; 4+ messages in thread
From: David Roman @ 2024-07-27 17:45 UTC (permalink / raw
To: gentoo-commits
commit: 7fcad03c2254b9a76496ec1ed208809c5a2be863
Author: Hiroki Tokunaga <tokusan441 <AT> gmail <DOT> com>
AuthorDate: Sat Jul 27 03:07:48 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Jul 27 03:07:48 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7fcad03c
dev-ml/ocaml-version: new package, add 3.6.7
Signed-off-by: Hiroki Tokunaga <tokusan441 <AT> gmail.com>
dev-ml/ocaml-version/Manifest | 1 +
dev-ml/ocaml-version/metadata.xml | 26 +++++++++++++++++++++++++
dev-ml/ocaml-version/ocaml-version-3.6.7.ebuild | 25 ++++++++++++++++++++++++
3 files changed, 52 insertions(+)
diff --git a/dev-ml/ocaml-version/Manifest b/dev-ml/ocaml-version/Manifest
new file mode 100644
index 000000000..c5db5f7a2
--- /dev/null
+++ b/dev-ml/ocaml-version/Manifest
@@ -0,0 +1 @@
+DIST ocaml-version-3.6.7.tar.gz 14315 BLAKE2B 6b6599ad17bbf3f023e809ae522db44d32632c6bcc9e09fcb7515bb9219658b36eb6cc1d9da4beff9d1843b1333642b207331c7c98ac07d81279b73e07a3c726 SHA512 879e0eac5ea672b98dc9ba7f236fc048ed829271fe5d95909f23b64e180d64d407684de83684fc0f07373a25feda3ae679daf005f72421a3f1173aa097be8c03
diff --git a/dev-ml/ocaml-version/metadata.xml b/dev-ml/ocaml-version/metadata.xml
new file mode 100644
index 000000000..ef87a3352
--- /dev/null
+++ b/dev-ml/ocaml-version/metadata.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>tokusan441@gmail.com</email>
+ <name>Hiroki Tokunaga</name>
+ </maintainer>
+ <longdescription lang="en">This library provides facilities to parse version numbers of the OCaml compiler, and enumerates the various official OCaml releases and configuration variants.
+
+OCaml version numbers are of the form `major.minor.patch+extra`, where the `patch` and `extra` fields are optional. This library offers the following functionality:
+
+- Functions to parse and serialise OCaml compiler version numbers.
+- Enumeration of official OCaml compiler version releases.
+- Test compiler versions for a particular feature (e.g. the `bytes` type)
+- [opam](https://opam.ocaml.org) compiler switch enumeration.
+
+### Further information
+
+- **Discussion:** Post on https://discuss.ocaml.org/ with the `ocaml` tag under the Ecosystem category.
+- **Bugs:** https://github.com/ocurrent/ocaml-version/issues
+- **Docs:** http://docs.mirage.io/ocaml-version</longdescription>
+ <upstream>
+ <bugs-to>https://github.com/ocurrent/ocaml-version/issues</bugs-to>
+ <remote-id type="github">ocurrent/ocaml-version</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-ml/ocaml-version/ocaml-version-3.6.7.ebuild b/dev-ml/ocaml-version/ocaml-version-3.6.7.ebuild
new file mode 100644
index 000000000..3a9ae0e4d
--- /dev/null
+++ b/dev-ml/ocaml-version/ocaml-version-3.6.7.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune
+
+DESCRIPTION="Library to parse and enumerate releases of the OCaml compiler"
+HOMEPAGE="https://github.com/ocurrent/ocaml-version"
+SRC_URI="https://github.com/ocurrent/ocaml-version/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+
+SLOT="0/${PV}"
+
+KEYWORDS="~amd64"
+IUSE="ocamlopt test"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ test? (
+ dev-ml/alcotest:=
+ )
+"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-ml/ocaml-version/
@ 2024-07-27 17:45 David Roman
0 siblings, 0 replies; 4+ messages in thread
From: David Roman @ 2024-07-27 17:45 UTC (permalink / raw
To: gentoo-commits
commit: dd442e0695922288149cf78cb96534136acb5ad5
Author: Hiroki Tokunaga <tokusan441 <AT> gmail <DOT> com>
AuthorDate: Sat Jul 27 03:18:58 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat Jul 27 03:18:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dd442e06
dev-ml/ocaml-version: update LICENSE
Signed-off-by: Hiroki Tokunaga <tokusan441 <AT> gmail.com>
dev-ml/ocaml-version/ocaml-version-3.6.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/ocaml-version/ocaml-version-3.6.7.ebuild b/dev-ml/ocaml-version/ocaml-version-3.6.7.ebuild
index 3a9ae0e4d..26ec14736 100644
--- a/dev-ml/ocaml-version/ocaml-version-3.6.7.ebuild
+++ b/dev-ml/ocaml-version/ocaml-version-3.6.7.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Library to parse and enumerate releases of the OCaml compiler"
HOMEPAGE="https://github.com/ocurrent/ocaml-version"
SRC_URI="https://github.com/ocurrent/ocaml-version/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="MIT"
+LICENSE="ISC"
SLOT="0/${PV}"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-ml/ocaml-version/
@ 2024-09-06 8:52 David Roman
0 siblings, 0 replies; 4+ messages in thread
From: David Roman @ 2024-09-06 8:52 UTC (permalink / raw
To: gentoo-commits
commit: b1c53892a9369d74e0bfa611b87779f7cdb9c417
Author: Hiroki Tokunaga <tokusan441 <AT> gmail <DOT> com>
AuthorDate: Thu Sep 5 12:33:53 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Sep 5 12:33:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b1c53892
dev-ml/ocaml-version: add 3.6.8
Signed-off-by: Hiroki Tokunaga <tokusan441 <AT> gmail.com>
dev-ml/ocaml-version/Manifest | 1 +
dev-ml/ocaml-version/ocaml-version-3.6.8.ebuild | 25 +++++++++++++++++++++++++
2 files changed, 26 insertions(+)
diff --git a/dev-ml/ocaml-version/Manifest b/dev-ml/ocaml-version/Manifest
index c5db5f7a2..fa5b12fb1 100644
--- a/dev-ml/ocaml-version/Manifest
+++ b/dev-ml/ocaml-version/Manifest
@@ -1 +1,2 @@
DIST ocaml-version-3.6.7.tar.gz 14315 BLAKE2B 6b6599ad17bbf3f023e809ae522db44d32632c6bcc9e09fcb7515bb9219658b36eb6cc1d9da4beff9d1843b1333642b207331c7c98ac07d81279b73e07a3c726 SHA512 879e0eac5ea672b98dc9ba7f236fc048ed829271fe5d95909f23b64e180d64d407684de83684fc0f07373a25feda3ae679daf005f72421a3f1173aa097be8c03
+DIST ocaml-version-3.6.8.tar.gz 14336 BLAKE2B a998ac03638307ef12f8ea919046b75c1f291ef87e5a4a67b9951b4cfa9b1c85d80e79aab06e414d17ba066cfa514a03121a113596111d0c3734796f7d0f0dc9 SHA512 ed372b014bdbee560729ca14c505cc9c3ce2075e36858bd690f028189be1a8fa5fa86a981fe698c8f3521100a63bb057992a9455d83552250a5466b6b41c1104
diff --git a/dev-ml/ocaml-version/ocaml-version-3.6.8.ebuild b/dev-ml/ocaml-version/ocaml-version-3.6.8.ebuild
new file mode 100644
index 000000000..26ec14736
--- /dev/null
+++ b/dev-ml/ocaml-version/ocaml-version-3.6.8.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune
+
+DESCRIPTION="Library to parse and enumerate releases of the OCaml compiler"
+HOMEPAGE="https://github.com/ocurrent/ocaml-version"
+SRC_URI="https://github.com/ocurrent/ocaml-version/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+
+SLOT="0/${PV}"
+
+KEYWORDS="~amd64"
+IUSE="ocamlopt test"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ test? (
+ dev-ml/alcotest:=
+ )
+"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-ml/ocaml-version/
@ 2024-10-08 14:36 David Roman
0 siblings, 0 replies; 4+ messages in thread
From: David Roman @ 2024-10-08 14:36 UTC (permalink / raw
To: gentoo-commits
commit: 2fe6db7c72d60345ee3b5a9cc0a8edbb0935a49c
Author: Hiroki Tokunaga <tokusan441 <AT> gmail <DOT> com>
AuthorDate: Tue Oct 8 14:00:17 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Oct 8 14:00:17 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2fe6db7c
dev-ml/ocaml-version: add 3.6.9
Signed-off-by: Hiroki Tokunaga <tokusan441 <AT> gmail.com>
dev-ml/ocaml-version/Manifest | 1 +
dev-ml/ocaml-version/ocaml-version-3.6.9.ebuild | 25 +++++++++++++++++++++++++
2 files changed, 26 insertions(+)
diff --git a/dev-ml/ocaml-version/Manifest b/dev-ml/ocaml-version/Manifest
index fa5b12fb1..5c370bfdc 100644
--- a/dev-ml/ocaml-version/Manifest
+++ b/dev-ml/ocaml-version/Manifest
@@ -1,2 +1,3 @@
DIST ocaml-version-3.6.7.tar.gz 14315 BLAKE2B 6b6599ad17bbf3f023e809ae522db44d32632c6bcc9e09fcb7515bb9219658b36eb6cc1d9da4beff9d1843b1333642b207331c7c98ac07d81279b73e07a3c726 SHA512 879e0eac5ea672b98dc9ba7f236fc048ed829271fe5d95909f23b64e180d64d407684de83684fc0f07373a25feda3ae679daf005f72421a3f1173aa097be8c03
DIST ocaml-version-3.6.8.tar.gz 14336 BLAKE2B a998ac03638307ef12f8ea919046b75c1f291ef87e5a4a67b9951b4cfa9b1c85d80e79aab06e414d17ba066cfa514a03121a113596111d0c3734796f7d0f0dc9 SHA512 ed372b014bdbee560729ca14c505cc9c3ce2075e36858bd690f028189be1a8fa5fa86a981fe698c8f3521100a63bb057992a9455d83552250a5466b6b41c1104
+DIST ocaml-version-3.6.9.tar.gz 14370 BLAKE2B 67ab3044184a5706248f4b0250a3d537a71becc16cc2b247abfd5020936acc4fc0b0dfcbcec43ef5ca5b5ef963be9defb10e63d6b90fb41c20dd371483a84e04 SHA512 932daf8941f69f3457b0b821e633ab74b81dc9a262fdba2ae45b827fc410ca48d021a80321939945f7aff002865bf9ca0704fa7d81418c3da65b0b76a861a13a
diff --git a/dev-ml/ocaml-version/ocaml-version-3.6.9.ebuild b/dev-ml/ocaml-version/ocaml-version-3.6.9.ebuild
new file mode 100644
index 000000000..26ec14736
--- /dev/null
+++ b/dev-ml/ocaml-version/ocaml-version-3.6.9.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune
+
+DESCRIPTION="Library to parse and enumerate releases of the OCaml compiler"
+HOMEPAGE="https://github.com/ocurrent/ocaml-version"
+SRC_URI="https://github.com/ocurrent/ocaml-version/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+
+SLOT="0/${PV}"
+
+KEYWORDS="~amd64"
+IUSE="ocamlopt test"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ test? (
+ dev-ml/alcotest:=
+ )
+"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-10-08 14:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-27 17:45 [gentoo-commits] repo/proj/guru:master commit in: dev-ml/ocaml-version/ David Roman
-- strict thread matches above, loose matches on Subject: below --
2024-10-08 14:36 David Roman
2024-09-06 8:52 David Roman
2024-07-27 17:45 David Roman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox