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 1529B158094 for ; Wed, 24 Aug 2022 02:37:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3445CE07C7; Wed, 24 Aug 2022 02:37:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 11744E07C7 for ; Wed, 24 Aug 2022 02:37:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 EE25E340F06 for ; Wed, 24 Aug 2022 02:37:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 538DA58D for ; Wed, 24 Aug 2022 02:37:03 +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: <1661308497.066cceaf01a5ab71c87570f5f39d8ab7bc5824c9.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-go/gocov/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-go/gocov/Manifest dev-go/gocov/gocov-1.1.0.ebuild dev-go/gocov/metadata.xml X-VCS-Directories: dev-go/gocov/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 066cceaf01a5ab71c87570f5f39d8ab7bc5824c9 X-VCS-Branch: master Date: Wed, 24 Aug 2022 02:37:03 +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: 4ee5f537-5c8e-4c77-a9fd-46adea941f11 X-Archives-Hash: 5782fe78969a8dbf678a5d4c6e4fcd46 commit: 066cceaf01a5ab71c87570f5f39d8ab7bc5824c9 Author: William Hubbs gentoo org> AuthorDate: Wed Aug 24 02:32:24 2022 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Aug 24 02:34:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=066cceaf dev-go/gocov: new package, add 1.1.0 This is coverage testing for the go programming language. Signed-off-by: William Hubbs gentoo.org> dev-go/gocov/Manifest | 2 ++ dev-go/gocov/gocov-1.1.0.ebuild | 26 ++++++++++++++++++++++++++ dev-go/gocov/metadata.xml | 8 ++++++++ 3 files changed, 36 insertions(+) diff --git a/dev-go/gocov/Manifest b/dev-go/gocov/Manifest new file mode 100644 index 000000000000..83874ddd97dd --- /dev/null +++ b/dev-go/gocov/Manifest @@ -0,0 +1,2 @@ +DIST gocov-1.1.0-deps.tar.xz 20461152 BLAKE2B 6e963dc223cb6be1aa8cec88ea0f13c3140b413a88d4244ea886afa829eaf9fac83c68f8e34d2cf8659fe404e897714f30f0dd2868fa0a6f72d0867e2695c149 SHA512 87bf367fee957f38444ab8a78a2947d5c224ac2fd08f86fdd68e5f63c34b760015767538c5e4da5d82f9575945aa398dac1b67b0043e1a55a433b1cead40b390 +DIST gocov-1.1.0.tar.gz 14242 BLAKE2B c6a662570e8b49bdf37b2afee6a15d760f16fd1317dd1d1618363f1f7c50a35f19d3619ba831e969f33e904d2960fc7509d970e652462e5f000c1590c7a65fb6 SHA512 a6312783a90ae730d14c47e4493b9be6a556bf048c4f1579e6f9389bd3678b1fb080faa4fe07721aa9c54e73482ce07ea903c2bb21e5d19250e14407f689499f diff --git a/dev-go/gocov/gocov-1.1.0.ebuild b/dev-go/gocov/gocov-1.1.0.ebuild new file mode 100644 index 000000000000..90c88aee606e --- /dev/null +++ b/dev-go/gocov/gocov-1.1.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module + +DESCRIPTION="Coverage testing tool for The Go Programming Language" +HOMEPAGE="https://github.com/axw/gocov" +SRC_URI="https://github.com/axw/gocov/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" + +src_compile() { + ego build -o bin/${PN} ./${PN} +} + +src_test() { + ego test ./... +} + +src_install() { + dobin bin/gocov +} diff --git a/dev-go/gocov/metadata.xml b/dev-go/gocov/metadata.xml new file mode 100644 index 000000000000..db463f3eeb66 --- /dev/null +++ b/dev-go/gocov/metadata.xml @@ -0,0 +1,8 @@ + + + + + williamh@gentoo.org + William Hubbs + +