From owner-svn-ports-all@FreeBSD.ORG Mon Jul 7 13:25:13 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D227483; Mon, 7 Jul 2014 13:25:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1A7BE24E9; Mon, 7 Jul 2014 13:25:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s67DPCJQ081575; Mon, 7 Jul 2014 13:25:12 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s67DPCfn081574; Mon, 7 Jul 2014 13:25:12 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201407071325.s67DPCfn081574@svn.freebsd.org> From: Kubilay Kocak Date: Mon, 7 Jul 2014 13:25:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361080 - head/security/py-ecdsa X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jul 2014 13:25:13 -0000 Author: koobs Date: Mon Jul 7 13:25:12 2014 New Revision: 361080 URL: http://svnweb.freebsd.org/changeset/ports/361080 QAT: https://qat.redports.org/buildarchive/r361080/ Log: security/py-ecdsa: Correctly enable Python 3.x support ecdsa module already (0.11) supports Python 3.x [1] and has just been tested on Python 3.4 [2]. Correctly enable Python 3.x support accordingly. White I'm here, whitespace align. [1] https://github.com/warner/python-ecdsa/blob/python-ecdsa-0.11/setup.py#L104 [2] https://github.com/warner/python-ecdsa/pull/26 QA under Python 3.4: Ran 43 tests in 10.659s - OK 5922 tests of inverse_mod completed. 0 errors detected. Approved by: portmgr (blanket) Modified: head/security/py-ecdsa/Makefile Modified: head/security/py-ecdsa/Makefile ============================================================================== --- head/security/py-ecdsa/Makefile Mon Jul 7 13:05:52 2014 (r361079) +++ head/security/py-ecdsa/Makefile Mon Jul 7 13:25:12 2014 (r361080) @@ -13,7 +13,7 @@ COMMENT= ECDSA cryptographic signature l LICENSE= MIT -USE_PYTHON= 2 +USE_PYTHON= yes USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes