# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit go-module COMMIT="ec1623af3f19f43cd4f44b07936081a37f65a944" EGO_SUM=( "github.com/BurntSushi/toml v0.3.1/go.mod" "github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod" "github.com/cpuguy83/go-md2man/v2 v2.0.1" "github.com/cpuguy83/go-md2man/v2 v2.0.1/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/pkg/errors v0.9.1" "github.com/pkg/errors v0.9.1/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/go.mod" "github.com/russross/blackfriday/v2 v2.1.0" "github.com/russross/blackfriday/v2 v2.1.0/go.mod" "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.7.0" "github.com/stretchr/testify v1.7.0/go.mod" "github.com/urfave/cli v1.22.5" "github.com/urfave/cli v1.22.5/go.mod" "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405" "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod" "gopkg.in/yaml.v2 v2.2.2/go.mod" "gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod" "gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b" "gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod" ) go-module_set_globals DESCRIPTION="CloudFlare DNS backup tool" HOMEPAGE="https://github.com/lfaoro/flares" SRC_URI="https://github.com/lfaoro/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz ${EGO_SUM_SRC_URI}" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" RESTRICT="test" # requires auth src_compile() { DATE="$(date -u '+%Y-%m-%d %I:%M:%S %Z')" LDFLAGS="-X main.commit=${COMMIT} -X main.version=${PV} -X \"main.date=${DATE}\"" ego build -ldflags "${LDFLAGS}" -o flaredns ./cmd/... } src_test() { ego test -work ./... } src_install() { einstalldocs dobin flaredns }