diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-02-10 13:00:46 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-02-10 13:00:46 +0100 |
commit | 20fab489eb9d5444a7fce49cd48be4f49e4652e4 (patch) | |
tree | 0856511ce194ae459c6956ea3fe88f107f074dc5 /sys-fs | |
parent | app-crypt/glep63-check: Remove old (diff) | |
download | gentoo-20fab489eb9d5444a7fce49cd48be4f49e4652e4.tar.gz gentoo-20fab489eb9d5444a7fce49cd48be4f49e4652e4.tar.bz2 gentoo-20fab489eb9d5444a7fce49cd48be4f49e4652e4.zip |
sys-fs/vhba: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/vhba/Manifest | 1 | ||||
-rw-r--r-- | sys-fs/vhba/vhba-20211023.ebuild | 50 |
2 files changed, 0 insertions, 51 deletions
diff --git a/sys-fs/vhba/Manifest b/sys-fs/vhba/Manifest index d46e8457b783..46bdd8d66b7a 100644 --- a/sys-fs/vhba/Manifest +++ b/sys-fs/vhba/Manifest @@ -1,2 +1 @@ -DIST vhba-module-20211023.tar.xz 16144 BLAKE2B 70f922c9cf4de5e495ccf812c2b4eecbf3ba4dc49bb59763b97754505198506de4fce7789a4ef6e93dce4cef5275f7aff6c5c45b856a40ad6f62a5fae58d7187 SHA512 e398f8bbdff8d57d001633d98d3720d7cd424d0279de96d9d3e30dcc9013eedc4afaef4e2ab9962306e2073b30ed9d36ccff328253e1d6d36fde1944b2b78e5a DIST vhba-module-20211218.tar.xz 16168 BLAKE2B 37fcc56cc34dfbc68c8a8212f30a54c6a04f3b9014a5964b995bfef59df1b8f5a005e6cbfff97f1233451d215b6c4fd3c09a0cd39ebf6cb86bd6b327e5d7d718 SHA512 02b554bb2d0c91c090edeeb7c692164f378273e475a64653df845cb30cdd15d689f7fbe5fa890f77f82bf778d4d228384f656d202b6b6baf02d08321d7c2598d diff --git a/sys-fs/vhba/vhba-20211023.ebuild b/sys-fs/vhba/vhba-20211023.ebuild deleted file mode 100644 index d9e0c2610800..000000000000 --- a/sys-fs/vhba/vhba-20211023.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit linux-mod udev - -MY_P=vhba-module-${PV} -DESCRIPTION="Virtual (SCSI) Host Bus Adapter kernel module for the CDEmu suite" -HOMEPAGE="https://cdemu.sourceforge.io/" -SRC_URI="https://download.sourceforge.net/cdemu/vhba-module/${MY_P}.tar.xz" -S=${WORKDIR}/${MY_P} - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="virtual/udev" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -MODULE_NAMES="vhba(block:${S})" -BUILD_TARGETS=modules - -pkg_setup() { - CONFIG_CHECK="~BLK_DEV_SR ~CHR_DEV_SG" - check_extra_config - BUILD_PARAMS="KDIR=${KV_OUT_DIR}" - linux-mod_pkg_setup -} - -src_prepare() { - # Avoid -Werror problems - sed -i -e '/ccflags/s/-Werror/-Wall/' Makefile || die "sed failed" - - eapply_user -} - -src_install() { - dodoc AUTHORS ChangeLog README - linux-mod_src_install - - einfo "Generating udev rules ..." - udev_newrules - 69-vhba.rules <<-EOF - # do not edit this file, it will be overwritten on update - # - KERNEL=="vhba_ctl", SUBSYSTEM=="misc", TAG+="uaccess" - EOF -} |