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 0AE64138359 for ; Tue, 25 Aug 2020 15:12:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5168EE08EB; Tue, 25 Aug 2020 15:11:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 37A52E08EB for ; Tue, 25 Aug 2020 15:11:59 +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 D1DB3335D50 for ; Tue, 25 Aug 2020 15:11:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F0C432A for ; Tue, 25 Aug 2020 15:11:56 +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: <1598368242.8fc5737fbea4a9e69fddb0b654498a5fc9eeb95a.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/distrobuilder/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/distrobuilder/Manifest app-emulation/distrobuilder/distrobuilder-1.1.ebuild app-emulation/distrobuilder/metadata.xml X-VCS-Directories: app-emulation/distrobuilder/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 8fc5737fbea4a9e69fddb0b654498a5fc9eeb95a X-VCS-Branch: master Date: Tue, 25 Aug 2020 15:11:56 +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: ed00c091-feb6-46b7-9f0c-42f50a063626 X-Archives-Hash: ba7c83853d0bfa114172a94784648e99 commit: 8fc5737fbea4a9e69fddb0b654498a5fc9eeb95a Author: William Hubbs gentoo org> AuthorDate: Tue Aug 25 14:56:55 2020 +0000 Commit: William Hubbs gentoo org> CommitDate: Tue Aug 25 15:10:42 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fc5737f app-emulation/distrobuilder: image builder for lxc and lxd Closes: https://bugs.gentoo.org/657478 Signed-off-by: William Hubbs gentoo.org> app-emulation/distrobuilder/Manifest | 1 + .../distrobuilder/distrobuilder-1.1.ebuild | 34 ++++++++++++++++++++++ app-emulation/distrobuilder/metadata.xml | 12 ++++++++ 3 files changed, 47 insertions(+) diff --git a/app-emulation/distrobuilder/Manifest b/app-emulation/distrobuilder/Manifest new file mode 100644 index 00000000000..787431ed6f3 --- /dev/null +++ b/app-emulation/distrobuilder/Manifest @@ -0,0 +1 @@ +DIST distrobuilder-1.1.tar.gz 17339508 BLAKE2B 5dc023520783301bfaaee9dbdb7f6707a565b6b7cde18afe53051c47cf4ec243be4f279846753f4fdab75f8aa3333fc4e74d90376390073e36edcb57a1d22815 SHA512 4638cb7ad34032a4ab6d6d85a07b92b7ee3ebc6fe34672d148b0574d487ca2a572fbcc700f829865faa77ec07f78e47555246cb8a2455c713d5051f19cbf8426 diff --git a/app-emulation/distrobuilder/distrobuilder-1.1.ebuild b/app-emulation/distrobuilder/distrobuilder-1.1.ebuild new file mode 100644 index 00000000000..f7356bcb22b --- /dev/null +++ b/app-emulation/distrobuilder/distrobuilder-1.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit go-module linux-info + +DESCRIPTION="System container image builder for LXC and LXD" +HOMEPAGE="https://linuxcontainers.org/distrobuilder/introduction/" +SRC_URI="https://linuxcontainers.org/downloads/distrobuilder/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-util/debootstrap + app-crypt/gnupg + sys-fs/squashfs-tools + dev-vcs/git + net-misc/rsync + " + +CONFIG_CHECK="~OVERLAY_FS" + +src_compile() { + cd _dist/src/github.com/lxc/distrobuilder || die "cd failed" + GO111MODULE="off" GOBIN="${S}/bin" GOPATH="${S}/_dist" \ + go install ./... || die "compile failed" +} + +src_install() { + dobin bin/* +} diff --git a/app-emulation/distrobuilder/metadata.xml b/app-emulation/distrobuilder/metadata.xml new file mode 100644 index 00000000000..c201375ad89 --- /dev/null +++ b/app-emulation/distrobuilder/metadata.xml @@ -0,0 +1,12 @@ + + + + + williamh@gentoo.org + William Hubbs + + + posting@vodacomm.ca + Stephen Bosch + +