summaryrefslogtreecommitdiff
path: root/setuptools
Commit message (Collapse)AuthorAgeFilesLines
* Fix missing importHEADmasterphillip.eby2013-06-031-1/+1
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@89001 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix missing importphillip.eby2013-05-311-3/+3
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@88999 6015fed2-1504-0410-9fe1-9d1591cc4771
* Oops, forgot some filesphillip.eby2013-05-151-0/+246
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@88996 6015fed2-1504-0410-9fe1-9d1591cc4771
* Snapshot pre-merger changes, mostly SSL support and a few bugfixesphillip.eby2013-05-156-25/+116
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@88994 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix rejecting filenames with '..' in themphillip.eby2011-03-231-2/+2
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@88794 6015fed2-1504-0410-9fe1-9d1591cc4771
* Handle multiple Content-Length headers, and support HTTP credentials for phillip.eby2011-03-231-2/+43
| | | | | | | SVN checkouts. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@88792 6015fed2-1504-0410-9fe1-9d1591cc4771
* Handle tarballs with forward-referencing symlinksphillip.eby2010-10-121-6/+6
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@85380 6015fed2-1504-0410-9fe1-9d1591cc4771
* Argh. Missing parens.phillip.eby2010-10-091-2/+2
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@85333 6015fed2-1504-0410-9fe1-9d1591cc4771
* Don't crash if an unextractable symlink is found.phillip.eby2010-10-091-2/+2
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@85331 6015fed2-1504-0410-9fe1-9d1591cc4771
* Tarfile link support, and handle .pyd/.dll files installed as data on phillip.eby2010-10-022-10/+10
| | | | | | | win32. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@85188 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix quotes handling for GUI scripts on Windows when Python is in a phillip.eby2010-08-221-1/+1
| | | | | | | directory with a space in the name. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@84272 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix a problem with sandbox swapping 'open' and 'file' builtins.phillip.eby2010-04-291-4/+4
| | | | | | | Support sandbox access to os.devnull. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@80621 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix wrong keyword argument for specifying test tunner to unittestphillip.eby2010-03-121-1/+1
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@78878 6015fed2-1504-0410-9fe1-9d1591cc4771
* Yet another Sourceforge download fixphillip.eby2010-02-011-2/+2
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@77903 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix incorrect error message/traceback when no downloadphillip.eby2009-11-051-3/+3
| | | | | | | is found. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@76122 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix for issue 88phillip.eby2009-10-281-2/+2
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@75924 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix the elusive "double upload bdist_wininst" bugphillip.eby2009-10-191-13/+54
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@75547 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix lost launcher changes, string.split().phillip.eby2009-10-193-1/+1
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@75543 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fixes for Windwos 64 and Vista UAC errorsphillip.eby2009-10-123-2/+43
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@75387 6015fed2-1504-0410-9fe1-9d1591cc4771
* Major updates and fixes include:phillip.eby2009-10-1212-109/+254
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix for the Python 2.6.3 build_ext API change * Support for the most recent Sourceforge download link insanity * Support for SVN 1.6 * Stop crashing on certain types of HTTP error * Stop re-trying URLs that already failed retrieval once * Fixes for various dependency management problems such as looping builds, re-downloading packages already present on sys.path (but not in a registered "site" directory), and randomly preferring local -f packages over local installed packages * Prevent lots of spurious "already imported from another path" warnings (e.g. when pkg_resources is imported late) * Ensure C libraries (as opposed to extensions) are also built when doing bdist_egg * Fixed running the "test" command under Python 2.6+ Other changes: * Misc. documentation fixes * Improved Jython support * Fewer warnings under Python 2.6+ * Warn when 'packages' uses paths instead of package names (because it causes other problems, like spurious "already imported" warnings) * Stop using /usr/bin/sw_vers on Mac OS (replaced w/'platform' module calls) Note: This is NOT a merge from Distribute; upon review, many of the tracker-submitted patches used as a basis for forking were incorrect, incomplete, introduced new bugs, or were not addressing the root causes. (E.g., one of the changes in this patch fixes three superficially unrelated issues in the setuptools bug tracker.) Careful review will be required if you want to merge this work back into Distribute. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@75384 6015fed2-1504-0410-9fe1-9d1591cc4771
* Keep site directories (e.g. site-packages) from being included inphillip.eby2008-09-241-5/+5
| | | | | | | .pth files. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@66608 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix for http://bugs.python.org/setuptools/issue27 (Jython shebangphillip.eby2008-09-242-31/+71
| | | | | | | lines) git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@66596 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix for http://bugs.python.org/setuptools/issue37 - missingphillip.eby2008-09-111-1/+1
| | | | | | | __loader__ running under Google App Engine. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@66388 6015fed2-1504-0410-9fe1-9d1591cc4771
* Added 'test_runner'. (Note: this is a new feature and should notphillip.eby2008-08-211-10/+10
| | | | | | | be backported to the 0.6 branch.) git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65966 6015fed2-1504-0410-9fe1-9d1591cc4771
* Ensure that _full_name is set on all shared libs before extensionsphillip.eby2008-08-211-3/+3
| | | | | | | are checked for shared lib usage. (problem reported by Andi Vajda) git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65962 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix for http://bugs.python.org/setuptools/issue9phillip.eby2008-08-212-9/+9
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65954 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix for http://bugs.python.org/setuptools/issue29phillip.eby2008-08-211-1/+1
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65952 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix for http://bugs.python.org/setuptools/issue11phillip.eby2008-08-211-2/+3
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65950 6015fed2-1504-0410-9fe1-9d1591cc4771
* Candidate fix for http://bugs.python.org/setuptools/issue20phillip.eby2008-08-211-5/+5
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65949 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix for http://bugs.python.org/setuptools/issue31phillip.eby2008-08-212-10/+18
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65947 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix for http://bugs.python.org/setuptools/issue16phillip.eby2008-08-211-1/+6
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65946 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix for http://bugs.python.org/setuptools/issue5phillip.eby2008-08-212-5/+8
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65944 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix for http://bugs.python.org/setuptools/issue7phillip.eby2008-08-212-2/+10
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65942 6015fed2-1504-0410-9fe1-9d1591cc4771
* Enhanced error message per http://bugs.python.org/setuptools/issue28phillip.eby2008-08-211-2/+2
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65940 6015fed2-1504-0410-9fe1-9d1591cc4771
* More SVN 1.5 fixingphillip.eby2008-07-241-2/+2
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65222 6015fed2-1504-0410-9fe1-9d1591cc4771
* Support subversion 1.5phillip.eby2008-07-161-1/+1
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@65014 6015fed2-1504-0410-9fe1-9d1591cc4771
* Support installing pywin32 as an egg, albeit without registeringphillip.eby2008-03-101-5/+5
| | | | | | | COM support, shortcuts, etc. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@61341 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fixed missing importphillip.eby2008-02-151-1/+1
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@60846 6015fed2-1504-0410-9fe1-9d1591cc4771
* Warn if a namespace package is declared, but its parentphillip.eby2008-02-141-11/+11
| | | | | | | package is not. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@60815 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix interactions between the various "require" options,phillip.eby2008-01-194-19/+19
| | | | | | | | | so that downloads aren't repeated and needed eggs are always installed, even if they were downloaded to the setup directory already. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@60065 6015fed2-1504-0410-9fe1-9d1591cc4771
* chmod/test cleanups and Jython support.phillip.eby2008-01-185-42/+81
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@60061 6015fed2-1504-0410-9fe1-9d1591cc4771
* Update Pyrex/swig_sources workaround for newer Pyrex versionsphillip.eby2008-01-151-1/+1
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@59982 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix not picking up dependency links from recursive dependencies.phillip.eby2008-01-151-4/+4
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@59980 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix gui.exe launcher issue reported by Alexander Michael and Robin Dunn.phillip.eby2008-01-032-3/+36
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@59683 6015fed2-1504-0410-9fe1-9d1591cc4771
* Prevent --help-commands and other junk from showing underphillip.eby2007-10-081-1/+1
| | | | | | | Python 2.5 when running "easy_install" directly. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@58373 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix cross-platform line-end problem with SOURCES.txt: distutilsphillip.eby2007-09-261-11/+11
| | | | | | | doesn't expect manifest files to be shipped across platforms. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@58257 6015fed2-1504-0410-9fe1-9d1591cc4771
* Remove all references to the Cheese Shop, and switch to usingphillip.eby2007-09-043-3/+3
| | | | | | | the new PyPI "/simple" REST API. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@57964 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix import problems with system-installed nested namespace packages,phillip.eby2007-09-041-31/+31
| | | | | | | due to the parent package not having the child package as an attribute. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@57945 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix downloading from ftp: URLs (which don't have a content-type).phillip.eby2007-08-242-4/+1
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@57370 6015fed2-1504-0410-9fe1-9d1591cc4771
* Fix a problem with the findall() fix. :(phillip.eby2007-07-121-1/+3
| | | | git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@56320 6015fed2-1504-0410-9fe1-9d1591cc4771