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: dev-db/pgrouting/
Date: Wed, 10 Feb 2021 22:32:35
Message-Id: 1612995892.267962aea4a9c5b815fb9a74615cd585fa93c421.titanofold@gentoo
1 commit: 267962aea4a9c5b815fb9a74615cd585fa93c421
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 10 22:24:52 2021 +0000
4 Commit: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 10 22:24:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=267962ae
7
8 dev-db/pgrouting: Cleanup
9
10 Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>
11
12 dev-db/pgrouting/Manifest | 1 -
13 dev-db/pgrouting/metadata.xml | 3 --
14 dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild | 61 ------------------------------
15 3 files changed, 65 deletions(-)
16
17 diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
18 index 36a983e101a..8da077b46f6 100644
19 --- a/dev-db/pgrouting/Manifest
20 +++ b/dev-db/pgrouting/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST pgrouting-2.6.2.tar.gz 6065517 BLAKE2B e27e28cf988040de1e894a857e3d210bc7676271f69d898afc2d6116d5b88d87404723b2cb1283ef77b4449b4aa62a03e2dbcd489ac641a4721a596d29f8fecd SHA512 6e37f66e631d0cc87e135be7d095822aae21656bb56b3d18afa5bececaad8cee6324d37e8e152bbf69e3374ded1f10aa4b9a4c52b873e3a4c43e73cd877fddcb
23 DIST pgrouting-3.1.1.tar.gz 6133979 BLAKE2B b7657eeb88773773e6166190cda73d9e657774ff81ce7e9f005333a8dcb9d56587d4a793410356092bb1623ec287549dbc60d814b1d5156ff28301503acee776 SHA512 73285d2d47be844203df136b8a8c13d1672ad8c2dac44a1ff7ce16e4676043692a8f2a60a305542132891da83560c49c5eaeb7712e3e3dd250cd8fd550260d4a
24 DIST pgrouting-3.1.2.tar.gz 6063893 BLAKE2B a371fb9c744b14072c65af5ceb1ea73d2cdb69821626be3ac79e08c9dee854272ce8cb3816d1de3eade06d50a7520846dd6bccda06934b9db926f9092719f131 SHA512 3cf3e0a4a726f6f11887d15ad71b789a9067f3bc5a675288f22730215aa12d12b94d75f9bdc8ab3077de8368c45c55c0dc27128d0453c4c30965bfc0cf118dcd
25
26 diff --git a/dev-db/pgrouting/metadata.xml b/dev-db/pgrouting/metadata.xml
27 index a88d7650380..2072ed84344 100644
28 --- a/dev-db/pgrouting/metadata.xml
29 +++ b/dev-db/pgrouting/metadata.xml
30 @@ -5,9 +5,6 @@
31 <email>pgsql-bugs@g.o</email>
32 <name>PostgreSQL and Related Package Development</name>
33 </maintainer>
34 - <use>
35 - <flag name="html">Install HTML formatted documentation</flag>
36 - </use>
37 <upstream>
38 <remote-id type="github">pgRouting/pgrouting</remote-id>
39 </upstream>
40
41 diff --git a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild b/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
42 deleted file mode 100644
43 index 00807308c21..00000000000
44 --- a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
45 +++ /dev/null
46 @@ -1,61 +0,0 @@
47 -# Copyright 1999-2020 Gentoo Authors
48 -# Distributed under the terms of the GNU General Public License v2
49 -
50 -EAPI=6
51 -
52 -POSTGRES_COMPAT=( 9.{5..6} 10 11 )
53 -POSTGRES_USEDEP="server"
54 -
55 -inherit postgres cmake-utils
56 -
57 -DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
58 -HOMEPAGE="http://pgrouting.org/"
59 -LICENSE="GPL-2 MIT Boost-1.0"
60 -
61 -SLOT="0"
62 -KEYWORDS="amd64 x86"
63 -SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
64 -IUSE="pdf html"
65 -
66 -RDEPEND="${POSTGRES_DEP}
67 - >=dev-db/postgis-2.0
68 - dev-libs/boost
69 - sci-mathematics/cgal
70 -"
71 -
72 -# Sphinx is needed to build the man pages
73 -DEPEND="${RDEPEND}
74 - >=dev-python/sphinx-1.2
75 - pdf? ( >=dev-python/sphinx-1.2[latex] )
76 -"
77 -
78 -# Needs a running psql instance, doesn't work out of the box
79 -RESTRICT="test"
80 -
81 -pkg_setup() {
82 - postgres_pkg_setup
83 -}
84 -
85 -src_configure() {
86 - local mycmakeargs=(
87 - -DBUILD_HTML=$(usex html)
88 - -DBUILD_LATEX=$(usex pdf)
89 - -DBUILD_MAN=ON
90 - -DWITH_DOC=ON
91 - )
92 -
93 - cmake-utils_src_configure
94 -}
95 -
96 -src_compile() {
97 - cmake-utils_src_make all doc
98 -}
99 -
100 -src_install() {
101 - cmake-utils_src_install
102 -
103 - doman "${BUILD_DIR}"/doc/man/en/pgrouting.7
104 -
105 - use html && dodoc -r "${BUILD_DIR}"/doc/html
106 - use pdf && dodoc "${BUILD_DIR}"/doc/latex/en/*.pdf
107 -}