cx-freeze 4.0.1-0ubuntu6 source package in Ubuntu

Changelog

cx-freeze (4.0.1-0ubuntu6) precise; urgency=low

  * debian/patches/handle_pyc_in_load_module.patch: LP: #473610, #633594
    - the web is crawling with reports of cx-freeze failing to compile
      even simple hello world python code
    - I have reproduced the issue on multiple Ubuntu development system,
      and adapted a "fix" from:
      + http://ubuntuforums.org/showthread.php?t=1500926
    - basically, .pyc files need to be handled in a special manner
 -- Dustin Kirkland <email address hidden>   Mon, 13 Feb 2012 16:02:12 -0600

Upload details

Uploaded by:
Dustin Kirkland 
Uploaded to:
Precise
Original maintainer:
Siegfried Gevatter
Architectures:
any
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe python

Downloads

File Size SHA-256 Checksum
cx-freeze_4.0.1.orig.tar.gz 43.8 KiB 6809d797db71f498fe2d49f4b020a52ee22f3b04896b1c433e2e80495e3c1fc4
cx-freeze_4.0.1-0ubuntu6.diff.gz 5.1 KiB 71af341716493e244619d68600c1169df3b4a3ace0197937038d6e097ce7e04b
cx-freeze_4.0.1-0ubuntu6.dsc 1.7 KiB 3efeb5cf27da26167f8c83332bb7e7f8588a65633dad16c623a0f85e613fa1d3

Available diffs

View changes file

Binary packages built by this source

cx-freeze: create standalone executables from Python scripts

 cx_Freeze is an application which allows you to freeze Python code into
 executable files, in a way similar to how py2exe and py2app work.
 .
 There are three different ways how you can use cx_Freeze:
  * Use the included cxfreeze command which works well for simple scripts.
  * Create a distutils setup script which can be used for more complicated
    configurations or to retain the configuration for future use.
  * Work directly with the classes and modules used internally by cx_Freeze;
    this should be reserved for complicated scripts, extending or embedding.