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 1FEBA15807A for ; Mon, 7 Oct 2024 03:28:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BE2DE29AE; Mon, 7 Oct 2024 03:28:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 58DBEE29AE for ; Mon, 7 Oct 2024 03:28:01 +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 9AEDD34317F for ; Mon, 7 Oct 2024 03:28:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CAD692195 for ; Mon, 7 Oct 2024 03:27:57 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1728271437.09bad9bf3a160e2352a3d4d48e7a44f32e3e2b82.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-pda/libimobiledevice-glue/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-pda/libimobiledevice-glue/libimobiledevice-glue-1.1.0.ebuild app-pda/libimobiledevice-glue/libimobiledevice-glue-1.3.0.ebuild X-VCS-Directories: app-pda/libimobiledevice-glue/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 09bad9bf3a160e2352a3d4d48e7a44f32e3e2b82 X-VCS-Branch: master Date: Mon, 7 Oct 2024 03:27:57 +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: eaffd385-ea00-4d9c-8463-d61d4e52fb19 X-Archives-Hash: 63ddb5f685c2531e614d85c8b00f7cb1 commit: 09bad9bf3a160e2352a3d4d48e7a44f32e3e2b82 Author: Eli Schwartz gentoo org> AuthorDate: Mon Oct 7 02:29:37 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Mon Oct 7 03:23:57 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09bad9bf app-pda/libimobiledevice-glue: make sure elibtoolize is applied Needed to e.g. pass LTO warning flags through to the linker. Signed-off-by: Eli Schwartz gentoo.org> app-pda/libimobiledevice-glue/libimobiledevice-glue-1.1.0.ebuild | 7 +++++++ app-pda/libimobiledevice-glue/libimobiledevice-glue-1.3.0.ebuild | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/app-pda/libimobiledevice-glue/libimobiledevice-glue-1.1.0.ebuild b/app-pda/libimobiledevice-glue/libimobiledevice-glue-1.1.0.ebuild index 003d3959025d..ff848bdd94bd 100644 --- a/app-pda/libimobiledevice-glue/libimobiledevice-glue-1.1.0.ebuild +++ b/app-pda/libimobiledevice-glue/libimobiledevice-glue-1.1.0.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit libtool + DESCRIPTION="Support library for libimobiledevice projects" HOMEPAGE="https://github.com/libimobiledevice/libimobiledevice-glue" SRC_URI="https://github.com/libimobiledevice/libimobiledevice-glue/releases/download/${PV}/${P}.tar.bz2" @@ -15,6 +17,11 @@ RDEPEND=">=app-pda/libplist-2.3:=" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" +src_prepare() { + default + elibtoolize +} + src_install() { default find "${D}" -name '*.la' -delete || die diff --git a/app-pda/libimobiledevice-glue/libimobiledevice-glue-1.3.0.ebuild b/app-pda/libimobiledevice-glue/libimobiledevice-glue-1.3.0.ebuild index 1f5b8dfc748a..5370111b3509 100644 --- a/app-pda/libimobiledevice-glue/libimobiledevice-glue-1.3.0.ebuild +++ b/app-pda/libimobiledevice-glue/libimobiledevice-glue-1.3.0.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit libtool + DESCRIPTION="Support library for libimobiledevice projects" HOMEPAGE="https://github.com/libimobiledevice/libimobiledevice-glue" SRC_URI="https://github.com/libimobiledevice/libimobiledevice-glue/releases/download/${PV}/${P}.tar.bz2" @@ -15,6 +17,11 @@ RDEPEND=">=app-pda/libplist-2.3:=" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" +src_prepare() { + default + elibtoolize +} + src_install() { default find "${D}" -name '*.la' -delete || die