From owner-svn-ports-head@freebsd.org Wed Oct 26 05:51:07 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D5D5CC22D67; Wed, 26 Oct 2016 05:51:07 +0000 (UTC) (envelope-from dbn@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 mx1.freebsd.org (Postfix) with ESMTPS id B1073C3D; Wed, 26 Oct 2016 05:51:07 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9Q5p66v066202; Wed, 26 Oct 2016 05:51:06 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9Q5p6BJ065529; Wed, 26 Oct 2016 05:51:06 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201610260551.u9Q5p6BJ065529@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Wed, 26 Oct 2016 05:51:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424677 - in head/lang: pypy pypy3 X-SVN-Group: ports-head 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.23 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: Wed, 26 Oct 2016 05:51:07 -0000 Author: dbn Date: Wed Oct 26 05:51:06 2016 New Revision: 424677 URL: https://svnweb.freebsd.org/changeset/ports/424677 Log: lang/pypy(3): update package description. - PyPy now implements Python 2.7.10 - PyPy3 requires a slightly different description, and implements Python 3.3.5 Reported by: marino@ Added: head/lang/pypy3/pkg-descr (contents, props changed) Modified: head/lang/pypy/Makefile head/lang/pypy/pkg-descr head/lang/pypy3/Makefile Modified: head/lang/pypy/Makefile ============================================================================== --- head/lang/pypy/Makefile Wed Oct 26 05:43:41 2016 (r424676) +++ head/lang/pypy/Makefile Wed Oct 26 05:51:06 2016 (r424677) @@ -3,6 +3,7 @@ PORTNAME?= pypy DISTVERSION?= 5.4.1 # Also update bsd.pypy.cffi.mk +PORTREVISION?= 1 CATEGORIES= lang python MASTER_SITES= https://bitbucket.org/pypy/pypy/downloads/ http://buildbot.pypy.org/mirror/ DISTNAME?= ${PORTNAME}2-v${PORTVERSION}-src @@ -52,6 +53,7 @@ PYPY_VARS= PYTHON_CMD=${LOCALBASE}/bin/p PYPY_MINMEM_VARS= PYTHON_CMD="${SETENV} PYPY_GC_MAX_DELTA=200MB ${LOCALBASE}/bin/pypy --jit loop_longevity=300" PYTHON_USES= python:2,build +DESCR= ${.CURDIR}/pkg-descr DISTINFO_FILE= ${.CURDIR}/distinfo MASTERDIR?= ${.CURDIR} PATCHDIR= ${.CURDIR}/files Modified: head/lang/pypy/pkg-descr ============================================================================== --- head/lang/pypy/pkg-descr Wed Oct 26 05:43:41 2016 (r424676) +++ head/lang/pypy/pkg-descr Wed Oct 26 05:51:06 2016 (r424677) @@ -1,5 +1,5 @@ PyPy is a fast, compliant alternative implementation of the Python language -(2.7.1). It has several advantages and distinct features: +(2.7.10). It has several advantages and distinct features: - Speed: thanks to its Just-in-Time compiler, Python programs often run faster on PyPy. Modified: head/lang/pypy3/Makefile ============================================================================== --- head/lang/pypy3/Makefile Wed Oct 26 05:43:41 2016 (r424676) +++ head/lang/pypy3/Makefile Wed Oct 26 05:51:06 2016 (r424677) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= pypy3 +PORTREVISION= 1 DISTVERSION= 5.5.0-alpha DISTNAME= ${PORTNAME}.3-v${DISTVERSION}-src Added: head/lang/pypy3/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/pypy3/pkg-descr Wed Oct 26 05:51:06 2016 (r424677) @@ -0,0 +1,17 @@ +PyPy3 (alpha) is a fast, compliant alternative implementation of the Python +language (3.3.5). It has several advantages and distinct features: + + - Speed: thanks to its Just-in-Time compiler, Python programs often run faster + on PyPy3. + - Memory usage: large, memory-hungry Python programs might end up taking less + space than they do in CPython. + - Compatibility: PyPy3 is highly compatible with existing python code. It + supports ctypes and can run popular python libraries like + twisted and django. + - Sandboxing: PyPy3 provides the ability to run untrusted code in a fully + secure way. + - Stackless: PyPy3 can be configured to run in stackless mode, providing + micro-threads for massive concurrency. + - As well as other features. + +WWW: http://pypy.org