From owner-svn-ports-head@freebsd.org Thu Sep 20 03:15:15 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3BF8110B1FF4; Thu, 20 Sep 2018 03:15:15 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E745E7913E; Thu, 20 Sep 2018 03:15:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E255A18377; Thu, 20 Sep 2018 03:15:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8K3FEjl094929; Thu, 20 Sep 2018 03:15:14 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8K3FEIQ094928; Thu, 20 Sep 2018 03:15:14 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201809200315.w8K3FEIQ094928@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Sep 2018 03:15:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480152 - head/math/py-secp256k1 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/py-secp256k1 X-SVN-Commit-Revision: 480152 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Sep 2018 03:15:15 -0000 Author: yuri Date: Thu Sep 20 03:15:14 2018 New Revision: 480152 URL: https://svnweb.freebsd.org/changeset/ports/480152 Log: math/py-secp256k1: Remove test target and depends because tests aren't defined Revert my commit r480150 because tests only exist in the github version, but not in the CHEESESHOP version. Approved by: portmgr blanket Modified: head/math/py-secp256k1/Makefile Modified: head/math/py-secp256k1/Makefile ============================================================================== --- head/math/py-secp256k1/Makefile Thu Sep 20 02:47:24 2018 (r480151) +++ head/math/py-secp256k1/Makefile Thu Sep 20 03:15:14 2018 (r480152) @@ -14,12 +14,8 @@ LICENSE= MIT BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.8.0:devel/py-cffi@${PY_FLAVOR} LIB_DEPENDS= libsecp256k1.so:math/secp256k1 -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=2.11.1:devel/py-pytest-runner@${PY_FLAVOR} USES= localbase python pkgconfig USE_PYTHON= autoplist distutils - -do-test: # some tests fail: https://github.com/ludbb/secp256k1-py/issues/31 - @cd ${WRKSRC} && ${PYTHON_CMD} -m test .include