This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: pkgutil EggInfoDistribution requirements for .egg-info metadata
Type: behavior Stage: resolved
Components: Distutils2 Versions: Python 3.3, 3rd party
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: eric.araujo Nosy List: eric.araujo, michael.mulich, michael.mulich2, tarek
Priority: normal Keywords: patch

Created on 2011-01-11 04:56 by michael.mulich, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
distutils2-fixes-f3b5eb2aac2c.diff michael.mulich, 2011-01-11 04:56 Patch to fix the issue.
Messages (5)
msg125982 - (view) Author: Michael Mulich (michael.mulich) * Date: 2011-01-11 04:56
Found an issue where the metadata initialization of .egg-info dirs (an EggInfoDistribution object) overrides the 'path' variable, which makes it impossible to find a distributions requirements.

I've fixed the issue at https://bitbucket.org/pumazi/distutils2-fixes/changeset/f3b5eb2aac2c (changeset also attached).
msg126001 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2011-01-11 12:12
Thanks Michael for the report and fix.   Would you add a test for that fix?

Minor note: I follow docstrings good practices in my commit messages, making sure that the first line makes sense on its own (it’s used in short logs) and wrapping my lines under 80 characters, for the usual reasons.
msg137702 - (view) Author: Michael Mulich (michael.mulich) * Date: 2011-06-05 15:29
Looks like someone fixed this before distutils2 was merged into cpython as packaging. Thanks.
msg137744 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2011-06-06 15:33
Can you check if this is covered in test_database?
msg137938 - (view) Author: michael mulich (michael.mulich2) Date: 2011-06-09 04:06
Sure, I'll have a look. I'm only getting back into the swing of
things, but hopefully I can get more involved. Trying to do one or two
small tasks a night.

-Michael Mulich (pumazi)

On Mon, Jun 6, 2011 at 11:33 AM, Éric Araujo <report@bugs.python.org> wrote:
>
> Éric Araujo <merwok@netwok.org> added the comment:
>
> Can you check if this is covered in test_database?
>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue10884>
> _______________________________________
>
History
Date User Action Args
2022-04-11 14:57:11adminsetgithub: 55093
2014-03-13 10:42:43eric.araujosetstatus: open -> closed
resolution: out of date
stage: test needed -> resolved
2011-09-23 16:49:58eric.araujosetversions: + 3rd party
2011-06-12 09:06:17eric.araujosetstatus: closed -> open
assignee: tarek -> eric.araujo
stage: test needed
resolution: works for me -> (no value)
versions: + Python 3.3, - 3rd party
2011-06-09 04:06:47michael.mulich2setnosy: + michael.mulich2
messages: + msg137938
2011-06-06 15:33:45eric.araujosetmessages: + msg137744
2011-06-05 15:29:00michael.mulichsetstatus: open -> closed
resolution: works for me
messages: + msg137702
2011-01-11 12:12:51eric.araujosetnosy: tarek, eric.araujo, michael.mulich
messages: + msg126001
versions: + 3rd party, - Python 2.6, Python 2.5, Python 3.1, Python 2.7, Python 3.2, Python 3.3
2011-01-11 04:56:24michael.mulichcreate