summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2010-02-09 15:26:09 +0000
committerJeroen Roovers <jer@gentoo.org>2010-02-09 15:26:09 +0000
commit2d00e2c170f7e708d2d6e064d8a928ad70e036e5 (patch)
treeae286c3986fb45b90902b319f6666fa52a5a5b46 /sys-apps/parted
parentamd64 stable, bug 304033 (diff)
downloadgentoo-2-2d00e2c170f7e708d2d6e064d8a928ad70e036e5.tar.gz
gentoo-2-2d00e2c170f7e708d2d6e064d8a928ad70e036e5.tar.bz2
gentoo-2-2d00e2c170f7e708d2d6e064d8a928ad70e036e5.zip
Remove old.
(Portage version: 2.2_rc62/cvs/Linux i686)
Diffstat (limited to 'sys-apps/parted')
-rw-r--r--sys-apps/parted/ChangeLog6
-rw-r--r--sys-apps/parted/files/parted-1.8.8-t3100-test-success.patch19
-rw-r--r--sys-apps/parted/parted-1.8.8.ebuild50
3 files changed, 5 insertions, 70 deletions
diff --git a/sys-apps/parted/ChangeLog b/sys-apps/parted/ChangeLog
index 7c316999ca7c..9580050e18c7 100644
--- a/sys-apps/parted/ChangeLog
+++ b/sys-apps/parted/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/parted
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.140 2010/02/09 15:12:46 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.141 2010/02/09 15:26:08 jer Exp $
+
+ 09 Feb 2010; Jeroen Roovers <jer@gentoo.org> -parted-1.8.8.ebuild,
+ -files/parted-1.8.8-t3100-test-success.patch:
+ Remove old.
09 Feb 2010; Pacho Ramos <pacho@gentoo.org> parted-1.9.0.ebuild:
amd64 stable, bug 300058
diff --git a/sys-apps/parted/files/parted-1.8.8-t3100-test-success.patch b/sys-apps/parted/files/parted-1.8.8-t3100-test-success.patch
deleted file mode 100644
index 5418ce0d2c1a..000000000000
--- a/sys-apps/parted/files/parted-1.8.8-t3100-test-success.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -Naur parted-1.8.8-orig/tests/t3100-resize-ext2-partion.sh parted-1.8.8/tests/t3100-resize-ext2-partion.sh
---- parted-1.8.8-orig/tests/t3100-resize-ext2-partion.sh 2007-08-09 12:47:57.000000000 -0600
-+++ parted-1.8.8/tests/t3100-resize-ext2-partion.sh 2007-09-02 21:10:42.000000000 -0600
-@@ -44,13 +44,9 @@
- 'parted -s $dev mkpartfs primary ext2 0 $ORIG_SIZE > out 2>&1'
- test_expect_success 'check for empty output' '$compare out /dev/null'
-
--# FIXME: this test currently fails with the diagnostic "error: block
--# relocator should have relocated 64".
--# Eventually, when this bug is fixed, change each of the following
--# expected failures to "test_expect_success".
--test_expect_failure \
-+test_expect_success \
- 'resize ext2 primary partition' \
- 'parted -s $dev resize 1 0 $NEW_SIZE > out 2>&1'
--test_expect_failure 'check for empty output' '$compare out /dev/null'
-+test_expect_success 'check for empty output' '$compare out /dev/null'
-
- test_done
diff --git a/sys-apps/parted/parted-1.8.8.ebuild b/sys-apps/parted/parted-1.8.8.ebuild
deleted file mode 100644
index ac84db97d590..000000000000
--- a/sys-apps/parted/parted-1.8.8.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.8.8.ebuild,v 1.14 2009/04/10 12:18:17 caleb Exp $
-
-inherit eutils
-
-DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems"
-HOMEPAGE="http://www.gnu.org/software/parted"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86"
-IUSE="nls readline debug selinux device-mapper"
-
-# specific version for gettext needed
-# to fix bug 85999
-DEPEND=">=sys-fs/e2fsprogs-1.27
- >=sys-libs/ncurses-5.2
- nls? ( >=sys-devel/gettext-0.12.1-r2 )
- readline? ( >=sys-libs/readline-5.2 )
- selinux? ( sys-libs/libselinux )
- device-mapper? ( || (
- >=sys-fs/lvm2-2.02.45
- sys-fs/device-mapper )
- )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-t3100-test-success.patch
-}
-
-src_compile() {
- econf \
- $(use_with readline) \
- $(use_enable nls) \
- $(use_enable debug) \
- $(use_enable selinux) \
- $(use_enable device-mapper) \
- --disable-rpath \
- --disable-Werror || die "Configure failed"
- emake || die "Make failed"
-}
-
-src_install() {
- make install DESTDIR="${D}" || die "Install failed"
- dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO
- dodoc doc/{API,FAT,USER.jp}
-}