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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 162E815815E for ; Thu, 1 Feb 2024 20:29:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C5EFE2A05; Thu, 1 Feb 2024 20:29:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 01054E2A05 for ; Thu, 1 Feb 2024 20:29:55 +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 9B5743431D4 for ; Thu, 1 Feb 2024 20:29:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC6D113AA for ; Thu, 1 Feb 2024 20:29:52 +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: <1706819359.409649b434ef8c4780b35844ecd84f43701e7a18.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-build/dagger/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-build/dagger/Manifest dev-build/dagger/dagger-0.9.8.ebuild dev-build/dagger/metadata.xml X-VCS-Directories: dev-build/dagger/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 409649b434ef8c4780b35844ecd84f43701e7a18 X-VCS-Branch: master Date: Thu, 1 Feb 2024 20:29:52 +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: acf60453-4c87-4326-81dd-48abf0ea6e48 X-Archives-Hash: e661306b3cc8a722e5dbff4367189613 commit: 409649b434ef8c4780b35844ecd84f43701e7a18 Author: William Hubbs gentoo org> AuthorDate: Thu Feb 1 20:20:59 2024 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Feb 1 20:29:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=409649b4 dev-build/dagger: new package, add 0.9.8 ci/cd as code that runs anywhere. Signed-off-by: William Hubbs gentoo.org> dev-build/dagger/Manifest | 2 ++ dev-build/dagger/dagger-0.9.8.ebuild | 21 +++++++++++++++++++++ dev-build/dagger/metadata.xml | 8 ++++++++ 3 files changed, 31 insertions(+) diff --git a/dev-build/dagger/Manifest b/dev-build/dagger/Manifest new file mode 100644 index 000000000000..16c0284be518 --- /dev/null +++ b/dev-build/dagger/Manifest @@ -0,0 +1,2 @@ +DIST dagger-0.9.8-deps.tar.xz 257422892 BLAKE2B 94e5f2a98a7f40cb1a67deaf0db868f507b3abb4482c1dba9542816da289719fc9cb3d8da5b5b6b9e4e636c789d3d80879d3ab32947ebcebd53c49a3a755f81f SHA512 b0509b30bc73c81478c78c7d518c7705750bb72d390d23f15e090c24cdc8fcdf633237fb1c48f1772837ea2bc27c94637f7e457325514616cf7c67f7eb9125b4 +DIST dagger-0.9.8.tar.gz 7366092 BLAKE2B c32390c3e6a1ecf604cb733855b64c8951aedf48ea495285143b70520673924aedd247cac3424b82a0a2ab94588df8f89282819f4a5425bab50542a5600e614a SHA512 54d820867bac00a40dfa2c3f6fd1e650502395def2de975631f3ffaa4d7199014a12625d7eb71f5cf235cdbcfe54005c9980d3f0969a59492cc779489c294a44 diff --git a/dev-build/dagger/dagger-0.9.8.ebuild b/dev-build/dagger/dagger-0.9.8.ebuild new file mode 100644 index 000000000000..6d0dfbaad93c --- /dev/null +++ b/dev-build/dagger/dagger-0.9.8.ebuild @@ -0,0 +1,21 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module + +DESCRIPTION="ci/cd as code that runs anywhere" +HOMEPAGE="http://dagger.io" +SRC_URI="https://github.com/dagger/dagger/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +src_compile() { + ego build -o bin/dagger ./cmd/dagger +} + +src_install() { +dobin bin/* +} diff --git a/dev-build/dagger/metadata.xml b/dev-build/dagger/metadata.xml new file mode 100644 index 000000000000..db463f3eeb66 --- /dev/null +++ b/dev-build/dagger/metadata.xml @@ -0,0 +1,8 @@ + + + + + williamh@gentoo.org + William Hubbs + +