[Git][debian-gis-team/pgrouting][master] 5 commits: New upstream version 3.7.3
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Tue Feb 11 04:42:27 GMT 2025
Bas Couwenberg pushed to branch master at Debian GIS Project / pgrouting
Commits:
849f2f6d by Bas Couwenberg at 2025-02-11T05:32:11+01:00
New upstream version 3.7.3
- - - - -
98208a1f by Bas Couwenberg at 2025-02-11T05:32:22+01:00
Update upstream source from tag 'upstream/3.7.3'
Update to upstream version '3.7.3'
with Debian dir 86f9766d1568278f165337d5def5daf8237cecef
- - - - -
f7b8b0e1 by Bas Couwenberg at 2025-02-11T05:33:20+01:00
New upstream release.
- - - - -
c649b023 by Bas Couwenberg at 2025-02-11T05:34:16+01:00
Drop 2728.patch, applied upstream.
- - - - -
509c6c9a by Bas Couwenberg at 2025-02-11T05:34:52+01:00
Set distribution to unstable.
- - - - -
11 changed files:
- .github/workflows/boost_version.yml
- .github/workflows/update.yml
- CMakeLists.txt
- NEWS.md
- debian/changelog
- − debian/patches/2728.patch
- debian/patches/series
- doc/src/release_notes.rst
- docqueries/version/full_version.result
- docqueries/version/version.result
- tools/testers/pg_prove_tests.sh
Changes:
=====================================
.github/workflows/boost_version.yml
=====================================
@@ -131,5 +131,5 @@ jobs:
sudo service postgresql start
psql -c "CREATE DATABASE ___pgr___test___;"
DIR=$(git rev-parse --show-toplevel)
- bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "3.7.2"
+ bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "3.7.3"
pg_prove -Q -f --normalize --directives --recurse -U "${PG_RUNNER_USER}" -d ___pgr___test___ "pgtap"
=====================================
.github/workflows/update.yml
=====================================
@@ -29,7 +29,7 @@ jobs:
fail-fast: false
matrix:
boost_minor: [56]
- old_pgr: [3.7.1, 3.7.0, 3.6.3, 3.6.2, 3.6.1, 3.6.0, 3.5.1, 3.5.0, 3.4.2, 3.4.1, 3.4.0, 3.3.5, 3.3.4, 3.3.3, 3.3.2, 3.3.1, 3.3.0, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.6, 3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.2.0, 3.2.1, 3.2.2]
+ old_pgr: [3.7.2, 3.7.1, 3.7.0, 3.6.3, 3.6.2, 3.6.1, 3.6.0, 3.5.1, 3.5.0, 3.4.2, 3.4.1, 3.4.0, 3.3.5, 3.3.4, 3.3.3, 3.3.2, 3.3.1, 3.3.0, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.6, 3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.2.0, 3.2.1, 3.2.2]
steps:
- uses: actions/checkout at v4
@@ -126,6 +126,6 @@ jobs:
run: |
sudo service postgresql start
psql -p "${PGPORT}" -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
- psql -p "${PGPORT}" -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE TO '3.7.2';"
+ psql -p "${PGPORT}" -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE TO '3.7.3';"
psql -p "${PGPORT}" -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
pg_prove -Q -f --normalize --directives --recurse -U "${PG_RUNNER_USER}" -d ___pgr___test___ "pgtap"
=====================================
CMakeLists.txt
=====================================
@@ -14,7 +14,9 @@ if(POLICY CMP0167)
cmake_policy(SET CMP0167 OLD)
endif()
-cmake_policy(SET CMP0148 OLD)
+if(POLICY CMP0148)
+ cmake_policy(SET CMP0148 OLD)
+endif()
#---------------------------------------------
# Setting kind of build
@@ -28,7 +30,7 @@ include(pgr/BuildType)
#---------------------------------------------
#---------------------------------------------
-project(PGROUTING VERSION 3.7.2
+project(PGROUTING VERSION 3.7.3
LANGUAGES C CXX )
set(PROJECT_VERSION_DEV "")
string(TOLOWER "${PROJECT_NAME}" PROJECT_NAME_LOWER)
@@ -43,6 +45,7 @@ string(TIMESTAMP COMPILATION_DATE "%Y/%m/%d" UTC)
set(MINORS 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.6)
set(OLD_SIGNATURES
+ 3.7.2
3.7.1
3.7.0
3.6.3
=====================================
NEWS.md
=====================================
@@ -6,7 +6,13 @@
.. current
+### pgRouting 3.7.3 Release Notes
+To see all issues & pull requests closed by this release see the [Git closed
+milestone for 3.7.3
+](https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%203.7.3%22)
+
+* [#2731](https://github.com/pgRouting/pgrouting/pull/2731) Build Failure on Ubuntu 22
### pgRouting 3.7.2 Release Notes
=====================================
debian/changelog
=====================================
@@ -1,3 +1,11 @@
+pgrouting (3.7.3-1) unstable; urgency=medium
+
+ * Team upload.
+ * New upstream release.
+ * Drop 2728.patch, applied upstream.
+
+ -- Bas Couwenberg <sebastic at debian.org> Tue, 11 Feb 2025 05:34:42 +0100
+
pgrouting (3.7.2-2) unstable; urgency=medium
* Team upload.
=====================================
debian/patches/2728.patch deleted
=====================================
@@ -1,29 +0,0 @@
-Description: Fix building with pre-3.27 CMake
-Author: Christoph Berg <myon at debian.org>
-Forwarded: https://github.com/pgRouting/pgrouting/pull/2728
-
-From acd98947a52352981db2bc890e9f6ac925eaa83a Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= <lnicola at users.noreply.github.com>
-Date: Thu, 23 Jan 2025 16:59:38 +0200
-Subject: [PATCH] Make sure `CMP0148` exists
-
-Might help building on pre-3.27 CMake like in Debian 12.
----
- CMakeLists.txt | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 4963f56ae9..f199796f4b 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -14,7 +14,9 @@ if(POLICY CMP0167)
- cmake_policy(SET CMP0167 OLD)
- endif()
-
--cmake_policy(SET CMP0148 OLD)
-+if(POLICY CMP0148)
-+ cmake_policy(SET CMP0148 OLD)
-+endif()
-
- #---------------------------------------------
- # Setting kind of build
=====================================
debian/patches/series
=====================================
@@ -1,3 +1,2 @@
privacy-breach-uses-embedded-file.patch
extension-no-version
-2728.patch
=====================================
doc/src/release_notes.rst
=====================================
@@ -36,7 +36,14 @@ pgRouting 3.7
.. current
+pgRouting 3.7.3 Release Notes
+-------------------------------------------------------------------------------
+
+To see all issues & pull requests closed by this release see the `Git closed
+milestone for 3.7.3
+<https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%203.7.3%22>`__
+* `#2731 <https://github.com/pgRouting/pgrouting/pull/2731>`__ Build Failure on Ubuntu 22
pgRouting 3.7.2 Release Notes
-------------------------------------------------------------------------------
=====================================
docqueries/version/full_version.result
=====================================
@@ -6,7 +6,7 @@ SET
SELECT version, library FROM pgr_full_version();
version | library
---------+-----------------
- 3.7.2 | pgrouting-3.7.2
+ 3.7.3 | pgrouting-3.7.3
(1 row)
/* -- q2 */
=====================================
docqueries/version/version.result
=====================================
@@ -6,7 +6,7 @@ SET
SELECT pgr_version();
pgr_version
-------------
- 3.7.2
+ 3.7.3
(1 row)
/* -- q2 */
=====================================
tools/testers/pg_prove_tests.sh
=====================================
@@ -37,7 +37,7 @@ echo "$PGPORT"
pushd ./tools/testers/ || exit 1
-bash setup_db.sh "${PGPORT}" "${PGDATABASE}" "${PGUSER}" "3.7.2"
+bash setup_db.sh "${PGPORT}" "${PGDATABASE}" "${PGUSER}" "3.7.3"
PGOPTIONS="-c client_min_messages=WARNING" pg_prove --failures --Q --recurse \
-S on_error_rollback=off \
View it on GitLab: https://salsa.debian.org/debian-gis-team/pgrouting/-/compare/90affd10223ad72da6ac9a3c4bf8dd6c54834064...509c6c9a42d0fcb89720bb09b6b8132a843a1ac8
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/pgrouting/-/compare/90affd10223ad72da6ac9a3c4bf8dd6c54834064...509c6c9a42d0fcb89720bb09b6b8132a843a1ac8
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20250211/8019a11d/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list