summaryrefslogtreecommitdiff
path: root/lang/py-cxfreeze/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2010-08-15 10:45:57 +0000
committerdrochner <drochner@pkgsrc.org>2010-08-15 10:45:57 +0000
commitecf0ccfe4e14648d33597e412e5cb272bb08f197 (patch)
treeb2e8c0a8e49ca16bc033bdacc262762080c23506 /lang/py-cxfreeze/patches
parent0b76f8ba6f96b36fa91b737eb909f8603f32208e (diff)
downloadpkgsrc-ecf0ccfe4e14648d33597e412e5cb272bb08f197.tar.gz
add py-cxfreeze-4.2, a (sort of) compiler which makes a standalone
executable of a Python script, from Helge Muehlmeier per pkgsrc-wip This pkg abuses Python distutils in a non-portable way, so I've added a hack which relinks the startup code behind setuptools' back. This is easier than patching the setup.py script into doing trt.
Diffstat (limited to 'lang/py-cxfreeze/patches')
-rw-r--r--lang/py-cxfreeze/patches/patch-aa13
1 files changed, 13 insertions, 0 deletions
diff --git a/lang/py-cxfreeze/patches/patch-aa b/lang/py-cxfreeze/patches/patch-aa
new file mode 100644
index 00000000000..f9f4aec9f68
--- /dev/null
+++ b/lang/py-cxfreeze/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2010/08/15 10:45:57 drochner Exp $
+
+--- setup.py.orig 2010-07-19 19:00:21.000000000 +0000
++++ setup.py
+@@ -238,7 +238,7 @@ setup(name = "cx_Freeze",
+ maintainer="Anthony Tuininga",
+ maintainer_email="anthony.tuininga@gmail.com",
+ url = "http://cx-freeze.sourceforge.net",
+- scripts = ["cxfreeze"],
++ scripts = ["cxfreeze" + sys.version[:3]],
+ classifiers = classifiers,
+ keywords = "freeze",
+ license = "Python Software Foundation License")