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 C7B81158041 for ; Thu, 14 Mar 2024 02:25:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CFFE6E29B9; Thu, 14 Mar 2024 02:25:45 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A7BEE29B9 for ; Thu, 14 Mar 2024 02:25:45 +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 ADE79335D72 for ; Thu, 14 Mar 2024 02:25:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E130313DE for ; Thu, 14 Mar 2024 02:25:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1710381587.6183a5d7f07a7d0e61a72437169ad6554497ce49.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/spatialite/spatialite-5.0.1-r2.ebuild dev-db/spatialite/spatialite-5.1.0-r1.ebuild X-VCS-Directories: dev-db/spatialite/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6183a5d7f07a7d0e61a72437169ad6554497ce49 X-VCS-Branch: master Date: Thu, 14 Mar 2024 02:25:42 +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: 6df7e3d2-8015-4c8a-97d6-c00733a3dddf X-Archives-Hash: efdb135f5778ca31abef17a8d61c6031 commit: 6183a5d7f07a7d0e61a72437169ad6554497ce49 Author: Eli Schwartz gmail com> AuthorDate: Thu Mar 14 00:47:10 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 14 01:59:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6183a5d7 dev-db/spatialite: make sure elibtoolize is applied Needed to e.g. pass LTO warning flags through to the linker. Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> dev-db/spatialite/spatialite-5.0.1-r2.ebuild | 9 ++++++++- dev-db/spatialite/spatialite-5.1.0-r1.ebuild | 7 +++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/dev-db/spatialite/spatialite-5.0.1-r2.ebuild b/dev-db/spatialite/spatialite-5.0.1-r2.ebuild index 3b51ff672d08..fceb9a7de979 100644 --- a/dev-db/spatialite/spatialite-5.0.1-r2.ebuild +++ b/dev-db/spatialite/spatialite-5.0.1-r2.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit libtool + MY_PN="lib${PN}" MY_P="${MY_PN}-${PV}" @@ -31,6 +33,11 @@ DEPEND="${RDEPEND}" REQUIRED_USE="test? ( iconv )" +src_prepare() { + default + elibtoolize +} + src_configure() { # 1) gcp disabled for now to preserve MPL licence econf \ diff --git a/dev-db/spatialite/spatialite-5.1.0-r1.ebuild b/dev-db/spatialite/spatialite-5.1.0-r1.ebuild index a509af0c9b1a..ccfc1ed4aa66 100644 --- a/dev-db/spatialite/spatialite-5.1.0-r1.ebuild +++ b/dev-db/spatialite/spatialite-5.1.0-r1.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit libtool + MY_PN="lib${PN}" MY_P="${MY_PN}-${PV}" @@ -31,6 +33,11 @@ DEPEND="${RDEPEND}" REQUIRED_USE="test? ( iconv )" +src_prepare() { + default + elibtoolize +} + src_configure() { # 1) gcp disabled for now to preserve MPL licence econf \