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 C4B261581C1 for ; Fri, 5 Jul 2024 17:41:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 636212BC10F; Fri, 5 Jul 2024 17:41:58 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4B7002BC10D for ; Fri, 5 Jul 2024 17:41:58 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D06734309D for ; Fri, 5 Jul 2024 17:41:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41CB41DD5 for ; Fri, 5 Jul 2024 17:41:54 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1720201276.16475062a50965f48ef7e07d94fc693854d4abbb.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/asymptote/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/asymptote/files/asymptote-2.86-without-lsp.patch X-VCS-Directories: media-gfx/asymptote/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 16475062a50965f48ef7e07d94fc693854d4abbb X-VCS-Branch: master Date: Fri, 5 Jul 2024 17:41:54 +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: c946e56a-8abb-48a5-a225-a67b0a811402 X-Archives-Hash: e439d15944563b8c51ac0b4554623833 commit: 16475062a50965f48ef7e07d94fc693854d4abbb Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu Jul 4 06:57:01 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Jul 5 17:41:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16475062 media-gfx/asymptote: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../files/asymptote-2.86-without-lsp.patch | 50 ---------------------- 1 file changed, 50 deletions(-) diff --git a/media-gfx/asymptote/files/asymptote-2.86-without-lsp.patch b/media-gfx/asymptote/files/asymptote-2.86-without-lsp.patch deleted file mode 100644 index 2f70cd0d9725..000000000000 --- a/media-gfx/asymptote/files/asymptote-2.86-without-lsp.patch +++ /dev/null @@ -1,50 +0,0 @@ -From 29caaed5ead5a62787475286afd22e40585b8bb8 Mon Sep 17 00:00:00 2001 -From: John Bowman -Date: Wed, 14 Jun 2023 22:36:35 -0600 -Subject: [PATCH] Fix --without-lsp (issue #379). - ---- - common.h | 17 ++++++++--------- - 1 file changed, 8 insertions(+), 9 deletions(-) - -diff --git a/common.h b/common.h -index 13f8be106..6ee3d971f 100644 ---- a/common.h -+++ b/common.h -@@ -17,28 +17,27 @@ - #include "config.h" - #endif - --#ifdef HAVE_LSP - #if __cplusplus < 201703L -+ -+#ifdef HAVE_LSP - #include - #include - using boost::optional; - #define nullopt boost::none - using boost::make_optional; - #else --#include --using std::optional; --using std::nullopt; --using std::make_optional; --#endif -- --#else --#if __cplusplus < 201703L - #include "optional.hpp" - #define boost nonstd - using nonstd::optional; - using nonstd::nullopt; - using nonstd::make_optional; - #endif -+ -+#else -+#include -+using std::optional; -+using std::nullopt; -+using std::make_optional; - #endif - - using std::make_pair;