mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-28 01:31:04 +02:00
goaltdns: new ebuild (deps for net-analyzer/osmedeus)
This commit is contained in:
parent
80caeeda7f
commit
66b0ab552d
3 changed files with 53 additions and 0 deletions
2
net-misc/goaltdns/Manifest
Normal file
2
net-misc/goaltdns/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST github.com-bobesa-go-domain-util-1d708c0.tar.gz 46376 BLAKE2B 08fa616bd99d965b9d7e094d6abf25b06e8d048fa220f0b4f74a061cf70c5c4ae8f9c9487c2f42cd10a0352c3d3d37d87a665f0f399c5fb3e70195855959364f SHA512 c1cd628941a8cc3be9dac1918ced3a5f9d05668b9065a7fa6fde001f6fa155f080232332284b02ebbede9a40912c5c9572463bd6c5d23904df31ade583ef3613
|
||||
DIST goaltdns-20190330.tar.gz 6329 BLAKE2B 66404b50f857ce3472278ec3bffea9404b54e161d5439f278459977f8799f41bfff1b35fb28890171849b45fe6fd20a2dc220f92d103f273525e413e0e3edd0b SHA512 e6dcf98fe769bcae759227ab6fea6741f5a07653bd0b62e0c7403ad41fa901f79528b87736c2a1a2bb8dc7393d5c47120834d008e9995aff186f4b62b17f9a7e
|
||||
43
net-misc/goaltdns/goaltdns-20190330.ebuild
Normal file
43
net-misc/goaltdns/goaltdns-20190330.ebuild
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
EGO_PN="github.com/subfinder/goaltdns"
|
||||
EGO_VENDOR=( "github.com/bobesa/go-domain-util 1d708c0" )
|
||||
|
||||
inherit eutils golang-vcs-snapshot
|
||||
|
||||
DESCRIPTION="A permutation generation tool written in golang"
|
||||
HOMEPAGE="https://github.com/subfinder/goaltdns"
|
||||
|
||||
HASH_COMMIT="2b3e8a30b8cf333be47885687ca92794d8f485fa"
|
||||
SRC_URI="https://github.com/subfinder/goaltdns/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz
|
||||
${EGO_VENDOR_URI}"
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
LICENSE="MIT"
|
||||
IUSE=""
|
||||
SLOT=0
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="
|
||||
dev-go/go-net:=
|
||||
dev-go/go-text:=
|
||||
dev-lang/go"
|
||||
|
||||
src_compile() {
|
||||
GOPATH="${S}:$(get_golibdir_gopath)" \
|
||||
GOCACHE="${T}/go-cache" \
|
||||
go build -v -work -x -ldflags="-s -w" "${EGO_PN}" || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
GOPATH="${S}:$(get_golibdir_gopath)" \
|
||||
GOCACHE="${T}/go-cache" \
|
||||
go install -v -work -x -ldflags="-s -w" "${EGO_PN}" || die
|
||||
|
||||
dobin bin/${PN}
|
||||
dodoc \
|
||||
src/"${EGO_PN}"/{README.md,words*.txt}
|
||||
}
|
||||
8
net-misc/goaltdns/metadata.xml
Normal file
8
net-misc/goaltdns/metadata.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>email@linxon.ru</email>
|
||||
<name>Yury Martynov</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
Loading…
Reference in a new issue