From owner-svn-ports-head@freebsd.org Fri Aug 28 09:36:40 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BEC163D3400; Fri, 28 Aug 2020 09:36:40 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BdDy04QMsz4HfK; Fri, 28 Aug 2020 09:36:40 +0000 (UTC) (envelope-from amdmi3@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 76F9712F94; Fri, 28 Aug 2020 09:36:40 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 07S9aefQ098316; Fri, 28 Aug 2020 09:36:40 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 07S9addf098313; Fri, 28 Aug 2020 09:36:39 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <202008280936.07S9addf098313@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 28 Aug 2020 09:36:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r546713 - head/security/py-ed25519ll X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/security/py-ed25519ll X-SVN-Commit-Revision: 546713 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.33 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: Fri, 28 Aug 2020 09:36:40 -0000 Author: amdmi3 Date: Fri Aug 28 09:36:39 2020 New Revision: 546713 URL: https://svnweb.freebsd.org/changeset/ports/546713 Log: - Update WWW - Fix testing and flavor usage in TEST_DEPENDS Approved by: portmgr blanket Modified: head/security/py-ed25519ll/Makefile head/security/py-ed25519ll/pkg-descr Modified: head/security/py-ed25519ll/Makefile ============================================================================== --- head/security/py-ed25519ll/Makefile Fri Aug 28 09:19:15 2020 (r546712) +++ head/security/py-ed25519ll/Makefile Fri Aug 28 09:36:39 2020 (r546713) @@ -16,7 +16,7 @@ COMMENT= Low-level ctypes wrapper for Ed25519 digital LICENSE= MIT -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR} USES= python USE_PYTHON= autoplist distutils flavors @@ -24,6 +24,6 @@ USE_PYTHON= autoplist distutils flavors WRKSRC= ${WRKDIR}/dholth-${PORTNAME}-${DISTNAME} do-test: - cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test + cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} ${PYSETUP} test .include Modified: head/security/py-ed25519ll/pkg-descr ============================================================================== --- head/security/py-ed25519ll/pkg-descr Fri Aug 28 09:19:15 2020 (r546712) +++ head/security/py-ed25519ll/pkg-descr Fri Aug 28 09:36:39 2020 (r546713) @@ -8,4 +8,4 @@ This wrapper also contains a reasonably performat pure fallback. Unlike the reference implementation, the Python implementation does not contain protection against timing attacks. -WWW: http://bitbucket.org/dholth/ed25519ll/ +WWW: https://bitbucket.org/dholth/ed25519ll