[issue11595] Miscellaneous bugs in cfg_to_args() utility function

2011-07-19 Thread Éric Araujo
Éric Araujo added the comment: > The reason being that I'm using this in my own packages so that I can > distutils2-like setup.cfgs, but still install with normal distutils > and/or Distribute without depending on distutils2 in its entirety. > > I'm wondering if there might be a better way to pr

[issue11595] Miscellaneous bugs in cfg_to_args() utility function

2011-06-11 Thread Éric Araujo
Éric Araujo added the comment: Thanks again! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue11595] Miscellaneous bugs in cfg_to_args() utility function

2011-06-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 303e3693d634 by Éric Araujo in branch 'default': Move useful function to packaging.util. http://hg.python.org/cpython/rev/303e3693d634 New changeset 06670bd0e59e by Éric Araujo in branch 'default': Fix assorted bugs in packaging.util.cfg_to_args (#

[issue11595] Miscellaneous bugs in cfg_to_args() utility function

2011-06-09 Thread Erik Bray
Erik Bray added the comment: Thanks Eric for your review. Obviously the last patch was rushed, and I didn't even run the tests. It also got my changes for issue12240 mixed into it. So I've gone ahead and attached an updated patch which incorporates your review comments. -- Added f

[issue11595] Miscellaneous bugs in cfg_to_args() utility function

2011-06-07 Thread Erik Bray
Erik Bray added the comment: Done. Also added support for multi-valued description-file values. -- Added file: http://bugs.python.org/file22276/issue11595-2.patch ___ Python tracker __

[issue11595] Miscellaneous bugs in cfg_to_args() utility function

2011-06-07 Thread Éric Araujo
Éric Araujo added the comment: Can you refresh your patch for packaging? -- assignee: tarek -> eric.araujo stage: -> patch review type: -> behavior versions: +Python 3.3 -3rd party ___ Python tracker ___

[issue11595] Miscellaneous bugs in cfg_to_args() utility function

2011-03-22 Thread Éric Araujo
Éric Araujo added the comment: Another bug: the extracted author_email value is wrong. -- ___ Python tracker ___ ___ Python-bugs-list

[issue11595] Miscellaneous bugs in cfg_to_args() utility function

2011-03-21 Thread Éric Araujo
Éric Araujo added the comment: I don’t really follow what you’re saying, sorry. Anyway, it looks like a feature request separate from this bug, let’s keep things distinct :) You can write to the ML, add a todo entry or another bug about your other thing. -- _

[issue11595] Miscellaneous bugs in cfg_to_args() utility function

2011-03-21 Thread Erik Bray
Erik Bray added the comment: I've got an additional patch to this function that also adds support for the package_data option, for extension modules (at least as they are currently specified in setup.cfg), and adds support for running setup_hook. The only problem is that it's starting to copy

[issue11595] Miscellaneous bugs in cfg_to_args() utility function

2011-03-18 Thread Éric Araujo
Éric Araujo added the comment: Looks good to me (note: didn’t test). -- versions: +3rd party ___ Python tracker ___ ___ Python-bugs-l

[issue11595] Miscellaneous bugs in cfg_to_args() utility function

2011-03-18 Thread Erik Bray
New submission from Erik Bray : Attached is a patch that fixes a few miscellaneous bugs in cfg_to_args() that were holding me up. Namely: * A bad variable name (file -> path) * A few more fields needed to be in MULTI_FIELDS * Added support for packages_root -> package_dir conversion This als