aboutsummaryrefslogtreecommitdiffstats
path: root/lang
diff options
context:
space:
mode:
authordbn <dbn@FreeBSD.org>2016-10-26 13:51:06 +0800
committerdbn <dbn@FreeBSD.org>2016-10-26 13:51:06 +0800
commit8fc593225ca9c25b0319e8c560e78c5a5801553d (patch)
tree21f90860e4858153f858decdda9a2b731c505a2c /lang
parentc7201fcbdbddf05c02c90c2a6ca41f6bdd9de2e2 (diff)
downloadfreebsd-ports-graphics-8fc593225ca9c25b0319e8c560e78c5a5801553d.tar.gz
freebsd-ports-graphics-8fc593225ca9c25b0319e8c560e78c5a5801553d.tar.zst
freebsd-ports-graphics-8fc593225ca9c25b0319e8c560e78c5a5801553d.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')
-rw-r--r--lang/pypy/Makefile2
-rw-r--r--lang/pypy/pkg-descr2
-rw-r--r--lang/pypy3/Makefile1
-rw-r--r--lang/pypy3/pkg-descr17
4 files changed, 21 insertions, 1 deletions
diff --git a/lang/pypy/Makefile b/lang/pypy/Makefile
index e3ba0057ec3..38887b1bbf8 100644
--- a/lang/pypy/Makefile
+++ b/lang/pypy/Makefile
@@ -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
diff --git a/lang/pypy/pkg-descr b/lang/pypy/pkg-descr
index 9978da98d6d..53e1fefb846 100644
--- a/lang/pypy/pkg-descr
+++ b/lang/pypy/pkg-descr
@@ -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.
diff --git a/lang/pypy3/Makefile b/lang/pypy3/Makefile
index b7d1077700a..e631cc647b2 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 00000000000..dfe7bbc57fa
--- /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