sys-fs/genimage: drop 18

Closes: https://bugs.gentoo.org/890989
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
This commit is contained in:
Jakov Smolić
2025-07-12 18:31:53 +02:00
parent b65f2814a4
commit 40adfa826b
2 changed files with 0 additions and 43 deletions

View File

@@ -1,2 +1 @@
DIST genimage-18.tar.gz 98409 BLAKE2B dc73d2cca8166939e803834490fd55de66d235df0bb0dfef0c79810bfd619fc8683715241719b2fa94d19bf3870863c3aacbd6f2dd50cf41200d5990104ffd3d SHA512 70cacbb0ce081bd6e941f79e00e2c92839909e254d2f74b1eddd4e5d5d6d5177f80745df9bc132fa9b0c901e184d37c1c89113238a0b357412704dba0c367211
DIST genimage-19.tar.gz 111971 BLAKE2B 208493eedf6e9fadb15516d2c2879c01dc4fb4e23f0b8511fd69a1cf07f08cbbbadfb1aad5e4f4bb5c15da9012f6e080d93beafdf73459e2d64e40cde4bdcc50 SHA512 9e727082ce487657b231efe66a3873936f66b7b83fc7b6a5c106a731f944def5d67b9010602921080c2080572d8e61d66a9233aacde0741b9b4d258238f2ac59

View File

@@ -1,42 +0,0 @@
# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools optfeature
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/pengutronix/genimage.git"
else
SRC_URI="https://github.com/pengutronix/genimage/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64"
fi
DESCRIPTION="Tool to generate multiple filesystem and flash images from a tree"
HOMEPAGE="https://github.com/pengutronix/genimage"
LICENSE="GPL-2"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="dev-libs/confuse:="
RDEPEND="${DEPEND}"
BDEPEND="test? ( sys-apps/fakeroot )"
src_prepare() {
default
eautoreconf
}
pkg_postinst() {
optfeature "cpio support" app-alternatives/cpio
optfeature "tar support" app-arch/tar
optfeature "qemu support" app-emulation/qemu
optfeature "dosfstools support" sys-fs/dosfstools
optfeature "cramfs support" sys-fs/cramfs
optfeature "genext2fs support" sys-fs/genext2fs
optfeature "jffs, ubifs and ubinize support" sys-fs/mtd-utils
optfeature "squashfs support" sys-fs/squashfs-tools
}