* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/
@ 2021-01-22 3:34 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-01-22 3:34 UTC (permalink / raw
To: gentoo-commits
commit: d798bad94cd1f2b11d5f4b36a7b358e55d7a9938
Author: Rafael Kitover <rkitover <AT> gmail <DOT> com>
AuthorDate: Sun Jan 17 19:24:30 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 03:33:57 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d798bad9
dev-ml/ocaml-gettext-stub: New ebuild.
Needed for libguestfs.
First version of ebuild provided by:
Hank Leininger (hlein <AT> korelogic.com).
Bug: https://bugs.gentoo.org/762613
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Rafael Kitover <rkitover <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/ocaml-gettext-stub/Manifest | 1 +
dev-ml/ocaml-gettext-stub/metadata.xml | 21 ++++++++++++++
.../ocaml-gettext-stub-0.4.2.ebuild | 33 ++++++++++++++++++++++
3 files changed, 55 insertions(+)
diff --git a/dev-ml/ocaml-gettext-stub/Manifest b/dev-ml/ocaml-gettext-stub/Manifest
new file mode 100644
index 00000000000..839e7295801
--- /dev/null
+++ b/dev-ml/ocaml-gettext-stub/Manifest
@@ -0,0 +1 @@
+DIST ocaml-gettext-0.4.2.tar.gz 110249 BLAKE2B 54a25ba9f8fb20194fdfaf651586222fab68f927ebfa711812f7c9a387ff40c19e1bf3f63124127356b32b0ca0be2c5ff4e1cdfaf5f3afe690b90c0ca96c470d SHA512 fb89be8d8d9e0ed9327b81a0c81c884ff3f1a97e46b475ef8084abded5c84a256de05d5aa0f42be94f43ab438276a4506af726b6950e4161359a9616fb5832ec
diff --git a/dev-ml/ocaml-gettext-stub/metadata.xml b/dev-ml/ocaml-gettext-stub/metadata.xml
new file mode 100644
index 00000000000..4014d3ca4a8
--- /dev/null
+++ b/dev-ml/ocaml-gettext-stub/metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>rkitover@gmail.com</email>
+ <name>Rafael Kitover</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">gildor478/ocaml-gettext</remote-id>
+ </upstream>
+ <use>
+ <flag name="ocamlopt">
+ Whether the OCaml native code compiler is used. Must be set globally and
+ match dev-lang/ocaml.
+ </flag>
+ </use>
+</pkgmetadata>
diff --git a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild
new file mode 100644
index 00000000000..5bed46a16b7
--- /dev/null
+++ b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN=${PN/-stub/}
+MY_P=${P/-stub/}
+DUNE_PKG_NAME="gettext-stub"
+inherit dune
+
+DESCRIPTION="Support for internationalization of OCaml programs using native gettext library"
+HOMEPAGE="https://github.com/gildor478/ocaml-gettext"
+SRC_URI="https://github.com/gildor478/ocaml-gettext/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
+
+LICENSE="LGPL-2.1-with-linking-exception"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="+ocamlopt test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ >=dev-ml/cppo-1.6.6
+ dev-ml/dune-configurator
+"
+RDEPEND="
+ dev-ml/ocaml-gettext:=
+"
+DEPEND="
+ ${RDEPEND}
+ test? ( dev-ml/ounit )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/
@ 2021-01-22 3:34 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-01-22 3:34 UTC (permalink / raw
To: gentoo-commits
commit: fe2f7ddd4bad481d50641d6818be7301a3ec456a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 22 02:45:19 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 03:33:59 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe2f7ddd
dev-ml/ocaml-gettext-stub: fixup deps
Add extra dependencies:
* dev-ml/base:=[ocamlopt]
* dev-ml/camomile:=[ocamlopt=]
* dev-ml/ocaml-fileutils[ocamlopt=] (test dep)
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild
index 5bed46a16b7..b44afdf6932 100644
--- a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild
+++ b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild
@@ -11,6 +11,7 @@ inherit dune
DESCRIPTION="Support for internationalization of OCaml programs using native gettext library"
HOMEPAGE="https://github.com/gildor478/ocaml-gettext"
SRC_URI="https://github.com/gildor478/ocaml-gettext/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
@@ -23,11 +24,14 @@ BDEPEND="
dev-ml/dune-configurator
"
RDEPEND="
- dev-ml/ocaml-gettext:=
+ dev-ml/base:=[ocamlopt=]
+ dev-ml/camomile:=[ocamlopt=]
+ dev-ml/ocaml-gettext:=[ocamlopt=]
"
DEPEND="
${RDEPEND}
- test? ( dev-ml/ounit )
+ test? (
+ dev-ml/ocaml-fileutils[ocamlopt=]
+ dev-ml/ounit[ocamlopt=]
+ )
"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/
@ 2021-01-27 3:28 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-01-27 3:28 UTC (permalink / raw
To: gentoo-commits
commit: 72300925e9f8b31cb0b41ab29886f7d23e353462
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 27 03:18:36 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jan 27 03:18:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72300925
dev-ml/ocaml-gettext-stub: fix MissingUseDepDefault
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild
index b44afdf6932..187b3fc10c9 100644
--- a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild
+++ b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild
@@ -24,14 +24,14 @@ BDEPEND="
dev-ml/dune-configurator
"
RDEPEND="
- dev-ml/base:=[ocamlopt=]
+ dev-ml/base:=
dev-ml/camomile:=[ocamlopt=]
- dev-ml/ocaml-gettext:=[ocamlopt=]
+ dev-ml/ocaml-gettext:=
"
DEPEND="
${RDEPEND}
test? (
- dev-ml/ocaml-fileutils[ocamlopt=]
+ dev-ml/ocaml-fileutils
dev-ml/ounit[ocamlopt=]
)
"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/
@ 2021-02-02 4:17 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-02-02 4:17 UTC (permalink / raw
To: gentoo-commits
commit: 6723f51a80eb1afc2d7e26a335cda66a78a178f5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 1 23:28:48 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 1 23:35:47 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6723f51a
dev-ml/ocaml-gettext-stub: add blocker on earlier dev-ml/ocaml-gettext
Reported-by: John Helmert III <jchelmert3 <AT> posteo.net>
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild
index 187b3fc10c9..c47570d7811 100644
--- a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild
+++ b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild
@@ -27,6 +27,7 @@ RDEPEND="
dev-ml/base:=
dev-ml/camomile:=[ocamlopt=]
dev-ml/ocaml-gettext:=
+ !<dev-ml/ocaml-gettext-0.4.2
"
DEPEND="
${RDEPEND}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/
@ 2021-02-03 12:53 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-02-03 12:53 UTC (permalink / raw
To: gentoo-commits
commit: 162fbb81e109e49ba210c4733b96038990ee1bd7
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 3 12:53:44 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 3 12:53:44 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=162fbb81
dev-ml/ocaml-gettext-stub: apply blocker
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
...ocaml-gettext-stub-0.4.2.ebuild => ocaml-gettext-stub-0.4.2-r1.ebuild} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild
similarity index 100%
rename from dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.ebuild
rename to dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/
@ 2021-03-13 15:26 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2021-03-13 15:26 UTC (permalink / raw
To: gentoo-commits
commit: 96c6dbe2c79f0cb60a234636f04a605b86f908fb
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 13 11:30:07 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 13 15:23:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96c6dbe2
dev-ml/ocaml-gettext-stub: convert to dev-ml/ounit2 for tests
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild
index c47570d7811..3d79cb05c00 100644
--- a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild
+++ b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild
@@ -33,6 +33,13 @@ DEPEND="
${RDEPEND}
test? (
dev-ml/ocaml-fileutils
- dev-ml/ounit[ocamlopt=]
+ dev-ml/ounit2[ocamlopt=]
)
"
+
+src_prepare() {
+ default
+
+ # Port to dev-ml/ounit2
+ sed -i -e 's/oUnit/ounit2/' test/{,common,test-camomile,test-stub}/dune || die
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/
@ 2023-02-23 23:47 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2023-02-23 23:47 UTC (permalink / raw
To: gentoo-commits
commit: 01e66dc026698fdaa3cf54134c20a4958355f35a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 23 23:46:17 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 23 23:46:17 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01e66dc0
dev-ml/ocaml-gettext-stub: stabilize 0.4.2-r1 for amd64
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild
index 3d79cb05c000..ee1414b5f36d 100644
--- a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild
+++ b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
IUSE="+ocamlopt test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/
@ 2023-04-19 15:47 Maciej Barć
0 siblings, 0 replies; 11+ messages in thread
From: Maciej Barć @ 2023-04-19 15:47 UTC (permalink / raw
To: gentoo-commits
commit: b20e981da868a0075f98e6896c93fb43c4875442
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 19 15:46:12 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed Apr 19 15:47:35 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b20e981d
dev-ml/ocaml-gettext-stub: fix camomile breakage
Bug: https://bugs.gentoo.org/904506
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
...1.ebuild => ocaml-gettext-stub-0.4.2-r2.ebuild} | 27 +++++++++++++---------
1 file changed, 16 insertions(+), 11 deletions(-)
diff --git a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r2.ebuild
similarity index 70%
rename from dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild
rename to dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r2.ebuild
index ee1414b5f36d..c678d9199725 100644
--- a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r1.ebuild
+++ b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r2.ebuild
@@ -1,36 +1,36 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
MY_PN=${PN/-stub/}
MY_P=${P/-stub/}
+
DUNE_PKG_NAME="gettext-stub"
+
inherit dune
DESCRIPTION="Support for internationalization of OCaml programs using native gettext library"
HOMEPAGE="https://github.com/gildor478/ocaml-gettext"
-SRC_URI="https://github.com/gildor478/ocaml-gettext/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
+SRC_URI="https://github.com/gildor478/ocaml-gettext/archive/v${PV}.tar.gz
+ -> ${MY_P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="amd64"
IUSE="+ocamlopt test"
-RESTRICT="!test? ( test )"
+RESTRICT="test" # Tests fail.
-BDEPEND="
- >=dev-ml/cppo-1.6.6
- dev-ml/dune-configurator
-"
RDEPEND="
dev-ml/base:=
- dev-ml/camomile:=[ocamlopt=]
dev-ml/ocaml-gettext:=
!<dev-ml/ocaml-gettext-0.4.2
"
-DEPEND="
- ${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
+ >=dev-ml/cppo-1.6.6
+ dev-ml/dune-configurator
test? (
dev-ml/ocaml-fileutils
dev-ml/ounit2[ocamlopt=]
@@ -40,6 +40,11 @@ DEPEND="
src_prepare() {
default
+ # Remove dependency on camomile (see
+ # https://github.com/gildor478/ocaml-gettext/issues/14)
+ rm -r src/lib/gettext-camomile || die
+ rm -r test/test-camomile || die
+
# Port to dev-ml/ounit2
- sed -i -e 's/oUnit/ounit2/' test/{,common,test-camomile,test-stub}/dune || die
+ sed -i -e 's/oUnit/ounit2/' test/{,common,test-stub}/dune || die
}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/
@ 2023-12-02 10:56 Arthur Zamarin
0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2023-12-02 10:56 UTC (permalink / raw
To: gentoo-commits
commit: dd6a11bc15c369e7d64ae9334d44ff2add9c32e7
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 2 10:56:00 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 2 10:56:00 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd6a11bc
dev-ml/ocaml-gettext-stub: Keyword 0.4.2-r2 ppc64, #892954
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r2.ebuild b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r2.ebuild
index c678d9199725..eb6ff0d4a386 100644
--- a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r2.ebuild
+++ b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2-r2.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
-KEYWORDS="amd64"
+KEYWORDS="amd64 ~ppc64"
IUSE="+ocamlopt test"
RESTRICT="test" # Tests fail.
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/
@ 2025-03-14 10:56 Alfredo Tupone
0 siblings, 0 replies; 11+ messages in thread
From: Alfredo Tupone @ 2025-03-14 10:56 UTC (permalink / raw
To: gentoo-commits
commit: bc6b2b9e7aff8f588e2472e0f82fb4e527d791aa
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 14 10:56:37 2025 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Fri Mar 14 10:56:37 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc6b2b9e
dev-ml/ocaml-gettext-stub: add 0.5.0
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-ml/ocaml-gettext-stub/Manifest | 1 +
.../ocaml-gettext-stub-0.5.0.ebuild | 45 ++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/dev-ml/ocaml-gettext-stub/Manifest b/dev-ml/ocaml-gettext-stub/Manifest
index 839e7295801b..7188f561754a 100644
--- a/dev-ml/ocaml-gettext-stub/Manifest
+++ b/dev-ml/ocaml-gettext-stub/Manifest
@@ -1 +1,2 @@
DIST ocaml-gettext-0.4.2.tar.gz 110249 BLAKE2B 54a25ba9f8fb20194fdfaf651586222fab68f927ebfa711812f7c9a387ff40c19e1bf3f63124127356b32b0ca0be2c5ff4e1cdfaf5f3afe690b90c0ca96c470d SHA512 fb89be8d8d9e0ed9327b81a0c81c884ff3f1a97e46b475ef8084abded5c84a256de05d5aa0f42be94f43ab438276a4506af726b6950e4161359a9616fb5832ec
+DIST ocaml-gettext-0.5.0.tar.gz 113204 BLAKE2B c103e461da446eb65adbde33de2c37caf920d08cb334c4889364cbd54043fc88c366be67c424ad901819b6688d11c91f3d3a328fdb04ddf5cf0eab363512a412 SHA512 f55505bbe0da2a06053d94ee895a3e610a8d4ab5a2283ccff6a5a0c6a8ec011f5f286ab93e117cc340f55f056c7cdcb5752cc798e9d8e18fb5ab17f27f4a64c2
diff --git a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.5.0.ebuild b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.5.0.ebuild
new file mode 100644
index 000000000000..83a5d260bb3a
--- /dev/null
+++ b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.5.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN=${PN/-stub/}
+MY_P=${P/-stub/}
+
+DUNE_PKG_NAME="gettext-stub"
+
+inherit dune
+
+DESCRIPTION="Support for internationalization of OCaml programs using native gettext library"
+HOMEPAGE="https://github.com/gildor478/ocaml-gettext"
+SRC_URI="https://github.com/gildor478/ocaml-gettext/archive/v${PV}.tar.gz
+ -> ${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="LGPL-2.1-with-linking-exception"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~ppc64"
+IUSE="+ocamlopt test"
+RESTRICT="test" # Tests fail.
+
+RDEPEND="
+ ~dev-ml/ocaml-gettext-${PV}:=[ocamlopt?]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ >=dev-ml/dune-3.17
+ dev-ml/cppo
+ dev-ml/dune-configurator
+ test? (
+ dev-ml/ounit2[ocamlopt=]
+ dev-ml/seq[ocamlopt=]
+ )
+"
+
+src_compile() {
+ dune-compile ${DUNE_PKG_NAME}
+}
+
+src_test() {
+ dune-test ${DUNE_PKG_NAME}
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/
@ 2025-03-16 9:53 Alfredo Tupone
0 siblings, 0 replies; 11+ messages in thread
From: Alfredo Tupone @ 2025-03-16 9:53 UTC (permalink / raw
To: gentoo-commits
commit: b08d57df234aa0ba1ad554c39fbec3ca7a3bafdd
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 16 09:52:00 2025 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Mar 16 09:52:37 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b08d57df
dev-ml/ocaml-gettext-stub: add 0.4.2.1, drop 0.5.0
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-ml/ocaml-gettext-stub/Manifest | 2 +-
...-0.5.0.ebuild => ocaml-gettext-stub-0.4.2.1.ebuild} | 18 +++++++-----------
2 files changed, 8 insertions(+), 12 deletions(-)
diff --git a/dev-ml/ocaml-gettext-stub/Manifest b/dev-ml/ocaml-gettext-stub/Manifest
index 7188f561754a..f30813322ac8 100644
--- a/dev-ml/ocaml-gettext-stub/Manifest
+++ b/dev-ml/ocaml-gettext-stub/Manifest
@@ -1,2 +1,2 @@
+DIST ocaml-gettext-0.4.2.1.tar.gz 110349 BLAKE2B 8156d4962838ec752d17844e50f332c03e0de966b7f15a18f740039a5cc7faf4b42733129353f0bb24b9922d61dce078e77f64356a1c587d9f80d8a65cab602d SHA512 659e3b4891ec7bc17f33de072d5625df62e1d522e70ccb912969c0b87145d7d44e20b8547c6513065ca4b87e314b31f4cf8057543d2c9b40f8ee2227df5d1e67
DIST ocaml-gettext-0.4.2.tar.gz 110249 BLAKE2B 54a25ba9f8fb20194fdfaf651586222fab68f927ebfa711812f7c9a387ff40c19e1bf3f63124127356b32b0ca0be2c5ff4e1cdfaf5f3afe690b90c0ca96c470d SHA512 fb89be8d8d9e0ed9327b81a0c81c884ff3f1a97e46b475ef8084abded5c84a256de05d5aa0f42be94f43ab438276a4506af726b6950e4161359a9616fb5832ec
-DIST ocaml-gettext-0.5.0.tar.gz 113204 BLAKE2B c103e461da446eb65adbde33de2c37caf920d08cb334c4889364cbd54043fc88c366be67c424ad901819b6688d11c91f3d3a328fdb04ddf5cf0eab363512a412 SHA512 f55505bbe0da2a06053d94ee895a3e610a8d4ab5a2283ccff6a5a0c6a8ec011f5f286ab93e117cc340f55f056c7cdcb5752cc798e9d8e18fb5ab17f27f4a64c2
diff --git a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.5.0.ebuild b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.1.ebuild
similarity index 68%
rename from dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.5.0.ebuild
rename to dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.1.ebuild
index 83a5d260bb3a..f592818b0a3b 100644
--- a/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.5.0.ebuild
+++ b/dev-ml/ocaml-gettext-stub/ocaml-gettext-stub-0.4.2.1.ebuild
@@ -9,12 +9,13 @@ MY_P=${P/-stub/}
DUNE_PKG_NAME="gettext-stub"
inherit dune
+comId=d566551bc2e2f5e6e61d24e05d314ff57eaea6bf
DESCRIPTION="Support for internationalization of OCaml programs using native gettext library"
HOMEPAGE="https://github.com/gildor478/ocaml-gettext"
-SRC_URI="https://github.com/gildor478/ocaml-gettext/archive/v${PV}.tar.gz
+SRC_URI="https://github.com/gildor478/ocaml-gettext/archive/${comId}.tar.gz
-> ${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_PN}-${PV}"
+S="${WORKDIR}"/${MY_PN}-${comId}
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
@@ -23,23 +24,18 @@ IUSE="+ocamlopt test"
RESTRICT="test" # Tests fail.
RDEPEND="
- ~dev-ml/ocaml-gettext-${PV}:=[ocamlopt?]
+ >=dev-lang/ocaml-4.14.0:=[ocamlopt?]
+ ~dev-ml/ocaml-gettext-${PV}:=
"
DEPEND="${RDEPEND}"
BDEPEND="
- >=dev-ml/dune-3.17
- dev-ml/cppo
- dev-ml/dune-configurator
+ >=dev-ml/dune-configurator-3.17.0
test? (
+ >=dev-ml/ocaml-fileutils-0.6.6
dev-ml/ounit2[ocamlopt=]
- dev-ml/seq[ocamlopt=]
)
"
src_compile() {
dune-compile ${DUNE_PKG_NAME}
}
-
-src_test() {
- dune-test ${DUNE_PKG_NAME}
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-03-16 9:53 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-23 23:47 [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2025-03-16 9:53 Alfredo Tupone
2025-03-14 10:56 Alfredo Tupone
2023-12-02 10:56 Arthur Zamarin
2023-04-19 15:47 Maciej Barć
2021-03-13 15:26 Sam James
2021-02-03 12:53 Sam James
2021-02-02 4:17 Sam James
2021-01-27 3:28 Sam James
2021-01-22 3:34 Sam James
2021-01-22 3:34 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox