Skip to content
Commits on Source (2)
postgis (3.0.0+dfsg-4) unstable; urgency=medium
* Disable SFCGAL support entirely, causes FTBFS.
-- Bas Couwenberg <sebastic@debian.org> Fri, 06 Dec 2019 13:08:37 +0100
postgis (3.0.0+dfsg-3) unstable; urgency=medium
* Disable SFCGAL support on armhf, it FTBFS there.
......
......@@ -26,7 +26,6 @@ Build-Depends: autoconf2.13,
libjson-c-dev | libjson0-dev (>= 0.9~),
libproj-dev (>= 4.6.0),
libprotobuf-c-dev,
libsfcgal-dev (>= 1.3.1) [!armel !armhf],
libxml2-dev (>= 2.5.0~),
lsb-release,
po-debconf,
......@@ -45,7 +44,7 @@ Package: postgis
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends}
Recommends: postgresql-12-postgis-3,
Recommends: postgresql-11-postgis-3,
postgis-doc
Suggests: postgis-gui
Description: Geographic objects support for PostgreSQL
......@@ -63,7 +62,7 @@ Package: postgis-gui
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends}
Recommends: postgresql-12-postgis-3,
Recommends: postgresql-11-postgis-3,
postgis-doc
Suggests: postgis
Breaks: postgis (<< 2.2.2+dfsg-2~)
......@@ -95,17 +94,17 @@ Description: Geographic objects support for PostgreSQL -- documentation
.
This package contains the PostGIS documentation.
Package: postgresql-12-postgis-3
Package: postgresql-11-postgis-3
Architecture: any
Depends: postgresql-12,
postgresql-12-postgis-3-scripts,
Depends: postgresql-11,
postgresql-11-postgis-3-scripts,
${shlibs:Depends},
${misc:Depends}
Suggests: postgis
Breaks: postgis (<< 1.2.1)
Provides: postgresql-12-postgis,
Provides: postgresql-11-postgis,
postgresql-postgis
Description: Geographic objects support for PostgreSQL 12
Description: Geographic objects support for PostgreSQL 11
PostGIS adds support for geographic objects to the PostgreSQL
object-relational database. In effect, PostGIS "spatially enables"
the PostgreSQL server, allowing it to be used as a backend spatial
......@@ -113,19 +112,19 @@ Description: Geographic objects support for PostgreSQL 12
SDE or Oracle's Spatial extension. PostGIS follows the OpenGIS
"Simple Features Specification for SQL".
.
To create the PostGIS extensions in a PostgreSQL 12 database, the
postgresql-12-postgis-3-scripts package must be installed as well.
To create the PostGIS extensions in a PostgreSQL 11 database, the
postgresql-11-postgis-3-scripts package must be installed as well.
Package: postgresql-12-postgis-3-scripts
Package: postgresql-11-postgis-3-scripts
Architecture: all
Multi-Arch: foreign
Depends: ${perl:Depends},
${misc:Depends}
Recommends: postgresql-12-postgis-3
Provides: postgresql-12-postgis-scripts,
Recommends: postgresql-11-postgis-3
Provides: postgresql-11-postgis-scripts,
postgresql-postgis-scripts
Replaces: postgresql-12-postgis-scripts (<< 2.2.2+dfsg-3~)
Description: Geographic objects support for PostgreSQL 12 -- SQL scripts
Replaces: postgresql-11-postgis-scripts (<< 2.2.2+dfsg-3~)
Description: Geographic objects support for PostgreSQL 11 -- SQL scripts
PostGIS adds support for geographic objects to the PostgreSQL
object-relational database. In effect, PostGIS "spatially enables"
the PostgreSQL server, allowing it to be used as a backend spatial
......@@ -134,5 +133,5 @@ Description: Geographic objects support for PostgreSQL 12 -- SQL scripts
"Simple Features Specification for SQL".
.
This package contains the SQL scripts for installing PostGIS in a PostgreSQL
12 database, and for upgrading from earlier PostGIS versions.
11 database, and for upgrading from earlier PostGIS versions.
......@@ -26,7 +26,6 @@ Build-Depends: autoconf2.13,
libjson-c-dev | libjson0-dev (>= 0.9~),
libproj-dev (>= 4.6.0),
libprotobuf-c-dev,
libsfcgal-dev (>= 1.3.1) [!armel !armhf],
libxml2-dev (>= 2.5.0~),
lsb-release,
po-debconf,
......
......@@ -5,7 +5,7 @@ set -eu
for v in $(pg_buildext supported-versions); do
pg_virtualenv -v $v sh -e <<-'EOF'
# test extension (fuzzystrmatch is part of postgresql-contrib and is needed by postgis_tiger_geocoder)
for ext in postgis postgis_raster postgis_sfcgal fuzzystrmatch postgis_tiger_geocoder postgis_topology address_standardizer address_standardizer_data_us; do
for ext in postgis postgis_raster fuzzystrmatch postgis_tiger_geocoder postgis_topology address_standardizer address_standardizer_data_us; do
psql -eXc "CREATE EXTENSION $ext"
done
EOF
......