summaryrefslogtreecommitdiff
path: root/src/distutils2/command
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | merge upstreamAlexis Metaireau2010-07-036-14/+37
| | |\ \ \ | | | |_|/ | | |/| |
| | * | | merged upstreamKonrad Delong2010-06-052-1/+462
| | |\ \ \ | | | | |/ | | | |/|
| | * | | merge konryd changesAlexis Metaireau2010-06-031-1/+1
| | |\ \ \
| | | * | | Make a decorator for PyPIServer mock, and starting some testsAlexis Metaireau2010-06-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for pypi.simple. Also updated some code to be 2.4 and 2.5 compatible.
| | | * | | merge upstreamAlexis Metaireau2010-06-011-0/+128
| | | |\ \ \
| | | | * \ \ merge konryd works about pypi test serverAlexis Metaireau2010-05-281-0/+128
| | | | |\ \ \
| | * | | \ \ \ merged tarek's changesKonrad Delong2010-06-011-0/+135
| | |\ \ \ \ \ \ | | | |/ / / / / | | |/| | | | |
| | | * | | | | show_response option enabledKonrad Delong2010-06-011-4/+5
| | | | | | | |
| | | * | | | | removed overengineered constant :)Konrad Delong2010-06-011-2/+1
| | | | | | | |
| | | * | | | | added verification to finalize_optionsKonrad Delong2010-06-011-3/+10
| | | | |/ / / | | | |/| | |
| | | * | | | other schemas support and informing about errorsKonrad Delong2010-05-171-4/+38
| | | | | | |
| | | * | | | implemented run for the simplest caseKonrad Delong2010-05-141-10/+40
| | | | | | |
| | | * | | | added encode_multipartKonrad Delong2010-05-131-0/+32
| | | | | | |
| | | * | | | added zip_dir_intoKonrad Delong2010-05-131-1/+14
| | | | | | |
| | | * | | | started work on upload_docsKonrad Delong2010-05-131-0/+19
| | | | | | |
| | | * | | | removed upload_docs shotKonrad Delong2010-05-131-174/+0
| | | | | | |
| | | * | | | moved the upload_docs commandKonrad Delong2010-05-091-0/+174
| | | | | | |
| * | | | | | Making sure the code works on all Python versions.Tarek Ziade2010-07-041-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, fixed a few imports and logging usage.
| * | | | | | [mq]: use_2to3, convert_2to3_doctests added to build_py.pyZubin Mithra2010-07-041-5/+63
| | |_|_|_|/ | |/| | | |
| * | | | | Improve imports indentation?ric Araujo2010-06-271-1/+1
| | | | | |
| * | | | | Make all classes new-style classes.?ric Araujo2010-06-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will make 3.x migration easier (we will catch incompatibilities sooner thanks to python2.6 -3, e.g. the __hash__ deprecation warning), it allows us to use properties, super and other niceties, and new-style classes are instantiated faster.
| * | | | | Pull changeset with new docstrings from jkloth?ric Araujo2010-06-246-9/+494
| |\ \ \ \ \ | | |/ / / / | |/| | | |
| | * | | | Rename a method for greater consistency?ric Araujo2010-06-065-10/+8
| | | | | |
| | * | | | Fix yet another RPM leftover?ric Araujo2010-06-041-2/+2
| | | |_|/ | | |/| |
* | | | | Merge from trunkJeremy Kloth2010-06-152-1/+488
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | moving cmd.py into command/Tarek Ziade2010-06-022-1/+463
| |/ / /
* | | | Begin documenting API interfacesJeremy Kloth2010-06-151-3/+18
|/ / /
* | | fixed filelist initialization in sdistTarek Ziade2010-05-301-2/+7
| |/ |/|
* | removed more dead code related to RPMsYannick Gingras2010-05-221-2/+0
| |
* | removed remaining bits from 'bdist_rpm'Yannick Gingras2010-05-223-11/+2
| |
* | removed --force-manifest in sdist commandTarek Ziade2010-05-171-63/+17
| |
* | Refactored the Manifest reader/writer. Extracted partalliy theTarek Ziade2010-05-121-58/+5
| | | | | | | | | | | | | | work done in sdist, and merged it with filelist into "manifest". distutils2.manifest.Manifest class becomes an independant class that can be used to manipulate MANIFEST and MANIFEST.in files.
* | removing the text_file module. TextFile is very complex where one or two ↵Tarek Ziade2010-05-121-12/+19
|/ | | | regexps can do the job for our unique use case (in the sdist command)
* fixed all doctutils testsTarek Ziade2010-04-241-4/+5
|
* avoid variable obfuscationTarek Ziade2010-04-131-3/+3
|
* make sure distutils2 talks with PyPI correctly -- once again this part ↵Tarek Ziade2010-04-132-20/+33
| | | | misses tests
* refactored the code that builds the HTTP requests for both register and uploadTarek Ziade2010-04-132-65/+12
|
* use the proper writing (URL)Tarek Ziade2010-04-061-1/+1
|
* sending to PyPI various metadata versions in the register commandTarek Ziade2010-03-171-8/+17
|
* merged Nicolas workTarek Ziade2010-03-161-1/+1
|\
| * replaced instances of 'classifiers' with 'classifier'Nicolas Cadou2010-03-151-1/+1
| |
* | Removed broken bdist_rpm command.Alexandre Vassalotti2010-03-151-563/+0
|/
* bye bye debug moduleTarek Ziad?2010-02-253-19/+0
|
* refactored DistributionMetadata -- cleaner implementationTarek Ziad?2010-02-246-114/+52
|
* now sysconfig uses a sysconfig.cfg fileTarek Ziad?2010-02-231-96/+6
|
* refactored the code so it works on Python 2.4, 2.5 and 2.6Tarek Ziad?2010-02-224-10/+10
|
* removed file_utilTarek Ziad?2010-02-223-4/+4
|
* removed dep_utilTarek Ziad?2010-02-223-8/+7
|
* removed dir_util callsTarek Ziad?2010-02-222-3/+7
|
* removed dir_utilTarek Ziad?2010-02-224-12/+37
|