public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/
Date: Fri, 10 Jan 2025 21:08:32 +0000 (UTC)	[thread overview]
Message-ID: <1736543296.d967c2911cdd7356395b7e14fe42feb7512efcfc.asturm@gentoo> (raw)

commit:     d967c2911cdd7356395b7e14fe42feb7512efcfc
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 10 17:40:12 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Jan 10 21:08:16 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d967c291

dev-db/spatialite: drop 5.0.1-r1, 5.0.1-r2

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-db/spatialite/Manifest                   |  1 -
 dev-db/spatialite/spatialite-5.0.1-r1.ebuild | 56 -------------------------
 dev-db/spatialite/spatialite-5.0.1-r2.ebuild | 61 ----------------------------
 3 files changed, 118 deletions(-)

diff --git a/dev-db/spatialite/Manifest b/dev-db/spatialite/Manifest
index e8acae8fd106..d0a6259ca668 100644
--- a/dev-db/spatialite/Manifest
+++ b/dev-db/spatialite/Manifest
@@ -1,2 +1 @@
-DIST libspatialite-5.0.1.tar.gz 6372753 BLAKE2B 0fe5b37efac134e3796c96ed012b434ce99547037a44df69d3e98c7ac586c1173faa1fe93c4578e7cc0f47a9f1c539710661bad57f8012c3bdabde427221a842 SHA512 c2552994bc30d69d1e80aa274760f048cd384f71e8350a1e48a47cb8222ba71a1554a69c6534eedde9a09dc582c39c089967bcc1c57bf158cc91a3e7b1840ddf
 DIST libspatialite-5.1.0.tar.gz 6517377 BLAKE2B 871e2be82dd1f02de76f0755b6ea7a53797dd9905fe481d6f56dcf8a87278f0a9326a3e0662620cbf6bfe53f932dab199602885c7efcbc5a5e56781a7599d226 SHA512 2745b373e31cea58623224def6090c491b58409803bb71231450dfa2cfdf3aafc3fc6f680585d55d085008f8cf362c3062ae67ffc7d80257775a22eb81ef1e57

diff --git a/dev-db/spatialite/spatialite-5.0.1-r1.ebuild b/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
deleted file mode 100644
index 59c694433372..000000000000
--- a/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-
-MY_PN="lib${PN}"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
-HOMEPAGE="https://www.gaia-gis.it/gaia-sins/"
-SRC_URI="https://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86"
-IUSE="+geos iconv +proj test +xls +xml"
-# Further poking required
-RESTRICT="test"
-
-RDEPEND="
-	>=dev-db/sqlite-3.7.5:3[extensions(+)]
-	sys-libs/zlib[minizip]
-	geos? ( >=sci-libs/geos-3.4 )
-	proj? ( sci-libs/proj:= )
-	xls? ( dev-libs/freexl )
-	xml? ( dev-libs/libxml2 )
-"
-DEPEND="${RDEPEND}"
-
-REQUIRED_USE="test? ( iconv )"
-
-src_configure() {
-	# 1) rttopo not yet packaged
-	# 2) gcp disabled for now to preserve MPL licence
-	econf \
-		--disable-rttopo \
-		--disable-gcp \
-		--disable-examples \
-		--disable-static \
-		--enable-epsg \
-		--enable-geocallbacks \
-		$(use_enable geos) \
-		$(use_enable geos geosadvanced) \
-		$(use_enable iconv) \
-		$(use_enable proj) \
-		$(use_enable xls freexl) \
-		$(use_enable xml libxml2)
-}
-
-src_install() {
-	default
-	find "${D}" -name '*.la' -delete || die
-}

diff --git a/dev-db/spatialite/spatialite-5.0.1-r2.ebuild b/dev-db/spatialite/spatialite-5.0.1-r2.ebuild
deleted file mode 100644
index f9cff2e33cca..000000000000
--- a/dev-db/spatialite/spatialite-5.0.1-r2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# 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}"
-
-DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
-HOMEPAGE="https://www.gaia-gis.it/gaia-sins/"
-SRC_URI="https://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86"
-IUSE="+geos iconv +proj rttopo test +xls +xml"
-# Further poking required
-RESTRICT="test"
-
-RDEPEND="
-	>=dev-db/sqlite-3.7.5:3[extensions(+)]
-	sys-libs/zlib[minizip]
-	geos? ( >=sci-libs/geos-3.4 )
-	proj? ( sci-libs/proj:= )
-	xls? ( dev-libs/freexl )
-	xml? ( dev-libs/libxml2 )
-	rttopo? ( sci-geosciences/librttopo )
-"
-DEPEND="${RDEPEND}"
-
-REQUIRED_USE="test? ( iconv )"
-
-src_prepare() {
-	default
-	elibtoolize
-}
-
-src_configure() {
-	# 1) gcp disabled for now to preserve MPL licence
-	econf \
-		--disable-gcp \
-		--disable-examples \
-		--disable-static \
-		--enable-epsg \
-		--enable-geocallbacks \
-		$(use_enable rttopo) \
-		$(use_enable geos) \
-		$(use_enable geos geosadvanced) \
-		$(use_enable iconv) \
-		$(use_enable proj) \
-		$(use_enable xls freexl) \
-		$(use_enable xml libxml2)
-}
-
-src_install() {
-	default
-	find "${ED}" -name '*.la' -delete || die
-}


             reply	other threads:[~2025-01-10 21:08 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-10 21:08 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-26 19:11 [gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/ Arthur Zamarin
2025-04-26 10:57 Sam James
2024-11-24 18:13 Jakov Smolić
2024-11-24 11:02 Sam James
2024-11-23 16:08 Sam James
2024-03-14  2:25 Sam James
2024-01-03 10:06 Sam James
2023-12-23 20:00 Arthur Zamarin
2023-12-16 19:16 Arthur Zamarin
2023-12-16 16:17 Arthur Zamarin
2023-12-05 11:01 Sam James
2023-09-12 14:04 Andrew Ammerlaan
2022-05-04 23:28 Sam James
2021-08-14 23:15 Marek Szuba
2021-05-01 18:19 Agostino Sarubbo
2021-04-11  0:13 Thomas Deutschmann
2021-04-10 12:44 Sam James
2021-03-01 23:37 Sam James
2020-03-21 10:43 Andreas Sturmlechner
2020-03-21  9:24 Mart Raudsepp
2019-10-20 14:21 Andreas Sturmlechner
2019-08-19 11:37 Agostino Sarubbo
2019-08-19  5:43 Agostino Sarubbo
2019-05-16 19:30 Aaron Bauman
2017-07-30  7:05 Alexis Ballier
2017-07-20 20:57 Sergei Trofimovich
2017-03-02 19:39 Andreas Sturmlechner
2017-03-02 10:47 Agostino Sarubbo
2017-03-02 10:30 Agostino Sarubbo
2017-02-19 21:15 Andreas Sturmlechner
2017-02-19 21:15 Andreas Sturmlechner
2016-03-27 12:02 Sam Jorna
2016-02-29 18:35 Amy Winston
2016-01-12 21:30 Amy Winston
2016-01-12 21:30 Amy Winston

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1736543296.d967c2911cdd7356395b7e14fe42feb7512efcfc.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox