Date: Wed, 26 Oct 2016 05:51:06 +0000 (UTC) From: David Naylor <dbn@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424677 - in head/lang: pypy pypy3 Message-ID: <201610260551.u9Q5p6BJ065529@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610260551.u9Q5p6BJ065529>