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 0B48A158090 for ; Sat, 7 May 2022 20:33:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4EB4EE07AE; Sat, 7 May 2022 20:33:48 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3349EE07AE for ; Sat, 7 May 2022 20:33:48 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2969E3415DD for ; Sat, 7 May 2022 20:33:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A76B4445 for ; Sat, 7 May 2022 20:33:45 +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: <1651955620.b54ffab53c53e22c905fd7a8b0f7ff9df0e12ffb.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/mage/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/mage/Manifest dev-util/mage/mage-1.13.0.ebuild X-VCS-Directories: dev-util/mage/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: b54ffab53c53e22c905fd7a8b0f7ff9df0e12ffb X-VCS-Branch: master Date: Sat, 7 May 2022 20:33:45 +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: ad8cb0d3-2b21-4ba1-95e4-a1208dd8c00c X-Archives-Hash: 706d108c673819c2144a24fceef4fdf4 commit: b54ffab53c53e22c905fd7a8b0f7ff9df0e12ffb Author: William Hubbs gentoo org> AuthorDate: Sat May 7 20:33:17 2022 +0000 Commit: William Hubbs gentoo org> CommitDate: Sat May 7 20:33:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b54ffab5 dev-util/mage: add 1.13.0 Signed-off-by: William Hubbs gentoo.org> dev-util/mage/Manifest | 1 + dev-util/mage/mage-1.13.0.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-util/mage/Manifest b/dev-util/mage/Manifest index 590850c53f2f..96e29781e758 100644 --- a/dev-util/mage/Manifest +++ b/dev-util/mage/Manifest @@ -1 +1,2 @@ DIST mage-1.11.0.tar.gz 8795144 BLAKE2B 20e0934cc8a4cdf91586d4883c69e2040a6b67e440429bbbb23e4d35ca5a6d33bf34d0e9419f35e5bf273074cf9577a2ba61251b91d3cea619fba6c4cbe13007 SHA512 dd4e0764f6567250a70461f7b040cc5725f59a4b375aa85f1b4f0a8a9c1738ec4fc5f1a078349f34e655229397b0431c88ecd54603c281440a23a81e949cf9a4 +DIST mage-1.13.0.tar.gz 8802625 BLAKE2B eb31c6f69b3e4cefc5816489c4c641740b924fd9dfdb91bf7fb7af6e6e119c09097b5fd6bef4e7194f5eee37945e194c5ddbda939295f4b433605bac4708a268 SHA512 a393a0192ecaf8664f9dd35acfd994993ab1c028a08fb8c925fc569ce58dc9d58baeef4760b012563e3f3a6957c77d548bb33a6b577d12af2e030e2465e6d24b diff --git a/dev-util/mage/mage-1.13.0.ebuild b/dev-util/mage/mage-1.13.0.ebuild new file mode 100644 index 000000000000..521f66fd6e66 --- /dev/null +++ b/dev-util/mage/mage-1.13.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module + +DESCRIPTION="make/rake like tool using go" +HOMEPAGE="https://magefile.org" +SRC_URI="https://github.com/magefile/mage/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +src_compile() { + GOBIN="${S}/bin" go run bootstrap.go || die "build failed" +} + +src_install() { +dobin bin/mage +}