# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit go-module EGO_SUM=( "github.com/BurntSushi/toml v0.3.1/go.mod" "github.com/StackExchange/blackbox v0.0.0-20200527125317-e049c02655d2" "github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883" "github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod" "github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d" "github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod" "github.com/davecgh/go-spew v1.1.0/go.mod" "github.com/davecgh/go-spew v1.1.1" "github.com/davecgh/go-spew v1.1.1/go.mod" "github.com/kr/pretty v0.1.0" "github.com/kr/pretty v0.1.0/go.mod" "github.com/kr/pty v1.1.1/go.mod" "github.com/kr/text v0.1.0" "github.com/kr/text v0.1.0/go.mod" "github.com/mattn/go-runewidth v0.0.7" "github.com/mattn/go-runewidth v0.0.7/go.mod" "github.com/mattn/go-runewidth v0.0.9" "github.com/mattn/go-runewidth v0.0.9/go.mod" "github.com/olekukonko/tablewriter v0.0.4" "github.com/olekukonko/tablewriter v0.0.4/go.mod" "github.com/pmezard/go-difflib v1.0.0" "github.com/pmezard/go-difflib v1.0.0/go.mod" "github.com/russross/blackfriday/v2 v2.0.1" "github.com/russross/blackfriday/v2 v2.0.1/go.mod" "github.com/sergi/go-diff v1.1.0" "github.com/sergi/go-diff v1.1.0/go.mod" "github.com/shurcooL/sanitized_anchor_name v1.0.0" "github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod" "github.com/stretchr/objx v0.1.0/go.mod" "github.com/stretchr/testify v1.4.0" "github.com/stretchr/testify v1.4.0/go.mod" "github.com/urfave/cli/v2 v2.2.0" "github.com/urfave/cli/v2 v2.2.0/go.mod" "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod" "gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15" "gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod" "gopkg.in/yaml.v2 v2.2.2/go.mod" "gopkg.in/yaml.v2 v2.2.4" "gopkg.in/yaml.v2 v2.2.4/go.mod" ) go-module_set_globals DESCRIPTION="Safely store secrets in Git/Mercurial/Subversion" HOMEPAGE="https://github.com/StackExchange/blackbox" SRC_URI="https://github.com/StackExchange/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz ${EGO_SUM_SRC_URI}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="app-crypt/gnupg dev-vcs/git" DOCS=( README-v2.md ) src_compile() { go build ./cmd/blackbox || die "build failed" } src_test() { go test -work ./... || die "test failed" } src_install() { einstalldocs dobin blackbox dobin binv2/blackbox_{addadmin,cat,decrypt_all_files,decrypt_file,deregister_file,diff} \ binv2/blackbox_{edit,edit_end,edit_start,initialize,list_admins,listadmins} \ binv2/blackbox_{list_files,postdeploy,register_new_file,removeadmin,shred_all_files} \ binv2/blackbox_{update_all_files,view,whatsnew} }