From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CAC25158099 for ; Mon, 27 Nov 2023 22:00:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 160A92BC02F; Mon, 27 Nov 2023 22:00:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E383B2BC02F for ; Mon, 27 Nov 2023 22:00:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8CFB3342DF0 for ; Mon, 27 Nov 2023 22:00:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C577B1298 for ; Mon, 27 Nov 2023 22:00:07 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1701122139.b5e3325de0c1665d5c606f556680e973b188c422.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/gloo/, sci-libs/gloo/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/gloo/files/gloo-2023.01.17-ssl3.patch sci-libs/gloo/gloo-2023.01.17-r1.ebuild sci-libs/gloo/gloo-2023.01.17-r2.ebuild X-VCS-Directories: sci-libs/gloo/files/ sci-libs/gloo/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: b5e3325de0c1665d5c606f556680e973b188c422 X-VCS-Branch: master Date: Mon, 27 Nov 2023 22:00:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cc28972d-9d43-400d-a9ba-dd3b1947a95a X-Archives-Hash: 25622fccf6d487874711406f13da35cc commit: b5e3325de0c1665d5c606f556680e973b188c422 Author: Alfredo Tupone gentoo org> AuthorDate: Mon Nov 27 21:53:34 2023 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Mon Nov 27 21:55:39 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5e3325d sci-libs/gloo: fix ssl3 build Bug: https://bugs.gentoo.org/913685 Signed-off-by: Alfredo Tupone gentoo.org> sci-libs/gloo/files/gloo-2023.01.17-ssl3.patch | 19 +++++++++++++++++++ ...2023.01.17-r1.ebuild => gloo-2023.01.17-r2.ebuild} | 1 + 2 files changed, 20 insertions(+) diff --git a/sci-libs/gloo/files/gloo-2023.01.17-ssl3.patch b/sci-libs/gloo/files/gloo-2023.01.17-ssl3.patch new file mode 100644 index 000000000000..f01beafa4596 --- /dev/null +++ b/sci-libs/gloo/files/gloo-2023.01.17-ssl3.patch @@ -0,0 +1,19 @@ +--- a/gloo/CMakeLists.txt 2023-11-27 22:39:53.709670525 +0100 ++++ b/gloo/CMakeLists.txt 2023-11-27 22:42:29.784250524 +0100 +@@ -77,7 +77,7 @@ + if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux") + set(GLOO_HAVE_TRANSPORT_TCP 1) + if(${USE_TCP_OPENSSL_LINK} OR ${USE_TCP_OPENSSL_LOAD}) +- find_package(OpenSSL 1.1 REQUIRED EXACT) ++ find_package(OpenSSL 1.1...<4 REQUIRED) + set(GLOO_HAVE_TRANSPORT_TCP_TLS 1) + else() + set(GLOO_HAVE_TRANSPORT_TCP_TLS 0) +--- a/gloo/test/CMakeLists.txt 2023-11-27 22:42:55.969844380 +0100 ++++ b/gloo/test/CMakeLists.txt 2023-11-27 22:43:14.873551147 +0100 +@@ -1,4 +1,4 @@ +-find_package(OpenSSL 1.1 REQUIRED EXACT) ++find_package(OpenSSL 1.1...<4 REQUIRED) + + set(GLOO_TEST_SRCS + "${CMAKE_CURRENT_SOURCE_DIR}/allgather_test.cc" diff --git a/sci-libs/gloo/gloo-2023.01.17-r1.ebuild b/sci-libs/gloo/gloo-2023.01.17-r2.ebuild similarity index 97% rename from sci-libs/gloo/gloo-2023.01.17-r1.ebuild rename to sci-libs/gloo/gloo-2023.01.17-r2.ebuild index a2c76198f848..8518665b3cd4 100644 --- a/sci-libs/gloo/gloo-2023.01.17-r1.ebuild +++ b/sci-libs/gloo/gloo-2023.01.17-r2.ebuild @@ -37,6 +37,7 @@ S="${WORKDIR}"/${PN}-${CommitId} PATCHES=( "${FILESDIR}"/${PN}-2022.05.18-gentoo.patch "${FILESDIR}"/${P}-cuda.patch + "${FILESDIR}"/${P}-ssl3.patch ) src_prepare() {