remove app-admin/mkosi package

This commit is contained in:
Alexander Miroshnichenko 2025-05-11 16:24:47 +03:00
parent 67cec1b6b0
commit a9e7ee17ac
3 changed files with 0 additions and 78 deletions

View File

@ -1,4 +0,0 @@
AUX 0001-distributions-revive-Gentoo.patch 25156 BLAKE2B 7bb5f987b47b0744b7d7507fcd75b8d0de0a69edb403fa6d50e0ea4df4ec348f20c06ed58d8dc84d67e2540c6d9c9823461c638bcffe4bd2cfe43f48689590c8 SHA512 ce76dc3fd64a5015d6eaa01324e08a440cc119d45a007868f21c0557c32ce80f8f2e83fd0621358b6372ad16f7242e5dfdd6e0d528a83a66ae6de0df735d1cf3
DIST mkosi-24.3_p20241022.tar.gz 378045 BLAKE2B 93c884f11fc917d52c67db947f72558b91df957ebc68435e51122e47c907d9d36e7638bfb4795af305fb4dd578fec475d810fe011d35dc7ad59c9c7e531d52a8 SHA512 ef8a825ed6f800fd4e7972c6954d92fdc654f1007fc96ecec4af3889ad9fc3abbccccfdee66857503b0a7a6b2deb50f0f80a617ec29c8252a6d9f5ebbbae59d3
EBUILD mkosi-24.3_p20241022.ebuild 1224 BLAKE2B 6895bfe89da9e2b8e3d6d6e546d93e30b21a5b167bfde43b061401f17e8a6e2a1c6644ba922172db16ac99076634c300231daee2d9564b77e17ce19a6ed0d2c9 SHA512 41a70289772d461ffc78649189227ded9e47a5ba7a83c274f4ae32ac1e8053d3617a306af95859c05e75585c9ef15b8cac2ca30fdf6f5153e705e34a79637df3
MISC metadata.xml 479 BLAKE2B 3921ab722bcee7cc126528e3b204251ef5fddb5abb333ef3317e8e5fb0a596eced1619ce8bb3670aa8c78f60987d59fc7f6992dc5b14c407f2be3b16581389de SHA512 d02e7a8f4e9295ea13e9bd8a451f1b87463c7d15cb49529e348aa483350fb0553b5a4485999abd876d40a658b457b4de46d3e7561ff3b512f9c1865b1b901e35

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person" proxied="yes">
<email>darwinskernel@gmail.com</email>
<name>Paymon MARANDI</name>
</maintainer>
<maintainer type="project" proxied="proxy">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<upstream>
<remote-id type="github">systemd/mkosi</remote-id>
</upstream>
</pkgmetadata>

View File

@ -1,59 +0,0 @@
# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..13} )
EGIT_COMMIT=fcacc94b9f72d9b6b1f03779b0c6e07209ceb54b
inherit distutils-r1 optfeature
DESCRIPTION="Build Bespoke OS Images"
HOMEPAGE="https://github.com/systemd/mkosi"
SRC_URI="https://github.com/systemd/mkosi/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
IUSE="qemu systemd kernel-install"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
qemu? ( app-emulation/qemu )
sys-apps/bubblewrap
systemd? ( sys-apps/systemd )"
BDEPEND="virtual/pandoc"
S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
distutils_enable_tests pytest
src_prepare() {
local PATCHES=(
"${FILESDIR}/0001-distributions-revive-Gentoo.patch"
)
default
}
src_compile() {
distutils-r1_src_compile
./tools/make-man-page.sh || die
}
src_install() {
distutils-r1_src_install
doman mkosi/resources/man/*.1
doman mkosi/resources/man/*.7
if use kernel-install; then
exeinto /usr/lib/kernel/install.d
doexe kernel-install/50-mkosi.install
fi
}
pkg_postinst() {
optfeature "debian support" dev-util/debootstrap
}