public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-containers/distrobuilder/
Date: Sat, 11 Nov 2023 08:27:10 +0000 (UTC)	[thread overview]
Message-ID: <1699691212.6b767761cac9f0a4f7a060f7064fe4954d3b8bcd.juippis@gentoo> (raw)

commit:     6b767761cac9f0a4f7a060f7064fe4954d3b8bcd
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 11 08:17:13 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Nov 11 08:26:52 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b767761

app-containers/distrobuilder: add 3.0

 - looks like lxd compatibility has been written off for now. lxc and
   incus remains.

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-containers/distrobuilder/Manifest              |  2 +
 .../distrobuilder/distrobuilder-3.0.ebuild         | 49 ++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/app-containers/distrobuilder/Manifest b/app-containers/distrobuilder/Manifest
index 607f7bd759ff..f5226ec2651a 100644
--- a/app-containers/distrobuilder/Manifest
+++ b/app-containers/distrobuilder/Manifest
@@ -1,2 +1,4 @@
 DIST distrobuilder-2.1.tar.gz 5599048 BLAKE2B 90e82a20a3ef61d13148951956bb1f74cc3494ca86e339c188a1c9009dcb27c0cb9a298c639c6de891df67915b48d107557f6b698a45cbe35c54d41a45bac1ab SHA512 80184d27305f5659f1367563161220b966b1957810da61e8f3b9f32cf408795319b43dd650bc9f867b3ac73ef2b3251972bb11999d92feb34bfd9cdae7ff7b7b
 DIST distrobuilder-2.1.tar.gz.asc 833 BLAKE2B fb3aadbc989438b0606c88e74fdd86e809b6373b907b37372cbbc0ca99415821f61772205967e0a7aa26b0bdaceb66df4ab39da1f08c339edeb84e66a04aab56 SHA512 0220fa34d966e2b3a244af21a894f5db7556b891ee3205b605ef633699553f0f53d876412c855010a0ef685fcfe376997790cf51d59fd46b7c9ba539507de4e3
+DIST distrobuilder-3.0.tar.gz 6135124 BLAKE2B 71cf594cdece46890418ea58af06205c59beaecce46a977efadcb336b93f0e1ed85ba4c1563a1f9f95937e935f844c91b6e45dfc73c0210f134ba3a694adea1d SHA512 c2218e6312257e5f15077d8380b9b49f7b8afd7ed5e43d46ac5d18a8cc332b096ab50c7301f74eb93769548c10f273e21a584ab2e908260ead4d2b219683bd1c
+DIST distrobuilder-3.0.tar.gz.asc 833 BLAKE2B 9a6fba0101eaea411a1b56359265c02533739a180c095ef2edd07dbe65c1d3bd2c1deab46e0cfdab362a282b85843659c8876853252b7ab1ab49e9f3f3dc1e8f SHA512 238a0a93575cb05fcd13fc32b5faed7592ff3345ae91d07fc1ede5696903f2e4da3d6d79bf39bc05ac16f0c8e04afe3eefa0e96b2c789992f55859bac6fd56d0

diff --git a/app-containers/distrobuilder/distrobuilder-3.0.ebuild b/app-containers/distrobuilder/distrobuilder-3.0.ebuild
new file mode 100644
index 000000000000..34d269459025
--- /dev/null
+++ b/app-containers/distrobuilder/distrobuilder-3.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module linux-info
+
+DESCRIPTION="System container image builder for LXC and incus"
+HOMEPAGE="https://linuxcontainers.org/distrobuilder/introduction/"
+
+SRC_URI="https://linuxcontainers.org/downloads/distrobuilder/distrobuilder-${PV}.tar.gz
+	verify-sig? ( https://linuxcontainers.org/downloads/distrobuilder/distrobuilder-${PV}.tar.gz.asc )"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64"
+IUSE="verify-sig"
+
+RDEPEND="app-crypt/gnupg
+	dev-util/debootstrap
+	dev-vcs/git
+	net-misc/rsync
+	sys-fs/squashfs-tools"
+BDEPEND="verify-sig? ( sec-keys/openpgp-keys-linuxcontainers )"
+
+# Test deps aren't vendored.
+RESTRICT="test"
+
+CONFIG_CHECK="~OVERLAY_FS"
+
+VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/linuxcontainers.asc
+
+GOPATH="${S}/_dist"
+
+src_compile() {
+	export GOPATH="${S}/_dist"
+	emake
+}
+
+src_test() {
+	export GOPATH="${S}/_dist"
+	emake check
+}
+
+src_install() {
+	export GOPATH="${S}/_dist"
+	dobin ${GOPATH}/bin/distrobuilder
+	dodoc -r doc/*
+}


             reply	other threads:[~2023-11-11  8:27 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-11  8:27 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-05-24 19:21 [gentoo-commits] repo/gentoo:master commit in: app-containers/distrobuilder/ Sam James
2025-04-05 10:53 Joonas Niilola
2025-01-06  3:35 Sam James
2024-10-27 16:45 Joonas Niilola
2024-10-27  7:37 Joonas Niilola
2024-06-09  6:38 Joonas Niilola
2024-02-13  6:28 Joonas Niilola
2023-08-13  7:13 Joonas Niilola
2023-08-13  7:13 Joonas Niilola
2022-09-26 10:03 Arthur Zamarin
2022-06-19 17:56 William Hubbs
2022-03-07  4:18 William Hubbs

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1699691212.6b767761cac9f0a4f7a060f7064fe4954d3b8bcd.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox