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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 47427138359 for ; Sun, 19 Jul 2020 20:40:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 686C3E0825; Sun, 19 Jul 2020 20:40:38 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4FB08E0825 for ; Sun, 19 Jul 2020 20:40:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7EF0934F321 for ; Sun, 19 Jul 2020 20:40:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E5722D3 for ; Sun, 19 Jul 2020 20:40:13 +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: <1595191200.2adc1a1de9a3d97edfb54ba2002eb0283e17d80b.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.14.5.ebuild X-VCS-Directories: net-analyzer/telegraf/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 2adc1a1de9a3d97edfb54ba2002eb0283e17d80b X-VCS-Branch: master Date: Sun, 19 Jul 2020 20:40:13 +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: 3944d27e-b8d4-4783-83f6-c0d27de66f60 X-Archives-Hash: 1022dd4f272a34ac3ff388a02602ff51 commit: 2adc1a1de9a3d97edfb54ba2002eb0283e17d80b Author: William Hubbs gentoo org> AuthorDate: Sun Jul 19 20:39:41 2020 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun Jul 19 20:40:00 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2adc1a1d net-analyzer/telegraf: fix branch setting in 1.14.5 Signed-off-by: William Hubbs gentoo.org> net-analyzer/telegraf/telegraf-1.14.5.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-analyzer/telegraf/telegraf-1.14.5.ebuild b/net-analyzer/telegraf/telegraf-1.14.5.ebuild index b0c9119b0e8..edbb0ca26a7 100644 --- a/net-analyzer/telegraf/telegraf-1.14.5.ebuild +++ b/net-analyzer/telegraf/telegraf-1.14.5.ebuild @@ -5,7 +5,7 @@ EAPI=7 inherit go-module systemd MY_PV="${PV/_rc/-rc.}" COMMIT=e77ce3d1 -BRANCH=HEAD +BRANCH=release-1.14 VERSION=v${MY_PV} DESCRIPTION="The plugin-driven server agent for collecting & reporting metrics." @@ -915,7 +915,7 @@ src_compile() { unset LDFLAGS emake \ COMMIT=${COMMIT} \ - BRANCH=HEAD \ + BRANCH=${BRANCH} \ VERSION=v${MY_PV} \ telegraf }