Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | taking sysconfig out of distutils | Tarek Ziadé | 2010-01-23 | 1 | -5/+5 |
| | |||||
* | Fixed #4524: distutils build_script command failed with --with-suffix=3 | Tarek Ziadé | 2009-02-13 | 1 | -2/+2 |
| | |||||
* | Issue #5052: removed backward compatibility information (out of date) | Tarek Ziadé | 2009-01-25 | 1 | -2/+0 |
| | |||||
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+1 |
| | |||||
* | Patch #1696. Don't attempt to close None in dry-run mode. | Guido van Rossum | 2008-01-02 | 1 | -1/+2 |
| | |||||
* | #1120: put explicit version in the shebang lines of pydoc, idle | Georg Brandl | 2007-09-12 | 1 | -1/+2 |
| | | | | | and smtpd.py scripts that are installed by setup.py. That way, they work when only "make altinstall" is used. | ||||
* | Update compatibility comments to 2.1, corresponding to PEP 291 1.13. | Martin v. Löwis | 2004-11-10 | 1 | -1/+1 |
| | |||||
* | Patch #736857, #736859: Add -e option to build_scripts. | Martin v. Löwis | 2004-08-25 | 1 | -2/+5 |
| | |||||
* | Whitespace normalization, via reindent.py. | Tim Peters | 2004-07-18 | 1 | -1/+1 |
| | |||||
* | make sure the default manifest generation includes files identified as | Fred Drake | 2004-03-25 | 1 | -0/+2 |
| | | | | | scripts closes SF bug 796042 | ||||
* | Do not add extra "\n" after bang line. | Gustavo Niemeyer | 2003-06-27 | 1 | -2/+2 |
| | |||||
* | Only log a message and chmod() when the mode isn't already what we | Guido van Rossum | 2003-01-29 | 1 | -3/+6 |
| | | | | want it to be. Log both the old and new mode. | ||||
* | Change the mode of scripts in the build/scripts* directory to | Guido van Rossum | 2003-01-24 | 1 | -0/+12 |
| | | | | executable. | ||||
* | Add comment to Distutil files about requiring 1.5.2 compatibility, as | Andrew M. Kuchling | 2002-11-19 | 1 | -0/+2 |
| | | | | suggested by PEP 291. | ||||
* | Remove 'created by' lines; people can use CVS for this, and the information ↵ | Andrew M. Kuchling | 2002-11-14 | 1 | -2/+0 |
| | | | | is often out of date | ||||
* | Make setup.py less chatty by default. | Jeremy Hylton | 2002-06-04 | 1 | -3/+4 |
| | | | | | | | | | | | | | | | This is a conservative version of SF patch 504889. It uses the log module instead of calling print in various places, and it ignores the verbose argument passed to many functions and set as an attribute on some objects. Instead, it uses the verbosity set on the logger via the command line. The log module is now preferred over announce() and warn() methods that exist only for backwards compatibility. XXX This checkin changes a lot of modules that have no test suite and aren't exercised by the Python build process. It will need substantial testing. | ||||
* | Allow shebang's which use versioned Python binaries. Fixes | Marc-André Lemburg | 2002-02-28 | 1 | -1/+1 |
| | | | | bug #521526. | ||||
* | Joe VanAndel wrote: | Marc-André Lemburg | 2001-12-11 | 1 | -1/+1 |
| | | | | | | | | | | | > > When using 'distutils' (shipped with Python 2.1) I've found that my > Python scripts installed with a first line of: > > #!/usr/bin/python2.1None > > This is caused by distutils trying to patch the first line of the python > script to use the current interpreter. | ||||
* | Fix for | Michael W. Hudson | 2001-12-10 | 1 | -2/+11 |
| | | | | [ #409430 ] pydoc install broken | ||||
* | [Bug #475009] Tighten the pattern for the first line, so we don't | Andrew M. Kuchling | 2001-12-06 | 1 | -1/+1 |
| | | | | adjust it when a versioned interpreter is supplied (#!.../python2 ...) | ||||
* | Remove unused variable | Andrew M. Kuchling | 2001-08-10 | 1 | -1/+0 |
| | |||||
* | Do convert_path() on script paths (now PyXML builds out of the box | Just van Rossum | 2001-07-29 | 1 | -0/+2 |
| | | | | under MacOS.) | ||||
* | Undo revision 1.7: always mangle a #! line containing "python" to point | Greg Ward | 2001-07-25 | 1 | -4/+2 |
| | | | | | | | | | | | | | | to the current Python interpreter (ie. the one used for building/installation), even (especially!) if "/usr/bin/env" appears in the #! line. Rationale: installing scripts with "#!/usr/bin/env python" is asking for trouble, because 1) it might pick the wrong interpreter (not the one used to build/install the script) 2) it doesn't work on all platforms (try it on IRIX 5, or on Linux with command-line options for python) 3) "env" might not be in /usr/bin | ||||
* | When not copying a file because the output is up to date, make the message | Fred Drake | 2001-03-02 | 1 | -2/+2 |
| | | | | | slightly more brief, and more like the message that an extension will not be built because the built copy is up to date. | ||||
* | Leave #! lines featuring /usr/bin/env alone | Andrew M. Kuchling | 2001-02-28 | 1 | -2/+4 |
| | |||||
* | Standardized whitespace around function calls. | Greg Ward | 2000-09-30 | 1 | -3/+3 |
| | |||||
* | Added 'boolean_options' list to support config file parsing. | Greg Ward | 2000-09-25 | 1 | -0/+2 |
| | |||||
* | Fixed a grab-bag of typos spotted by Rob Hooft. | Greg Ward | 2000-07-27 | 1 | -1/+1 |
| | |||||
* | Take the basename of the script before concatenating it with the build dir. | Greg Ward | 2000-05-25 | 1 | -1/+1 |
| | |||||
* | Improvements to Bastian's build_scripts command: | Greg Ward | 2000-05-25 | 1 | -31/+58 |
| | | | | | | | | | * 'first_line_re' loosened up * command description improved * replaced '_copy_files()' and '_adjust_files()' with one method that does everything, 'copy_scripts()' -- this should be more efficient than Bastian's version, should behave better in dry-run mode, and does timestamp dependency-checking | ||||
* | Bastian Kleineidam: the "build_scripts" command. | Greg Ward | 2000-05-25 | 1 | -0/+71 |