mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-19 21:31:10 +02:00
httprobe: minor qa, bump to 0.2
This commit is contained in:
parent
d29c7d768c
commit
fdebcef686
3 changed files with 4 additions and 40 deletions
|
|
@ -1,2 +1 @@
|
|||
DIST httprobe-0.1.1.tar.gz 2805 BLAKE2B e7aa140e1035682d2c6095710577d7bd82723459b570bacbd8286bea61eacd8c2eabb2ff76f2d76eb6af5069ce97dbb99d35106f87d5048912a8113068259ef1 SHA512 99f101eef17b5dad77105c4c1f18f105a90a2593cb2ab75a950b572e5a92b132642939e9a1e308d65d39fca2b6a8ad4cf5a96cc564c345077a6c287dcf308863
|
||||
DIST httprobe-0.1.2.tar.gz 3209 BLAKE2B 75772712f137d4ceac07275827c2fed7ae676697dd6023e3851f967b72ff3a2b27080b2f36f236447e274f9484a3764e68aea8a1b9ea6a29f965c15d5ceb3dd3 SHA512 d4fb95bdeb8ccd53e21ffe23d9c9bed090bc35f09015f4428d8cc1794653e956f275d22368246fbe36337a52db740d7bc5c6e9a5dc0d685d6013b61bbf280c7d
|
||||
DIST httprobe-0.2.tar.gz 4738 BLAKE2B d34b4a4b78750702c75385fb7d8c4f74973314d5c8a4380ead77c25da525ec73128f29c8bbcf09c85eaec37f87343ed888ee53b164cafcd65e0e76d03a442b6e SHA512 22fa808bf3db0c33f3391512724003ca94556216f247b62ffd20b147b30d41ca4974aea14458991af7ab65928a7b63c697d3d9d3d19a499af454617e270fffaf
|
||||
|
|
|
|||
|
|
@ -1,35 +0,0 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
EGO_PN="github.com/tomnomnom/httprobe"
|
||||
|
||||
inherit eutils golang-vcs-snapshot
|
||||
|
||||
DESCRIPTION="Take a list of domains and probe for working HTTP and HTTPS servers"
|
||||
HOMEPAGE="https://github.com/tomnomnom/httprobe"
|
||||
SRC_URI="https://github.com/tomnomnom/httprobe/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
LICENSE="Unlicense"
|
||||
IUSE=""
|
||||
SLOT=0
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND=">=dev-lang/go-1.12"
|
||||
|
||||
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
|
||||
}
|
||||
|
|
@ -1,17 +1,17 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
EGO_PN="github.com/tomnomnom/httprobe"
|
||||
|
||||
inherit eutils golang-vcs-snapshot
|
||||
inherit golang-vcs-snapshot
|
||||
|
||||
DESCRIPTION="Take a list of domains and probe for working HTTP and HTTPS servers"
|
||||
HOMEPAGE="https://github.com/tomnomnom/httprobe"
|
||||
SRC_URI="https://github.com/tomnomnom/httprobe/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="Unlicense"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
Loading…
Reference in a new issue