Received: by mail.netbsd.org (Postfix, from userid 605) id 2667F84EC3; Thu, 15 Dec 2022 00:02:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3F53584E90 for ; Thu, 15 Dec 2022 00:02:26 +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 s6s0DtjVTiXl for ; Thu, 15 Dec 2022 00:02: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 204FA84CED for ; Thu, 15 Dec 2022 00:02:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 19BB1FA90; Thu, 15 Dec 2022 00:02:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1671062545265290" MIME-Version: 1.0 Date: Thu, 15 Dec 2022 00:02:25 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/databases/php-mongodb To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20221215000225.19BB1FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1671062545265290 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Dec 15 00:02:25 UTC 2022 Modified Files: pkgsrc/databases/php-mongodb: Makefile Log Message: php-mongodb: mark as not supporting php 8.1 and 8.2 This package needs an update to a newer version to support them. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/php-mongodb/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1671062545265290 Content-Disposition: inline Content-Length: 725 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/php-mongodb/Makefile diff -u pkgsrc/databases/php-mongodb/Makefile:1.17 pkgsrc/databases/php-mongodb/Makefile:1.18 --- pkgsrc/databases/php-mongodb/Makefile:1.17 Wed Nov 23 16:19:37 2022 +++ pkgsrc/databases/php-mongodb/Makefile Thu Dec 15 00:02:24 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2022/11/23 16:19:37 adam Exp $ +# $NetBSD: Makefile,v 1.18 2022/12/15 00:02:24 wiz Exp $ MODNAME= mongodb PECL_VERSION= 1.9.1 @@ -10,7 +10,8 @@ COMMENT= MongoDB database driver PKGREVISION= 3 LICENSE= apache-2.0 -PHP_VERSIONS_INCOMPATIBLE= 56 +# newer versions support 8.1+ +PHP_VERSIONS_INCOMPATIBLE= 56 81 82 USE_TOOLS+= pkg-config gmake CONFIGURE_ARGS+= --with-libbson --_----------=_1671062545265290--