Received: by mail.netbsd.org (Postfix, from userid 605) id 42DA684D54; Tue, 27 Feb 2024 10:35:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1709030147; bh=PinGV1XIqBsG74/Gq4IjI7enUw3FSpRqMVBmpNC1qd0=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=Ypj24kEQ4wQwMH4IYgVPmyXTZksb2uHiRAFFapQCux6bHMKrmg8WdLqC4c7sF1TBz NIG7UImvibk4XedgEWLoIbetiMAh2+51q4nliQ26yYZOrdwGNRZ8SdpivUpJJetaO2 sbYNcXu4cpUE59397L5jEDIqF6eRRihiwIS8/AEE= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3156F84D44 for ; Tue, 27 Feb 2024 10:35:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 8-9L3qTnWZ0Y for ; Tue, 27 Feb 2024 10:35:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7214184CF8 for ; Tue, 27 Feb 2024 10:35:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1709030145; bh=PinGV1XIqBsG74/Gq4IjI7enUw3FSpRqMVBmpNC1qd0=; h=Date:From:Subject:To:Reply-To; b=LLaa8U/T9mSyFvUBQw50SSSRmsDG7SIn5Zz/KJkg5H6d6b7AcqpM7szGE44UY9IdO hKdaOREn89D0Qp0wDTYUrSD5kppYlzee/qUR55t7iQbs6dFWu8B/tIss30EoduP1X6 Xn+U1gssEcjcp3T0WmD0hKVwXglba4lDsbmkFSHA= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 638EFFA27; Tue, 27 Feb 2024 10:35:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1709030145208530" MIME-Version: 1.0 Date: Tue, 27 Feb 2024 10:35:45 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/meta-pkgs/bulk-test-php To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240227103545.638EFFA27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1709030145208530 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Feb 27 10:35:45 UTC 2024 Modified Files: pkgsrc/meta-pkgs/bulk-test-php: Makefile Log Message: bulk-test-php: remove moodle The default php is 8.2 but pkgsrc moodle does not support this version leading to installation conflicts: pkg_add: Conflicting PLIST with php82-gd-8.2.16nb7: share/examples/php/gd.ini pkg_add: Can't install dependency php74-gd>=7.3.0 pkg_add: Expected dependency php74-gd>=7.3.0 still missing To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/meta-pkgs/bulk-test-php/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1709030145208530 Content-Disposition: inline Content-Length: 1091 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/meta-pkgs/bulk-test-php/Makefile diff -u pkgsrc/meta-pkgs/bulk-test-php/Makefile:1.1 pkgsrc/meta-pkgs/bulk-test-php/Makefile:1.2 --- pkgsrc/meta-pkgs/bulk-test-php/Makefile:1.1 Wed Nov 15 23:19:34 2023 +++ pkgsrc/meta-pkgs/bulk-test-php/Makefile Tue Feb 27 10:35:45 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.1 2023/11/15 23:19:34 jym Exp $ +# $NetBSD: Makefile,v 1.2 2024/02/27 10:35:45 wiz Exp $ -DISTNAME= bulk-test-php-20231115 +DISTNAME= bulk-test-php-20240227 CATEGORIES= meta-pkgs MASTER_SITES= # empty DISTFILES= # empty @@ -21,7 +21,8 @@ DEPENDS+= wordpress-[0-9]*:../../www/wor DEPENDS+= ${PHP_PKG_PREFIX}-nextcloud-[0-9]*:../../www/php-nextcloud DEPENDS+= ${PHP_PKG_PREFIX}-owncloud-[0-9]*:../../www/php-owncloud DEPENDS+= ${PHP_PKG_PREFIX}-davical-[0-9]*:../../www/davical -DEPENDS+= moodle-[0-9]*:../../www/moodle +# does not support the current 8.2 default of php +#DEPENDS+= moodle-[0-9]*:../../www/moodle DEPENDS+= ${PHP_PKG_PREFIX}-fpm-[0-9]*:../../www/php-fpm DEPENDS+= ${PHP_PKG_PREFIX}-roundcube-[0-9]*:../../mail/roundcube --_----------=_1709030145208530--