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 72EA71382C5 for ; Tue, 29 Dec 2020 09:00:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A65EE0891; Tue, 29 Dec 2020 09:00:15 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 82DEBE0891 for ; Tue, 29 Dec 2020 09:00:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 351BB34129C for ; Tue, 29 Dec 2020 09:00:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB8583A6 for ; Tue, 29 Dec 2020 09:00:12 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1609232373.7f6529a2533ed410816d79c4e514de5eddc2f449.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/conmon/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/conmon/conmon-2.0.22.ebuild X-VCS-Directories: app-emulation/conmon/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 7f6529a2533ed410816d79c4e514de5eddc2f449 X-VCS-Branch: master Date: Tue, 29 Dec 2020 09:00: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: 097faade-e544-43cf-958e-b0eef0f27506 X-Archives-Hash: 491364c531eaf760fff325be5b78edd3 commit: 7f6529a2533ed410816d79c4e514de5eddc2f449 Author: Zac Medico gentoo org> AuthorDate: Tue Dec 29 08:54:24 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Dec 29 08:59:33 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f6529a2 app-emulation/conmon: use CC variable and system go-md2man Closes: https://bugs.gentoo.org/762376 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Zac Medico gentoo.org> app-emulation/conmon/conmon-2.0.22.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-emulation/conmon/conmon-2.0.22.ebuild b/app-emulation/conmon/conmon-2.0.22.ebuild index e8b2c72ef57..22d66f80a27 100644 --- a/app-emulation/conmon/conmon-2.0.22.ebuild +++ b/app-emulation/conmon/conmon-2.0.22.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit toolchain-funcs + EGIT_COMMIT="9c34a8663b85e479e0c083801e89a2b2835228ed" DESCRIPTION="An OCI container runtime monitor" HOMEPAGE="https://github.com/containers/conmon" @@ -29,9 +31,12 @@ src_prepare() { -e 's| $(PKG_CONFIG) --exists libsystemd | false |' \ -i Makefile || die fi + sed -e 's|make -C tools|$(MAKE) -C tools|' -i Makefile || die + sed -e 's|^GOMD2MAN = .*|GOMD2MAN = go-md2man|' -i docs/Makefile || die } src_compile() { + tc-export CC emake GIT_COMMIT="${EGIT_COMMIT}" \ all }