* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/AXL/
@ 2020-02-23 3:52 Alessandro Barbieri
0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2020-02-23 3:52 UTC (permalink / raw
To: gentoo-commits
commit: 05cae207afb2ebe27e1a70d679da521529872efc
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Feb 23 03:46:35 2020 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Feb 23 03:46:35 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=05cae207
sys-cluster/AXL: new package
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
sys-cluster/AXL/AXL-0.3.0.ebuild | 47 ++++++++++++++++++++++++++++++++++++++++
sys-cluster/AXL/Manifest | 1 +
sys-cluster/AXL/metadata.xml | 13 +++++++++++
3 files changed, 61 insertions(+)
diff --git a/sys-cluster/AXL/AXL-0.3.0.ebuild b/sys-cluster/AXL/AXL-0.3.0.ebuild
new file mode 100644
index 0000000..d7bcca9
--- /dev/null
+++ b/sys-cluster/AXL/AXL-0.3.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit cmake-utils
+
+DESCRIPTION="AXL provides a common C interface to transfer files in an HPC storage hierarchy."
+HOMEPAGE="https://github.com/ECP-VeloC/AXL"
+SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ sys-libs/zlib
+ sys-cluster/KVTree
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ >=dev-util/cmake-2.8
+"
+
+src_prepare() {
+ #do not build static library
+ sed -i '/axl-static/d' src/CMakeLists.txt || die
+ #do not auto install README
+ sed -i '/FILES README.md DESTINATION/d' CMakeLists.txt || die
+ default
+ cmake-utils_src_prepare
+}
+
+src_configure() {
+ local mycmakeargs=(
+ #other options available: CRAY_DW INTEL_CPPR IBM_BBAPI
+ -DAXL_ASYNC_API=NONE
+ )
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+ dodoc -r doc/.
+}
diff --git a/sys-cluster/AXL/Manifest b/sys-cluster/AXL/Manifest
new file mode 100644
index 0000000..785193a
--- /dev/null
+++ b/sys-cluster/AXL/Manifest
@@ -0,0 +1 @@
+DIST AXL-0.3.0.tar.gz 36436 BLAKE2B c2d4b42426f7ff879d4329879f0f50d79c163925ce6010c3a38fdafd911dc0378be658d0d25154814ffc7442dca2bd036a547800827171383eb855df9a4010ea SHA512 7cacd3614be94b0344cdd5a5e489c9d1b17cef777749e1c3c4eba642f853d767de1c9eced1fa44f931abeb70c89da2468f6a8fa857c213766bbdac6f3f83ce21
diff --git a/sys-cluster/AXL/metadata.xml b/sys-cluster/AXL/metadata.xml
new file mode 100644
index 0000000..2d5095f
--- /dev/null
+++ b/sys-cluster/AXL/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>lssndrbarbieri@gmail.com</email>
+ <name>Alessandro Barbieri</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">ECP-VeloC/AXL</remote-id>
+ </upstream>
+ <longdescription lang="en">AXL defines a common interface for transferring files between layers in a storage hierarchy. It abstracts vendor-specific APIs and provides synchronous and asynchronous methods using POSIX. One creates a transfer object, defining the transfer type, and then one adds files to the transfer. Once all files have been added, one initiates the transfer and can then later test or wait for its completion. The library optionally records the state of ongoing transfers, so that they can be identified or terminated even if the process that initiated the transfer has been restarted.
+ </longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/AXL/
2020-04-12 16:39 [gentoo-commits] repo/proj/guru:master commit in: sys-cluster/AXL/ Andrew Ammerlaan
@ 2020-04-12 16:16 ` Andrew Ammerlaan
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2020-04-12 16:16 UTC (permalink / raw
To: gentoo-commits
commit: ea6b5eb518a2fbd012e8ada758d1058f33b97fa5
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Apr 12 16:14:29 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Apr 12 16:14:29 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ea6b5eb5
sys-cluster/AXL: cmake-utils --> cmake
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
sys-cluster/AXL/AXL-0.3.0.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/sys-cluster/AXL/AXL-0.3.0.ebuild b/sys-cluster/AXL/AXL-0.3.0.ebuild
index d7bcca9..ac9f4de 100644
--- a/sys-cluster/AXL/AXL-0.3.0.ebuild
+++ b/sys-cluster/AXL/AXL-0.3.0.ebuild
@@ -3,7 +3,7 @@
EAPI="7"
-inherit cmake-utils
+inherit cmake
DESCRIPTION="AXL provides a common C interface to transfer files in an HPC storage hierarchy."
HOMEPAGE="https://github.com/ECP-VeloC/AXL"
@@ -30,7 +30,7 @@ src_prepare() {
#do not auto install README
sed -i '/FILES README.md DESTINATION/d' CMakeLists.txt || die
default
- cmake-utils_src_prepare
+ cmake_src_prepare
}
src_configure() {
@@ -38,10 +38,10 @@ src_configure() {
#other options available: CRAY_DW INTEL_CPPR IBM_BBAPI
-DAXL_ASYNC_API=NONE
)
- cmake-utils_src_configure
+ cmake_src_configure
}
src_install() {
- cmake-utils_src_install
+ cmake_src_install
dodoc -r doc/.
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: sys-cluster/AXL/
@ 2020-04-12 16:39 Andrew Ammerlaan
2020-04-12 16:16 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
0 siblings, 1 reply; 7+ messages in thread
From: Andrew Ammerlaan @ 2020-04-12 16:39 UTC (permalink / raw
To: gentoo-commits
commit: ea6b5eb518a2fbd012e8ada758d1058f33b97fa5
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Apr 12 16:14:29 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Apr 12 16:14:29 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ea6b5eb5
sys-cluster/AXL: cmake-utils --> cmake
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
sys-cluster/AXL/AXL-0.3.0.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/sys-cluster/AXL/AXL-0.3.0.ebuild b/sys-cluster/AXL/AXL-0.3.0.ebuild
index d7bcca9..ac9f4de 100644
--- a/sys-cluster/AXL/AXL-0.3.0.ebuild
+++ b/sys-cluster/AXL/AXL-0.3.0.ebuild
@@ -3,7 +3,7 @@
EAPI="7"
-inherit cmake-utils
+inherit cmake
DESCRIPTION="AXL provides a common C interface to transfer files in an HPC storage hierarchy."
HOMEPAGE="https://github.com/ECP-VeloC/AXL"
@@ -30,7 +30,7 @@ src_prepare() {
#do not auto install README
sed -i '/FILES README.md DESTINATION/d' CMakeLists.txt || die
default
- cmake-utils_src_prepare
+ cmake_src_prepare
}
src_configure() {
@@ -38,10 +38,10 @@ src_configure() {
#other options available: CRAY_DW INTEL_CPPR IBM_BBAPI
-DAXL_ASYNC_API=NONE
)
- cmake-utils_src_configure
+ cmake_src_configure
}
src_install() {
- cmake-utils_src_install
+ cmake_src_install
dodoc -r doc/.
}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/AXL/
@ 2021-06-14 23:09 Alessandro Barbieri
0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2021-06-14 23:09 UTC (permalink / raw
To: gentoo-commits
commit: 552fae3a82e9a2f532bc004d209fd36cdc21a438
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Jun 14 22:44:03 2021 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Mon Jun 14 23:09:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=552fae3a
sys-cluster/AXL: drop 0.3.0
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
sys-cluster/AXL/AXL-0.3.0.ebuild | 47 ----------------------------------------
sys-cluster/AXL/Manifest | 1 -
2 files changed, 48 deletions(-)
diff --git a/sys-cluster/AXL/AXL-0.3.0.ebuild b/sys-cluster/AXL/AXL-0.3.0.ebuild
deleted file mode 100644
index ac9f4deee..000000000
--- a/sys-cluster/AXL/AXL-0.3.0.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit cmake
-
-DESCRIPTION="AXL provides a common C interface to transfer files in an HPC storage hierarchy."
-HOMEPAGE="https://github.com/ECP-VeloC/AXL"
-SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- sys-libs/zlib
- sys-cluster/KVTree
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- >=dev-util/cmake-2.8
-"
-
-src_prepare() {
- #do not build static library
- sed -i '/axl-static/d' src/CMakeLists.txt || die
- #do not auto install README
- sed -i '/FILES README.md DESTINATION/d' CMakeLists.txt || die
- default
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- #other options available: CRAY_DW INTEL_CPPR IBM_BBAPI
- -DAXL_ASYNC_API=NONE
- )
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
- dodoc -r doc/.
-}
diff --git a/sys-cluster/AXL/Manifest b/sys-cluster/AXL/Manifest
index 392fd1258..f5b11c5e8 100644
--- a/sys-cluster/AXL/Manifest
+++ b/sys-cluster/AXL/Manifest
@@ -1,2 +1 @@
-DIST AXL-0.3.0.tar.gz 36436 BLAKE2B c2d4b42426f7ff879d4329879f0f50d79c163925ce6010c3a38fdafd911dc0378be658d0d25154814ffc7442dca2bd036a547800827171383eb855df9a4010ea SHA512 7cacd3614be94b0344cdd5a5e489c9d1b17cef777749e1c3c4eba642f853d767de1c9eced1fa44f931abeb70c89da2468f6a8fa857c213766bbdac6f3f83ce21
DIST AXL-0.4.0.tar.gz 47348 BLAKE2B a84b53b2c8d17a33a1ea95a3063210b40d3ca17151d9579f40ac8f70e32fe36bb79f4660efa3dedfbb0cce550cf6f14cdf7861d883b2e7f4c79ed88ab432ee70 SHA512 64d13600da8540b8d40b7de6ec242434fc437bb6b62aa5cebd6a3c5c2d8e2c0cae9311a6af99f19981fbeb0522b7148a28efb3d4e69b727bfc69711cf21a8419
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/AXL/
@ 2021-08-22 2:00 Alessandro Barbieri
0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2021-08-22 2:00 UTC (permalink / raw
To: gentoo-commits
commit: 6c51498004707ea46bb9371d47bdd4f2505350cb
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Aug 22 00:56:08 2021 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Aug 22 01:17:37 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6c514980
sys-cluster/AXL: restrict test
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
sys-cluster/AXL/AXL-0.4.0.ebuild | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/sys-cluster/AXL/AXL-0.4.0.ebuild b/sys-cluster/AXL/AXL-0.4.0.ebuild
index 2ae37caa5..fd904adbf 100644
--- a/sys-cluster/AXL/AXL-0.4.0.ebuild
+++ b/sys-cluster/AXL/AXL-0.4.0.ebuild
@@ -13,11 +13,7 @@ LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
-RESTRICT="!test? ( test )"
-PATCHES=(
- "${FILESDIR}/no-static-${PV}.patch"
- "${FILESDIR}/no-install-readme.patch"
-)
+
RDEPEND="
sys-libs/zlib
sys-cluster/KVTree
@@ -27,6 +23,13 @@ BDEPEND="
>=dev-util/cmake-2.8
"
+RESTRICT="test" # https://github.com/ECP-VeloC/AXL/issues/110
+#RESTRICT="!test? ( test )"
+PATCHES=(
+ "${FILESDIR}/no-static-${PV}.patch"
+ "${FILESDIR}/no-install-readme.patch"
+)
+
src_configure() {
local mycmakeargs=(
#other options available: CRAY_DW INTEL_CPPR IBM_BBAPI
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/AXL/
@ 2021-09-26 18:37 Alessandro Barbieri
0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2021-09-26 18:37 UTC (permalink / raw
To: gentoo-commits
commit: 28ee48898f9053e3c62a17009d34717ee480c832
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Sep 26 01:39:25 2021 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Sep 26 18:37:08 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=28ee4889
sys-cluster/AXL: add 0.3.0
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
sys-cluster/AXL/AXL-0.3.0.ebuild | 43 ++++++++++++++++++++++++++++++++++++++++
sys-cluster/AXL/Manifest | 1 +
2 files changed, 44 insertions(+)
diff --git a/sys-cluster/AXL/AXL-0.3.0.ebuild b/sys-cluster/AXL/AXL-0.3.0.ebuild
new file mode 100644
index 000000000..f8b4023e4
--- /dev/null
+++ b/sys-cluster/AXL/AXL-0.3.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit cmake
+
+DESCRIPTION="AXL provides a common C interface to transfer files in an HPC storage hierarchy."
+HOMEPAGE="https://github.com/ECP-VeloC/AXL"
+SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="
+ sys-libs/zlib
+ sys-cluster/KVTree
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ >=dev-util/cmake-2.8
+"
+
+RESTRICT="test" # https://github.com/ECP-VeloC/AXL/issues/110
+#RESTRICT="!test? ( test )"
+PATCHES=(
+ "${FILESDIR}/no-install-readme.patch"
+)
+
+src_configure() {
+ local mycmakeargs=(
+ #other options available: CRAY_DW INTEL_CPPR IBM_BBAPI
+ -DAXL_ASYNC_API=NONE
+ )
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+ dodoc -r doc/.
+}
diff --git a/sys-cluster/AXL/Manifest b/sys-cluster/AXL/Manifest
index f5b11c5e8..392fd1258 100644
--- a/sys-cluster/AXL/Manifest
+++ b/sys-cluster/AXL/Manifest
@@ -1 +1,2 @@
+DIST AXL-0.3.0.tar.gz 36436 BLAKE2B c2d4b42426f7ff879d4329879f0f50d79c163925ce6010c3a38fdafd911dc0378be658d0d25154814ffc7442dca2bd036a547800827171383eb855df9a4010ea SHA512 7cacd3614be94b0344cdd5a5e489c9d1b17cef777749e1c3c4eba642f853d767de1c9eced1fa44f931abeb70c89da2468f6a8fa857c213766bbdac6f3f83ce21
DIST AXL-0.4.0.tar.gz 47348 BLAKE2B a84b53b2c8d17a33a1ea95a3063210b40d3ca17151d9579f40ac8f70e32fe36bb79f4660efa3dedfbb0cce550cf6f14cdf7861d883b2e7f4c79ed88ab432ee70 SHA512 64d13600da8540b8d40b7de6ec242434fc437bb6b62aa5cebd6a3c5c2d8e2c0cae9311a6af99f19981fbeb0522b7148a28efb3d4e69b727bfc69711cf21a8419
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/AXL/
@ 2022-03-23 14:38 Alessandro Barbieri
0 siblings, 0 replies; 7+ messages in thread
From: Alessandro Barbieri @ 2022-03-23 14:38 UTC (permalink / raw
To: gentoo-commits
commit: 972b9a3efd7ef3cdb220e5923fa60ab6583e4dce
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Mar 23 14:25:37 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Wed Mar 23 14:38:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=972b9a3e
sys-cluster/AXL: add 0.7.0
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
sys-cluster/AXL/AXL-0.7.0.ebuild | 44 ++++++++++++++++++++++++++++++++++++++++
sys-cluster/AXL/Manifest | 1 +
2 files changed, 45 insertions(+)
diff --git a/sys-cluster/AXL/AXL-0.7.0.ebuild b/sys-cluster/AXL/AXL-0.7.0.ebuild
new file mode 100644
index 000000000..bed6f4ee9
--- /dev/null
+++ b/sys-cluster/AXL/AXL-0.7.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="AXL provides a common C interface to transfer files in an HPC storage hierarchy"
+HOMEPAGE="https://github.com/ECP-VeloC/AXL"
+SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test threads"
+
+RDEPEND="
+ sys-libs/zlib
+ sys-cluster/KVTree
+"
+DEPEND="${RDEPEND}"
+
+RESTRICT="!test? ( test )"
+PATCHES=(
+ "${FILESDIR}/${PN}-0.5.0-no-static.patch"
+ "${FILESDIR}/no-install-readme.patch"
+)
+
+src_configure() {
+ local mycmakeargs=(
+ -DAXL_LINK_STATIC=OFF
+ -DBUILD_SHARED_LIBS=ON
+ -DENABLE_CRAY_DW=OFF
+ -DENABLE_IBM_BBAPI=OFF
+ -DENABLE_PTHREADS=$(usex threads)
+ -DENABLE_TESTS=$(usex test)
+ )
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+ dodoc -r doc/.
+}
diff --git a/sys-cluster/AXL/Manifest b/sys-cluster/AXL/Manifest
index 00d8b893c..46e1dd2b3 100644
--- a/sys-cluster/AXL/Manifest
+++ b/sys-cluster/AXL/Manifest
@@ -1,3 +1,4 @@
DIST AXL-0.3.0.tar.gz 36436 BLAKE2B c2d4b42426f7ff879d4329879f0f50d79c163925ce6010c3a38fdafd911dc0378be658d0d25154814ffc7442dca2bd036a547800827171383eb855df9a4010ea SHA512 7cacd3614be94b0344cdd5a5e489c9d1b17cef777749e1c3c4eba642f853d767de1c9eced1fa44f931abeb70c89da2468f6a8fa857c213766bbdac6f3f83ce21
DIST AXL-0.4.0.tar.gz 47348 BLAKE2B a84b53b2c8d17a33a1ea95a3063210b40d3ca17151d9579f40ac8f70e32fe36bb79f4660efa3dedfbb0cce550cf6f14cdf7861d883b2e7f4c79ed88ab432ee70 SHA512 64d13600da8540b8d40b7de6ec242434fc437bb6b62aa5cebd6a3c5c2d8e2c0cae9311a6af99f19981fbeb0522b7148a28efb3d4e69b727bfc69711cf21a8419
DIST AXL-0.5.0.tar.gz 47792 BLAKE2B acc82ac512f2e598bd0f11b9e762b9aad618a50e38b3e3f117232b9c94efa444b39ed8d8923278a18db39ba4db46fc95867a3c9efaa7a38ed9a5280649d8ceae SHA512 81d9bb0c5cd100dee8bc813f7f39ad8c7f18ed6415525845bf6d79ccfe6e84c00d0660e0621ad9458522826068fbbb8cbf4680abc5b23cd4da058ce9f5482a4d
+DIST AXL-0.7.0.tar.gz 48339 BLAKE2B 57525b6288617f0f9b2d4fcbe653a2bdc312d81a9b00671d79f625a8ea9b8b79dcfc3122acf2d27fc60c5f1d04b4f90d688fe9e1441fa3f9a44575cac9056318 SHA512 5d57f1dd60dfe8ceb27348a1c0389291a3cac6d909514fdbd6fdf31eeaba974a0b5aca23e7de35fea63585485c841622f4993cf0b3a060aa54af532728fc826d
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-03-23 14:38 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-12 16:39 [gentoo-commits] repo/proj/guru:master commit in: sys-cluster/AXL/ Andrew Ammerlaan
2020-04-12 16:16 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
-- strict thread matches above, loose matches on Subject: below --
2022-03-23 14:38 Alessandro Barbieri
2021-09-26 18:37 Alessandro Barbieri
2021-08-22 2:00 Alessandro Barbieri
2021-06-14 23:09 Alessandro Barbieri
2020-02-23 3:52 Alessandro Barbieri
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox