diff options
author | Andres Freund | 2022-03-08 02:19:56 +0000 |
---|---|---|
committer | Andres Freund | 2022-03-08 02:20:20 +0000 |
commit | 76a29adee749f41e277459cbf2e47a2ff7777f31 (patch) | |
tree | 0686993cab4508002fb2c4b6e23f59de7fe54b77 /contrib/jsonb_plpython/Makefile | |
parent | 5b81703787bfc1e6072c8e37125eba0c5598b807 (diff) |
plpython: Remove plpythonu, plpython2u and associated transform extensions.
Since 19252e8ec93 we reject Python 2 during build configuration. Now that the
dust on the buildfarm has settled, remove extension variants specific to
Python 2.
Reviewed-By: Peter Eisentraut <peter@eisentraut.org>
Reviewed-By: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://postgr.es/m/20211031184548.g4sxfe47n2kyi55r@alap3.anarazel.de
Diffstat (limited to 'contrib/jsonb_plpython/Makefile')
-rw-r--r-- | contrib/jsonb_plpython/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/jsonb_plpython/Makefile b/contrib/jsonb_plpython/Makefile index ca767418943..eaab5ca2601 100644 --- a/contrib/jsonb_plpython/Makefile +++ b/contrib/jsonb_plpython/Makefile @@ -4,12 +4,12 @@ MODULE_big = jsonb_plpython$(python_majorversion) OBJS = \ $(WIN32RES) \ jsonb_plpython.o -PGFILEDESC = "jsonb_plpython - transform between jsonb and plpythonu" +PGFILEDESC = "jsonb_plpython - jsonb transform for plpython" PG_CPPFLAGS = -I$(top_srcdir)/src/pl/plpython $(python_includespec) -DPLPYTHON_LIBNAME='"plpython$(python_majorversion)"' -EXTENSION = jsonb_plpythonu jsonb_plpython2u jsonb_plpython3u -DATA = jsonb_plpythonu--1.0.sql jsonb_plpython2u--1.0.sql jsonb_plpython3u--1.0.sql +EXTENSION = jsonb_plpython3u +DATA = jsonb_plpython3u--1.0.sql REGRESS = jsonb_plpython REGRESS_PLPYTHON3_MANGLE := $(REGRESS) |