- 04 Nov, 2002 1 commit
-
-
Andrew M. Kuchling authored
-
- 31 Oct, 2002 3 commits
-
-
Thomas Heller authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
arguments, triggering a warning instead of raising an exception. (In 1.5.2/2.0, it will print to stderr.) Bugfix candidate for all previous versions. This changes behaviour, but the old behaviour wasn't very useful. If Distutils version X+1 adds a new keyword argument, using the new keyword means your setup.py file won't work with Distutils version X any more.
-
- 16 Oct, 2002 1 commit
-
-
Thomas Heller authored
-
- 15 Oct, 2002 2 commits
-
-
Thomas Heller authored
-
Thomas Heller authored
-
- 09 Oct, 2002 1 commit
-
-
Skip Montanaro authored
the flag. Punt and return a -L flag instead (returning "" gums up the command to be forked).
-
- 07 Oct, 2002 1 commit
-
-
Martin v. Löwis authored
-
- 04 Oct, 2002 1 commit
-
-
Marc-André Lemburg authored
-
- 01 Oct, 2002 2 commits
-
-
Skip Montanaro authored
CCompiler may rely on the presence of self.verbose (SciPy's distutils appears to).
-
Guido van Rossum authored
Strangely, two out of three patches there seem already committed; but the essential one (get rid of the assert in object_filenames in ccompiler.py) was not yet applied. This makes the build procedure for Twisted work again. This is *not* a backport candidate despite the fact that identical code appears to exist in 2.2.2; Twisted builds fine there, so there must have been a change elsewhere.
-
- 29 Sep, 2002 1 commit
-
-
Guido van Rossum authored
-
- 11 Sep, 2002 2 commits
-
-
Jeremy Hylton authored
Note that distutils.core.DEBUG still works if client code uses it, but the core code avoids circular references by using distutils.debug.
-
Jeremy Hylton authored
-
- 09 Sep, 2002 2 commits
-
-
Andrew M. Kuchling authored
to the command-line arguments. Fix this by adding the source filename.
-
Andrew M. Kuchling authored
(Bugfix candidate for 2.2, and likely 2.1 as well)
-
- 13 Aug, 2002 1 commit
-
-
Neal Norwitz authored
-
- 09 Aug, 2002 1 commit
-
-
Guido van Rossum authored
Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
-
- 04 Aug, 2002 2 commits
-
-
Andrew MacIntyre authored
- implement viable library search routine for EMX
-
Andrew MacIntyre authored
-
- 29 Jul, 2002 1 commit
-
-
Thomas Heller authored
-
- 28 Jul, 2002 1 commit
-
-
Martin v. Löwis authored
-
- 12 Jul, 2002 1 commit
-
-
Michael W. Hudson authored
calling Python was installed was so complicated, so I simplified it. This should get the snake-farm's build scripts working again.
-
- 27 Jun, 2002 1 commit
-
-
Jack Jansen authored
-
- 26 Jun, 2002 3 commits
-
-
Neal Norwitz authored
-
Jack Jansen authored
Fixed various MacPython-specific issues found by attempting to use the standard core setup.py for MacPython.
-
Jack Jansen authored
This module broke on the Mac (where it can't work, but distutils seems to import it anyway) because it imported pwd and grp. Moved the import to inside the routine where they're used.
-
- 18 Jun, 2002 4 commits
-
-
Jeremy Hylton authored
XXX Why doesn't distutils on Windows use the same set of flags as Python?
-
Jeremy Hylton authored
-
Jeremy Hylton authored
The default implementation calls _compile() to compile individual files. This method must be implemented by the subclass. This change factors out most of the remaining common code in all the compilers except mwerks.
-
Jeremy Hylton authored
-
- 13 Jun, 2002 7 commits
-
-
Jeremy Hylton authored
Two new tests are needed: Don't skip building an extension if any of the depends files are newer than the target. Pass ext.depends to compiler.compile() so that it can track individual files.
-
Jeremy Hylton authored
Always use _setup_compile() to do the grunt work of processing arguments, figuring out which files to compile, and emitting debug messages for files that are up-to-date. Use _get_cc_args() when possible.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
This change is not backwards compatible. If a compiler subclass exists outside the distutils package, it may get called with the unexpected keyword arg. It's easy to extend that compiler by having it ignore the argument, and not much harder to do the right thing. If this ends up being burdensome, we can change it before 2.3 final to work harder at compatibility. Also add _setup_compile() and _get_cc_args() helper functions that factor out much of the boilerplate for each concrete compiler class.
-
Jeremy Hylton authored
Remove __init__ that just called base class __init__ with same args. Fold long argument lists into fewer, shorter lines. Remove parens in tuple unpacks. Don't put multiple statements on one line with a semicolon. In find_library_file() compute the library_filename() upfront.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Making the world better a little bit at a time <wink>.
-
- 12 Jun, 2002 1 commit
-
-
Jeremy Hylton authored
depends is a list of files that the target depends, but aren't direct sources of the target. think .h files.
-