diff options
author | David Naylor <dbn@FreeBSD.org> | 2016-10-26 13:51:06 +0800 |
---|---|---|
committer | David Naylor <dbn@FreeBSD.org> | 2016-10-26 13:51:06 +0800 |
commit | 70b1533c06c4a801c1c65b9e454e6e39ecb1f723 (patch) | |
tree | 21f90860e4858153f858decdda9a2b731c505a2c /lang/pypy3 | |
parent | 059606c34d60f750fd19f4214595751694a867d0 (diff) | |
download | freebsd-ports-gnome-70b1533c06c4a801c1c65b9e454e6e39ecb1f723.tar.gz freebsd-ports-gnome-70b1533c06c4a801c1c65b9e454e6e39ecb1f723.tar.zst freebsd-ports-gnome-70b1533c06c4a801c1c65b9e454e6e39ecb1f723.zip |
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@
Diffstat (limited to 'lang/pypy3')
-rw-r--r-- | lang/pypy3/Makefile | 1 | ||||
-rw-r--r-- | lang/pypy3/pkg-descr | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/lang/pypy3/Makefile b/lang/pypy3/Makefile index b7d1077700a4..e631cc647b2c 100644 --- a/lang/pypy3/Makefile +++ b/lang/pypy3/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= pypy3 +PORTREVISION= 1 DISTVERSION= 5.5.0-alpha DISTNAME= ${PORTNAME}.3-v${DISTVERSION}-src diff --git a/lang/pypy3/pkg-descr b/lang/pypy3/pkg-descr new file mode 100644 index 000000000000..dfe7bbc57fa5 --- /dev/null +++ b/lang/pypy3/pkg-descr @@ -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 |