From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A020313835A for ; Fri, 25 Sep 2020 22:28:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93279E07FE; Fri, 25 Sep 2020 22:28:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7DF4DE07FE for ; Fri, 25 Sep 2020 22:28:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 619F033FE49 for ; Fri, 25 Sep 2020 22:28:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0ECFD37A for ; Fri, 25 Sep 2020 22:28:30 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1601072904.a49c5ccf53cf0a1e90cf7c5d8784dc04cb32e51b.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/bcache-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/bcache-tools/bcache-tools-9999.ebuild X-VCS-Directories: sys-fs/bcache-tools/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: a49c5ccf53cf0a1e90cf7c5d8784dc04cb32e51b X-VCS-Branch: master Date: Fri, 25 Sep 2020 22:28:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 16ae9a4e-9c00-47c9-bb59-0709a40874f2 X-Archives-Hash: 1a9650d4a6bfb9d4eb7b4829d289b36c commit: a49c5ccf53cf0a1e90cf7c5d8784dc04cb32e51b Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Sep 25 22:27:28 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Fri Sep 25 22:28:24 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a49c5ccf sys-fs/bcache-tools: drop unmaintained live ebuild Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Sergei Trofimovich gentoo.org> sys-fs/bcache-tools/bcache-tools-9999.ebuild | 57 ---------------------------- 1 file changed, 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 3bd398fac48..00000000000 --- 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 -}