* [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/
@ 2017-07-23 13:15 Akinori Hattori
0 siblings, 0 replies; 9+ messages in thread
From: Akinori Hattori @ 2017-07-23 13:15 UTC (permalink / raw
To: gentoo-commits
commit: 88b9f6e8f3dd5472048f5d9d749d866b6f11d551
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 23 13:10:01 2017 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Sun Jul 23 13:15:23 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88b9f6e8
app-i18n/canfep: fix build with sys-libs/ncurses[tinfo]
Package-Manager: Portage-2.3.6, Repoman-2.3.1
app-i18n/canfep/canfep-1.0.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/app-i18n/canfep/canfep-1.0.ebuild b/app-i18n/canfep/canfep-1.0.ebuild
index a872be23a4f..a290748825d 100644
--- a/app-i18n/canfep/canfep-1.0.ebuild
+++ b/app-i18n/canfep/canfep-1.0.ebuild
@@ -17,7 +17,8 @@ IUSE="unicode"
RDEPEND="app-i18n/canna
sys-libs/ncurses:="
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
src_prepare() {
use unicode && eapply "${DISTDIR}"/${PN}_utf8.diff
@@ -29,7 +30,7 @@ src_prepare() {
src_compile() {
emake \
CC="$(tc-getCXX)" \
- LIBS="-lcanna -lncurses"
+ LIBS="-lcanna $(pkg-config --libs ncurses)"
}
src_install() {
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/
@ 2017-07-23 13:15 Akinori Hattori
0 siblings, 0 replies; 9+ messages in thread
From: Akinori Hattori @ 2017-07-23 13:15 UTC (permalink / raw
To: gentoo-commits
commit: cad40586dae5e607ec4b850405d211048952fc01
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 23 13:07:19 2017 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Sun Jul 23 13:15:22 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cad40586
app-i18n/canfep: update to EAPI 6
Package-Manager: Portage-2.3.6, Repoman-2.3.1
app-i18n/canfep/canfep-1.0.ebuild | 28 ++++++++++++++--------------
app-i18n/canfep/metadata.xml | 8 ++++----
2 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/app-i18n/canfep/canfep-1.0.ebuild b/app-i18n/canfep/canfep-1.0.ebuild
index c389556651a..a872be23a4f 100644
--- a/app-i18n/canfep/canfep-1.0.ebuild
+++ b/app-i18n/canfep/canfep-1.0.ebuild
@@ -1,38 +1,38 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
+EAPI="6"
-inherit eutils toolchain-funcs
+inherit toolchain-funcs
DESCRIPTION="Canna Japanese kana-kanji frontend processor on console"
HOMEPAGE="http://www.geocities.co.jp/SiliconValley-Bay/7584/canfep/"
-SRC_URI="http://www.geocities.co.jp/SiliconValley-Bay/7584/canfep/${P}.tar.gz
- unicode? ( http://hp.vector.co.jp/authors/VA020411/patches/canfep_utf8.diff )"
+SRC_URI="http://www.geocities.co.jp/SiliconValley-Bay/7584/${PN}/${P}.tar.gz
+ unicode? ( http://hp.vector.co.jp/authors/VA020411/patches/${PN}_utf8.diff )"
LICENSE="canfep"
SLOT="0"
KEYWORDS="-alpha ~amd64 ppc ~sparc x86"
IUSE="unicode"
-DEPEND="app-i18n/canna
- sys-libs/ncurses"
-RDEPEND="app-i18n/canna"
+RDEPEND="app-i18n/canna
+ sys-libs/ncurses:="
+DEPEND="${RDEPEND}"
src_prepare() {
- use unicode && epatch "${DISTDIR}"/canfep_utf8.diff
- sed -i "s:\$(CFLAGS):\$(CFLAGS) \$(LDFLAGS):" Makefile || die
+ use unicode && eapply "${DISTDIR}"/${PN}_utf8.diff
+ sed -i 's/$(CFLAGS)/$(CFLAGS) $(LDFLAGS)/' Makefile
+
+ default
}
src_compile() {
emake \
CC="$(tc-getCXX)" \
- CFLAGS="${CFLAGS}" \
- LDFLAGS="${LDFLAGS}" \
LIBS="-lcanna -lncurses"
}
src_install() {
- dobin canfep
- dodoc 00changes 00readme
+ dobin ${PN}
+ dodoc 00{changes,readme}
}
diff --git a/app-i18n/canfep/metadata.xml b/app-i18n/canfep/metadata.xml
index c921b96adf6..e1a49f49888 100644
--- a/app-i18n/canfep/metadata.xml
+++ b/app-i18n/canfep/metadata.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="project">
- <email>cjk@gentoo.org</email>
- <name>Cjk</name>
-</maintainer>
+ <maintainer type="project">
+ <email>cjk@gentoo.org</email>
+ <name>Cjk</name>
+ </maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/
@ 2019-10-27 8:44 Akinori Hattori
0 siblings, 0 replies; 9+ messages in thread
From: Akinori Hattori @ 2019-10-27 8:44 UTC (permalink / raw
To: gentoo-commits
commit: 0ebd67475ed70b2a0552451d12741f0c3cb0cbca
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 27 08:41:28 2019 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Sun Oct 27 08:44:24 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ebd6747
app-i18n/canfep: update HOMEPAGE and SRC_URI
Closes: https://bugs.gentoo.org/684874
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
app-i18n/canfep/canfep-1.0-r1.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/app-i18n/canfep/canfep-1.0-r1.ebuild b/app-i18n/canfep/canfep-1.0-r1.ebuild
index 07fdf6237f4..2066d5612ab 100644
--- a/app-i18n/canfep/canfep-1.0-r1.ebuild
+++ b/app-i18n/canfep/canfep-1.0-r1.ebuild
@@ -6,8 +6,9 @@ EAPI="6"
inherit toolchain-funcs
DESCRIPTION="Canna Japanese kana-kanji frontend processor on console"
-HOMEPAGE="http://www.geocities.co.jp/SiliconValley-Bay/7584/canfep/"
-SRC_URI="http://www.geocities.co.jp/SiliconValley-Bay/7584/${PN}/${P}.tar.gz
+#HOMEPAGE="http://www.geocities.co.jp/SiliconValley-Bay/7584/canfep/"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
+SRC_URI="mirror://gentoo/${P}.tar.gz
unicode? ( http://hp.vector.co.jp/authors/VA020411/patches/${PN}_utf8.diff )"
LICENSE="canfep"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/
@ 2019-10-27 8:44 Akinori Hattori
0 siblings, 0 replies; 9+ messages in thread
From: Akinori Hattori @ 2019-10-27 8:44 UTC (permalink / raw
To: gentoo-commits
commit: e31b4182ed36959e6647d0ab227c175fbb957b17
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 27 08:39:13 2019 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Sun Oct 27 08:44:23 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e31b4182
app-i18n/canfep: use tc-getPKG_CONFIG
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
app-i18n/canfep/canfep-1.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-i18n/canfep/canfep-1.0-r1.ebuild b/app-i18n/canfep/canfep-1.0-r1.ebuild
index d46bf325837..07fdf6237f4 100644
--- a/app-i18n/canfep/canfep-1.0-r1.ebuild
+++ b/app-i18n/canfep/canfep-1.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -35,7 +35,7 @@ src_prepare() {
src_compile() {
emake \
CC="$(tc-getCXX)" \
- LIBS="-lcanna $(pkg-config --libs ncurses)"
+ LIBS="-lcanna $($(tc-getPKG_CONFIG) --libs ncurses)"
}
src_install() {
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/
@ 2019-10-27 8:44 Akinori Hattori
0 siblings, 0 replies; 9+ messages in thread
From: Akinori Hattori @ 2019-10-27 8:44 UTC (permalink / raw
To: gentoo-commits
commit: c3c3f60b59e9901e8cb5d5278b2ddaa71c9f4f7e
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 27 08:43:46 2019 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Sun Oct 27 08:44:25 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3c3f60b
app-i18n/canfep: amd64/x86 stable
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
app-i18n/canfep/canfep-1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-i18n/canfep/canfep-1.0-r1.ebuild b/app-i18n/canfep/canfep-1.0-r1.ebuild
index 2066d5612ab..c78e54ada07 100644
--- a/app-i18n/canfep/canfep-1.0-r1.ebuild
+++ b/app-i18n/canfep/canfep-1.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gentoo/${P}.tar.gz
LICENSE="canfep"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
IUSE="unicode"
RDEPEND="app-i18n/canna
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/
@ 2020-08-20 13:31 Akinori Hattori
0 siblings, 0 replies; 9+ messages in thread
From: Akinori Hattori @ 2020-08-20 13:31 UTC (permalink / raw
To: gentoo-commits
commit: 1fd0f834aad102eb064146cb74ed64c661ff3f49
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 20 13:30:28 2020 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Thu Aug 20 13:30:28 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fd0f834
app-i18n/canfep: update to EAPI 7
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
app-i18n/canfep/canfep-1.0-r1.ebuild | 6 +++---
app-i18n/canfep/canfep-1.0.ebuild | 13 +++++++------
2 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/app-i18n/canfep/canfep-1.0-r1.ebuild b/app-i18n/canfep/canfep-1.0-r1.ebuild
index 47db7408be3..df6da3e787d 100644
--- a/app-i18n/canfep/canfep-1.0-r1.ebuild
+++ b/app-i18n/canfep/canfep-1.0-r1.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="6"
+EAPI="7"
inherit toolchain-funcs
@@ -18,8 +18,8 @@ IUSE="unicode"
RDEPEND="app-i18n/canna
sys-libs/ncurses:="
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${PN}-posix-pty.patch
diff --git a/app-i18n/canfep/canfep-1.0.ebuild b/app-i18n/canfep/canfep-1.0.ebuild
index 318da4e8944..b2f558da064 100644
--- a/app-i18n/canfep/canfep-1.0.ebuild
+++ b/app-i18n/canfep/canfep-1.0.ebuild
@@ -1,13 +1,14 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="6"
+EAPI="7"
inherit toolchain-funcs
DESCRIPTION="Canna Japanese kana-kanji frontend processor on console"
-HOMEPAGE="http://www.geocities.co.jp/SiliconValley-Bay/7584/canfep/"
-SRC_URI="http://www.geocities.co.jp/SiliconValley-Bay/7584/${PN}/${P}.tar.gz
+#HOMEPAGE="http://www.geocities.co.jp/SiliconValley-Bay/7584/canfep/"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
+SRC_URI="mirror://gentoo/${P}.tar.gz
unicode? ( http://hp.vector.co.jp/authors/VA020411/patches/${PN}_utf8.diff )"
LICENSE="canfep"
@@ -17,8 +18,8 @@ IUSE="unicode"
RDEPEND="app-i18n/canna
sys-libs/ncurses:="
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
src_prepare() {
use unicode && eapply "${DISTDIR}"/${PN}_utf8.diff
@@ -31,7 +32,7 @@ src_compile() {
emake \
CC="$(tc-getCXX)" \
CFLAGS="${CXXFLAGS}" \
- LIBS="-lcanna $(pkg-config --libs ncurses)"
+ LIBS="-lcanna $($(tc-getPKG_CONFIG) --libs ncurses)"
}
src_install() {
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/
@ 2020-08-20 13:31 Akinori Hattori
0 siblings, 0 replies; 9+ messages in thread
From: Akinori Hattori @ 2020-08-20 13:31 UTC (permalink / raw
To: gentoo-commits
commit: c76d8f2283b24bedcdcf7d478412adc6db54bdb2
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 20 13:27:02 2020 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Thu Aug 20 13:27:02 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c76d8f22
app-i18n/canfep: respect CXXFLAGS
Closes: https://bugs.gentoo.org/734236
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
app-i18n/canfep/canfep-1.0-r1.ebuild | 3 ++-
app-i18n/canfep/canfep-1.0.ebuild | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/app-i18n/canfep/canfep-1.0-r1.ebuild b/app-i18n/canfep/canfep-1.0-r1.ebuild
index c78e54ada07..47db7408be3 100644
--- a/app-i18n/canfep/canfep-1.0-r1.ebuild
+++ b/app-i18n/canfep/canfep-1.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -36,6 +36,7 @@ src_prepare() {
src_compile() {
emake \
CC="$(tc-getCXX)" \
+ CFLAGS="${CXXFLAGS}" \
LIBS="-lcanna $($(tc-getPKG_CONFIG) --libs ncurses)"
}
diff --git a/app-i18n/canfep/canfep-1.0.ebuild b/app-i18n/canfep/canfep-1.0.ebuild
index a290748825d..318da4e8944 100644
--- a/app-i18n/canfep/canfep-1.0.ebuild
+++ b/app-i18n/canfep/canfep-1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -30,6 +30,7 @@ src_prepare() {
src_compile() {
emake \
CC="$(tc-getCXX)" \
+ CFLAGS="${CXXFLAGS}" \
LIBS="-lcanna $(pkg-config --libs ncurses)"
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/
@ 2020-08-23 8:17 Sergei Trofimovich
0 siblings, 0 replies; 9+ messages in thread
From: Sergei Trofimovich @ 2020-08-23 8:17 UTC (permalink / raw
To: gentoo-commits
commit: b93e20ac223e498ef65e887942165ac34c6dc690
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 23 08:17:41 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Aug 23 08:17:41 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b93e20ac
app-i18n/canfep: stable 1.0-r1 for ppc
stable wrt bug #
Tested-by: ernsteiswuerfel
Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
app-i18n/canfep/canfep-1.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-i18n/canfep/canfep-1.0-r1.ebuild b/app-i18n/canfep/canfep-1.0-r1.ebuild
index df6da3e787d..4b253181883 100644
--- a/app-i18n/canfep/canfep-1.0-r1.ebuild
+++ b/app-i18n/canfep/canfep-1.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gentoo/${P}.tar.gz
LICENSE="canfep"
SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ppc ~sparc x86"
IUSE="unicode"
RDEPEND="app-i18n/canna
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/
@ 2020-08-23 13:37 Akinori Hattori
0 siblings, 0 replies; 9+ messages in thread
From: Akinori Hattori @ 2020-08-23 13:37 UTC (permalink / raw
To: gentoo-commits
commit: d05f94ef97f0fcddfb81c041e993d52b37a05de7
Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 23 13:36:48 2020 +0000
Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Sun Aug 23 13:36:48 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d05f94ef
app-i18n/canfep: drop old
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
app-i18n/canfep/canfep-1.0.ebuild | 41 ---------------------------------------
1 file changed, 41 deletions(-)
diff --git a/app-i18n/canfep/canfep-1.0.ebuild b/app-i18n/canfep/canfep-1.0.ebuild
deleted file mode 100644
index b2f558da064..00000000000
--- a/app-i18n/canfep/canfep-1.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit toolchain-funcs
-
-DESCRIPTION="Canna Japanese kana-kanji frontend processor on console"
-#HOMEPAGE="http://www.geocities.co.jp/SiliconValley-Bay/7584/canfep/"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
-SRC_URI="mirror://gentoo/${P}.tar.gz
- unicode? ( http://hp.vector.co.jp/authors/VA020411/patches/${PN}_utf8.diff )"
-
-LICENSE="canfep"
-SLOT="0"
-KEYWORDS="-alpha ~amd64 ppc ~sparc x86"
-IUSE="unicode"
-
-RDEPEND="app-i18n/canna
- sys-libs/ncurses:="
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
- use unicode && eapply "${DISTDIR}"/${PN}_utf8.diff
- sed -i 's/$(CFLAGS)/$(CFLAGS) $(LDFLAGS)/' Makefile
-
- default
-}
-
-src_compile() {
- emake \
- CC="$(tc-getCXX)" \
- CFLAGS="${CXXFLAGS}" \
- LIBS="-lcanna $($(tc-getPKG_CONFIG) --libs ncurses)"
-}
-
-src_install() {
- dobin ${PN}
- dodoc 00{changes,readme}
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2020-08-23 13:37 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-27 8:44 [gentoo-commits] repo/gentoo:master commit in: app-i18n/canfep/ Akinori Hattori
-- strict thread matches above, loose matches on Subject: below --
2020-08-23 13:37 Akinori Hattori
2020-08-23 8:17 Sergei Trofimovich
2020-08-20 13:31 Akinori Hattori
2020-08-20 13:31 Akinori Hattori
2019-10-27 8:44 Akinori Hattori
2019-10-27 8:44 Akinori Hattori
2017-07-23 13:15 Akinori Hattori
2017-07-23 13:15 Akinori Hattori
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox