summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Woods <wwoods@gentoo.org>2003-08-11 23:42:56 +0000
committerWill Woods <wwoods@gentoo.org>2003-08-11 23:42:56 +0000
commitaa38e80d8b840ad733dfcfc5870c3be960ae7b33 (patch)
tree40267798d108e410589843bad4bf0b3b8d4d0a25 /sys-apps/parted
parent Marked stable for alpha (diff)
downloadgentoo-2-aa38e80d8b840ad733dfcfc5870c3be960ae7b33.tar.gz
gentoo-2-aa38e80d8b840ad733dfcfc5870c3be960ae7b33.tar.bz2
gentoo-2-aa38e80d8b840ad733dfcfc5870c3be960ae7b33.zip
Minor ebuild fix, update alpha KEYWORDS
Diffstat (limited to 'sys-apps/parted')
-rw-r--r--sys-apps/parted/ChangeLog10
-rw-r--r--sys-apps/parted/Manifest8
-rw-r--r--sys-apps/parted/parted-1.6.5-r1.ebuild6
-rw-r--r--sys-apps/parted/parted-1.6.5.ebuild6
-rw-r--r--sys-apps/parted/parted-1.6.6.ebuild6
5 files changed, 22 insertions, 14 deletions
diff --git a/sys-apps/parted/ChangeLog b/sys-apps/parted/ChangeLog
index 98197f8f9dea..b3a3888d4167 100644
--- a/sys-apps/parted/ChangeLog
+++ b/sys-apps/parted/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for sys-apps/parted
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.19 2003/08/07 18:09:52 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/ChangeLog,v 1.20 2003/08/11 23:42:49 wwoods Exp $
+
+ 11 Aug 2003; Will Woods <wwoods@gentoo.org> parted-1.6.5-r1.ebuild,
+ parted-1.6.5.ebuild, parted-1.6.6.ebuild:
+ Marked 1.6.5 stable for alpha (Mandrake uses it and it works fine) and marked
+ 1.6.6 ~alpha. Also fixed a mistake in the ebuild:
+ "use debug && myconf="${myconf} --disable-debug"
+ should have been "use debug || ...". This fix doesn't really change the
+ functionality of the program so I am not bumping the rev number.
07 Aug 2003; Aron Griffis <agriffis@gentoo.org> parted-1.6.5-r1.ebuild:
Add ~alpha to KEYWORDS
diff --git a/sys-apps/parted/Manifest b/sys-apps/parted/Manifest
index 398d5c7b1822..ba1640c6360d 100644
--- a/sys-apps/parted/Manifest
+++ b/sys-apps/parted/Manifest
@@ -1,7 +1,7 @@
-MD5 2fef78888b4bf75770950a7a2f112f0d ChangeLog 3092
-MD5 2335e4ecd3239e78dbf6c6ec59ce1236 parted-1.6.6.ebuild 1343
-MD5 957950b98fc0397e027e7567b098efc8 parted-1.6.5.ebuild 1206
-MD5 67ede83865b7b5c8ca3a9bfc351ade51 parted-1.6.5-r1.ebuild 1326
+MD5 04f5bd710928915970befcaead19202f ChangeLog 3534
+MD5 0f23d2814c48645a7a8540b6c026a00f parted-1.6.5.ebuild 1212
+MD5 bcaca07d312934f47f8762f10785a2e8 parted-1.6.5-r1.ebuild 1323
+MD5 12e8455bd4d1faba6e0f9da278049949 parted-1.6.6.ebuild 1350
MD5 c4eb5801edd996be57aabfd201b96711 files/digest-parted-1.6.5 65
MD5 c4eb5801edd996be57aabfd201b96711 files/digest-parted-1.6.5-r1 65
MD5 ca37d240601c525a3c9c4e2ce86a85b8 files/parted-1.6.5-hfs-8.patch 110746
diff --git a/sys-apps/parted/parted-1.6.5-r1.ebuild b/sys-apps/parted/parted-1.6.5-r1.ebuild
index 120064ee944c..7c85173cf4a9 100644
--- a/sys-apps/parted/parted-1.6.5-r1.ebuild
+++ b/sys-apps/parted/parted-1.6.5-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.6.5-r1.ebuild,v 1.6 2003/08/07 18:09:52 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.6.5-r1.ebuild,v 1.7 2003/08/11 23:42:49 wwoods Exp $
DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems"
HOMEPAGE="http://www.gnu.org/software/parted"
@@ -8,7 +8,7 @@ SRC_URI="ftp://ftp.gnu.org/gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="ppc amd64 ~alpha"
+KEYWORDS="ppc amd64 alpha"
IUSE="nls static readline debug"
DEPEND=">=sys-apps/e2fsprogs-1.27
@@ -28,7 +28,7 @@ src_compile() {
local myconf
use nls || myconf="${myconf} --disable-nls"
use readline || myconf="${myconf} --without-readline"
- use debug && myconf="${myconf} --disable-debug"
+ use debug || myconf="${myconf} --disable-debug"
use static && myconf="${myconf} --enable-all-static"
econf --target=${CHOST} ${myconf} || die "Configure failed"
emake || die "Make failed"
diff --git a/sys-apps/parted/parted-1.6.5.ebuild b/sys-apps/parted/parted-1.6.5.ebuild
index 828b3af6b578..ee874ce0e2e4 100644
--- a/sys-apps/parted/parted-1.6.5.ebuild
+++ b/sys-apps/parted/parted-1.6.5.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.6.5.ebuild,v 1.5 2003/08/03 04:39:38 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.6.5.ebuild,v 1.6 2003/08/11 23:42:50 wwoods Exp $
DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems"
HOMEPAGE="http://www.gnu.org/software/parted"
@@ -8,7 +8,7 @@ SRC_URI="ftp://ftp.gnu.org/gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="x86 amd64 ppc sparc hppa"
+KEYWORDS="x86 amd64 ppc sparc hppa alpha"
IUSE="nls static readline debug"
DEPEND=">=sys-apps/e2fsprogs-1.27
@@ -22,7 +22,7 @@ src_compile() {
local myconf
use nls || myconf="${myconf} --disable-nls"
use readline || myconf="${myconf} --without-readline"
- use debug && myconf="${myconf} --disable-debug"
+ use debug || myconf="${myconf} --disable-debug"
use static && myconf="${myconf} --enable-all-static"
econf --target=${CHOST} ${myconf} || die "Configure failed"
emake || die "Make failed"
diff --git a/sys-apps/parted/parted-1.6.6.ebuild b/sys-apps/parted/parted-1.6.6.ebuild
index 776490adf0a9..174b61f5db66 100644
--- a/sys-apps/parted/parted-1.6.6.ebuild
+++ b/sys-apps/parted/parted-1.6.6.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.6.6.ebuild,v 1.2 2003/08/03 04:39:38 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/parted/parted-1.6.6.ebuild,v 1.3 2003/08/11 23:42:50 wwoods Exp $
DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems"
HOMEPAGE="http://www.gnu.org/software/parted"
@@ -8,7 +8,7 @@ SRC_URI="ftp://ftp.gnu.org/gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~x86 ~ppc ~amd64 ~sparc ~hppa"
+KEYWORDS="~x86 ~ppc ~amd64 ~sparc ~hppa ~alpha"
IUSE="nls static readline debug"
DEPEND=">=sys-apps/e2fsprogs-1.27
@@ -29,7 +29,7 @@ src_compile() {
local myconf
use nls || myconf="${myconf} --disable-nls"
use readline || myconf="${myconf} --without-readline"
- use debug && myconf="${myconf} --disable-debug"
+ use debug || myconf="${myconf} --disable-debug"
use static && myconf="${myconf} --enable-all-static"
econf --target=${CHOST} ${myconf} || die "Configure failed"
emake || die "Make failed"