diff options
author | triaxx <triaxx@pkgsrc.org> | 2021-12-28 21:10:53 +0000 |
---|---|---|
committer | triaxx <triaxx@pkgsrc.org> | 2021-12-28 21:10:53 +0000 |
commit | 3238e126fbba51c1d19555d26b24f20475a5c3b4 (patch) | |
tree | 0347176a1c163af30c0e74747da4e5bbfac2704e | |
parent | f6d6bcd57ea87674a81b520e54c2c6be091084ad (diff) | |
download | pkgsrc-3238e126fbba51c1d19555d26b24f20475a5c3b4.tar.gz |
postgresql-postgis2: Add 14 as acceptable pgsql version
pkgsrc changes:
---------------
* Add 14 to PGSQL_VERSION_ACCEPTABLE to fix a dependency failure of
geography/mapserver with PostgreSQL 14.
* Fix BUILDLINK_ABI_DEPENDS that contained a hardcoded dependency.
* Bump revision.
-rw-r--r-- | databases/postgresql-postgis2/Makefile | 6 | ||||
-rw-r--r-- | databases/postgresql-postgis2/buildlink3.mk | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/databases/postgresql-postgis2/Makefile b/databases/postgresql-postgis2/Makefile index 75101e8431e..f2e793098ca 100644 --- a/databases/postgresql-postgis2/Makefile +++ b/databases/postgresql-postgis2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.107 2021/12/18 15:13:02 gdt Exp $ +# $NetBSD: Makefile,v 1.108 2021/12/28 21:10:53 triaxx Exp $ # Note that the directory is still postgis2, for historical reasons. # It remains, due to inertia, until there is a good basis to be sure @@ -6,7 +6,7 @@ MAJOR= 3.2 DISTNAME= postgis-${MAJOR}.0 PKGNAME= postgresql${PGSQL_VERSION}-${DISTNAME} -#PKGREVISION= 0 +PKGREVISION= 1 CATEGORIES= databases geography MASTER_SITES= https://download.osgeo.org/postgis/source/ @@ -16,7 +16,7 @@ COMMENT= Spatial database capabilities for PostgreSQL LICENSE= gnu-gpl-v2 -PGSQL_VERSIONS_ACCEPTED?= 13 12 11 10 96 +PGSQL_VERSIONS_ACCEPTED?= 14 13 12 11 10 96 DEPENDS+= postgresql${PGSQL_VERSION}-server-[0-9]*:../../databases/postgresql${PGSQL_VERSION}-server BUILD_DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl diff --git a/databases/postgresql-postgis2/buildlink3.mk b/databases/postgresql-postgis2/buildlink3.mk index 5011dc3fecf..745a2791dfe 100644 --- a/databases/postgresql-postgis2/buildlink3.mk +++ b/databases/postgresql-postgis2/buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.18 2021/12/08 16:01:49 adam Exp $ +# $NetBSD: buildlink3.mk,v 1.19 2021/12/28 21:10:53 triaxx Exp $ BUILDLINK_TREE+= postgresql-postgis @@ -6,7 +6,7 @@ BUILDLINK_TREE+= postgresql-postgis POSTGRESQL_POSTGIS_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.postgresql-postgis+= postgresql${PGSQL_VERSION}-postgis>=2.0 -BUILDLINK_ABI_DEPENDS.postgresql-postgis?= postgresql13-postgis>=3.1.4nb5 +BUILDLINK_ABI_DEPENDS.postgresql-postgis?= postgresql${PGSQL_VERSION}-postgis>=3.1.4nb5 BUILDLINK_PKGSRCDIR.postgresql-postgis?= ../../databases/postgresql-postgis2 .include "../../geography/geos/buildlink3.mk" |