Received: by mail.netbsd.org (Postfix, from userid 605) id 22A2C84F7E; Sun, 24 Apr 2022 17:46:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5DB6B84E62 for ; Sun, 24 Apr 2022 17:46:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id eEHFRPTZPWb6 for ; Sun, 24 Apr 2022 17:46:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D5EE184CBC for ; Sun, 24 Apr 2022 17:46:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CABE1FB1A; Sun, 24 Apr 2022 17:46:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1650822384256310" MIME-Version: 1.0 Date: Sun, 24 Apr 2022 17:46:24 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20220424174624.CABE1FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1650822384256310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Sun Apr 24 17:46:24 UTC 2022 Modified Files: pkgsrc/mk: pgsql.buildlink3.mk Log Message: mk: de-support PostgreSQL 9.6 To generate a diff of this commit: cvs rdiff -u -r1.57 -r1.58 pkgsrc/mk/pgsql.buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1650822384256310 Content-Disposition: inline Content-Length: 1704 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/pgsql.buildlink3.mk diff -u pkgsrc/mk/pgsql.buildlink3.mk:1.57 pkgsrc/mk/pgsql.buildlink3.mk:1.58 --- pkgsrc/mk/pgsql.buildlink3.mk:1.57 Fri Oct 8 10:23:43 2021 +++ pkgsrc/mk/pgsql.buildlink3.mk Sun Apr 24 17:46:24 2022 @@ -1,4 +1,4 @@ -# $NetBSD: pgsql.buildlink3.mk,v 1.57 2021/10/08 10:23:43 adam Exp $ +# $NetBSD: pgsql.buildlink3.mk,v 1.58 2022/04/24 17:46:24 tnn Exp $ # # User-settable variables: # @@ -26,7 +26,7 @@ _SYS_VARS.pgsql= PG_LIB_EXT PGSQL_TYPE P .include "../../mk/bsd.prefs.mk" PGSQL_VERSION_DEFAULT?= 13 -PGSQL_VERSIONS_ACCEPTED?= 14 13 12 11 10 96 +PGSQL_VERSIONS_ACCEPTED?= 14 13 12 11 10 # transform the list into individual variables .for pv in ${PGSQL_VERSIONS_ACCEPTED} @@ -56,9 +56,6 @@ _PGSQL_VERSION_11_INSTALLED= yes . if exists(${LOCALBASE}/lib/libecpg.6.10.dylib) _PGSQL_VERSION_10_INSTALLED= yes . endif -. if exists(${LOCALBASE}/lib/libecpg.6.8.dylib) -_PGSQL_VERSION_96_INSTALLED= yes -. endif .else . if exists(${LOCALBASE}/lib/libecpg.so.6.14) _PGSQL_VERSION_14_INSTALLED= yes @@ -75,9 +72,6 @@ _PGSQL_VERSION_11_INSTALLED= yes . if exists(${LOCALBASE}/lib/libecpg.so.6.10) _PGSQL_VERSION_10_INSTALLED= yes . endif -. if exists(${LOCALBASE}/lib/libecpg.so.6.8) -_PGSQL_VERSION_96_INSTALLED= yes -. endif .endif # if a version is explicitely required, take it @@ -130,9 +124,6 @@ PGPKGSRCDIR= ../../databases/postgresql1 .elif ${_PGSQL_VERSION} == "10" PGSQL_TYPE= postgresql10-client PGPKGSRCDIR= ../../databases/postgresql10-client -.elif ${_PGSQL_VERSION} == "96" -PGSQL_TYPE= postgresql96-client -PGPKGSRCDIR= ../../databases/postgresql96-client .else # force an error PGSQL_TYPE= none --_----------=_1650822384256310--