summaryrefslogtreecommitdiff
path: root/lang/py-cxfreeze
AgeCommit message (Collapse)AuthorFilesLines
2012-10-02Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-05-22Update py-cxfreeze to 4.2.3.obache4-30/+41
While here, * register egg-info. * add patch to enable rpath, custom post-build should not be required anymore. Changes from 4.2.2 to 4.2.3 1) Added support for Python 3.2. 2) Added hook for datetime module which implicitly imports the time module. 3) Fixed hook for tkinter in Python 3.x. 4) Always include the zlib module since the zipimport module requires it, even when compression is not taking place. 5) Added sample for a tkinter application.
2011-12-03Tag the 28 locations that result in a Python 3.1 package as supporting so.joerg1-1/+3
Remove it from the default list for the rest.
2011-01-11update to 4.2.2, from Helge Muehlmeier per PR pkg/44315 (but withoutdrochner3-8/+10
the extra symlink which would conflict if installed for multiple Python versions) changes: misc fixes and feature extensions
2010-08-15add py-cxfreeze-4.2, a (sort of) compiler which makes a standalonedrochner6-0/+140
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.