Received: by mail.netbsd.org (Postfix, from userid 605) id 72F3684EE4; Mon, 22 Jan 2024 22:29:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A0B7D84EE1 for ; Mon, 22 Jan 2024 22:29:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 1UcacSLKR2Be for ; Mon, 22 Jan 2024 22:29:25 +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 1E3AB84ED9 for ; Mon, 22 Jan 2024 22:29:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0F591FA42; Mon, 22 Jan 2024 22:29:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1705962565130110" MIME-Version: 1.0 Date: Mon, 22 Jan 2024 22:29:25 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240122222925.0F591FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1705962565130110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jan 22 22:29:24 UTC 2024 Modified Files: pkgsrc/mk: pgsql.buildlink3.mk Log Message: mk: remove references to removed postgresql 11 To generate a diff of this commit: cvs rdiff -u -r1.63 -r1.64 pkgsrc/mk/pgsql.buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1705962565130110 Content-Disposition: inline Content-Length: 1801 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.63 pkgsrc/mk/pgsql.buildlink3.mk:1.64 --- pkgsrc/mk/pgsql.buildlink3.mk:1.63 Sun Sep 17 08:53:20 2023 +++ pkgsrc/mk/pgsql.buildlink3.mk Mon Jan 22 22:29:24 2024 @@ -1,4 +1,4 @@ -# $NetBSD: pgsql.buildlink3.mk,v 1.63 2023/09/17 08:53:20 adam Exp $ +# $NetBSD: pgsql.buildlink3.mk,v 1.64 2024/01/22 22:29:24 wiz 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?= 14 -PGSQL_VERSIONS_ACCEPTED?= 16 15 14 13 12 11 +PGSQL_VERSIONS_ACCEPTED?= 16 15 14 13 12 # transform the list into individual variables .for pv in ${PGSQL_VERSIONS_ACCEPTED} @@ -56,9 +56,6 @@ _PGSQL_VERSION_13_INSTALLED= yes . if exists(${_CROSS_DESTDIR:U}${LOCALBASE}/lib/libecpg.6.12.dylib) _PGSQL_VERSION_12_INSTALLED= yes . endif -. if exists(${_CROSS_DESTDIR:U}${LOCALBASE}/lib/libecpg.6.11.dylib) -_PGSQL_VERSION_11_INSTALLED= yes -. endif .else . if exists(${_CROSS_DESTDIR:U}${LOCALBASE}/lib/libecpg.so.6.16) _PGSQL_VERSION_16_INSTALLED= yes @@ -75,9 +72,6 @@ _PGSQL_VERSION_13_INSTALLED= yes . if exists(${_CROSS_DESTDIR:U}${LOCALBASE}/lib/libecpg.so.6.12) _PGSQL_VERSION_12_INSTALLED= yes . endif -. if exists(${_CROSS_DESTDIR:U}${LOCALBASE}/lib/libecpg.so.6.11) -_PGSQL_VERSION_11_INSTALLED= yes -. endif .endif # if a version is explicitely required, take it @@ -130,9 +124,6 @@ PGPKGSRCDIR= ../../databases/postgresql1 .elif ${_PGSQL_VERSION} == "12" PGSQL_TYPE= postgresql12-client PGPKGSRCDIR= ../../databases/postgresql12-client -.elif ${_PGSQL_VERSION} == "11" -PGSQL_TYPE= postgresql11-client -PGPKGSRCDIR= ../../databases/postgresql11-client .else # force an error PGSQL_TYPE= none --_----------=_1705962565130110--