URI:
       tgopkg-sourcemap-2.1.3.ebuild - parlay - yet another gentoo overlay
  HTML git clone https://git.parazyd.org/parlay
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       tgopkg-sourcemap-2.1.3.ebuild (638B)
       ---
            1 # Copyright 1999-2020 Gentoo Authors
            2 # Distributed under the terms of the GNU General Public License v2
            3 
            4 # https://data.gpo.zugaina.org/pentoo/dev-go/gopkg-sourcemap/
            5 
            6 EAPI=6
            7 
            8 EGO_PN="github.com/go-sourcemap/sourcemap"
            9 
           10 if [[ ${PV} = *9999* ]]; then
           11         inherit golang-vcs
           12         KEYWORDS=""
           13 else
           14         KEYWORDS="~amd64 ~x86 ~arm ~arm64"
           15         SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
           16         inherit golang-vcs-snapshot
           17 fi
           18 
           19 inherit golang-build
           20 
           21 DESCRIPTION="Source maps consumer for Golang"
           22 HOMEPAGE="https://godoc.org/github.com/go-sourcemap/sourcemap"
           23 
           24 LICENSE="BSD-2"
           25 SLOT="0"
           26 IUSE=""
           27 
           28 RDEPEND=">=dev-lang/go-1.10"
           29 DEPEND="${RDEPEND}"