1. a9d3783 Fixed so --no-compile is a negative alias for --compile. by Greg Ward · 24 years ago
  2. 0295181 Typo fix. by Greg Ward · 24 years ago
  3. 73a6c94 Added the ability to do byte-compilation at build time, currently off by Greg Ward · 24 years ago
  4. 8161022 Added --compile, --optimize options so users have an easy way to by Greg Ward · 24 years ago
  5. cb9c9ae Finished the overhaul of byte-compilation options: there's now a 6-way by Greg Ward · 24 years ago
  6. c1acc69 From 'run()', only call 'bytecompile()' if we actually have by Greg Ward · 24 years ago
  7. 1df6e7b Reduced the 'bytecompile()' method to a one-line wrapper around by Greg Ward · 24 years ago
  8. cb1f4c4 Standardized whitespace around function calls. by Greg Ward · 24 years ago
  9. 3e6d438 Fixed 'run()' so it doesn't call 'bytecompile()' if 'install()' returned None. by Greg Ward · 24 years ago
  10. e564278 Expect a tuple (dest_name, copied) from 'copy_file()'. by Greg Ward · 24 years ago
  11. 3a5a2bd Changed 'build_module()' so it returns the result of 'copy_file()' by Greg Ward · 24 years ago
  12. 64d855a Changed to use the 'sub-commands' machinery: by Greg Ward · 24 years ago
  13. 70b1fd1 Moved some things around for better organization. by Greg Ward · 24 years ago
  14. 1dbe9d5 Removed the extra_dirs and path_file metadata options. by Thomas Heller · 24 years ago
  15. 18b9b93 Removed the implib_dir instance variable because it is unused. by Thomas Heller · 24 years ago
  16. d644ca2 Added a bunch of missing "=" signs in the option table. by Greg Ward · 24 years ago
  17. af64aed Renamed '--keep-tree' option to '--keep-temp', for consistency by Greg Ward · 24 years ago
  18. 99b032e Added 'boolean_options' list to support config file parsing. by Greg Ward · 24 years ago
  19. f84fb66 Split 'run()' up into 'build()', 'install()', and 'bytecompile()' (for by Greg Ward · 24 years ago
  20. 7b87c0e Whitespace tweaks. by Greg Ward · 24 years ago
  21. ab79839 Tweak what happens when run on non-Windows platforms: set install prefix by Greg Ward · 24 years ago
  22. 379a02f Changed all paths in the INSTALL_SCHEMES dict to Unix syntax, and added by Greg Ward · 24 years ago
  23. 543f243 Set the 'nt' installation scheme for the install command even if run by Thomas Heller · 24 years ago
  24. 9082cdd Catch up to recent changes in TextFile (spotted by Bastian Kleineidam). by Greg Ward · 24 years ago
  25. df9e6b8 Fixed to respect 'define_macros' and 'undef_macros' on Extension object. by Greg Ward · 24 years ago
  26. beb6d72 Rene Liebscher: if we have to run the same sub-command multiple times by Greg Ward · 24 years ago
  27. 3bfc8c8 Renamed --keep-tree to --keep-temp. by Greg Ward · 24 years ago
  28. 8099f0e Renamed --clean to --no-keep-temp and --noclean to --keep-temp. by Greg Ward · 24 years ago
  29. 8429036 Renamed --keep-tree option to --keep-temp. by Greg Ward · 24 years ago
  30. 24511d2 Ensure sub-commands of "install" are reinitialized too. by Greg Ward · 24 years ago
  31. fadefed Factored the "sub-command" machinery out to Command. Mainly, this by Greg Ward · 24 years ago
  32. 53db815 Tweaked the build temp dir names again. by Greg Ward · 24 years ago
  33. e918b6f Typo fix. by Greg Ward · 24 years ago
  34. 4290094 Include the Python version in the platform-specific build directories: by Greg Ward · 24 years ago
  35. 9ae7c3c Document the directory separatory for include dir and library dir lists. by Greg Ward · 24 years ago
  36. bbba66e Added 'warn_dir' option so other code can sneak in and disable by Greg Ward · 24 years ago
  37. 9bd3e9b Adjust to the new sysconfig regime: use 'get_config_vars()' instead by Greg Ward · 24 years ago
  38. d602909 Adjust to the new sysconfig regime: use 'get_config_var()' instead by Greg Ward · 24 years ago
  39. 3a0310a Added --force (-f) option to force installation (including bytecode by Greg Ward · 24 years ago
  40. d75a276 Fix install directories on Mac OS: now everything goes to by Greg Ward · 24 years ago
  41. 7ac743b Bastian Kleineidam: fix so it cleans up the temporary script-building by Greg Ward · 24 years ago
  42. 8fd7ba2 Delete some debugging prints. by Greg Ward · 24 years ago
  43. 20283e5 Added --plat-name option to override sysconfig.get_platform() in by Greg Ward · 24 years ago
  44. d0e4b42 Added --python and --fix-python options for better control over what by Greg Ward · 24 years ago
  45. ecaf0d8 The installer now displays info about version of distutils by Thomas Heller · 24 years ago
  46. b943840 The windows installer must also look under the HKEY_CURRENT_USER key by Thomas Heller · 24 years ago
  47. 904ca11 Changes: by Thomas Heller · 24 years ago
  48. 8d5b5ec Typo fix. by Greg Ward · 24 years ago
  49. 5fad268 Bullet-proofing of 'make_release_tree()': by Greg Ward · 24 years ago
  50. d3b76a8 Reorganized logic in 'get_file_list()' so it's easier to read, and fixed a by Greg Ward · 24 years ago
  51. 6a2035d Typo fix. by Greg Ward · 24 years ago
  52. 1ac9802 Rene Liebscher/Thomas Heller: by Greg Ward · 24 years ago
  53. 9821bf4 Added 'script_name' and 'script_args' instance attributes to Distribution. by Greg Ward · 24 years ago
  54. 6f9320b Fix line-endings. by Greg Ward · 24 years ago
  55. 018cbb1 New release of the Windows installer from Thomas Heller. by Greg Ward · 24 years ago
  56. d8014e6 In 'check_extensions_list()': when converting old-style 'buildinfo' dict, by Greg Ward · 24 years ago
  57. 986659f Don't bother to 'mkpath()' the 'dist_dir' -- that's now taken care of by Greg Ward · 24 years ago
  58. 44a980d Fixed the move-RPM-files hack so it knows about the '--binary-only' and by Greg Ward · 24 years ago
  59. a12c195 Added support for the '--dist-dir' option, including a mildly nasty by Greg Ward · 24 years ago
  60. c0fe82c Fix long-hidden inconsistency in internal interface: 'find_modules()' now by Greg Ward · 24 years ago
  61. a35c931 get_export_symbols() changed, adds now module init function if not given by Greg Ward · 24 years ago
  62. 1b024d3 Fix so the 'install_libbase' directory -- where .pth files are installed -- by Greg Ward · 24 years ago
  63. ab3a0f3 Fixed imports from '*util' modules to not just import everything from util. by Greg Ward · 24 years ago
  64. 6f628bb Added 'wininst' to the 'format_commands' list, so it's included in by Greg Ward · 24 years ago
  65. 90c74cc Rene Liebscher: fix 'skipping byte-compilation' message for grammatical by Greg Ward · 24 years ago
  66. 0419a4f Patch from Rene Liebscher, tweaked by me: by Greg Ward · 24 years ago
  67. 6b24dff Catch syntax errors from processing template lines and turn them into by Greg Ward · 24 years ago
  68. 23266fe Replaced 'self.files' with 'self.filelist': now we carry around a FileList by Greg Ward · 24 years ago
  69. 4571ac1 The other half of Rene Liebscher's patch to add the Template class, by Greg Ward · 24 years ago
  70. 612eb9f Fixed a grab-bag of typos spotted by Rob Hooft. by Greg Ward · 24 years ago
  71. aa5372c Remove unused 'search_dir()' method. Comment tweak. by Greg Ward · 24 years ago
  72. 53c1bc3 Typo fix from David Ascher. by Greg Ward · 24 years ago
  73. 23adc9f Typo fix from Bastian Kleineidam by Andrew M. Kuchling · 24 years ago
  74. 65d6edb fix inconsistent use of tabs and spaces by Jeremy Hylton · 24 years ago
  75. fd9f168 Fixed so the ZIP file (which is bundled into an executable) goes in the by Greg Ward · 24 years ago
  76. c4eb84a Added --dist-dir option to control where output archive(s) go. by Greg Ward · 24 years ago
  77. 040dc0b Added the --dist-dir option that the "bdist_*" will use to control where by Greg Ward · 24 years ago
  78. c061410 Added the --dist-dir option to control where the archive(s) are put; by Greg Ward · 24 years ago
  79. 5d6ae76 Allow 2.0 on the list of target versions. NB. this isn't enough: the GUI part, by Greg Ward · 24 years ago
  80. 22e1bf7 Don't try to guess the name of a .def file -- if one is supplied, use it, by Greg Ward · 24 years ago
  81. df112a7 Fixed so 'get_source_files()' calls 'check_extension_list()' -- that way, by Greg Ward · 24 years ago
  82. 499822d Fixed 'findall()' so it only returns regular files -- no directories. by Greg Ward · 24 years ago
  83. a05e293 typos fixed by Rob Hooft by Jeremy Hylton · 24 years ago
  84. cc623a2 Lyle Johnson: pass in temp directory as 'build_temp' argument when calling by Greg Ward · 24 years ago
  85. b0b98a5 Fixed to use 'reinitialize_command()' to fetch "install" and "install_lib" by Greg Ward · 24 years ago
  86. edc6a51 Fixed to use 'reinitialize_command()' to fetch the "install" command object. by Greg Ward · 24 years ago
  87. b593793 A-ha! Read Thomas' patch a little more carefully and figured it out: by Greg Ward · 24 years ago
  88. f3bd747 Thomas Heller: added --swig-cpp option and fixed silly typos in SWIG support. by Greg Ward · 24 years ago
  89. 27199e8 Thomas Heller's "bdist_wininst" command (unreviewed, untested). by Greg Ward · 24 years ago
  90. 1f9b73b Infrastructure support for the "bdist_wininst" command. by Greg Ward · 24 years ago
  91. 855dab9 Added 'include_dirs' parameters all over the place. by Greg Ward · 24 years ago
  92. e401e15 Removed some debugging code that slipped into the last checkin. by Greg Ward · 24 years ago
  93. f46a688 Fixed the "pre-link hook" so it actually works, mainly by renaming it by Greg Ward · 24 years ago
  94. eab969d Call 'customize_compiler()' after getting CCompiler object. by Greg Ward · 24 years ago
  95. 5ca84b8 Fixed a few silly bugs in my SWIG support code. (Hey, I said it was by Greg Ward · 24 years ago
  96. c3f3644 Print a warning if we install a data file right in install_dir. by Greg Ward · 24 years ago
  97. fa2f4b6 Changed the default installation directory for data files (used by by Greg Ward · 24 years ago
  98. 3459381 Changed so all the help-generating functions are defined, at module-level, by Greg Ward · 24 years ago
  99. 2ff7887 Stylistic/formatting changes to Rene Liebscher's '--help-xxx' patch. by Greg Ward · 24 years ago
  100. ffcaf2d Experimental, completely untested SWIG support. by Greg Ward · 24 years ago