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 28796158086 for ; Mon, 29 Nov 2021 15:42:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 594D32BC009; Mon, 29 Nov 2021 15:42:02 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 403442BC009 for ; Mon, 29 Nov 2021 15:42:02 +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 51D1E335D6B for ; Mon, 29 Nov 2021 15:42:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F4C51C1 for ; Mon, 29 Nov 2021 15:41:59 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1638200516.90bcb1fdec53af57cc4bfeb67975c633b7f9cf4e.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/mkosi/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/mkosi/Manifest app-admin/mkosi/metadata.xml app-admin/mkosi/mkosi-11.ebuild X-VCS-Directories: app-admin/mkosi/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 90bcb1fdec53af57cc4bfeb67975c633b7f9cf4e X-VCS-Branch: master Date: Mon, 29 Nov 2021 15:41:59 +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: 17a5b16c-9cbf-437c-92a8-0a1ae3258ff3 X-Archives-Hash: 556365f8c913349728480860cf5f3a3f commit: 90bcb1fdec53af57cc4bfeb67975c633b7f9cf4e Author: Paymon MARNADI gmail com> AuthorDate: Wed Oct 6 17:49:45 2021 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Nov 29 15:41:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90bcb1fd app-admin/mkosi: add mkosi ... in anticipation of the PR for gentoo support [upstream-pr] getting closer to being merged. [upstream-pr] https://github.com/systemd/mkosi/pull/717 Signed-off-by: Paymon MARANDI gmail.com> Closes: https://github.com/gentoo/gentoo/pull/22509 Signed-off-by: Florian Schmaus gentoo.org> app-admin/mkosi/Manifest | 1 + app-admin/mkosi/metadata.xml | 12 ++++++++++++ app-admin/mkosi/mkosi-11.ebuild | 27 +++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) diff --git a/app-admin/mkosi/Manifest b/app-admin/mkosi/Manifest new file mode 100644 index 000000000000..24196fede00d --- /dev/null +++ b/app-admin/mkosi/Manifest @@ -0,0 +1 @@ +DIST mkosi-11.tar.gz 165064 BLAKE2B 19a140fa355dff946dfd46369ccdcce369d97e5ef5c8a0917f21d1f5876c302e54b1e8e509d3cfa54d72a2b4d5b1d97abe74ff2232e3a8ca84005358ed6a99fa SHA512 c07b092e38e663100cfa00ce58c2b61d306292f69429835915310f9736e11ea1431ae2667e8fca02c2a145aa4f21bd199f956d2882913474c4cee394bb15a8f2 diff --git a/app-admin/mkosi/metadata.xml b/app-admin/mkosi/metadata.xml new file mode 100644 index 000000000000..88b16f016f27 --- /dev/null +++ b/app-admin/mkosi/metadata.xml @@ -0,0 +1,12 @@ + + + + + darwinskernel@gmail.com + Paymon MARANDI + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/app-admin/mkosi/mkosi-11.ebuild b/app-admin/mkosi/mkosi-11.ebuild new file mode 100644 index 000000000000..2c90bec35ee1 --- /dev/null +++ b/app-admin/mkosi/mkosi-11.ebuild @@ -0,0 +1,27 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 optfeature + +DESCRIPTION="Build Bespoke OS Images" +HOMEPAGE="https://github.com/systemd/mkosi" +SRC_URI="https://github.com/systemd/mkosi/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64" +RDEPEND=" + sys-apps/portage + sys-apps/systemd + dev-vcs/git +" + +distutils_enable_tests pytest + +pkg_postinst() { + optfeature "For debian support: " dev-util/debootstrap +}