Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 157514 - dev-python/pyopengl-2.0.0.44 - error in dist.py
Summary: dev-python/pyopengl-2.0.0.44 - error in dist.py
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal
Assignee: Python Gentoo Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-12-08 05:42 UTC by Kieran
Modified: 2007-02-03 08:25 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Kieran 2006-12-08 05:42:53 UTC
Line 100 of setup/dist.py (in the code for this package), is:

self.NUMERIC = 0

but should be:

self.HAS_NUMERIC = 0


This causes the ebuild to break in some cases, when on line 107 of the same file, self.HAS_NUMERIC is accessed, but does not exist.

Changing line 100, rezipping the tar.gz, and updating the hashes, solved this problem for me. The code for the package in the repository itself probably needs to be modified, though.
Comment 1 Lukasz Strzygowski (RETIRED) gentoo-dev 2007-02-03 08:25:47 UTC
Fixed in portage. Thank you for reporting.