From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8215415813A for ; Mon, 20 Jan 2025 21:57:47 +0000 (UTC) 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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 33D6A340BEA for ; Mon, 20 Jan 2025 21:57:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7AF99E01E4; Mon, 20 Jan 2025 21:57:39 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 A1F79E01E4 for ; Mon, 20 Jan 2025 21:57:37 +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 D7338341939 for ; Mon, 20 Jan 2025 21:57:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 709B815B5 for ; Mon, 20 Jan 2025 21:57:35 +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: <1737410237.c7c9370d17ff1ae879f69cc17805d7f6e1e20ed6.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/airdcpp-webclient/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/airdcpp-webclient/files/airdcpp-webclient-2.12.1-miniupnpc-2.2.8.patch X-VCS-Directories: net-p2p/airdcpp-webclient/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: c7c9370d17ff1ae879f69cc17805d7f6e1e20ed6 X-VCS-Branch: master Date: Mon, 20 Jan 2025 21:57:35 +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: 32892da2-f9f0-43de-8a09-afbf51922fe9 X-Archives-Hash: 14d3037ebb6acbd7892bb9539a2a72a3 commit: c7c9370d17ff1ae879f69cc17805d7f6e1e20ed6 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Jan 20 17:14:18 2025 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon Jan 20 21:57:17 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c9370d net-p2p/airdcpp-webclient: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../airdcpp-webclient-2.12.1-miniupnpc-2.2.8.patch | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/net-p2p/airdcpp-webclient/files/airdcpp-webclient-2.12.1-miniupnpc-2.2.8.patch b/net-p2p/airdcpp-webclient/files/airdcpp-webclient-2.12.1-miniupnpc-2.2.8.patch deleted file mode 100644 index 64dcce950d48..000000000000 --- a/net-p2p/airdcpp-webclient/files/airdcpp-webclient-2.12.1-miniupnpc-2.2.8.patch +++ /dev/null @@ -1,22 +0,0 @@ -https://github.com/airdcpp/airdcpp-windows/commit/2b1cd3d05774ce8134186bb9977a45cf00aaaef5 - -From 2b1cd3d05774ce8134186bb9977a45cf00aaaef5 Mon Sep 17 00:00:00 2001 -From: maksis -Date: Thu, 13 Jun 2024 20:05:17 +0300 -Subject: [PATCH] Add support for miniupnpc 2.2.8 - ---- a/airdcpp-core/airdcpp/Mapper_MiniUPnPc.cpp -+++ b/airdcpp-core/airdcpp/Mapper_MiniUPnPc.cpp -@@ -108,7 +108,12 @@ bool Mapper_MiniUPnPc::init() { - UPNPUrls urls; - IGDdatas data; - -+#if (MINIUPNPC_API_VERSION >= 18) -+ auto ret = UPNP_GetValidIGD(devices, &urls, &data, 0, 0, nullptr, 0); -+#else - auto ret = UPNP_GetValidIGD(devices, &urls, &data, 0, 0); -+#endif -+ - - bool ok = ret == 1; - if(ok) {