Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 750734 - sys-cluster/minikube-1.14.0 does not install with libvirt useflag enabled
Summary: sys-cluster/minikube-1.14.0 does not install with libvirt useflag enabled
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: AMD64 Linux
: Normal normal
Assignee: Zac Medico
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-10-22 09:29 UTC by Bas Weelinck
Modified: 2020-10-23 07:02 UTC (History)
1 user (show)

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


Attachments
emerge --info output (emerge_info.txt,6.09 KB, text/plain)
2020-10-22 09:31 UTC, Bas Weelinck
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Bas Weelinck 2020-10-22 09:29:44 UTC
sys-cluster/minikube-1.14.0 fails during install phase when the libvirt useflag is enabled, due to the dobin path being misconfigured.


Reproducible: Always

Steps to Reproduce:
emerge minikube 1.14.0 with libvirt useflag enabled.
Actual Results:  
Failure during install phase.

Expected Results:  
Package installs.

The libvirt/kvm plugin dobin path was correct for the minikube-1.13.1 ebuild. A diff between the two shows this has in fact been changed:
1735,1736c1753,1754
< 	newbin out/minikube-linux-amd64 minikube
< 	use libvirt && dobin out/docker-machine-driver-kvm2
---
> 	newbin "${minikube_target}" minikube
> 	use libvirt && dobin docker-machine-driver-kvm2

Looking in the build folder shows the binary is in the out/ folder like the previous version and therefore the path shouldn't have been changed.
Comment 1 Bas Weelinck 2020-10-22 09:31:23 UTC
Created attachment 667937 [details]
emerge --info output
Comment 2 Larry the Git Cow gentoo-dev 2020-10-23 03:31:42 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df47e657620982bfe2e465f1ed207e370d6a28d3

commit df47e657620982bfe2e465f1ed207e370d6a28d3
Author:     Georgy Yakovlev <gyakovlev@gentoo.org>
AuthorDate: 2020-10-23 03:22:57 +0000
Commit:     Georgy Yakovlev <gyakovlev@gentoo.org>
CommitDate: 2020-10-23 03:31:27 +0000

    sys-cluster/minikube: fix target typo
    
    Closes: https://bugs.gentoo.org/750734
    Package-Manager: Portage-3.0.8, Repoman-3.0.2
    Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>

 sys-cluster/minikube/minikube-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
Comment 3 Georgy Yakovlev archtester gentoo-dev 2020-10-23 03:32:21 UTC
thanks. lost out/ indeed, I blame greedy delete key.
fixed!
Comment 4 Bas Weelinck 2020-10-23 07:02:07 UTC
Thanks for the quick fix.