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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 176B4158091 for ; Fri, 3 Jun 2022 08:35:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5602CE0894; Fri, 3 Jun 2022 08:35:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3D1EAE0894 for ; Fri, 3 Jun 2022 08:35:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5BC173419C7 for ; Fri, 3 Jun 2022 08:35:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B94674E5 for ; Fri, 3 Jun 2022 08:35:23 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1654245303.ebf1639a78a3638f02699f1e56977508ca356940.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/hpx/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/hpx/hpx-9999.ebuild X-VCS-Directories: sys-cluster/hpx/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: ebf1639a78a3638f02699f1e56977508ca356940 X-VCS-Branch: master Date: Fri, 3 Jun 2022 08:35:23 +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: 1f9bdfcf-2b5d-4118-9e1c-7d54d1c84bfc X-Archives-Hash: 05e1779e7dc916081261775af109ed00 commit: ebf1639a78a3638f02699f1e56977508ca356940 Author: Kurt Kanzenbach kmk-computers de> AuthorDate: Mon May 30 18:55:17 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Jun 3 08:35:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebf1639a sys-cluster/hpx: Sync live ebuild Signed-off-by: Kurt Kanzenbach kmk-computers.de> Signed-off-by: Florian Schmaus gentoo.org> sys-cluster/hpx/hpx-9999.ebuild | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/sys-cluster/hpx/hpx-9999.ebuild b/sys-cluster/hpx/hpx-9999.ebuild index e9869e80d74e..0a6b331c8541 100644 --- a/sys-cluster/hpx/hpx-9999.ebuild +++ b/sys-cluster/hpx/hpx-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) if [[ ${PV} == 9999 ]] ; then inherit git-r3 @@ -15,11 +15,11 @@ fi inherit check-reqs cmake multiprocessing python-single-r1 DESCRIPTION="C++ runtime system for parallel and distributed applications" -HOMEPAGE="https://stellar.cct.lsu.edu/tag/hpx/" +HOMEPAGE="https://hpx.stellar-group.org/" SLOT="0" LICENSE="Boost-1.0" -IUSE="examples jemalloc mpi papi +perftools tbb" +IUSE="examples jemalloc mpi papi +perftools tbb zlib" # tests fail to compile RESTRICT="test" @@ -36,12 +36,12 @@ RDEPEND=" >=dev-cpp/asio-1.12.0 dev-libs/boost:= sys-apps/hwloc:= - sys-libs/zlib jemalloc? ( dev-libs/jemalloc:= ) mpi? ( virtual/mpi ) papi? ( dev-libs/papi ) perftools? ( dev-util/google-perftools:= ) tbb? ( dev-cpp/tbb:= ) + zlib? ( sys-libs/zlib ) " DEPEND="${RDEPEND}" @@ -74,7 +74,8 @@ src_configure() { -DHPX_WITH_PARCELPORT_MPI=$(usex mpi) -DHPX_WITH_PAPI=$(usex papi) -DHPX_WITH_GOOGLE_PERFTOOLS=$(usex perftools) - -DBUILD_TESTING=OFF + -DHPX_WITH_COMPRESSION_ZLIB=$(usex zlib) + -DHPX_WITH_TESTS=OFF ) if use jemalloc; then mycmakeargs+=( -DHPX_WITH_MALLOC=jemalloc )