Received: by mail.netbsd.org (Postfix, from userid 605) id 4A51384D56; Sun, 15 Dec 2019 18:24:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C5D1884CE7 for ; Sun, 15 Dec 2019 18:24:33 +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 u0oAjM-2wqYu for ; Sun, 15 Dec 2019 18:24:33 +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 3591C84C81 for ; Sun, 15 Dec 2019 18:24:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 29C58FA97; Sun, 15 Dec 2019 18:24:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1576434273128480" MIME-Version: 1.0 Date: Sun, 15 Dec 2019 18:24:33 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/www To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20191215182433.29C58FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1576434273128480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Dec 15 18:24:33 UTC 2019 Modified Files: pkgsrc/www/drupal7: Makefile pkgsrc/www/drupal8: Makefile pkgsrc/www/moodle: Makefile Log Message: www: mark packages do not support php74 Explicitly specify supporting versions of PHP. To generate a diff of this commit: cvs rdiff -u -r1.60 -r1.61 pkgsrc/www/drupal7/Makefile cvs rdiff -u -r1.27 -r1.28 pkgsrc/www/drupal8/Makefile cvs rdiff -u -r1.79 -r1.80 pkgsrc/www/moodle/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1576434273128480 Content-Disposition: inline Content-Length: 2263 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/drupal7/Makefile diff -u pkgsrc/www/drupal7/Makefile:1.60 pkgsrc/www/drupal7/Makefile:1.61 --- pkgsrc/www/drupal7/Makefile:1.60 Mon Nov 4 22:09:53 2019 +++ pkgsrc/www/drupal7/Makefile Sun Dec 15 18:24:32 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.60 2019/11/04 22:09:53 rillig Exp $ +# $NetBSD: Makefile,v 1.61 2019/12/15 18:24:32 taca Exp $ DISTNAME= drupal-7.67 PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME} @@ -13,6 +13,8 @@ LICENSE= gnu-gpl-v2 DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.4.0:../../graphics/php-gd DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.4.0:../../textproc/php-json +PHP_VERSIONS_ACCEPTED= 56 71 72 73 + NO_BUILD= YES DRUPAL= share/drupal PAX_DIRS= includes misc modules profiles scripts themes Index: pkgsrc/www/drupal8/Makefile diff -u pkgsrc/www/drupal8/Makefile:1.27 pkgsrc/www/drupal8/Makefile:1.28 --- pkgsrc/www/drupal8/Makefile:1.27 Tue Nov 19 16:15:18 2019 +++ pkgsrc/www/drupal8/Makefile Sun Dec 15 18:24:32 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2019/11/19 16:15:18 prlw1 Exp $ +# $NetBSD: Makefile,v 1.28 2019/12/15 18:24:32 taca Exp $ DISTNAME= drupal-8.7.10 PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME} @@ -10,11 +10,11 @@ HOMEPAGE= http://drupal.org/ COMMENT= Open source content management system LICENSE= gnu-gpl-v2 -PHP_VERSIONS_INCOMPATIBLE= 56 - DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.4.0:../../graphics/php-gd DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.4.0:../../textproc/php-json +PHP_VERSIONS_ACCEPTED= 71 72 73 + NO_BUILD= YES DRUPAL= share/drupal PAX_DIRS= includes misc modules profiles scripts themes Index: pkgsrc/www/moodle/Makefile diff -u pkgsrc/www/moodle/Makefile:1.79 pkgsrc/www/moodle/Makefile:1.80 --- pkgsrc/www/moodle/Makefile:1.79 Mon Dec 9 14:20:56 2019 +++ pkgsrc/www/moodle/Makefile Sun Dec 15 18:24:32 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.79 2019/12/09 14:20:56 taca Exp $ +# $NetBSD: Makefile,v 1.80 2019/12/15 18:24:32 taca Exp $ DISTNAME= moodle-3.8 PKGREVISION= 1 @@ -33,8 +33,7 @@ INSTALLATION_DIRS= ${EGDIR} share/moodle .include "../../mk/bsd.prefs.mk" .include "options.mk" -PHP_VERSIONS_INCOMPATIBLE= 56 -PHP_VERSIONS_ACCEPTED= 71 72 +PHP_VERSIONS_ACCEPTED= 71 72 73 PKG_GROUPS_VARS= APACHE_GROUP PKG_USERS_VARS= APACHE_USER --_----------=_1576434273128480--