| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #3925: Ignores shutil.rmtree error on cygwin too. | Hirokazu Yamamoto | 2008-09-21 | 1 | -2/+2 |
| | | | | | Reviewed by Benjamin Peterson. | ||||
| * | Issue #2562: Fix distutils PKG-INFO writing logic to allow having | Marc-André Lemburg | 2008-09-03 | 1 | -0/+35 |
| | | | | | non-ascii characters and Unicode in setup.py meta-data. | ||||
| * | On Windows, we must build a debug version iff running a debug build of | Thomas Heller | 2008-05-26 | 1 | -0/+4 |
| | | | | | Python | ||||
| * | GHOP #257: test distutils' build_ext command, written by Josip Dzolonga. | Georg Brandl | 2008-05-18 | 1 | -0/+72 |
| | | |||||
| * | Try setting HOME env.var to fix test on Win32 | Andrew M. Kuchling | 2008-05-11 | 1 | -1/+1 |
| | | |||||
| * | Add message to test assertion | Andrew M. Kuchling | 2008-05-11 | 1 | -1/+2 |
| | | |||||
| * | #1858: re-apply patch for this, adding the missing files | Andrew M. Kuchling | 2008-05-11 | 3 | -0/+185 |
| | | |||||
| * | Revert r62998 as it broke the build (seems distutils.config is missing). | Brett Cannon | 2008-05-10 | 1 | -47/+0 |
| | | |||||
| * | #1858 from Tarek Ziade: | Andrew M. Kuchling | 2008-05-10 | 1 | -0/+47 |
| | | | | | | | | | | Allow multiple repositories in .pypirc; see http://wiki.python.org/moin/EnhancedPyPI for discussion. The patch is slightly revised from Tarek's last patch: I've simplified the PyPIRCCommand.finalize_options() method to not look at sys.argv. Tests still pass. | ||||
| * | Fix test_distutils to not fail when running 'make test' from a Python build | Thomas Wouters | 2008-04-05 | 1 | -1/+21 |
| | | | | | | | | | | directory that is not the source directory (ie, one created using '/path/to/source/configure'.) Leaves this test very slightly degraded in that particular case, compared to the build-in-sourcedir case, but that case isn't a particularly strong test either: neither test the actual path that will be used after installing. There isn't a particularly good way to test this, and a poor test beats a failing test. | ||||
| * | stupid, stupid, stupid! | Fred Drake | 2008-04-04 | 1 | -1/+0 |
| | | |||||
| * | my previous change did what I said it should not: it changed the current | Fred Drake | 2008-04-04 | 1 | -6/+48 |
| | | | | | | | | directory to the directory in which the setup.py script lived (which made __file__ wrong) fixed, with test that the script is run in the current directory of the caller | ||||
| * | - Issue #2385: distutils.core.run_script() makes __file__ available, so the | Fred Drake | 2008-04-04 | 1 | -0/+40 |
| | | | | | | controlled environment will more closely mirror the typical script environment. This supports setup.py scripts that refer to data files. | ||||
| * | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 2 | -3/+0 |
| | | |||||
| * | Fixed bug #1628 | Christian Heimes | 2007-12-14 | 1 | -1/+1 |
| | | | | | The detection now works on Unix with Makefile, Makefile with VPATH and on Windows. | ||||
| * | Disabled one test that is failing on Unix | Christian Heimes | 2007-12-06 | 1 | -1/+2 |
| | | |||||
| * | Fixed get_config_h_filename for Windows. Without the patch it can't find the ↵ | Christian Heimes | 2007-12-06 | 1 | -0/+36 |
| | | | | | | | pyconfig.h file inside a build tree. Added several small unit tests for sysconfig. | ||||
| * | SF 1668596/1720897: distutils now copies data files | Neal Norwitz | 2007-06-01 | 1 | -0/+35 |
| | | | | | | | | | even if package_dir is empty. This needs to be backported. I'm too tired tonight. It would be great if someone backports this if the buildbots are ok with it. Otherwise, I will try to get to it tomorrow. | ||||
| * | Whitespace normalization. | Tim Peters | 2005-03-28 | 2 | -2/+2 |
| | | |||||
| * | PEP 314 implementation (client side): | Fred Drake | 2005-03-20 | 1 | -1/+90 |
| | | | | | added support for the provides, requires, and obsoletes metadata fields | ||||
| * | helper code, mostly from Andy Harrington, for PEP 314 completion | Fred Drake | 2005-03-20 | 1 | -0/+9 |
| | | |||||
| * | Add missing executable option to DummyCommand. | Martin v. Löwis | 2004-08-26 | 1 | -1/+3 |
| | | |||||
| * | make sure distutils logging is shut off in tests to avoid spurious output | Fred Drake | 2004-08-03 | 4 | -3/+22 |
| | | |||||
| * | This allows additional commands to be provided for existing setup.py | Fred Drake | 2004-08-03 | 1 | -0/+100 |
| | | | | | | | | | | | | | | | | | | scripts without modifying either the distutils installation or the setup.py scripts of packages with which the new commands will be used. Specifically, an option is added to distutils that allows additional packages to be searched for command implementations in addition to distutils.command. The additional packages can be specified on the command line or via the installation or personal configuration files already loaded by distutils. For discussion, see the thread starting with: http://mail.python.org/pipermail/distutils-sig/2004-August/004112.html This closes SF patch #102241. | ||||
| * | elaborate package data test to make sure get_outputs() gives the right | Fred Drake | 2004-07-21 | 1 | -1/+7 |
| | | | | | | | results when byte-code compilation is requested (in particular, make sure that package data doesn't get a bogus byte-code listing generated) | ||||
| * | Make distutils "install --home" support all platforms. | Fred Drake | 2004-06-25 | 1 | -0/+55 |
| | | |||||
| * | add boilerplate so the test modules can be run as scripts | Fred Drake | 2004-06-25 | 3 | -1/+9 |
| | | |||||
| * | add a couple of tests for the build_scripts command | Fred Drake | 2004-06-21 | 1 | -0/+74 |
| | | |||||
| * | fix bug: list of data files was initialized too soon in build_py | Fred Drake | 2004-06-17 | 1 | -0/+50 |
| | | |||||
| * | move support code to a helper module to ease re-use | Fred Drake | 2004-06-17 | 2 | -34/+48 |
| | | |||||
| * | add a test that actually installs some scripts | Fred Drake | 2004-06-15 | 1 | -0/+56 |
| | | |||||
| * | One unit test for distutils is not much, but is more than we had yesterday. | Fred Drake | 2004-06-15 | 2 | -0/+81 |
| We need to write more; hopefully the barrier is a little lower now. | |||||
