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 ECD2B15803E for ; Wed, 3 Jan 2024 10:06:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D4022BC02B; Wed, 3 Jan 2024 10:06:54 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F40D12BC02B for ; Wed, 3 Jan 2024 10:06:53 +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 ED8EF341E1C for ; Wed, 3 Jan 2024 10:06:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 416D8AC2 for ; Wed, 3 Jan 2024 10:06:51 +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: <1704276398.45b8c3f13cd57daf17fe0c8d7a5752af43bcc248.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.1.0-r1.ebuild dev-db/spatialite/spatialite-5.1.0.ebuild X-VCS-Directories: dev-db/spatialite/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 45b8c3f13cd57daf17fe0c8d7a5752af43bcc248 X-VCS-Branch: master Date: Wed, 3 Jan 2024 10:06:51 +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: 3a35f515-8411-42d3-ba9f-f2e5a60c7161 X-Archives-Hash: 5d5ea5a55f03566fd03f2e57ac1e9a11 commit: 45b8c3f13cd57daf17fe0c8d7a5752af43bcc248 Author: Sam James gentoo org> AuthorDate: Wed Jan 3 10:05:37 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jan 3 10:06:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45b8c3f1 dev-db/spatialite: fixup freexl dep, require XML We need freexl's XML support for freexl_open_ods but also doesn't make sense to have optional XML in spatialite as then feels like USE="-xml" but with XLS support isn't tested much upstream. Closes: https://bugs.gentoo.org/920326 Signed-off-by: Sam James gentoo.org> .../{spatialite-5.1.0.ebuild => spatialite-5.1.0-r1.ebuild} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-db/spatialite/spatialite-5.1.0.ebuild b/dev-db/spatialite/spatialite-5.1.0-r1.ebuild similarity index 84% rename from dev-db/spatialite/spatialite-5.1.0.ebuild rename to dev-db/spatialite/spatialite-5.1.0-r1.ebuild index bf5f79f8f622..a509af0c9b1a 100644 --- a/dev-db/spatialite/spatialite-5.1.0.ebuild +++ b/dev-db/spatialite/spatialite-5.1.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -14,17 +14,17 @@ S="${WORKDIR}/${MY_P}" LICENSE="MPL-1.1" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86" -IUSE="+geos iconv +proj rttopo test +xls +xml" +IUSE="+geos iconv +proj rttopo test +xls" # Further poking required RESTRICT="test" RDEPEND=" >=dev-db/sqlite-3.7.5:3[extensions(+)] + dev-libs/libxml2 sys-libs/zlib[minizip] geos? ( >=sci-libs/geos-3.11.0 ) proj? ( sci-libs/proj:= ) - xls? ( >=dev-libs/freexl-2.0.0 ) - xml? ( dev-libs/libxml2 ) + xls? ( >=dev-libs/freexl-2.0.0[xml(+)] ) rttopo? ( sci-geosciences/librttopo ) " DEPEND="${RDEPEND}" @@ -38,6 +38,7 @@ src_configure() { --disable-examples \ --disable-static \ --enable-epsg \ + --enable-libxml2 \ $(use_enable rttopo) \ $(use_enable geos) \ $(use_enable geos geosadvanced) \ @@ -45,8 +46,7 @@ src_configure() { $(use_enable geos geos3110) \ $(use_enable iconv) \ $(use_enable proj) \ - $(use_enable xls freexl) \ - $(use_enable xml libxml2) + $(use_enable xls freexl) } src_install() {