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 4EF8C15802E for ; Sun, 30 Jun 2024 00:00:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7EA9EE2B71; Sun, 30 Jun 2024 00:00:15 +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 665A0E2B72 for ; Sun, 30 Jun 2024 00:00:15 +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 A9032340C42 for ; Sun, 30 Jun 2024 00:00:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E60CA1D9E for ; Sun, 30 Jun 2024 00:00:11 +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: <1719705417.b45977634fea6bd3bd1c42e769e614322b6ec40c.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/pinentry/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/pinentry/files/pinentry-1.2.1-libassuan-3.patch X-VCS-Directories: app-crypt/pinentry/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: b45977634fea6bd3bd1c42e769e614322b6ec40c X-VCS-Branch: master Date: Sun, 30 Jun 2024 00:00:11 +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: 2c0ebdbf-ed50-422b-9e60-ee2b6105dc58 X-Archives-Hash: d3911a55b0732927665af3228031296b commit: b45977634fea6bd3bd1c42e769e614322b6ec40c Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sat Jun 29 09:13:16 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jun 29 23:56:57 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4597763 app-crypt/pinentry: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../files/pinentry-1.2.1-libassuan-3.patch | 46 ---------------------- 1 file changed, 46 deletions(-) diff --git a/app-crypt/pinentry/files/pinentry-1.2.1-libassuan-3.patch b/app-crypt/pinentry/files/pinentry-1.2.1-libassuan-3.patch deleted file mode 100644 index 35b71998e87a..000000000000 --- a/app-crypt/pinentry/files/pinentry-1.2.1-libassuan-3.patch +++ /dev/null @@ -1,46 +0,0 @@ -https://bugs.gentoo.org/934771 -https://git.gnupg.org/cgi-bin/gitweb.cgi?p=pinentry.git;a=commit;h=a39ba412ab24721d4edb6476156371f8bf1d3ff9 - -From a39ba412ab24721d4edb6476156371f8bf1d3ff9 Mon Sep 17 00:00:00 2001 -From: NIIBE Yutaka -Date: Fri, 28 Jul 2023 14:09:11 +0900 -Subject: [PATCH] build: Update libassuan.m4 for libassuan version 3 in future. - -* m4/libassuan.m4: Update from libassuan master. - --- - -New libassuan 3 has backward compatible API. - -Signed-off-by: NIIBE Yutaka ---- a/m4/libassuan.m4 -+++ b/m4/libassuan.m4 -@@ -9,7 +9,7 @@ dnl This file is distributed in the hope that it will be useful, but - dnl WITHOUT ANY WARRANTY, to the extent permitted by law; without even the - dnl implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - dnl SPDX-License-Identifier: FSFULLR --# Last-changed: 2022-11-01 -+# Last-changed: 2023-07-26 - - dnl - dnl Common code used for libassuan detection [internal] -@@ -89,6 +89,7 @@ AC_DEFUN([_AM_PATH_LIBASSUAN_COMMON], - - if test $ok = yes; then - AC_MSG_RESULT([yes ($libassuan_config_version)]) -+ AC_DEFINE(LIBASSUAN_API_REQUESTED, $req_libassuan_api, Requested API version for libassuan) - else - AC_MSG_RESULT(no) - fi -@@ -104,6 +105,8 @@ AC_DEFUN([_AM_PATH_LIBASSUAN_COMMON], - AC_MSG_CHECKING([LIBASSUAN API version]) - if test "$req_libassuan_api" -eq "$tmp" ; then - AC_MSG_RESULT(okay) -+ elif test "$req_libassuan_api" -eq 2 -a "$tmp" -eq 3; then -+ AC_MSG_RESULT(okay) - else - ok=no - AC_MSG_RESULT([does not match. want=$req_libassuan_api got=$tmp.]) --- -2.30.2 -