Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E383D84D60 for ; Fri, 14 Jul 2023 13:25:58 +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 NUNp2JqlSbQT for ; Fri, 14 Jul 2023 13:25:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 31D7284D2F for ; Fri, 14 Jul 2023 13:25:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 24771FBDB; Fri, 14 Jul 2023 13:25:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168934115817200" MIME-Version: 1.0 Date: Fri, 14 Jul 2023 13:25:58 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230714132558.24771FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168934115817200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Jul 14 13:25:58 UTC 2023 Modified Files: pkgsrc/mk: mysql.buildlink3.mk Log Message: mk: Add a MARIADB_VERSIONS_ALL variable The intent of this variable is that it can be used as a value for MYSQL_VERSIONS_ACCEPTED if a package wants to indicate that it only accepts MariaDB. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/mk/mysql.buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168934115817200 Content-Disposition: inline Content-Length: 1092 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/mysql.buildlink3.mk diff -u pkgsrc/mk/mysql.buildlink3.mk:1.39 pkgsrc/mk/mysql.buildlink3.mk:1.40 --- pkgsrc/mk/mysql.buildlink3.mk:1.39 Mon Jul 10 22:57:41 2023 +++ pkgsrc/mk/mysql.buildlink3.mk Fri Jul 14 13:25:57 2023 @@ -1,4 +1,4 @@ -# $NetBSD: mysql.buildlink3.mk,v 1.39 2023/07/10 22:57:41 nia Exp $ +# $NetBSD: mysql.buildlink3.mk,v 1.40 2023/07/14 13:25:57 nia Exp $ # # This file is included by packages that require some version of the # MySQL database client. @@ -22,6 +22,7 @@ # Variables set by this file: # # MYSQL_VERSION +# MARIADB_VERSIONS_ALL .if !defined(MYSQL_VERSION_MK) MYSQL_VERSION_MK= # defined @@ -37,8 +38,10 @@ _SYS_VARS.mysql= MYSQL_VERSION MYSQL_VER # # Set variables for all possible MySQL variants # +MARIADB_VERSIONS_ALL+= mariadb1011 mariadb106 mariadb105 mariadb104 + MYSQL_VERSIONS_ALL= 80 57 56 -MYSQL_VERSIONS_ALL+= mariadb1011 mariadb106 mariadb105 mariadb104 +MYSQL_VERSIONS_ALL+= ${MARIADB_VERSIONS_ALL} MYSQL_PKGBASE.80= mysql-client-8.0.* MYSQL_PKGSRCDIR.80= ../../databases/mysql80-client --_----------=_168934115817200--