[Bug 260524] databases/postgis32: NEW Port 3.2.0

From: <bugzilla-noreply_at_freebsd.org>
Date: Sat, 18 Dec 2021 19:42:15 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=260524

            Bug ID: 260524
           Summary: databases/postgis32: NEW Port 3.2.0
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Many People
          Priority: ---
         Component: Individual Port(s)
          Assignee: lbartoletti@FreeBSD.org
          Reporter: darcy@dbitech.ca
             Flags: maintainer-feedback?(lbartoletti@FreeBSD.org)
          Assignee: lbartoletti@FreeBSD.org

Created attachment 230224
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=230224&action=edit
First crack at the new Version 3.2.0 port

postgis 3.2.0 has been released, find attached a new port version. 


https://postgis.net/2021/12/18/postgis-3.2.0/


PostGIS 3.2.0 (Olivier Courtin Edition)
2021/12/17
This version requires PostgreSQL 9.6 or higher, GEOS 3.6 or higher
, and Proj 4.9+.
Additional features are enabled if you are running GEOS 3.9+
(and ST_MakeValid enhancements with 3.10+),
Proj 6.1+, and PostgreSQL 14+.
Due to some query performance degradation
with the new fast index build that requires PG14,
we have decided to disable the feature by default
until we get more user testing
as to the true impact of real-world queries.
If you are running PG14+, you can reenable it by doing

ALTER OPERATOR FAMILY gist_geometry_ops_2d USING gist
     ADD FUNCTION 11 (geometry)
     geometry_gist_sortsupport_2d (internal);
and then reindex your gist indexes.

To revert back to the old index behavior:
   ALTER OPERATOR FAMILY gist_geometry_ops_2d using gist
     DROP FUNCTION 11 (geometry);

and then reindex your gist indexes.

 * Breaking changes *
  - #5008, Empty geometries are not reported as being within Infinite
           distance by ST_DWithin (Sandro Santilli)
  - #4824, Removed `--without-wagyu` build option. Using Wagyu is now mandatory
to build with MVT support.
  - #4933, topology.GetFaceByPoint will not work with topologies having invalid
edge linking.
  - #4981, ST_StartPoint support any geometry. No longer returns null for
non-linestrings.
  - #4149, ST_AsMVTGeom now preserves more of original geometry's details at
scale close to target extent.
           If you need previous simplifying behaviour, you can ST_Simplify the
geometry in advance.
           (Darafei Praliaskouski)
  - Proj 4.9 or higher is required
  - #5000, Turn off Window support in ST_AsMVT aggregate
        as no real use-case for it and it crashes with random input
        (Paul Ramsey

-- 
You are receiving this mail because:
You are the assignee for the bug.