Gentoo Archives: gentoo-commits

From: Aaron Swenson <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/osm2pgsql/
Date: Sat, 14 Oct 2017 22:44:16
Message-Id: 1508021037.a7f4c2f7d5406d668f391422441f4b95eb33b6c2.titanofold@gentoo
1 commit: a7f4c2f7d5406d668f391422441f4b95eb33b6c2
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 14 22:43:57 2017 +0000
4 Commit: Aaron Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 14 22:43:57 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7f4c2f7
7
8 sci-geosciences/osm2pgsql: Remove 0.92.0
9
10 Drop old version that depended on an old GEOS.
11
12 Package-Manager: Portage-2.3.8, Repoman-2.3.3
13
14 sci-geosciences/osm2pgsql/Manifest | 1 -
15 sci-geosciences/osm2pgsql/osm2pgsql-0.92.0.ebuild | 42 -----------------------
16 2 files changed, 43 deletions(-)
17
18 diff --git a/sci-geosciences/osm2pgsql/Manifest b/sci-geosciences/osm2pgsql/Manifest
19 index 8f7ba787528..73d42f842ed 100644
20 --- a/sci-geosciences/osm2pgsql/Manifest
21 +++ b/sci-geosciences/osm2pgsql/Manifest
22 @@ -1,2 +1 @@
23 -DIST osm2pgsql-0.92.0.tar.gz 1364481 SHA256 b741cfdf6489fd5def721f75a9558b8cda53165dda7ca9548fcc5b43e163ee77 SHA512 fc2afd6c06f8a44ce3c75e3a731d48cefa17b406c296208519f598531cb3d9561fcfd09c69bc20753ba7e9440087f3f5d38bfe117ab222d8b10987a8d3165ae8 WHIRLPOOL 4fd5d1c645e173f018618edb9fd49da692637fb59a9ccac13ddbef74003fd776af669f23fa2346bb33be2c7d89e121cc206892d18bd2c123debef032827ee45f
24 DIST osm2pgsql-0.94.0.tar.gz 1203310 SHA256 9e67e400deca48185313921431884171fb087dfe9e0d21e31857b8b06f20d317 SHA512 eceb5de7679048f51a9ad1be4ecf5b2d26da827b3eb8d6b0e86657603c8bf8a6f8d6f665c8ff8db91070a2966057f2deed5e4a3cc8bfb28e60a6031454e4758e WHIRLPOOL 2ebc7f0c09079a9417f7c67b7c2fa8ea275b35f20df9cbfed1c9223d7ee1385af9313c6fc3c165ef410b7480517333284921e2e46c0e2706d318cb21d0761b3b
25
26 diff --git a/sci-geosciences/osm2pgsql/osm2pgsql-0.92.0.ebuild b/sci-geosciences/osm2pgsql/osm2pgsql-0.92.0.ebuild
27 deleted file mode 100644
28 index 5baceefb803..00000000000
29 --- a/sci-geosciences/osm2pgsql/osm2pgsql-0.92.0.ebuild
30 +++ /dev/null
31 @@ -1,42 +0,0 @@
32 -# Copyright 1999-2017 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit cmake-utils
38 -
39 -DESCRIPTION="Converts OSM data to SQL and insert into PostgreSQL db"
40 -HOMEPAGE="https://wiki.openstreetmap.org/wiki/Osm2pgsql https://github.com/openstreetmap/osm2pgsql"
41 -SRC_URI="https://github.com/openstreetmap/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE="+lua"
47 -
48 -COMMON_DEPEND="
49 - app-arch/bzip2
50 - dev-db/postgresql:=
51 - dev-libs/expat
52 - <sci-libs/geos-3.6.0
53 - sci-libs/proj
54 - sys-libs/zlib
55 - lua? ( dev-lang/lua:= )
56 -"
57 -DEPEND="${COMMON_DEPEND}
58 - dev-libs/boost
59 -"
60 -RDEPEND="${COMMON_DEPEND}
61 - dev-db/postgis
62 -"
63 -
64 -# Tries to connect to local postgres server and other shenanigans
65 -RESTRICT="test"
66 -
67 -src_configure() {
68 - local mycmakeargs=(
69 - -DWITH_LUA=$(usex lua)
70 - -DBUILD_TESTS=OFF
71 - )
72 - cmake-utils_src_configure
73 -}