summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorJoe Peterson <lavajoe@gentoo.org>2009-09-21 11:30:48 +0000
committerJoe Peterson <lavajoe@gentoo.org>2009-09-21 11:30:48 +0000
commit6bdaeb04ada9434494238644bc3aca434f095307 (patch)
tree0b4068f5b801f144ffc70b5df6a4e1c39a5e9508 /sys-fs
parentVersion bump. (diff)
downloadgentoo-2-6bdaeb04ada9434494238644bc3aca434f095307.tar.gz
gentoo-2-6bdaeb04ada9434494238644bc3aca434f095307.tar.bz2
gentoo-2-6bdaeb04ada9434494238644bc3aca434f095307.zip
Remove live git build - no longer current upstream (bug #285357)
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/btrfs/ChangeLog5
-rw-r--r--sys-fs/btrfs/btrfs-9999.ebuild71
2 files changed, 4 insertions, 72 deletions
diff --git a/sys-fs/btrfs/ChangeLog b/sys-fs/btrfs/ChangeLog
index 0775e146619d..8f42c1e1ebfb 100644
--- a/sys-fs/btrfs/ChangeLog
+++ b/sys-fs/btrfs/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-fs/btrfs
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/btrfs/ChangeLog,v 1.20 2009/04/17 15:23:36 lavajoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/btrfs/ChangeLog,v 1.21 2009/09/21 11:30:48 lavajoe Exp $
+
+ 21 Sep 2009; Joe Peterson <lavajoe@gentoo.org> -btrfs-9999.ebuild:
+ Remove live git build - no longer current upstream (bug #285357)
17 Apr 2009; Joe Peterson <lavajoe@gentoo.org> btrfs-0.17.ebuild,
btrfs-9999.ebuild:
diff --git a/sys-fs/btrfs/btrfs-9999.ebuild b/sys-fs/btrfs/btrfs-9999.ebuild
deleted file mode 100644
index cde009a18da0..000000000000
--- a/sys-fs/btrfs/btrfs-9999.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/btrfs/btrfs-9999.ebuild,v 1.9 2009/04/17 15:23:36 lavajoe Exp $
-
-inherit eutils linux-mod git
-
-DESCRIPTION="A checksumming copy-on-write filesystem"
-HOMEPAGE="http://btrfs.wiki.kernel.org/"
-SRC_URI=""
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable-standalone.git"
-EGIT_BRANCH="master"
-
-pkg_setup()
-{
- linux-mod_pkg_setup
-
- BUILD_TARGETS="all"
- BUILD_PARAMS="KERNELDIR=${KV_OUT_DIR}"
- MODULE_NAMES="btrfs(fs:${S})"
-
- if ! kernel_is gt 2 6 26; then
- eerror "Need a >=2.6.27 kernel to compile against!"
- die "Need a >=2.6.27 kernel to compile against!"
- fi
-
- if ! linux_chkconfig_present LIBCRC32C; then
- eerror "You need to enable LIBCRC32C in your kernel!"
- die "You need to enable LIBCRC32C in your kernel!"
- fi
-
- if ! linux_chkconfig_present ZLIB_INFLATE; then
- eerror "You need to enable ZLIB_INFLATE in your kernel!"
- die "You need to enable ZLIB_INFLATE in your kernel!"
- fi
-
- if ! linux_chkconfig_present ZLIB_DEFLATE; then
- eerror "You need to enable ZLIB_DEFLATE in your kernel!"
- die "You need to enable ZLIB_DEFLATE in your kernel!"
- fi
-}
-
-src_install()
-{
- linux-mod_src_install
-
- dodoc INSTALL
-}
-
-pkg_postinst() {
- linux-mod_pkg_postinst
-
- ewarn "WARNING: Btrfs is under heavy development and is not suitable for"
- ewarn " any uses other than benchmarking and review."
- ewarn " The Btrfs disk format is not yet finalized."
- ewarn
- ewarn " Also, it is highly recommended that the versions of"
- ewarn " btrfs and btrfs-progs match."
- ewarn
- ewarn "Note: This version is installed from a live ebuild, so the disk"
- ewarn " format can change from install to install as the upstream"
- ewarn " source changes."
-}