Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 437536 - fortran-2.eclass pushes fortran as dependancy
Summary: fortran-2.eclass pushes fortran as dependancy
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Justin Lecher (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-10-07 18:05 UTC by Xavier Miller (RETIRED)
Modified: 2012-10-07 18:37 UTC (History)
1 user (show)

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


Attachments
The culprit ebuild (fortran-2.eclass,4.13 KB, text/plain)
2012-10-07 18:07 UTC, Xavier Miller (RETIRED)
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Xavier Miller (RETIRED) gentoo-dev 2012-10-07 18:05:20 UTC
In dev-python/numpy ebuilds, there is a call to fortran-2.eclass

But even with USE="-fortran", a dependancy to virtual/fortran is pushed.

In my case, all USE disable fortran dependancies, but that eclass do it.
And *I DON'T NEED FORTRAN*

This misbeahviour appeared today, 2012-10-07. Before, it worked well.
This bogous eclass is dated today, 15:30.

Please roll-back to a previous version.

Thanks in advance.

BTW: why aren't eclasses versionned as ebuilds? I it impossible to get an other version in a "user-based" Portage tree.

Reproducible: Always
Comment 1 Xavier Miller (RETIRED) gentoo-dev 2012-10-07 18:07:27 UTC
Created attachment 325936 [details]
The culprit ebuild

if in_iuse fortran; then
        DEPEND="fortran? ( virtual/fortran )"
else
        DEPEND="virtual/fortran"
fi


SO : even with USE="-fortran", fortran is always pulled...
Not all ebuilds based on Fortran have fortran in IUSE
Comment 2 Justin Lecher (RETIRED) gentoo-dev 2012-10-07 18:25:01 UTC
right, that thing was broken and reverted. Please sync or comment that code in the eclass.
Comment 3 Xavier Miller (RETIRED) gentoo-dev 2012-10-07 18:37:39 UTC
Thank you, it's working as expected in my case (USE="-fortran", no explicit fortran dependancies, no hidden dependancy).