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 A5A94158031 for ; Mon, 27 Feb 2023 11:22:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93343E07C9; Mon, 27 Feb 2023 11:22:39 +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 77FCEE07C9 for ; Mon, 27 Feb 2023 11:22:39 +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 243C833BEEB for ; Mon, 27 Feb 2023 11:22:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 519F98BB for ; Mon, 27 Feb 2023 11:22:36 +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: <1677496946.3e011cd6f314f2032f5e6918dbdda5b308f47edb.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/hpx/, sys-cluster/hpx/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/hpx/files/hpx-1.8.1-fix-intmax-error.patch sys-cluster/hpx/hpx-1.8.1.ebuild X-VCS-Directories: sys-cluster/hpx/ sys-cluster/hpx/files/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 3e011cd6f314f2032f5e6918dbdda5b308f47edb X-VCS-Branch: master Date: Mon, 27 Feb 2023 11:22:36 +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: c6265201-b709-4b7a-9e4e-2faf9469e4ed X-Archives-Hash: 072366e128c51f60ccc9ac3fb2c83ea5 commit: 3e011cd6f314f2032f5e6918dbdda5b308f47edb Author: Kurt Kanzenbach kmk-computers de> AuthorDate: Wed Feb 22 20:48:47 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Feb 27 11:22:26 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e011cd6 sys-cluster/hpx: Fix build failure Fix build failure due to missing header file regarding std::intmax_t. Patch taken from upstream master branch. Closes: https://bugs.gentoo.org/895212 Signed-off-by: Kurt Kanzenbach kmk-computers.de> Closes: https://github.com/gentoo/gentoo/pull/29734 Signed-off-by: Florian Schmaus gentoo.org> .../hpx/files/hpx-1.8.1-fix-intmax-error.patch | 24 ++++++++++++++++++++++ sys-cluster/hpx/hpx-1.8.1.ebuild | 1 + 2 files changed, 25 insertions(+) diff --git a/sys-cluster/hpx/files/hpx-1.8.1-fix-intmax-error.patch b/sys-cluster/hpx/files/hpx-1.8.1-fix-intmax-error.patch new file mode 100644 index 000000000000..58d6a70a15ff --- /dev/null +++ b/sys-cluster/hpx/files/hpx-1.8.1-fix-intmax-error.patch @@ -0,0 +1,24 @@ +From 9ce60348a5401fe58b6fd7333d3d7e19f0d6d8ac Mon Sep 17 00:00:00 2001 +From: Jonathan Wakely +Date: Wed, 8 Feb 2023 12:32:11 +0000 +Subject: [PATCH] Add missing header for std::intmax_t + +--- + .../include/hpx/iterator_support/counting_iterator.hpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/libs/core/iterator_support/include/hpx/iterator_support/counting_iterator.hpp b/libs/core/iterator_support/include/hpx/iterator_support/counting_iterator.hpp +index e6e6c7a99cb8..1414648cc2cf 100644 +--- a/libs/core/iterator_support/include/hpx/iterator_support/counting_iterator.hpp ++++ b/libs/core/iterator_support/include/hpx/iterator_support/counting_iterator.hpp +@@ -18,6 +18,7 @@ + #include + + #include ++#include + #include + #include + +-- +2.39.2 + diff --git a/sys-cluster/hpx/hpx-1.8.1.ebuild b/sys-cluster/hpx/hpx-1.8.1.ebuild index 3de266f8b503..a875850567d3 100644 --- a/sys-cluster/hpx/hpx-1.8.1.ebuild +++ b/sys-cluster/hpx/hpx-1.8.1.ebuild @@ -47,6 +47,7 @@ DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}/${PN}-1.8.0-python.patch" + "${FILESDIR}/${PN}-1.8.1-fix-intmax-error.patch" ) hpx_memory_requirement() {