[Git][debian-gis-team/pgrouting][master] 5 commits: Update packaging for postgresql-13.

Bas Couwenberg gitlab at salsa.debian.org
Thu Oct 1 07:07:06 BST 2020



Bas Couwenberg pushed to branch master at Debian GIS Project / pgrouting


Commits:
99b59830 by Bas Couwenberg at 2020-10-01T06:45:31+02:00
Update packaging for postgresql-13.

- - - - -
4d7319b1 by Bas Couwenberg at 2020-10-01T07:17:25+02:00
Reorder rules.

- - - - -
b197d6f2 by Bas Couwenberg at 2020-10-01T07:17:25+02:00
Ignore `pg_buildext clean` failure, see: #971517.

- - - - -
c755cb2a by Bas Couwenberg at 2020-10-01T07:51:08+02:00
Drop obsolete lintian overrides.

- - - - -
098d1de2 by Bas Couwenberg at 2020-10-01T07:51:08+02:00
Set distribution to experimental.

- - - - -


4 changed files:

- debian/changelog
- debian/control
- − debian/postgresql-pgrouting-doc.lintian-overrides.in
- debian/rules


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,13 @@
+pgrouting (3.1.0-2~exp1) experimental; urgency=medium
+
+  * Team upload.
+  * Update packaging for postgresql-13.
+  * Reorder rules.
+  * Ignore `pg_buildext clean` failure, see: #971517.
+  * Drop obsolete lintian overrides.
+
+ -- Bas Couwenberg <sebastic at debian.org>  Thu, 01 Oct 2020 06:45:50 +0200
+
 pgrouting (3.1.0-1) unstable; urgency=medium
 
   * Team upload.


=====================================
debian/control
=====================================
@@ -17,23 +17,23 @@ Vcs-Browser: https://salsa.debian.org/debian-gis-team/pgrouting
 Vcs-Git: https://salsa.debian.org/debian-gis-team/pgrouting.git
 Homepage: https://www.pgrouting.org
 
-Package: postgresql-12-pgrouting
+Package: postgresql-13-pgrouting
 Architecture: any
-Depends: postgresql-12-pgrouting-scripts (>= ${source:Version}),
-         postgresql-12,
-         postgresql-12-postgis,
-         postgresql-12-postgis-scripts,
+Depends: postgresql-13-pgrouting-scripts (>= ${source:Version}),
+         postgresql-13,
+         postgresql-13-postgis,
+         postgresql-13-postgis-scripts,
          ${misc:Depends},
          ${shlibs:Depends}
-Suggests: postgresql-12-pgrouting-doc
+Suggests: postgresql-13-pgrouting-doc
 Provides: postgresql-pgrouting
 Description: Routing functionality support for PostgreSQL/PostGIS
  pgRouting extends the PostGIS/PostgreSQL geospatial database to provide
  geospatial routing and other network analysis functionality.
  .
- This package supports PostgreSQL 12.
+ This package supports PostgreSQL 13.
 
-Package: postgresql-12-pgrouting-scripts
+Package: postgresql-13-pgrouting-scripts
 Architecture: all
 Depends: ${misc:Depends}
 Provides: postgresql-pgrouting-scripts
@@ -44,9 +44,9 @@ Description: Routing functionality support for PostgreSQL/PostGIS - SQL scripts
  This package contains the SQL scripts for installing pgRouting, and for
  upgrading from earlier pgRouting versions.
  .
- This package supports PostgreSQL 12.
+ This package supports PostgreSQL 13.
 
-Package: postgresql-12-pgrouting-doc
+Package: postgresql-13-pgrouting-doc
 Architecture: all
 Section: doc
 Depends: libjs-mathjax,


=====================================
debian/postgresql-pgrouting-doc.lintian-overrides.in deleted
=====================================
@@ -1,3 +0,0 @@
-# sphinx does not provide language_data.js
-embedded-javascript-library usr/share/doc/postgresql-PGVERSION-pgrouting-doc/html/en/_static/language_data.js please use sphinx
-


=====================================
debian/rules
=====================================
@@ -15,6 +15,13 @@ include /usr/share/postgresql-common/pgxs_debian_control.mk
 %:
 	dh $@ --with sphinxdoc
 
+override_dh_auto_clean:
+	+pg_buildext clean build-%v || echo "Ignoring failure"
+
+override_dh_clean:
+	dh_clean debian/postgresql-*-pgrouting.install \
+	         debian/postgresql-*-pgrouting-scripts.install
+
 override_dh_auto_configure:
 	set -e; \
 	for v in $$(pg_buildext supported-versions); do \
@@ -45,31 +52,21 @@ override_dh_auto_install:
 		mv debian/postgresql-$$v-pgrouting/usr/share debian/postgresql-$$v-pgrouting-scripts/usr; \
 		rdfind -makeresultsfile false -makehardlinks true \
 			debian/postgresql-$$v-pgrouting-scripts/usr/share/postgresql/*/extension; \
-		mkdir -p debian/postgresql-$$v-pgrouting-doc/usr/share/lintian/overrides; \
-		cp debian/postgresql-pgrouting-doc.lintian-overrides.in debian/postgresql-$$v-pgrouting-doc/usr/share/lintian/overrides/postgresql-$$v-pgrouting-doc; \
-		sed -i "s,PGVERSION,$$v,g" debian/postgresql-$$v-pgrouting-doc/usr/share/lintian/overrides/postgresql-$$v-pgrouting-doc; \
 		mkdir -p debian/postgresql-$$v-pgrouting/usr/share/lintian/overrides; \
 		cp debian/postgresql-pgrouting.lintian-overrides.in debian/postgresql-$$v-pgrouting/usr/share/lintian/overrides/postgresql-$$v-pgrouting; \
 		sed -i "s,PGVERSION,$$v,g" debian/postgresql-$$v-pgrouting/usr/share/lintian/overrides/postgresql-$$v-pgrouting; \
 	done
 
-override_dh_auto_clean:
-	+pg_buildext clean build-%v
+override_dh_install:
+	dh_install --list-missing
 
-override_dh_clean:
-	dh_clean debian/postgresql-*-pgrouting.install \
-	         debian/postgresql-*-pgrouting-scripts.install
+override_dh_installchangelogs:
+	dh_installchangelogs doc/src/release_notes.rst
 
 override_dh_sphinxdoc-indep:
 	dh_sphinxdoc -Xtheme_extras.js
 
 override_dh_sphinxdoc-arch:
 
-override_dh_install:
-	dh_install --list-missing
-
-override_dh_installchangelogs:
-	dh_installchangelogs doc/src/release_notes.rst
-
 override_dh_makeshlibs:
 	dh_makeshlibs -Xusr/lib/postgresql



View it on GitLab: https://salsa.debian.org/debian-gis-team/pgrouting/-/compare/917052fd352989e499cf35b6b8e0de2a16fb1f91...098d1de2fb8c7771a257e1bc80a0a2820a95d6c9

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/pgrouting/-/compare/917052fd352989e499cf35b6b8e0de2a16fb1f91...098d1de2fb8c7771a257e1bc80a0a2820a95d6c9
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/20201001/b9bc2551/attachment-0001.html>


More information about the Pkg-grass-devel mailing list