Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/bcache-tools/
Date: Fri, 25 Sep 2020 22:28:33
Message-Id: 1601072904.a49c5ccf53cf0a1e90cf7c5d8784dc04cb32e51b.slyfox@gentoo
1 commit: a49c5ccf53cf0a1e90cf7c5d8784dc04cb32e51b
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 25 22:27:28 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 22:28:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a49c5ccf
7
8 sys-fs/bcache-tools: drop unmaintained live ebuild
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 sys-fs/bcache-tools/bcache-tools-9999.ebuild | 57 ----------------------------
14 1 file changed, 57 deletions(-)
15
16 diff --git a/sys-fs/bcache-tools/bcache-tools-9999.ebuild b/sys-fs/bcache-tools/bcache-tools-9999.ebuild
17 deleted file mode 100644
18 index 3bd398fac48..00000000000
19 --- a/sys-fs/bcache-tools/bcache-tools-9999.ebuild
20 +++ /dev/null
21 @@ -1,57 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -EGIT_NONSHALLOW=true
28 -
29 -inherit git-r3 toolchain-funcs udev
30 -
31 -DESCRIPTION="Tools for bcachefs"
32 -HOMEPAGE="https://bcache.evilpiepirate.org/"
33 -SRC_URI=""
34 -EGIT_REPO_URI="https://github.com/g2p/bcache-tools.git"
35 -
36 -SLOT="0"
37 -LICENSE="GPL-2"
38 -KEYWORDS=""
39 -IUSE=""
40 -
41 -RDEPEND=">=sys-apps/util-linux-2.24"
42 -DEPEND="${RDEPEND}"
43 -
44 -src_prepare() {
45 - tc-export CC
46 - sed \
47 - -e '/^CFLAGS/s:-O2::' \
48 - -e '/^CFLAGS/s:-g:-std=gnu89:' \
49 - -i Makefile || die
50 -}
51 -
52 -src_install() {
53 - into /
54 - dosbin make-bcache bcache-super-show
55 -
56 - exeinto $(get_udevdir)
57 - doexe bcache-register probe-bcache
58 -
59 - udev_dorules 69-bcache.rules
60 -
61 - insinto /etc/initramfs-tools/hooks/bcache
62 - doins initramfs/hook
63 -
64 - insinto /etc/initcpio/install/bcache
65 - doins initcpio/install
66 -
67 - # that is what dracut does
68 - insinto /usr/lib/dracut/modules.d/90bcache
69 - doins dracut/module-setup.sh
70 -
71 - doman *.8
72 -
73 - dodoc README
74 -}
75 -
76 -pkg_postinst() {
77 - udev_reload
78 -}