Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 324039 - mythtv-plugins.eclass: mythnetvision won't install
Summary: mythtv-plugins.eclass: mythnetvision won't install
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-06-15 01:46 UTC by Ray
Modified: 2010-06-16 05:29 UTC (History)
2 users (show)

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 Ray 2010-06-15 01:46:15 UTC
mythnetvision wont install due to error in mythtv-plugins.eclass.

mythtv-plugins.eclass says:
if version is_at_least "0.23_beta"

should be:
if version_is_at_least "0.23_beta" ;

Reproducible: Always

Steps to Reproduce:
1.emerge mythnetvision
2.
3.

Actual Results:  
emerge fails

Expected Results:  
emerge success
Comment 1 Michael Weber (RETIRED) gentoo-dev 2010-06-15 11:35:24 UTC
Hello Ray,

I can't see such an error on this eclass and no fix in the recent CVS log.
Pleas update your portage tree (`emerge --sync`) and try to reproduce the bug.

If it still exists, please attache the full eclass file.

Thanks, Michael

http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/eclass/mythtv-plugins.eclass?view=log
Comment 2 Doug Goldstein (RETIRED) gentoo-dev 2010-06-15 18:55:43 UTC
Are you sure you don't have any overlays? Or hand edited the file yourself? The version I committed definitely has the ; in it. The line is actually

if version_is_at_least "0.23_beta" ; then
Comment 3 Ray 2010-06-16 02:31:24 UTC
Line 52 from the CVS version has:
 if version is_at_least "0.23_beta" ; then 

it should be 
 if version_is_at_least "0.23_beta" ; then 

there is a missing underscore _ between the words version and is. This causes mythnetvision to not get added as a supported plugin, thus not installed.
Comment 4 Doug Goldstein (RETIRED) gentoo-dev 2010-06-16 05:29:54 UTC
ok. Now I see what you meant. Thanks. Fixed now.