* [gentoo-commits] repo/gentoo:master commit in: sci-libs/gloo/
@ 2023-12-03 7:59 Alfredo Tupone
0 siblings, 0 replies; 9+ messages in thread
From: Alfredo Tupone @ 2023-12-03 7:59 UTC (permalink / raw
To: gentoo-commits
commit: 78da5880e7e1169ab01d51ee84c2955e2a383b3d
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 3 07:58:59 2023 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Dec 3 07:59:16 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78da5880
sci-libs/gloo: add 2023.05.19
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-libs/gloo/Manifest | 1 +
sci-libs/gloo/gloo-2023.05.19.ebuild | 65 ++++++++++++++++++++++++++++++++++++
2 files changed, 66 insertions(+)
diff --git a/sci-libs/gloo/Manifest b/sci-libs/gloo/Manifest
index 07e768131dfa..4a4ee57c7206 100644
--- a/sci-libs/gloo/Manifest
+++ b/sci-libs/gloo/Manifest
@@ -1 +1,2 @@
DIST gloo-2023.01.17.tar.gz 252199 BLAKE2B 66b5fc6786a4c07aa639a30036a21d86f43c1577a950934f558051f241d198dd3e0d7bd9da39835c5e3d617a754164cb77ae30b9bc284b0119436bf0a26f5000 SHA512 d39102ed00c813576066b755730e367337f2558a4223fe8dd127bd48882db6a97c67522782f7e7b00c36198ccd2096e61e84382358783d2edb1ca4ee55123344
+DIST gloo-2023.05.19.tar.gz 252199 BLAKE2B 66b5fc6786a4c07aa639a30036a21d86f43c1577a950934f558051f241d198dd3e0d7bd9da39835c5e3d617a754164cb77ae30b9bc284b0119436bf0a26f5000 SHA512 d39102ed00c813576066b755730e367337f2558a4223fe8dd127bd48882db6a97c67522782f7e7b00c36198ccd2096e61e84382358783d2edb1ca4ee55123344
diff --git a/sci-libs/gloo/gloo-2023.05.19.ebuild b/sci-libs/gloo/gloo-2023.05.19.ebuild
new file mode 100644
index 000000000000..605bc787a6d1
--- /dev/null
+++ b/sci-libs/gloo/gloo-2023.05.19.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit cmake cuda
+
+CommitId=10909297fedab0a680799211a299203e53515032
+
+DESCRIPTION="library of floating-point neural network inference operators"
+HOMEPAGE="https://github.com/facebookincubator/gloo/"
+SRC_URI="https://github.com/facebookincubator/${PN}/archive/${CommitId}.tar.gz
+ -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="cuda libuv mpi redis ssl test"
+
+RDEPEND="
+ cuda? ( <dev-util/nvidia-cuda-toolkit-12:= )
+ libuv? ( dev-libs/libuv )
+ mpi? ( virtual/mpi )
+ redis? (
+ dev-db/redis
+ dev-libs/hiredis
+ )
+ ssl? ( dev-libs/openssl:0/1.1 )
+"
+DEPEND="${RDEPEND}
+"
+
+BDEPEND="test? ( dev-cpp/gtest )"
+RESTRICT="test" # For some test the network is needed
+
+S="${WORKDIR}"/${PN}-${CommitId}
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-2022.05.18-gentoo.patch
+ "${FILESDIR}"/${PN}-2023.01.17-cuda.patch
+ "${FILESDIR}"/${PN}-2023.01.17-ssl3.patch
+)
+
+src_prepare() {
+ eapply_user
+ cmake_src_prepare
+ use cuda && cuda_add_sandbox
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TEST=$(usex test ON OFF)
+ -DUSE_CUDA=$(usex cuda ON OFF)
+ -DGLOO_USE_CUDA_TOOLKIT=$(usex cuda ON OFF)
+ -DUSE_LIBUV=$(usex libuv ON OFF)
+ -DUSE_MPI=$(usex mpi ON OFF)
+ -DUSE_REDIS=$(usex redis ON OFF)
+ -DUSE_TCP_OPENSSL_LINK=$(usex ssl ON OFF)
+ )
+ if use cuda; then
+ mycmakeargs+=(
+ -DCMAKE_CUDA_FLAGS="$(cuda_gccdir -f | tr -d \")"
+ )
+ fi
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/gloo/
@ 2024-05-01 11:44 Alfredo Tupone
0 siblings, 0 replies; 9+ messages in thread
From: Alfredo Tupone @ 2024-05-01 11:44 UTC (permalink / raw
To: gentoo-commits
commit: deb7fd3afee642fd54dfdb236d91aed2c90c261a
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Wed May 1 11:44:24 2024 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Wed May 1 11:44:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deb7fd3a
sci-libs/gloo: add 2023.12.03
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-libs/gloo/Manifest | 1 +
sci-libs/gloo/gloo-2023.12.03.ebuild | 67 ++++++++++++++++++++++++++++++++++++
2 files changed, 68 insertions(+)
diff --git a/sci-libs/gloo/Manifest b/sci-libs/gloo/Manifest
index 7d98435ecdbe..2ac526930342 100644
--- a/sci-libs/gloo/Manifest
+++ b/sci-libs/gloo/Manifest
@@ -1 +1,2 @@
DIST gloo-2023.07.19.tar.gz 260264 BLAKE2B b787794a6b5e791da5f8693ad9a522c8caa5410316d64ad3a2c23ae744ca9f0b45ac6a6f60572049d3e5825a2e29833ff887fc39f6fe6a6efef61d848c225318 SHA512 e84e8a69a8548a8bfcb6044b960fca3204eb358c50fa79f3053779f2a61703d5219ef428f4ba057ed08e6ec437aadb7f8e67565f03f3510e0bf94c6f793af8d9
+DIST gloo-2023.12.03.tar.gz 259857 BLAKE2B b56cbbb0986b70ed327a8d019f140099c5d1d725576120089cd5e640dc42daa6c6bb67de877d540fd2160f5b8d89cf54af7c11a1b81039e62e4de97daa4f63d6 SHA512 597679dd96394e7d0009be34ef9bd6f8446d22e2faa006c0853e055caf0d6d821c7532ff867b4d924197e92ab53c4c7ee9b74f897d6c5a469ee797c11ce0d28d
diff --git a/sci-libs/gloo/gloo-2023.12.03.ebuild b/sci-libs/gloo/gloo-2023.12.03.ebuild
new file mode 100644
index 000000000000..16201cde8c0d
--- /dev/null
+++ b/sci-libs/gloo/gloo-2023.12.03.ebuild
@@ -0,0 +1,67 @@
+# Copyright 2022-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit cmake cuda
+
+CommitId=5354032ea08eadd7fc4456477f7f7c6308818509
+
+DESCRIPTION="library of floating-point neural network inference operators"
+HOMEPAGE="https://github.com/facebookincubator/gloo/"
+SRC_URI="https://github.com/facebookincubator/${PN}/archive/${CommitId}.tar.gz
+ -> ${P}.tar.gz"
+
+S="${WORKDIR}"/${PN}-${CommitId}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="cuda libuv mpi redis ssl test"
+
+RDEPEND="
+ cuda? ( dev-util/nvidia-cuda-toolkit:= )
+ libuv? ( dev-libs/libuv )
+ mpi? ( virtual/mpi )
+ redis? (
+ dev-db/redis
+ dev-libs/hiredis
+ )
+ ssl? ( dev-libs/openssl:= )
+"
+DEPEND="${RDEPEND}
+"
+
+BDEPEND="test? ( dev-cpp/gtest )"
+RESTRICT="test" # For some test the network is needed
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-2022.05.18-gentoo.patch
+ "${FILESDIR}"/${PN}-2023.01.17-cuda.patch
+ "${FILESDIR}"/${PN}-2023.01.17-ssl3.patch
+)
+
+src_prepare() {
+ eapply_user
+ cmake_src_prepare
+ use cuda && cuda_add_sandbox
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TEST=$(usex test ON OFF)
+ -DUSE_CUDA=$(usex cuda ON OFF)
+ -DGLOO_USE_CUDA_TOOLKIT=$(usex cuda ON OFF)
+ -DUSE_LIBUV=$(usex libuv ON OFF)
+ -DUSE_MPI=$(usex mpi ON OFF)
+ -DUSE_REDIS=$(usex redis ON OFF)
+ -DUSE_TCP_OPENSSL_LINK=$(usex ssl ON OFF)
+ )
+ if use cuda; then
+ addpredict "/proc/self/task"
+
+ mycmakeargs+=(
+ -DCMAKE_CUDA_FLAGS="$(cuda_gccdir -f | tr -d \")"
+ )
+ fi
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/gloo/
@ 2024-04-02 16:31 Alfredo Tupone
0 siblings, 0 replies; 9+ messages in thread
From: Alfredo Tupone @ 2024-04-02 16:31 UTC (permalink / raw
To: gentoo-commits
commit: 3334e25d840565f8a94b4e9cc937397ba8385866
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 2 16:30:02 2024 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue Apr 2 16:30:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3334e25d
sci-libs/gloo: addpredict for cuda
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-libs/gloo/gloo-2023.07.19.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sci-libs/gloo/gloo-2023.07.19.ebuild b/sci-libs/gloo/gloo-2023.07.19.ebuild
index 7874c81385f2..5bdcf1d00a44 100644
--- a/sci-libs/gloo/gloo-2023.07.19.ebuild
+++ b/sci-libs/gloo/gloo-2023.07.19.ebuild
@@ -57,6 +57,8 @@ src_configure() {
-DUSE_TCP_OPENSSL_LINK=$(usex ssl ON OFF)
)
if use cuda; then
+ addpredict "/proc/self/task"
+
mycmakeargs+=(
-DCMAKE_CUDA_FLAGS="$(cuda_gccdir -f | tr -d \")"
)
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/gloo/
@ 2024-02-23 21:45 Alfredo Tupone
0 siblings, 0 replies; 9+ messages in thread
From: Alfredo Tupone @ 2024-02-23 21:45 UTC (permalink / raw
To: gentoo-commits
commit: 2f9d5dc435f13101e7e9110909a834b17e37a470
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 23 21:44:53 2024 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Fri Feb 23 21:44:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f9d5dc4
sci-libs/gloo: add 2023.07.19, drop 2023.05.19-r2
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-libs/gloo/Manifest | 2 +-
sci-libs/gloo/{gloo-2023.05.19-r2.ebuild => gloo-2023.07.19.ebuild} | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/sci-libs/gloo/Manifest b/sci-libs/gloo/Manifest
index c03bec1fad19..7d98435ecdbe 100644
--- a/sci-libs/gloo/Manifest
+++ b/sci-libs/gloo/Manifest
@@ -1 +1 @@
-DIST gloo-2023.05.19.tar.gz 252199 BLAKE2B 66b5fc6786a4c07aa639a30036a21d86f43c1577a950934f558051f241d198dd3e0d7bd9da39835c5e3d617a754164cb77ae30b9bc284b0119436bf0a26f5000 SHA512 d39102ed00c813576066b755730e367337f2558a4223fe8dd127bd48882db6a97c67522782f7e7b00c36198ccd2096e61e84382358783d2edb1ca4ee55123344
+DIST gloo-2023.07.19.tar.gz 260264 BLAKE2B b787794a6b5e791da5f8693ad9a522c8caa5410316d64ad3a2c23ae744ca9f0b45ac6a6f60572049d3e5825a2e29833ff887fc39f6fe6a6efef61d848c225318 SHA512 e84e8a69a8548a8bfcb6044b960fca3204eb358c50fa79f3053779f2a61703d5219ef428f4ba057ed08e6ec437aadb7f8e67565f03f3510e0bf94c6f793af8d9
diff --git a/sci-libs/gloo/gloo-2023.05.19-r2.ebuild b/sci-libs/gloo/gloo-2023.07.19.ebuild
similarity index 94%
rename from sci-libs/gloo/gloo-2023.05.19-r2.ebuild
rename to sci-libs/gloo/gloo-2023.07.19.ebuild
index ca1aa69a1f02..7874c81385f2 100644
--- a/sci-libs/gloo/gloo-2023.05.19-r2.ebuild
+++ b/sci-libs/gloo/gloo-2023.07.19.ebuild
@@ -1,10 +1,10 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake cuda
-CommitId=10909297fedab0a680799211a299203e53515032
+CommitId=cf1e1abc95d0b961222ee82b6935f76250fbcf16
DESCRIPTION="library of floating-point neural network inference operators"
HOMEPAGE="https://github.com/facebookincubator/gloo/"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/gloo/
@ 2023-12-20 18:20 Alfredo Tupone
0 siblings, 0 replies; 9+ messages in thread
From: Alfredo Tupone @ 2023-12-20 18:20 UTC (permalink / raw
To: gentoo-commits
commit: 9d3a42cd60f4f143880a9567ab74181a3fa9fad8
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 20 18:12:59 2023 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 18:20:01 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d3a42cd
sci-libs/gloo: drop 2023.01.17-r2
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-libs/gloo/Manifest | 1 -
sci-libs/gloo/gloo-2023.01.17-r2.ebuild | 65 ---------------------------------
2 files changed, 66 deletions(-)
diff --git a/sci-libs/gloo/Manifest b/sci-libs/gloo/Manifest
index 4a4ee57c7206..c03bec1fad19 100644
--- a/sci-libs/gloo/Manifest
+++ b/sci-libs/gloo/Manifest
@@ -1,2 +1 @@
-DIST gloo-2023.01.17.tar.gz 252199 BLAKE2B 66b5fc6786a4c07aa639a30036a21d86f43c1577a950934f558051f241d198dd3e0d7bd9da39835c5e3d617a754164cb77ae30b9bc284b0119436bf0a26f5000 SHA512 d39102ed00c813576066b755730e367337f2558a4223fe8dd127bd48882db6a97c67522782f7e7b00c36198ccd2096e61e84382358783d2edb1ca4ee55123344
DIST gloo-2023.05.19.tar.gz 252199 BLAKE2B 66b5fc6786a4c07aa639a30036a21d86f43c1577a950934f558051f241d198dd3e0d7bd9da39835c5e3d617a754164cb77ae30b9bc284b0119436bf0a26f5000 SHA512 d39102ed00c813576066b755730e367337f2558a4223fe8dd127bd48882db6a97c67522782f7e7b00c36198ccd2096e61e84382358783d2edb1ca4ee55123344
diff --git a/sci-libs/gloo/gloo-2023.01.17-r2.ebuild b/sci-libs/gloo/gloo-2023.01.17-r2.ebuild
deleted file mode 100644
index 8518665b3cd4..000000000000
--- a/sci-libs/gloo/gloo-2023.01.17-r2.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit cmake cuda
-
-CommitId=10909297fedab0a680799211a299203e53515032
-
-DESCRIPTION="library of floating-point neural network inference operators"
-HOMEPAGE="https://github.com/facebookincubator/gloo/"
-SRC_URI="https://github.com/facebookincubator/${PN}/archive/${CommitId}.tar.gz
- -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="cuda libuv mpi redis ssl test"
-
-RDEPEND="
- cuda? ( <dev-util/nvidia-cuda-toolkit-12:= )
- libuv? ( dev-libs/libuv )
- mpi? ( virtual/mpi )
- redis? (
- dev-db/redis
- dev-libs/hiredis
- )
- ssl? ( dev-libs/openssl:0/1.1 )
-"
-DEPEND="${RDEPEND}
-"
-
-BDEPEND="test? ( dev-cpp/gtest )"
-RESTRICT="test" # For some test the network is needed
-
-S="${WORKDIR}"/${PN}-${CommitId}
-
-PATCHES=(
- "${FILESDIR}"/${PN}-2022.05.18-gentoo.patch
- "${FILESDIR}"/${P}-cuda.patch
- "${FILESDIR}"/${P}-ssl3.patch
-)
-
-src_prepare() {
- eapply_user
- cmake_src_prepare
- use cuda && cuda_add_sandbox
-}
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_TEST=$(usex test ON OFF)
- -DUSE_CUDA=$(usex cuda ON OFF)
- -DGLOO_USE_CUDA_TOOLKIT=$(usex cuda ON OFF)
- -DUSE_LIBUV=$(usex libuv ON OFF)
- -DUSE_MPI=$(usex mpi ON OFF)
- -DUSE_REDIS=$(usex redis ON OFF)
- -DUSE_TCP_OPENSSL_LINK=$(usex ssl ON OFF)
- )
- if use cuda; then
- mycmakeargs+=(
- -DCMAKE_CUDA_FLAGS="$(cuda_gccdir -f | tr -d \")"
- )
- fi
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/gloo/
@ 2023-12-19 20:05 Alfredo Tupone
0 siblings, 0 replies; 9+ messages in thread
From: Alfredo Tupone @ 2023-12-19 20:05 UTC (permalink / raw
To: gentoo-commits
commit: 45f92fa5728cb5811420df2e34acef26961697e3
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 19 20:04:12 2023 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue Dec 19 20:05:23 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45f92fa5
sci-libs/gloo: build with openssl:3, too
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-libs/gloo/{gloo-2023.05.19-r1.ebuild => gloo-2023.05.19-r2.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-libs/gloo/gloo-2023.05.19-r1.ebuild b/sci-libs/gloo/gloo-2023.05.19-r2.ebuild
similarity index 97%
rename from sci-libs/gloo/gloo-2023.05.19-r1.ebuild
rename to sci-libs/gloo/gloo-2023.05.19-r2.ebuild
index d1401ead5e89..ca1aa69a1f02 100644
--- a/sci-libs/gloo/gloo-2023.05.19-r1.ebuild
+++ b/sci-libs/gloo/gloo-2023.05.19-r2.ebuild
@@ -24,7 +24,7 @@ RDEPEND="
dev-db/redis
dev-libs/hiredis
)
- ssl? ( dev-libs/openssl:0/1.1 )
+ ssl? ( dev-libs/openssl:= )
"
DEPEND="${RDEPEND}
"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/gloo/
@ 2023-12-16 18:49 Alfredo Tupone
0 siblings, 0 replies; 9+ messages in thread
From: Alfredo Tupone @ 2023-12-16 18:49 UTC (permalink / raw
To: gentoo-commits
commit: 5a02952158dc3546a2f9a9dc90bee315c5fedea4
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 16 18:41:40 2023 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Dec 16 18:42:40 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a029521
sci-libs/gloo: it builds with dev-util/nvidia-cuda-toolkit-12
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-libs/gloo/{gloo-2023.05.19.ebuild => gloo-2023.05.19-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-libs/gloo/gloo-2023.05.19.ebuild b/sci-libs/gloo/gloo-2023.05.19-r1.ebuild
similarity index 96%
rename from sci-libs/gloo/gloo-2023.05.19.ebuild
rename to sci-libs/gloo/gloo-2023.05.19-r1.ebuild
index 605bc787a6d1..d1401ead5e89 100644
--- a/sci-libs/gloo/gloo-2023.05.19.ebuild
+++ b/sci-libs/gloo/gloo-2023.05.19-r1.ebuild
@@ -17,7 +17,7 @@ KEYWORDS="~amd64"
IUSE="cuda libuv mpi redis ssl test"
RDEPEND="
- cuda? ( <dev-util/nvidia-cuda-toolkit-12:= )
+ cuda? ( dev-util/nvidia-cuda-toolkit:= )
libuv? ( dev-libs/libuv )
mpi? ( virtual/mpi )
redis? (
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/gloo/
@ 2023-04-09 20:06 Alfredo Tupone
0 siblings, 0 replies; 9+ messages in thread
From: Alfredo Tupone @ 2023-04-09 20:06 UTC (permalink / raw
To: gentoo-commits
commit: a5f7949a839eeed18a4f616ea72e5661918b8c0e
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 9 20:05:50 2023 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Apr 9 20:06:06 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5f7949a
sci-libs/gloo: add 2023.01.17
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-libs/gloo/Manifest | 1 +
sci-libs/gloo/gloo-2023.01.17.ebuild | 49 ++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/sci-libs/gloo/Manifest b/sci-libs/gloo/Manifest
index 97dd806d820c..c103eafd9ee1 100644
--- a/sci-libs/gloo/Manifest
+++ b/sci-libs/gloo/Manifest
@@ -1 +1,2 @@
DIST gloo-2022.05.18.tar.gz 251778 BLAKE2B 90bd97cff437d030b87c333ebb6679f199491b97826f09278b7a6740d781ca750af4e8eda18f29a4311462473146aae1fd0686443a0eb2c73e8ba34e6837b0af SHA512 356b4bd4480fda0f9db039babd223c17ed24c35945877bdb6c5b28eb45ee8ce08def73d308bc906c478c4c9d485bb0f74080d90c7a4fafe84818df0a97a7f6e2
+DIST gloo-2023.01.17.tar.gz 252199 BLAKE2B 66b5fc6786a4c07aa639a30036a21d86f43c1577a950934f558051f241d198dd3e0d7bd9da39835c5e3d617a754164cb77ae30b9bc284b0119436bf0a26f5000 SHA512 d39102ed00c813576066b755730e367337f2558a4223fe8dd127bd48882db6a97c67522782f7e7b00c36198ccd2096e61e84382358783d2edb1ca4ee55123344
diff --git a/sci-libs/gloo/gloo-2023.01.17.ebuild b/sci-libs/gloo/gloo-2023.01.17.ebuild
new file mode 100644
index 000000000000..f9c90704924d
--- /dev/null
+++ b/sci-libs/gloo/gloo-2023.01.17.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit cmake
+
+CommitId=10909297fedab0a680799211a299203e53515032
+
+DESCRIPTION="library of floating-point neural network inference operators"
+HOMEPAGE="https://github.com/facebookincubator/gloo/"
+SRC_URI="https://github.com/facebookincubator/${PN}/archive/${CommitId}.tar.gz
+ -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="libuv mpi redis ssl test"
+
+RDEPEND="
+ libuv? ( dev-libs/libuv )
+ mpi? ( virtual/mpi )
+ redis? (
+ dev-db/redis
+ dev-libs/hiredis
+ )
+ ssl? ( dev-libs/openssl:0/1.1 )
+"
+DEPEND="${RDEPEND}
+"
+
+BDEPEND="test? ( dev-cpp/gtest )"
+RESTRICT="test" # For some test the network is needed
+
+S="${WORKDIR}"/${PN}-${CommitId}
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-2022.05.18-gentoo.patch
+)
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TEST=$(usex test ON OFF)
+ -DUSE_LIBUV=$(usex libuv ON OFF)
+ -DUSE_MPI=$(usex mpi ON OFF)
+ -DUSE_REDIS=$(usex redis ON OFF)
+ -DUSE_TCP_OPENSSL_LINK=$(usex ssl ON OFF)
+ )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/gloo/
@ 2023-01-12 7:17 Alfredo Tupone
0 siblings, 0 replies; 9+ messages in thread
From: Alfredo Tupone @ 2023-01-12 7:17 UTC (permalink / raw
To: gentoo-commits
commit: 1c5796ad78b3cedbecb45e0673a0e5ba41887c25
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 12 07:15:11 2023 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Jan 12 07:16:41 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c5796ad
sci-libs/gloo: require openssl 1.1
Closes: https://bugs.gentoo.org/886279
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-libs/gloo/{gloo-2022.05.18.ebuild => gloo-2022.05.18-r1.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-libs/gloo/gloo-2022.05.18.ebuild b/sci-libs/gloo/gloo-2022.05.18-r1.ebuild
similarity index 93%
rename from sci-libs/gloo/gloo-2022.05.18.ebuild
rename to sci-libs/gloo/gloo-2022.05.18-r1.ebuild
index 5b1fc445c18d..f22733551794 100644
--- a/sci-libs/gloo/gloo-2022.05.18.ebuild
+++ b/sci-libs/gloo/gloo-2022.05.18-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -23,7 +23,7 @@ RDEPEND="
dev-db/redis
dev-libs/hiredis
)
- ssl? ( dev-libs/openssl )
+ ssl? ( dev-libs/openssl:0/1.1 )
"
DEPEND="${RDEPEND}
"
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-05-01 11:44 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-03 7:59 [gentoo-commits] repo/gentoo:master commit in: sci-libs/gloo/ Alfredo Tupone
-- strict thread matches above, loose matches on Subject: below --
2024-05-01 11:44 Alfredo Tupone
2024-04-02 16:31 Alfredo Tupone
2024-02-23 21:45 Alfredo Tupone
2023-12-20 18:20 Alfredo Tupone
2023-12-19 20:05 Alfredo Tupone
2023-12-16 18:49 Alfredo Tupone
2023-04-09 20:06 Alfredo Tupone
2023-01-12 7:17 Alfredo Tupone
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox