Gentoo Archives: gentoo-commits

From: "Aaron W. Swenson" <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/osm2pgsql/
Date: Sat, 27 Feb 2021 10:36:40
Message-Id: 1614422114.b8ba237389d58f2fec3c55f1ddda6540bece8cc2.titanofold@gentoo
1 commit: b8ba237389d58f2fec3c55f1ddda6540bece8cc2
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 27 10:35:14 2021 +0000
4 Commit: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 10:35:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8ba2373
7
8 sci-geosciences/osm2pgsql: Cleanup
9
10 Closes: https://bugs.gentoo.org/688110
11 Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>
12
13 sci-geosciences/osm2pgsql/Manifest | 1 -
14 sci-geosciences/osm2pgsql/osm2pgsql-1.3.0.ebuild | 43 ------------------------
15 sci-geosciences/osm2pgsql/osm2pgsql-1.4.0.ebuild | 43 ------------------------
16 3 files changed, 87 deletions(-)
17
18 diff --git a/sci-geosciences/osm2pgsql/Manifest b/sci-geosciences/osm2pgsql/Manifest
19 index a077a0e2ab6..bfae50571f5 100644
20 --- a/sci-geosciences/osm2pgsql/Manifest
21 +++ b/sci-geosciences/osm2pgsql/Manifest
22 @@ -1,2 +1 @@
23 -DIST osm2pgsql-1.3.0.tar.gz 2460451 BLAKE2B ac52523bf6d35a06528ad22a51465388e70baf9f94bb3664c39c301b429ff453370d9cd44549781e4ee50d698094ddfe83f0e39a7c3d6c01556ea95e10feaf75 SHA512 e643f3a1987ead36763c96d34b5dd7e170273b77a521106c21311dc7b01d2b34470b2e00e3214050f2cbdd3d89703a1827ee6c35928ed77cc7f35fc4e20331f3
24 DIST osm2pgsql-1.4.0.tar.gz 2429430 BLAKE2B 5d93a159a87c9cb12d85be8b89377f720e0d94564574f70d6f3686b215a99250967655d0eeee3dcda2742fcab356ecf62de2b4bab384d69a641a06829c401388 SHA512 f0eaceb7f78087a58bba3bbfafbb9d6d70aecd4c3ba1cfb0ce784116b52a57c69855c1a7459cce8b963c87955de269ca320cf4a3934b6ff5ad29b7554e07dd9e
25
26 diff --git a/sci-geosciences/osm2pgsql/osm2pgsql-1.3.0.ebuild b/sci-geosciences/osm2pgsql/osm2pgsql-1.3.0.ebuild
27 deleted file mode 100644
28 index 1e47df20181..00000000000
29 --- a/sci-geosciences/osm2pgsql/osm2pgsql-1.3.0.ebuild
30 +++ /dev/null
31 @@ -1,43 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit cmake
38 -
39 -DESCRIPTION="Converts OSM planet.osm data to a PostgreSQL/PostGIS database"
40 -HOMEPAGE="https://osm2pgsql.org/"
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 luajit"
47 -
48 -COMMON_DEPEND="
49 - app-arch/bzip2
50 - dev-db/postgresql:=
51 - dev-libs/expat
52 - sci-libs/proj:=
53 - sys-libs/zlib
54 - lua? ( dev-lang/lua:0= )
55 - luajit? ( dev-lang/luajit:= )
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 - -DWITH_LUAJIT=$(usex luajit)
71 - -DBUILD_TESTS=OFF
72 - )
73 - cmake_src_configure
74 -}
75
76 diff --git a/sci-geosciences/osm2pgsql/osm2pgsql-1.4.0.ebuild b/sci-geosciences/osm2pgsql/osm2pgsql-1.4.0.ebuild
77 deleted file mode 100644
78 index 736fa938d65..00000000000
79 --- a/sci-geosciences/osm2pgsql/osm2pgsql-1.4.0.ebuild
80 +++ /dev/null
81 @@ -1,43 +0,0 @@
82 -# Copyright 1999-2020 Gentoo Authors
83 -# Distributed under the terms of the GNU General Public License v2
84 -
85 -EAPI=7
86 -
87 -inherit cmake
88 -
89 -DESCRIPTION="Converts OSM planet.osm data to a PostgreSQL/PostGIS database"
90 -HOMEPAGE="https://osm2pgsql.org/"
91 -SRC_URI="https://github.com/openstreetmap/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
92 -
93 -LICENSE="GPL-2"
94 -SLOT="0"
95 -KEYWORDS="~amd64 ~x86"
96 -IUSE="+lua luajit"
97 -
98 -COMMON_DEPEND="
99 - app-arch/bzip2
100 - dev-db/postgresql:=
101 - dev-libs/expat
102 - sci-libs/proj:=
103 - sys-libs/zlib
104 - lua? ( dev-lang/lua:0= )
105 - luajit? ( dev-lang/luajit:= )
106 -"
107 -DEPEND="${COMMON_DEPEND}
108 - dev-libs/boost
109 -"
110 -RDEPEND="${COMMON_DEPEND}
111 - dev-db/postgis
112 -"
113 -
114 -# Tries to connect to local postgres server and other shenanigans
115 -RESTRICT="test"
116 -
117 -src_configure() {
118 - local mycmakeargs=(
119 - -DWITH_LUA=$(usex lua)
120 - -DWITH_LUAJIT=$(usex luajit)
121 - -DBUILD_TESTS=OFF
122 - )
123 - cmake_src_configure
124 -}