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 6324315808B for ; Wed, 2 Oct 2024 17:54:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34B17E29B5; Wed, 2 Oct 2024 17:54:31 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1A6CBE29B5 for ; Wed, 2 Oct 2024 17:54:31 +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 28D54343089 for ; Wed, 2 Oct 2024 17:54:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 373B02195 for ; Wed, 2 Oct 2024 17:54:28 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1727891655.08ff5be3889a03fc8831fa1e59d62b90c78de5af.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/digikam/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/digikam/files/digikam-8.4.0-fix-find_libheif-regex.patch X-VCS-Directories: media-gfx/digikam/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 08ff5be3889a03fc8831fa1e59d62b90c78de5af X-VCS-Branch: master Date: Wed, 2 Oct 2024 17:54:28 +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: 6084da67-fa38-4972-a0c4-dfb992d7fa16 X-Archives-Hash: a16d5fe7bbd1a72adb335a436007d923 commit: 08ff5be3889a03fc8831fa1e59d62b90c78de5af Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu Sep 26 16:50:03 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Oct 2 17:54:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08ff5be3 media-gfx/digikam: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Andreas Sturmlechner gentoo.org> .../digikam-8.4.0-fix-find_libheif-regex.patch | 25 ---------------------- 1 file changed, 25 deletions(-) diff --git a/media-gfx/digikam/files/digikam-8.4.0-fix-find_libheif-regex.patch b/media-gfx/digikam/files/digikam-8.4.0-fix-find_libheif-regex.patch deleted file mode 100644 index cd18ea3ed475..000000000000 --- a/media-gfx/digikam/files/digikam-8.4.0-fix-find_libheif-regex.patch +++ /dev/null @@ -1,25 +0,0 @@ -From a3ff8ad14c1373f7a7d3c1c9aee4e80954e1859e Mon Sep 17 00:00:00 2001 -From: Maik Qualmann -Date: Tue, 23 Jul 2024 12:33:13 +0200 -Subject: [PATCH] escape the input from REGEX MATCHALL CCBUGS: 490690 - ---- - core/cmake/modules/FindLibheif.cmake | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/core/cmake/modules/FindLibheif.cmake b/core/cmake/modules/FindLibheif.cmake -index fdaf73a4b9e..38876ecc38a 100644 ---- a/core/cmake/modules/FindLibheif.cmake -+++ b/core/cmake/modules/FindLibheif.cmake -@@ -54,7 +54,7 @@ else() - if(HEIF_INCLUDES_DIR) - - file(STRINGS "${HEIF_INCLUDES_DIR}/libheif/heif_version.h" TMP REGEX "^#define LIBHEIF_VERSION[ \t].*$") -- string(REGEX MATCHALL "[0-9.]+" HEIF_VERSION ${TMP}) -+ string(REGEX MATCHALL "[0-9.]+" HEIF_VERSION "${TMP}") - - endif() - --- -GitLab -