* Fri Sep 13 2019 Tomá? Chvátal <tchvatal@suse.com>
- Conflict with python2-cx_Freeze as we are no longer update-alternatives
set up package but provide only py3 variant
* Fri Sep 13 2019 Jan Engelhardt <jengelh@inai.de>
- Use noun phrase.
* Fri Sep 13 2019 Tomá? Chvátal <tchvatal@suse.com>
- Update to 6.0:
* Corrected support for Python 3.7 (PR #395).
* Use importlib and other Python 3 improvements (PR #484, PR #485, PR #486, PR #490).
* Fixed issue with @rpath causing file copy errors on macOS (PR #307).
* Replaced file() with open() and use context manager to ensure the file handle is closed and deleted (PR #348).
* Corrected invalid version handling in bdist_msi (PR #349, Issue #340).
* Corrected hook for clr module (PR #397, PR #444).
* Corrected documentation for compress option (PR #358).
* Ensure that the pythoncom and pywintypes DLLs are found in the lib directory and not in the base directory (Issue #332).
* Always copy dependent files to root directory on macOS (PR #365).
* Skip self referencing archive on macOS (PR #364, Issue #304).
* Include doc directory in source distribution (PR #394, Issue #376).
* Force msilib module to be reloaded in order to allow for the generation of multiple MSI packages in a single session (PR #419).
* Added hook for PyQt5.QtPrintSupport module (PR #401).
* Added ability to include an icon on the add/remove program window that pops up during installation (PR #387).
* Prevent spurious errors from being printed during building on macOS by checking to see that a file is a Mach-O binary before adding it to the list of files it is checking the reference of (PR #342, Issue #268).
* Avoid otool bug on macOS Yosemite (PR #297, Issue #292).
* Added ability to specify environment variables that should be created when an MSI package is installed (PR #266).
* Added support for including resources in an app bundle for macOS (PR #423).
* Added absolute reference path option for macOS packages (PR #424).
* Added CFBundle identifier for macOS packages (PR #427, Issue #426).
* Added hook for copying SSL DLLs for Python 3.7+ on Windows (PR #470).
* Added -municode flag when building on Windows with mingw32 (PR #468).
* Added hook for pycparser (PR #446).
* Fixed hook for zmq so it doesn?t fail when there is no bundled libzmq library in the installed pyzmq package (PR #442).
* Print error when fetching dependent files fails (PR #435).
* Make executable writable before adding the icon (PR #430, Issue #368).
* Dropped support for RPM and MSI packages for cx_Freeze itself since these are no longer supported by PyPI.
* Fix building console app with mingw32 (PR #475).
* Force inclusion of the unicodedata module which is used by the socket module, and possibly others (PR #476).
* Added hook for asyncio package (PR #477).
* Added hook for idna package (PR #478).
* Added hook for pkg_resources package (PR #481).
* Added hook for gevent (PR #495).
* Force .exe extension to be included on Windows, so that the same setup code can be used on both Linux and Windows (PR #489).
* Added hook for Pillow (PR #491).
* Improved hook for tkinter (PR #493).
* Avoid attempting to check for dependent files on Windows when the file is not an executable or DLL (PR #492).
* Ensure that only executable files are checked for dependencies in order to avoid spurious errors when checking for dependent files.
* Improved hook for matplotlib.
* Dropped support for Python 2.x. Use cx_Freeze 5 for Python 2.x support.
* Instead of depending on the built-in functionality of searching for a zip file that looks like pythonxx.zip (which is disabled on some platforms like Ubuntu), set the Python path to include a subdirectory called ?lib? and a zip file ?lib/library.zip? on all platforms.
* Do not create version resource when version is omitted (PR #279).
* Ensure the sqlite3 DLL is loaded in the same directory as the module which depends on it (Issue #296).
Version: 5.1.1-bp151.1.1
* Fri May 18 2018 jengelh@inai.de
- Add limitations of CX_Freeze to the descriptions.
* Wed May 09 2018 toddrme2178@gmail.com
- Update to 5.1.1
* See changelog at https://github.com/anthony-tuininga/cx_Freeze/blob/5.1.1/doc/releasenotes.rst
- Add license file
* Wed Oct 18 2017 toddrme2178@gmail.com
- Implement single-spec version
- Update to 5.1
* See changelog at https://github.com/anthony-tuininga/cx_Freeze/blob/5.1/doc/releasenotes.rst
* Tue Jan 14 2014 termim@gmail.com
- Update to 4.3.2:
* note: This version supports Python 2.4 and above. If you need Python
2.3 support, please use cx_Freeze 4.2.3.
* Added support for Python 3.4.
* Added hooks for PyQt4, PyQt5 and PySide to handle their plugins.
* Added support for creating a shortcut/alias to the Applications
directory within distributed DMG files for OS X.
* Improve missing modules output.
* Avoid polluting the extension module namespace when using the bootstrap
module to load the extension.
* Added support for using setuptools and pip if such tools are available.
* Added first tests; nose and mock are required to run them.
* Remove --bundle-iconfile in favor of --iconfile as a more generic
method of including the icon for bdist_mac.
* Documentation improved and FAQ added.
* Converted samples to follow PEP 8.
- Bugs fixed:
* cxfreeze-quickstart failed if the default base was not used
* scripts frozen with Python 3 fail with an ImportError trying to import
the re module
* fix bug where after a first attempt to find a module failed, the second
attempt would erroneously succeed
* stop attempting to load a module by a name that is not a valid Python
identifier
- Update to 4.3.1:
* note: This version supports Python 2.4 and above. If you need Python
2.3 support, please use cx_Freeze 4.2.3.
* Added support for the final release of Python 3.3.
* Added support for copying the MSVC runtime DLLs and manifest if desired
by using the --include-msvcr switch. Thanks to Almar Klein for the
initial patch.
* Clarified the documentation on the --replace-paths option. Thanks to
Thomas Kluyver for the patch.
- Bugs fixed:
* Producing a Mac distribution failed with a variable reference.
* Freezing a script using PyQt on a Mac failed with a type error.
* Version number reported was incorrect.
* Correct paths during installation on Windows.
- Update to 4.3:
* note: This version supports Python 2.4 and above. If you need Python
2.3 support, please use cx_Freeze 4.2.3.
* Added options to build Mac OS X application bundles and DMG packages
using ``bdist_mac`` and ``bdist_dmg`` distutils commands. Written by
Rob Reilink.
* The documentation is now using Sphinx, and is `available on
ReadTheDocs.org
<http://cx_freeze.readthedocs.org/en/latest/index.html>`_.
* Added support for Python 3.3 which uses a different compiled file
format than earlier versions of Python.
* Added support for Windows services which start automatically and which
are capable of monitoring changes in sessions such as lock and unlock.
* New ``cxfreeze-quickstart`` wizard to create a basic ``setup.py`` file.
Initially written by Thomas Kluyver.
* Included files under their original name can now be passed to
``include_files`` as a tuple with an empty second element. Written by
r_haritonov.
* File inclusions/exclusions can now be specified using a full path, or a
shared library name with a version number suffix.
- Bugs fixed:
* Messagebox display of certain errors in Windows GUI applications with
Python 3.
* Running Windows GUI applications in a path containing non-ASCII
characters.
* Calculate the correct filename for the Python shared library in Python
3.2.
* Including a package would not include the packages within that package,
only the modules within that package.
* Fri May 04 2012 toddrme2178@gmail.com
- Fix for rpmlint warnings
- Update license
* Mon Apr 30 2012 toddrme2178@gmail.com
- Split python 3 version into a seperate spec file
* Wed Dec 07 2011 saschpe@suse.de
- Define python3_sitearch for openSUSE-11.3 and 11.4
* Wed Dec 07 2011 saschpe@suse.de
- Provides/obsoletes for python3-cx_freeze
* Mon Dec 05 2011 toddrme2178@gmail.com
- Renamed the package to match the upstream naming
- Cleaned up spec file formatting
- Added a python 3 version of the package
* Sun Mar 20 2011 alexandre@exatati.com.br
- Update to 4.2.3:
- Added support for Python 3.2.
- Added hook for datetime module which implicitly imports the time module.
- Fixed hook for tkinter in Python 3.x.
- Always include the zlib module since the zipimport module requires
it, even when compression is not taking place.
- Added sample for a tkinter application.
- Regenerated spec file.
* Mon Dec 27 2010 alexandre@exatati.com.br
- Update to 4.2.2:
- Added support for namespace packages which are loaded implicitly upon
startup by injection into sys.modules.
- Added support for a Zope sample which makes use of namespace packages.
- Use the Microsoft compiler on Windows for Python 2.6 and up as some
strange behaviors were identified with Python 2.7 when compiled using
mingw32.
- Eliminate warning about -mwindows when using the Microsoft compiler for
building the Win32GUI base executable.
- Added support for creating version resources on Windows.
- Ensure that modules that are not truly required for bootstrapping are not
included in the frozen modules compiled in to the executable; otherwise,
* cannot be found at
runtime. This problem only seems to be present in Python 2.7.1 but it is a
good improvement for earlier releases of Python as well.
- Added support for setting the description for Windows services.
- Added hook for using the widget plugins which are part of the PyQt4.uic
package.
- Added additional hooks to remove spurious errors about missing modules
and to force inclusion of implicitly imported modules (twitter module
* .
- Fixed support for installing frozen executables under Python 3.x on
Windows.
- Removed optional import of setuptools which is not a complete drop-in
replacement for distutils and if found, replaces distutils with itself,
resulting in some distutils features not being available; for those who
require or prefer the use of setuptools, import it in your setup.py.
* Sun Oct 17 2010 alexandre@exatati.com.br
- Update to 4.2.1.
* Wed Jul 21 2010 alexandre@exatati.com.br
- Update to 4.2.
* Wed Jan 06 2010 alexandre@exatati.com.br
- Update to 4.1.2.
* Mon Dec 21 2009 alexandre@exatati.com.br
- Updated to 4.1.1.
* Wed Jul 29 2009 alexandre@exatati.com.br
- Updated to 4.1.