- 6cd0c43 Fix from Lyle Johnson: add the '--compiler' option. by Gregory P. Smith · 25 years ago
- 9668b78 Fix from Lyle Johnson: add the '--compiler' option. by Gregory P. Smith · 25 years ago
- 1500374 Added comment about the MSVC-specific kludge. by Greg Ward · 25 years ago
- 4779cdf Don't use 'set_option()' or 'get_option()' method -- direct attribute access, by Greg Ward · 25 years ago
- 18856b8 Added the ability to sneak extra flags onto the C compiler command line by Greg Ward · 25 years ago
- 6a647bb Added the "--root" option as a sort of meta-install-base; if supplied, by Greg Ward · 25 years ago
- ff2d9b7 Hacked things up a bit so that configuration variables are expanded by Greg Ward · 25 years ago
- 6ce94b7 Harry Henry Gebel: import exception classes. by Greg Ward · 25 years ago
- 839d532 Supply short form for --manifest-only (-o) and --force-manifest (-f) options. by Greg Ward · 25 years ago
- 1b8e1d4 Harry Henry Gebel: Fix 'sdist.write_manifest()' to respect the value of dry_run. by Greg Ward · 25 years ago
- f194878 Harry Henry Gebel: Adds bztar format to generate .tar.bz2 tarballs by Greg Ward · 25 years ago
- 6a9a545 Check that 'self.formats' is good early on. by Greg Ward · 25 years ago
- 0ae7f76 Changed to call 'get_fullname()', not 'get_full_name()', on Distribution object. by Greg Ward · 25 years ago
- 535f2d9 Fix 'check_metadata()' so it grovels through the distribution's metadata by Greg Ward · 25 years ago
- 9d5afa9 Patch from Andrew Kuchling: allow multiple include/exclude patterns by Greg Ward · 25 years ago
- 02a1a2b Cleaned up/simplified error-handling: by Greg Ward · 25 years ago
- 1561ae1 Use 'get_python_inc()' to figure out the Python include directories by Greg Ward · 25 years ago
- 2b9e43f Coerce all paths in the manifest template to the local path syntax with by Greg Ward · 25 years ago
- 7aff6f3 Delete some debugging print statements. by Greg Ward · 25 years ago
- c41d6b3 Added '--force' option -- very clear what it means for building (ignore by Greg Ward · 25 years ago
- 60908f1 Ditched the unused 'list_only' option. by Greg Ward · 25 years ago
- b4c850c Added code to blow away the pseudo-installation tree and a 'keep_tree' by Greg Ward · 25 years ago
- e5796fe Oops, got a little too enthusiastic deleting code in that last revision: by Greg Ward · 25 years ago
- 02296ce Rename 'formats' option to 'format', and remove the ability to generate by Greg Ward · 25 years ago
- 6b21376 Import from 'types' module. Added 'ztar', 'tar' to 'format_command' dictionary. by Greg Ward · 25 years ago
- 7d51034 Removed some old test code: don't set 'plat' when calling 'new_compiler()'. by Greg Ward · 25 years ago
- 8422964 Patch (mostly) from Thomas Heller for building on Windows: by Greg Ward · 25 years ago
- 6148c2c Added 'bdist' and 'bdist_dumb'. by Greg Ward · 25 years ago
- e1664bd The 'bdist_dumb' command, the first worker bee for use by 'bdist'. This is by Greg Ward · 25 years ago
- 0f77f95 The 'bdist' command, for creating "built" (binary) distributions. by Greg Ward · 25 years ago
- 1aab6e9 Added 'get_inputs()'. by Greg Ward · 25 years ago
- ba38d12 Fixed 'get_outputs()' so it actually works. by Greg Ward · 25 years ago
- 578c10d Changed to use the new 'has_pure_modules()' and 'has_ext_modules()' methods by Greg Ward · 25 years ago
- 71d5583 Oops: 'build_extensions()' no longer takes an 'extensions' list. by Greg Ward · 25 years ago
- 1d16a9f Put the Python "system" include dir last, rather than first. by Greg Ward · 25 years ago
- ed8a0e0 Patch inspired by Bastian Kleineidam <calvin@cs.uni-sb.de>: by Greg Ward · 25 years ago
- 03d1ae1 Moved the guts of 'make_tarball()' and 'make_zipfile()' to distutils.util by Greg Ward · 25 years ago
- ab9d08c Added 'build_clib'; replaced 'install_py' and 'install_ext' with 'install_lib'. by Greg Ward · 25 years ago
- e5dfba5 Be sure to run both 'build_py' and 'build_ext', now that this command by Greg Ward · 25 years ago
- ee94c57 Changed so the sub-commands we rely on to do the real work is specified by Greg Ward · 25 years ago
- ae45b16 Use the new 'has_pure_modules()', 'has_ext_modules()', 'has_c_libraries()' by Greg Ward · 25 years ago
- 4d16e0a Added 'get_outputs()' in prepartion for the 'bdist' command. by Greg Ward · 25 years ago
- 8b2e95e Deleted some crufty comments and code. by Greg Ward · 25 years ago
- cdb20ba Fixed a bunch of screwed-up logic and inconsistent terminology. by Greg Ward · 25 years ago
- 297dd9f Fixed the class name. by Greg Ward · 25 years ago
- 790c110 Revised tons of comments to reflect the current state of affairs better. by Greg Ward · 25 years ago
- 048ca7d Run 'install_lib' instead of 'install_py', and ditch 'install_ext' by Greg Ward · 25 years ago
- 55753d4 Renamed install_py.py to install_lib.py, since it now handles installing all by Greg Ward · 25 years ago
- 5b001f1 Obsolete command -- no longer relevant since we now build all modules, pure by Greg Ward · 25 years ago
- 066af10 Dropped any notion of allowing the user to specify the build directories: by Greg Ward · 25 years ago
- a233d86 Yet another complete rewrite. Hopefully the *last* complete rewrite of by Greg Ward · 25 years ago
- 531349f Fix how we set 'build_dir' and 'install_dir' options from 'install' options -- by Greg Ward · 25 years ago
- 4620f30 Took out what looks like old debugging code that probably should never by Greg Ward · 25 years ago
- fb4ece7 Simplified doc string. Added 'clean' to list of commands. by Greg Ward · 25 years ago
- 11fc7e4 Tweaked all over: by Greg Ward · 25 years ago
- 2dc139c Patch from Bastian Kleineidam <calvin@cs.uni-sb.de>: by Greg Ward · 25 years ago
- 06537a5 Contribution from Bastian Kleineidam <calvin@cs.uni-sb.de>: by Greg Ward · 25 years ago
- dedd5b5 In 'finalize_options()': if 'self.libs' is a string, make it a singleton list. by Greg Ward · 25 years ago
- 92f3377 Catch up with change to CCompiler API: call 'create_static_lib()', not by Greg Ward · 25 years ago
- eb3f75e Don't pass 'keep_dir' to 'compile()' method of CCompiler -- no longer used. by Greg Ward · 25 years ago
- 4ba5da4 Don't pass 'keep_dir' to 'compile()' method of CCompiler -- no longer used. by Greg Ward · 25 years ago
- 56359f5 Typo fix. by Greg Ward · 25 years ago
- 76ec0d6 Renamed 'build_lib' command to 'build_clib': by Greg Ward · 25 years ago
- 3ce77fd Changed '__rcsid__' to '__revision__'. by Greg Ward · 25 years ago
- 60f6433 If the "build_lib" command built any C libraries, link with them all by Greg Ward · 25 years ago
- 833dfd5 Added command description. by Greg Ward · 25 years ago
- e51d69e Build reorg: by Greg Ward · 25 years ago
- 42a3bf5 Build reorg: by Greg Ward · 25 years ago
- e691651 Build reorg: change 'build_dir' option to 'build_lib'. by Greg Ward · 25 years ago
- 4f08e4f Unfinished, untested implementation of the lovely baroque installation scheme by Greg Ward · 25 years ago
- 4840112 Fix from est@hyperreal.org: missing initialize in 'find_defaults()'. by Greg Ward · 25 years ago
- e01149c Renamed 'set_default_options()' to 'initialize_options()', and by Greg Ward · 25 years ago
- bbeceea Renamed all 'options' class attributes to 'user_options'. by Greg Ward · 25 years ago
- 1993f9a Renamed all command classes so they're exactly the same as the name of the by Greg Ward · 25 years ago
- e1b1c94 Changed 'dist' to 'sdist'. by Greg Ward · 25 years ago
- a82122b The 'sdist' command to create a source distribution. This is derived from the by Greg Ward · 25 years ago
- 3d6b023 The 'dist' command is dead -- long live the 'sdist' command! by Greg Ward · 25 years ago
- 968d883 Path from Thomas Heller: resurrect the .def file kludge while preserving the by Greg Ward · 26 years ago
- e8c6ce4 Added 'debug' option, and changed compile/link calls to use it. by Greg Ward · 26 years ago
- 3246200 Added 'debug' option (just there for 'build_ext' and 'build_lib' commands by Greg Ward · 26 years ago
- f0219ba Ditch .def file kludge for (much smaller) /export option kludge. by Greg Ward · 26 years ago
- 5f7c18e Run the 'build_lib' command before building extensions, if necessary. by Greg Ward · 26 years ago
- aaf27ee New command to build C (and C++, hopefully) libraries needed by extensions by Greg Ward · 26 years ago
- c185467 Tweaked various comments, docstrings, and error messages. by Greg Ward · 26 years ago
- 7f0fb0b Improved an error message. by Greg Ward · 26 years ago
- 113e70e Patch from Joe Van Andel: fix arg to % operator in warning. by Greg Ward · 26 years ago
- d1466b9 Allow either README or README.txt as a "standard file". by Greg Ward · 26 years ago
- 37bc815 Added 'description' class attribute to every command class (to help the by Greg Ward · 26 years ago
- 4c67936 Added 'dist' command. by Greg Ward · 26 years ago
- 7478a48 Added missing run of corresponding 'build' command. by Greg Ward · 26 years ago
- 9f200cb Fix indentation bug. by Greg Ward · 26 years ago
- 1b3a9af Added missing import. by Greg Ward · 26 years ago
- cbeca7b Added code to use Jim Ahlstrom's zipfile.py module if the external zip by Greg Ward · 26 years ago
- c27d800 Always run sys.prefix and sys.exec_prefix through 'os.path.normpath()' by Greg Ward · 26 years ago
- 7c463ef Ditch unneeded imports. by Greg Ward · 26 years ago
- e9436da Typo fix: 'file.warn' should have been 'manifest.warn' in a couple of places. by Greg Ward · 26 years ago
- ad83f04 Catch errors from 'rmtree' and emit a warning. by Greg Ward · 26 years ago
- 97798b1 Use 'search', not 'match', on filename pattern regexes. by Greg Ward · 26 years ago
- 1d0495e Catch missing MANIFEST file and warn rather than blowing up. by Greg Ward · 26 years ago
- 9b45443 Fixed 'find_package_modules()' to ensure that we never build (and thus by Greg Ward · 26 years ago