1. 11 Sep, 2000 1 commit
  2. 10 Sep, 2000 1 commit
  3. 09 Sep, 2000 2 commits
  4. 07 Sep, 2000 2 commits
    • Thomas Heller's avatar
      Changes: · c8a74343
      Thomas Heller authored
      distutils/command/bdist_wininst.py:
      - the windows installer is again able to compile after installing
        the files. Note: The default has changed, the packager has to
        give --no-target-compile/--no-target-optimize to NOT compile
        on the target system. (Another note: install_lib's --compile
        --optimize options have the same semantics to switch off
        the compilation. Shouldn't the names change?)
      - All references to specific python versions are gone.
      - A small bug:
          raise DistutilsPlatformError ("...")
        instead of
          raise DistutilsPlatformError, ("...")
      - When bdist_wininst creates an installer for one specific python
        version, this is reflected in the name:
          Distutils-0.9.2.win32-py15.exe instead of
          Distutils-0.9.2.win32.exe
      - bdist_wininst, when run as script, reads the wininst.exe file
        and rewrites itself. Previously this was done by hand.
      
      misc/install.c
      - All the changes needed for compilation
      - Deleted a lot of debug/dead code
      c8a74343
    • Greg Ward's avatar
      Typo fix. · 9f06911a
      Greg Ward authored
      9f06911a
  5. 06 Sep, 2000 3 commits
  6. 01 Sep, 2000 6 commits
  7. 31 Aug, 2000 1 commit
    • Greg Ward's avatar
      Add /GX to 'compile_options'. This is definitely needed for C++ source; · 1020b190
      Greg Ward authored
      according to the MS docs it enables exception-handling, and (according
      to Alex Martelli <aleaxit@yahoo.com>) is needed to compile without
      getting warnings from standard C++ library headers.  Apparently
      it doesn't cause any problems with C code, so I haven't bothered
      conditionalizing the use of /GX.
      1020b190
  8. 30 Aug, 2000 2 commits
  9. 29 Aug, 2000 1 commit
    • Greg Ward's avatar
      Added 'script_name' and 'script_args' instance attributes to Distribution. · 23be7d21
      Greg Ward authored
      Changed 'core.setup()' so it sets them to reasonable defaults.
      Tweaked how the "usage" string is generated: 'core' now provides
        'gen_usage()', which is used instead of 'USAGE'.
      Modified "build_py" and "sdist" commands to refer to
        'self.distribution.script_name' rather than 'sys.argv[0]'.
      23be7d21
  10. 27 Aug, 2000 1 commit
    • Greg Ward's avatar
      Fix line-endings. · 069a0d74
      Greg Ward authored
      Fix bad operator precedence: should be "(metadata or '') + '\n'".
      069a0d74
  11. 26 Aug, 2000 3 commits
    • Greg Ward's avatar
      New release of the Windows installer from Thomas Heller. · 8294ae14
      Greg Ward authored
      The known bug (bogus error message when an empty file is
      extracted) is fixed.
      
      Other changes:
      
      - The target-compile and target-optimize flags of bdist_wininst
        are gone. It is no longer possible to compile the python
        files during installation.
      - The zlib module is no longer required or used by bdist_wininst.
      
      - I moved the decompression/extraction code into a separate
        file (extract.c).
      
      - The installer stub is now compressed by UPX (see
        http://upx.tsx.org/). This reduces the size of the exe
        (and thus the overhead of the final installer program)
        from 40 kB to 16 kB.
      
      - The installer displays a more uptodate user wizard-like
        user interface, also containing a graphic: Just's Python Powered logo.
        (I could not convince myself to use one of the BeOpen logos).
      - The installation progress bar now moves correctly.
      8294ae14
    • Greg Ward's avatar
      Bumped version to 0.9.2pre. · 43abfd37
      Greg Ward authored
      43abfd37
    • Greg Ward's avatar
      In 'check_extensions_list()': when converting old-style 'buildinfo' dict, · e1e774a2
      Greg Ward authored
      don't assign None to any attributes of the Extension object.
      e1e774a2
  12. 22 Aug, 2000 2 commits
  13. 15 Aug, 2000 4 commits
  14. 13 Aug, 2000 8 commits
  15. 08 Aug, 2000 1 commit
  16. 07 Aug, 2000 2 commits