Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 673704 - golang-vcs-snapshot.eclass: import path for separate package
Summary: golang-vcs-snapshot.eclass: import path for separate package
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Eclasses (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: William Hubbs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-12-25 02:31 UTC by Anton Bolshakov
Modified: 2020-04-11 02:27 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 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.