summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2022-03-15 16:30:43 +0100
committerConrad Kostecki <conikost@gentoo.org>2022-03-15 16:43:35 +0100
commita1c29ba05a179656833c0a4d7fb48df80bdbd52f (patch)
treeaddef5a43143e221bdf4d272afc8c015708ad42b /www-apps
parentwww-apps/karma-bin: drop 0.40, 0.41, 0.43 (diff)
downloadgentoo-a1c29ba05a179656833c0a4d7fb48df80bdbd52f.tar.gz
gentoo-a1c29ba05a179656833c0a4d7fb48df80bdbd52f.tar.bz2
gentoo-a1c29ba05a179656833c0a4d7fb48df80bdbd52f.zip
www-apps/trickster: drop 0.1.9
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r--www-apps/trickster/Manifest2
-rw-r--r--www-apps/trickster/trickster-0.1.9.ebuild47
2 files changed, 0 insertions, 49 deletions
diff --git a/www-apps/trickster/Manifest b/www-apps/trickster/Manifest
index ddb482078015..7641c2450420 100644
--- a/www-apps/trickster/Manifest
+++ b/www-apps/trickster/Manifest
@@ -1,3 +1 @@
-DIST trickster-0.1.9-vendor.tar.gz 1748976 BLAKE2B 77ad4a91a889a8241399fe6b4199d25c0ba52e818fbe1df8186dadea0f69c1d04f9c268fc376820592465ed36104a6195ce9a9985f8a9c02636ee1b8f80114b7 SHA512 6427cb3417ae7d62e5e144cb5a1962f2175ab063c2267abd838560db00acc4c161666df4ea2065a02172b50240f17a6ad09d76973e59d9bea91ecf4a9327466f
-DIST trickster-0.1.9.tar.gz 1739869 BLAKE2B dc50d12acfe27f68054bbafdeada0bd1847ebb1e03847f9173c7e9b772218ce2e7ceffe25db282912f88c005c0d590e3effece6483bdd80830438a8d114f859f SHA512 82fa837d2b18143a65e22a06d2821d7a1da298fb3e9389854f8e6ad4de68f35d40d6aec2d23cca877032227d12818063953244a01b42f09bd724677d1080e84f
DIST trickster-1.1.5.tar.gz 5170485 BLAKE2B e0f0df7bf6c810d6cedfc6175dd8413adfeccdeca3329dbf1bf0f38d612ecb4c9692fa1b5560cf91fda9213c57c268f5fbe16608a8eb5932219abe026cd581ef SHA512 da06e05436f6019b677b2d5d04e6b8aa1cd15a7ba1962b64101569c64e17f3132e71528f3925a3772d2ad7faf9435c987ffaacffd07961ab8526b68fbfd58135
diff --git a/www-apps/trickster/trickster-0.1.9.ebuild b/www-apps/trickster/trickster-0.1.9.ebuild
deleted file mode 100644
index d147b62d604c..000000000000
--- a/www-apps/trickster/trickster-0.1.9.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit user systemd
-
-DESCRIPTION="Dashboard Accelerator for Prometheus"
-HOMEPAGE="https://github.com/Comcast/trickster"
-VENDOR_URI="https://dev.gentoo.org/~williamh/dist/${P}-vendor.tar.gz"
-SRC_URI="https://github.com/Comcast/trickster/archive/v${PV}.tar.gz -> ${P}.tar.gz
- ${VENDOR_URI}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="dev-lang/go:="
-
-RESTRICT="strip"
-
-pkg_setup() {
- enewgroup ${PN}
- enewuser ${PN} -1 -1 -1 ${PN}
-}
-
-src_prepare() {
- default
- mv ../vendor .
-}
-
-src_compile() {
- set -- env GOCACHE="${T}"/go-cache go build -a -mod vendor -v
- echo $@
- "$@" || die "build failed"
-}
-
-src_install() {
- dobin ${PN}
-dodoc -r conf docs/*
- systemd_dounit conf/trickster.service
- keepdir /var/log/${PN}
- fowners ${PN}:${PN} /var/log/${PN}
- insinto /etc/trickster
- doins "${FILESDIR}"/${PN}.conf
- newinitd "${FILESDIR}"/${PN}.initd ${PN}
-}