* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/
@ 2021-01-22 3:34 Sam James
0 siblings, 0 replies; 9+ 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] 9+ 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; 9+ 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] 9+ 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; 9+ 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] 9+ 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; 9+ 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] 9+ 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; 9+ 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] 9+ 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; 9+ 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] 9+ 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; 9+ 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] 9+ 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; 9+ 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] 9+ 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; 9+ 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] 9+ messages in thread
end of thread, other threads:[~2023-12-02 10:56 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-03 12:53 [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-gettext-stub/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-12-02 10:56 Arthur Zamarin
2023-04-19 15:47 Maciej Barć
2023-02-23 23:47 Sam James
2021-03-13 15:26 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