* [gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-common/
@ 2024-11-21 19:14 Alfredo Tupone
0 siblings, 0 replies; 8+ messages in thread
From: Alfredo Tupone @ 2024-11-21 19:14 UTC (permalink / raw
To: gentoo-commits
commit: 668947c60b174a71cb9cbc954da54a4a16c4db64
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 21 19:12:54 2024 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Nov 21 19:13:26 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=668947c6
dev-ml/opam-common: new package, add 2.2.1
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-ml/opam-common/Manifest | 1 +
dev-ml/opam-common/metadata.xml | 11 ++++++++
dev-ml/opam-common/opam-common-2.2.1.ebuild | 43 +++++++++++++++++++++++++++++
3 files changed, 55 insertions(+)
diff --git a/dev-ml/opam-common/Manifest b/dev-ml/opam-common/Manifest
new file mode 100644
index 000000000000..3a42235d1748
--- /dev/null
+++ b/dev-ml/opam-common/Manifest
@@ -0,0 +1 @@
+DIST opam-2.2.1.tar.gz 1089671 BLAKE2B cd6a97c8c19d7866205b49f95bf4215d986b3ad8b5d1fe5c5fd52db9b8b9e0cff8559d478e18d99d89816bbf830910f182e4c1e80719ac29a3cd5c8299450a21 SHA512 17d7d83b9de118332c121b9d3aa2e48f62a6270ea23e730a536b0f4ff060df85238c7c4ab53a89bcc3b3193d52d14358831bd9bed30a4ac699e44e4c3003b8b0
diff --git a/dev-ml/opam-common/metadata.xml b/dev-ml/opam-common/metadata.xml
new file mode 100644
index 000000000000..8ee8dbb51969
--- /dev/null
+++ b/dev-ml/opam-common/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>ml@gentoo.org</email>
+ <name>ML</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">ocaml/opam</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-ml/opam-common/opam-common-2.2.1.ebuild b/dev-ml/opam-common/opam-common-2.2.1.ebuild
new file mode 100644
index 000000000000..155f1bfdec12
--- /dev/null
+++ b/dev-ml/opam-common/opam-common-2.2.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune
+
+DESCRIPTION="Core libraries for opam"
+HOMEPAGE="https://opam.ocaml.org/ https://github.com/ocaml/opam"
+SRC_URI="https://github.com/ocaml/opam/archive/${PV/_/-}.tar.gz -> opam-${PV}.tar.gz"
+S="${WORKDIR}/opam-${PV}"
+
+LICENSE="LGPL-2.1"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="+ocamlopt"
+RESTRICT="test" #sandbox not working
+
+RDEPEND="
+ dev-ml/jsonm:=[ocamlopt?]
+ dev-ml/ocamlgraph:=[ocamlopt?]
+ dev-ml/ocaml-sha:=[ocamlopt?]
+ dev-ml/opam-file-format:=[ocamlopt?]
+ dev-ml/re:=[ocamlopt?]
+ dev-ml/stdlib-shims:=[ocamlopt?]
+ dev-ml/swhid_core:=[ocamlopt?]
+ dev-ml/uchar:=[ocamlopt?]
+ dev-ml/uutf:=[ocamlopt?]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-ml/findlib"
+
+src_configure() {
+ :
+}
+
+src_compile() {
+ dune-compile opam-core opam-format
+}
+
+src_install() {
+ dune-install opam-core opam-format
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-common/
@ 2024-11-21 19:28 Alfredo Tupone
0 siblings, 0 replies; 8+ messages in thread
From: Alfredo Tupone @ 2024-11-21 19:28 UTC (permalink / raw
To: gentoo-commits
commit: 3adf23bb88c35c4996072a647dcdd223db0d936a
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 21 19:27:12 2024 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Nov 21 19:27:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3adf23bb
dev-ml/opam-common: conflict with opam-2.1.6
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-ml/opam-common/opam-common-2.2.1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-ml/opam-common/opam-common-2.2.1.ebuild b/dev-ml/opam-common/opam-common-2.2.1.ebuild
index 155f1bfdec12..4cebd06f8892 100644
--- a/dev-ml/opam-common/opam-common-2.2.1.ebuild
+++ b/dev-ml/opam-common/opam-common-2.2.1.ebuild
@@ -26,6 +26,7 @@ RDEPEND="
dev-ml/swhid_core:=[ocamlopt?]
dev-ml/uchar:=[ocamlopt?]
dev-ml/uutf:=[ocamlopt?]
+ !<dev-ml/opam-2.2
"
DEPEND="${RDEPEND}"
BDEPEND="dev-ml/findlib"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-common/
@ 2024-11-21 23:06 Jakov Smolić
0 siblings, 0 replies; 8+ messages in thread
From: Jakov Smolić @ 2024-11-21 23:06 UTC (permalink / raw
To: gentoo-commits
commit: a95dae7e1e71c70b5f712f51d6961fc775efd4c8
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 21 23:06:43 2024 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Nov 21 23:06:43 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a95dae7e
dev-ml/opam-common: Keyword 2.2.1 riscv, #944340
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-ml/opam-common/opam-common-2.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/opam-common/opam-common-2.2.1.ebuild b/dev-ml/opam-common/opam-common-2.2.1.ebuild
index 4cebd06f8892..3e2d2b2eecff 100644
--- a/dev-ml/opam-common/opam-common-2.2.1.ebuild
+++ b/dev-ml/opam-common/opam-common-2.2.1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/opam-${PV}"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
IUSE="+ocamlopt"
RESTRICT="test" #sandbox not working
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-common/
@ 2024-11-22 1:52 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-11-22 1:52 UTC (permalink / raw
To: gentoo-commits
commit: f64b0e2539c1208a0cfe0d617b222a6a8fe95fb2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 22 01:51:44 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 22 01:51:44 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f64b0e25
dev-ml/opam-common: Keyword 2.2.1 ppc, #944340
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/opam-common/opam-common-2.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/opam-common/opam-common-2.2.1.ebuild b/dev-ml/opam-common/opam-common-2.2.1.ebuild
index 3e2d2b2eecff..d1d43eeb941a 100644
--- a/dev-ml/opam-common/opam-common-2.2.1.ebuild
+++ b/dev-ml/opam-common/opam-common-2.2.1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/opam-${PV}"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
-KEYWORDS="~amd64 ~riscv"
+KEYWORDS="~amd64 ~ppc ~riscv"
IUSE="+ocamlopt"
RESTRICT="test" #sandbox not working
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-common/
@ 2024-11-22 1:52 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-11-22 1:52 UTC (permalink / raw
To: gentoo-commits
commit: f8fc00712d85deea71de0ae2bebc822065ebcd40
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 22 01:51:47 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 22 01:51:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8fc0071
dev-ml/opam-common: Keyword 2.2.1 ppc64, #944340
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/opam-common/opam-common-2.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/opam-common/opam-common-2.2.1.ebuild b/dev-ml/opam-common/opam-common-2.2.1.ebuild
index d1d43eeb941a..8b8c1ceaac3c 100644
--- a/dev-ml/opam-common/opam-common-2.2.1.ebuild
+++ b/dev-ml/opam-common/opam-common-2.2.1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/opam-${PV}"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~riscv"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv"
IUSE="+ocamlopt"
RESTRICT="test" #sandbox not working
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-common/
@ 2024-11-22 18:24 Arthur Zamarin
0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2024-11-22 18:24 UTC (permalink / raw
To: gentoo-commits
commit: cda21248a775e17c165a3ba4ee8a47ef7392d670
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 22 18:24:17 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 22 18:24:25 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cda21248
dev-ml/opam-common: Keyword 2.2.1 arm, #944340
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-ml/opam-common/opam-common-2.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/opam-common/opam-common-2.2.1.ebuild b/dev-ml/opam-common/opam-common-2.2.1.ebuild
index 03d249fe7732..e18aac0b18a9 100644
--- a/dev-ml/opam-common/opam-common-2.2.1.ebuild
+++ b/dev-ml/opam-common/opam-common-2.2.1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/opam-${PV}"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv"
IUSE="+ocamlopt"
RESTRICT="test" #sandbox not working
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-common/
@ 2024-11-22 18:24 Arthur Zamarin
0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2024-11-22 18:24 UTC (permalink / raw
To: gentoo-commits
commit: 4001edafbe195ae4318a988cd3123f6b032a6bca
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 22 18:24:15 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 22 18:24:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4001edaf
dev-ml/opam-common: Keyword 2.2.1 arm64, #944340
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-ml/opam-common/opam-common-2.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/opam-common/opam-common-2.2.1.ebuild b/dev-ml/opam-common/opam-common-2.2.1.ebuild
index 8b8c1ceaac3c..03d249fe7732 100644
--- a/dev-ml/opam-common/opam-common-2.2.1.ebuild
+++ b/dev-ml/opam-common/opam-common-2.2.1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/opam-${PV}"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv"
IUSE="+ocamlopt"
RESTRICT="test" #sandbox not working
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-common/
@ 2024-11-23 8:06 Arthur Zamarin
0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2024-11-23 8:06 UTC (permalink / raw
To: gentoo-commits
commit: da63b5714ba925d37ee4cf1770f967c77936deec
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 23 08:06:15 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 23 08:06:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da63b571
dev-ml/opam-common: Keyword 2.2.1 x86, #944340
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-ml/opam-common/opam-common-2.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/opam-common/opam-common-2.2.1.ebuild b/dev-ml/opam-common/opam-common-2.2.1.ebuild
index e18aac0b18a9..b5af9d195bfb 100644
--- a/dev-ml/opam-common/opam-common-2.2.1.ebuild
+++ b/dev-ml/opam-common/opam-common-2.2.1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/opam-${PV}"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
IUSE="+ocamlopt"
RESTRICT="test" #sandbox not working
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-11-23 8:06 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-22 18:24 [gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-common/ Arthur Zamarin
-- strict thread matches above, loose matches on Subject: below --
2024-11-23 8:06 Arthur Zamarin
2024-11-22 18:24 Arthur Zamarin
2024-11-22 1:52 Sam James
2024-11-22 1:52 Sam James
2024-11-21 23:06 Jakov Smolić
2024-11-21 19:28 Alfredo Tupone
2024-11-21 19:14 Alfredo Tupone
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox