You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Copyright 1999-2022 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
inherit go-module
|
|
|
|
|
|
|
|
DESCRIPTION="lightweight incoming webhook server to run shell commands"
|
|
|
|
HOMEPAGE="https://github.com/adnanh/webhook/"
|
|
|
|
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
|
|
inherit git-r3
|
|
|
|
EGIT_REPO_URI="https://github.com/adnanh/webhook/"
|
|
|
|
else
|
|
|
|
SRC_URI="https://github.com/adnanh/webhook/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
S="${WORKDIR}/webhook-${PV}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# SPDX:BSD-3-Clause is 'BSD' in Gentoo
|
|
|
|
# SPDX:BSD-2-Clause is 'BSD-2' in Gentoo
|
|
|
|
LICENSE="Apache-2.0 BSD-2 BSD MIT"
|
|
|
|
SLOT="0"
|
|
|
|
|
|
|
|
RDEPEND=""
|
|
|
|
BDEPEND=">=dev-lang/go-1.13"
|
|
|
|
|
|
|
|
DOCS=(
|
|
|
|
README.md
|
|
|
|
hooks.json.example
|
|
|
|
hooks.json.tmpl.example
|
|
|
|
hooks.yaml.example
|
|
|
|
hooks.yaml.tmpl.example
|
|
|
|
docs/Hook-Definition.md
|
|
|
|
docs/Hook-Examples.md
|
|
|
|
docs/Hook-Rules.md
|
|
|
|
docs/Referencing-Request-Values.md
|
|
|
|
docs/Templates.md
|
|
|
|
docs/Webhook-Parameters.md
|
|
|
|
)
|
|
|
|
|
|
|
|
# Do not let these leak from outside into the package
|
|
|
|
unset GOBIN GOPATH GOCODE
|
|
|
|
|
|
|
|
src_unpack() {
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
|
|
git-r3_src_unpack
|
|
|
|
go-module_live_vendor
|
|
|
|
else
|
|
|
|
go-module_src_unpack
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
# Golang LDFLAGS are not the same as GCC/Binutils LDFLAGS
|
|
|
|
unset LDFLAGS
|
|
|
|
# -mod=vendor is needed because the go version specified in go.mod
|
|
|
|
# is too low.
|
|
|
|
ego build -mod=vendor
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
dobin webhook
|
|
|
|
einstalldocs
|
|
|
|
}
|