From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A4F0B15810F for ; Sun, 11 Jun 2023 18:47:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF366E0884; Sun, 11 Jun 2023 18:47:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AFC04E0884 for ; Sun, 11 Jun 2023 18:47:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A01B334140C for ; Sun, 11 Jun 2023 18:47:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B9ABA85 for ; Sun, 11 Jun 2023 18:47:12 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1686509224.b8264f430a13e594908088695768a07f1519bdc9.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/telegraf/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/telegraf/telegraf-1.26.3.ebuild X-VCS-Directories: net-analyzer/telegraf/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: b8264f430a13e594908088695768a07f1519bdc9 X-VCS-Branch: master Date: Sun, 11 Jun 2023 18:47:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e586528f-3487-4210-b536-22d93fcf020d X-Archives-Hash: 487e628f3489687b1fb44dac912b31e5 commit: b8264f430a13e594908088695768a07f1519bdc9 Author: William Hubbs gentoo org> AuthorDate: Sun Jun 11 18:46:10 2023 +0000 Commit: William Hubbs gentoo 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 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 -}