[issue13712] pysetup create should not convert package_data to extra_files

2012-02-05 Thread Éric Araujo
Changes by Éric Araujo : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___ Pyth

[issue13712] pysetup create should not convert package_data to extra_files

2012-02-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 730c2e4aaf9c by Éric Araujo in branch 'default': Stop converting package_data to extra_files in pysetup create (#13712). http://hg.python.org/distutils2/rev/730c2e4aaf9c New changeset ea717d8e71d0 by Éric Araujo in branch 'python3': Merge fixes for

[issue13712] pysetup create should not convert package_data to extra_files

2012-02-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset edb6f9fb54ac by Éric Araujo in branch 'default': Stop converting package_data to extra_files in pysetup create (#13712). http://hg.python.org/cpython/rev/edb6f9fb54ac -- nosy: +python-dev ___ Python trac

[issue13712] pysetup create should not convert package_data to extra_files

2012-02-03 Thread Éric Araujo
Changes by Éric Araujo : -- dependencies: +package_data only allows one glob per-package ___ Python tracker ___ ___ Python-bugs-list m

[issue13712] pysetup create should not convert package_data to extra_files

2012-01-05 Thread Erik Bray
Erik Bray added the comment: FWIW, I'm for the first option for specifying package_data: [files] package_data = spam = first second third I'm pretty sure this is how I ended up implementing it in d2to1, since I needed this functionality. Theoretically spaces could be supported with an es

[issue13712] pysetup create should not convert package_data to extra_files

2012-01-04 Thread Éric Araujo
Éric Araujo added the comment: The bug is caused by code in packaging.create that iterates over a dict (package_data) to extend a list (extra_files). Instead of just calling sorted to make output deterministic, I’d prefer to fix that more serious behavior bug (see also #13463, #11805 and #53