Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python3-cx_Freeze-6.0-bp153.1.18 RPM for aarch64

From OpenSuSE Leap 15.3 for aarch64

Name: python3-cx_Freeze Distribution: SUSE Linux Enterprise 15 SP3
Version: 6.0 Vendor: openSUSE
Release: bp153.1.18 Build date: Sat Mar 6 22:32:30 2021
Group: Development/Languages/Python Build host: obs-arm-9
Size: 616752 Source RPM: python-cx_Freeze-6.0-bp153.1.18.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/anthony-tuininga/cx_Freeze
Summary: Scripts to create standalone executables from Python scripts
CX_Freeze is a set of scripts and modules for turning Python scripts
into executables in much the same way that py2exe and py2app do.

It works by bundling Python executables and libraries from the local
Python installation. As such, the distribution produced by CX_Freeze
shares the very same dependencies. System libraries are not bundled
however, so additional dependencies may need to be manually installed
before being able to run "cx-frozen" executables that were created by
other systems.

Provides

Requires

License

Python-2.0

Changelog

* 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).
* 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

Files

/usr/bin/cxfreeze
/usr/bin/cxfreeze-quickstart
/usr/lib64/python3.6/site-packages/cx_Freeze
/usr/lib64/python3.6/site-packages/cx_Freeze-6.0-py3.6.egg-info
/usr/lib64/python3.6/site-packages/cx_Freeze-6.0-py3.6.egg-info/PKG-INFO
/usr/lib64/python3.6/site-packages/cx_Freeze-6.0-py3.6.egg-info/SOURCES.txt
/usr/lib64/python3.6/site-packages/cx_Freeze-6.0-py3.6.egg-info/dependency_links.txt
/usr/lib64/python3.6/site-packages/cx_Freeze-6.0-py3.6.egg-info/top_level.txt
/usr/lib64/python3.6/site-packages/cx_Freeze/__init__.py
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/__init__.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/common.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/common.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/dist.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/dist.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/finder.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/finder.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/freezer.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/freezer.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/hooks.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/hooks.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/macdist.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/macdist.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/main.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/main.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/setupwriter.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/setupwriter.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/windist.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/__pycache__/windist.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/bases
/usr/lib64/python3.6/site-packages/cx_Freeze/bases/Console
/usr/lib64/python3.6/site-packages/cx_Freeze/common.py
/usr/lib64/python3.6/site-packages/cx_Freeze/dist.py
/usr/lib64/python3.6/site-packages/cx_Freeze/finder.py
/usr/lib64/python3.6/site-packages/cx_Freeze/freezer.py
/usr/lib64/python3.6/site-packages/cx_Freeze/hooks.py
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/Console.py
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/ConsoleSetLibPath.py
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/SharedLib.py
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/SharedLibSource.py
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/__pycache__/Console.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/__pycache__/Console.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/__pycache__/ConsoleSetLibPath.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/__pycache__/ConsoleSetLibPath.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/__pycache__/SharedLib.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/__pycache__/SharedLib.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/__pycache__/SharedLibSource.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/__pycache__/SharedLibSource.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/__pycache__/__startup__.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/__pycache__/__startup__.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/initscripts/__startup__.py
/usr/lib64/python3.6/site-packages/cx_Freeze/macdist.py
/usr/lib64/python3.6/site-packages/cx_Freeze/main.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt4
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt4/PyQt4app.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt4/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt4/__pycache__/PyQt4app.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt4/__pycache__/PyQt4app.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt4/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt4/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt4/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt5
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt5/PyQt5app.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt5/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt5/__pycache__/PyQt5app.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt5/__pycache__/PyQt5app.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt5/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt5/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/PyQt5/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/Tkinter
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/Tkinter/SimpleTkApp.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/Tkinter/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/Tkinter/__pycache__/SimpleTkApp.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/Tkinter/__pycache__/SimpleTkApp.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/Tkinter/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/Tkinter/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/Tkinter/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/advanced
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/advanced/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/advanced/__pycache__/advanced_1.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/advanced/__pycache__/advanced_1.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/advanced/__pycache__/advanced_2.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/advanced/__pycache__/advanced_2.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/advanced/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/advanced/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/advanced/advanced_1.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/advanced/advanced_2.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/advanced/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/asmodule
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/asmodule/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/asmodule/__pycache__/asmodule.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/asmodule/__pycache__/asmodule.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/asmodule/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/asmodule/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/asmodule/asmodule.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/asmodule/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/__pycache__/get_examples.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/__pycache__/get_examples.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/__pycache__/server_simple.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/__pycache__/server_simple.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/__pycache__/web_srv.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/__pycache__/web_srv.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/__pycache__/wsgiserver.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/__pycache__/wsgiserver.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/get_examples.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/server_simple.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/web_srv.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/importlib/wsgiserver.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/matplotlib
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/matplotlib/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/matplotlib/__pycache__/matplotlib_eg.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/matplotlib/__pycache__/matplotlib_eg.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/matplotlib/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/matplotlib/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/matplotlib/matplotlib_eg.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/matplotlib/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/openpyxl
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/openpyxl/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/openpyxl/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/openpyxl/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/openpyxl/__pycache__/test_openpyxl.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/openpyxl/__pycache__/test_openpyxl.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/openpyxl/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/openpyxl/test_openpyxl.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/relimport
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/relimport/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/relimport/__pycache__/relimport.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/relimport/__pycache__/relimport.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/relimport/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/relimport/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/relimport/relimport.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/relimport/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/service
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/service/Config.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/service/ServiceHandler.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/service/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/service/__pycache__/Config.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/service/__pycache__/Config.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/service/__pycache__/ServiceHandler.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/service/__pycache__/ServiceHandler.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/service/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/service/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/service/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/simple
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/simple/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/simple/__pycache__/hello.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/simple/__pycache__/hello.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/simple/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/simple/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/simple/hello.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/simple/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/wx
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/wx/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/wx/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/wx/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/wx/__pycache__/wxapp.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/wx/__pycache__/wxapp.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/wx/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/wx/wxapp.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/zope
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/zope/__pycache__
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/zope/__pycache__/qotd.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/zope/__pycache__/qotd.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/zope/__pycache__/setup.cpython-36.opt-1.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/zope/__pycache__/setup.cpython-36.pyc
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/zope/qotd.py
/usr/lib64/python3.6/site-packages/cx_Freeze/samples/zope/setup.py
/usr/lib64/python3.6/site-packages/cx_Freeze/setupwriter.py
/usr/lib64/python3.6/site-packages/cx_Freeze/util.cpython-36m-aarch64-linux-gnu.so
/usr/lib64/python3.6/site-packages/cx_Freeze/windist.py
/usr/share/doc/packages/python3-cx_Freeze
/usr/share/doc/packages/python3-cx_Freeze/README.md
/usr/share/licenses/python3-cx_Freeze
/usr/share/licenses/python3-cx_Freeze/license.rst


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 14:48:48 2024