public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/FP16/
@ 2022-05-16 13:14 Alfredo Tupone
  0 siblings, 0 replies; 8+ messages in thread
From: Alfredo Tupone @ 2022-05-16 13:14 UTC (permalink / raw
  To: gentoo-commits

commit:     78812ee4feafba07e463e940b72255c508d1dfd8
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Mon May 16 13:13:49 2022 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Mon May 16 13:13:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78812ee4

dev-libs/FP16: add PeachPy depend

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 ...2021.03.20.ebuild => FP16-2021.03.20-r1.ebuild} | 23 ++++++++++++++++++++--
 1 file changed, 21 insertions(+), 2 deletions(-)

diff --git a/dev-libs/FP16/FP16-2021.03.20.ebuild b/dev-libs/FP16/FP16-2021.03.20-r1.ebuild
similarity index 63%
rename from dev-libs/FP16/FP16-2021.03.20.ebuild
rename to dev-libs/FP16/FP16-2021.03.20-r1.ebuild
index 160c3c91f429..4fb39fced810 100644
--- a/dev-libs/FP16/FP16-2021.03.20.ebuild
+++ b/dev-libs/FP16/FP16-2021.03.20-r1.ebuild
@@ -2,9 +2,11 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-inherit cmake
+PYTHON_COMPAT=( python3_{8,9,10,11} )
+inherit python-r1 cmake
 
 CommitId=0a92994d729ff76a58f692d3028ca1b64b145d91
+
 DESCRIPTION="conversion to/from half-precision floating point formats"
 HOMEPAGE="https://github.com/Maratyszcza/FP16/"
 SRC_URI="https://github.com/Maratyszcza/${PN}/archive/${CommitId}.tar.gz
@@ -14,9 +16,10 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="test"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 DEPEND="dev-libs/psimd"
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND} ${PYTHON_DEPS}"
 BDEPEND="test? ( dev-cpp/gtest )"
 RESTRICT="!test? ( test )"
 
@@ -26,6 +29,12 @@ PATCHES=(
 	"${FILESDIR}"/${P}-gentoo.patch
 )
 
+src_prepare() {
+	cmake_src_prepare
+	mkdir -p module/fp16 || die
+	cp include/fp16/*py module/fp16 || die
+}
+
 src_configure() {
 	local mycmakeargs=(
 		-DFP16_BUILD_BENCHMARKS=OFF
@@ -33,3 +42,13 @@ src_configure() {
 	)
 	cmake_src_configure
 }
+
+python_install() {
+	python_domodule module/fp16
+}
+
+src_install() {
+	cmake_src_install
+	rm "${D}"/usr/include/fp16/*.py || die
+	python_foreach_impl python_install
+}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/FP16/
@ 2022-05-17  6:51 Alfredo Tupone
  0 siblings, 0 replies; 8+ messages in thread
From: Alfredo Tupone @ 2022-05-17  6:51 UTC (permalink / raw
  To: gentoo-commits

commit:     931646e3f0a843dfdb34d7ba78a61f928346842d
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue May 17 06:51:45 2022 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue May 17 06:51:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=931646e3

dev-libs/FP16: add PeachPy deps

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 .../FP16/{FP16-2021.03.20-r1.ebuild => FP16-2021.03.20-r2.ebuild} | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/dev-libs/FP16/FP16-2021.03.20-r1.ebuild b/dev-libs/FP16/FP16-2021.03.20-r2.ebuild
similarity index 90%
rename from dev-libs/FP16/FP16-2021.03.20-r1.ebuild
rename to dev-libs/FP16/FP16-2021.03.20-r2.ebuild
index 4fb39fced810..1673b468cb71 100644
--- a/dev-libs/FP16/FP16-2021.03.20-r1.ebuild
+++ b/dev-libs/FP16/FP16-2021.03.20-r2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-PYTHON_COMPAT=( python3_{8,9,10,11} )
+PYTHON_COMPAT=( python3_{8,9,10} )
 inherit python-r1 cmake
 
 CommitId=0a92994d729ff76a58f692d3028ca1b64b145d91
@@ -19,7 +19,11 @@ IUSE="test"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 DEPEND="dev-libs/psimd"
-RDEPEND="${DEPEND} ${PYTHON_DEPS}"
+RDEPEND="
+	${DEPEND}
+	${PYTHON_DEPS}
+	dev-python/PeachPy[${PYTHON_USEDEP}]
+"
 BDEPEND="test? ( dev-cpp/gtest )"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/FP16/
@ 2022-11-10 16:51 Alfredo Tupone
  0 siblings, 0 replies; 8+ messages in thread
From: Alfredo Tupone @ 2022-11-10 16:51 UTC (permalink / raw
  To: gentoo-commits

commit:     66347a8c14436d17b063118cf4e6111643ffbf38
Author:     Marek Behún <kabel <AT> kernel <DOT> org>
AuthorDate: Thu Nov 10 10:39:00 2022 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Nov 10 16:50:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66347a8c

dev-libs/FP16: Fix install phase for Gentoo Prefix

Use the ED instead of D variable in src_install() to fix the
installation when installing in Gentoo Prefix.

Signed-off-by: Marek Behún <kabel <AT> kernel.org>
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-libs/FP16/FP16-2021.03.20-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/FP16/FP16-2021.03.20-r2.ebuild b/dev-libs/FP16/FP16-2021.03.20-r2.ebuild
index 1673b468cb71..c829131617f1 100644
--- a/dev-libs/FP16/FP16-2021.03.20-r2.ebuild
+++ b/dev-libs/FP16/FP16-2021.03.20-r2.ebuild
@@ -53,6 +53,6 @@ python_install() {
 
 src_install() {
 	cmake_src_install
-	rm "${D}"/usr/include/fp16/*.py || die
+	rm "${ED}"/usr/include/fp16/*.py || die
 	python_foreach_impl python_install
 }


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/FP16/
@ 2023-02-19  9:37 Alfredo Tupone
  0 siblings, 0 replies; 8+ messages in thread
From: Alfredo Tupone @ 2023-02-19  9:37 UTC (permalink / raw
  To: gentoo-commits

commit:     822ef3c169a28216ada4ea08b0cf8a3d09559608
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 19 09:37:01 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Feb 19 09:37:33 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=822ef3c1

dev-libs/FP16: add python 3.11 support

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-libs/FP16/{FP16-2021.03.20-r2.ebuild => FP16-2021.03.20-r3.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/FP16/FP16-2021.03.20-r2.ebuild b/dev-libs/FP16/FP16-2021.03.20-r3.ebuild
similarity index 97%
rename from dev-libs/FP16/FP16-2021.03.20-r2.ebuild
rename to dev-libs/FP16/FP16-2021.03.20-r3.ebuild
index b9dca4b566b5..4e21e1d10fc3 100644
--- a/dev-libs/FP16/FP16-2021.03.20-r2.ebuild
+++ b/dev-libs/FP16/FP16-2021.03.20-r3.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-PYTHON_COMPAT=( python3_{9,10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit python-r1 cmake
 
 CommitId=0a92994d729ff76a58f692d3028ca1b64b145d91


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/FP16/
@ 2023-12-30 18:05 Alfredo Tupone
  0 siblings, 0 replies; 8+ messages in thread
From: Alfredo Tupone @ 2023-12-30 18:05 UTC (permalink / raw
  To: gentoo-commits

commit:     7a957288ed9e62dd092e6c13f6e45a53b145055c
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 30 18:03:18 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Dec 30 18:04:48 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a957288

dev-libs/FP16: enable python3_12

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-libs/FP16/{FP16-2021.03.20-r3.ebuild => FP16-2021.03.20-r4.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/FP16/FP16-2021.03.20-r3.ebuild b/dev-libs/FP16/FP16-2021.03.20-r4.ebuild
similarity index 97%
rename from dev-libs/FP16/FP16-2021.03.20-r3.ebuild
rename to dev-libs/FP16/FP16-2021.03.20-r4.ebuild
index 4e21e1d10fc3..af3be0a34c68 100644
--- a/dev-libs/FP16/FP16-2021.03.20-r3.ebuild
+++ b/dev-libs/FP16/FP16-2021.03.20-r4.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{9..12} )
 inherit python-r1 cmake
 
 CommitId=0a92994d729ff76a58f692d3028ca1b64b145d91


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/FP16/
@ 2025-01-18 20:33 Alfredo Tupone
  0 siblings, 0 replies; 8+ messages in thread
From: Alfredo Tupone @ 2025-01-18 20:33 UTC (permalink / raw
  To: gentoo-commits

commit:     571099294b5332c06e6123ce9f09dc4d169e141a
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 18 20:31:39 2025 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Jan 18 20:32:55 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57109929

dev-libs/FP16: add 2024.05.27

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-libs/FP16/FP16-2024.05.27.ebuild | 58 ++++++++++++++++++++++++++++++++++++
 dev-libs/FP16/Manifest               |  1 +
 2 files changed, 59 insertions(+)

diff --git a/dev-libs/FP16/FP16-2024.05.27.ebuild b/dev-libs/FP16/FP16-2024.05.27.ebuild
new file mode 100644
index 000000000000..083edbf6e0d1
--- /dev/null
+++ b/dev-libs/FP16/FP16-2024.05.27.ebuild
@@ -0,0 +1,58 @@
+# Copyright 2022-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{10..12} )
+inherit python-r1 cmake
+
+CommitId=95163a75c51bc8dc29f72d0d7419ec50132984ff
+
+DESCRIPTION="conversion to/from half-precision floating point formats"
+HOMEPAGE="https://github.com/Maratyszcza/FP16/"
+SRC_URI="https://github.com/Maratyszcza/${PN}/archive/${CommitId}.tar.gz
+	-> ${P}.tar.gz"
+
+S="${WORKDIR}"/${PN}-${CommitId}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="dev-libs/psimd"
+RDEPEND="
+	${DEPEND}
+	${PYTHON_DEPS}
+	dev-python/peachpy[${PYTHON_USEDEP}]
+"
+BDEPEND="test? ( dev-cpp/gtest )"
+RESTRICT="!test? ( test )"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-2021.03.20-gentoo.patch
+)
+
+src_prepare() {
+	cmake_src_prepare
+	mkdir -p module/fp16 || die
+	cp include/fp16/*py module/fp16 || die
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DFP16_BUILD_BENCHMARKS=OFF
+		-DFP16_BUILD_TESTS=$(usex test ON OFF)
+	)
+	cmake_src_configure
+}
+
+python_install() {
+	python_domodule module/fp16
+}
+
+src_install() {
+	cmake_src_install
+	rm "${ED}"/usr/include/fp16/*.py || die
+	python_foreach_impl python_install
+}

diff --git a/dev-libs/FP16/Manifest b/dev-libs/FP16/Manifest
index 4d5e56966264..3fd0b65e93a5 100644
--- a/dev-libs/FP16/Manifest
+++ b/dev-libs/FP16/Manifest
@@ -1,2 +1,3 @@
 DIST FP16-2021.03.20.tar.gz 71228 BLAKE2B e598225032324ffe38db9002e8397e67a713b6323ac57408e7e39e146826b2bb1dab60cd75181a25b1b07958463e3913bbf0e53b23803e53d472fda66b8ba6d5 SHA512 3f094f242425ea37de274eb8539dc5f8ab0c13fd5325d14180ef12e9c04e6002a110d086c4c667f7c8054af337deab096d59482eb95cc8a632c3c412b48e89d1
+DIST FP16-2024.05.27.tar.gz 71220 BLAKE2B 5b101aad7a8339fff400bba1db896c82498832075f3eb00cc6eaf27608ee0988f918956b5a768262b74552a52436200d4acd17f04f4a05060a32512afb26a9ac SHA512 b88fd0a91e6b6873ce5d0e2cd2afd2b8dceb8b17c366240abb8a5e2fe152faea3ba577ef420038c595cab0b61581a70b84c019c825a8dd262b1bee4686843b66
 DIST FP16-2024.06.20.tar.gz 64704 BLAKE2B cd086ca7419aa004c0c4c840227e61612348efb98bdddbf68ef92959267f5f4b0aef55751c5b8a6f50a1f0e7f386e4df5fac273c3849961168e0a5c03faf81e2 SHA512 d3ae46b5b0c944f1d8dcfbb90689266f4abaff3e0b5ef338d5d79193367f06d1bfbb9ad85a5a7685a894daeee6dc73fc5d73631718be1379cc6918655a0289aa


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/FP16/
@ 2025-03-02 13:51 Alfredo Tupone
  0 siblings, 0 replies; 8+ messages in thread
From: Alfredo Tupone @ 2025-03-02 13:51 UTC (permalink / raw
  To: gentoo-commits

commit:     8a459a047a9e99cd10b8ed768e1d38835507c2a1
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  2 13:46:33 2025 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Mar  2 13:50:29 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a459a04

dev-libs/FP16: keyword 2024.06.20 for ~arm64

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-libs/FP16/FP16-2024.06.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/FP16/FP16-2024.06.20.ebuild b/dev-libs/FP16/FP16-2024.06.20.ebuild
index 823daae1f78d..3fe1e5464497 100644
--- a/dev-libs/FP16/FP16-2024.06.20.ebuild
+++ b/dev-libs/FP16/FP16-2024.06.20.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/${PN}-${CommitId}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 IUSE="test"
 
 BDEPEND="test? ( dev-cpp/gtest )"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/FP16/
@ 2025-03-02 13:59 Alfredo Tupone
  0 siblings, 0 replies; 8+ messages in thread
From: Alfredo Tupone @ 2025-03-02 13:59 UTC (permalink / raw
  To: gentoo-commits

commit:     7e398850b7e1a886ac17d7c6df85c1e699d14967
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  2 13:57:49 2025 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Mar  2 13:59:22 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e398850

dev-libs/FP16: drop 2021.03.20-r4

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-libs/FP16/FP16-2021.03.20-r4.ebuild | 58 ---------------------------------
 dev-libs/FP16/Manifest                  |  1 -
 2 files changed, 59 deletions(-)

diff --git a/dev-libs/FP16/FP16-2021.03.20-r4.ebuild b/dev-libs/FP16/FP16-2021.03.20-r4.ebuild
deleted file mode 100644
index 377693665d64..000000000000
--- a/dev-libs/FP16/FP16-2021.03.20-r4.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{10..12} )
-inherit python-r1 cmake
-
-CommitId=0a92994d729ff76a58f692d3028ca1b64b145d91
-
-DESCRIPTION="conversion to/from half-precision floating point formats"
-HOMEPAGE="https://github.com/Maratyszcza/FP16/"
-SRC_URI="https://github.com/Maratyszcza/${PN}/archive/${CommitId}.tar.gz
-	-> ${P}.tar.gz"
-
-S="${WORKDIR}"/${PN}-${CommitId}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="dev-libs/psimd"
-RDEPEND="
-	${DEPEND}
-	${PYTHON_DEPS}
-	dev-python/peachpy[${PYTHON_USEDEP}]
-"
-BDEPEND="test? ( dev-cpp/gtest )"
-RESTRICT="!test? ( test )"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-gentoo.patch
-)
-
-src_prepare() {
-	cmake_src_prepare
-	mkdir -p module/fp16 || die
-	cp include/fp16/*py module/fp16 || die
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DFP16_BUILD_BENCHMARKS=OFF
-		-DFP16_BUILD_TESTS=$(usex test ON OFF)
-	)
-	cmake_src_configure
-}
-
-python_install() {
-	python_domodule module/fp16
-}
-
-src_install() {
-	cmake_src_install
-	rm "${ED}"/usr/include/fp16/*.py || die
-	python_foreach_impl python_install
-}

diff --git a/dev-libs/FP16/Manifest b/dev-libs/FP16/Manifest
index 3fd0b65e93a5..47727a414903 100644
--- a/dev-libs/FP16/Manifest
+++ b/dev-libs/FP16/Manifest
@@ -1,3 +1,2 @@
-DIST FP16-2021.03.20.tar.gz 71228 BLAKE2B e598225032324ffe38db9002e8397e67a713b6323ac57408e7e39e146826b2bb1dab60cd75181a25b1b07958463e3913bbf0e53b23803e53d472fda66b8ba6d5 SHA512 3f094f242425ea37de274eb8539dc5f8ab0c13fd5325d14180ef12e9c04e6002a110d086c4c667f7c8054af337deab096d59482eb95cc8a632c3c412b48e89d1
 DIST FP16-2024.05.27.tar.gz 71220 BLAKE2B 5b101aad7a8339fff400bba1db896c82498832075f3eb00cc6eaf27608ee0988f918956b5a768262b74552a52436200d4acd17f04f4a05060a32512afb26a9ac SHA512 b88fd0a91e6b6873ce5d0e2cd2afd2b8dceb8b17c366240abb8a5e2fe152faea3ba577ef420038c595cab0b61581a70b84c019c825a8dd262b1bee4686843b66
 DIST FP16-2024.06.20.tar.gz 64704 BLAKE2B cd086ca7419aa004c0c4c840227e61612348efb98bdddbf68ef92959267f5f4b0aef55751c5b8a6f50a1f0e7f386e4df5fac273c3849961168e0a5c03faf81e2 SHA512 d3ae46b5b0c944f1d8dcfbb90689266f4abaff3e0b5ef338d5d79193367f06d1bfbb9ad85a5a7685a894daeee6dc73fc5d73631718be1379cc6918655a0289aa


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2025-03-02 13:59 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-02 13:59 [gentoo-commits] repo/gentoo:master commit in: dev-libs/FP16/ Alfredo Tupone
  -- strict thread matches above, loose matches on Subject: below --
2025-03-02 13:51 Alfredo Tupone
2025-01-18 20:33 Alfredo Tupone
2023-12-30 18:05 Alfredo Tupone
2023-02-19  9:37 Alfredo Tupone
2022-11-10 16:51 Alfredo Tupone
2022-05-17  6:51 Alfredo Tupone
2022-05-16 13: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