[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2024-03-13 Thread Sam James
commit: 6183a5d7f07a7d0e61a72437169ad6554497ce49
Author: Eli Schwartz  gmail  com>
AuthorDate: Thu Mar 14 00:47:10 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar 14 01:59:47 2024 +
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 \



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2024-01-03 Thread Sam James
commit: 45b8c3f13cd57daf17fe0c8d7a5752af43bcc248
Author: Sam James  gentoo  org>
AuthorDate: Wed Jan  3 10:05:37 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jan  3 10:06:38 2024 +
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() {



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2023-12-23 Thread Arthur Zamarin
commit: 14006d6ef3288c198c7b9fd2be534e6557fc67e6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec 23 20:00:38 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec 23 20:00:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14006d6e

dev-db/spatialite: Stabilize 5.0.1-r2 x86, #920141

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-db/spatialite/spatialite-5.0.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 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 5435209d961a..3b51ff672d08 100644
--- a/dev-db/spatialite/spatialite-5.0.1-r2.ebuild
+++ b/dev-db/spatialite/spatialite-5.0.1-r2.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv x86"
 IUSE="+geos iconv +proj rttopo test +xls +xml"
 # Further poking required
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2023-12-16 Thread Arthur Zamarin
commit: edb98db52ca686f4a2fc14e5f4e08d0e8196d55e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec 16 19:16:19 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec 16 19:16:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edb98db5

dev-db/spatialite: Stabilize 5.0.1-r2 amd64, #920141

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-db/spatialite/spatialite-5.0.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 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 18ea2d28902a..5435209d961a 100644
--- a/dev-db/spatialite/spatialite-5.0.1-r2.ebuild
+++ b/dev-db/spatialite/spatialite-5.0.1-r2.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86"
 IUSE="+geos iconv +proj rttopo test +xls +xml"
 # Further poking required
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2023-12-16 Thread Arthur Zamarin
commit: d4f88a8178ef47bbcb308a12e040a731ca3b48c4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec 16 16:17:06 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec 16 16:17:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4f88a81

dev-db/spatialite: Stabilize 5.0.1-r2 arm64, #920141

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-db/spatialite/spatialite-5.0.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 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 9e9e02eba1df..18ea2d28902a 100644
--- a/dev-db/spatialite/spatialite-5.0.1-r2.ebuild
+++ b/dev-db/spatialite/spatialite-5.0.1-r2.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86"
 IUSE="+geos iconv +proj rttopo test +xls +xml"
 # Further poking required
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2023-12-05 Thread Sam James
commit: 7e20e74a04338984b7359190daba16d6955c2ba9
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec  5 11:00:21 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec  5 11:01:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e20e74a

dev-db/spatialite: add 5.1.0

Signed-off-by: Sam James  gentoo.org>

 dev-db/spatialite/Manifest|  1 +
 dev-db/spatialite/spatialite-5.1.0.ebuild | 55 +++
 2 files changed, 56 insertions(+)

diff --git a/dev-db/spatialite/Manifest b/dev-db/spatialite/Manifest
index b48579b5f199..e8acae8fd106 100644
--- a/dev-db/spatialite/Manifest
+++ b/dev-db/spatialite/Manifest
@@ -1 +1,2 @@
 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.1.0.ebuild 
b/dev-db/spatialite/spatialite-5.1.0.ebuild
new file mode 100644
index ..bf5f79f8f622
--- /dev/null
+++ b/dev-db/spatialite/spatialite-5.1.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+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 ~ia64 ~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.11.0 )
+   proj? ( sci-libs/proj:= )
+   xls? ( >=dev-libs/freexl-2.0.0 )
+   xml? ( dev-libs/libxml2 )
+   rttopo? ( sci-geosciences/librttopo )
+"
+DEPEND="${RDEPEND}"
+
+REQUIRED_USE="test? ( iconv )"
+
+src_configure() {
+   # 1) gcp disabled for now to preserve MPL licence
+   econf \
+   --disable-gcp \
+   --disable-examples \
+   --disable-static \
+   --enable-epsg \
+   $(use_enable rttopo) \
+   $(use_enable geos) \
+   $(use_enable geos geosadvanced) \
+   $(use_enable geos geos3100) \
+   $(use_enable geos geos3110) \
+   $(use_enable iconv) \
+   $(use_enable proj) \
+   $(use_enable xls freexl) \
+   $(use_enable xml libxml2)
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2023-09-12 Thread Andrew Ammerlaan
commit: 1baf22c073b3dabbf798c038fbf081afdaa94b95
Author: Jon Janzen  jonjanzen  com>
AuthorDate: Sat May 13 21:02:44 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Sep 12 14:02:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1baf22c0

dev-db/spatialite: Add support for librttopo

Signed-off-by: Jon Janzen  jonjanzen.com>
Closes: https://github.com/gentoo/gentoo/pull/31027
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-db/spatialite/metadata.xml   |  1 +
 dev-db/spatialite/spatialite-5.0.1-r2.ebuild | 54 
 2 files changed, 55 insertions(+)

diff --git a/dev-db/spatialite/metadata.xml b/dev-db/spatialite/metadata.xml
index 3d4b1b79db43..8ca3a8f8ce3f 100644
--- a/dev-db/spatialite/metadata.xml
+++ b/dev-db/spatialite/metadata.xml
@@ -9,5 +9,6 @@
Add the sci-libs/geos library for exact 
topological tests
Add the sci-libs/proj library for 
reprojection features
Add the dev-libs/freexl library for xls 
import support
+   Add the sci-geosciences/librttopo 
library for topology support
 
 

diff --git a/dev-db/spatialite/spatialite-5.0.1-r2.ebuild 
b/dev-db/spatialite/spatialite-5.0.1-r2.ebuild
new file mode 100644
index ..9e9e02eba1df
--- /dev/null
+++ b/dev-db/spatialite/spatialite-5.0.1-r2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+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 ~ia64 ~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_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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite-tools/

2022-05-04 Thread Sam James
commit: 2b5bd46070babbde89d6ebcf3105c7f71e20bbdf
Author: Sam James  gentoo  org>
AuthorDate: Wed May  4 05:47:43 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  4 23:28:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b5bd460

dev-db/spatialite-tools: drop 4.3.0-r1

Signed-off-by: Sam James  gentoo.org>

 dev-db/spatialite-tools/Manifest   |  1 -
 .../spatialite-tools-4.3.0-r1.ebuild   | 33 --
 2 files changed, 34 deletions(-)

diff --git a/dev-db/spatialite-tools/Manifest b/dev-db/spatialite-tools/Manifest
index e3540bda8957..05d9328e1ec2 100644
--- a/dev-db/spatialite-tools/Manifest
+++ b/dev-db/spatialite-tools/Manifest
@@ -1,2 +1 @@
-DIST spatialite-tools-4.3.0.tar.gz 540811 BLAKE2B 
3de4301380a0b64cdd388cb0dc1917b90a02a721b1e34d3781b5b4e14a810809c922a3760a269c3980790801b66a100f9bacf1249f2874374295b5bb9431b133
 SHA512 
e1de27c1c65ff2ff0b08583113517bea74edf33fff59ad6e9c77492ea3ae87d9c0f17d7670ee6602b32eea73ad3678bb5410ef2c6fac6e213bf2e341a907db88
 DIST spatialite-tools-5.0.1.tar.gz 578520 BLAKE2B 
ec01bc73bb9001b439e52794b172aba4197d6a55297abbdf8397f3d984c2463df19da5a1cbcc5baba5c23e47990287d750f30f0731144d69876a0df82a4727d5
 SHA512 
dad52f6ed3c66ffd95f3a5c21225cd1b20641523af616f7e8defba8e4e46921da169e5f7bf9c53a355e132b6e74750d6db3fe02c870a3386f850df49c83bb8cd

diff --git a/dev-db/spatialite-tools/spatialite-tools-4.3.0-r1.ebuild 
b/dev-db/spatialite-tools/spatialite-tools-4.3.0-r1.ebuild
deleted file mode 100644
index a4a242e63a90..
--- a/dev-db/spatialite-tools/spatialite-tools-4.3.0-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A collection of CLI tools supporting SpatiaLite"
-HOMEPAGE="https://www.gaia-gis.it/spatialite;
-SRC_URI="https://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz;
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="readline"
-
-RDEPEND="
-   dev-db/sqlite:3[extensions(+)]
-   >=dev-db/spatialite-3.0.1[geos,xls]
-   dev-libs/expat
-   dev-libs/libxml2
-   sci-geosciences/readosm
-   sci-libs/geos
-   sci-libs/proj
-   readline? (
-   sys-libs/ncurses:=
-   sys-libs/readline:=
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   econf \
-   $(use_enable readline)
-}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2022-05-04 Thread Sam James
commit: ade427b7fab37b9dbd93620f68e4af1c7c383936
Author: Sam James  gentoo  org>
AuthorDate: Wed May  4 05:47:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  4 23:28:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ade427b7

dev-db/spatialite: drop 4.3.0a

Signed-off-by: Sam James  gentoo.org>

 dev-db/spatialite/Manifest |  1 -
 dev-db/spatialite/spatialite-4.3.0a.ebuild | 55 --
 2 files changed, 56 deletions(-)

diff --git a/dev-db/spatialite/Manifest b/dev-db/spatialite/Manifest
index 715e1ee9f065..b48579b5f199 100644
--- a/dev-db/spatialite/Manifest
+++ b/dev-db/spatialite/Manifest
@@ -1,2 +1 @@
-DIST libspatialite-4.3.0a.tar.gz 4440660 BLAKE2B 
2eb2afb96b096b86be9c30cf71663b7b2839d345b6c418fc8511653ed59d0aeff1756b6b19807140c67128c938e39be66d13088640658d14883c92c438c97251
 SHA512 
adfd63e8dde0f370b07e4e7bb557647d2bfb5549205b60bdcaaca69ff81298a3d885e7c1ca515ef56dd0aca152ae940df8b5dbcb65bb61ae0a9337499895c3c0
 DIST libspatialite-5.0.1.tar.gz 6372753 BLAKE2B 
0fe5b37efac134e3796c96ed012b434ce99547037a44df69d3e98c7ac586c1173faa1fe93c4578e7cc0f47a9f1c539710661bad57f8012c3bdabde427221a842
 SHA512 
c2552994bc30d69d1e80aa274760f048cd384f71e8350a1e48a47cb8222ba71a1554a69c6534eedde9a09dc582c39c089967bcc1c57bf158cc91a3e7b1840ddf

diff --git a/dev-db/spatialite/spatialite-4.3.0a.ebuild 
b/dev-db/spatialite/spatialite-4.3.0a.ebuild
deleted file mode 100644
index e745b55a7969..
--- a/dev-db/spatialite/spatialite-4.3.0a.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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;
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 x86"
-IUSE="+geos iconv +proj test +xls +xml"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-db/sqlite-3.7.5:3[extensions(+)]
-   sys-libs/zlib
-   geos? ( >=sci-libs/geos-3.4 )
-   proj? ( sci-libs/proj:= )
-   xls? ( dev-libs/freexl )
-   xml? ( dev-libs/libxml2 )
-"
-DEPEND="${RDEPEND}"
-
-REQUIRED_USE="test? ( iconv )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-   if use proj && has_version ">=sci-libs/proj-6.0.0"; then
-   append-flags "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H"
-   fi
-   econf \
-   --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
-}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2021-08-14 Thread Marek Szuba
commit: 2f06f2c563460b4a2750d953a8f25d1f607769ca
Author: Marek Szuba  gentoo  org>
AuthorDate: Sat Aug 14 20:36:33 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Sat Aug 14 23:15:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f06f2c5

dev-db/spatialite: keyword 5.0.1-r1 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

 dev-db/spatialite/spatialite-5.0.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/spatialite/spatialite-5.0.1-r1.ebuild 
b/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
index 95a06e35afe..57f3dff605d 100644
--- a/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
+++ b/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv x86"
 IUSE="+geos iconv +proj test +xls +xml"
 # Further poking required
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2021-05-01 Thread Agostino Sarubbo
commit: 476f7b432b61714e9bc087cdb6b2976b9ec68bcc
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat May  1 18:18:34 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat May  1 18:19:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=476f7b43

dev-db/spatialite: amd64 stable wrt bug #685668

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-db/spatialite/spatialite-5.0.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/spatialite/spatialite-5.0.1-r1.ebuild 
b/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
index 99193b09cb9..97edef9d767 100644
--- a/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
+++ b/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
 IUSE="+geos iconv +proj test +xls +xml"
 # Further poking required
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2021-04-10 Thread Thomas Deutschmann
commit: 492c8d84d22b0173b59b75e837b8a9a45cd33a58
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Apr 11 00:11:57 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Apr 11 00:13:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=492c8d84

dev-db/spatialite: x86 stable (bug #685668)

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-db/spatialite/spatialite-5.0.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/spatialite/spatialite-5.0.1-r1.ebuild 
b/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
index 5159b2c30a6..99193b09cb9 100644
--- a/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
+++ b/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
 IUSE="+geos iconv +proj test +xls +xml"
 # Further poking required
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2021-04-10 Thread Sam James
commit: dd148738f6e8dc95460fdc482adcd2b9852733fe
Author: Sam James  gentoo  org>
AuthorDate: Sat Apr 10 12:44:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Apr 10 12:44:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd148738

dev-db/spatialite: depend on sys-libs/zlib[minizip]

Closes: https://bugs.gentoo.org/773958
Signed-off-by: Sam James  gentoo.org>

 .../spatialite/{spatialite-5.0.1.ebuild => spatialite-5.0.1-r1.ebuild}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/spatialite/spatialite-5.0.1.ebuild 
b/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
similarity index 98%
rename from dev-db/spatialite/spatialite-5.0.1.ebuild
rename to dev-db/spatialite/spatialite-5.0.1-r1.ebuild
index 57e64b658b3..5159b2c30a6 100644
--- a/dev-db/spatialite/spatialite-5.0.1.ebuild
+++ b/dev-db/spatialite/spatialite-5.0.1-r1.ebuild
@@ -22,7 +22,7 @@ RESTRICT="test"
 
 RDEPEND="
>=dev-db/sqlite-3.7.5:3[extensions(+)]
-   sys-libs/zlib
+   sys-libs/zlib[minizip]
geos? ( >=sci-libs/geos-3.4 )
proj? ( sci-libs/proj:= )
xls? ( dev-libs/freexl )



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite-tools/

2021-03-03 Thread Sam James
commit: 57886bda6e353c22d82fabe40a140b638484ce77
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar  3 16:47:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar  3 16:47:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57886bda

dev-db/spatialite-tools: tighten + improve spatialite dep

Thanks-to: Ionen Wolkens  gmail.com>
Closes: https://bugs.gentoo.org/774003
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 .../{spatialite-tools-5.0.1.ebuild => spatialite-tools-5.0.1-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/spatialite-tools/spatialite-tools-5.0.1.ebuild 
b/dev-db/spatialite-tools/spatialite-tools-5.0.1-r1.ebuild
similarity index 93%
rename from dev-db/spatialite-tools/spatialite-tools-5.0.1.ebuild
rename to dev-db/spatialite-tools/spatialite-tools-5.0.1-r1.ebuild
index aab29a8941f..c94599641d6 100644
--- a/dev-db/spatialite-tools/spatialite-tools-5.0.1.ebuild
+++ b/dev-db/spatialite-tools/spatialite-tools-5.0.1-r1.ebuild
@@ -14,7 +14,7 @@ IUSE="readline"
 
 RDEPEND="
dev-db/sqlite:3[extensions(+)]
-   >=dev-db/spatialite-3.0.1[geos,xls]
+   >=dev-db/spatialite-5.0.1[iconv,geos,xls]
dev-libs/expat
dev-libs/libxml2
>=sci-geosciences/readosm-1.1.0



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite-tools/

2021-03-01 Thread Sam James
commit: a3a925d0f1ba42a6dacde0b2bd09ac8dc20c6096
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  1 23:32:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  1 23:35:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3a925d0

dev-db/spatialite-tools: bump to 5.0.1

Bug: https://bugs.gentoo.org/685668
Signed-off-by: Sam James  gentoo.org>

 dev-db/spatialite-tools/Manifest   |  1 +
 .../spatialite-tools/spatialite-tools-5.0.1.ebuild | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/dev-db/spatialite-tools/Manifest b/dev-db/spatialite-tools/Manifest
index 0b89b111514..e3540bda895 100644
--- a/dev-db/spatialite-tools/Manifest
+++ b/dev-db/spatialite-tools/Manifest
@@ -1 +1,2 @@
 DIST spatialite-tools-4.3.0.tar.gz 540811 BLAKE2B 
3de4301380a0b64cdd388cb0dc1917b90a02a721b1e34d3781b5b4e14a810809c922a3760a269c3980790801b66a100f9bacf1249f2874374295b5bb9431b133
 SHA512 
e1de27c1c65ff2ff0b08583113517bea74edf33fff59ad6e9c77492ea3ae87d9c0f17d7670ee6602b32eea73ad3678bb5410ef2c6fac6e213bf2e341a907db88
+DIST spatialite-tools-5.0.1.tar.gz 578520 BLAKE2B 
ec01bc73bb9001b439e52794b172aba4197d6a55297abbdf8397f3d984c2463df19da5a1cbcc5baba5c23e47990287d750f30f0731144d69876a0df82a4727d5
 SHA512 
dad52f6ed3c66ffd95f3a5c21225cd1b20641523af616f7e8defba8e4e46921da169e5f7bf9c53a355e132b6e74750d6db3fe02c870a3386f850df49c83bb8cd

diff --git a/dev-db/spatialite-tools/spatialite-tools-5.0.1.ebuild 
b/dev-db/spatialite-tools/spatialite-tools-5.0.1.ebuild
new file mode 100644
index 000..aab29a8941f
--- /dev/null
+++ b/dev-db/spatialite-tools/spatialite-tools-5.0.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A collection of CLI tools supporting SpatiaLite"
+HOMEPAGE="https://www.gaia-gis.it/spatialite;
+SRC_URI="https://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz;
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="readline"
+
+RDEPEND="
+   dev-db/sqlite:3[extensions(+)]
+   >=dev-db/spatialite-3.0.1[geos,xls]
+   dev-libs/expat
+   dev-libs/libxml2
+   >=sci-geosciences/readosm-1.1.0
+   sci-libs/geos
+   sci-libs/proj
+   readline? (
+   sys-libs/ncurses:=
+   sys-libs/readline:=
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   econf \
+   $(use_enable readline)
+}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2021-03-01 Thread Sam James
commit: 1befe72c0a511c34cd1d7979a77f31147a68287e
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  1 23:24:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  1 23:35:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1befe72c

dev-db/spatialite: bump to 5.0.1

Seems to build with PROJ 8 as per upstream notes.

Bug: https://bugs.gentoo.org/685668
Signed-off-by: Sam James  gentoo.org>

 dev-db/spatialite/Manifest|  1 +
 dev-db/spatialite/spatialite-5.0.1.ebuild | 56 +++
 2 files changed, 57 insertions(+)

diff --git a/dev-db/spatialite/Manifest b/dev-db/spatialite/Manifest
index 1e7b64f2041..715e1ee9f06 100644
--- a/dev-db/spatialite/Manifest
+++ b/dev-db/spatialite/Manifest
@@ -1 +1,2 @@
 DIST libspatialite-4.3.0a.tar.gz 4440660 BLAKE2B 
2eb2afb96b096b86be9c30cf71663b7b2839d345b6c418fc8511653ed59d0aeff1756b6b19807140c67128c938e39be66d13088640658d14883c92c438c97251
 SHA512 
adfd63e8dde0f370b07e4e7bb557647d2bfb5549205b60bdcaaca69ff81298a3d885e7c1ca515ef56dd0aca152ae940df8b5dbcb65bb61ae0a9337499895c3c0
+DIST libspatialite-5.0.1.tar.gz 6372753 BLAKE2B 
0fe5b37efac134e3796c96ed012b434ce99547037a44df69d3e98c7ac586c1173faa1fe93c4578e7cc0f47a9f1c539710661bad57f8012c3bdabde427221a842
 SHA512 
c2552994bc30d69d1e80aa274760f048cd384f71e8350a1e48a47cb8222ba71a1554a69c6534eedde9a09dc582c39c089967bcc1c57bf158cc91a3e7b1840ddf

diff --git a/dev-db/spatialite/spatialite-5.0.1.ebuild 
b/dev-db/spatialite/spatialite-5.0.1.ebuild
new file mode 100644
index 000..57e64b658b3
--- /dev/null
+++ b/dev-db/spatialite/spatialite-5.0.1.ebuild
@@ -0,0 +1,56 @@
+# 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 ~ia64 ~ppc ~ppc64 ~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
+   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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2020-03-21 Thread Andreas Sturmlechner
commit: a47af3b137c4027f5302f6e0414cd6103921fda3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Mar 21 10:41:11 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Mar 21 10:42:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a47af3b1

dev-db/spatialite: Drop 4.3.0-r1

Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-db/spatialite/Manifest   |  1 -
 dev-db/spatialite/spatialite-4.3.0-r1.ebuild | 50 
 2 files changed, 51 deletions(-)

diff --git a/dev-db/spatialite/Manifest b/dev-db/spatialite/Manifest
index fb2de209fc0..1e7b64f2041 100644
--- a/dev-db/spatialite/Manifest
+++ b/dev-db/spatialite/Manifest
@@ -1,2 +1 @@
-DIST libspatialite-4.3.0.tar.gz 4439538 BLAKE2B 
f3bbda3b9d6099197691eb85e20c693d5cbc3a8958c8f23bd1ba57add9d8676895163d845a4aadd690650244ffa7ae2a02ce86e844e032b815fe4c94f30fb4b8
 SHA512 
b686766ed90711a41efbf219a8942ead8aefda8784a9cabc59233f107e0e10eda949d022152af1064a169975aa6a47515f6064589166418b853427dde5779ecc
 DIST libspatialite-4.3.0a.tar.gz 4440660 BLAKE2B 
2eb2afb96b096b86be9c30cf71663b7b2839d345b6c418fc8511653ed59d0aeff1756b6b19807140c67128c938e39be66d13088640658d14883c92c438c97251
 SHA512 
adfd63e8dde0f370b07e4e7bb557647d2bfb5549205b60bdcaaca69ff81298a3d885e7c1ca515ef56dd0aca152ae940df8b5dbcb65bb61ae0a9337499895c3c0

diff --git a/dev-db/spatialite/spatialite-4.3.0-r1.ebuild 
b/dev-db/spatialite/spatialite-4.3.0-r1.ebuild
deleted file mode 100644
index fc885a9624f..000
--- a/dev-db/spatialite/spatialite-4.3.0-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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;
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86"
-IUSE="+geos iconv +proj test +xls +xml"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-db/sqlite-3.7.5:3[extensions(+)]
-   sys-libs/zlib
-   geos? ( >=sci-libs/geos-3.4 )
-   proj? ( sci-libs/proj )
-   xls? ( dev-libs/freexl )
-   xml? ( dev-libs/libxml2 )
-"
-DEPEND="${RDEPEND}"
-
-REQUIRED_USE="test? ( iconv )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-   econf \
-   --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
-}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2020-03-21 Thread Mart Raudsepp
commit: 14e7e83807e200967db8ce09cd68e1bdba712469
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Mar 21 09:22:17 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Mar 21 09:24:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14e7e838

dev-db/spatialite: arm64 stable (bug #692358)

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-db/spatialite/spatialite-4.3.0a.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/spatialite/spatialite-4.3.0a.ebuild 
b/dev-db/spatialite/spatialite-4.3.0a.ebuild
index ccd7a6e0770..e745b55a796 100644
--- a/dev-db/spatialite/spatialite-4.3.0a.ebuild
+++ b/dev-db/spatialite/spatialite-4.3.0a.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ 
SRC_URI="https://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz;
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 x86"
 IUSE="+geos iconv +proj test +xls +xml"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2019-10-20 Thread Andreas Sturmlechner
commit: edc61c208f0045cf5335a130d0dbad2909241073
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Oct 20 13:31:11 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct 20 14:19:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edc61c20

dev-db/spatialite: Workaround build with >=sci-libs/proj-6

Thanks-to: Dmitry Suloev  gmail.com>
Closes: https://bugs.gentoo.org/685668
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-db/spatialite/spatialite-4.3.0a.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/dev-db/spatialite/spatialite-4.3.0a.ebuild 
b/dev-db/spatialite/spatialite-4.3.0a.ebuild
index 796d1774d60..3fb9d3d53dd 100644
--- a/dev-db/spatialite/spatialite-4.3.0a.ebuild
+++ b/dev-db/spatialite/spatialite-4.3.0a.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=6
 
+inherit flag-o-matic
+
 MY_PN="lib${PN}"
 MY_P="${MY_PN}-${PV}"
 
@@ -19,7 +21,7 @@ RDEPEND="
>=dev-db/sqlite-3.7.5:3[extensions(+)]
sys-libs/zlib
geos? ( >=sci-libs/geos-3.4 )
-   proj? ( sci-libs/proj )
+   proj? ( sci-libs/proj:= )
xls? ( dev-libs/freexl )
xml? ( dev-libs/libxml2 )
 "
@@ -30,6 +32,9 @@ REQUIRED_USE="test? ( iconv )"
 S="${WORKDIR}/${MY_P}"
 
 src_configure() {
+   if use proj && has_version ">=sci-libs/proj-6.0.0"; then
+   append-flags "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H"
+   fi
econf \
--disable-examples \
--disable-static \



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2019-08-19 Thread Agostino Sarubbo
commit: 23fda027840f475237c359237267ea228e132f6e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Aug 19 11:37:27 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Aug 19 11:37:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23fda027

dev-db/spatialite: x86 stable wrt bug #692358

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-db/spatialite/spatialite-4.3.0a.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/spatialite/spatialite-4.3.0a.ebuild 
b/dev-db/spatialite/spatialite-4.3.0a.ebuild
index 2b829969b71..796d1774d60 100644
--- a/dev-db/spatialite/spatialite-4.3.0a.ebuild
+++ b/dev-db/spatialite/spatialite-4.3.0a.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz;
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
 IUSE="+geos iconv +proj test +xls +xml"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2019-08-18 Thread Agostino Sarubbo
commit: d7ac66bb4ab4b586dfc2e2856c8c456d87740827
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Aug 19 05:42:32 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Aug 19 05:42:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7ac66bb

dev-db/spatialite: amd64 stable wrt bug #692358

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-db/spatialite/spatialite-4.3.0a.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/spatialite/spatialite-4.3.0a.ebuild 
b/dev-db/spatialite/spatialite-4.3.0a.ebuild
index d822e5ce055..2b829969b71 100644
--- a/dev-db/spatialite/spatialite-4.3.0a.ebuild
+++ b/dev-db/spatialite/spatialite-4.3.0a.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz;
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="+geos iconv +proj test +xls +xml"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2019-05-16 Thread Aaron Bauman
commit: 7cf8ac79774d10a3cda0eac3f85286a60b9e84e0
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu May 16 19:26:49 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu May 16 19:27:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cf8ac79

dev-db/spatialite: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.12
RepoMan-Options: --include-arches="arm64"

 dev-db/spatialite/spatialite-4.3.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/spatialite/spatialite-4.3.0-r1.ebuild 
b/dev-db/spatialite/spatialite-4.3.0-r1.ebuild
index 9adfb477cd1..cc5f1d7760a 100644
--- a/dev-db/spatialite/spatialite-4.3.0-r1.ebuild
+++ b/dev-db/spatialite/spatialite-4.3.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz;
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86"
 IUSE="+geos iconv +proj test +xls +xml"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2017-07-30 Thread Alexis Ballier
commit: d5d27d124402cfccca2ca2ed385a6ff8daf567d3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Jul 30 07:04:56 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 30 07:05:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5d27d12

dev-db/spatialite: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-db/spatialite/spatialite-4.3.0a.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/spatialite/spatialite-4.3.0a.ebuild 
b/dev-db/spatialite/spatialite-4.3.0a.ebuild
index 2438a3a08c5..d822e5ce055 100644
--- a/dev-db/spatialite/spatialite-4.3.0a.ebuild
+++ b/dev-db/spatialite/spatialite-4.3.0a.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz;
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="+geos iconv +proj test +xls +xml"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2017-07-20 Thread Sergei Trofimovich
commit: 56858a5be4265a0f475eb0c50c075bd908f41bc2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jul 20 20:34:26 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul 20 20:57:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56858a5b

dev-db/spatialite: ia64 keyworded, bug #10

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"

 dev-db/spatialite/spatialite-4.3.0a.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/spatialite/spatialite-4.3.0a.ebuild 
b/dev-db/spatialite/spatialite-4.3.0a.ebuild
index ce19c30c6fd..2438a3a08c5 100644
--- a/dev-db/spatialite/spatialite-4.3.0a.ebuild
+++ b/dev-db/spatialite/spatialite-4.3.0a.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz;
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="+geos iconv +proj test +xls +xml"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2017-03-02 Thread Andreas Sturmlechner
commit: 3f780963977ca7bb6b69e66cbe1d872a0c4ad4d5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Feb 27 01:01:10 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Mar  2 19:39:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f780963

dev-db/spatialite: Drop old

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/4099

 dev-db/spatialite/Manifest|  2 --
 dev-db/spatialite/spatialite-2.4.0_rc4.ebuild | 41 
 dev-db/spatialite/spatialite-3.0.1.ebuild | 45 ---
 3 files changed, 88 deletions(-)

diff --git a/dev-db/spatialite/Manifest b/dev-db/spatialite/Manifest
index 13fcf86333b..ac626a79a18 100644
--- a/dev-db/spatialite/Manifest
+++ b/dev-db/spatialite/Manifest
@@ -1,4 +1,2 @@
-DIST libspatialite-2.4.0.tar.gz 865036 SHA256 
a9c2a3d9277a6fed13561cf2c1580fef701cfd55336f34eea3f3d46389f7f2c2 SHA512 
3e34b2eeedfb0f3a57f3ef33c564cc3bd9391c6f7cc6d7fa7b8e83f920c3a625cfbb33d15d9f2110c7821d964b7b26bb5c06aebd41c3f7ad2bf943d3dea795cf
 WHIRLPOOL 
fed91a8501c34a3e0e0a5920049165c081abd050c41b1ef9cb20a8f68571dc85275133d23f798b0b10d88fd6f8623984ee4e18131309d85e1c7512fa9fd3f9d7
-DIST libspatialite-3.0.1.tar.gz 1849723 SHA256 
4983d6584069fd5ff0cfcee1015088dab2db177c0dc7050ce8306b68f8e6 SHA512 
604e5fcb3ac17eb3c69aff5dbf8c77660aecbddc81ab1faa63b0ce069253e3d1c5b6001bd2f2fde5d2f60de9c3758d0d871b9cbcaf1a6d18ceebc0788c166d94
 WHIRLPOOL 
48f8c84e828ec5e3504e9e347a1fe13c30e852f2127458e1b892ab422f4f0b2fd6857fd50fef51f72fb0851fe7827fac62fe1342e7deac2d7a511501c41321ab
 DIST libspatialite-4.3.0.tar.gz 4439538 SHA256 
4acf2d2b891989e61351584fe28514a6561f8f6a1901b988990513be5fe1bdfe SHA512 
b686766ed90711a41efbf219a8942ead8aefda8784a9cabc59233f107e0e10eda949d022152af1064a169975aa6a47515f6064589166418b853427dde5779ecc
 WHIRLPOOL 
ecb98596eae3468423de9921cc304c7299806d911be2bc10efdd38bb1d557cc6a5e70ad96e2268887b443879ca49fabd1b3ed747e440b464ac7f798f0ab2ae7c
 DIST libspatialite-4.3.0a.tar.gz 4440660 SHA256 
88900030a4762904a7880273f292e5e8ca6b15b7c6c3fb88ffa9e67ee8a5a499 SHA512 
adfd63e8dde0f370b07e4e7bb557647d2bfb5549205b60bdcaaca69ff81298a3d885e7c1ca515ef56dd0aca152ae940df8b5dbcb65bb61ae0a9337499895c3c0
 WHIRLPOOL 
4d591b604d7f31a1cd52dbb8f375da0487404ec8f5bc4a38de8436134a126fae1028a0aef872cfd4ba6ce8a69aa1d4924768b2ceeed75a67999df4b3ddd4bda3

diff --git a/dev-db/spatialite/spatialite-2.4.0_rc4.ebuild 
b/dev-db/spatialite/spatialite-2.4.0_rc4.ebuild
deleted file mode 100644
index 22061452e27..000
--- a/dev-db/spatialite/spatialite-2.4.0_rc4.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MY_PV=${PV/_rc/-}
-MY_P=lib${P/_rc*}
-
-inherit multilib
-
-DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
-HOMEPAGE="http://www.gaia-gis.it/gaia-sins/;
-SRC_URI="http://www.gaia-gis.it/${PN}-${MY_PV}/${MY_P}.tar.gz;
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+geos iconv +proj"
-
-RDEPEND=">=dev-db/sqlite-3.7.5:3[extensions(+)]
-   geos? ( sci-libs/geos )
-   proj? ( sci-libs/proj )"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_configure() {
-   econf \
-   --disable-static \
-   --enable-geocallbacks \
-   --enable-epsg \
-   $(use_enable geos) \
-   $(use_enable iconv) \
-   $(use_enable proj)
-}
-
-src_install() {
-   default
-
-   find "${ED}" -name '*.la' -exec rm -f {} +
-}

diff --git a/dev-db/spatialite/spatialite-3.0.1.ebuild 
b/dev-db/spatialite/spatialite-3.0.1.ebuild
deleted file mode 100644
index c28c6cb1109..000
--- a/dev-db/spatialite/spatialite-3.0.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MY_PN="lib${PN}"
-MY_P="${MY_PN}-${PV}"
-
-inherit multilib
-
-DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
-HOMEPAGE="http://www.gaia-gis.it/gaia-sins/;
-SRC_URI="http://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz;
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
-IUSE="+geos iconv +proj +xls"
-
-RDEPEND=">=dev-db/sqlite-3.7.5:3[extensions(+)]
-   geos? ( >=sci-libs/geos-3.3 )
-   proj? ( sci-libs/proj )
-   xls? ( dev-libs/freexl )
-"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_configure() {
-   econf \
-   --disable-static \
-   --enable-geocallbacks \
-   --enable-epsg \
-   $(use_enable geos) \
-   $(use_enable geos geosadvanced) \
-   $(use_enable iconv) \
-   $(use_enable proj) \
-   $(use_enable xls freexl)
-}
-
-src_install() {
-   default
-
-   find "${ED}" -name '*.la' -exec rm -f {} +
-}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite-tools/

2017-03-02 Thread Andreas Sturmlechner
commit: 6138f3e7460c1fc4ecdf729d31e151b441f3821e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Feb 27 01:00:34 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Mar  2 19:39:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6138f3e7

dev-db/spatialite-tools: Drop old

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/4099

 dev-db/spatialite-tools/Manifest   |  1 -
 .../spatialite-tools/spatialite-tools-3.1.0.ebuild | 32 --
 2 files changed, 33 deletions(-)

diff --git a/dev-db/spatialite-tools/Manifest b/dev-db/spatialite-tools/Manifest
index 85a250aee26..7501fd75419 100644
--- a/dev-db/spatialite-tools/Manifest
+++ b/dev-db/spatialite-tools/Manifest
@@ -1,2 +1 @@
-DIST spatialite-tools-3.1.0.tar.gz 439019 SHA256 
7e12a3b23ad5163257b7c8585091ead1046e8d5b56ac3130de42490693b5e160 SHA512 
27f725fefcbc75894d6d14e81093deaa95b6a1cce7e15eb8fc3130ed7580f664bbb8ffd7e95f4de94b38cc8548cc82f2ed830fa8bcf3173e460a9b0666e9e0cc
 WHIRLPOOL 
01a432a872c7ddb801edee969c3a6467cddacdb014690e669c75a1238c753f3f2d825a8e2f7370410431adc471ced0bb949291d868befa2d8d4947d08b39609e
 DIST spatialite-tools-4.3.0.tar.gz 540811 SHA256 
f739859bc04f38735591be2f75009b98a2359033675ae310dffc3114a17ccf89 SHA512 
e1de27c1c65ff2ff0b08583113517bea74edf33fff59ad6e9c77492ea3ae87d9c0f17d7670ee6602b32eea73ad3678bb5410ef2c6fac6e213bf2e341a907db88
 WHIRLPOOL 
24414efc61454bdde4fde4120503b9568821af20ced44cfae88696e099a7778f4311d556da7c48d6c13785eca9caa436dcd2d0666e371b12470b74b7fe77dbcc

diff --git a/dev-db/spatialite-tools/spatialite-tools-3.1.0.ebuild 
b/dev-db/spatialite-tools/spatialite-tools-3.1.0.ebuild
deleted file mode 100644
index 82c99d89c3a..000
--- a/dev-db/spatialite-tools/spatialite-tools-3.1.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit multilib
-
-DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
-HOMEPAGE="http://www.gaia-gis.it/spatialite;
-SRC_URI="http://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz;
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="readline"
-
-RDEPEND=">=dev-db/spatialite-3.0.1[geos,xls]
-   dev-libs/expat
-   >=sci-libs/geos-3.3
-   sci-libs/proj
-   sci-geosciences/readosm
-   readline? (
-   sys-libs/ncurses
-   sys-libs/readline
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   econf \
-   $(use_enable readline)
-}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2017-03-02 Thread Agostino Sarubbo
commit: 749b09f174b755520be9e002887d335047de2a9d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Mar  2 10:45:27 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Mar  2 10:45:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=749b09f1

dev-db/spatialite: x86 stable wrt bug #610042

Package-Manager: portage-2.3.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-db/spatialite/spatialite-4.3.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/spatialite/spatialite-4.3.0-r1.ebuild 
b/dev-db/spatialite/spatialite-4.3.0-r1.ebuild
index 16064f31ae0..9adfb477cd1 100644
--- a/dev-db/spatialite/spatialite-4.3.0-r1.ebuild
+++ b/dev-db/spatialite/spatialite-4.3.0-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz;
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
 IUSE="+geos iconv +proj test +xls +xml"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite-tools/

2017-02-19 Thread Andreas Sturmlechner
commit: 9d383193eb9e5deaab565c0b27db2f3eb4dd4931
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 19 20:54:54 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 19 21:15:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d383193

dev-db/spatialite-tools: Fix DEPENDs, HOMEPAGE, drop unused eclass

Package-Manager: portage-2.3.3

 .../spatialite-tools-4.3.0-r1.ebuild   | 34 ++
 1 file changed, 34 insertions(+)

diff --git a/dev-db/spatialite-tools/spatialite-tools-4.3.0-r1.ebuild 
b/dev-db/spatialite-tools/spatialite-tools-4.3.0-r1.ebuild
new file mode 100644
index 00..0f4302f052
--- /dev/null
+++ b/dev-db/spatialite-tools/spatialite-tools-4.3.0-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="A collection of CLI tools supporting SpatiaLite"
+HOMEPAGE="https://www.gaia-gis.it/spatialite;
+SRC_URI="https://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz;
+
+LICENSE="MPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="readline"
+
+RDEPEND="
+   dev-db/sqlite:3[extensions(+)]
+   >=dev-db/spatialite-3.0.1[geos,xls]
+   dev-libs/expat
+   dev-libs/libxml2
+   sci-geosciences/readosm
+   sci-libs/geos
+   sci-libs/proj
+   readline? (
+   sys-libs/ncurses:=
+   sys-libs/readline:=
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   econf \
+   $(use_enable readline)
+}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2017-02-19 Thread Andreas Sturmlechner
commit: 8fca3b1b2453bd0bb86e14449b743e867ea4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 19 18:10:38 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 19 21:15:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fca3b1b

dev-db/spatialite: Drop unused eclasses, add USE=xml, fix DEPENDs

Removing prune_libtool_files.

Package-Manager: portage-2.3.3

 dev-db/spatialite/spatialite-4.3.0-r1.ebuild | 50 
 1 file changed, 50 insertions(+)

diff --git a/dev-db/spatialite/spatialite-4.3.0-r1.ebuild 
b/dev-db/spatialite/spatialite-4.3.0-r1.ebuild
new file mode 100644
index 00..9bba60bc04
--- /dev/null
+++ b/dev-db/spatialite/spatialite-4.3.0-r1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+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;
+
+LICENSE="MPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE="+geos iconv +proj test +xls +xml"
+
+RDEPEND="
+   >=dev-db/sqlite-3.7.5:3[extensions(+)]
+   sys-libs/zlib
+   geos? ( >=sci-libs/geos-3.4 )
+   proj? ( sci-libs/proj )
+   xls? ( dev-libs/freexl )
+   xml? ( dev-libs/libxml2 )
+"
+DEPEND="${RDEPEND}"
+
+REQUIRED_USE="test? ( iconv )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf \
+   --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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/, dev-db/spatialite/files/

2017-02-19 Thread Andreas Sturmlechner
commit: 115f53016f37b31e7885cd25d331331326f7873c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 19 19:29:21 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 19 21:15:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=115f5301

dev-db/spatialite: Drop old

Package-Manager: portage-2.3.3

 dev-db/spatialite/Manifest |  1 -
 .../files/spatialite-4.1.1-validator.patch | 11 -
 dev-db/spatialite/spatialite-4.1.1.ebuild  | 51 --
 dev-db/spatialite/spatialite-4.3.0.ebuild  | 47 
 4 files changed, 110 deletions(-)

diff --git a/dev-db/spatialite/Manifest b/dev-db/spatialite/Manifest
index e1df2a1565..13fcf86333 100644
--- a/dev-db/spatialite/Manifest
+++ b/dev-db/spatialite/Manifest
@@ -1,5 +1,4 @@
 DIST libspatialite-2.4.0.tar.gz 865036 SHA256 
a9c2a3d9277a6fed13561cf2c1580fef701cfd55336f34eea3f3d46389f7f2c2 SHA512 
3e34b2eeedfb0f3a57f3ef33c564cc3bd9391c6f7cc6d7fa7b8e83f920c3a625cfbb33d15d9f2110c7821d964b7b26bb5c06aebd41c3f7ad2bf943d3dea795cf
 WHIRLPOOL 
fed91a8501c34a3e0e0a5920049165c081abd050c41b1ef9cb20a8f68571dc85275133d23f798b0b10d88fd6f8623984ee4e18131309d85e1c7512fa9fd3f9d7
 DIST libspatialite-3.0.1.tar.gz 1849723 SHA256 
4983d6584069fd5ff0cfcee1015088dab2db177c0dc7050ce8306b68f8e6 SHA512 
604e5fcb3ac17eb3c69aff5dbf8c77660aecbddc81ab1faa63b0ce069253e3d1c5b6001bd2f2fde5d2f60de9c3758d0d871b9cbcaf1a6d18ceebc0788c166d94
 WHIRLPOOL 
48f8c84e828ec5e3504e9e347a1fe13c30e852f2127458e1b892ab422f4f0b2fd6857fd50fef51f72fb0851fe7827fac62fe1342e7deac2d7a511501c41321ab
-DIST libspatialite-4.1.1.tar.gz 3846758 SHA256 
0481a20af952f4a38c9dbb10f37fd38c45f16c50397f8da0079e02435b9b910f SHA512 
62e443bdf78234b9bf314cc60fbea62da7caa95054cdf5052d83703bf994240a1ffc7a3e804403dfbac65a18e00c5ab58568e66d05d1eb980fe08a52f1e8be05
 WHIRLPOOL 
1ba616b401f7d43a3afd0c62bc3a5835065560a8d5fa983af8da85f3d58ef32ab7b8e0b3ae07499bba2a3af4ff3b7d2b979de200768404750691421abe22d574
 DIST libspatialite-4.3.0.tar.gz 4439538 SHA256 
4acf2d2b891989e61351584fe28514a6561f8f6a1901b988990513be5fe1bdfe SHA512 
b686766ed90711a41efbf219a8942ead8aefda8784a9cabc59233f107e0e10eda949d022152af1064a169975aa6a47515f6064589166418b853427dde5779ecc
 WHIRLPOOL 
ecb98596eae3468423de9921cc304c7299806d911be2bc10efdd38bb1d557cc6a5e70ad96e2268887b443879ca49fabd1b3ed747e440b464ac7f798f0ab2ae7c
 DIST libspatialite-4.3.0a.tar.gz 4440660 SHA256 
88900030a4762904a7880273f292e5e8ca6b15b7c6c3fb88ffa9e67ee8a5a499 SHA512 
adfd63e8dde0f370b07e4e7bb557647d2bfb5549205b60bdcaaca69ff81298a3d885e7c1ca515ef56dd0aca152ae940df8b5dbcb65bb61ae0a9337499895c3c0
 WHIRLPOOL 
4d591b604d7f31a1cd52dbb8f375da0487404ec8f5bc4a38de8436134a126fae1028a0aef872cfd4ba6ce8a69aa1d4924768b2ceeed75a67999df4b3ddd4bda3

diff --git a/dev-db/spatialite/files/spatialite-4.1.1-validator.patch 
b/dev-db/spatialite/files/spatialite-4.1.1-validator.patch
deleted file mode 100644
index 55b2068959..00
--- a/dev-db/spatialite/files/spatialite-4.1.1-validator.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 src/shapefiles/validator.c 2013-06-29 08:53:15.0 +0200
-+++ src/shapefiles/validatornew.c  2016-02-29 18:38:11.879981893 +0100
-@@ -3510,7 +3510,7 @@
- 
- /* silencing stupid compiler warnings */
- if (sqlite == NULL || table == NULL || geom == NULL ||
--  ||report_path == NULL || n_rows == NULL || n_invalids == NULL)
-+  report_path == NULL || n_rows == NULL || n_invalids == NULL)
-   table = NULL;
- 
- if (err_msg == NULL)

diff --git a/dev-db/spatialite/spatialite-4.1.1.ebuild 
b/dev-db/spatialite/spatialite-4.1.1.ebuild
deleted file mode 100644
index 8e77a11fbc..00
--- a/dev-db/spatialite/spatialite-4.1.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_PN="lib${PN}"
-MY_P="${MY_PN}-${PV}"
-
-inherit multilib eutils
-
-DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
-HOMEPAGE="http://www.gaia-gis.it/gaia-sins/;
-SRC_URI="http://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz;
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
-IUSE="+geos iconv +proj +xls"
-
-RDEPEND=">=dev-db/sqlite-3.7.5:3[extensions(+)]
-   geos? ( >=sci-libs/geos-3.3 )
-   proj? ( sci-libs/proj )
-   xls? ( dev-libs/freexl )
-"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   epatch "${FILESDIR}/${P}-validator.patch"
-}
-
-src_configure() {
-   econf \
-   --disable-static \
-   --enable-geocallbacks \
-   --enable-epsg \
-   --disable-examples \
-   $(use_enable geos) \
-   $(use_enable geos geosadvanced) \
-   $(use_enable iconv) \
-   $(use_enable proj) \
-   $(use_enable xls freexl)
-}
-
-src_install() {
-   

[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2017-02-19 Thread Andreas Sturmlechner
commit: 408973060a7ef0aec09945cb9255c2b157b1327e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 19 18:12:38 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 19 21:15:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40897306

dev-db/spatialite: 4.3.0a version bump

Package-Manager: portage-2.3.3

 dev-db/spatialite/Manifest |  1 +
 dev-db/spatialite/spatialite-4.3.0a.ebuild | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/dev-db/spatialite/Manifest b/dev-db/spatialite/Manifest
index 70c29a00b2..e1df2a1565 100644
--- a/dev-db/spatialite/Manifest
+++ b/dev-db/spatialite/Manifest
@@ -2,3 +2,4 @@ DIST libspatialite-2.4.0.tar.gz 865036 SHA256 
a9c2a3d9277a6fed13561cf2c1580fef70
 DIST libspatialite-3.0.1.tar.gz 1849723 SHA256 
4983d6584069fd5ff0cfcee1015088dab2db177c0dc7050ce8306b68f8e6 SHA512 
604e5fcb3ac17eb3c69aff5dbf8c77660aecbddc81ab1faa63b0ce069253e3d1c5b6001bd2f2fde5d2f60de9c3758d0d871b9cbcaf1a6d18ceebc0788c166d94
 WHIRLPOOL 
48f8c84e828ec5e3504e9e347a1fe13c30e852f2127458e1b892ab422f4f0b2fd6857fd50fef51f72fb0851fe7827fac62fe1342e7deac2d7a511501c41321ab
 DIST libspatialite-4.1.1.tar.gz 3846758 SHA256 
0481a20af952f4a38c9dbb10f37fd38c45f16c50397f8da0079e02435b9b910f SHA512 
62e443bdf78234b9bf314cc60fbea62da7caa95054cdf5052d83703bf994240a1ffc7a3e804403dfbac65a18e00c5ab58568e66d05d1eb980fe08a52f1e8be05
 WHIRLPOOL 
1ba616b401f7d43a3afd0c62bc3a5835065560a8d5fa983af8da85f3d58ef32ab7b8e0b3ae07499bba2a3af4ff3b7d2b979de200768404750691421abe22d574
 DIST libspatialite-4.3.0.tar.gz 4439538 SHA256 
4acf2d2b891989e61351584fe28514a6561f8f6a1901b988990513be5fe1bdfe SHA512 
b686766ed90711a41efbf219a8942ead8aefda8784a9cabc59233f107e0e10eda949d022152af1064a169975aa6a47515f6064589166418b853427dde5779ecc
 WHIRLPOOL 
ecb98596eae3468423de9921cc304c7299806d911be2bc10efdd38bb1d557cc6a5e70ad96e2268887b443879ca49fabd1b3ed747e440b464ac7f798f0ab2ae7c
+DIST libspatialite-4.3.0a.tar.gz 4440660 SHA256 
88900030a4762904a7880273f292e5e8ca6b15b7c6c3fb88ffa9e67ee8a5a499 SHA512 
adfd63e8dde0f370b07e4e7bb557647d2bfb5549205b60bdcaaca69ff81298a3d885e7c1ca515ef56dd0aca152ae940df8b5dbcb65bb61ae0a9337499895c3c0
 WHIRLPOOL 
4d591b604d7f31a1cd52dbb8f375da0487404ec8f5bc4a38de8436134a126fae1028a0aef872cfd4ba6ce8a69aa1d4924768b2ceeed75a67999df4b3ddd4bda3

diff --git a/dev-db/spatialite/spatialite-4.3.0a.ebuild 
b/dev-db/spatialite/spatialite-4.3.0a.ebuild
new file mode 100644
index 00..9bba60bc04
--- /dev/null
+++ b/dev-db/spatialite/spatialite-4.3.0a.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+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;
+
+LICENSE="MPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE="+geos iconv +proj test +xls +xml"
+
+RDEPEND="
+   >=dev-db/sqlite-3.7.5:3[extensions(+)]
+   sys-libs/zlib
+   geos? ( >=sci-libs/geos-3.4 )
+   proj? ( sci-libs/proj )
+   xls? ( dev-libs/freexl )
+   xml? ( dev-libs/libxml2 )
+"
+DEPEND="${RDEPEND}"
+
+REQUIRED_USE="test? ( iconv )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf \
+   --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
+}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite-tools/

2017-02-19 Thread Andreas Sturmlechner
commit: 413bf9c1a71e40ebc6d63a9a1a50fe902686ab5b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Feb 19 20:56:08 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Feb 19 21:15:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=413bf9c1

dev-db/spatialite-tools: Drop old

Package-Manager: portage-2.3.3

 .../spatialite-tools/spatialite-tools-4.3.0.ebuild | 33 --
 1 file changed, 33 deletions(-)

diff --git a/dev-db/spatialite-tools/spatialite-tools-4.3.0.ebuild 
b/dev-db/spatialite-tools/spatialite-tools-4.3.0.ebuild
deleted file mode 100644
index 933dc56e76..00
--- a/dev-db/spatialite-tools/spatialite-tools-4.3.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit multilib
-
-DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
-HOMEPAGE="http://www.gaia-gis.it/spatialite;
-SRC_URI="http://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz;
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="readline"
-
-RDEPEND=">=dev-db/spatialite-3.0.1[geos,xls]
-   dev-libs/expat
-   >=sci-libs/geos-3.3
-   sci-libs/proj
-   sci-geosciences/readosm
-   readline? (
-   sys-libs/ncurses:=
-   sys-libs/readline:=
-   )
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   econf \
-   $(use_enable readline)
-}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite-tools/

2016-03-27 Thread Sam Jorna
commit: 2f34d7b6e9d6802f1d57c516fd9bdff843e424d3
Author: Sam Jorna  gentoo  org>
AuthorDate: Sun Mar 27 10:53:41 2016 +
Commit: Sam Jorna  gentoo  org>
CommitDate: Sun Mar 27 11:57:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f34d7b6

dev-db/spatialite-tools: bump to 4.3.0

Package-Manager: portage-2.2.28

 dev-db/spatialite-tools/Manifest   |  1 +
 .../spatialite-tools/spatialite-tools-4.3.0.ebuild | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/dev-db/spatialite-tools/Manifest b/dev-db/spatialite-tools/Manifest
index 979dcc6..85a250a 100644
--- a/dev-db/spatialite-tools/Manifest
+++ b/dev-db/spatialite-tools/Manifest
@@ -1 +1,2 @@
 DIST spatialite-tools-3.1.0.tar.gz 439019 SHA256 
7e12a3b23ad5163257b7c8585091ead1046e8d5b56ac3130de42490693b5e160 SHA512 
27f725fefcbc75894d6d14e81093deaa95b6a1cce7e15eb8fc3130ed7580f664bbb8ffd7e95f4de94b38cc8548cc82f2ed830fa8bcf3173e460a9b0666e9e0cc
 WHIRLPOOL 
01a432a872c7ddb801edee969c3a6467cddacdb014690e669c75a1238c753f3f2d825a8e2f7370410431adc471ced0bb949291d868befa2d8d4947d08b39609e
+DIST spatialite-tools-4.3.0.tar.gz 540811 SHA256 
f739859bc04f38735591be2f75009b98a2359033675ae310dffc3114a17ccf89 SHA512 
e1de27c1c65ff2ff0b08583113517bea74edf33fff59ad6e9c77492ea3ae87d9c0f17d7670ee6602b32eea73ad3678bb5410ef2c6fac6e213bf2e341a907db88
 WHIRLPOOL 
24414efc61454bdde4fde4120503b9568821af20ced44cfae88696e099a7778f4311d556da7c48d6c13785eca9caa436dcd2d0666e371b12470b74b7fe77dbcc

diff --git a/dev-db/spatialite-tools/spatialite-tools-4.3.0.ebuild 
b/dev-db/spatialite-tools/spatialite-tools-4.3.0.ebuild
new file mode 100644
index 000..933dc56
--- /dev/null
+++ b/dev-db/spatialite-tools/spatialite-tools-4.3.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit multilib
+
+DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
+HOMEPAGE="http://www.gaia-gis.it/spatialite;
+SRC_URI="http://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz;
+
+LICENSE="MPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="readline"
+
+RDEPEND=">=dev-db/spatialite-3.0.1[geos,xls]
+   dev-libs/expat
+   >=sci-libs/geos-3.3
+   sci-libs/proj
+   sci-geosciences/readosm
+   readline? (
+   sys-libs/ncurses:=
+   sys-libs/readline:=
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   econf \
+   $(use_enable readline)
+}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2016-03-27 Thread Sam Jorna
commit: e48c683be792f65dff6635d759dbb9da5b51c70e
Author: Sam Jorna  gentoo  org>
AuthorDate: Sun Mar 27 10:52:53 2016 +
Commit: Sam Jorna  gentoo  org>
CommitDate: Sun Mar 27 11:57:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e48c683b

dev-db/spatialite: bump to 4.3.0

Package-Manager: portage-2.2.28

 dev-db/spatialite/Manifest|  1 +
 dev-db/spatialite/spatialite-4.3.0.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-db/spatialite/Manifest b/dev-db/spatialite/Manifest
index 0752595..70c29a0 100644
--- a/dev-db/spatialite/Manifest
+++ b/dev-db/spatialite/Manifest
@@ -1,3 +1,4 @@
 DIST libspatialite-2.4.0.tar.gz 865036 SHA256 
a9c2a3d9277a6fed13561cf2c1580fef701cfd55336f34eea3f3d46389f7f2c2 SHA512 
3e34b2eeedfb0f3a57f3ef33c564cc3bd9391c6f7cc6d7fa7b8e83f920c3a625cfbb33d15d9f2110c7821d964b7b26bb5c06aebd41c3f7ad2bf943d3dea795cf
 WHIRLPOOL 
fed91a8501c34a3e0e0a5920049165c081abd050c41b1ef9cb20a8f68571dc85275133d23f798b0b10d88fd6f8623984ee4e18131309d85e1c7512fa9fd3f9d7
 DIST libspatialite-3.0.1.tar.gz 1849723 SHA256 
4983d6584069fd5ff0cfcee1015088dab2db177c0dc7050ce8306b68f8e6 SHA512 
604e5fcb3ac17eb3c69aff5dbf8c77660aecbddc81ab1faa63b0ce069253e3d1c5b6001bd2f2fde5d2f60de9c3758d0d871b9cbcaf1a6d18ceebc0788c166d94
 WHIRLPOOL 
48f8c84e828ec5e3504e9e347a1fe13c30e852f2127458e1b892ab422f4f0b2fd6857fd50fef51f72fb0851fe7827fac62fe1342e7deac2d7a511501c41321ab
 DIST libspatialite-4.1.1.tar.gz 3846758 SHA256 
0481a20af952f4a38c9dbb10f37fd38c45f16c50397f8da0079e02435b9b910f SHA512 
62e443bdf78234b9bf314cc60fbea62da7caa95054cdf5052d83703bf994240a1ffc7a3e804403dfbac65a18e00c5ab58568e66d05d1eb980fe08a52f1e8be05
 WHIRLPOOL 
1ba616b401f7d43a3afd0c62bc3a5835065560a8d5fa983af8da85f3d58ef32ab7b8e0b3ae07499bba2a3af4ff3b7d2b979de200768404750691421abe22d574
+DIST libspatialite-4.3.0.tar.gz 4439538 SHA256 
4acf2d2b891989e61351584fe28514a6561f8f6a1901b988990513be5fe1bdfe SHA512 
b686766ed90711a41efbf219a8942ead8aefda8784a9cabc59233f107e0e10eda949d022152af1064a169975aa6a47515f6064589166418b853427dde5779ecc
 WHIRLPOOL 
ecb98596eae3468423de9921cc304c7299806d911be2bc10efdd38bb1d557cc6a5e70ad96e2268887b443879ca49fabd1b3ed747e440b464ac7f798f0ab2ae7c

diff --git a/dev-db/spatialite/spatialite-4.3.0.ebuild 
b/dev-db/spatialite/spatialite-4.3.0.ebuild
new file mode 100644
index 000..1dd7117
--- /dev/null
+++ b/dev-db/spatialite/spatialite-4.3.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+MY_PN="lib${PN}"
+MY_P="${MY_PN}-${PV}"
+
+inherit multilib eutils
+
+DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
+HOMEPAGE="http://www.gaia-gis.it/gaia-sins/;
+SRC_URI="http://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz;
+
+LICENSE="MPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE="+geos iconv +proj +xls"
+
+RDEPEND=">=dev-db/sqlite-3.7.5:3[extensions(+)]
+   geos? ( >=sci-libs/geos-3.3 )
+   proj? ( sci-libs/proj )
+   xls? ( dev-libs/freexl )
+"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/${MY_P}
+
+src_configure() {
+   econf \
+   --disable-static \
+   --enable-geocallbacks \
+   --enable-epsg \
+   --disable-examples \
+   $(use_enable geos) \
+   $(use_enable geos geosadvanced) \
+   $(use_enable iconv) \
+   $(use_enable proj) \
+   $(use_enable xls freexl)
+}
+
+src_install() {
+   default
+
+   prune_libtool_files
+}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2016-02-29 Thread Amy Winston
commit: 8238fa34ca03afe1e3e839a25a709b3eae9eb745
Author: Amy Winston  gentoo  org>
AuthorDate: Mon Feb 29 18:33:40 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Mon Feb 29 18:33:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8238fa34

dev-db/spatialite: bad comment removed

Package-Manager: portage-2.2.26

 dev-db/spatialite/spatialite-4.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/spatialite/spatialite-4.1.1.ebuild 
b/dev-db/spatialite/spatialite-4.1.1.ebuild
index a052891..8e77a11 100644
--- a/dev-db/spatialite/spatialite-4.1.1.ebuild
+++ b/dev-db/spatialite/spatialite-4.1.1.ebuild
@@ -36,7 +36,7 @@ src_configure() {
--disable-static \
--enable-geocallbacks \
--enable-epsg \
-   --disable-examples \ #broken in 4.1.1
+   --disable-examples \
$(use_enable geos) \
$(use_enable geos geosadvanced) \
$(use_enable iconv) \



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/, dev-db/spatialite/files/

2016-02-29 Thread Amy Winston
commit: 892a8848e5718e75f5d2c8ee3916421de173f023
Author: Amy Winston  gentoo  org>
AuthorDate: Mon Feb 29 18:23:25 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Mon Feb 29 18:24:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=892a8848

dev-db/spatialite: validator patch added bug #571806

Package-Manager: portage-2.2.26

 dev-db/spatialite/files/spatialite-4.1.1-validator.patch | 11 +++
 dev-db/spatialite/spatialite-4.1.1.ebuild|  7 ++-
 2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/dev-db/spatialite/files/spatialite-4.1.1-validator.patch 
b/dev-db/spatialite/files/spatialite-4.1.1-validator.patch
new file mode 100644
index 000..55b2068
--- /dev/null
+++ b/dev-db/spatialite/files/spatialite-4.1.1-validator.patch
@@ -0,0 +1,11 @@
+--- src/shapefiles/validator.c 2013-06-29 08:53:15.0 +0200
 src/shapefiles/validatornew.c  2016-02-29 18:38:11.879981893 +0100
+@@ -3510,7 +3510,7 @@
+ 
+ /* silencing stupid compiler warnings */
+ if (sqlite == NULL || table == NULL || geom == NULL ||
+-  ||report_path == NULL || n_rows == NULL || n_invalids == NULL)
++  report_path == NULL || n_rows == NULL || n_invalids == NULL)
+   table = NULL;
+ 
+ if (err_msg == NULL)

diff --git a/dev-db/spatialite/spatialite-4.1.1.ebuild 
b/dev-db/spatialite/spatialite-4.1.1.ebuild
index c1c2e2d..a052891 100644
--- a/dev-db/spatialite/spatialite-4.1.1.ebuild
+++ b/dev-db/spatialite/spatialite-4.1.1.ebuild
@@ -7,7 +7,7 @@ EAPI=5
 MY_PN="lib${PN}"
 MY_P="${MY_PN}-${PV}"
 
-inherit multilib
+inherit multilib eutils
 
 DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
 HOMEPAGE="http://www.gaia-gis.it/gaia-sins/;
@@ -27,11 +27,16 @@ DEPEND="${RDEPEND}"
 
 S=${WORKDIR}/${MY_P}
 
+src_prepare() {
+   epatch "${FILESDIR}/${P}-validator.patch"
+}
+
 src_configure() {
econf \
--disable-static \
--enable-geocallbacks \
--enable-epsg \
+   --disable-examples \ #broken in 4.1.1
$(use_enable geos) \
$(use_enable geos geosadvanced) \
$(use_enable iconv) \



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2016-01-12 Thread Amy Winston
commit: a40f774c208ba4af975a5dde97a24ceee3ada930
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Jan 12 21:26:58 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Tue Jan 12 21:29:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a40f774c

dev-db/spatialite: 4.1.1 version bump bug #502234

Package-Manager: portage-2.2.24

 dev-db/spatialite/Manifest|  1 +
 dev-db/spatialite/spatialite-4.1.1.ebuild | 46 +++
 2 files changed, 47 insertions(+)

diff --git a/dev-db/spatialite/Manifest b/dev-db/spatialite/Manifest
index a37ec24..0752595 100644
--- a/dev-db/spatialite/Manifest
+++ b/dev-db/spatialite/Manifest
@@ -1,2 +1,3 @@
 DIST libspatialite-2.4.0.tar.gz 865036 SHA256 
a9c2a3d9277a6fed13561cf2c1580fef701cfd55336f34eea3f3d46389f7f2c2 SHA512 
3e34b2eeedfb0f3a57f3ef33c564cc3bd9391c6f7cc6d7fa7b8e83f920c3a625cfbb33d15d9f2110c7821d964b7b26bb5c06aebd41c3f7ad2bf943d3dea795cf
 WHIRLPOOL 
fed91a8501c34a3e0e0a5920049165c081abd050c41b1ef9cb20a8f68571dc85275133d23f798b0b10d88fd6f8623984ee4e18131309d85e1c7512fa9fd3f9d7
 DIST libspatialite-3.0.1.tar.gz 1849723 SHA256 
4983d6584069fd5ff0cfcee1015088dab2db177c0dc7050ce8306b68f8e6 SHA512 
604e5fcb3ac17eb3c69aff5dbf8c77660aecbddc81ab1faa63b0ce069253e3d1c5b6001bd2f2fde5d2f60de9c3758d0d871b9cbcaf1a6d18ceebc0788c166d94
 WHIRLPOOL 
48f8c84e828ec5e3504e9e347a1fe13c30e852f2127458e1b892ab422f4f0b2fd6857fd50fef51f72fb0851fe7827fac62fe1342e7deac2d7a511501c41321ab
+DIST libspatialite-4.1.1.tar.gz 3846758 SHA256 
0481a20af952f4a38c9dbb10f37fd38c45f16c50397f8da0079e02435b9b910f SHA512 
62e443bdf78234b9bf314cc60fbea62da7caa95054cdf5052d83703bf994240a1ffc7a3e804403dfbac65a18e00c5ab58568e66d05d1eb980fe08a52f1e8be05
 WHIRLPOOL 
1ba616b401f7d43a3afd0c62bc3a5835065560a8d5fa983af8da85f3d58ef32ab7b8e0b3ae07499bba2a3af4ff3b7d2b979de200768404750691421abe22d574

diff --git a/dev-db/spatialite/spatialite-4.1.1.ebuild 
b/dev-db/spatialite/spatialite-4.1.1.ebuild
new file mode 100644
index 000..c1c2e2d
--- /dev/null
+++ b/dev-db/spatialite/spatialite-4.1.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MY_PN="lib${PN}"
+MY_P="${MY_PN}-${PV}"
+
+inherit multilib
+
+DESCRIPTION="A complete Spatial DBMS in a nutshell built upon sqlite"
+HOMEPAGE="http://www.gaia-gis.it/gaia-sins/;
+SRC_URI="http://www.gaia-gis.it/gaia-sins/${MY_PN}-sources/${MY_P}.tar.gz;
+
+LICENSE="MPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE="+geos iconv +proj +xls"
+
+RDEPEND=">=dev-db/sqlite-3.7.5:3[extensions(+)]
+   geos? ( >=sci-libs/geos-3.3 )
+   proj? ( sci-libs/proj )
+   xls? ( dev-libs/freexl )
+"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/${MY_P}
+
+src_configure() {
+   econf \
+   --disable-static \
+   --enable-geocallbacks \
+   --enable-epsg \
+   $(use_enable geos) \
+   $(use_enable geos geosadvanced) \
+   $(use_enable iconv) \
+   $(use_enable proj) \
+   $(use_enable xls freexl)
+}
+
+src_install() {
+   default
+
+   find "${ED}" -name '*.la' -exec rm -f {} +
+}



[gentoo-commits] repo/gentoo:master commit in: dev-db/spatialite/

2016-01-12 Thread Amy Winston
commit: 4eba38829f011f91e4a8aa26a0b2c9b90d1b4ced
Author: Amy Winston  gentoo  org>
AuthorDate: Tue Jan 12 21:29:05 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Tue Jan 12 21:29:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eba3882

dev-db/spatialite: eapi bump

Package-Manager: portage-2.2.24

 dev-db/spatialite/spatialite-2.4.0_rc4.ebuild | 4 ++--
 dev-db/spatialite/spatialite-3.0.1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-db/spatialite/spatialite-2.4.0_rc4.ebuild 
b/dev-db/spatialite/spatialite-2.4.0_rc4.ebuild
index 0ad1585..daaa342 100644
--- a/dev-db/spatialite/spatialite-2.4.0_rc4.ebuild
+++ b/dev-db/spatialite/spatialite-2.4.0_rc4.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=4
+EAPI=5
 
 MY_PV=${PV/_rc/-}
 MY_P=lib${P/_rc*}

diff --git a/dev-db/spatialite/spatialite-3.0.1.ebuild 
b/dev-db/spatialite/spatialite-3.0.1.ebuild
index ae43cfe..c1c2e2d 100644
--- a/dev-db/spatialite/spatialite-3.0.1.ebuild
+++ b/dev-db/spatialite/spatialite-3.0.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=4
+EAPI=5
 
 MY_PN="lib${PN}"
 MY_P="${MY_PN}-${PV}"