From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1680391-garchives=archives.gentoo.org@lists.gentoo.org> 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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4DF76158042 for <garchives@archives.gentoo.org>; Tue, 15 Oct 2024 20:50:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E68B1E07B3; Tue, 15 Oct 2024 20:50:38 +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 C7F87E07B3 for <gentoo-commits@lists.gentoo.org>; Tue, 15 Oct 2024 20:50:38 +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 97FDA342FB1 for <gentoo-commits@lists.gentoo.org>; Tue, 15 Oct 2024 20:50:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3DE6AE7 for <gentoo-commits@lists.gentoo.org>; Tue, 15 Oct 2024 20:50:35 +0000 (UTC) From: "Nicolas PARLANT" <ppn@parhuet.fr> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas PARLANT" <ppn@parhuet.fr> Message-ID: <1729025413.f4e59e15df2f39abdc93df1f454cc40e89298c60.ppn@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-misc/fileshelter/, net-misc/fileshelter/files/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-misc/fileshelter/files/fileshelter-6.2.0-algorithm.patch net-misc/fileshelter/fileshelter-6.2.0.ebuild X-VCS-Directories: net-misc/fileshelter/files/ net-misc/fileshelter/ X-VCS-Committer: ppn X-VCS-Committer-Name: Nicolas PARLANT X-VCS-Revision: f4e59e15df2f39abdc93df1f454cc40e89298c60 X-VCS-Branch: dev Date: Tue, 15 Oct 2024 20:50:35 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0a523d77-7e2d-48a3-bb2f-465dc9c86268 X-Archives-Hash: 278eb2832104bd45bdcbd3b10be206b6 commit: f4e59e15df2f39abdc93df1f454cc40e89298c60 Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr> AuthorDate: Tue Oct 15 20:44:56 2024 +0000 Commit: Nicolas PARLANT <ppn <AT> parhuet <DOT> fr> CommitDate: Tue Oct 15 20:50:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f4e59e15 net-misc/fileshelter: fix missing include See: https://github.com/epoupon/fileshelter/pull/111 This bug does not affect all build environments. Closes: https://bugs.gentoo.org/941554 Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr> net-misc/fileshelter/files/fileshelter-6.2.0-algorithm.patch | 12 ++++++++++++ net-misc/fileshelter/fileshelter-6.2.0.ebuild | 1 + 2 files changed, 13 insertions(+) diff --git a/net-misc/fileshelter/files/fileshelter-6.2.0-algorithm.patch b/net-misc/fileshelter/files/fileshelter-6.2.0-algorithm.patch new file mode 100644 index 000000000..b178bf0c1 --- /dev/null +++ b/net-misc/fileshelter/files/fileshelter-6.2.0-algorithm.patch @@ -0,0 +1,12 @@ +diff --git a/src/fileshelter/ui/ShareCreateFormView.cpp b/src/fileshelter/ui/ShareCreateFormView.cpp +index ff9b79a..0dc3007 100644 +--- a/src/fileshelter/ui/ShareCreateFormView.cpp ++++ b/src/fileshelter/ui/ShareCreateFormView.cpp +@@ -19,6 +19,7 @@ + + #include "ShareCreateFormView.hpp" + ++#include <algorithm> + #include <numeric> + + #include <Wt/WApplication.h> diff --git a/net-misc/fileshelter/fileshelter-6.2.0.ebuild b/net-misc/fileshelter/fileshelter-6.2.0.ebuild index 7594ab390..63b1c5d53 100644 --- a/net-misc/fileshelter/fileshelter-6.2.0.ebuild +++ b/net-misc/fileshelter/fileshelter-6.2.0.ebuild @@ -27,6 +27,7 @@ DOCS=( INSTALL.md README.md ) PATCHES=" ${FILESDIR}/${PN}-6.2.0-fix-lib-dir.patch + ${FILESDIR}/${PN}-6.2.0-algorithm.patch ${FILESDIR}/${PN}-6.2.0-hierarchy.patch "