sys-fs/genfstab: drop 28-r1

Signed-off-by: Alfred Persson Forsberg <cat@catcream.org>
Part-of: https://github.com/gentoo/gentoo/pull/45608
Closes: https://github.com/gentoo/gentoo/pull/45608
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Alfred Persson Forsberg
2026-02-03 01:33:23 +01:00
committed by Sam James
parent a0976c24ae
commit fad8c2db28
2 changed files with 0 additions and 39 deletions

View File

@@ -1,3 +1,2 @@
DIST arch-install-scripts-v28.tar.gz 19730 BLAKE2B 0ff5ba79b200ad642e049ec19217cc5c0794d627a28f42e03c0df2444fef4d8488a6ee011d26fb8fe958c1a1a2fa0a13920567e394b2389c772f516b1fe8f388 SHA512 09a027b04b70e01ccd1fd82e3a443c876bdf978b94a922de9dea4dbc187360460ea35720816724b72fc31b02338b11bf39b47ec9156518a8a3ade000530bf1df
DIST arch-install-scripts-v29.tar.bz2 19418 BLAKE2B 733d326fd5b2948fc30d4c8e4752e855b8babe73698019825bf828334d07e0c3527534d5f58248f701b6aeda41425c2c6869da77506be891a493c3871f3c5e1f SHA512 39239dcdcdf8cf9ef72b7a16f2c42133baa8791c9d2753a35818236d92a0327d0aacd399013a06548739000556481ce6608106280f185006140fea9468157066
DIST arch-install-scripts-v31.tar.bz2 20387 BLAKE2B 5f8988be9770d5c85e30e8e7a93bca35e59fa073814a950789ea7fb924349af04b054eff97464e6570453f8a30506a4de0e9a6fd0566453ce07ce3f049df40f6 SHA512 3d1dcdf2dc8c36b3e20d1e5c760149db61d9d76c283d6bbc617933a3b0ef7a39cd41fdd8d7d55729fa2cc0fc713967d862d3dafe2c50b6c2ccc33d4da6855824

View File

@@ -1,38 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1
DESCRIPTION="Genfstab - generate output suitable for addition to an fstab file"
HOMEPAGE="https://github.com/archlinux/arch-install-scripts https://man.archlinux.org/man/genfstab.8"
SRC_URI="https://github.com/archlinux/arch-install-scripts/archive/refs/tags/v${PV}.tar.gz -> arch-install-scripts-v${PV}.tar.gz"
S="${WORKDIR}/arch-install-scripts-${PV}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86"
IUSE="test"
RESTRICT="!test? ( test )"
BDEPEND="
app-alternatives/awk
app-text/asciidoc
sys-devel/m4
"
src_test() {
emake MANS="doc/genfstab.8" BINPROGS="genfstab" check
}
src_compile() {
emake MANS="doc/genfstab.8" BINPROGS="genfstab"
}
src_install() {
dobin genfstab
doman doc/genfstab.8
newbashcomp completion/genfstab.bash genfstab
}