1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

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@
This commit is contained in:
David Naylor 2016-10-26 05:51:06 +00:00
parent 059606c34d
commit 70b1533c06
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=424677
4 changed files with 21 additions and 1 deletions

View File

@ -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/pypy
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

View File

@ -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.

View File

@ -2,6 +2,7 @@
# $FreeBSD$
PORTNAME= pypy3
PORTREVISION= 1
DISTVERSION= 5.5.0-alpha
DISTNAME= ${PORTNAME}.3-v${DISTVERSION}-src

17
lang/pypy3/pkg-descr Normal file
View File

@ -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