commit: b8264f430a13e594908088695768a07f1519bdc9
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 11 18:46:10 2023 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Jun 11 18:47:04 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8264f43
net-analyzer/telegraf: drop 1.26.3
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
net-analyzer/telegraf/telegraf-1.26.3.ebuild | 48 ----------------------------
1 file changed, 48 deletions(-)
diff --git a/net-analyzer/telegraf/telegraf-1.26.3.ebuild
b/net-analyzer/telegraf/telegraf-1.26.3.ebuild
deleted file mode 100644
index c164d70c7d37..000000000000
--- a/net-analyzer/telegraf/telegraf-1.26.3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit go-module systemd
-MY_PV="${PV/_rc/-rc.}"
-COMMIT=90f4eb29
-BRANCH=HEAD
-VERSION=v${MY_PV}
-
-DESCRIPTION="The plugin-driven server agent for collecting & reporting metrics"
-HOMEPAGE="https://github.com/influxdata/telegraf"
-
-SRC_URI="https://github.com/influxdata/telegraf/archive/v${MY_PV}.tar.gz ->
${P}.tar.gz"
-SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-
-RESTRICT+=" test"
-
-DEPEND="acct-group/telegraf
- acct-user/telegraf"
- RDEPEND="${DEPEND}"
-
-src_compile() {
- unset LDFLAGS
- emake \
- COMMIT=${COMMIT} \
- BRANCH=${BRANCH} \
- VERSION=v${MY_PV} \
- telegraf
-}
-
-src_install() {
- dobin telegraf
- insinto /etc/logrotate.d
- doins etc/logrotate.d/telegraf
- keepdir /etc/telegraf
- keepdir /etc/telegraf/telegraf.d
- systemd_dounit scripts/telegraf.service
- newconfd "${FILESDIR}"/telegraf.confd telegraf
- newinitd "${FILESDIR}"/telegraf.rc telegraf
- dodoc -r docs/*
- keepdir /var/log/telegraf
- fowners telegraf:telegraf /var/log/telegraf
-}