[issue10191] scripts files are not RECORDed.

2011-09-02 Thread Éric Araujo
Éric Araujo added the comment: I have added tests for scripts in RECORD and they pass. Closing, please reopen if you can reproduce the bug. -- resolution: -> invalid stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue10191] scripts files are not RECORDed.

2011-06-10 Thread Éric Araujo
Éric Araujo added the comment: > OK, I'll test it too. Thanks. In case you’re not sure how to test my patch, see http://docs.python.org/devguide/faq#how-do-i-apply-a-patch and http://docs.python.org/devguide/runtests > I looked sources of packaging. That use packaging.utils.copy_tree. > When

[issue10191] scripts files are not RECORDed.

2011-06-09 Thread Atsushi Odagiri
Atsushi Odagiri added the comment: OK, I'll test it too. I looked sources of packaging. That use packaging.utils.copy_tree. When I reported that problem, install_scripts used _backport.shutil.copytree. Maybe problem is fixed, because it reterned copied file lists. Is that fixies applied to di

[issue10191] scripts files are not RECORDed.

2011-06-09 Thread Éric Araujo
Éric Araujo added the comment: I wrote a test but it did not fail. Can you test it too? -- keywords: +patch versions: +Python 3.3 -3rd party Added file: http://bugs.python.org/file22291/test-record-scripts-10191.diff ___ Python tracker

[issue10191] scripts files are not RECORDed.

2010-12-15 Thread Éric Araujo
Éric Araujo added the comment: For the record, I have started work on this, then stopped due to lack of time. I’ll get back to it. -- ___ Python tracker ___ __

[issue10191] scripts files are not RECORDed.

2010-10-28 Thread Éric Araujo
Éric Araujo added the comment: Thanks for the report. This is indeed a bug with respect to PEP 376. It would be too difficult to modify shutil (and copy2) to make it return filenames, but thanks to the new copy_function hook it will be easy to store filenames in a list and use that. I’ll ha

[issue10191] scripts files are not RECORDed.

2010-10-25 Thread Atsushi Odagiri
New submission from Atsushi Odagiri : I wrote setup.py includes scripts with distutils2, and ran `setup.py install`. scripts were installed in scripts directory, but not recorded in .dist-info/RECORD. I think that `distutils2._backport.shutil:copytree` should return copied filenames. ---