From f94299829eba8a527c26ee3ddc88fac9e79438dc Mon Sep 17 00:00:00 2001 From: rodent <rodent@pkgsrc.org> Date: Thu, 7 Aug 2014 01:58:35 +0000 Subject: py2app 0.9 ---------- - issue #146, #147: The "python" binary in MyApp.app/Contents/MacOS was the small stub exetable from framework builds, instead of the actual command-line interpreter. The result is that you couldn't use ``sys.executable`` to start a new interpreter, which (amongst others) breaks multiprocessing. - pull request #7: Add support for PyQt5 to the sip recipe. Patch by Mark Montague. - pull request #4: Copying PySide plugins was broken due to bad indentation. - pull request #5: py2app was broken for python versions that don't use _sysconfigdata. - issue #135: Don't sleep for a second after compiling a XIB file - issue #134: Remove target location before copying files into the bundle. - issue #133: Ensure that the application's "Framework" folder is on the search path for ``ctypes.util.find_library``. - issue #132: Depend on modulegraph 0.12 to avoid build errors when the python code contains references to compatibility modules that contain SyntaxErrors for the current python version. - Explicitly report modules that cannot be found at the end of the run (for non-alias builds) Note: This is just a warning, missing modules are not necessarily a problem because modulegraph can detect imports for modules that aren't used on OSX (for example) - Report modules that contain syntax errors at the end of the run (for non-alias builds) Note: This is just a warning, syntax errors be valid when the dependency tree contains modules for the other major release of python (e.g a compat_py2 module that contains compatibility code for Python 2 and contains code that isn't valid Python 3) --- devel/py-py2app/Makefile | 4 ++-- devel/py-py2app/PLIST | 17 +++++++++++++++-- devel/py-py2app/distinfo | 8 ++++---- 3 files changed, 21 insertions(+), 8 deletions(-) (limited to 'devel/py-py2app') diff --git a/devel/py-py2app/Makefile b/devel/py-py2app/Makefile index c47f403c7ca..af303c42e72 100644 --- a/devel/py-py2app/Makefile +++ b/devel/py-py2app/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2014/06/01 01:08:48 rodent Exp $ +# $NetBSD: Makefile,v 1.4 2014/08/07 01:58:35 rodent Exp $ -DISTNAME= py2app-0.8.1 +DISTNAME= py2app-0.9 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel MASTER_SITES= https://pypi.python.org/packages/source/p/py2app/ diff --git a/devel/py-py2app/PLIST b/devel/py-py2app/PLIST index 66c6acb2f5c..bb499b262bf 100644 --- a/devel/py-py2app/PLIST +++ b/devel/py-py2app/PLIST @@ -1,9 +1,10 @@ -@comment $NetBSD: PLIST,v 1.2 2014/02/10 00:20:27 rodent Exp $ -bin/py2applet${PYVERSSUFFIX} +@comment $NetBSD: PLIST,v 1.3 2014/08/07 01:58:35 rodent Exp $ +bin/py2applet2.7 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe ${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/py2app/__init__.py @@ -63,6 +64,9 @@ ${PYSITELIB}/py2app/bootstrap/boot_plugin.pyo ${PYSITELIB}/py2app/bootstrap/chdir_resource.py ${PYSITELIB}/py2app/bootstrap/chdir_resource.pyc ${PYSITELIB}/py2app/bootstrap/chdir_resource.pyo +${PYSITELIB}/py2app/bootstrap/ctypes_setup.py +${PYSITELIB}/py2app/bootstrap/ctypes_setup.pyc +${PYSITELIB}/py2app/bootstrap/ctypes_setup.pyo ${PYSITELIB}/py2app/bootstrap/disable_linecache.py ${PYSITELIB}/py2app/bootstrap/disable_linecache.pyc ${PYSITELIB}/py2app/bootstrap/disable_linecache.pyo @@ -157,9 +161,15 @@ ${PYSITELIB}/py2app/recipes/__init__.pyo ${PYSITELIB}/py2app/recipes/cjkcodecs.py ${PYSITELIB}/py2app/recipes/cjkcodecs.pyc ${PYSITELIB}/py2app/recipes/cjkcodecs.pyo +${PYSITELIB}/py2app/recipes/ctypes.py +${PYSITELIB}/py2app/recipes/ctypes.pyc +${PYSITELIB}/py2app/recipes/ctypes.pyo ${PYSITELIB}/py2app/recipes/docutils.py ${PYSITELIB}/py2app/recipes/docutils.pyc ${PYSITELIB}/py2app/recipes/docutils.pyo +${PYSITELIB}/py2app/recipes/ftplib.py +${PYSITELIB}/py2app/recipes/ftplib.pyc +${PYSITELIB}/py2app/recipes/ftplib.pyo ${PYSITELIB}/py2app/recipes/lxml.py ${PYSITELIB}/py2app/recipes/lxml.pyc ${PYSITELIB}/py2app/recipes/lxml.pyo @@ -203,6 +213,9 @@ ${PYSITELIB}/py2app/recipes/virtualenv.pyo ${PYSITELIB}/py2app/recipes/wx.py ${PYSITELIB}/py2app/recipes/wx.pyc ${PYSITELIB}/py2app/recipes/wx.pyo +${PYSITELIB}/py2app/recipes/xml.py +${PYSITELIB}/py2app/recipes/xml.pyc +${PYSITELIB}/py2app/recipes/xml.pyo ${PYSITELIB}/py2app/script_py2applet.py ${PYSITELIB}/py2app/script_py2applet.pyc ${PYSITELIB}/py2app/script_py2applet.pyo diff --git a/devel/py-py2app/distinfo b/devel/py-py2app/distinfo index 44650a25ca2..666311c8b9c 100644 --- a/devel/py-py2app/distinfo +++ b/devel/py-py2app/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2014/06/01 01:08:48 rodent Exp $ +$NetBSD: distinfo,v 1.3 2014/08/07 01:58:35 rodent Exp $ -SHA1 (py2app-0.8.1.tar.gz) = 9cc19cb03422f82021d8eb2d9b1830b95606af68 -RMD160 (py2app-0.8.1.tar.gz) = 93e087a702718bebce128a06fabec76ae540f5a2 -Size (py2app-0.8.1.tar.gz) = 1565011 bytes +SHA1 (py2app-0.9.tar.gz) = 7a3e436b5c8f8da00d12e7b76b2f7ba282066902 +RMD160 (py2app-0.9.tar.gz) = 75f645d0605cf883dae7e05f6b597348e4ba6d63 +Size (py2app-0.9.tar.gz) = 1665337 bytes -- cgit v1.2.3