Received: by mail.netbsd.org (Postfix, from userid 605) id 0D6238536A; Thu, 5 May 2022 11:10:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 467FD85359 for ; Thu, 5 May 2022 11:10:52 +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 3Kl_Mph5ZuEB for ; Thu, 5 May 2022 11:10:51 +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 7F25184FB9 for ; Thu, 5 May 2022 11:10:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 78D59FB1A; Thu, 5 May 2022 11:10:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1651749051211570" MIME-Version: 1.0 Date: Thu, 5 May 2022 11:10:51 +0000 From: "Wen Heping" Subject: CVS commit: pkgsrc/www/drupal9 To: pkgsrc-changes@NetBSD.org Reply-To: wen@netbsd.org X-Mailer: log_accum Message-Id: <20220505111051.78D59FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1651749051211570 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wen Date: Thu May 5 11:10:51 UTC 2022 Modified Files: pkgsrc/www/drupal9: Makefile Log Message: Fix non-existent script interpreters. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/drupal9/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1651749051211570 Content-Disposition: inline Content-Length: 1398 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/drupal9/Makefile diff -u pkgsrc/www/drupal9/Makefile:1.2 pkgsrc/www/drupal9/Makefile:1.3 --- pkgsrc/www/drupal9/Makefile:1.2 Sun May 1 23:35:35 2022 +++ pkgsrc/www/drupal9/Makefile Thu May 5 11:10:51 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2022/05/01 23:35:35 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2022/05/05 11:10:51 wen Exp $ DISTNAME= drupal-9.3.12 PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= www MASTER_SITES= http://ftp.drupal.org/files/projects/ @@ -39,12 +40,18 @@ CONF_FILES_PERMS+= share/examples/drupal ${WWW_USER} ${WWW_GROUP} 0640 REPLACE_INTERPRETER+= php -REPLACE.php.old= .*php[^ ]* +REPLACE.php.old= /usr/bin/env php REPLACE.php.new= ${PREFIX}/bin/php REPLACE_FILES.php= core/scripts/drupal.sh core/scripts/password-hash.sh -REPLACE_FILES.php+= core/scripts/update-countries.sh REPLACE_FILES.php+= core/scripts/rebuild_token_calculator.sh -REPLACE_FILES.php+= vendor/pear/archive_tar/scripts/phptar.in +REPLACE_FILES.php+= vendor/bin/var-dump-server +REPLACE_FILES.php+= vendor/symfony/var-dumper/Resources/bin/var-dump-server + +REPLACE_INTERPRETER+= php2 +REPLACE.php2.old= .*php +REPLACE.php2.new= ${PREFIX}/bin/php +REPLACE_FILES.php2= core/scripts/update-countries.sh +REPLACE_FILES.php2+= vendor/pear/archive_tar/scripts/phptar.in REPLACE_BASH+= core/scripts/dev/commit-code-check.sh --_----------=_1651749051211570--