Hi All.

After many months of (sporadic) work I would like to introduce pypy-2.0.b1.  

Could you please have a look at, and test, my proposed changes (attached) and 
the wiki page at http://wiki.FreeBSD.org/PyPy.  

I would like to commit these changes (after incorporating feedback) sometime 
next week.  Feel free to update the wiki yourselves ;-).  

Regards

David

P.S. Please keep my mentors CCed in any discussions :-)
Index: pypy/Makefile
===================================================================
--- pypy/Makefile	(revision 312473)
+++ pypy/Makefile	(working copy)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	pypy
-DISTVERSION=	1.9
-PORTREVISION=	2
+DISTVERSION=	2.0-beta1
 CATEGORIES=	lang python java
 MASTER_SITES=	https://bitbucket.org/pypy/pypy/get/
 DISTNAME=	release-${DISTVERSION}
@@ -18,18 +17,30 @@
 LIB_DEPENDS=	expat:${PORTSDIR}/textproc/expat2 \
 		ffi:${PORTSDIR}/devel/libffi
 
-OPTIONS_DEFINE=	SANDBOX
+CLI_DESC=	(BROKEN) Translate a CLI (.NET) based pypy
+JVM_DESC=	(BROKEN) Translate a JVM (Java) based pypy
+PYPY_DESC=	Use pypy to translate (faster but uses more memory)
 SANDBOX_DESC=	Translate a sandboxed pypy
+.if !defined(PYPY_INST)
+OPTIONS_DEFINE+=	CLI JVM SANDBOX
+.endif
+LOCALBASE?=	/usr/local
+.if exists(${LOCALBASE}/bin/pypy)
+OPTIONS_DEFINE+=	PYPY
+.endif
 
+ALL_TARGET=	${PYPY_NAMES}
 BUILD_WRKSRC=	${WRKDIR}
 USE_BZIP2=	yes
 USE_ICONV=	yes
 USE_GETTEXT=	yes
+MAKE_JOBS_SAFE=	yes
+MAKEFILE=	${FILESDIR}/Makefile
 PKGINSTALL=	${WRKDIR}/pkg-install
 PKGDEINSTALL=	${WRKDIR}/pkg-deinstall
-WRKSRC=		${WRKDIR}/pypy-pypy-341e1e3821ff
+WRKSRC=		${WRKDIR}/pypy-pypy-fcb6b056f00e
 
-PYPY_VER=	${DISTVERSION}
+PYPY_VER=	${DISTVERSION:C|([0-9])\.([0-9]).*|\1.\2|}
 PYTHON_IMPL_VER=	2.7
 PYPY_LIBDIR=	lib/pypy${PYPY_VER}
 PYPY_INCLUDEDIR=	include/pypy${PYPY_VER}
@@ -38,20 +49,26 @@
 PLIST_SUB+=	PYPY_LIBDIR=${PYPY_LIBDIR} \
 		PYPY_INCLUDEDIR=${PYPY_INCLUDEDIR}
 
-MAKE_ENV+=	PYPY_LOCALBASE=${LOCALBASE}
-.if exists(/usr/bin/clang)
-MAKE_ARGS+=	CC=clang
-MAKE_JOBS_SAFE=	yes
-.endif
+MAKE_ENV+=	DISTVERSION=${DISTVERSION} PYTHON_CMD=${PYTHON_CMD} \
+		WRKSRC=${WRKSRC} PYPY_LOCALBASE=${LOCALBASE}
 
-# XXX !.include <bsd.port.pre.mk> as USE_* need to be set prior
 .include <bsd.port.options.mk>
-.include "${.CURDIR}/files/bsd.pypy.inst.mk"
+.include "${MASTERDIR}/files/bsd.pypy.inst.mk"
 
-.if defined(PACKAGE_BUILDING)
-MANUAL_PACKAGE_BUILD=	fails to finish compilation on pointyhat, reason unknown
+.if ${OSVERSION} < 1000024 || ( ${ARCH} != "i386" && ${ARCH} != "amd64" )
+.if ${CC:T} == cc && ( exists(/usr/bin/clang) || exists(${LOCALBASE}/clang) )
+CC=		clang
+.else
+USE_GCC=	yes
 .endif
+.endif
 
+.if ${PORT_OPTIONS:MPYPY} || defined(PYTHON_CMD)
+PYTHON_CMD?=	${LOCALBASE}/bin/pypy
+.else
+USE_PYTHON_BUILD=	2.5+
+.endif
+
 # List of PyPy instances
 .if !defined(PYPY_INST)
 PYPY_INST=	DEFAULT
@@ -60,13 +77,26 @@
 PYPY_INST+=	SANDBOX
 .endif
 
+.if ${PORT_OPTIONS:MCLI}
+PYPY_INST+=	CLI
+.endif
+
+.if ${PORT_OPTIONS:MJVM}
+PYPY_INST+=	JVM
+.endif
+
 .endif # !defined(PYPY_INST)
 
-PYPY_NAMES=
+MAKE_ENV+=	PYPY_INST="${PYPY_INST}"
+
 .for inst in ${PYPY_INST}
 
 PYPY_NAMES+=	${PYPY_${inst}_NAME}
 PYPY_PRIMARY?=	${PYPY_${inst}_NAME}
+MAKE_ENV+=	PYPY_${inst}_NAME="${PYPY_${inst}_NAME}" \
+		PYPY_${inst}_OBJSPACE_ARGS="${PYPY_${inst}_OBJSPACE_ARGS}" \
+		PYPY_${inst}_OPT="${PYPY_${inst}_OPT}" \
+		PYPY_${inst}_TRANSLATE_ARGS="${PYPY_${inst}_TRANSLATE_ARGS}"
 
 # Check if the boehm GC will be used
 .if ${PYPY_${inst}_OPT} == 0 || ${PYPY_${inst}_OPT} == 1 || ${PYPY_${inst}_OPT} == size
@@ -85,24 +115,6 @@
 
 .endfor # inst in ${PYPY_INST}
 
-# Use pypy if it is installed, else use python (to translate)
-.if !defined(PY)
-.if !defined(PYPY)
-.if ${PYPY_PRIMARY} == pypy
-PYPY!=		${WHICH} ${PYPY_PRIMARY} 2> /dev/null || true
-.else
-PYPY!=		${WHICH} ${PYPY_PRIMARY} 2> /dev/null || ${WHICH} pypy 2> /dev/null || true
-.endif
-.endif # !defined(PYPY)
-
-.if exists(${PYPY})
-PY=		${PYPY}
-.else
-USE_PYTHON_BUILD=	2.5+
-PY=		${PYTHON_CMD}
-.endif
-.endif # !defined(PY)
-
 .if defined(WITH_BOEHM_GC)
 LIB_DEPENDS+=	gc.1:${PORTSDIR}/devel/boehm-gc
 .endif
@@ -117,7 +129,7 @@
 
 .if defined(WITH_JVM)
 USE_JAVA=	yes
-JAVA_VERSION=	1.6+
+JAVA_VERSION=	1.5+
 ONLY_FOR_ARCHS=	i386 powerpc
 ONLY_FOR_ARCHS_REASON=	only translates on 32bit systems
 BROKEN=		JVM backend broken, partially supported upstream
@@ -149,19 +161,59 @@
 .endfor # inst in ${PYPY_INST}
 .endif # !defined(PYPY_JITTABLE)
 
-pre-fetch:
-	@${ECHO} "PyPy requires a large amount of free RAM and time to translate and compile."
-	@${ECHO}
-	@${ECHO} "To translate, PyPy requires on 32bit 3G (min 2G) free RAM and on 64bit"
-	@${ECHO} "6G (min 4G) free RAM.  Also, to compile, PyPy on amd64 gcc requires an"
-	@${ECHO} "extra 4G however clang only requires 400M (CC=clang) but clang is slower"
-	@${ECHO} "in compiling PyPy."
-	@${ECHO}
-	@${ECHO} "If memory is in short supply consider using a lower optimisation level"
-	@${ECHO} "(e.g. PYPY_DEFAULT_OPT=2) however that makes PyPy much slower.  Also,"
-	@${ECHO} "consider forcing the build to use python (-DPYPY) however that makes the"
-	@${ECHO} "build much slower."
-	@${ECHO}
+# Translating requires a large amount of memory, with a two by two matrix
+# requirement (bitness vs PYTHON_CMD).  A more refined matrix is possible based
+# on optimisation level however this assumes "jit" is the preferred optimisation
+# level.
+#
+.if ${PYPY_ARCH:M*64}
+.  if defined(PYTHON_CMD) && ${PYTHON_CMD:M*pypy*}
+# 64bit + pypy = 5.5 GiB
+PYPY_TRANSLATION_MEMORY=	5582872
+.  else
+# 64bit + python = 4.3 GiB
+PYPY_TRANSLATION_MEMORY=	4349620
+.  endif
+# 64bit system += 366 MiB
+PYPY_MINIMUM_MEMORY=	$$((${PYPY_TRANSLATION_MEMORY} + 374784))
+.else
+.  if defined(PYTHON_CMD) && ${PYTHON_CMD:M*pypy*}
+# 32bit + pypy = 2.4GiB
+PYPY_TRANSLATION_MEMORY=	2423888
+.  else
+# 32bit + python = 2.1 GiB
+PYPY_TRANSLATION_MEMORY=	2111388
+.  endif
+# 32bit system += 168 MiB
+PYPY_MINIMUM_MEMORY=	$$((${PYPY_TRANSLATION_MEMORY} + 171787))
+.endif
+
+.if !defined(DISABLE_MAKE_JOBS) && ${PYPY_PRIMARY} != ${PYPY_NAMES}
+PYPY_MEMORY_MULTIPLY=	`echo ${PYPY_NAMES} | wc -w`
+.else
+PYPY_MEMORY_MULTIPLY=	1
+.endif
+
+PYPY_MEM_WARNING=	\
+	${ECHO} "warn: this system has insufficient memory, expected at least $$((${PYPY_MINIMUM_MEMORY} / 1024 * ${PYPY_MEMORY_MULTIPLY} + 1))MiB RAM"
+.if defined(PYTHON_CMD) && ${PYTHON_CMD:M*pypy*}
+PYPY_MEM_WARNING+=	;\
+	${ECHO} "warn: pypy is being used for translation, consider using cpython as it uses less memory"
+.endif
+.if ${PYPY_MEMORY_MULTIPLY} != 1
+PYPY_MEM_WARNING+=	;\
+	${ECHO} "warn: consider using -DDISABLE_MAKE_JOBS to serialise builds and to conserve memory"
+.endif
+.if !defined(PYPY_IGNORE_MEMORY)
+PYPY_MEM_WARNING+=	;\
+	${ECHO} "err: memory warnings are terminal, to overwrite this error define -DPYPY_IGNORE_MEMORY and try again"; \
+	exit 1
+.else
+PYPY_MEM_WARNING+=	;\
+	${ECHO} "warn: THIS SYSTEM MAY END UP SWAP THRASHING AD INFINITUM"
+.endif
+
+usage:
 	@${ECHO} "PyPy supports a large number of parameters and customisations.  This port"
 	@${ECHO} "supports building multiple instances of PyPy, for example:"
 	@${ECHO} "PYPY_INST=	SANDBOX CUSTOM"
@@ -178,23 +230,11 @@
 	@${ECHO}
 	@${ECHO} "On a fast machine PyPy takes around 45 minutes to translate and compile,"
 	@${ECHO} "however an average machine takes in excess of 4 hours, per instance."
-.if !defined(PYPY_IGNORE_MEM) && (${PYPY_ARCH} == "x86_32" || ${PYPY_ARCH} == "ppc_32")
-	@if [ $$((`sysctl -n hw.physmem` / 1024 / 1024)) -le 2000 ]; then \
-		${ECHO}; \
-		${ECHO} "err: this system has insufficient memory, expected at least 2G RAM",; \
-		${ECHO} "err: to overwrite this error define -DPYPY_IGNORE_MEM and try again"; \
-		exit 1; \
-	fi
-.elif !defined(PYPY_IGNORE_MEM)
-	@if [ $$((`sysctl -n hw.physmem` / 1024 / 1024)) -le 4000 ]; then \
-		${ECHO}; \
-		${ECHO} "err: this system has insufficient memory, expected at least 4G RAM",; \
-		${ECHO} "err: to overwrite this error define -DPYPY_IGNORE_MEM and try again"; \
-		exit 1; \
-	fi
-.endif
-	@sleep 1
 
+pre-fetch:
+	@${ECHO} Please see http://wiki.FreeBSD.org/PyPy for more details on the port or 'make usage' for a summary
+	@if [ $$((`sysctl -n hw.physmem` / 1024)) -le $$((${PYPY_MINIMUM_MEMORY} * ${PYPY_MEMORY_MULTIPLY})) ]; then ${PYPY_MEM_WARNING}; fi
+
 post-extract:
 	${MKDIR} ${WRKSRC}/lib
 	${MV} ${WRKSRC}/lib-python/${PYTHON_IMPL_VER} ${WRKSRC}/${PYPY_LIBDIR}
@@ -210,26 +250,6 @@
 		${FILESDIR}/use.pypy > ${WRKDIR}/use.pypy
 	${CP} ${WRKDIR}/use.pypy ${PKGINSTALL}
 	${CP} ${WRKDIR}/use.pypy ${PKGDEINSTALL}
-	${ECHO} "all: ${PYPY_NAMES}" > ${WRKDIR}/Makefile
-	${ECHO} >> ${WRKDIR}/Makefile
-.for inst in ${PYPY_INST}
-	${ECHO} "${PYPY_${inst}_NAME}: build_${PYPY_${inst}_NAME}/usession-release-${DISTVERSION}-0/testing_1/pypy-c" >> ${WRKDIR}/Makefile
-	${ECHO} "	${CP} build_${PYPY_${inst}_NAME}/usession-release-${DISTVERSION}-0/testing_1/pypy-c ${PYPY_${inst}_NAME}" >> ${WRKDIR}/Makefile
-	${ECHO} >> ${WRKDIR}/Makefile
-	${ECHO} ".done_translate_${PYPY_${inst}_NAME}:" >> ${WRKDIR}/Makefile
-	${ECHO} "	${RM} -rf build_${PYPY_${inst}_NAME}" >> ${WRKDIR}/Makefile
-	${ECHO} "	${MKDIR} build_${PYPY_${inst}_NAME}" >> ${WRKDIR}/Makefile
-	${ECHO} "	(cd ${WRKSRC}/pypy/translator/goal; \
-				${SETENV} TMPDIR=${WRKDIR}/build_${PYPY_${inst}_NAME} \
-				${PY} translate.py --source ${PYPY_${inst}_TRANSLATE_ARGS} -O${PYPY_${inst}_OPT} \
-					targetpypystandalone.py ${PYPY_${inst}_OBJSPACE_ARGS} )" >> ${WRKDIR}/Makefile
-	${ECHO} "	${TOUCH} .done_translate_${PYPY_${inst}_NAME}" >> ${WRKDIR}/Makefile
-	${ECHO} >> ${WRKDIR}/Makefile
-	${ECHO} "build_${PYPY_${inst}_NAME}/usession-release-${DISTVERSION}-0/testing_1/pypy-c: .done_translate_${PYPY_${inst}_NAME}" >> ${WRKDIR}/Makefile
-	${ECHO} "	${REINPLACE_CMD} -e 's|^%.o: %.c\$$\$$|.c.o:|g' build_${PYPY_${inst}_NAME}/usession-release-${DISTVERSION}-0/testing_1/Makefile" >> ${WRKDIR}/Makefile
-	${ECHO} "	${MAKE} -C build_${PYPY_${inst}_NAME}/usession-release-${DISTVERSION}-0/testing_1 pypy-c" >> ${WRKDIR}/Makefile
-	${ECHO} >> ${WRKDIR}/Makefile
-.endfor
 
 post-build:
 	-${FIND} ${WRKSRC}/${PYPY_LIBDIR} -type d | \
@@ -245,7 +265,7 @@
 .endfor
 .for name in ${PYPY_NAMES:O}
 	${INSTALL_PROGRAM} ${WRKDIR}/${name} ${PREFIX}/bin/${name}${PYPY_VER}
-	${ECHO} bin/${name}${DISTVERSION} >> ${TMPPLIST}
+	${ECHO} bin/${name}${PYPY_VER} >> ${TMPPLIST}
 .endfor
 
 post-install:
@@ -254,7 +274,7 @@
 test: patch
 .for inst in ${PYPY_INST}
 	@${WHICH} ${PYPY_${inst}_NAME} > /dev/null 2>&1 || (${ECHO} "Unable to find ${PYPY_${inst}_NAME}, please install port first!"; exit 1)
-	(${CD} ${PYPY_LIBDIR}; ${PYPY_${inst}_NAME} ../../pypy/test_all.py)
+	(cd ${WRKSRC}; ${PYPY_${inst}_NAME} pypy/test_all.py ${PYPY_LIBDIR}/lib_pypy/pypy_test pypy/module)
 .endfor
 
 pkg-plist: build
Index: pypy/distinfo
===================================================================
--- pypy/distinfo	(revision 312473)
+++ pypy/distinfo	(working copy)
@@ -1,2 +1,2 @@
-SHA256 (pypy/release-1.9.tar.bz2) = 9fd599acade49ef98017bbce4f179f19cf2680489ff15235d3bad5b20bde0d68
-SIZE (pypy/release-1.9.tar.bz2) = 13466551
+SHA256 (pypy/release-2.0-beta1.tar.bz2) = 40d8c91fa639232d7689e2f04cec4b1f153dbbf2ea1a7e7c58dd35724ce37371
+SIZE (pypy/release-2.0-beta1.tar.bz2) = 13653701
Index: pypy/files/Makefile
===================================================================
--- pypy/files/Makefile	(revision 0)
+++ pypy/files/Makefile	(working copy)
@@ -0,0 +1,43 @@
+# Build Makefile for lang/pypy
+# $FreeBSD$
+
+# Required environment variables
+# - DISTVERSION
+# - PORTSDIR
+# - PYTHON_CMD
+# - PYPY_INST
+# - PYPY_${inst}_NAME
+# - PYPY_${inst}_OBJSPACE_ARGS
+# - PYPY_${inst}_OPT
+# - PYPY_${inst}_TRANSLATE_ARGS
+# - WRKSRC
+
+CP?=		cp
+ECHO?=		echo
+MKDIR?=		mkdir
+RM?=		rm
+SED?=		sed
+SETENV?=	env
+TOUCH?=		touch
+
+REINPLACE_CMD?=	${SED} -i~
+
+.for inst in ${PYPY_INST}
+
+${PYPY_${inst}_NAME}: build_${PYPY_${inst}_NAME}/usession-release-${DISTVERSION}-0/testing_1/pypy-c
+	${CP} build_${PYPY_${inst}_NAME}/usession-release-${DISTVERSION}-0/testing_1/pypy-c \
+		${PYPY_${inst}_NAME}
+
+.done_translate_${PYPY_${inst}_NAME}:
+	${RM} -rf build_${PYPY_${inst}_NAME}
+	${MKDIR} build_${PYPY_${inst}_NAME}
+	(cd ${WRKSRC}/pypy/translator/goal; \
+		${SETENV} TMPDIR=${.CURDIR}/build_${PYPY_${inst}_NAME} \
+		${PYTHON_CMD} translate.py --source ${PYPY_${inst}_TRANSLATE_ARGS} -O${PYPY_${inst}_OPT} \
+			targetpypystandalone.py ${PYPY_${inst}_OBJSPACE_ARGS} )
+	${TOUCH} .done_translate_${PYPY_${inst}_NAME}
+
+build_${PYPY_${inst}_NAME}/usession-release-${DISTVERSION}-0/testing_1/pypy-c: .done_translate_${PYPY_${inst}_NAME}
+	${REINPLACE_CMD} -e 's|^%.o: %.c$$|.c.o:|g' build_${PYPY_${inst}_NAME}/usession-release-${DISTVERSION}-0/testing_1/Makefile
+	${MAKE} -C build_${PYPY_${inst}_NAME}/usession-release-${DISTVERSION}-0/testing_1 pypy-c
+.endfor

Property changes on: pypy/files/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Index: pypy/files/patch-lib__pypy1.9__distutils__command__install.py
===================================================================
--- pypy/files/patch-lib__pypy1.9__distutils__command__install.py	(revision 312473)
+++ pypy/files/patch-lib__pypy1.9__distutils__command__install.py	(working copy)
@@ -1,33 +0,0 @@
---- lib/pypy1.9/distutils/command/install.py.orig	2012-07-15 10:10:18.000000000 +0200
-+++ lib/pypy1.9/distutils/command/install.py	2012-07-15 10:13:15.000000000 +0200
-@@ -84,9 +84,9 @@
-         'data'   : '$userbase',
-         },
-     'pypy': {
--        'purelib': '$base/site-packages',
--        'platlib': '$base/site-packages',
--        'headers': '$base/include',
-+        'purelib': '$base/lib/pypy$pypy_version_short/site-packages',
-+        'platlib': '$platbase/lib/pypy$pypy_version_short/site-packages',
-+        'headers': '$base/include/pypy$pypy_version_short/$dist_name',
-         'scripts': '$base/bin',
-         'data'   : '$base',
-         },
-@@ -304,6 +304,7 @@
-         # about needing recursive variable expansion (shudder).
- 
-         py_version = (string.split(sys.version))[0]
-+        pypy_version = sys.version[-6:-3]
-         (prefix, exec_prefix) = get_config_vars('prefix', 'exec_prefix')
-         self.config_vars = {'dist_name': self.distribution.get_name(),
-                             'dist_version': self.distribution.get_version(),
-@@ -311,6 +312,9 @@
-                             'py_version': py_version,
-                             'py_version_short': py_version[0:3],
-                             'py_version_nodot': py_version[0] + py_version[2],
-+                            'pypy_version': pypy_version,
-+                            'pypy_version_short': pypy_version[0:3],
-+                            'pypy_version_nodot': pypy_version[0] + pypy_version[2],
-                             'sys_prefix': prefix,
-                             'prefix': prefix,
-                             'sys_exec_prefix': exec_prefix,
Index: pypy/files/patch-lib__pypy1.9__distutils__sysconfig_pypy.py
===================================================================
--- pypy/files/patch-lib__pypy1.9__distutils__sysconfig_pypy.py	(revision 312473)
+++ pypy/files/patch-lib__pypy1.9__distutils__sysconfig_pypy.py	(working copy)
@@ -1,20 +0,0 @@
---- lib/pypy1.9/distutils/sysconfig_pypy.py.orig	2012-07-13 22:52:04.000000000 +0200
-+++ lib/pypy1.9/distutils/sysconfig_pypy.py	2012-07-13 22:58:35.000000000 +0200
-@@ -15,7 +15,7 @@
- 
- def get_python_inc(plat_specific=0, prefix=None):
-     from os.path import join as j
--    return j(sys.prefix, 'include')
-+    return j(sys.prefix, 'include', 'pypy' + sys.version[-6:-3])
- 
- def get_python_version():
-     """Return a string containing the major and minor Python version,
-@@ -44,7 +44,7 @@
-             "calls to get_python_lib(standard_lib=1) cannot succeed")
-     if prefix is None:
-         prefix = PREFIX
--    return os.path.join(prefix, 'site-packages')
-+    return os.path.join(prefix, 'lib', 'pypy' + sys.version[-6:-3], 'site-packages')
- 
- 
- _config_vars = None
Index: pypy/files/patch-lib__pypy1.9__lib_pypy__ctypes_config_cache__rebuild.py
===================================================================
--- pypy/files/patch-lib__pypy1.9__lib_pypy__ctypes_config_cache__rebuild.py	(revision 312473)
+++ pypy/files/patch-lib__pypy1.9__lib_pypy__ctypes_config_cache__rebuild.py	(working copy)
@@ -1,11 +0,0 @@
---- lib/pypy1.9/lib_pypy/ctypes_config_cache/rebuild.py~	2012-06-22 11:42:55.000000000 +0200
-+++ lib/pypy1.9/lib_pypy/ctypes_config_cache/rebuild.py	2012-06-22 11:43:12.000000000 +0200
-@@ -6,7 +6,7 @@
- # get the correct path
- import os.path
- this_dir = os.path.dirname(__file__)
--autopath_py = os.path.join(this_dir, '../../pypy/tool/autopath.py')
-+autopath_py = os.path.join(this_dir, '../../../../pypy/tool/autopath.py')
- autopath_py = os.path.abspath(autopath_py)
- execfile(autopath_py, dict(__name__='autopath', __file__=autopath_py))
- 
Index: pypy/files/patch-lib__pypy1.9__sysconfig.py
===================================================================
--- pypy/files/patch-lib__pypy1.9__sysconfig.py	(revision 312473)
+++ pypy/files/patch-lib__pypy1.9__sysconfig.py	(working copy)
@@ -1,40 +0,0 @@
---- lib/pypy1.9/sysconfig.py.orig	2012-07-15 09:57:14.000000000 +0200
-+++ lib/pypy1.9/sysconfig.py	2012-07-15 10:03:25.000000000 +0200
-@@ -27,12 +27,12 @@
-         'data'   : '{base}',
-         },
-     'pypy': {
--        'stdlib': '{base}/lib-python',
--        'platstdlib': '{base}/lib-python',
--        'purelib': '{base}/lib-python',
--        'platlib': '{base}/lib-python',
--        'include': '{base}/include',
--        'platinclude': '{base}/include',
-+        'stdlib': '{base}/lib/pypy{pypy_version_short}',
-+        'platstdlib': '{platbase}/lib/pypy{pypy_version_short}',
-+        'purelib': '{base}/lib/pypy{pypy_version_short}',
-+        'platlib': '{platbase}/lib/pypy{pypy_version_short}',
-+        'include': '{base}/include{pypy_version_short}',
-+        'platinclude': '{platbase}/include/pypy{pypy_version_short}',
-         'scripts': '{base}/bin',
-         'data'   : '{base}',
-         },
-@@ -98,6 +98,8 @@
-                 'scripts', 'data')
- _PY_VERSION = sys.version.split()[0]
- _PY_VERSION_SHORT = sys.version[:3]
-+_PYPY_VERSION = sys.version[-6:-1]
-+_PYPY_VERSION_SHORT = sys.version[-6:-3]
- _PY_VERSION_SHORT_NO_DOT = _PY_VERSION[0] + _PY_VERSION[2]
- _PREFIX = os.path.normpath(sys.prefix)
- _EXEC_PREFIX = os.path.normpath(sys.exec_prefix)
-@@ -304,6 +306,9 @@
-         _CONFIG_VARS['py_version'] = _PY_VERSION
-         _CONFIG_VARS['py_version_short'] = _PY_VERSION_SHORT
-         _CONFIG_VARS['py_version_nodot'] = _PY_VERSION[0] + _PY_VERSION[2]
-+        _CONFIG_VARS['py_version'] = _PYPY_VERSION
-+        _CONFIG_VARS['pypy_version_short'] = _PYPY_VERSION_SHORT
-+        _CONFIG_VARS['pypy_version_nodot'] = _PYPY_VERSION[0] + _PYPY_VERSION[2]
-         _CONFIG_VARS['base'] = _PREFIX
-         _CONFIG_VARS['platbase'] = _EXEC_PREFIX
-         _CONFIG_VARS['projectbase'] = _PROJECT_BASE
Index: pypy/files/patch-lib__pypyX.Y__distutils__command__install.py
===================================================================
--- pypy/files/patch-lib__pypyX.Y__distutils__command__install.py	(revision 0)
+++ pypy/files/patch-lib__pypyX.Y__distutils__command__install.py	(working copy)
@@ -0,0 +1,33 @@
+--- lib/pypy2.0/distutils/command/install.py.orig	2012-07-15 10:10:18.000000000 +0200
++++ lib/pypy2.0/distutils/command/install.py	2012-07-15 10:13:15.000000000 +0200
+@@ -84,9 +84,9 @@
+         'data'   : '$userbase',
+         },
+     'pypy': {
+-        'purelib': '$base/site-packages',
+-        'platlib': '$base/site-packages',
+-        'headers': '$base/include',
++        'purelib': '$base/lib/pypy$pypy_version_short/site-packages',
++        'platlib': '$platbase/lib/pypy$pypy_version_short/site-packages',
++        'headers': '$base/include/pypy$pypy_version_short/$dist_name',
+         'scripts': '$base/bin',
+         'data'   : '$base',
+         },
+@@ -304,6 +304,7 @@
+         # about needing recursive variable expansion (shudder).
+ 
+         py_version = (string.split(sys.version))[0]
++        pypy_version = sys.version[-6:-3]
+         (prefix, exec_prefix) = get_config_vars('prefix', 'exec_prefix')
+         self.config_vars = {'dist_name': self.distribution.get_name(),
+                             'dist_version': self.distribution.get_version(),
+@@ -311,6 +312,9 @@
+                             'py_version': py_version,
+                             'py_version_short': py_version[0:3],
+                             'py_version_nodot': py_version[0] + py_version[2],
++                            'pypy_version': pypy_version,
++                            'pypy_version_short': pypy_version[0:3],
++                            'pypy_version_nodot': pypy_version[0] + pypy_version[2],
+                             'sys_prefix': prefix,
+                             'prefix': prefix,
+                             'sys_exec_prefix': exec_prefix,

Property changes on: pypy/files/patch-lib__pypyX.Y__distutils__command__install.py
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: fbsd:nokeywords
## -0,0 +1 ##
+1
\ No newline at end of property
Index: pypy/files/patch-lib__pypyX.Y__distutils__sysconfig_pypy.py
===================================================================
--- pypy/files/patch-lib__pypyX.Y__distutils__sysconfig_pypy.py	(revision 0)
+++ pypy/files/patch-lib__pypyX.Y__distutils__sysconfig_pypy.py	(working copy)
@@ -0,0 +1,22 @@
+--- lib/pypy2.0/distutils/sysconfig_pypy.py.orig	2012-11-22 14:52:20.000000000 +0200
++++ lib/pypy2.0/distutils/sysconfig_pypy.py	2012-11-27 17:59:44.000000000 +0200
+@@ -15,7 +15,7 @@
+ 
+ def get_python_inc(plat_specific=0, prefix=None):
+     from os.path import join as j
+-    return j(sys.prefix, 'include')
++    return j(sys.prefix, 'include', 'pypy' + sys.version.rsplit(' ', 1)[-1][:3])
+ 
+ def get_python_version():
+     """Return a string containing the major and minor Python version,
+@@ -42,8 +42,8 @@
+     if prefix is None:
+         prefix = PREFIX
+     if standard_lib:
+-        return os.path.join(prefix, "lib-python", get_python_version())
+-    return os.path.join(prefix, 'site-packages')
++        return os.path.join(prefix, 'lib', 'pypy' + sys.version[-6:-3])
++    return os.path.join(prefix, 'lib', 'pypy' + sys.version.rsplit(' ', 1)[-1][:3], 'site-packages')
+ 
+ 
+ _config_vars = None

Property changes on: pypy/files/patch-lib__pypyX.Y__distutils__sysconfig_pypy.py
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: fbsd:nokeywords
## -0,0 +1 ##
+1
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Index: pypy/files/patch-lib__pypyX.Y__lib_pypy__ctypes_config_cache__rebuild.py
===================================================================
--- pypy/files/patch-lib__pypyX.Y__lib_pypy__ctypes_config_cache__rebuild.py	(revision 0)
+++ pypy/files/patch-lib__pypyX.Y__lib_pypy__ctypes_config_cache__rebuild.py	(working copy)
@@ -0,0 +1,11 @@
+--- lib/pypy2.0/lib_pypy/ctypes_config_cache/rebuild.py~	2012-06-22 11:42:55.000000000 +0200
++++ lib/pypy2.0/lib_pypy/ctypes_config_cache/rebuild.py	2012-06-22 11:43:12.000000000 +0200
+@@ -6,7 +6,7 @@
+ # get the correct path
+ import os.path
+ this_dir = os.path.dirname(__file__)
+-autopath_py = os.path.join(this_dir, '../../pypy/tool/autopath.py')
++autopath_py = os.path.join(this_dir, '../../../../pypy/tool/autopath.py')
+ autopath_py = os.path.abspath(autopath_py)
+ execfile(autopath_py, dict(__name__='autopath', __file__=autopath_py))
+ 

Property changes on: pypy/files/patch-lib__pypyX.Y__lib_pypy__ctypes_config_cache__rebuild.py
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Index: pypy/files/patch-lib__pypyX.Y__sysconfig.py
===================================================================
--- pypy/files/patch-lib__pypyX.Y__sysconfig.py	(revision 0)
+++ pypy/files/patch-lib__pypyX.Y__sysconfig.py	(working copy)
@@ -0,0 +1,40 @@
+--- lib/pypy2.0/sysconfig.py.orig	2012-07-15 09:57:14.000000000 +0200
++++ lib/pypy2.0/sysconfig.py	2012-07-15 10:03:25.000000000 +0200
+@@ -27,12 +27,12 @@
+         'data'   : '{base}',
+         },
+     'pypy': {
+-        'stdlib': '{base}/lib-python',
+-        'platstdlib': '{base}/lib-python',
+-        'purelib': '{base}/lib-python',
+-        'platlib': '{base}/lib-python',
+-        'include': '{base}/include',
+-        'platinclude': '{base}/include',
++        'stdlib': '{base}/lib/pypy{pypy_version_short}',
++        'platstdlib': '{platbase}/lib/pypy{pypy_version_short}',
++        'purelib': '{base}/lib/pypy{pypy_version_short}',
++        'platlib': '{platbase}/lib/pypy{pypy_version_short}',
++        'include': '{base}/include{pypy_version_short}',
++        'platinclude': '{platbase}/include/pypy{pypy_version_short}',
+         'scripts': '{base}/bin',
+         'data'   : '{base}',
+         },
+@@ -98,6 +98,8 @@
+                 'scripts', 'data')
+ _PY_VERSION = sys.version.split()[0]
+ _PY_VERSION_SHORT = sys.version[:3]
++_PYPY_VERSION = sys.version.rsplit(' ', 1)[-1][:-1]
++_PYPY_VERSION_SHORT = _PYPY_VERSION[:3]
+ _PY_VERSION_SHORT_NO_DOT = _PY_VERSION[0] + _PY_VERSION[2]
+ _PREFIX = os.path.normpath(sys.prefix)
+ _EXEC_PREFIX = os.path.normpath(sys.exec_prefix)
+@@ -304,6 +306,9 @@
+         _CONFIG_VARS['py_version'] = _PY_VERSION
+         _CONFIG_VARS['py_version_short'] = _PY_VERSION_SHORT
+         _CONFIG_VARS['py_version_nodot'] = _PY_VERSION[0] + _PY_VERSION[2]
++        _CONFIG_VARS['py_version'] = _PYPY_VERSION
++        _CONFIG_VARS['pypy_version_short'] = _PYPY_VERSION_SHORT
++        _CONFIG_VARS['pypy_version_nodot'] = _PYPY_VERSION[0] + _PYPY_VERSION[2]
+         _CONFIG_VARS['base'] = _PREFIX
+         _CONFIG_VARS['platbase'] = _EXEC_PREFIX
+         _CONFIG_VARS['projectbase'] = _PROJECT_BASE

Property changes on: pypy/files/patch-lib__pypyX.Y__sysconfig.py
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: fbsd:nokeywords
## -0,0 +1 ##
+1
\ No newline at end of property
Index: pypy/files/patch-py___path__local.py
===================================================================
--- pypy/files/patch-py___path__local.py	(revision 312473)
+++ pypy/files/patch-py___path__local.py	(working copy)
@@ -1,12 +0,0 @@
---- py/_path/local.py~	2012-06-22 12:20:36.000000000 +0200
-+++ py/_path/local.py	2012-06-22 12:21:45.000000000 +0200
-@@ -516,6 +516,9 @@
-             pkgpath = self.pypkgpath()
-             if pkgpath is not None:
-                 if ensuresyspath:
-+                    import sys
-+                    if pkgpath.basename in sys.modules:
-+                        del sys.modules[pkgpath.basename]
-                     self._prependsyspath(pkgpath.dirpath())
-                 pkg = __import__(pkgpath.basename, None, None, [])
-                 names = self.new(ext='').relto(pkgpath.dirpath())
Index: pypy/files/patch-pypy__module__sys__initpath.py
===================================================================
--- pypy/files/patch-pypy__module__sys__initpath.py	(revision 0)
+++ pypy/files/patch-pypy__module__sys__initpath.py	(working copy)
@@ -0,0 +1,21 @@
+--- pypy/module/sys/initpath.py.orig	2012-11-27 18:15:02.000000000 +0200
++++ pypy/module/sys/initpath.py	2012-11-27 18:19:45.000000000 +0200
+@@ -91,14 +91,13 @@
+     least contain a directory called ``lib-python/X.Y`` and another one called
+     ``lib_pypy``. If they cannot be found, it raises OSError.
+     """
+-    from pypy.module.sys.version import CPYTHON_VERSION
+-    dirname = '%d.%d' % (CPYTHON_VERSION[0],
+-                         CPYTHON_VERSION[1])
+-    lib_python = os.path.join(prefix, 'lib-python')
++    from pypy.module.sys.version import PYPY_VERSION
++    dirname = 'pypy%d.%d' % PYPY_VERSION[:2]
++    lib_python = os.path.join(prefix, 'lib')
+     python_std_lib = os.path.join(lib_python, dirname)
+     checkdir(python_std_lib)
+     
+-    lib_pypy = os.path.join(prefix, 'lib_pypy')
++    lib_pypy = os.path.join(python_std_lib, 'lib_pypy')
+     checkdir(lib_pypy)
+ 
+     importlist = []

Property changes on: pypy/files/patch-pypy__module__sys__initpath.py
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Index: pypy/files/patch-pypy__module__sys__state.py
===================================================================
--- pypy/files/patch-pypy__module__sys__state.py	(revision 312473)
+++ pypy/files/patch-pypy__module__sys__state.py	(working copy)
@@ -1,21 +0,0 @@
---- pypy/module/sys/state.py.orig	2012-06-07 14:24:48.000000000 +0200
-+++ pypy/module/sys/state.py	2012-06-22 14:45:23.000000000 +0200
-@@ -36,14 +36,12 @@
- platform = sys.platform
- 
- def getinitialpath(state, prefix):
--    from pypy.module.sys.version import CPYTHON_VERSION
--    dirname = '%d.%d' % (CPYTHON_VERSION[0],
--                         CPYTHON_VERSION[1])
--    lib_python = os.path.join(prefix, 'lib-python')
--    python_std_lib = os.path.join(lib_python, dirname)
-+    from pypy.module.sys.version import PYPY_VERSION
-+    libpath = os.path.join(prefix, 'lib')
-+    python_std_lib = os.path.join(libpath, 'pypy%d.%d' % PYPY_VERSION[:2])
-     checkdir(python_std_lib)
-     
--    lib_pypy = os.path.join(prefix, 'lib_pypy')
-+    lib_pypy = os.path.join(python_std_lib, 'lib_pypy')
-     checkdir(lib_pypy)
- 
-     importlist = []
Index: pypy/files/patch-pypy__translator__platform__freebsd.py
===================================================================
--- pypy/files/patch-pypy__translator__platform__freebsd.py	(revision 0)
+++ pypy/files/patch-pypy__translator__platform__freebsd.py	(working copy)
@@ -0,0 +1,61 @@
+--- ./pypy/translator/platform/freebsd.py.orig	2012-11-22 14:52:20.000000000 +0200
++++ ./pypy/translator/platform/freebsd.py	2013-02-28 19:28:49.000000000 +0200
+@@ -4,23 +4,15 @@
+ 
+ from pypy.translator.platform import posix
+ 
+-def get_env(key, default):
+-    if key in os.environ:
+-        return os.environ[key]
+-    else:
+-        return default
+-
+-def get_env_vector(key, default):
+-    string = get_env(key, default)
+-    # XXX: handle quotes
+-    return string.split()
++if 'PYPY_LOCALBASE' not in os.environ:
++    os.environ['PYPY_LOCALBASE'] = os.environ.get('LOCALBASE', '/usr/local')
+ 
+ class Freebsd(posix.BasePosix):
+     name = "freebsd"
+ 
+-    link_flags = ['-pthread'] + get_env_vector('LDFLAGS', '')
++    link_flags = ['-pthread'] + os.environ.get('LDFLAGS', '').split()
+     cflags = ['-O3', '-pthread', '-fomit-frame-pointer'
+-             ] + get_env_vector('CFLAGS', '')
++             ] + os.environ.get('CFLAGS', '').split()
+     standalone_only = []
+     shared_only = []
+     so_ext = 'so'
+@@ -28,27 +20,17 @@
+ 
+     def __init__(self, cc=None):
+         if cc is None:
+-            cc = get_env("CC", "gcc")
++            cc = os.environ.get('CC', 'cc')
+         super(Freebsd, self).__init__(cc)
+ 
+     def _args_for_shared(self, args):
+         return ['-shared'] + args
+ 
+-    def _preprocess_include_dirs(self, include_dirs):
+-        res_incl_dirs = list(include_dirs)
+-        res_incl_dirs.append(os.path.join(get_env("LOCALBASE", "/usr/local"), "include"))
+-        return res_incl_dirs
+-
+-    def _preprocess_library_dirs(self, library_dirs):
+-        res_lib_dirs = list(library_dirs)
+-        res_lib_dirs.append(os.path.join(get_env("LOCALBASE", "/usr/local"), "lib"))
+-        return res_lib_dirs
+-
+     def _include_dirs_for_libffi(self):
+-        return [os.path.join(get_env("LOCALBASE", "/usr/local"), "include")]
++        return []
+ 
+     def _library_dirs_for_libffi(self):
+-        return [os.path.join(get_env("LOCALBASE", "/usr/local"), "lib")]
++        return []
+ 
+ class Freebsd_64(Freebsd):
+     shared_only = ('-fPIC',)

Property changes on: pypy/files/patch-pypy__translator__platform__freebsd.py
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Index: pypy/files/patch-pypy__translator__sandbox__pypy_interactive.py
===================================================================
--- pypy/files/patch-pypy__translator__sandbox__pypy_interactive.py	(revision 0)
+++ pypy/files/patch-pypy__translator__sandbox__pypy_interactive.py	(working copy)
@@ -0,0 +1,32 @@
+--- pypy/translator/sandbox/pypy_interact.py.orig	2012-06-07 14:24:48.000000000 +0200
++++ pypy/translator/sandbox/pypy_interact.py	2012-07-02 21:08:19.000000000 +0200
+@@ -24,11 +24,14 @@
+ 
+ import sys, os
+ import autopath
++from pypy.module.sys.version import PYPY_VERSION
+ from pypy.translator.sandbox.sandlib import SimpleIOSandboxedProc
+ from pypy.translator.sandbox.sandlib import VirtualizedSandboxedProc
+ from pypy.translator.sandbox.vfs import Dir, RealDir, RealFile
+ import pypy
+ LIB_ROOT = os.path.dirname(os.path.dirname(pypy.__file__))
++LIB_ROOT = os.path.join(LIB_ROOT, 'lib')
++LIB_ROOT = os.path.join(LIB_ROOT, 'pypy%d.%d' % PYPY_VERSION[:2])
+ 
+ class PyPySandboxedProc(VirtualizedSandboxedProc, SimpleIOSandboxedProc):
+     argv0 = '/bin/pypy-c'
+@@ -58,10 +61,10 @@
+         return Dir({
+             'bin': Dir({
+                 'pypy-c': RealFile(self.executable),
+-                'lib-python': RealDir(os.path.join(libroot, 'lib-python'),
+-                                      exclude=exclude), 
+-                'lib_pypy': RealDir(os.path.join(libroot, 'lib_pypy'),
+-                                      exclude=exclude),
++                'lib': Dir({
++                    'pypy%d.%d' % PYPY_VERSION[:2] : RealDir(libroot, 
++                                                             exclude=exclude)
++                    })
+                 }),
+              'tmp': tmpdirnode,
+              })

Property changes on: pypy/files/patch-pypy__translator__sandbox__pypy_interactive.py
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Index: pypy/pkg-descr
===================================================================
--- pypy/pkg-descr	(revision 312473)
+++ pypy/pkg-descr	(working copy)
@@ -1,5 +1,5 @@
 PyPy is a fast, compliant alternative implementation of the Python language
-(2.7.2). It has several advantages and distinct features:
+(2.7.1). It has several advantages and distinct features:
 
  - Speed: thanks to its Just-in-Time compiler, Python programs often run faster
           on PyPy.
Index: pypy/pkg-plist
===================================================================
--- pypy/pkg-plist	(revision 312473)
+++ pypy/pkg-plist	(working copy)
@@ -1447,8 +1447,6 @@
 %%PYPY_LIBDIR%%/lib2to3/tests/test_refactor.pyc
 %%PYPY_LIBDIR%%/lib2to3/tests/test_util.py
 %%PYPY_LIBDIR%%/lib2to3/tests/test_util.pyc
-%%PYPY_LIBDIR%%/lib_pypy/PyQt4.py
-%%PYPY_LIBDIR%%/lib_pypy/PyQt4.pyc
 %%PYPY_LIBDIR%%/lib_pypy/__init__.py
 %%PYPY_LIBDIR%%/lib_pypy/__init__.pyc
 %%PYPY_LIBDIR%%/lib_pypy/_codecs_cn.py
@@ -1509,8 +1507,6 @@
 %%PYPY_LIBDIR%%/lib_pypy/_pypy_irc_topic.pyc
 %%PYPY_LIBDIR%%/lib_pypy/_pypy_wait.py
 %%PYPY_LIBDIR%%/lib_pypy/_pypy_wait.pyc
-%%PYPY_LIBDIR%%/lib_pypy/_rpyc_support.py
-%%PYPY_LIBDIR%%/lib_pypy/_rpyc_support.pyc
 %%PYPY_LIBDIR%%/lib_pypy/_scproxy.py
 %%PYPY_LIBDIR%%/lib_pypy/_scproxy.pyc
 %%PYPY_LIBDIR%%/lib_pypy/_sha.py
@@ -1570,28 +1566,6 @@
 %%PYPY_LIBDIR%%/lib_pypy/dbm.pyc
 %%PYPY_LIBDIR%%/lib_pypy/disassembler.py
 %%PYPY_LIBDIR%%/lib_pypy/disassembler.pyc
-%%PYPY_LIBDIR%%/lib_pypy/distributed/__init__.py
-%%PYPY_LIBDIR%%/lib_pypy/distributed/__init__.pyc
-%%PYPY_LIBDIR%%/lib_pypy/distributed/demo/sockdemo.py
-%%PYPY_LIBDIR%%/lib_pypy/distributed/demo/sockdemo.pyc
-%%PYPY_LIBDIR%%/lib_pypy/distributed/faker.py
-%%PYPY_LIBDIR%%/lib_pypy/distributed/faker.pyc
-%%PYPY_LIBDIR%%/lib_pypy/distributed/objkeeper.py
-%%PYPY_LIBDIR%%/lib_pypy/distributed/objkeeper.pyc
-%%PYPY_LIBDIR%%/lib_pypy/distributed/protocol.py
-%%PYPY_LIBDIR%%/lib_pypy/distributed/protocol.pyc
-%%PYPY_LIBDIR%%/lib_pypy/distributed/socklayer.py
-%%PYPY_LIBDIR%%/lib_pypy/distributed/socklayer.pyc
-%%PYPY_LIBDIR%%/lib_pypy/distributed/support.py
-%%PYPY_LIBDIR%%/lib_pypy/distributed/support.pyc
-%%PYPY_LIBDIR%%/lib_pypy/distributed/test/__init__.py
-%%PYPY_LIBDIR%%/lib_pypy/distributed/test/__init__.pyc
-%%PYPY_LIBDIR%%/lib_pypy/distributed/test/test_distributed.py
-%%PYPY_LIBDIR%%/lib_pypy/distributed/test/test_distributed.pyc
-%%PYPY_LIBDIR%%/lib_pypy/distributed/test/test_greensock.py
-%%PYPY_LIBDIR%%/lib_pypy/distributed/test/test_greensock.pyc
-%%PYPY_LIBDIR%%/lib_pypy/distributed/test/test_socklayer.py
-%%PYPY_LIBDIR%%/lib_pypy/distributed/test/test_socklayer.pyc
 %%PYPY_LIBDIR%%/lib_pypy/future_builtins.py
 %%PYPY_LIBDIR%%/lib_pypy/future_builtins.pyc
 %%PYPY_LIBDIR%%/lib_pypy/greenlet.py
@@ -1600,8 +1574,6 @@
 %%PYPY_LIBDIR%%/lib_pypy/grp.pyc
 %%PYPY_LIBDIR%%/lib_pypy/identity_dict.py
 %%PYPY_LIBDIR%%/lib_pypy/identity_dict.pyc
-%%PYPY_LIBDIR%%/lib_pypy/itertools.py
-%%PYPY_LIBDIR%%/lib_pypy/itertools.pyc
 %%PYPY_LIBDIR%%/lib_pypy/marshal.py
 %%PYPY_LIBDIR%%/lib_pypy/marshal.pyc
 %%PYPY_LIBDIR%%/lib_pypy/msvcrt.py
@@ -1634,8 +1606,6 @@
 %%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_collections.pyc
 %%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_coroutine.py
 %%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_coroutine.pyc
-%%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_ctypes_support.py
-%%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_ctypes_support.pyc
 %%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_datetime.py
 %%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_datetime.pyc
 %%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_dbm_extra.py
@@ -1648,8 +1618,6 @@
 %%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_exception_extra.pyc
 %%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_grp_extra.py
 %%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_grp_extra.pyc
-%%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_itertools.py
-%%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_itertools.pyc
 %%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_marshal_extra.py
 %%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_marshal_extra.pyc
 %%PYPY_LIBDIR%%/lib_pypy/pypy_test/test_md5_extra.py
@@ -1734,8 +1702,6 @@
 %%PYPY_LIBDIR%%/lib_pypy/readline.pyc
 %%PYPY_LIBDIR%%/lib_pypy/resource.py
 %%PYPY_LIBDIR%%/lib_pypy/resource.pyc
-%%PYPY_LIBDIR%%/lib_pypy/sip.py
-%%PYPY_LIBDIR%%/lib_pypy/sip.pyc
 %%PYPY_LIBDIR%%/lib_pypy/stackless.py
 %%PYPY_LIBDIR%%/lib_pypy/stackless.pyc
 %%PYPY_LIBDIR%%/lib_pypy/syslog.py
@@ -2503,6 +2469,10 @@
 %%PYPY_LIBDIR%%/test/cjkencodings/gbk.txt
 %%PYPY_LIBDIR%%/test/cjkencodings/hz-utf8.txt
 %%PYPY_LIBDIR%%/test/cjkencodings/hz.txt
+%%PYPY_LIBDIR%%/test/cjkencodings/iso2022_jp-utf8.txt
+%%PYPY_LIBDIR%%/test/cjkencodings/iso2022_jp.txt
+%%PYPY_LIBDIR%%/test/cjkencodings/iso2022_kr-utf8.txt
+%%PYPY_LIBDIR%%/test/cjkencodings/iso2022_kr.txt
 %%PYPY_LIBDIR%%/test/cjkencodings/johab-utf8.txt
 %%PYPY_LIBDIR%%/test/cjkencodings/johab.txt
 %%PYPY_LIBDIR%%/test/cjkencodings/shift_jis-utf8.txt
@@ -2721,6 +2691,7 @@
 %%PYPY_LIBDIR%%/test/mapping_tests.py
 %%PYPY_LIBDIR%%/test/mapping_tests.pyc
 %%PYPY_LIBDIR%%/test/math_testcases.txt
+%%PYPY_LIBDIR%%/test/nokia.pem
 %%PYPY_LIBDIR%%/test/nullcert.pem
 %%PYPY_LIBDIR%%/test/outstanding_bugs.py
 %%PYPY_LIBDIR%%/test/outstanding_bugs.pyc
@@ -2741,8 +2712,6 @@
 %%PYPY_LIBDIR%%/test/randv3.pck
 %%PYPY_LIBDIR%%/test/re_tests.py
 %%PYPY_LIBDIR%%/test/re_tests.pyc
-%%PYPY_LIBDIR%%/test/regex_tests.py
-%%PYPY_LIBDIR%%/test/regex_tests.pyc
 %%PYPY_LIBDIR%%/test/regrtest.py
 %%PYPY_LIBDIR%%/test/regrtest.pyc
 %%PYPY_LIBDIR%%/test/relimport.py
@@ -2765,7 +2734,6 @@
 %%PYPY_LIBDIR%%/test/string_tests.pyc
 %%PYPY_LIBDIR%%/test/subprocessdata/sigchild_ignore.py
 %%PYPY_LIBDIR%%/test/subprocessdata/sigchild_ignore.pyc
-%%PYPY_LIBDIR%%/test/svn_python_org_https_cert.pem
 %%PYPY_LIBDIR%%/test/test_MimeWriter.py
 %%PYPY_LIBDIR%%/test/test_MimeWriter.pyc
 %%PYPY_LIBDIR%%/test/test_SimpleHTTPServer.py
@@ -2878,6 +2846,8 @@
 %%PYPY_LIBDIR%%/test/test_codecencodings_cn.pyc
 %%PYPY_LIBDIR%%/test/test_codecencodings_hk.py
 %%PYPY_LIBDIR%%/test/test_codecencodings_hk.pyc
+%%PYPY_LIBDIR%%/test/test_codecencodings_iso2022.py
+%%PYPY_LIBDIR%%/test/test_codecencodings_iso2022.pyc
 %%PYPY_LIBDIR%%/test/test_codecencodings_jp.py
 %%PYPY_LIBDIR%%/test/test_codecencodings_jp.pyc
 %%PYPY_LIBDIR%%/test/test_codecencodings_kr.py
@@ -3299,6 +3269,8 @@
 %%PYPY_LIBDIR%%/test/test_pwd.pyc
 %%PYPY_LIBDIR%%/test/test_py3kwarn.py
 %%PYPY_LIBDIR%%/test/test_py3kwarn.pyc
+%%PYPY_LIBDIR%%/test/test_py_compile.py
+%%PYPY_LIBDIR%%/test/test_py_compile.pyc
 %%PYPY_LIBDIR%%/test/test_pyclbr.py
 %%PYPY_LIBDIR%%/test/test_pyclbr.pyc
 %%PYPY_LIBDIR%%/test/test_pydoc.py
@@ -3803,9 +3775,6 @@
 @dirrm %%PYPY_LIBDIR%%/lib_pypy/pypy_test
 @dirrm %%PYPY_LIBDIR%%/lib_pypy/numpypy/core
 @dirrm %%PYPY_LIBDIR%%/lib_pypy/numpypy
-@dirrm %%PYPY_LIBDIR%%/lib_pypy/distributed/test
-@dirrm %%PYPY_LIBDIR%%/lib_pypy/distributed/demo
-@dirrm %%PYPY_LIBDIR%%/lib_pypy/distributed
 @dirrm %%PYPY_LIBDIR%%/lib_pypy/ctypes_config_cache/test
 @dirrm %%PYPY_LIBDIR%%/lib_pypy/ctypes_config_cache
 @dirrm %%PYPY_LIBDIR%%/lib_pypy/_ctypes

Attachment: signature.asc
Description: This is a digitally signed message part.

Reply via email to