Received: by mail.netbsd.org (Postfix, from userid 605) id F364084D27; Sun, 30 Apr 2023 15:46:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2FCAC84CFD for ; Sun, 30 Apr 2023 15:46:38 +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 czZvjOwVMyMM for ; Sun, 30 Apr 2023 15:46:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7E68984CC9 for ; Sun, 30 Apr 2023 15:46:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7B7EDFA87; Sun, 30 Apr 2023 15:46:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1682869597223090" MIME-Version: 1.0 Date: Sun, 30 Apr 2023 15:46:37 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/sysutils/collectd-haproxy To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230430154637.7B7EDFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1682869597223090 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Apr 30 15:46:37 UTC 2023 Modified Files: pkgsrc/sysutils/collectd-haproxy: Makefile Log Message: collectd-haproxy: not for python 2 To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/sysutils/collectd-haproxy/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1682869597223090 Content-Disposition: inline Content-Length: 1085 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/collectd-haproxy/Makefile diff -u pkgsrc/sysutils/collectd-haproxy/Makefile:1.4 pkgsrc/sysutils/collectd-haproxy/Makefile:1.5 --- pkgsrc/sysutils/collectd-haproxy/Makefile:1.4 Thu Jun 30 11:18:50 2022 +++ pkgsrc/sysutils/collectd-haproxy/Makefile Sun Apr 30 15:46:37 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2022/06/30 11:18:50 nia Exp $ +# $NetBSD: Makefile,v 1.5 2023/04/30 15:46:37 wiz Exp $ DISTNAME= collectd-haproxy-1.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -15,11 +15,11 @@ COMMENT= Plugin for collectd to gather H LICENSE= mit DEPENDS+= haproxy>=1.4:../../net/haproxy -DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock DEPENDS+= ${PYPKGPREFIX}-collectd-[0-9]*:../../sysutils/py-collectd +DEPENDS+= ${PYPKGPREFIX}-flake8-[0-9]*:../../devel/py-flake8 +DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock -PYTHON_VERSIONED_DEPENDENCIES+= flake8 +PYTHON_VERSIONS_INCOMPATIBLE= 27 .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1682869597223090--