[issue11409] pysetup --search should return non-zero when a dist is not installed and print a message stating the fact.

2011-03-05 Thread Kelsey
New submission from Kelsey kelsey.highto...@gmail.com: I would like to make pysetup easier to work with when called from shell scripts or similar tools that wish to take action based on the exit code of the pysetup --search command. In this case return 0 if a match is found and 1 otherwise

[issue11409] pysetup --search should return non-zero when a dist is not installed and print a message stating the fact.

2011-03-05 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: I will take a look, thanks. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11409

[issue11409] pysetup --search should return non-zero when a dist is not installed and print a message stating the fact.

2011-03-05 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: Updated patch based on the distutils2-new-cmdline repo https://bitbucket.org/khightower/distutils2-new-cmdline-mq/qseries?apply=tqs_apply=pysetup-search-nonzero -- Added file: http://bugs.python.org/file21010/pysetup-search-new

[issue11357] Add support for PEP 381 -- Mirror Authenticity

2011-03-03 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: Based on the feedback I have updated my patch, please review. An updated patch attached. Link to my distutils2 mq below: https://bitbucket.org/khightower/distutils2-patch-queue/qseries?apply=tqs_apply=mirror-authenticity -- Added

[issue11357] Add support for PEP 381 -- Mirror Authenticity

2011-03-01 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: Thanks for the feedback! I agree with the issues raised and will rework the patch to address them. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11357

[issue11041] On the distutils2 documentation, 'requires-python' shouldn't be documented as *multi

2011-02-28 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: Fixed in my bitbucket fork. https://bitbucket.org/khightower/distutils2/changeset/ee9e580e5000 -- nosy: +kelseyhightower ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11041

[issue11357] Add support for PEP 381 -- Mirror Authenticity

2011-02-28 Thread Kelsey
New submission from Kelsey kelsey.highto...@gmail.com: Distutils2 should provide support for verifying a mirrors authenticity as described in PEP 381 -- Mirror Authenticity. -- assignee: tarek components: Distutils2 messages: 129736 nosy: alexis, eric.araujo, kelseyhightower, tarek

[issue11357] Add support for PEP 381 -- Mirror Authenticity

2011-02-28 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: I have started on an implementation in my distutil2 patch-queue on bitbucket. Link to code, tests, and documentation: https://bitbucket.org/khightower/distutils2-patch-queue/qseries?apply=tqs_apply=mirror-authenticity Outstanding items

[issue11357] Add support for PEP 381 -- Mirror Authenticity

2011-02-28 Thread Kelsey
Changes by Kelsey kelsey.highto...@gmail.com: -- keywords: +patch Added file: http://bugs.python.org/file20953/mirror-authenticity.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11357

[issue11219] Produce a warning when the license is specified in both the License and Classifier metadata fields

2011-02-16 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: Based on the feedback, I will rework the patch to include the following: * Produce a warning only if the user supplied Platform or License metadata is listed in Trove classifiers (Exact match

[issue11219] Produce a warning when the license is specified in both the License and Classifier metadata fields

2011-02-16 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: Eric, I am not sure we can check for more than an exact match on Platform and License metadata fields. D2 maintains a list of all Trove Classifiers which can be searched for an exact match; if a match is found warn the user

[issue11219] Produce a warning when the license is specified in both the License and Classifier metadata fields

2011-02-16 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: Eric, thanks for the example. This clarifies things. +1 on the new data structure for the classifiers -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11219

[issue11219] Produce a warning when the license is specified in both the License and Classifier metadata fields

2011-02-15 Thread Kelsey
New submission from Kelsey kelsey.highto...@gmail.com: Distutils2 should produce a warning when the license is specified in both the License and Classifier metadata fields -- assignee: tarek components: Distutils2 messages: 128624 nosy: alexis, eric.araujo, kelseyhightower, tarek

[issue11219] Produce a warning when the license is specified in both the License and Classifier metadata fields

2011-02-15 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: Changes and additional tests can be reviewed on my patch queue. https://bitbucket.org/khightower/distutils2-patch-queue/changeset/d7dff88ab524 -- ___ Python tracker rep...@bugs.python.org http

[issue11057] Missing DistutilsOptionError

2011-01-29 Thread Kelsey
New submission from Kelsey kelsey.highto...@gmail.com: Missing DistutilsOptionError import in distutil2.config causes the following error: Traceback (most recent call last): File /opt/OpenPython-2.7.1/lib/python2.7/runpy.py, line 162, in _run_module_as_main __main__, fname, loader

[issue11057] Missing DistutilsOptionError

2011-01-29 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: Link to patch: https://bitbucket.org/khightower/distutils2/changeset/22f336b467b8 -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11057

[issue11057] Missing import of DistutilsOptionError

2011-01-29 Thread Kelsey
Changes by Kelsey kelsey.highto...@gmail.com: -- title: Missing DistutilsOptionError - Missing import of DistutilsOptionError ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11057

[issue11058] dist directory not created when running sdist command

2011-01-29 Thread Kelsey
New submission from Kelsey kelsey.highto...@gmail.com: When trying to create a source distribution, I get the following error and no stack trace: [openpython:yamlconfig]$ /opt/OpenPython-2.7.1/bin/python -m distutils2.run sdist WARNING:root:warning: no files found matching 's

[issue11058] dist directory not created when running sdist command

2011-01-29 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: Link to patch: https://bitbucket.org/khightower/distutils2/changeset/6ef86fa5236b -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11058

[issue11045] shutil._make_tarball

2011-01-29 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: Adding patch to ticket -- keywords: +patch Added file: http://bugs.python.org/file20609/check-logger-is-none.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11045

[issue11058] dist directory not created when running sdist command

2011-01-29 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: This could be my mistake. . I think an early attempt at patching Issue 11045, I disabled os.makedirs(archive_dir) in shutil. I am going to retest -- ___ Python tracker rep...@bugs.python.org http

[issue11058] dist directory not created when running sdist command

2011-01-29 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: I have retested; this issue was related to a bug I introduced in shutil (fixed now, and patch sent upstream) -- resolution: - invalid status: open - closed ___ Python tracker rep

[issue11045] shutil._make_tarball

2011-01-28 Thread Kelsey
Kelsey kelsey.highto...@gmail.com added the comment: Adding stacktrace to ticket -- nosy: +kelseyhightower Added file: http://bugs.python.org/file20574/distutils2_logger.info_bug.txt ___ Python tracker rep...@bugs.python.org http://bugs.python.org