Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id BE17F1A9239 for ; Mon, 10 Jan 2022 00:12:47 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 101B384E69; Mon, 10 Jan 2022 00:12:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3014B84E6D for ; Sun, 9 Jan 2022 23:59:36 +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 aY_JvpoKiDvt for ; Sun, 9 Jan 2022 23:59:35 +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 9678684E5C for ; Sun, 9 Jan 2022 23:59:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8E81EFB23; Sun, 9 Jan 2022 23:59:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641772775175940" MIME-Version: 1.0 Date: Sun, 9 Jan 2022 23:59:35 +0000 From: "David Sainty" Subject: CVS commit: pkgsrc/security/zoneminder To: pkgsrc-changes@NetBSD.org Reply-To: dsainty@netbsd.org X-Mailer: log_accum Message-Id: <20220109235935.8E81EFB23@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641772775175940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: dsainty Date: Sun Jan 9 23:59:35 UTC 2022 Modified Files: pkgsrc/security/zoneminder: Makefile Log Message: The need for php-mysql seems to have vanished a long time ago. This package is quite happy to use php-mysqlnd, which in turn is a built-in component of all versions of PHP in Pkgsrc. Drop the dependency, and therefore expand the PHP_VERSIONS_ACCEPTED constraint. ZoneMinder 1.29.0 seems to work fine on at least PHP 5.6 and 7.4. Under PHP 8.0 it is logging at Error level type errors out of skin.js. Under PHP 8.1 it is logging at Panic level that strftime is deprecated. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 pkgsrc/security/zoneminder/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641772775175940 Content-Disposition: inline Content-Length: 1666 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/zoneminder/Makefile diff -u pkgsrc/security/zoneminder/Makefile:1.58 pkgsrc/security/zoneminder/Makefile:1.59 --- pkgsrc/security/zoneminder/Makefile:1.58 Fri Dec 31 12:07:55 2021 +++ pkgsrc/security/zoneminder/Makefile Sun Jan 9 23:59:35 2022 @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.58 2021/12/31 12:07:55 dsainty Exp $ +# $NetBSD: Makefile,v 1.59 2022/01/09 23:59:35 dsainty Exp $ VERSION= 1.29.0 # Sometimes the distfile unpacks to ZoneMinder and sometimes zoneminder. NAME_DIST= ZoneMinder NAME_LOWER= zoneminder -PKGREVISION= 7 +PKGREVISION= 8 PKGNAME= ${DISTNAME:S/${NAME_DIST}-/${NAME_LOWER}-/} DISTNAME= ${NAME_DIST}-${VERSION} @@ -25,8 +25,10 @@ EXTRACT_USING= gtar DEPENDS+= netpbm-[0-9]*:../../graphics/netpbm -# This PHP 5.6 limitation is only to match the limitation in php-mysql -PHP_VERSIONS_ACCEPTED= 56 +# ZoneMinder 1.29.0 seems to work fine on at least PHP 5.6 and 7.4. +# Under PHP 8.0 it is logging at Error level type errors out of skin.js. +# Under PHP 8.1 it is logging at Panic level that strftime is deprecated. +PHP_VERSIONS_ACCEPTED= 56 74 PKG_OPTIONS_VAR= PKG_OPTIONS.zoneminder PKG_SUPPORTED_OPTIONS= apache @@ -142,7 +144,6 @@ CONFIGURE_ARGS+= --with-webgroup=${APACH # If we're using Apache we're going to need PHP, and PHP extensions. .include "../../lang/php/phpversion.mk" DEPENDS+= ${APACHE_PKG_PREFIX}-${PHP_PKG_PREFIX}-[0-9]*:../../www/ap-php -DEPENDS+= ${PHP_PKG_PREFIX}-mysql-[0-9]*:../../databases/php-mysql DEPENDS+= ${PHP_PKG_PREFIX}-pdo_mysql-[0-9]*:../../databases/php-pdo_mysql DEPENDS+= ${PHP_PKG_PREFIX}-sockets-[0-9]*:../../net/php-sockets .endif --_----------=_1641772775175940--