Received: by mail.netbsd.org (Postfix, from userid 605) id 3072C84E9D; Thu, 28 Apr 2022 12:33:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6B6C184D60 for ; Thu, 28 Apr 2022 12:33:31 +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 sQioCs2ioaBn for ; Thu, 28 Apr 2022 12:33:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C600984D41 for ; Thu, 28 Apr 2022 12:33:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BEFBFFB1A; Thu, 28 Apr 2022 12:33:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1651149210247710" MIME-Version: 1.0 Date: Thu, 28 Apr 2022 12:33:30 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/mail/feed2exec To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220428123330.BEFBFFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1651149210247710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Apr 28 12:33:30 UTC 2022 Modified Files: pkgsrc/mail/feed2exec: Makefile Log Message: feed2exec: fix test target To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/mail/feed2exec/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1651149210247710 Content-Disposition: inline Content-Length: 730 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/feed2exec/Makefile diff -u pkgsrc/mail/feed2exec/Makefile:1.17 pkgsrc/mail/feed2exec/Makefile:1.18 --- pkgsrc/mail/feed2exec/Makefile:1.17 Mon Apr 25 18:21:52 2022 +++ pkgsrc/mail/feed2exec/Makefile Thu Apr 28 12:33:30 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2022/04/25 18:21:52 wiz Exp $ +# $NetBSD: Makefile,v 1.18 2022/04/28 12:33:30 wiz Exp $ DISTNAME= feed2exec-0.18.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -43,6 +43,9 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 USE_PKG_RESOURCES= yes +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} + .include "../../lang/python/application.mk" .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1651149210247710--