Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | | Correct command reference. | Jason R. Coombs | 2015-01-18 | 1 | -1/+1 | |
| | | | | | ||||||
* | | | | | Use non-posix semantics in a WindowsCommandSpec and use that class in the ↵ | Jason R. Coombs | 2015-01-18 | 1 | -1/+8 | |
| | | | | | | | | | | | | | | | | | | | | Windows script writers. Fixes #331. | |||||
* | | | | | Also use command_spec_class in ScriptWriter. | Jason R. Coombs | 2015-01-18 | 1 | -2/+2 | |
| | | | | | ||||||
* | | | | | Allow the CommandSpec class to be resolved by the writer. | Jason R. Coombs | 2015-01-18 | 2 | -1/+3 | |
| | | | | | ||||||
* | | | | | Extract writer resolution as a variable | Jason R. Coombs | 2015-01-18 | 1 | -1/+3 | |
| | | | | | ||||||
* | | | | | Defer resolution of the CommandSpec and do it exactly once. | Jason R. Coombs | 2015-01-18 | 1 | -2/+2 | |
| | | | | | ||||||
* | | | | | Extract variable for exec_param | Jason R. Coombs | 2015-01-18 | 1 | -1/+2 | |
| | | | | | ||||||
* | | | | | Extract variable for bdist_wininst command | Jason R. Coombs | 2015-01-18 | 1 | -3/+2 | |
| | | | | | ||||||
* | | | | | Extract messages as class attributes for nicer indentation. | Jason R. Coombs | 2015-01-18 | 1 | -73/+88 | |
| | | | | | ||||||
* | | | | | Restore setuptools.command.easy_install.sys_executable for pbr compatibility. | Jason R. Coombs | 2015-01-16 | 1 | -2/+3 | |
| | | | | | ||||||
* | | | | | Renamed .get_writer to .best and removed boolean argument. | Jason R. Coombs | 2015-01-16 | 2 | -11/+25 | |
| | | | | | ||||||
* | | | | | Merge with 11.3.1 | Jason R. Coombs | 2015-01-07 | 2 | -75/+147 | |
|\ \ \ \ \ | ||||||
| * | | | | | Change the way string values are interpreted from build.executable - now ↵ | Jason R. Coombs | 2015-01-04 | 1 | -4/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | they must be quoted or otherwise escaped suitable for parsing by shlex.split. | |||||
| * | | | | | Add test capturing expectation around sys.executable having spaces in the name. | Jason R. Coombs | 2015-01-04 | 1 | -3/+6 | |
| | | | | | | ||||||
| * | | | | | Allow CommandSpec to be constructed simply from a list. | Jason R. Coombs | 2015-01-04 | 1 | -0/+2 | |
| | | | | | | ||||||
| * | | | | | Remove redundant line | Jason R. Coombs | 2015-01-04 | 1 | -1/+0 | |
| | | | | | | ||||||
| * | | | | | Use CommandSpec in ScriptWriter, removing now unused methods. | Jason R. Coombs | 2015-01-04 | 1 | -33/+3 | |
| | | | | | | ||||||
| * | | | | | Use CommandSpec in get_script_header | Jason R. Coombs | 2015-01-04 | 1 | -5/+8 | |
| | | | | | | ||||||
| * | | | | | Update install_scripts to use CommandSpec for generating script headers. | Jason R. Coombs | 2015-01-04 | 2 | -7/+18 | |
| | | | | | | ||||||
| * | | | | | Added new class CommandSpec, which will be used for abstracting the command ↵ | Jason R. Coombs | 2015-01-04 | 1 | -8/+87 | |
| | | | | | | | | | | | | | | | | | | | | | | | | handling for script headers. | |||||
| * | | | | | Extract method for handling non-ascii exe. Strip out excess whitespace from ↵ | Jason R. Coombs | 2015-01-04 | 1 | -17/+20 | |
| | | | | | | | | | | | | | | | | | | | | | | | | option handling. | |||||
| * | | | | | Extract method for parsing options. | Jason R. Coombs | 2015-01-04 | 1 | -7/+17 | |
| | | | | | | ||||||
| * | | | | | Rename _gen_args to get_args (for consistency). | Jason R. Coombs | 2015-01-04 | 2 | -6/+6 | |
| | | | | | | ||||||
| * | | | | | Deprecate and remove usage of easy_install.get_script_header. | Jason R. Coombs | 2015-01-04 | 2 | -6/+10 | |
| | | | | | | ||||||
| * | | | | | Moved get_script_header into ScriptWriter class | Jason R. Coombs | 2015-01-04 | 1 | -5/+6 | |
| | | | | | | ||||||
| * | | | | | Move get_script_header into ScriptWriter | Jason R. Coombs | 2015-01-04 | 2 | -25/+29 | |
| | | | | | | ||||||
| * | | | | | Move decision logic about windows/header generation closer to ↵ | Jason R. Coombs | 2015-01-04 | 2 | -10/+15 | |
| | | | | | | | | | | | | | | | | | | | | | | | | install_scripts, as it doesn't appear to be used elsewhere. | |||||
| * | | | | | Move trailing comment | Jason R. Coombs | 2015-01-04 | 1 | -1/+2 | |
| | | | | | | ||||||
| * | | | | | No need to pass the writer - just invoke it directly. | Jason R. Coombs | 2015-01-04 | 1 | -4/+4 | |
| | | | | | | ||||||
| * | | | | | Extract method for getting script args | Jason R. Coombs | 2015-01-04 | 1 | -5/+9 | |
| | | | | | | ||||||
| * | | | | | Reuse list2cmdline for argument quoting. | Jason R. Coombs | 2015-01-04 | 1 | -30/+2 | |
| | | | | | | ||||||
* | | | | | | Add EntryPoint.resolve and deprecate most usage of EntryPoint.load. Removed ↵11.3 | Jason R. Coombs | 2015-01-05 | 1 | -1/+1 | |
|/ / / / / | | | | | | | | | | | | | | | | EntryPoint._load. | |||||
* | | | | | Test the report method | Jason R. Coombs | 2015-01-04 | 1 | -4/+1 | |
| | | | | | ||||||
* | | | | | Use except/as, now supported by Python 2.6 | Jason R. Coombs | 2015-01-04 | 3 | -11/+7 | |
| |/ / / |/| | | | ||||||
* | | | | Use underlying invocation of ._load directly | Jason R. Coombs | 2014-12-31 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Remove superfluous parentheses | Jason R. Coombs | 2014-12-31 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Restore _default_revctrl implementation (stubbed). Fixes #320. | Jason R. Coombs | 2014-12-31 | 1 | -0/+1 | |
| | | | | ||||||
* | | | | Merge with remove-svn | Jason R. Coombs | 2014-12-30 | 1 | -27/+35 | |
|\ \ \ \ | ||||||
| * | | | | Extract variable for clarity of reading | Jason R. Coombs | 2014-12-30 | 1 | -4/+8 | |
| | | | | | ||||||
| * | | | | Extract _patch_usage and re-implement as a context manager. | Jason R. Coombs | 2014-12-29 | 1 | -23/+27 | |
| | | | | | ||||||
| * | | | | Reindent using textwrap | Jason R. Coombs | 2014-12-29 | 1 | -4/+4 | |
| | | | | | ||||||
* | | | | | Merge with master | Jason R. Coombs | 2014-12-28 | 2 | -58/+7 | |
|\ \ \ \ \ | |/ / / / |/| | | | | ||||||
| * | | | | Removed svn support from setuptools. Ref #313. | Jason R. Coombs | 2014-12-24 | 2 | -58/+7 | |
| | | | | | ||||||
* | | | | | Merge pull request #106 from Richard Ipsum. | Jason R. Coombs | 2014-12-26 | 3 | -31/+68 | |
|\ \ \ \ \ | |/ / / / | ||||||
| * | | | | Setuptools now uses the 'packaging' package from pkg_resources, unifying the ↵ | Jason R. Coombs | 2014-12-24 | 1 | -7/+1 | |
| | | | | | | | | | | | | | | | | | | | | behavior around resolution of that package. | |||||
| * | | | | Move vendored packaging module into pkg_resources._vendor, restoring ↵ | Jason R. Coombs | 2014-12-24 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | independence of pkg_resources from setuptools. Fixes #311. | |||||
| * | | | | Force list type for easy concatenation. | Jason R. Coombs | 2014-12-23 | 1 | -1/+1 | |
| | | | | | ||||||
| * | | | | Add comments for clarity. | Jason R. Coombs | 2014-12-23 | 1 | -0/+2 | |
| | | | | | ||||||
| * | | | | Extract logic for getting the extensions for outputs. | Jason R. Coombs | 2014-12-23 | 1 | -4/+7 | |
| | | | | | ||||||
| * | | | | Collapse two generator expressions. | Jason R. Coombs | 2014-12-23 | 1 | -2/+2 | |
| | | | | |