* [gentoo-commits] repo/gentoo:master commit in: net-mail/mess822/
@ 2020-09-16 22:20 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2020-09-16 22:20 UTC (permalink / raw
To: gentoo-commits
commit: 9276734f40a7a7cc209301d3dec96cd254f2ede8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 16 22:20:14 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 16 22:20:22 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9276734f
net-mail/mess822: port to EAPI 7
Closes: https://bugs.gentoo.org/725036
Closes: https://bugs.gentoo.org/725104
Closes: https://bugs.gentoo.org/742224
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-mail/mess822/mess822-0.58-r2.ebuild | 27 +++++++++++++++++----------
1 file changed, 17 insertions(+), 10 deletions(-)
diff --git a/net-mail/mess822/mess822-0.58-r2.ebuild b/net-mail/mess822/mess822-0.58-r2.ebuild
index 95c6b44751e..eb062590f36 100644
--- a/net-mail/mess822/mess822-0.58-r2.ebuild
+++ b/net-mail/mess822/mess822-0.58-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
+EAPI=7
-inherit multilib toolchain-funcs eutils
+inherit toolchain-funcs
DESCRIPTION="Collection of utilities for parsing Internet mail messages"
SRC_URI="http://cr.yp.to/software/${P}.tar.gz"
@@ -18,15 +18,22 @@ RDEPEND=">=sys-apps/sed-4"
DEPEND="${RDEPEND}"
RESTRICT="test"
+PATCHES=(
+ "${FILESDIR}"/${P}-implicit.patch
+)
+
src_prepare() {
+ default
+
echo "$(tc-getCC) ${CFLAGS}" > conf-cc
echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
echo "/usr" > conf-home
# fix errno.h problem; bug #26165
- sed -i 's/^extern int errno;/#include <errno.h>/' error.h
+ sed -i 's/^extern int errno;/#include <errno.h>/' error.h || die
- epatch "${FILESDIR}"/${P}-implicit.patch
+ sed -i -e "s/ar/$(tc-getAR)/" make-makelib.sh || die
+ sed -i -e "s/ranlib/$(tc-getRANLIB)/" make-makelib.sh || die
}
src_install() {
@@ -35,16 +42,16 @@ src_install() {
# Now that the commands are compiled, update the conf-home file to point
# to the installation image directory.
- echo "${D}/usr/" > conf-home
- sed -i -e "s:\"/etc\":\"${D}/etc\":" hier.c || die "sed hier.c failed"
+ echo "${ED}/usr/" > conf-home
+ sed -i -e "s:\"/etc\":\"${ED}/etc\":" hier.c || die "sed hier.c failed"
emake setup
# Move the man pages into /usr/share/man
- mv "${D}/usr/man" "${D}/usr/share/"
+ mv "${ED}/usr/man" "${ED}/usr/share/" || die
dodir /usr/$(get_libdir)
- mv "${D}/usr/lib/${PN}.a" "${D}/usr/$(get_libdir)/${PN}.a"
- rmdir "${D}/usr/lib"
+ mv "${ED}/usr/lib/${PN}.a" "${ED}/usr/$(get_libdir)/${PN}.a" || die
+ rmdir "${ED}/usr/lib" || die
dodoc BLURB CHANGES INSTALL README THANKS TODO VERSION
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-mail/mess822/
@ 2020-09-19 17:59 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2020-09-19 17:59 UTC (permalink / raw
To: gentoo-commits
commit: 7c5dfe07f9351075994b999efec21b2b818c0d6b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 19 17:57:02 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Sep 19 17:59:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c5dfe07
net-mail/mess822: extra || die
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-mail/mess822/mess822-0.58-r2.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/net-mail/mess822/mess822-0.58-r2.ebuild b/net-mail/mess822/mess822-0.58-r2.ebuild
index eb062590f36..f4e4688dd5b 100644
--- a/net-mail/mess822/mess822-0.58-r2.ebuild
+++ b/net-mail/mess822/mess822-0.58-r2.ebuild
@@ -25,9 +25,9 @@ PATCHES=(
src_prepare() {
default
- echo "$(tc-getCC) ${CFLAGS}" > conf-cc
- echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
- echo "/usr" > conf-home
+ echo "$(tc-getCC) ${CFLAGS}" > conf-cc || die
+ echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die
+ echo "/usr" > conf-home || die
# fix errno.h problem; bug #26165
sed -i 's/^extern int errno;/#include <errno.h>/' error.h || die
@@ -42,7 +42,7 @@ src_install() {
# Now that the commands are compiled, update the conf-home file to point
# to the installation image directory.
- echo "${ED}/usr/" > conf-home
+ echo "${ED}/usr/" > conf-home || die
sed -i -e "s:\"/etc\":\"${ED}/etc\":" hier.c || die "sed hier.c failed"
emake setup
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-mail/mess822/
@ 2022-12-07 13:52 David Seifert
0 siblings, 0 replies; 9+ messages in thread
From: David Seifert @ 2022-12-07 13:52 UTC (permalink / raw
To: gentoo-commits
commit: 81943f05b5675d832111207ca2a0bb506497a81a
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 7 13:51:49 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Dec 7 13:51:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81943f05
net-mail/mess822: remove sys-apps/sed from DEPEND
Signed-off-by: David Seifert <soap <AT> gentoo.org>
net-mail/mess822/mess822-0.58-r2.ebuild | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/net-mail/mess822/mess822-0.58-r2.ebuild b/net-mail/mess822/mess822-0.58-r2.ebuild
index f4e4688dd5b7..e915480ec24b 100644
--- a/net-mail/mess822/mess822-0.58-r2.ebuild
+++ b/net-mail/mess822/mess822-0.58-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -13,11 +13,10 @@ SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
LICENSE="public-domain"
-
-RDEPEND=">=sys-apps/sed-4"
-DEPEND="${RDEPEND}"
RESTRICT="test"
+RDEPEND="sys-apps/sed"
+
PATCHES=(
"${FILESDIR}"/${P}-implicit.patch
)
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-mail/mess822/
@ 2024-08-07 19:34 Petr Vaněk
0 siblings, 0 replies; 9+ messages in thread
From: Petr Vaněk @ 2024-08-07 19:34 UTC (permalink / raw
To: gentoo-commits
commit: e0d09d93d567b095c66269d8c4bbe45c66c9a5bd
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 7 15:30:01 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Wed Aug 7 19:32:37 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0d09d93
net-mail/mess822: Fix modern C and other issues
- Modern C issues are fixed by a patch. (bug #883265)
- AR and RANLIB sed script is updated to allow users set them with full
path.
- Enhanced hier.c sed script to modify man page and library locations,
eliminating the need for manual moves in src_install (bug #829200).
This update prevents move failures when get_libdir returns "lib",
which led to a conflict between source and destination paths.
Closes: https://bugs.gentoo.org/829200
Closes: https://bugs.gentoo.org/883265
Closes: https://github.com/gentoo/gentoo/pull/32272
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
net-mail/mess822/Manifest | 1 +
net-mail/mess822/mess822-0.58-r3.ebuild | 33 ++++++++++++++++++---------------
2 files changed, 19 insertions(+), 15 deletions(-)
diff --git a/net-mail/mess822/Manifest b/net-mail/mess822/Manifest
index 776b5f9db09e..aa8db7ce393e 100644
--- a/net-mail/mess822/Manifest
+++ b/net-mail/mess822/Manifest
@@ -1 +1,2 @@
+DIST mess822-0.58-modern-compilers.patch.xz 3056 BLAKE2B 6c812bc0f05f8e03d81b6067d53dd94c4140cd67aeee23a039db5a87057a883e10c5676b7d352074215667c4d161b721d58610e8036ad3f9c9b4282f924a7287 SHA512 9462668e0d16cb0ece4e72beb23a873c47da1478a1f23b971a484af931135dd97e662a517ae91dd434adcef238f49c55bef08c1172188090f65e420d9afe8cf8
DIST mess822-0.58.tar.gz 64287 BLAKE2B d24c7c6c4d3cfcd21166ba9ac2ec72c0a0dbd05fb8329ac04668d9febe8632f63304342642f8c1a3543d4edd94ee5bcc7a2688ccc6f4afc12bfbd8d38eaccea5 SHA512 5fb30f06dfa08f60dc8760f9c5d692e59397ff848441bc94313a079bac8fb53b779133b48abae9b487dff6fbb277d5210a9690a138366bf4d34f052d661be65e
diff --git a/net-mail/mess822/mess822-0.58-r3.ebuild b/net-mail/mess822/mess822-0.58-r3.ebuild
index 7c5b7b7b6029..38d224864552 100644
--- a/net-mail/mess822/mess822-0.58-r3.ebuild
+++ b/net-mail/mess822/mess822-0.58-r3.ebuild
@@ -6,8 +6,11 @@ EAPI=8
inherit toolchain-funcs
DESCRIPTION="Collection of utilities for parsing Internet mail messages"
-SRC_URI="http://cr.yp.to/software/${P}.tar.gz"
HOMEPAGE="http://cr.yp.to/mess822.html"
+SRC_URI="
+ http://cr.yp.to/software/${P}.tar.gz
+ https://dev.gentoo.org/~arkamar/distfiles/${P}-modern-compilers.patch.xz
+"
LICENSE="public-domain"
SLOT="0"
@@ -18,7 +21,7 @@ RESTRICT="test"
RDEPEND="sys-apps/sed"
PATCHES=(
- "${FILESDIR}"/${P}-implicit.patch
+ "${WORKDIR}/${P}-modern-compilers.patch"
)
src_prepare() {
@@ -28,11 +31,11 @@ src_prepare() {
echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die
echo "/usr" > conf-home || die
- # fix errno.h problem; bug #26165
- sed -i 's/^extern int errno;/#include <errno.h>/' error.h || die
-
- sed -i -e "s/ar/$(tc-getAR)/" make-makelib.sh || die
- sed -i -e "s/ranlib/$(tc-getRANLIB)/" make-makelib.sh || die
+ local sed_args=(
+ -e "s:ar:$(tc-getAR):"
+ -e "s:ranlib:$(tc-getRANLIB):"
+ )
+ sed -i "${sed_args[@]}" make-makelib.sh || die "sed make-makelib.sh failed"
}
src_install() {
@@ -42,15 +45,15 @@ src_install() {
# Now that the commands are compiled, update the conf-home file to point
# to the installation image directory.
echo "${ED}/usr/" > conf-home || die
- sed -i -e "s:\"/etc\":\"${ED}/etc\":" hier.c || die "sed hier.c failed"
- emake setup
+ local sed_args=(
+ -e "s:\"/etc\":\"${ED}/etc\":"
+ -e "s:lib:$(get_libdir):"
+ -e "s:man:share/man:"
+ )
+ sed -i "${sed_args[@]}" hier.c || die "sed hier.c failed"
- # Move the man pages into /usr/share/man
- mv "${ED}/usr/man" "${ED}/usr/share/" || die
+ emake setup
- dodir /usr/$(get_libdir)
- mv "${ED}/usr/lib/${PN}.a" "${ED}/usr/$(get_libdir)/${PN}.a" || die
- rmdir "${ED}/usr/lib" || die
- dodoc BLURB CHANGES INSTALL README THANKS TODO VERSION
+ einstalldocs
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-mail/mess822/
@ 2024-08-07 19:34 Petr Vaněk
0 siblings, 0 replies; 9+ messages in thread
From: Petr Vaněk @ 2024-08-07 19:34 UTC (permalink / raw
To: gentoo-commits
commit: 7279d36da8233714ed49d361d774d11614e15bb7
Author: Filip Kobierski <fkobi <AT> pm <DOT> me>
AuthorDate: Fri Aug 2 10:38:30 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Wed Aug 7 19:32:30 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7279d36d
net-mail/mess822: bump EAPI, fix pkgcheck issues
Signed-off-by: Filip Kobierski <fkobi <AT> pm.me>
Closes: https://github.com/gentoo/gentoo/pull/37861
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
net-mail/mess822/mess822-0.58-r3.ebuild | 56 +++++++++++++++++++++++++++++++++
1 file changed, 56 insertions(+)
diff --git a/net-mail/mess822/mess822-0.58-r3.ebuild b/net-mail/mess822/mess822-0.58-r3.ebuild
new file mode 100644
index 000000000000..7c5b7b7b6029
--- /dev/null
+++ b/net-mail/mess822/mess822-0.58-r3.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Collection of utilities for parsing Internet mail messages"
+SRC_URI="http://cr.yp.to/software/${P}.tar.gz"
+HOMEPAGE="http://cr.yp.to/mess822.html"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+RESTRICT="test"
+
+RDEPEND="sys-apps/sed"
+
+PATCHES=(
+ "${FILESDIR}"/${P}-implicit.patch
+)
+
+src_prepare() {
+ default
+
+ echo "$(tc-getCC) ${CFLAGS}" > conf-cc || die
+ echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die
+ echo "/usr" > conf-home || die
+
+ # fix errno.h problem; bug #26165
+ sed -i 's/^extern int errno;/#include <errno.h>/' error.h || die
+
+ sed -i -e "s/ar/$(tc-getAR)/" make-makelib.sh || die
+ sed -i -e "s/ranlib/$(tc-getRANLIB)/" make-makelib.sh || die
+}
+
+src_install() {
+ dodir /etc
+ dodir /usr/share
+
+ # Now that the commands are compiled, update the conf-home file to point
+ # to the installation image directory.
+ echo "${ED}/usr/" > conf-home || die
+ sed -i -e "s:\"/etc\":\"${ED}/etc\":" hier.c || die "sed hier.c failed"
+
+ emake setup
+
+ # Move the man pages into /usr/share/man
+ mv "${ED}/usr/man" "${ED}/usr/share/" || die
+
+ dodir /usr/$(get_libdir)
+ mv "${ED}/usr/lib/${PN}.a" "${ED}/usr/$(get_libdir)/${PN}.a" || die
+ rmdir "${ED}/usr/lib" || die
+ dodoc BLURB CHANGES INSTALL README THANKS TODO VERSION
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-mail/mess822/
@ 2024-08-07 19:34 Petr Vaněk
0 siblings, 0 replies; 9+ messages in thread
From: Petr Vaněk @ 2024-08-07 19:34 UTC (permalink / raw
To: gentoo-commits
commit: 79c85b7bc664cc7e88c6627a2de434cc1665dbc0
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 7 15:57:16 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Wed Aug 7 19:32:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79c85b7b
net-mail/mess822: update HOMEPAGE, SRC_URI
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
net-mail/mess822/mess822-0.58-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-mail/mess822/mess822-0.58-r3.ebuild b/net-mail/mess822/mess822-0.58-r3.ebuild
index 38d224864552..4c134793ee62 100644
--- a/net-mail/mess822/mess822-0.58-r3.ebuild
+++ b/net-mail/mess822/mess822-0.58-r3.ebuild
@@ -6,9 +6,9 @@ EAPI=8
inherit toolchain-funcs
DESCRIPTION="Collection of utilities for parsing Internet mail messages"
-HOMEPAGE="http://cr.yp.to/mess822.html"
+HOMEPAGE="https://cr.yp.to/mess822.html"
SRC_URI="
- http://cr.yp.to/software/${P}.tar.gz
+ https://cr.yp.to/software/${P}.tar.gz
https://dev.gentoo.org/~arkamar/distfiles/${P}-modern-compilers.patch.xz
"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-mail/mess822/
@ 2024-09-09 21:08 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2024-09-09 21:08 UTC (permalink / raw
To: gentoo-commits
commit: 65287372175513a6f6b7c0d08b1ac3b7ffe19920
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 9 21:08:29 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 9 21:08:29 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65287372
net-mail/mess822: Stabilize 0.58-r3 amd64, #939393
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-mail/mess822/mess822-0.58-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-mail/mess822/mess822-0.58-r3.ebuild b/net-mail/mess822/mess822-0.58-r3.ebuild
index ab72bebf21fa..e6be67593c7c 100644
--- a/net-mail/mess822/mess822-0.58-r3.ebuild
+++ b/net-mail/mess822/mess822-0.58-r3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
RESTRICT="test"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-mail/mess822/
@ 2024-09-09 21:08 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2024-09-09 21:08 UTC (permalink / raw
To: gentoo-commits
commit: 0e1ba23d8a3d2104e706bca958a0c414e5977a54
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 9 21:08:28 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 9 21:08:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e1ba23d
net-mail/mess822: Stabilize 0.58-r3 x86, #939393
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-mail/mess822/mess822-0.58-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-mail/mess822/mess822-0.58-r3.ebuild b/net-mail/mess822/mess822-0.58-r3.ebuild
index 4c134793ee62..ab72bebf21fa 100644
--- a/net-mail/mess822/mess822-0.58-r3.ebuild
+++ b/net-mail/mess822/mess822-0.58-r3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
RESTRICT="test"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-mail/mess822/
@ 2024-09-12 12:27 Arthur Zamarin
0 siblings, 0 replies; 9+ messages in thread
From: Arthur Zamarin @ 2024-09-12 12:27 UTC (permalink / raw
To: gentoo-commits
commit: 1d550f23e291382ca59dd35484e0e46e1129b3e6
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 12 12:27:30 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 12 12:27:30 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d550f23
net-mail/mess822: Stabilize 0.58-r3 ppc, #939393
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-mail/mess822/mess822-0.58-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-mail/mess822/mess822-0.58-r3.ebuild b/net-mail/mess822/mess822-0.58-r3.ebuild
index e6be67593c7c..601120d52ef7 100644
--- a/net-mail/mess822/mess822-0.58-r3.ebuild
+++ b/net-mail/mess822/mess822-0.58-r3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
RESTRICT="test"
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-09-12 12:27 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-07 19:34 [gentoo-commits] repo/gentoo:master commit in: net-mail/mess822/ Petr Vaněk
-- strict thread matches above, loose matches on Subject: below --
2024-09-12 12:27 Arthur Zamarin
2024-09-09 21:08 Sam James
2024-09-09 21:08 Sam James
2024-08-07 19:34 Petr Vaněk
2024-08-07 19:34 Petr Vaněk
2022-12-07 13:52 David Seifert
2020-09-19 17:59 Sam James
2020-09-16 22:20 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox