mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
64 lines
2 KiB
Bash
64 lines
2 KiB
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit go-module
|
|
|
|
EGO_PN=github.com/OJ/${PN}
|
|
|
|
# git clone -> checkout proper version -> `get-ego-vendor`
|
|
EGO_SUM=(
|
|
"github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod"
|
|
"github.com/fatih/color v1.14.1"
|
|
"github.com/fatih/color v1.14.1/go.mod"
|
|
"github.com/google/uuid v1.3.0"
|
|
"github.com/google/uuid v1.3.0/go.mod"
|
|
"github.com/inconshreveable/mousetrap v1.0.1/go.mod"
|
|
"github.com/inconshreveable/mousetrap v1.1.0"
|
|
"github.com/inconshreveable/mousetrap v1.1.0/go.mod"
|
|
"github.com/mattn/go-colorable v0.1.13"
|
|
"github.com/mattn/go-colorable v0.1.13/go.mod"
|
|
"github.com/mattn/go-isatty v0.0.16/go.mod"
|
|
"github.com/mattn/go-isatty v0.0.17"
|
|
"github.com/mattn/go-isatty v0.0.17/go.mod"
|
|
"github.com/pin/tftp/v3 v3.0.0"
|
|
"github.com/pin/tftp/v3 v3.0.0/go.mod"
|
|
"github.com/russross/blackfriday/v2 v2.1.0/go.mod"
|
|
"github.com/spf13/cobra v1.6.1"
|
|
"github.com/spf13/cobra v1.6.1/go.mod"
|
|
"github.com/spf13/pflag v1.0.5"
|
|
"github.com/spf13/pflag v1.0.5/go.mod"
|
|
"golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod"
|
|
"golang.org/x/crypto v0.6.0"
|
|
"golang.org/x/crypto v0.6.0/go.mod"
|
|
"golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod"
|
|
"golang.org/x/net v0.7.0"
|
|
"golang.org/x/net v0.7.0/go.mod"
|
|
"golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod"
|
|
"golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod"
|
|
"golang.org/x/sys v0.5.0"
|
|
"golang.org/x/sys v0.5.0/go.mod"
|
|
"golang.org/x/term v0.5.0"
|
|
"golang.org/x/term v0.5.0/go.mod"
|
|
"golang.org/x/text v0.3.0/go.mod"
|
|
"gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod"
|
|
"gopkg.in/yaml.v3 v3.0.1/go.mod"
|
|
)
|
|
go-module_set_globals
|
|
|
|
DESCRIPTION="A tool to brute-force URIs and DNS subdomains"
|
|
HOMEPAGE="https://github.com/OJ/gobuster"
|
|
SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
|
${EGO_SUM_SRC_URI}"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
|
|
DEPEND=">=dev-lang/go-1.10"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_install() {
|
|
dobin gobuster
|
|
}
|