summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2020-09-25 23:27:28 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2020-09-25 23:28:24 +0100
commita49c5ccf53cf0a1e90cf7c5d8784dc04cb32e51b (patch)
treec22220ca3e5e0d0d6627868fc88c7716285558d8
parentsys-fs/bcache-tools: slightly simplify src_prepare() (diff)
downloadgentoo-a49c5ccf.tar.gz
gentoo-a49c5ccf.tar.bz2
gentoo-a49c5ccf.zip
sys-fs/bcache-tools: drop unmaintained live ebuild
Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
-rw-r--r--sys-fs/bcache-tools/bcache-tools-9999.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/sys-fs/bcache-tools/bcache-tools-9999.ebuild b/sys-fs/bcache-tools/bcache-tools-9999.ebuild
deleted file mode 100644
index 3bd398fac481..000000000000
--- a/sys-fs/bcache-tools/bcache-tools-9999.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-EGIT_NONSHALLOW=true
-
-inherit git-r3 toolchain-funcs udev
-
-DESCRIPTION="Tools for bcachefs"
-HOMEPAGE="https://bcache.evilpiepirate.org/"
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/g2p/bcache-tools.git"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS=""
-IUSE=""
-
-RDEPEND=">=sys-apps/util-linux-2.24"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- tc-export CC
- sed \
- -e '/^CFLAGS/s:-O2::' \
- -e '/^CFLAGS/s:-g:-std=gnu89:' \
- -i Makefile || die
-}
-
-src_install() {
- into /
- dosbin make-bcache bcache-super-show
-
- exeinto $(get_udevdir)
- doexe bcache-register probe-bcache
-
- udev_dorules 69-bcache.rules
-
- insinto /etc/initramfs-tools/hooks/bcache
- doins initramfs/hook
-
- insinto /etc/initcpio/install/bcache
- doins initcpio/install
-
- # that is what dracut does
- insinto /usr/lib/dracut/modules.d/90bcache
- doins dracut/module-setup.sh
-
- doman *.8
-
- dodoc README
-}
-
-pkg_postinst() {
- udev_reload
-}