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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7AE1915812D for ; Sat, 04 Jan 2025 22:47:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02092E07C9; Sat, 04 Jan 2025 22:47:57 +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 D7AF9E07C9 for ; Sat, 04 Jan 2025 22:47:56 +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 9884F340C77 for ; Sat, 04 Jan 2025 22:47:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CF29619C1 for ; Sat, 04 Jan 2025 22:47:52 +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: <1736030827.1c83f24498e56472bdc8f3f34b27bdbe5e3989b3.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libheif/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libheif/files/libheif-1.18.1-prepend_DESTDIR_when_generating_heif-convert_symlink.patch X-VCS-Directories: media-libs/libheif/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 1c83f24498e56472bdc8f3f34b27bdbe5e3989b3 X-VCS-Branch: master Date: Sat, 04 Jan 2025 22:47:52 +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: 46680f98-9abd-4e79-9ef6-963576926305 X-Archives-Hash: 253328929164b0feb3e6c8bc04377d71 commit: 1c83f24498e56472bdc8f3f34b27bdbe5e3989b3 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Fri Jan 3 15:34:10 2025 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jan 4 22:47:07 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c83f244 media-libs/libheif: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> ...TDIR_when_generating_heif-convert_symlink.patch | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/media-libs/libheif/files/libheif-1.18.1-prepend_DESTDIR_when_generating_heif-convert_symlink.patch b/media-libs/libheif/files/libheif-1.18.1-prepend_DESTDIR_when_generating_heif-convert_symlink.patch deleted file mode 100644 index aee9049751aa..000000000000 --- a/media-libs/libheif/files/libheif-1.18.1-prepend_DESTDIR_when_generating_heif-convert_symlink.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 337aa421f68c0274eb0db047646160b05fdde4a0 Mon Sep 17 00:00:00 2001 -From: Dirk Farin -Date: Wed, 24 Jul 2024 16:11:43 +0200 -Subject: [PATCH] fix installing heif-convert symlink in DESTDIR (#1249) - ---- - examples/CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt -index 8ac3114370..fc9d2f2ca0 100644 ---- a/examples/CMakeLists.txt -+++ b/examples/CMakeLists.txt -@@ -34,7 +34,7 @@ install(FILES heif-dec.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) - - # create symbolic link from the old name `heif-convert` to `heif-dec` - if(NOT WIN32) -- install(CODE "execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink ${DESTDIR}${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}/heif-dec${CMAKE_EXECUTABLE_SUFFIX} ${DESTDIR}${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}/heif-convert${CMAKE_EXECUTABLE_SUFFIX})") -+ install(CODE "execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink heif-dec${CMAKE_EXECUTABLE_SUFFIX} \$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}/heif-convert${CMAKE_EXECUTABLE_SUFFIX})") - else() - install(CODE "execute_process(COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}/heif-dec${CMAKE_EXECUTABLE_SUFFIX} ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}/heif-convert${CMAKE_EXECUTABLE_SUFFIX})") - endif()