summaryrefslogtreecommitdiff
path: root/dev-util/openring/openring-1.0.1.ebuild
blob: d69d36421ca3ca1b6c0293d2c6423522d1e6359c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
EAPI=7

inherit go-module

DESCRIPTION="A webring for static site generators"

HOMEPAGE="https://git.sr.ht/~sircmpwn/openring"

# TODO: this is deprecated. Host a dependency tarball instead
EGO_SUM=(
	"git.sr.ht/~sircmpwn/getopt v0.0.0-20190214165041-9a4f886f9fc7"
	"git.sr.ht/~sircmpwn/getopt v0.0.0-20190214165041-9a4f886f9fc7/go.mod"
	"git.sr.ht/~sircmpwn/getopt v0.0.0-20190621174457-292febf82fd0"
	"git.sr.ht/~sircmpwn/getopt v0.0.0-20190621174457-292febf82fd0/go.mod"
	"github.com/SlyMarbo/rss v1.0.1"
	"github.com/SlyMarbo/rss v1.0.1/go.mod"
	"github.com/axgle/mahonia v0.0.0-20180208002826-3358181d7394"
	"github.com/axgle/mahonia v0.0.0-20180208002826-3358181d7394/go.mod"
	"github.com/davecgh/go-spew v1.1.0/go.mod"
	"github.com/mattn/go-runewidth v0.0.4"
	"github.com/mattn/go-runewidth v0.0.4/go.mod"
	"github.com/microcosm-cc/bluemonday v1.0.2"
	"github.com/microcosm-cc/bluemonday v1.0.2/go.mod"
	"github.com/pmezard/go-difflib v1.0.0/go.mod"
	"github.com/stretchr/objx v0.1.0/go.mod"
	"github.com/stretchr/testify v1.3.0/go.mod"
	"golang.org/x/net v0.0.0-20181220203305-927f97764cc3"
	"golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod"
)

go-module_set_globals

SRC_URI="https://git.sr.ht/~sircmpwn/openring/archive/${PV}.tar.gz -> ${P}.tar.gz ${EGO_SUM_SRC_URI}"

LICENSE="GPL"
SLOT="0"
KEYWORDS="amd64"

BDEPEND=">=dev-lang/go-1.16"

src_compile() {
    ego build
}

src_install() {
    dobin openring

    default
}