Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libspatialindex/, sci-libs/libspatialindex/files/
Date: Thu, 07 Jan 2021 11:16:31
Message-Id: 1610018183.a66e627f237837b81f3c475a762b13cacfeb4e6a.sam@gentoo
1 commit: a66e627f237837b81f3c475a762b13cacfeb4e6a
2 Author: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 08:21:43 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 11:16:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a66e627f
7
8 sci-libs/libspatialindex: drop old
9
10 Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
11 Closes: https://github.com/gentoo/gentoo/pull/18972
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 sci-libs/libspatialindex/Manifest | 1 -
15 .../files/libspatialindex-1.8.1-QA.patch | 15 --------
16 .../libspatialindex-1.8.5-r1.ebuild | 40 ----------------------
17 3 files changed, 56 deletions(-)
18
19 diff --git a/sci-libs/libspatialindex/Manifest b/sci-libs/libspatialindex/Manifest
20 index 48a85c3a79c..d830821da52 100644
21 --- a/sci-libs/libspatialindex/Manifest
22 +++ b/sci-libs/libspatialindex/Manifest
23 @@ -1,2 +1 @@
24 -DIST spatialindex-src-1.8.5.tar.bz2 407871 BLAKE2B 936d0fc4950b4c685088c84019aa22e720371c623bd1883725dc497380e90072333c25f979e13fbc91b7d164b87cb21a285c037bdbe0b8df84eb3876590e8dd1 SHA512 d3e47982cc2809d04490fae27796b31cdb59675790010d8b45e1a98b5a23048a4a44e321a2470dd36c01aba6f6e7620cafc4988a02b55e4f59d1b7fa9b588b06
25 DIST spatialindex-src-1.9.3.tar.bz2 520817 BLAKE2B 89bbb4ef76f620042cbaa2822daad1459bb8a3801fcdedaa73fdc666efcae0e5329e15e79607e3a31ef9a651fbbf9d3657f5bada19b229eaf37fe232935b8dae SHA512 7922807a2f7026542a014d3d7943da5410429b291cf469267ffea5b8075eab2a94e68b6c013425615d221b930fd319c403f3bf43404c9b1d2c92d0e2baae3066
26
27 diff --git a/sci-libs/libspatialindex/files/libspatialindex-1.8.1-QA.patch b/sci-libs/libspatialindex/files/libspatialindex-1.8.1-QA.patch
28 deleted file mode 100644
29 index 446452dc9ef..00000000000
30 --- a/sci-libs/libspatialindex/files/libspatialindex-1.8.1-QA.patch
31 +++ /dev/null
32 @@ -1,15 +0,0 @@
33 ---- spatialindex-src-1.8.0/configure.ac
34 -+++ spatialindex-src-1.8.0/configure.ac
35 -@@ -49,10 +49,10 @@
36 - AC_ARG_ENABLE(debug, [ --enable-debug=[no/yes] turn on debugging [default=$debug_default]],, enable_debug=$debug_default)
37 -
38 - if test "x$enable_debug" = "xyes"; then
39 -- CXXFLAGS="$CXXFLAGS -g -DDEBUG"
40 -+ CXXFLAGS="$CXXFLAGS -DDEBUG"
41 - AC_MSG_RESULT(checking wether debug information is enabled... yes)
42 - else
43 -- CXXFLAGS="$CXXFLAGS -O2 -DNDEBUG"
44 -+ CXXFLAGS="$CXXFLAGS -DNDEBUG"
45 - AC_MSG_RESULT(checking wether debug information is enabled... no)
46 - fi
47 -
48
49 diff --git a/sci-libs/libspatialindex/libspatialindex-1.8.5-r1.ebuild b/sci-libs/libspatialindex/libspatialindex-1.8.5-r1.ebuild
50 deleted file mode 100644
51 index 2e959536740..00000000000
52 --- a/sci-libs/libspatialindex/libspatialindex-1.8.5-r1.ebuild
53 +++ /dev/null
54 @@ -1,40 +0,0 @@
55 -# Copyright 1999-2020 Gentoo Authors
56 -# Distributed under the terms of the GNU General Public License v2
57 -
58 -EAPI=6
59 -
60 -inherit autotools eutils ltprune
61 -
62 -MY_PN="spatialindex-src"
63 -MY_P="${MY_PN}-${PV}"
64 -
65 -DESCRIPTION="General framework for developing spatial indices"
66 -HOMEPAGE="https://libspatialindex.github.com/"
67 -SRC_URI="http://download.osgeo.org/libspatialindex/${MY_P}.tar.bz2"
68 -LICENSE="MIT"
69 -
70 -KEYWORDS="amd64 x86"
71 -SLOT="0/4"
72 -IUSE="debug static-libs"
73 -
74 -S=${WORKDIR}/${MY_P}
75 -
76 -PATCHES=(
77 - "${FILESDIR}"/${PN}-1.8.1-QA.patch
78 -)
79 -
80 -src_prepare() {
81 - default
82 - eautoreconf
83 -}
84 -
85 -src_configure() {
86 - econf \
87 - $(use_enable static-libs static) \
88 - $(use_enable debug)
89 -}
90 -
91 -src_install() {
92 - default
93 - use static-libs || prune_libtool_files
94 -}