Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 673704

Summary: golang-vcs-snapshot.eclass: import path for separate package
Product: Gentoo Linux Reporter: Anton Bolshakov <anton.bugs>
Component: EclassesAssignee: William Hubbs <williamh>
Status: RESOLVED INVALID    
Severity: normal    
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Anton Bolshakov 2018-12-25 02:31:16 UTC
I'm writing an ebuild and facing a problem. 

I have two tools (amass and bettercap) which require
EGO_VENDOR=(
"gopkg.in/sourcemap.v1 6e83acea0053641eff084973fee085f0c193c61a github.com/go-sourcemap/sourcemap"
)

So I want to make a separate "gopkg-sourcemap" ebuild.

However, if I specify 
EGO_PN="github.com/go-sourcemap/sourcemap"

the main tool is unable to find "gopkg.in/sourcemap.v1".

How can I change the export path here please?
Comment 1 Anton Bolshakov 2020-04-11 02:27:54 UTC
I figure it out. .v1 was referring to 1.x releases, but i was trying to use the same name with 2.x tree.