Received: by mail.netbsd.org (Postfix, from userid 605) id 09F5584CDB; Sat, 3 Jul 2021 21:02:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9CB4884E72 for ; Sat, 3 Jul 2021 21:02:56 +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 lbSs8H5LR2od for ; Sat, 3 Jul 2021 21:02:56 +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 F0BD684E71 for ; Sat, 3 Jul 2021 21:02:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ED5F2FA95; Sat, 3 Jul 2021 21:02:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162534617480440" MIME-Version: 1.0 Date: Sat, 3 Jul 2021 21:02:54 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/security/py-spake2 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20210703210254.ED5F2FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162534617480440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Jul 3 21:02:54 UTC 2021 Modified Files: pkgsrc/security/py-spake2: Makefile Log Message: py-spake2: add do-test target From Matthias Ferdinand. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/py-spake2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162534617480440 Content-Disposition: inline Content-Length: 793 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-spake2/Makefile diff -u pkgsrc/security/py-spake2/Makefile:1.1 pkgsrc/security/py-spake2/Makefile:1.2 --- pkgsrc/security/py-spake2/Makefile:1.1 Wed Jun 23 21:07:29 2021 +++ pkgsrc/security/py-spake2/Makefile Sat Jul 3 21:02:54 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2021/06/23 21:07:29 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2021/07/03 21:02:54 wiz Exp $ DISTNAME= spake2-0.8 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -14,6 +14,9 @@ PYTHON_VERSIONED_DEPENDENCIES= test:test DEPENDS+= ${PYPKGPREFIX}-hkdf-[0-9]*:../../security/py-hkdf +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} + .include "../../lang/python/egg.mk" .include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_162534617480440--