public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2016-12-23 10:11 Johannes Huber
  0 siblings, 0 replies; 27+ messages in thread
From: Johannes Huber @ 2016-12-23 10:11 UTC (permalink / raw
  To: gentoo-commits

commit:     0a306040b6cf28b6a0a892bd7073852b18b6ee9a
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 23 09:34:37 2016 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Fri Dec 23 10:11:27 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a306040

dev-db/pgrouting: Drop CMAKE_MIN_VERSION

Covered by cmake-utils eclass now.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-db/pgrouting/pgrouting-2.0.0.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-db/pgrouting/pgrouting-2.0.0.ebuild b/dev-db/pgrouting/pgrouting-2.0.0.ebuild
index 5ef7d55..790d56d 100644
--- a/dev-db/pgrouting/pgrouting-2.0.0.ebuild
+++ b/dev-db/pgrouting/pgrouting-2.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -38,7 +38,6 @@ DEPEND="
 
 # Needs a running psql instance, doesn't work out of the box
 RESTRICT="test"
-CMAKE_MIN_VERSION="2.8.8"
 
 postgres_check_slot() {
 	if ! declare -p POSTGRES_COMPAT &>/dev/null; then


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2017-09-24 17:18 Patrick Lauer
  0 siblings, 0 replies; 27+ messages in thread
From: Patrick Lauer @ 2017-09-24 17:18 UTC (permalink / raw
  To: gentoo-commits

commit:     9572f7dcee8b5a2465889a1ef222c6b935c614cb
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 24 17:18:02 2017 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 17:18:15 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9572f7dc

dev-db/pgrouting: Bump

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 dev-db/pgrouting/Manifest               |  1 +
 dev-db/pgrouting/pgrouting-2.5.0.ebuild | 95 +++++++++++++++++++++++++++++++++
 2 files changed, 96 insertions(+)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index 602175e5e41..165c8aaa10c 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1 +1,2 @@
 DIST pgrouting-2.0.0.tar.gz 3765933 SHA256 606309e8ece04abec062522374b48179c16bddb30dd4c5080b89a4298e8d163b SHA512 4a74cc1ce1bbbb8d95ae2aabc712e30c97e0418b1e4f28a255ecd9e57577bd7081a52e6e64a63cb06c9ca659271273b37bdbefb94d49e69b9c2ce45e96911884 WHIRLPOOL ce7492fe1512f7829bd887a7acaadc6c276719fc7e00ceb68a702a2476a9464c83bf929ef78381c8d36a6575dee21587c204f798511e1430731064c2c48a0815
+DIST pgrouting-2.5.0.tar.gz 7157856 SHA256 2c97df865484bf4e4e6f059b535b63bbe64534076b9d0c4bdd494f916fa24e9d SHA512 663dd5f5133d0bf1bbf7c35480c644ba848e65259023a0ef7f31b813b8ed99a4e2cfb813d870de7550e98ca1f8b0255aa28b2c948d13e8975af9f0d19f820784 WHIRLPOOL 0b9236414efd3b07e12dce1d4239151593212c2baae398b2b75e31e2ad09aa1f1fdb0d59471da716ae13ceef7b65fb9594b3090ecff0c1d2cab0a4c73177aae4

diff --git a/dev-db/pgrouting/pgrouting-2.5.0.ebuild b/dev-db/pgrouting/pgrouting-2.5.0.ebuild
new file mode 100644
index 00000000000..79e1b0aa8f7
--- /dev/null
+++ b/dev-db/pgrouting/pgrouting-2.5.0.ebuild
@@ -0,0 +1,95 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+POSTGRES_COMPAT=( 9.{4,5,6} 10 )
+
+inherit eutils cmake-utils
+
+DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
+HOMEPAGE="http://pgrouting.org/index.html"
+LICENSE="GPL-2 MIT Boost-1.0"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+SRC_URI="https://github.com/pgRouting/pgrouting/archive/v${PV}.tar.gz -> ${PN}-${PV}.tar.gz"
+IUSE="+drivingdistance doc pdf html"
+
+REQUIRED_USE="html? ( doc ) pdf? ( doc )"
+
+RDEPEND="
+	|| (
+		dev-db/postgresql:10[server]
+		dev-db/postgresql:9.6[server]
+		dev-db/postgresql:9.5[server]
+		dev-db/postgresql:9.4[server]
+	)
+	>=dev-db/postgis-2.0
+	dev-libs/boost
+	drivingdistance? ( sci-mathematics/cgal )
+"
+
+DEPEND="
+	doc? ( >=dev-python/sphinx-1.1 )
+	pdf? ( >=dev-python/sphinx-1.1[latex] )
+"
+
+# Needs a running psql instance, doesn't work out of the box
+RESTRICT="test"
+
+postgres_check_slot() {
+	if ! declare -p POSTGRES_COMPAT &>/dev/null; then
+		die 'POSTGRES_COMPAT not declared.'
+	fi
+
+# Don't die because we can't run postgresql-config during pretend.
+[[ "$EBUILD_PHASE" = "pretend" \
+	&& -z "$(which postgresql-config 2> /dev/null)" ]] && return 0
+
+	local res=$(echo ${POSTGRES_COMPAT[@]} \
+		| grep -c $(postgresql-config show 2> /dev/null) 2> /dev/null)
+
+	if [[ "$res" -eq "0" ]] ; then
+			eerror "PostgreSQL slot must be set to one of: "
+			eerror "    ${POSTGRES_COMPAT[@]}"
+			return 1
+	fi
+
+	return 0
+}
+
+pkg_pretend() {
+	postgres_check_slot || die
+}
+
+pkg_setup() {
+	postgres_check_slot || die
+}
+
+src_configure() {
+	local mycmakeargs=(
+		$(cmake-utils_use_with drivingdistance DD)
+		$(cmake-utils_use_with doc DOC)
+		$(cmake-utils_use_build doc MAN)
+		$(cmake-utils_use_build html HTML)
+		$(cmake-utils_use_build pdf LATEX)
+	)
+
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	local make_opts
+	use doc && make_opts="all doc"
+	cmake-utils_src_make ${make_opts}
+}
+
+src_install() {
+	use doc && doman "${BUILD_DIR}"/doc/man/en/pgrouting.7
+	use html && dohtml -r "${BUILD_DIR}"/doc/html/*
+	use pdf && dodoc "${BUILD_DIR}"/doc/latex/en/*.pdf
+
+	dodoc README* VERSION
+
+	cmake-utils_src_install
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2018-02-28 13:11 Aaron Swenson
  0 siblings, 0 replies; 27+ messages in thread
From: Aaron Swenson @ 2018-02-28 13:11 UTC (permalink / raw
  To: gentoo-commits

commit:     ace027057c48ca32a1a0fe0ed5e2faad14756db7
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 28 13:10:52 2018 +0000
Commit:     Aaron Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Wed Feb 28 13:10:52 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ace02705

dev-db/pgrouting: Bump to 2.5.2

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-db/pgrouting/Manifest               |  1 +
 dev-db/pgrouting/pgrouting-2.5.2.ebuild | 64 +++++++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index a0c76dbe8b5..d02a4de3b5c 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1,2 +1,3 @@
 DIST pgrouting-2.0.0.tar.gz 3765933 BLAKE2B 3bf574b79851e33bb9b5f99220757c02061ec052027940d73f7e8602e876644a0cb780fb3291c60a6e4fa54d886ed574d2a651971c01cd950778b561356c997f SHA512 4a74cc1ce1bbbb8d95ae2aabc712e30c97e0418b1e4f28a255ecd9e57577bd7081a52e6e64a63cb06c9ca659271273b37bdbefb94d49e69b9c2ce45e96911884
 DIST pgrouting-2.5.0.tar.gz 7157856 BLAKE2B aa9c9afb982e367692aefc07583d0e362503d6c3d4b7d1ec17f6eee60848e8d01a54b520e7417cc92d6fb3f4b526da1826abc7d7e8db88126d8946ae6f699b0b SHA512 663dd5f5133d0bf1bbf7c35480c644ba848e65259023a0ef7f31b813b8ed99a4e2cfb813d870de7550e98ca1f8b0255aa28b2c948d13e8975af9f0d19f820784
+DIST pgrouting-2.5.2.tar.gz 7221479 BLAKE2B afbf29b7cbd52df526203198fb76d9e9e37e88a4b92d2139975238a14fe5a30c8102449d157e391913e690129a1ca8ac718763d9242193cac4080bc7347e1553 SHA512 9d9d9ebbcbc003f62bf1f0d548363e756012cdce55a9c3ef56ae9a5a510f25337898becf42f3e04bf10e8d3672ebf698def03833bba33410b65e0d2bdd42aecd

diff --git a/dev-db/pgrouting/pgrouting-2.5.2.ebuild b/dev-db/pgrouting/pgrouting-2.5.2.ebuild
new file mode 100644
index 00000000000..fa48f5a3fb6
--- /dev/null
+++ b/dev-db/pgrouting/pgrouting-2.5.2.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+POSTGRES_COMPAT=( 9.{4,5,6} 10 )
+POSTGRES_USEDEP="server"
+
+inherit  postgres cmake-utils
+
+DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
+HOMEPAGE="http://pgrouting.org/"
+LICENSE="GPL-2 MIT Boost-1.0"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE="+drivingdistance doc pdf html"
+
+REQUIRED_USE="html? ( doc ) pdf? ( doc )"
+
+RDEPEND="${POSTGRES_DEP}
+	>=dev-db/postgis-2.0
+	dev-libs/boost
+	drivingdistance? ( sci-mathematics/cgal )
+"
+
+DEPEND="
+	doc? ( >=dev-python/sphinx-1.1 )
+	pdf? ( >=dev-python/sphinx-1.1[latex] )
+"
+
+# Needs a running psql instance, doesn't work out of the box
+RESTRICT="test"
+
+pkg_setup() {
+	postgres_pkg_setup
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_HTML=$(usex html)
+		-DBUILD_LATEX=$(usex pdf)
+		-DBUILD_MAN=$(usex doc)
+		-DWITH_DD=$(usex drivingdistance)
+		-DWITH_DOC=$(usex doc)
+	)
+
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	local make_opts
+	use doc && make_opts="all doc"
+	cmake-utils_src_make ${make_opts}
+}
+
+src_install() {
+	cmake-utils_src_install
+
+	use doc && doman "${BUILD_DIR}"/doc/man/en/pgrouting.7
+	use html && dodoc -r "${BUILD_DIR}"/doc/html
+	use pdf && dodoc "${BUILD_DIR}"/doc/latex/en/*.pdf
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2018-06-07 19:22 Aaron Bauman
  0 siblings, 0 replies; 27+ messages in thread
From: Aaron Bauman @ 2018-06-07 19:22 UTC (permalink / raw
  To: gentoo-commits

commit:     8851248b8557a337bd6da436d298ba2149c6f627
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Mon Jun  4 20:03:12 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Thu Jun  7 19:20:25 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8851248b

dev-db/pgrouting: use HTTPs

Closes: https://github.com/gentoo/gentoo/pull/8725

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

diff --git a/dev-db/pgrouting/pgrouting-2.5.2.ebuild b/dev-db/pgrouting/pgrouting-2.5.2.ebuild
index fa48f5a3fb6..7a0afdc63ea 100644
--- a/dev-db/pgrouting/pgrouting-2.5.2.ebuild
+++ b/dev-db/pgrouting/pgrouting-2.5.2.ebuild
@@ -9,7 +9,7 @@ POSTGRES_USEDEP="server"
 inherit  postgres cmake-utils
 
 DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
-HOMEPAGE="http://pgrouting.org/"
+HOMEPAGE="https://pgrouting.org/"
 LICENSE="GPL-2 MIT Boost-1.0"
 
 SLOT="0"


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2019-06-21 10:08 Aaron W. Swenson
  0 siblings, 0 replies; 27+ messages in thread
From: Aaron W. Swenson @ 2019-06-21 10:08 UTC (permalink / raw
  To: gentoo-commits

commit:     95d44e303a459e9de6025f87156b58ecc6a0bc5d
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 21 10:05:40 2019 +0000
Commit:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Fri Jun 21 10:07:55 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95d44e30

dev-db/pgrouting: Bump to 2.6.2

Fixes doc installation.

Bug: https://bugs.gentoo.org/625778
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>

 dev-db/pgrouting/Manifest               |  1 +
 dev-db/pgrouting/pgrouting-2.6.2.ebuild | 64 +++++++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index 40ae7848e25..8c026319d9c 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1 +1,2 @@
 DIST pgrouting-2.5.2.tar.gz 7221479 BLAKE2B afbf29b7cbd52df526203198fb76d9e9e37e88a4b92d2139975238a14fe5a30c8102449d157e391913e690129a1ca8ac718763d9242193cac4080bc7347e1553 SHA512 9d9d9ebbcbc003f62bf1f0d548363e756012cdce55a9c3ef56ae9a5a510f25337898becf42f3e04bf10e8d3672ebf698def03833bba33410b65e0d2bdd42aecd
+DIST pgrouting-2.6.2.tar.gz 6065517 BLAKE2B e27e28cf988040de1e894a857e3d210bc7676271f69d898afc2d6116d5b88d87404723b2cb1283ef77b4449b4aa62a03e2dbcd489ac641a4721a596d29f8fecd SHA512 6e37f66e631d0cc87e135be7d095822aae21656bb56b3d18afa5bececaad8cee6324d37e8e152bbf69e3374ded1f10aa4b9a4c52b873e3a4c43e73cd877fddcb

diff --git a/dev-db/pgrouting/pgrouting-2.6.2.ebuild b/dev-db/pgrouting/pgrouting-2.6.2.ebuild
new file mode 100644
index 00000000000..7690a22ce13
--- /dev/null
+++ b/dev-db/pgrouting/pgrouting-2.6.2.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+POSTGRES_COMPAT=( 9.{4..6} 10 11 )
+POSTGRES_USEDEP="server"
+
+inherit  postgres cmake-utils
+
+DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
+HOMEPAGE="http://pgrouting.org/"
+LICENSE="GPL-2 MIT Boost-1.0"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE="doc pdf html"
+
+REQUIRED_USE="html? ( doc ) pdf? ( doc )"
+
+RDEPEND="${POSTGRES_DEP}
+	>=dev-db/postgis-2.0
+	dev-libs/boost
+	sci-mathematics/cgal
+"
+
+DEPEND="
+	doc? ( >=dev-python/sphinx-1.2 )
+	pdf? ( >=dev-python/sphinx-1.2[latex] )
+"
+
+# Needs a running psql instance, doesn't work out of the box
+RESTRICT="test"
+
+pkg_setup() {
+	postgres_pkg_setup
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_HTML=$(usex html)
+		-DBUILD_LATEX=$(usex pdf)
+		-DBUILD_MAN=ON
+		-DWITH_DOC=$(usex doc)
+	)
+
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	local make_opts
+	use doc && make_opts="all doc"
+	cmake-utils_src_make ${make_opts}
+}
+
+src_install() {
+	cmake-utils_src_install
+
+	doman "${BUILD_DIR}"/doc/man/en/pgrouting.7
+
+	use html && dodoc -r "${BUILD_DIR}"/doc/html
+	use pdf && dodoc "${BUILD_DIR}"/doc/latex/en/*.pdf
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2019-08-17 11:17 Aaron W. Swenson
  0 siblings, 0 replies; 27+ messages in thread
From: Aaron W. Swenson @ 2019-08-17 11:17 UTC (permalink / raw
  To: gentoo-commits

commit:     486e884611f9d08e3036474e4c032c9b4b830a41
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 17 11:16:49 2019 +0000
Commit:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Sat Aug 17 11:17:13 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=486e8846

dev-db/pgrouting: Fix manpage generation

Bug: https://bugs.gentoo.org/625778
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>

 dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild | 61 ++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)

diff --git a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild b/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
new file mode 100644
index 00000000000..db35bce832a
--- /dev/null
+++ b/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+POSTGRES_COMPAT=( 9.{4..6} 10 11 )
+POSTGRES_USEDEP="server"
+
+inherit  postgres cmake-utils
+
+DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
+HOMEPAGE="http://pgrouting.org/"
+LICENSE="GPL-2 MIT Boost-1.0"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE="pdf html"
+
+RDEPEND="${POSTGRES_DEP}
+	>=dev-db/postgis-2.0
+	dev-libs/boost
+	sci-mathematics/cgal
+"
+
+# Sphinx is needed to build the man pages
+DEPEND="${RDEPEND}
+	>=dev-python/sphinx-1.2
+	pdf? ( >=dev-python/sphinx-1.2[latex] )
+"
+
+# Needs a running psql instance, doesn't work out of the box
+RESTRICT="test"
+
+pkg_setup() {
+	postgres_pkg_setup
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_HTML=$(usex html)
+		-DBUILD_LATEX=$(usex pdf)
+		-DBUILD_MAN=ON
+		-DWITH_DOC=ON
+	)
+
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	cmake-utils_src_make all doc
+}
+
+src_install() {
+	cmake-utils_src_install
+
+	doman "${BUILD_DIR}"/doc/man/en/pgrouting.7
+
+	use html && dodoc -r "${BUILD_DIR}"/doc/html
+	use pdf && dodoc "${BUILD_DIR}"/doc/latex/en/*.pdf
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2019-10-01 10:00 Agostino Sarubbo
  0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2019-10-01 10:00 UTC (permalink / raw
  To: gentoo-commits

commit:     5b8705521a217a3dfd04b9dcecc0f8e8585cbb14
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  1 10:00:41 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Oct  1 10:00:41 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b870552

dev-db/pgrouting: amd64 stable wrt bug #690396

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

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

diff --git a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild b/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
index db35bce832a..55cbcef4754 100644
--- a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
+++ b/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pgrouting.org/"
 LICENSE="GPL-2 MIT Boost-1.0"
 
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 IUSE="pdf html"
 


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2019-10-02 18:53 Agostino Sarubbo
  0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2019-10-02 18:53 UTC (permalink / raw
  To: gentoo-commits

commit:     b4b87fee3a783cdc00e9d39658ea6b880e256247
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  2 18:53:07 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Oct  2 18:53:49 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4b87fee

dev-db/pgrouting: x86 stable wrt bug #690396

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

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

diff --git a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild b/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
index 55cbcef4754..fb64a94eecb 100644
--- a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
+++ b/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://pgrouting.org/"
 LICENSE="GPL-2 MIT Boost-1.0"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 IUSE="pdf html"
 


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2019-10-02 23:51 Aaron W. Swenson
  0 siblings, 0 replies; 27+ messages in thread
From: Aaron W. Swenson @ 2019-10-02 23:51 UTC (permalink / raw
  To: gentoo-commits

commit:     4efc08d4a2b1cb4c2dd3ac39cb7baf3d55c674f8
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  2 23:50:51 2019 +0000
Commit:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Wed Oct  2 23:50:57 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4efc08d4

dev-db/pgrouting: Cleanup

Closes: https://bugs.gentoo.org/625778
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>

 dev-db/pgrouting/Manifest               |  1 -
 dev-db/pgrouting/metadata.xml           |  1 -
 dev-db/pgrouting/pgrouting-2.5.2.ebuild | 64 ---------------------------------
 dev-db/pgrouting/pgrouting-2.6.2.ebuild | 64 ---------------------------------
 4 files changed, 130 deletions(-)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index 8c026319d9c..aa2c6d3e681 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1,2 +1 @@
-DIST pgrouting-2.5.2.tar.gz 7221479 BLAKE2B afbf29b7cbd52df526203198fb76d9e9e37e88a4b92d2139975238a14fe5a30c8102449d157e391913e690129a1ca8ac718763d9242193cac4080bc7347e1553 SHA512 9d9d9ebbcbc003f62bf1f0d548363e756012cdce55a9c3ef56ae9a5a510f25337898becf42f3e04bf10e8d3672ebf698def03833bba33410b65e0d2bdd42aecd
 DIST pgrouting-2.6.2.tar.gz 6065517 BLAKE2B e27e28cf988040de1e894a857e3d210bc7676271f69d898afc2d6116d5b88d87404723b2cb1283ef77b4449b4aa62a03e2dbcd489ac641a4721a596d29f8fecd SHA512 6e37f66e631d0cc87e135be7d095822aae21656bb56b3d18afa5bececaad8cee6324d37e8e152bbf69e3374ded1f10aa4b9a4c52b873e3a4c43e73cd877fddcb

diff --git a/dev-db/pgrouting/metadata.xml b/dev-db/pgrouting/metadata.xml
index 01cf346d26b..a88d7650380 100644
--- a/dev-db/pgrouting/metadata.xml
+++ b/dev-db/pgrouting/metadata.xml
@@ -7,7 +7,6 @@
   </maintainer>
   <use>
     <flag name="html">Install HTML formatted documentation</flag>
-    <flag name="drivingdistance">Enable to calculate driving distance</flag>
   </use>
   <upstream>
     <remote-id type="github">pgRouting/pgrouting</remote-id>

diff --git a/dev-db/pgrouting/pgrouting-2.5.2.ebuild b/dev-db/pgrouting/pgrouting-2.5.2.ebuild
deleted file mode 100644
index 7a0afdc63ea..00000000000
--- a/dev-db/pgrouting/pgrouting-2.5.2.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-POSTGRES_COMPAT=( 9.{4,5,6} 10 )
-POSTGRES_USEDEP="server"
-
-inherit  postgres cmake-utils
-
-DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
-HOMEPAGE="https://pgrouting.org/"
-LICENSE="GPL-2 MIT Boost-1.0"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-IUSE="+drivingdistance doc pdf html"
-
-REQUIRED_USE="html? ( doc ) pdf? ( doc )"
-
-RDEPEND="${POSTGRES_DEP}
-	>=dev-db/postgis-2.0
-	dev-libs/boost
-	drivingdistance? ( sci-mathematics/cgal )
-"
-
-DEPEND="
-	doc? ( >=dev-python/sphinx-1.1 )
-	pdf? ( >=dev-python/sphinx-1.1[latex] )
-"
-
-# Needs a running psql instance, doesn't work out of the box
-RESTRICT="test"
-
-pkg_setup() {
-	postgres_pkg_setup
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DBUILD_HTML=$(usex html)
-		-DBUILD_LATEX=$(usex pdf)
-		-DBUILD_MAN=$(usex doc)
-		-DWITH_DD=$(usex drivingdistance)
-		-DWITH_DOC=$(usex doc)
-	)
-
-	cmake-utils_src_configure
-}
-
-src_compile() {
-	local make_opts
-	use doc && make_opts="all doc"
-	cmake-utils_src_make ${make_opts}
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	use doc && doman "${BUILD_DIR}"/doc/man/en/pgrouting.7
-	use html && dodoc -r "${BUILD_DIR}"/doc/html
-	use pdf && dodoc "${BUILD_DIR}"/doc/latex/en/*.pdf
-}

diff --git a/dev-db/pgrouting/pgrouting-2.6.2.ebuild b/dev-db/pgrouting/pgrouting-2.6.2.ebuild
deleted file mode 100644
index 7690a22ce13..00000000000
--- a/dev-db/pgrouting/pgrouting-2.6.2.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-POSTGRES_COMPAT=( 9.{4..6} 10 11 )
-POSTGRES_USEDEP="server"
-
-inherit  postgres cmake-utils
-
-DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
-HOMEPAGE="http://pgrouting.org/"
-LICENSE="GPL-2 MIT Boost-1.0"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-IUSE="doc pdf html"
-
-REQUIRED_USE="html? ( doc ) pdf? ( doc )"
-
-RDEPEND="${POSTGRES_DEP}
-	>=dev-db/postgis-2.0
-	dev-libs/boost
-	sci-mathematics/cgal
-"
-
-DEPEND="
-	doc? ( >=dev-python/sphinx-1.2 )
-	pdf? ( >=dev-python/sphinx-1.2[latex] )
-"
-
-# Needs a running psql instance, doesn't work out of the box
-RESTRICT="test"
-
-pkg_setup() {
-	postgres_pkg_setup
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DBUILD_HTML=$(usex html)
-		-DBUILD_LATEX=$(usex pdf)
-		-DBUILD_MAN=ON
-		-DWITH_DOC=$(usex doc)
-	)
-
-	cmake-utils_src_configure
-}
-
-src_compile() {
-	local make_opts
-	use doc && make_opts="all doc"
-	cmake-utils_src_make ${make_opts}
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	doman "${BUILD_DIR}"/doc/man/en/pgrouting.7
-
-	use html && dodoc -r "${BUILD_DIR}"/doc/html
-	use pdf && dodoc "${BUILD_DIR}"/doc/latex/en/*.pdf
-}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2020-08-14  0:49 Aaron W. Swenson
  0 siblings, 0 replies; 27+ messages in thread
From: Aaron W. Swenson @ 2020-08-14  0:49 UTC (permalink / raw
  To: gentoo-commits

commit:     e12cf1a0848ebdb33830953ad58ad1ef8f3c1a4d
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 14 00:43:17 2020 +0000
Commit:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Fri Aug 14 00:43:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e12cf1a0

dev-db/pgrouting: Dropping Pg 9.4 Support

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>

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

diff --git a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild b/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
index fb64a94eecb..00807308c21 100644
--- a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
+++ b/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-POSTGRES_COMPAT=( 9.{4..6} 10 11 )
+POSTGRES_COMPAT=( 9.{5..6} 10 11 )
 POSTGRES_USEDEP="server"
 
 inherit  postgres cmake-utils


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2020-11-26  2:40 Aaron W. Swenson
  0 siblings, 0 replies; 27+ messages in thread
From: Aaron W. Swenson @ 2020-11-26  2:40 UTC (permalink / raw
  To: gentoo-commits

commit:     33c03035bddb5bc325bc5fb8aa65260886f3e0ea
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 02:30:09 2020 +0000
Commit:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 02:30:09 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33c03035

dev-db/pgrouting: Bump to 3.1.1

Now supports side-by-side installations for PostgreSQL slots.

Dropped support for building documentation because upstream has a novel
approach.

Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>

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

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index aa2c6d3e681..89385eed601 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1 +1,2 @@
 DIST pgrouting-2.6.2.tar.gz 6065517 BLAKE2B e27e28cf988040de1e894a857e3d210bc7676271f69d898afc2d6116d5b88d87404723b2cb1283ef77b4449b4aa62a03e2dbcd489ac641a4721a596d29f8fecd SHA512 6e37f66e631d0cc87e135be7d095822aae21656bb56b3d18afa5bececaad8cee6324d37e8e152bbf69e3374ded1f10aa4b9a4c52b873e3a4c43e73cd877fddcb
+DIST pgrouting-3.1.1.tar.gz 6133979 BLAKE2B b7657eeb88773773e6166190cda73d9e657774ff81ce7e9f005333a8dcb9d56587d4a793410356092bb1623ec287549dbc60d814b1d5156ff28301503acee776 SHA512 73285d2d47be844203df136b8a8c13d1672ad8c2dac44a1ff7ce16e4676043692a8f2a60a305542132891da83560c49c5eaeb7712e3e3dd250cd8fd550260d4a

diff --git a/dev-db/pgrouting/pgrouting-3.1.1.ebuild b/dev-db/pgrouting/pgrouting-3.1.1.ebuild
new file mode 100644
index 00000000000..2414673c055
--- /dev/null
+++ b/dev-db/pgrouting/pgrouting-3.1.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_BUILD_TYPE="Release"
+#CMAKE_MAKEFILE_GENERATOR=emake
+
+POSTGRES_COMPAT=( 9.{5..6} {10..13} )
+POSTGRES_USEDEP="server"
+
+inherit cmake postgres-multi
+
+DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
+HOMEPAGE="http://pgrouting.org/"
+LICENSE="GPL-2 MIT Boost-1.0"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE=""
+
+RDEPEND="${POSTGRES_DEP}
+	>=dev-db/postgis-2.0
+	dev-libs/boost
+	sci-mathematics/cgal
+"
+DEPEND="${RDEPEND}"
+
+# Needs a running psql instance, doesn't work out of the box
+RESTRICT="test"
+
+src_prepare() {
+	cmake_src_prepare
+	postgres-multi_src_prepare
+}
+
+my_src_configure() {
+	local mycmakeargs=(
+		-DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)"
+	)
+
+	cmake_src_configure
+}
+
+src_configure() {
+	postgres-multi_foreach my_src_configure
+}
+
+src_compile() {
+	postgres-multi_foreach cmake_build
+}
+
+src_install() {
+	postgres-multi_foreach cmake_src_install
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2020-11-26  2:40 Aaron W. Swenson
  0 siblings, 0 replies; 27+ messages in thread
From: Aaron W. Swenson @ 2020-11-26  2:40 UTC (permalink / raw
  To: gentoo-commits

commit:     aab647bf24abaef0f7550dbcc331ae3f33076bf0
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 02:39:27 2020 +0000
Commit:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 02:39:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aab647bf

dev-db/pgrouting: Use HTTPS for homepage

Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>

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

diff --git a/dev-db/pgrouting/pgrouting-3.1.1.ebuild b/dev-db/pgrouting/pgrouting-3.1.1.ebuild
index 2414673c055..519683a61f9 100644
--- a/dev-db/pgrouting/pgrouting-3.1.1.ebuild
+++ b/dev-db/pgrouting/pgrouting-3.1.1.ebuild
@@ -12,7 +12,7 @@ POSTGRES_USEDEP="server"
 inherit cmake postgres-multi
 
 DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
-HOMEPAGE="http://pgrouting.org/"
+HOMEPAGE="https://pgrouting.org/"
 LICENSE="GPL-2 MIT Boost-1.0"
 
 SLOT="0"


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2020-12-21 10:37 Aaron W. Swenson
  0 siblings, 0 replies; 27+ messages in thread
From: Aaron W. Swenson @ 2020-12-21 10:37 UTC (permalink / raw
  To: gentoo-commits

commit:     cb7d775232e53b50a8d1ca731f4098d43e9a43e1
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 21 10:36:58 2020 +0000
Commit:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Mon Dec 21 10:36:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb7d7752

dev-db/pgrouting: Bump to 3.1.2

Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>

 dev-db/pgrouting/Manifest               |  1 +
 dev-db/pgrouting/pgrouting-3.1.2.ebuild | 52 +++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index 89385eed601..36a983e101a 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1,2 +1,3 @@
 DIST pgrouting-2.6.2.tar.gz 6065517 BLAKE2B e27e28cf988040de1e894a857e3d210bc7676271f69d898afc2d6116d5b88d87404723b2cb1283ef77b4449b4aa62a03e2dbcd489ac641a4721a596d29f8fecd SHA512 6e37f66e631d0cc87e135be7d095822aae21656bb56b3d18afa5bececaad8cee6324d37e8e152bbf69e3374ded1f10aa4b9a4c52b873e3a4c43e73cd877fddcb
 DIST pgrouting-3.1.1.tar.gz 6133979 BLAKE2B b7657eeb88773773e6166190cda73d9e657774ff81ce7e9f005333a8dcb9d56587d4a793410356092bb1623ec287549dbc60d814b1d5156ff28301503acee776 SHA512 73285d2d47be844203df136b8a8c13d1672ad8c2dac44a1ff7ce16e4676043692a8f2a60a305542132891da83560c49c5eaeb7712e3e3dd250cd8fd550260d4a
+DIST pgrouting-3.1.2.tar.gz 6063893 BLAKE2B a371fb9c744b14072c65af5ceb1ea73d2cdb69821626be3ac79e08c9dee854272ce8cb3816d1de3eade06d50a7520846dd6bccda06934b9db926f9092719f131 SHA512 3cf3e0a4a726f6f11887d15ad71b789a9067f3bc5a675288f22730215aa12d12b94d75f9bdc8ab3077de8368c45c55c0dc27128d0453c4c30965bfc0cf118dcd

diff --git a/dev-db/pgrouting/pgrouting-3.1.2.ebuild b/dev-db/pgrouting/pgrouting-3.1.2.ebuild
new file mode 100644
index 00000000000..addf00e4158
--- /dev/null
+++ b/dev-db/pgrouting/pgrouting-3.1.2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_BUILD_TYPE="Release"
+
+POSTGRES_COMPAT=( 9.{5..6} {10..13} )
+POSTGRES_USEDEP="server"
+
+inherit cmake postgres-multi
+
+DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
+HOMEPAGE="https://pgrouting.org/"
+LICENSE="GPL-2 MIT Boost-1.0"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE=""
+
+RDEPEND="${POSTGRES_DEP}
+	>=dev-db/postgis-2.0
+	dev-libs/boost
+	sci-mathematics/cgal
+"
+DEPEND="${RDEPEND}"
+
+# Needs a running psql instance, doesn't work out of the box
+RESTRICT="test"
+
+src_prepare() {
+	cmake_src_prepare
+	postgres-multi_src_prepare
+}
+
+my_src_configure() {
+	local mycmakeargs=( -DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)" )
+	cmake_src_configure
+}
+
+src_configure() {
+	postgres-multi_foreach my_src_configure
+}
+
+src_compile() {
+	postgres-multi_foreach cmake_build
+}
+
+src_install() {
+	postgres-multi_foreach cmake_src_install
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2021-01-21  7:40 Agostino Sarubbo
  0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2021-01-21  7:40 UTC (permalink / raw
  To: gentoo-commits

commit:     ef874281250ff4380512a1bc8201e141a0231c06
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 21 07:40:39 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jan 21 07:40:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef874281

dev-db/pgrouting: amd64 stable wrt bug #762187

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

 dev-db/pgrouting/pgrouting-3.1.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/pgrouting/pgrouting-3.1.1.ebuild b/dev-db/pgrouting/pgrouting-3.1.1.ebuild
index 519683a61f9..0742615d549 100644
--- a/dev-db/pgrouting/pgrouting-3.1.1.ebuild
+++ b/dev-db/pgrouting/pgrouting-3.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,7 +16,7 @@ HOMEPAGE="https://pgrouting.org/"
 LICENSE="GPL-2 MIT Boost-1.0"
 
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 IUSE=""
 


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2021-01-24 12:10 Agostino Sarubbo
  0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2021-01-24 12:10 UTC (permalink / raw
  To: gentoo-commits

commit:     3b96a49ab93ecebedff275520c0c198edda414da
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 24 12:10:15 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Jan 24 12:10:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b96a49a

dev-db/pgrouting: x86 stable wrt bug #762187

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

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

diff --git a/dev-db/pgrouting/pgrouting-3.1.1.ebuild b/dev-db/pgrouting/pgrouting-3.1.1.ebuild
index 0742615d549..0c0d27fd571 100644
--- a/dev-db/pgrouting/pgrouting-3.1.1.ebuild
+++ b/dev-db/pgrouting/pgrouting-3.1.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://pgrouting.org/"
 LICENSE="GPL-2 MIT Boost-1.0"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 IUSE=""
 


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2021-02-10 22:32 Aaron W. Swenson
  0 siblings, 0 replies; 27+ messages in thread
From: Aaron W. Swenson @ 2021-02-10 22:32 UTC (permalink / raw
  To: gentoo-commits

commit:     267962aea4a9c5b815fb9a74615cd585fa93c421
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 22:24:52 2021 +0000
Commit:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 22:24:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=267962ae

dev-db/pgrouting: Cleanup

Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>

 dev-db/pgrouting/Manifest                  |  1 -
 dev-db/pgrouting/metadata.xml              |  3 --
 dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild | 61 ------------------------------
 3 files changed, 65 deletions(-)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index 36a983e101a..8da077b46f6 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1,3 +1,2 @@
-DIST pgrouting-2.6.2.tar.gz 6065517 BLAKE2B e27e28cf988040de1e894a857e3d210bc7676271f69d898afc2d6116d5b88d87404723b2cb1283ef77b4449b4aa62a03e2dbcd489ac641a4721a596d29f8fecd SHA512 6e37f66e631d0cc87e135be7d095822aae21656bb56b3d18afa5bececaad8cee6324d37e8e152bbf69e3374ded1f10aa4b9a4c52b873e3a4c43e73cd877fddcb
 DIST pgrouting-3.1.1.tar.gz 6133979 BLAKE2B b7657eeb88773773e6166190cda73d9e657774ff81ce7e9f005333a8dcb9d56587d4a793410356092bb1623ec287549dbc60d814b1d5156ff28301503acee776 SHA512 73285d2d47be844203df136b8a8c13d1672ad8c2dac44a1ff7ce16e4676043692a8f2a60a305542132891da83560c49c5eaeb7712e3e3dd250cd8fd550260d4a
 DIST pgrouting-3.1.2.tar.gz 6063893 BLAKE2B a371fb9c744b14072c65af5ceb1ea73d2cdb69821626be3ac79e08c9dee854272ce8cb3816d1de3eade06d50a7520846dd6bccda06934b9db926f9092719f131 SHA512 3cf3e0a4a726f6f11887d15ad71b789a9067f3bc5a675288f22730215aa12d12b94d75f9bdc8ab3077de8368c45c55c0dc27128d0453c4c30965bfc0cf118dcd

diff --git a/dev-db/pgrouting/metadata.xml b/dev-db/pgrouting/metadata.xml
index a88d7650380..2072ed84344 100644
--- a/dev-db/pgrouting/metadata.xml
+++ b/dev-db/pgrouting/metadata.xml
@@ -5,9 +5,6 @@
     <email>pgsql-bugs@gentoo.org</email>
     <name>PostgreSQL and Related Package Development</name>
   </maintainer>
-  <use>
-    <flag name="html">Install HTML formatted documentation</flag>
-  </use>
   <upstream>
     <remote-id type="github">pgRouting/pgrouting</remote-id>
   </upstream>

diff --git a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild b/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
deleted file mode 100644
index 00807308c21..00000000000
--- a/dev-db/pgrouting/pgrouting-2.6.2-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-POSTGRES_COMPAT=( 9.{5..6} 10 11 )
-POSTGRES_USEDEP="server"
-
-inherit  postgres cmake-utils
-
-DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
-HOMEPAGE="http://pgrouting.org/"
-LICENSE="GPL-2 MIT Boost-1.0"
-
-SLOT="0"
-KEYWORDS="amd64 x86"
-SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-IUSE="pdf html"
-
-RDEPEND="${POSTGRES_DEP}
-	>=dev-db/postgis-2.0
-	dev-libs/boost
-	sci-mathematics/cgal
-"
-
-# Sphinx is needed to build the man pages
-DEPEND="${RDEPEND}
-	>=dev-python/sphinx-1.2
-	pdf? ( >=dev-python/sphinx-1.2[latex] )
-"
-
-# Needs a running psql instance, doesn't work out of the box
-RESTRICT="test"
-
-pkg_setup() {
-	postgres_pkg_setup
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DBUILD_HTML=$(usex html)
-		-DBUILD_LATEX=$(usex pdf)
-		-DBUILD_MAN=ON
-		-DWITH_DOC=ON
-	)
-
-	cmake-utils_src_configure
-}
-
-src_compile() {
-	cmake-utils_src_make all doc
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	doman "${BUILD_DIR}"/doc/man/en/pgrouting.7
-
-	use html && dodoc -r "${BUILD_DIR}"/doc/html
-	use pdf && dodoc "${BUILD_DIR}"/doc/latex/en/*.pdf
-}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2021-02-11 13:15 Aaron W. Swenson
  0 siblings, 0 replies; 27+ messages in thread
From: Aaron W. Swenson @ 2021-02-11 13:15 UTC (permalink / raw
  To: gentoo-commits

commit:     9aeee070220b4a3767b6601b5205269e9f571784
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 11 13:14:59 2021 +0000
Commit:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Thu Feb 11 13:14:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aeee070

dev-db/pgrouting: Bump to 3.1.3

Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>

 dev-db/pgrouting/Manifest               |  1 +
 dev-db/pgrouting/pgrouting-3.1.3.ebuild | 52 +++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index 8da077b46f6..ef329624523 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1,2 +1,3 @@
 DIST pgrouting-3.1.1.tar.gz 6133979 BLAKE2B b7657eeb88773773e6166190cda73d9e657774ff81ce7e9f005333a8dcb9d56587d4a793410356092bb1623ec287549dbc60d814b1d5156ff28301503acee776 SHA512 73285d2d47be844203df136b8a8c13d1672ad8c2dac44a1ff7ce16e4676043692a8f2a60a305542132891da83560c49c5eaeb7712e3e3dd250cd8fd550260d4a
 DIST pgrouting-3.1.2.tar.gz 6063893 BLAKE2B a371fb9c744b14072c65af5ceb1ea73d2cdb69821626be3ac79e08c9dee854272ce8cb3816d1de3eade06d50a7520846dd6bccda06934b9db926f9092719f131 SHA512 3cf3e0a4a726f6f11887d15ad71b789a9067f3bc5a675288f22730215aa12d12b94d75f9bdc8ab3077de8368c45c55c0dc27128d0453c4c30965bfc0cf118dcd
+DIST pgrouting-3.1.3.tar.gz 6057504 BLAKE2B 73bc5d810a2f7bb383ba4fef4ffa52ccb3f21dbc00c68f02665dc459c0e0a2810e0ed10ab73bb3099be5ea6dde86bad884d82039a50c9c4eb423b614845e94b6 SHA512 1051f0a91813ccb3c396c78a059b99839b3352e562372bcc459dfaf289e35ea08bdba8a159032a3df46913548fc717968c187b8c480187497a5b5f7327ca470e

diff --git a/dev-db/pgrouting/pgrouting-3.1.3.ebuild b/dev-db/pgrouting/pgrouting-3.1.3.ebuild
new file mode 100644
index 00000000000..97f11ea503c
--- /dev/null
+++ b/dev-db/pgrouting/pgrouting-3.1.3.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_BUILD_TYPE="Release"
+
+POSTGRES_COMPAT=( 9.{5..6} {10..13} )
+POSTGRES_USEDEP="server"
+
+inherit cmake postgres-multi
+
+DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
+HOMEPAGE="https://pgrouting.org/"
+LICENSE="GPL-2 MIT Boost-1.0"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE=""
+
+RDEPEND="${POSTGRES_DEP}
+	>=dev-db/postgis-2.0
+	dev-libs/boost
+	sci-mathematics/cgal
+"
+
+DEPEND="${RDEPEND}"
+# Needs a running psql instance, doesn't work out of the box
+RESTRICT="test"
+
+src_prepare() {
+	cmake_src_prepare
+	postgres-multi_src_prepare
+}
+
+my_src_configure() {
+	local mycmakeargs=( -DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)" )
+	cmake_src_configure
+}
+
+src_configure() {
+	postgres-multi_foreach my_src_configure
+}
+
+src_compile() {
+	postgres-multi_foreach cmake_build
+}
+
+src_install() {
+	postgres-multi_foreach cmake_src_install
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2021-08-22 21:53 David Seifert
  0 siblings, 0 replies; 27+ messages in thread
From: David Seifert @ 2021-08-22 21:53 UTC (permalink / raw
  To: gentoo-commits

commit:     c4f2c9058b76eec4e8bfe5efb8ab6e2b20a31d5b
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sun Aug 22 21:53:33 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Aug 22 21:53:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4f2c905

dev-db/pgrouting: Remove postgres9_5

Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-db/pgrouting/pgrouting-3.1.1.ebuild | 2 +-
 dev-db/pgrouting/pgrouting-3.1.2.ebuild | 2 +-
 dev-db/pgrouting/pgrouting-3.1.3.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-db/pgrouting/pgrouting-3.1.1.ebuild b/dev-db/pgrouting/pgrouting-3.1.1.ebuild
index 0c0d27fd571..9976eb3b045 100644
--- a/dev-db/pgrouting/pgrouting-3.1.1.ebuild
+++ b/dev-db/pgrouting/pgrouting-3.1.1.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 CMAKE_BUILD_TYPE="Release"
 #CMAKE_MAKEFILE_GENERATOR=emake
 
-POSTGRES_COMPAT=( 9.{5..6} {10..13} )
+POSTGRES_COMPAT=( 9.6 {10..13} )
 POSTGRES_USEDEP="server"
 
 inherit cmake postgres-multi

diff --git a/dev-db/pgrouting/pgrouting-3.1.2.ebuild b/dev-db/pgrouting/pgrouting-3.1.2.ebuild
index addf00e4158..3dbd84c3337 100644
--- a/dev-db/pgrouting/pgrouting-3.1.2.ebuild
+++ b/dev-db/pgrouting/pgrouting-3.1.2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 CMAKE_BUILD_TYPE="Release"
 
-POSTGRES_COMPAT=( 9.{5..6} {10..13} )
+POSTGRES_COMPAT=( 9.6 {10..13} )
 POSTGRES_USEDEP="server"
 
 inherit cmake postgres-multi

diff --git a/dev-db/pgrouting/pgrouting-3.1.3.ebuild b/dev-db/pgrouting/pgrouting-3.1.3.ebuild
index 97f11ea503c..fbeb110ffd1 100644
--- a/dev-db/pgrouting/pgrouting-3.1.3.ebuild
+++ b/dev-db/pgrouting/pgrouting-3.1.3.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 CMAKE_BUILD_TYPE="Release"
 
-POSTGRES_COMPAT=( 9.{5..6} {10..13} )
+POSTGRES_COMPAT=( 9.6 {10..13} )
 POSTGRES_USEDEP="server"
 
 inherit cmake postgres-multi


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2021-09-30 19:02 罗百科
  0 siblings, 0 replies; 27+ messages in thread
From: 罗百科 @ 2021-09-30 19:02 UTC (permalink / raw
  To: gentoo-commits

commit:     fd8ac3f9f7aed7cc9a1241435a75bf4dd3bbb2a9
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 30 19:02:33 2021 +0000
Commit:     罗百科 <patrick <AT> gentoo <DOT> org>
CommitDate: Thu Sep 30 19:02:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd8ac3f9

dev-db/pgrouting: Bump to 3.2.1

Also support postgres-14

Package-Manager: Portage-3.0.26, Repoman-3.0.3
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>

 dev-db/pgrouting/Manifest               |  1 +
 dev-db/pgrouting/pgrouting-3.2.1.ebuild | 52 +++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index ef329624523..c87ff7d72cf 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1,3 +1,4 @@
 DIST pgrouting-3.1.1.tar.gz 6133979 BLAKE2B b7657eeb88773773e6166190cda73d9e657774ff81ce7e9f005333a8dcb9d56587d4a793410356092bb1623ec287549dbc60d814b1d5156ff28301503acee776 SHA512 73285d2d47be844203df136b8a8c13d1672ad8c2dac44a1ff7ce16e4676043692a8f2a60a305542132891da83560c49c5eaeb7712e3e3dd250cd8fd550260d4a
 DIST pgrouting-3.1.2.tar.gz 6063893 BLAKE2B a371fb9c744b14072c65af5ceb1ea73d2cdb69821626be3ac79e08c9dee854272ce8cb3816d1de3eade06d50a7520846dd6bccda06934b9db926f9092719f131 SHA512 3cf3e0a4a726f6f11887d15ad71b789a9067f3bc5a675288f22730215aa12d12b94d75f9bdc8ab3077de8368c45c55c0dc27128d0453c4c30965bfc0cf118dcd
 DIST pgrouting-3.1.3.tar.gz 6057504 BLAKE2B 73bc5d810a2f7bb383ba4fef4ffa52ccb3f21dbc00c68f02665dc459c0e0a2810e0ed10ab73bb3099be5ea6dde86bad884d82039a50c9c4eb423b614845e94b6 SHA512 1051f0a91813ccb3c396c78a059b99839b3352e562372bcc459dfaf289e35ea08bdba8a159032a3df46913548fc717968c187b8c480187497a5b5f7327ca470e
+DIST pgrouting-3.2.1.tar.gz 5940439 BLAKE2B 01f4ec19d4cee9165a5aca946935cf4786a42f943602eca99414b536dec11ffe298f960e11aaa8b747c1b9c1839625ac9d3e7f67f1f606e941c9c738b4970479 SHA512 ead51de138950707008a7ea6b1a18cfe4d8b1885bfe92849464c2714e39f8e43ef3dbebd1c68279987a1321705fe33a598efb463078491d52cb90a8d1a0414c7

diff --git a/dev-db/pgrouting/pgrouting-3.2.1.ebuild b/dev-db/pgrouting/pgrouting-3.2.1.ebuild
new file mode 100644
index 00000000000..b7b14cb3151
--- /dev/null
+++ b/dev-db/pgrouting/pgrouting-3.2.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_BUILD_TYPE="Release"
+
+POSTGRES_COMPAT=( 9.6 {10..14} )
+POSTGRES_USEDEP="server"
+
+inherit cmake postgres-multi
+
+DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality."
+HOMEPAGE="https://pgrouting.org/"
+LICENSE="GPL-2 MIT Boost-1.0"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE=""
+
+RDEPEND="${POSTGRES_DEP}
+	>=dev-db/postgis-2.0
+	dev-libs/boost
+	sci-mathematics/cgal
+"
+
+DEPEND="${RDEPEND}"
+# Needs a running psql instance, doesn't work out of the box
+RESTRICT="test"
+
+src_prepare() {
+	cmake_src_prepare
+	postgres-multi_src_prepare
+}
+
+my_src_configure() {
+	local mycmakeargs=( -DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)" )
+	cmake_src_configure
+}
+
+src_configure() {
+	postgres-multi_foreach my_src_configure
+}
+
+src_compile() {
+	postgres-multi_foreach cmake_build
+}
+
+src_install() {
+	postgres-multi_foreach cmake_src_install
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2023-02-07 16:54 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2023-02-07 16:54 UTC (permalink / raw
  To: gentoo-commits

commit:     217848301b6213df581b844d49030812996cc78b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  7 16:54:02 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb  7 16:54:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21784830

dev-db/pgrouting: Stabilize 3.2.1 x86, #892439

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-db/pgrouting/pgrouting-3.2.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/pgrouting/pgrouting-3.2.1.ebuild b/dev-db/pgrouting/pgrouting-3.2.1.ebuild
index 8af2d50b21c9..26a6c63163f2 100644
--- a/dev-db/pgrouting/pgrouting-3.2.1.ebuild
+++ b/dev-db/pgrouting/pgrouting-3.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,7 +15,7 @@ HOMEPAGE="https://pgrouting.org/"
 LICENSE="GPL-2 MIT Boost-1.0"
 
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 IUSE=""
 


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2023-02-07 16:54 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2023-02-07 16:54 UTC (permalink / raw
  To: gentoo-commits

commit:     62bd4f515fa86c42dbacc2a48dbf4668802ceeb8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  7 16:54:03 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb  7 16:54:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62bd4f51

dev-db/pgrouting: Stabilize 3.2.1 amd64, #892439

Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-db/pgrouting/pgrouting-3.2.1.ebuild b/dev-db/pgrouting/pgrouting-3.2.1.ebuild
index 26a6c63163f2..60913caa8328 100644
--- a/dev-db/pgrouting/pgrouting-3.2.1.ebuild
+++ b/dev-db/pgrouting/pgrouting-3.2.1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://pgrouting.org/"
 LICENSE="GPL-2 MIT Boost-1.0"
 
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 IUSE=""
 


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2023-06-10 19:25 Andreas Sturmlechner
  0 siblings, 0 replies; 27+ messages in thread
From: Andreas Sturmlechner @ 2023-06-10 19:25 UTC (permalink / raw
  To: gentoo-commits

commit:     5950170e6073e82f5221338280f40315b37e86eb
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun May 28 19:20:47 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Jun 10 19:25:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5950170e

dev-db/pgrouting: drop 3.1.1, 3.1.2, 3.1.3

Bug: https://bugs.gentoo.org/892439
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-db/pgrouting/Manifest               |  3 --
 dev-db/pgrouting/pgrouting-3.1.1.ebuild | 56 ---------------------------------
 dev-db/pgrouting/pgrouting-3.1.2.ebuild | 52 ------------------------------
 dev-db/pgrouting/pgrouting-3.1.3.ebuild | 52 ------------------------------
 4 files changed, 163 deletions(-)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index c87ff7d72cf0..1126881dcb86 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1,4 +1 @@
-DIST pgrouting-3.1.1.tar.gz 6133979 BLAKE2B b7657eeb88773773e6166190cda73d9e657774ff81ce7e9f005333a8dcb9d56587d4a793410356092bb1623ec287549dbc60d814b1d5156ff28301503acee776 SHA512 73285d2d47be844203df136b8a8c13d1672ad8c2dac44a1ff7ce16e4676043692a8f2a60a305542132891da83560c49c5eaeb7712e3e3dd250cd8fd550260d4a
-DIST pgrouting-3.1.2.tar.gz 6063893 BLAKE2B a371fb9c744b14072c65af5ceb1ea73d2cdb69821626be3ac79e08c9dee854272ce8cb3816d1de3eade06d50a7520846dd6bccda06934b9db926f9092719f131 SHA512 3cf3e0a4a726f6f11887d15ad71b789a9067f3bc5a675288f22730215aa12d12b94d75f9bdc8ab3077de8368c45c55c0dc27128d0453c4c30965bfc0cf118dcd
-DIST pgrouting-3.1.3.tar.gz 6057504 BLAKE2B 73bc5d810a2f7bb383ba4fef4ffa52ccb3f21dbc00c68f02665dc459c0e0a2810e0ed10ab73bb3099be5ea6dde86bad884d82039a50c9c4eb423b614845e94b6 SHA512 1051f0a91813ccb3c396c78a059b99839b3352e562372bcc459dfaf289e35ea08bdba8a159032a3df46913548fc717968c187b8c480187497a5b5f7327ca470e
 DIST pgrouting-3.2.1.tar.gz 5940439 BLAKE2B 01f4ec19d4cee9165a5aca946935cf4786a42f943602eca99414b536dec11ffe298f960e11aaa8b747c1b9c1839625ac9d3e7f67f1f606e941c9c738b4970479 SHA512 ead51de138950707008a7ea6b1a18cfe4d8b1885bfe92849464c2714e39f8e43ef3dbebd1c68279987a1321705fe33a598efb463078491d52cb90a8d1a0414c7

diff --git a/dev-db/pgrouting/pgrouting-3.1.1.ebuild b/dev-db/pgrouting/pgrouting-3.1.1.ebuild
deleted file mode 100644
index 902b7ecd655d..000000000000
--- a/dev-db/pgrouting/pgrouting-3.1.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_BUILD_TYPE="Release"
-#CMAKE_MAKEFILE_GENERATOR=emake
-
-POSTGRES_COMPAT=( 9.6 {10..13} )
-POSTGRES_USEDEP="server"
-
-inherit cmake postgres-multi
-
-DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality"
-HOMEPAGE="https://pgrouting.org/"
-LICENSE="GPL-2 MIT Boost-1.0"
-
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-IUSE=""
-
-RDEPEND="${POSTGRES_DEP}
-	>=dev-db/postgis-2.0
-	dev-libs/boost
-	sci-mathematics/cgal
-"
-DEPEND="${RDEPEND}"
-
-# Needs a running psql instance, doesn't work out of the box
-RESTRICT="test"
-
-src_prepare() {
-	cmake_src_prepare
-	postgres-multi_src_prepare
-}
-
-my_src_configure() {
-	local mycmakeargs=(
-		-DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)"
-	)
-
-	cmake_src_configure
-}
-
-src_configure() {
-	postgres-multi_foreach my_src_configure
-}
-
-src_compile() {
-	postgres-multi_foreach cmake_build
-}
-
-src_install() {
-	postgres-multi_foreach cmake_src_install
-}

diff --git a/dev-db/pgrouting/pgrouting-3.1.2.ebuild b/dev-db/pgrouting/pgrouting-3.1.2.ebuild
deleted file mode 100644
index 8d33c952b0d9..000000000000
--- a/dev-db/pgrouting/pgrouting-3.1.2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_BUILD_TYPE="Release"
-
-POSTGRES_COMPAT=( 9.6 {10..13} )
-POSTGRES_USEDEP="server"
-
-inherit cmake postgres-multi
-
-DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality"
-HOMEPAGE="https://pgrouting.org/"
-LICENSE="GPL-2 MIT Boost-1.0"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-IUSE=""
-
-RDEPEND="${POSTGRES_DEP}
-	>=dev-db/postgis-2.0
-	dev-libs/boost
-	sci-mathematics/cgal
-"
-DEPEND="${RDEPEND}"
-
-# Needs a running psql instance, doesn't work out of the box
-RESTRICT="test"
-
-src_prepare() {
-	cmake_src_prepare
-	postgres-multi_src_prepare
-}
-
-my_src_configure() {
-	local mycmakeargs=( -DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)" )
-	cmake_src_configure
-}
-
-src_configure() {
-	postgres-multi_foreach my_src_configure
-}
-
-src_compile() {
-	postgres-multi_foreach cmake_build
-}
-
-src_install() {
-	postgres-multi_foreach cmake_src_install
-}

diff --git a/dev-db/pgrouting/pgrouting-3.1.3.ebuild b/dev-db/pgrouting/pgrouting-3.1.3.ebuild
deleted file mode 100644
index e9e3411c48f7..000000000000
--- a/dev-db/pgrouting/pgrouting-3.1.3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_BUILD_TYPE="Release"
-
-POSTGRES_COMPAT=( 9.6 {10..13} )
-POSTGRES_USEDEP="server"
-
-inherit cmake postgres-multi
-
-DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality"
-HOMEPAGE="https://pgrouting.org/"
-LICENSE="GPL-2 MIT Boost-1.0"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-IUSE=""
-
-RDEPEND="${POSTGRES_DEP}
-	>=dev-db/postgis-2.0
-	dev-libs/boost
-	sci-mathematics/cgal
-"
-
-DEPEND="${RDEPEND}"
-# Needs a running psql instance, doesn't work out of the box
-RESTRICT="test"
-
-src_prepare() {
-	cmake_src_prepare
-	postgres-multi_src_prepare
-}
-
-my_src_configure() {
-	local mycmakeargs=( -DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)" )
-	cmake_src_configure
-}
-
-src_configure() {
-	postgres-multi_foreach my_src_configure
-}
-
-src_compile() {
-	postgres-multi_foreach cmake_build
-}
-
-src_install() {
-	postgres-multi_foreach cmake_src_install
-}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2023-11-17  9:25 罗百科
  0 siblings, 0 replies; 27+ messages in thread
From: 罗百科 @ 2023-11-17  9:25 UTC (permalink / raw
  To: gentoo-commits

commit:     ea3c10447c351c6b3ed8b9d7e436f32fcb5f09b0
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 17 09:24:51 2023 +0000
Commit:     罗百科 <patrick <AT> gentoo <DOT> org>
CommitDate: Fri Nov 17 09:25:04 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea3c1044

dev-db/pgrouting: add 3.5.1

Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>

 dev-db/pgrouting/Manifest               |  1 +
 dev-db/pgrouting/pgrouting-3.5.1.ebuild | 52 +++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index 1126881dcb86..6b9919c41871 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1 +1,2 @@
 DIST pgrouting-3.2.1.tar.gz 5940439 BLAKE2B 01f4ec19d4cee9165a5aca946935cf4786a42f943602eca99414b536dec11ffe298f960e11aaa8b747c1b9c1839625ac9d3e7f67f1f606e941c9c738b4970479 SHA512 ead51de138950707008a7ea6b1a18cfe4d8b1885bfe92849464c2714e39f8e43ef3dbebd1c68279987a1321705fe33a598efb463078491d52cb90a8d1a0414c7
+DIST pgrouting-3.5.1.tar.gz 3613985 BLAKE2B a0af5d730673b8a9555891998f0c2cf7ff429d48efc5170aa59ae05518deb6be6b898d52f4c9bf6cd24422922a9c27329cead3281db8df7d7c6b679cec7484f2 SHA512 d29871fc55f8bfa1795816c34483dd8b6a02d24f91b111b5848be8cccc4f04916dc76b99c4bb68ccfcb9c0a745e646ec51e0144a3e09c7fb2d16caabb7a62c40

diff --git a/dev-db/pgrouting/pgrouting-3.5.1.ebuild b/dev-db/pgrouting/pgrouting-3.5.1.ebuild
new file mode 100644
index 000000000000..dfac3a1976d6
--- /dev/null
+++ b/dev-db/pgrouting/pgrouting-3.5.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_BUILD_TYPE="Release"
+
+POSTGRES_COMPAT=( {11..16} )
+POSTGRES_USEDEP="server"
+
+inherit cmake postgres-multi
+
+DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality"
+HOMEPAGE="https://pgrouting.org/"
+LICENSE="GPL-2 MIT Boost-1.0"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE=""
+
+RDEPEND="${POSTGRES_DEP}
+	>=dev-db/postgis-2.0
+	dev-libs/boost
+	sci-mathematics/cgal
+"
+
+DEPEND="${RDEPEND}"
+# Needs a running psql instance, doesn't work out of the box
+RESTRICT="test"
+
+src_prepare() {
+	cmake_src_prepare
+	postgres-multi_src_prepare
+}
+
+my_src_configure() {
+	local mycmakeargs=( -DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)" )
+	cmake_src_configure
+}
+
+src_configure() {
+	postgres-multi_foreach my_src_configure
+}
+
+src_compile() {
+	postgres-multi_foreach cmake_build
+}
+
+src_install() {
+	postgres-multi_foreach cmake_src_install
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2023-12-22 15:07 罗百科
  0 siblings, 0 replies; 27+ messages in thread
From: 罗百科 @ 2023-12-22 15:07 UTC (permalink / raw
  To: gentoo-commits

commit:     f1a8d19bfc17d494c53d5390b3f06e50101ab920
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 22 15:06:21 2023 +0000
Commit:     罗百科 <patrick <AT> gentoo <DOT> org>
CommitDate: Fri Dec 22 15:06:57 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1a8d19b

dev-db/pgrouting: add 3.6.1

Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>

 dev-db/pgrouting/Manifest               |  1 +
 dev-db/pgrouting/pgrouting-3.6.1.ebuild | 52 +++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index 6b9919c41871..d87d06d9d225 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1,2 +1,3 @@
 DIST pgrouting-3.2.1.tar.gz 5940439 BLAKE2B 01f4ec19d4cee9165a5aca946935cf4786a42f943602eca99414b536dec11ffe298f960e11aaa8b747c1b9c1839625ac9d3e7f67f1f606e941c9c738b4970479 SHA512 ead51de138950707008a7ea6b1a18cfe4d8b1885bfe92849464c2714e39f8e43ef3dbebd1c68279987a1321705fe33a598efb463078491d52cb90a8d1a0414c7
 DIST pgrouting-3.5.1.tar.gz 3613985 BLAKE2B a0af5d730673b8a9555891998f0c2cf7ff429d48efc5170aa59ae05518deb6be6b898d52f4c9bf6cd24422922a9c27329cead3281db8df7d7c6b679cec7484f2 SHA512 d29871fc55f8bfa1795816c34483dd8b6a02d24f91b111b5848be8cccc4f04916dc76b99c4bb68ccfcb9c0a745e646ec51e0144a3e09c7fb2d16caabb7a62c40
+DIST pgrouting-3.6.1.tar.gz 3871417 BLAKE2B 43295bdb949daf736ba04ca0e89f0374ecbb87859ce49f8436f97bac0491aa69fe118426ddfed939163a975299d085187d51bd233051bf79f97bc4500149fdf4 SHA512 278d6d89ea49e9a38c6ae8c52936e52ae5a3508e9d8693182efdc15649b44be7208affea236046bbb67ff373831a82e2985087f890b0faa4c96be4fa6c3e07cf

diff --git a/dev-db/pgrouting/pgrouting-3.6.1.ebuild b/dev-db/pgrouting/pgrouting-3.6.1.ebuild
new file mode 100644
index 000000000000..dfac3a1976d6
--- /dev/null
+++ b/dev-db/pgrouting/pgrouting-3.6.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_BUILD_TYPE="Release"
+
+POSTGRES_COMPAT=( {11..16} )
+POSTGRES_USEDEP="server"
+
+inherit cmake postgres-multi
+
+DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality"
+HOMEPAGE="https://pgrouting.org/"
+LICENSE="GPL-2 MIT Boost-1.0"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE=""
+
+RDEPEND="${POSTGRES_DEP}
+	>=dev-db/postgis-2.0
+	dev-libs/boost
+	sci-mathematics/cgal
+"
+
+DEPEND="${RDEPEND}"
+# Needs a running psql instance, doesn't work out of the box
+RESTRICT="test"
+
+src_prepare() {
+	cmake_src_prepare
+	postgres-multi_src_prepare
+}
+
+my_src_configure() {
+	local mycmakeargs=( -DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)" )
+	cmake_src_configure
+}
+
+src_configure() {
+	postgres-multi_foreach my_src_configure
+}
+
+src_compile() {
+	postgres-multi_foreach cmake_build
+}
+
+src_install() {
+	postgres-multi_foreach cmake_src_install
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2024-03-16 17:34 Arthur Zamarin
  0 siblings, 0 replies; 27+ messages in thread
From: Arthur Zamarin @ 2024-03-16 17:34 UTC (permalink / raw
  To: gentoo-commits

commit:     139503880ee8065d441e8b93e2ba8d5921d09821
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 16 17:34:18 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 17:34:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13950388

dev-db/pgrouting: Stabilize 3.6.1 amd64, #926346

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-db/pgrouting/pgrouting-3.6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/pgrouting/pgrouting-3.6.1.ebuild b/dev-db/pgrouting/pgrouting-3.6.1.ebuild
index dfac3a1976d6..9c53fe72688e 100644
--- a/dev-db/pgrouting/pgrouting-3.6.1.ebuild
+++ b/dev-db/pgrouting/pgrouting-3.6.1.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=7
@@ -15,7 +15,7 @@ HOMEPAGE="https://pgrouting.org/"
 LICENSE="GPL-2 MIT Boost-1.0"
 
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 IUSE=""
 


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2024-06-13  8:28 Patrick Lauer
  0 siblings, 0 replies; 27+ messages in thread
From: Patrick Lauer @ 2024-06-13  8:28 UTC (permalink / raw
  To: gentoo-commits

commit:     c61e59ba9a678e3a74136f3ec28273d82d029cfd
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 13 08:28:18 2024 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Thu Jun 13 08:28:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c61e59ba

dev-db/pgrouting: add 3.6.2

Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>

 dev-db/pgrouting/Manifest               |  1 +
 dev-db/pgrouting/pgrouting-3.6.2.ebuild | 52 +++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index d87d06d9d225..71de5ad10bf9 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1,3 +1,4 @@
 DIST pgrouting-3.2.1.tar.gz 5940439 BLAKE2B 01f4ec19d4cee9165a5aca946935cf4786a42f943602eca99414b536dec11ffe298f960e11aaa8b747c1b9c1839625ac9d3e7f67f1f606e941c9c738b4970479 SHA512 ead51de138950707008a7ea6b1a18cfe4d8b1885bfe92849464c2714e39f8e43ef3dbebd1c68279987a1321705fe33a598efb463078491d52cb90a8d1a0414c7
 DIST pgrouting-3.5.1.tar.gz 3613985 BLAKE2B a0af5d730673b8a9555891998f0c2cf7ff429d48efc5170aa59ae05518deb6be6b898d52f4c9bf6cd24422922a9c27329cead3281db8df7d7c6b679cec7484f2 SHA512 d29871fc55f8bfa1795816c34483dd8b6a02d24f91b111b5848be8cccc4f04916dc76b99c4bb68ccfcb9c0a745e646ec51e0144a3e09c7fb2d16caabb7a62c40
 DIST pgrouting-3.6.1.tar.gz 3871417 BLAKE2B 43295bdb949daf736ba04ca0e89f0374ecbb87859ce49f8436f97bac0491aa69fe118426ddfed939163a975299d085187d51bd233051bf79f97bc4500149fdf4 SHA512 278d6d89ea49e9a38c6ae8c52936e52ae5a3508e9d8693182efdc15649b44be7208affea236046bbb67ff373831a82e2985087f890b0faa4c96be4fa6c3e07cf
+DIST pgrouting-3.6.2.tar.gz 3873384 BLAKE2B 118d57018d344055e3a7d7daef07f0f8916918b907d7d7dd5d63e22c8df0315089ab6b52f6a70b5dea4390e9f432cec602c798f46557bac2aa69f69e4d5b8555 SHA512 9fe5649d022bc1330d9f70e42a69de45eaed9fce070f58594996516f295a7bc15c099b2c3ee1c25ee4b4f0d839de4c0cc74174972e7f7f0dc5fa4be395d58dd3

diff --git a/dev-db/pgrouting/pgrouting-3.6.2.ebuild b/dev-db/pgrouting/pgrouting-3.6.2.ebuild
new file mode 100644
index 000000000000..1638d6e53236
--- /dev/null
+++ b/dev-db/pgrouting/pgrouting-3.6.2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CMAKE_BUILD_TYPE="Release"
+
+POSTGRES_COMPAT=( {12..16} )
+POSTGRES_USEDEP="server"
+
+inherit cmake postgres-multi
+
+DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality"
+HOMEPAGE="https://pgrouting.org/"
+LICENSE="GPL-2 MIT Boost-1.0"
+
+SLOT="0"
+KEYWORDS="amd64 ~x86"
+SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+IUSE=""
+
+RDEPEND="${POSTGRES_DEP}
+	>=dev-db/postgis-2.0
+	dev-libs/boost
+	sci-mathematics/cgal
+"
+
+DEPEND="${RDEPEND}"
+# Needs a running psql instance, doesn't work out of the box
+RESTRICT="test"
+
+src_prepare() {
+	cmake_src_prepare
+	postgres-multi_src_prepare
+}
+
+my_src_configure() {
+	local mycmakeargs=( -DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)" )
+	cmake_src_configure
+}
+
+src_configure() {
+	postgres-multi_foreach my_src_configure
+}
+
+src_compile() {
+	postgres-multi_foreach cmake_build
+}
+
+src_install() {
+	postgres-multi_foreach cmake_src_install
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/
@ 2024-08-06 22:10 Andreas Sturmlechner
  0 siblings, 0 replies; 27+ messages in thread
From: Andreas Sturmlechner @ 2024-08-06 22:10 UTC (permalink / raw
  To: gentoo-commits

commit:     5e617a9b804cbfb341bab201a1a2b432803c39e0
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 22 10:10:43 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Aug  6 20:34:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e617a9b

dev-db/pgrouting: drop 3.2.1, 3.5.1, 3.6.1

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-db/pgrouting/Manifest               |  3 --
 dev-db/pgrouting/pgrouting-3.2.1.ebuild | 52 ---------------------------------
 dev-db/pgrouting/pgrouting-3.5.1.ebuild | 52 ---------------------------------
 dev-db/pgrouting/pgrouting-3.6.1.ebuild | 52 ---------------------------------
 4 files changed, 159 deletions(-)

diff --git a/dev-db/pgrouting/Manifest b/dev-db/pgrouting/Manifest
index 71de5ad10bf9..98c821f06315 100644
--- a/dev-db/pgrouting/Manifest
+++ b/dev-db/pgrouting/Manifest
@@ -1,4 +1 @@
-DIST pgrouting-3.2.1.tar.gz 5940439 BLAKE2B 01f4ec19d4cee9165a5aca946935cf4786a42f943602eca99414b536dec11ffe298f960e11aaa8b747c1b9c1839625ac9d3e7f67f1f606e941c9c738b4970479 SHA512 ead51de138950707008a7ea6b1a18cfe4d8b1885bfe92849464c2714e39f8e43ef3dbebd1c68279987a1321705fe33a598efb463078491d52cb90a8d1a0414c7
-DIST pgrouting-3.5.1.tar.gz 3613985 BLAKE2B a0af5d730673b8a9555891998f0c2cf7ff429d48efc5170aa59ae05518deb6be6b898d52f4c9bf6cd24422922a9c27329cead3281db8df7d7c6b679cec7484f2 SHA512 d29871fc55f8bfa1795816c34483dd8b6a02d24f91b111b5848be8cccc4f04916dc76b99c4bb68ccfcb9c0a745e646ec51e0144a3e09c7fb2d16caabb7a62c40
-DIST pgrouting-3.6.1.tar.gz 3871417 BLAKE2B 43295bdb949daf736ba04ca0e89f0374ecbb87859ce49f8436f97bac0491aa69fe118426ddfed939163a975299d085187d51bd233051bf79f97bc4500149fdf4 SHA512 278d6d89ea49e9a38c6ae8c52936e52ae5a3508e9d8693182efdc15649b44be7208affea236046bbb67ff373831a82e2985087f890b0faa4c96be4fa6c3e07cf
 DIST pgrouting-3.6.2.tar.gz 3873384 BLAKE2B 118d57018d344055e3a7d7daef07f0f8916918b907d7d7dd5d63e22c8df0315089ab6b52f6a70b5dea4390e9f432cec602c798f46557bac2aa69f69e4d5b8555 SHA512 9fe5649d022bc1330d9f70e42a69de45eaed9fce070f58594996516f295a7bc15c099b2c3ee1c25ee4b4f0d839de4c0cc74174972e7f7f0dc5fa4be395d58dd3

diff --git a/dev-db/pgrouting/pgrouting-3.2.1.ebuild b/dev-db/pgrouting/pgrouting-3.2.1.ebuild
deleted file mode 100644
index e4dd40f0bc6f..000000000000
--- a/dev-db/pgrouting/pgrouting-3.2.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_BUILD_TYPE="Release"
-
-POSTGRES_COMPAT=( 9.6 {10..14} )
-POSTGRES_USEDEP="server"
-
-inherit cmake postgres-multi
-
-DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality"
-HOMEPAGE="https://pgrouting.org/"
-LICENSE="GPL-2 MIT Boost-1.0"
-
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-IUSE=""
-
-RDEPEND="${POSTGRES_DEP}
-	>=dev-db/postgis-2.0
-	dev-libs/boost
-	sci-mathematics/cgal
-"
-
-DEPEND="${RDEPEND}"
-# Needs a running psql instance, doesn't work out of the box
-RESTRICT="test"
-
-src_prepare() {
-	cmake_src_prepare
-	postgres-multi_src_prepare
-}
-
-my_src_configure() {
-	local mycmakeargs=( -DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)" )
-	cmake_src_configure
-}
-
-src_configure() {
-	postgres-multi_foreach my_src_configure
-}
-
-src_compile() {
-	postgres-multi_foreach cmake_build
-}
-
-src_install() {
-	postgres-multi_foreach cmake_src_install
-}

diff --git a/dev-db/pgrouting/pgrouting-3.5.1.ebuild b/dev-db/pgrouting/pgrouting-3.5.1.ebuild
deleted file mode 100644
index dfac3a1976d6..000000000000
--- a/dev-db/pgrouting/pgrouting-3.5.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_BUILD_TYPE="Release"
-
-POSTGRES_COMPAT=( {11..16} )
-POSTGRES_USEDEP="server"
-
-inherit cmake postgres-multi
-
-DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality"
-HOMEPAGE="https://pgrouting.org/"
-LICENSE="GPL-2 MIT Boost-1.0"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-IUSE=""
-
-RDEPEND="${POSTGRES_DEP}
-	>=dev-db/postgis-2.0
-	dev-libs/boost
-	sci-mathematics/cgal
-"
-
-DEPEND="${RDEPEND}"
-# Needs a running psql instance, doesn't work out of the box
-RESTRICT="test"
-
-src_prepare() {
-	cmake_src_prepare
-	postgres-multi_src_prepare
-}
-
-my_src_configure() {
-	local mycmakeargs=( -DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)" )
-	cmake_src_configure
-}
-
-src_configure() {
-	postgres-multi_foreach my_src_configure
-}
-
-src_compile() {
-	postgres-multi_foreach cmake_build
-}
-
-src_install() {
-	postgres-multi_foreach cmake_src_install
-}

diff --git a/dev-db/pgrouting/pgrouting-3.6.1.ebuild b/dev-db/pgrouting/pgrouting-3.6.1.ebuild
deleted file mode 100644
index 9c53fe72688e..000000000000
--- a/dev-db/pgrouting/pgrouting-3.6.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_BUILD_TYPE="Release"
-
-POSTGRES_COMPAT=( {11..16} )
-POSTGRES_USEDEP="server"
-
-inherit cmake postgres-multi
-
-DESCRIPTION="pgRouting extends PostGIS and PostgreSQL with geospatial routing functionality"
-HOMEPAGE="https://pgrouting.org/"
-LICENSE="GPL-2 MIT Boost-1.0"
-
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-SRC_URI="https://github.com/pgRouting/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-IUSE=""
-
-RDEPEND="${POSTGRES_DEP}
-	>=dev-db/postgis-2.0
-	dev-libs/boost
-	sci-mathematics/cgal
-"
-
-DEPEND="${RDEPEND}"
-# Needs a running psql instance, doesn't work out of the box
-RESTRICT="test"
-
-src_prepare() {
-	cmake_src_prepare
-	postgres-multi_src_prepare
-}
-
-my_src_configure() {
-	local mycmakeargs=( -DPOSTGRESQL_BIN="$($PG_CONFIG --bindir)" )
-	cmake_src_configure
-}
-
-src_configure() {
-	postgres-multi_foreach my_src_configure
-}
-
-src_compile() {
-	postgres-multi_foreach cmake_build
-}
-
-src_install() {
-	postgres-multi_foreach cmake_src_install
-}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2024-08-06 22:10 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-21  7:40 [gentoo-commits] repo/gentoo:master commit in: dev-db/pgrouting/ Agostino Sarubbo
  -- strict thread matches above, loose matches on Subject: below --
2024-08-06 22:10 Andreas Sturmlechner
2024-06-13  8:28 Patrick Lauer
2024-03-16 17:34 Arthur Zamarin
2023-12-22 15:07 罗百科
2023-11-17  9:25 罗百科
2023-06-10 19:25 Andreas Sturmlechner
2023-02-07 16:54 Sam James
2023-02-07 16:54 Sam James
2021-09-30 19:02 罗百科
2021-08-22 21:53 David Seifert
2021-02-11 13:15 Aaron W. Swenson
2021-02-10 22:32 Aaron W. Swenson
2021-01-24 12:10 Agostino Sarubbo
2020-12-21 10:37 Aaron W. Swenson
2020-11-26  2:40 Aaron W. Swenson
2020-11-26  2:40 Aaron W. Swenson
2020-08-14  0:49 Aaron W. Swenson
2019-10-02 23:51 Aaron W. Swenson
2019-10-02 18:53 Agostino Sarubbo
2019-10-01 10:00 Agostino Sarubbo
2019-08-17 11:17 Aaron W. Swenson
2019-06-21 10:08 Aaron W. Swenson
2018-06-07 19:22 Aaron Bauman
2018-02-28 13:11 Aaron Swenson
2017-09-24 17:18 Patrick Lauer
2016-12-23 10:11 Johannes Huber

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox