Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B464F84E5C for ; Fri, 18 Aug 2023 13:08:41 +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 lnPIH2PsCHZr for ; Fri, 18 Aug 2023 13:08:41 +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 0E43D84D46 for ; Fri, 18 Aug 2023 13:08:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 05FA8FBDB; Fri, 18 Aug 2023 13:08:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1692364121168620" MIME-Version: 1.0 Date: Fri, 18 Aug 2023 13:08:41 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/www/php-nextcloud To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20230818130841.05FA8FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1692364121168620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Fri Aug 18 13:08:40 UTC 2023 Modified Files: pkgsrc/www/php-nextcloud: Makefile Log Message: www/php-nextcloud: Restrict php74 Nextcloud 26 refuses to run with php < 8.0, so don't allow building it. To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.70 pkgsrc/www/php-nextcloud/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1692364121168620 Content-Disposition: inline Content-Length: 1162 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/php-nextcloud/Makefile diff -u pkgsrc/www/php-nextcloud/Makefile:1.69 pkgsrc/www/php-nextcloud/Makefile:1.70 --- pkgsrc/www/php-nextcloud/Makefile:1.69 Mon Aug 14 05:25:30 2023 +++ pkgsrc/www/php-nextcloud/Makefile Fri Aug 18 13:08:40 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.69 2023/08/14 05:25:30 wiz Exp $ +# $NetBSD: Makefile,v 1.70 2023/08/18 13:08:40 gdt Exp $ # # The nextcloud update process only works from one version to the @@ -12,7 +12,7 @@ # update to 20. DISTNAME= nextcloud-26.0.4 PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= www MASTER_SITES= https://download.nextcloud.com/server/releases/ EXTRACT_SUFX= .tar.bz2 @@ -45,7 +45,10 @@ USE_TOOLS+= bash:run pax perl:run NC_DIR= share/nextcloud INSTALLATION_DIRS= ${NC_DIR} -PHP_VERSIONS_INCOMPATIBLE= 56 # php-sodium +# Nextcloud "documents" in lib/versioncheck.php that: +# nextcloud requires at least PHP 8.0 +# nextcloud it not compatible with PHP 8.3 or higher +PHP_VERSIONS_INCOMPATIBLE= 56 74 # for php interpreter CHECK_INTERPRETER_SKIP+= ${NC_DIR}/3rdparty/doctrine/dbal/bin/doctrine-dbal --_----------=_1692364121168620--