diff options
author | Joe Peterson <lavajoe@gentoo.org> | 2012-04-09 03:53:54 +0000 |
---|---|---|
committer | Joe Peterson <lavajoe@gentoo.org> | 2012-04-09 03:53:54 +0000 |
commit | 7263b0ca6bf64775b2e779ee03152ea7f30de40b (patch) | |
tree | 13c3af1f91f473f63600fc7f6b2f1be737e8f829 /sys-fs/btrfs-progs | |
parent | Revision bump to add upstream patch for sys-apps/file compatibility (diff) | |
download | gentoo-2-7263b0ca6bf64775b2e779ee03152ea7f30de40b.tar.gz gentoo-2-7263b0ca6bf64775b2e779ee03152ea7f30de40b.tar.bz2 gentoo-2-7263b0ca6bf64775b2e779ee03152ea7f30de40b.zip |
Remove old
(Portage version: 2.1.10.47/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs/btrfs-progs')
-rw-r--r-- | sys-fs/btrfs-progs/ChangeLog | 6 | ||||
-rw-r--r-- | sys-fs/btrfs-progs/btrfs-progs-0.16-r1.ebuild | 70 | ||||
-rw-r--r-- | sys-fs/btrfs-progs/btrfs-progs-0.17.ebuild | 72 | ||||
-rw-r--r-- | sys-fs/btrfs-progs/btrfs-progs-0.18-r1.ebuild | 87 |
4 files changed, 5 insertions, 230 deletions
diff --git a/sys-fs/btrfs-progs/ChangeLog b/sys-fs/btrfs-progs/ChangeLog index de490c817a92..a3a77c12d61d 100644 --- a/sys-fs/btrfs-progs/ChangeLog +++ b/sys-fs/btrfs-progs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-fs/btrfs-progs # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/btrfs-progs/ChangeLog,v 1.42 2012/04/09 02:46:07 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/btrfs-progs/ChangeLog,v 1.43 2012/04/09 03:53:54 lavajoe Exp $ + + 09 Apr 2012; Joe Peterson <lavajoe@gentoo.org> -btrfs-progs-0.16-r1.ebuild, + -btrfs-progs-0.17.ebuild, -btrfs-progs-0.18-r1.ebuild: + Remove old 09 Apr 2012; Mike Gilbert <floppym@gentoo.org> btrfs-progs-9999.ebuild: Add https fallback for git repo. Drop unused eutils. diff --git a/sys-fs/btrfs-progs/btrfs-progs-0.16-r1.ebuild b/sys-fs/btrfs-progs/btrfs-progs-0.16-r1.ebuild deleted file mode 100644 index b348d2168c3d..000000000000 --- a/sys-fs/btrfs-progs/btrfs-progs-0.16-r1.ebuild +++ /dev/null @@ -1,70 +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-progs/btrfs-progs-0.16-r1.ebuild,v 1.5 2012/04/09 02:20:07 lavajoe Exp $ - -inherit eutils - -DESCRIPTION="Btrfs filesystem utilities" -HOMEPAGE="http://btrfs.wiki.kernel.org/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="acl" - -DEPEND="acl? ( - sys-apps/acl - sys-fs/e2fsprogs - )" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - # Apply hot fixes - #epatch "${FILESDIR}/${P}-hotfix.patch" - - # Fix hardcoded "gcc" and "make" - sed -i -e 's:gcc $(CFLAGS):$(CC) $(CFLAGS):' Makefile - sed -i -e 's:make:$(MAKE):' Makefile -} - -src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ - all || die - if use acl; then - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ - convert || die - fi -} - -src_install() { - into / - dosbin btrfs-show - dosbin btrfs-vol - dosbin btrfsctl - dosbin btrfsck - # fsck will segfault if invoked at boot, so do not make this link - #dosym btrfsck /sbin/fsck.btrfs - newsbin debug-tree btrfs-debug-tree - newsbin mkfs.btrfs mkbtrfs - dosym mkbtrfs /sbin/mkfs.btrfs - if use acl; then - dosbin btrfs-convert - else - ewarn "Note: btrfs-convert not built/installed (requires acl USE flag)" - fi - - into /usr - newbin bcp btrfs-bcp - newbin show-blocks btrfs-show-blocks - - dodoc INSTALL -} - -pkg_postinst() { - ewarn "WARNING: This version should only be used with the matching version" - ewarn " of the standalone btrfs kernel module!" -} diff --git a/sys-fs/btrfs-progs/btrfs-progs-0.17.ebuild b/sys-fs/btrfs-progs/btrfs-progs-0.17.ebuild deleted file mode 100644 index 06cb1dfd28bd..000000000000 --- a/sys-fs/btrfs-progs/btrfs-progs-0.17.ebuild +++ /dev/null @@ -1,72 +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-progs/btrfs-progs-0.17.ebuild,v 1.5 2012/04/09 02:20:07 lavajoe Exp $ - -inherit eutils - -DESCRIPTION="Btrfs filesystem utilities" -HOMEPAGE="http://btrfs.wiki.kernel.org/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="acl" - -DEPEND="acl? ( - sys-apps/acl - sys-fs/e2fsprogs - )" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - # Apply hot fixes - #epatch "${FILESDIR}/${P}-hotfix.patch" - - # Fix hardcoded "gcc" and "make" - sed -i -e 's:gcc $(CFLAGS):$(CC) $(CFLAGS):' Makefile - sed -i -e 's:make:$(MAKE):' Makefile -} - -src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ - all || die - if use acl; then - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ - convert || die - fi -} - -src_install() { - into / - dosbin btrfs-show - dosbin btrfs-vol - dosbin btrfs-image - dosbin btrfsctl - dosbin btrfstune - dosbin btrfsck - # fsck will segfault if invoked at boot, so do not make this link - #dosym btrfsck /sbin/fsck.btrfs - #newsbin debug-tree btrfs-debug-tree - newsbin mkfs.btrfs mkbtrfs - dosym mkbtrfs /sbin/mkfs.btrfs - if use acl; then - dosbin btrfs-convert - else - ewarn "Note: btrfs-convert not built/installed (requires acl USE flag)" - fi - - into /usr - newbin bcp btrfs-bcp - newbin show-blocks btrfs-show-blocks - - dodoc INSTALL -} - -pkg_postinst() { - ewarn "WARNING: This version should only be used with the matching version" - ewarn " of the standalone btrfs kernel module!" -} diff --git a/sys-fs/btrfs-progs/btrfs-progs-0.18-r1.ebuild b/sys-fs/btrfs-progs/btrfs-progs-0.18-r1.ebuild deleted file mode 100644 index a9c5013b1bea..000000000000 --- a/sys-fs/btrfs-progs/btrfs-progs-0.18-r1.ebuild +++ /dev/null @@ -1,87 +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-progs/btrfs-progs-0.18-r1.ebuild,v 1.3 2012/04/09 02:20:07 lavajoe Exp $ - -inherit eutils - -DESCRIPTION="Btrfs filesystem utilities" -HOMEPAGE="http://btrfs.wiki.kernel.org/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="acl debug-utils" - -DEPEND="debug-utils? ( dev-python/matplotlib ) - acl? ( - sys-apps/acl - sys-fs/e2fsprogs - )" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - # Apply hot fixes - #epatch "${FILESDIR}/${P}-hotfix.patch" - - # Fix hardcoded "gcc" and "make" - sed -i -e 's:gcc $(CFLAGS):$(CC) $(CFLAGS):' Makefile - sed -i -e 's:make:$(MAKE):' Makefile -} - -src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ - all || die - if use acl; then - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ - convert || die - fi -} - -src_install() { - into / - dosbin btrfs-show - dosbin btrfs-vol - dosbin btrfsctl - dosbin btrfsck - dosbin btrfstune - dosbin btrfs-image - # fsck will segfault if invoked at boot, so do not make this link - #dosym btrfsck /sbin/fsck.btrfs - newsbin mkfs.btrfs mkbtrfs - dosym mkbtrfs /sbin/mkfs.btrfs - if use acl; then - dosbin btrfs-convert - else - ewarn "Note: btrfs-convert not built/installed (requires acl USE flag)" - fi - - if use debug-utils; then - newsbin debug-tree btrfs-debug-tree - else - ewarn "Note: btrfs-debug-tree not installed (requires debug-utils USE flag)" - fi - - into /usr - newbin bcp btrfs-bcp - - if use debug-utils; then - newbin show-blocks btrfs-show-blocks - else - ewarn "Note: btrfs-show-blocks not installed (requires debug-utils USE flag)" - fi - - dodoc INSTALL -} - -pkg_postinst() { - ewarn "WARNING: This version of btrfs-progs corresponds to and should only" - ewarn " be used with the version of btrfs included in the" - ewarn " Linux kernel (2.6.29-rc2 and above)." - ewarn "" - ewarn " This version should NOT be used with earlier versions" - ewarn " of the standaline btrfs module!" -} |