From owner-svn-ports-head@freebsd.org Thu Dec 20 18:36:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D7DEF134FD4D; Thu, 20 Dec 2018 18:36:22 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7934A8D2AB; Thu, 20 Dec 2018 18:36:22 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 65BFC190B; Thu, 20 Dec 2018 18:36:22 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBKIaMLO082594; Thu, 20 Dec 2018 18:36:22 GMT (envelope-from crees@FreeBSD.org) Received: (from crees@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBKIaMP9082593; Thu, 20 Dec 2018 18:36:22 GMT (envelope-from crees@FreeBSD.org) Message-Id: <201812201836.wBKIaMP9082593@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: crees set sender to crees@FreeBSD.org using -f From: Chris Rees Date: Thu, 20 Dec 2018 18:36:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487898 - head/Mk/Uses X-SVN-Group: ports-head X-SVN-Commit-Author: crees X-SVN-Commit-Paths: head/Mk/Uses X-SVN-Commit-Revision: 487898 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7934A8D2AB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Dec 2018 18:36:23 -0000 Author: crees Date: Thu Dec 20 18:36:21 2018 New Revision: 487898 URL: https://svnweb.freebsd.org/changeset/ports/487898 Log: Add -plpython capability PR: ports/222094 Submitted by: lbartoletti@tuxfamily.org Modified: head/Mk/Uses/pgsql.mk Modified: head/Mk/Uses/pgsql.mk ============================================================================== --- head/Mk/Uses/pgsql.mk Thu Dec 20 18:04:03 2018 (r487897) +++ head/Mk/Uses/pgsql.mk Thu Dec 20 18:36:21 2018 (r487898) @@ -8,7 +8,7 @@ # Maintainer can set version required. Minimum and maximum # versions can be specified; e.g. 9.0-, 9.2+ # -# WANT_PGSQL= server[:fetch] pltcl plperl +# WANT_PGSQL= server[:fetch] plperl plpython pltcl # # Add PostgreSQL component dependency, using # WANT_PGSQL= component[:target]. @@ -132,12 +132,13 @@ IGNORE?= cannot install: does not work with postgresq LIB_DEPENDS+= libpq.so.${PGSQL${PGSQL_VER_NODOT}_LIBVER}:databases/postgresql${PGSQL_VER_NODOT}-client .endif -_USE_PGSQL_DEP= client contrib docs pgtcl pltcl plperl server +_USE_PGSQL_DEP= client contrib docs pgtcl plperl plpython pltcl server _USE_PGSQL_DEP_client= psql _USE_PGSQL_DEP_contrib= vacuumlo _USE_PGSQL_DEP_docs= postgresql${PGSQL_VER_NODOT}-docs>0 _USE_PGSQL_DEP_pgtcl= ${LOCALBASE}/lib/pgtcl/pkgIndex.tcl _USE_PGSQL_DEP_plperl= postgresql${PGSQL_VER_NODOT}-plperl>0 +_USE_PGSQL_DEP_plpython=postgresql${PGSQL_VER_NODOT}-plpython>0 _USE_PGSQL_DEP_pltcl= postgresql${PGSQL_VER_NODOT}-pltcl>0 _USE_PGSQL_DEP_server= postgres . if defined(WANT_PGSQL)