- 17 Jun, 2000 4 commits
-
-
Greg Ward authored
muddling through IOError and OSError exception objects right here.
-
Greg Ward authored
forms that IOError and OSError can take (taken from core.py).
-
Greg Ward authored
'remove_tree()' can cooperate with 'mkpath()' in the maintenance of the PATH_CREATED cache: specifically, if a directory is created with 'mkpath()', later removed with 'remove_tree()', and 'mkpath()' is again requested to create it, then it would erroneously think the directory already existed, because it was in the PATH_CREATED cache. The patch (slightly tweaked by me) fixes that.
-
Greg Ward authored
-
- 08 Jun, 2000 10 commits
-
-
Greg Ward authored
passed None.
-
Greg Ward authored
-
Greg Ward authored
template into a new method 'prune_file_list()', called from 'get_file_list()' rather than 'read_manifest()' -- this keeps 'read_manifest()' more general. Deleted the redundant call to 'exclude_pattern()' in 'make_distribution()' -- this had the same intention as 'prune_file_list()', but was incomplete (only pruned the release tree, not the build tree) and in the wrong place (the prune wouldn't be reflected in the manifest file).
-
Greg Ward authored
Deleted old, commented-out 'exclude_pattern()' method.
-
Greg Ward authored
-
Greg Ward authored
a short form and text that wraps onto multiple lines.
-
Greg Ward authored
-
Greg Ward authored
'help_options' list; also added an editorial comment.
-
Greg Ward authored
directly printing to stdout. This was a bit more work than it sounds like it should have been: * turned 'select_pattern()' and 'exclude_pattern()' from functions into methods, so they can refer to 'self' to access the method * commented out the *other* 'exclude_pattern()' method, which appears to be vestigial code that was never cleaned up when the 'exclude_pattern()' function was created * changed the one use of the old 'exclude_pattern()' method to use the new 'exclude_pattern()' (same behaviour, slightly different args) * some code and docstring reformatting * and, of course, changed all the debugging prints to 'debug_print()' calls Added/tweaked some regular ('self.announce()') output for better runtime feedback.
-
Greg Ward authored
-
- 07 Jun, 2000 3 commits
-
-
Greg Ward authored
values that "--foo" can take for various commands: eg. what formats for "sdist" and "bdist", what compilers for "build_ext" and "build_clib". I have *not* reviewed this patch; I'm checking it in as-is because it also fixes a paper-bag-over-head bug in bdist.py, and because I won't have time to review it properly for several days: so someone else can test it for me, instead!
-
Greg Ward authored
and call it "distutils.cfg" instead of "pydistutils.cfg" (personal config files are still ".pydistutils.cfg" or "pydistutils.cfg", though).
-
Greg Ward authored
Look for personal config file in /home/greg on Windows, too: users will have to set /home/greg to use this, so it's not something that many people will use. But if python-dev comes up with the "right way" to divine a home directory on Windows, we can use that to set /home/greg and poof! -- personal Distutils config files on Windows.
-
- 06 Jun, 2000 4 commits
-
-
Greg Ward authored
one doesn't *do* anything by default; it's just there as a conduit for data (eg. include dirs, libraries) from the user to the "build" commands. However, it provides a couple of Autoconf-ish methods ('try_compile()', 'try_link()', 'try_run()') that derived, per-distribution "config" commands can use to poke around the target system and see what's available. Initial experimenst with mxDateTime indicate that higher-level methods are necessary: analogs of Autoconf's AC_CHECK_HEADER, AC_CHECK_LIB will be needed too (and that's just to probe the C/C++ system: how to probe the Python system is wide open, and someday we'll have to worry about probing a Java system too).
-
Greg Ward authored
command being reinitialized to false.
-
Greg Ward authored
-
Greg Ward authored
-
- 04 Jun, 2000 6 commits
-
-
Greg Ward authored
Half-fixed RPM 2 compatibility:added 'rpm_base' option, which must be set (to eg. /usr/src/redhat on a stock Red Hat system) if rpm2_mode is on. Still not quite working, though.
-
Greg Ward authored
spelled sensibly in a config file.
-
Greg Ward authored
Fills in question marks in help Reads scripts in from files rather than strings Adds RPM 2 compatibility mode (untested). Use of this mode requires that --bdist-base be specified because bdist_rpm has no way of detecting where RPM wants to find spec files and source files. An unmodified RedHat 5.0 system would require '--bdist-base=/usr/src/RedHat'. (You would also have to be root.) If the rpmrc file has been modified to allow RPMs to be built by normal users then --build-base would need to be changed accordingly. Formats the changelog. GPW: tweaked formatting, added some editorial comments.
-
Greg Ward authored
and added 'ensure_dirname()'.
-
Greg Ward authored
command class, so they're now in the Command base class.
-
Greg Ward authored
(and in order to generate a more sensible error message cleanly).
-
- 03 Jun, 2000 3 commits
- 02 Jun, 2000 7 commits
-
-
Greg Ward authored
before the real release, but I want to make it clear that a major new release is on the way).
-
Greg Ward authored
-
Greg Ward authored
extraneous debug prints).
-
Greg Ward authored
do so if DEBUG is true.
-
Greg Ward authored
'_check_*()' helpers.
-
Greg Ward authored
prep/build/etc. scripts, doc files, dependency info) from a config file rather than the dedicated "package_info" file. (The idea is that developers will provide RPM-specific info in the "[bdist_rpm]" section of setup.cfg, but of course it could also be supplied in the other config files, on the command line, or in the setup script -- or any mix of the above.) Major changes: * added a boatload of options to 'user_options' and 'initialize_options()': 'distribution_name', 'group', 'release', ... * added 'finalize_package_data()', which takes the place of '_get_package_data()' -- except it's called from 'finalize_options()', not 'run()', so we have everything figured out before we actually run the command * added 'ensure_string()', 'ensure_string_list()', 'ensure_filename()'; these take the place of '_check_string()' and friends. (These actually look like really useful type-checking methods that could come in handy all over the Distutils; should consider moving them up to Command and using them in other command classes' 'finalize_options()' method for error-checking). * various cleanup, commentary, and adaptation to the new way of storing RPM info in '_make_spec_file()'
-
Greg Ward authored
-
- 01 Jun, 2000 3 commits