public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-block/parted: ChangeLog parted-3.1-r1.ebuild
@ 2012-11-14  3:31 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2012-11-14  3:31 UTC (permalink / raw
  To: gentoo-commits

jer         12/11/14 03:31:44

  Modified:             ChangeLog
  Added:                parted-3.1-r1.ebuild
  Log:
  Add ZFS detection by Richard Yao (bug #419157).
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.23                 sys-block/parted/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	17 Jun 2012 16:20:52 -0000	1.22
+++ ChangeLog	14 Nov 2012 03:31:44 -0000	1.23
@@ -1,6 +1,12 @@
 # ChangeLog for sys-block/parted
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v 1.22 2012/06/17 16:20:52 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v 1.23 2012/11/14 03:31:44 jer Exp $
+
+*parted-3.1-r1 (14 Nov 2012)
+
+  14 Nov 2012; Jeroen Roovers <jer@gentoo.org> +parted-3.1-r1.ebuild,
+  +files/parted-3.1-zfs.patch:
+  Add ZFS detection by Richard Yao (bug #419157).
 
   17 Jun 2012; Raúl Porcel <armin76@gentoo.org> parted-3.1.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #414431



1.1                  sys-block/parted/parted-3.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: parted-3.1-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild,v 1.1 2012/11/14 03:31:44 jer Exp $

EAPI="4"

WANT_AUTOMAKE="1.11"

inherit autotools 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.xz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~mips ~s390 ~sh ~x86"
IUSE="+debug device-mapper nls readline selinux static-libs test"

# specific version for gettext needed
# to fix bug 85999
RDEPEND="
	>=sys-fs/e2fsprogs-1.27
	>=sys-libs/ncurses-5.7-r7
	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 ) )
"
DEPEND="
	${RDEPEND}
	virtual/pkgconfig
	test? (
		>=dev-libs/check-0.9.3
		dev-perl/Digest-CRC
	)
"

src_prepare() {
	# Remove tests known to FAIL instead of SKIP without OS/userland support
	sed -i libparted/tests/Makefile.am \
		-e 's|t3000-symlink.sh||g' || die "sed failed"
	sed -i tests/Makefile.am \
		-e '/t4100-msdos-partition-limits.sh/d' \
		-e '/t4100-dvh-partition-limits.sh/d' \
		-e '/t6000-dm.sh/d' || die "sed failed"
	# there is no configure flag for controlling the dev-libs/check test
	sed -i configure.ac \
		-e "s:have_check=[a-z]*:have_check=$(usex test):g" || die

	epatch "${FILESDIR}"/${PN}-3.1-zfs.patch
	eautoreconf
}

src_configure() {
	econf \
		$(use_with readline) \
		$(use_enable nls) \
		$(use_enable debug) \
		$(use_enable selinux) \
		$(use_enable device-mapper) \
		$(use_enable static-libs static) \
		--disable-rpath
}

src_test() {
	if use debug; then
		# Do not die when tests fail - some requirements are not
		# properly checked and should not lead to the ebuild failing.
		emake check
	else
		ewarn "Skipping tests because USE=-debug is set."
	fi
}

src_install() {
	emake install DESTDIR="${D}"
	dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO
	dodoc doc/{API,FAT,USER.jp}
	find "${ED}" -name '*.la' -exec rm -f {} +
}





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-block/parted: ChangeLog parted-3.1-r1.ebuild
@ 2012-11-14 17:19 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2012-11-14 17:19 UTC (permalink / raw
  To: gentoo-commits

jer         12/11/14 17:19:18

  Modified:             ChangeLog parted-3.1-r1.ebuild
  Log:
  Marked ~hppa (bug #443048).
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.24                 sys-block/parted/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	14 Nov 2012 03:31:44 -0000	1.23
+++ ChangeLog	14 Nov 2012 17:19:18 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for sys-block/parted
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v 1.23 2012/11/14 03:31:44 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v 1.24 2012/11/14 17:19:18 jer Exp $
+
+  14 Nov 2012; Jeroen Roovers <jer@gentoo.org> parted-3.1-r1.ebuild:
+  Marked ~hppa (bug #443048).
 
 *parted-3.1-r1 (14 Nov 2012)
 



1.2                  sys-block/parted/parted-3.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild?r1=1.1&r2=1.2

Index: parted-3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- parted-3.1-r1.ebuild	14 Nov 2012 03:31:44 -0000	1.1
+++ parted-3.1-r1.ebuild	14 Nov 2012 17:19:18 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild,v 1.1 2012/11/14 03:31:44 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild,v 1.2 2012/11/14 17:19:18 jer Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~s390 ~sh ~x86"
+KEYWORDS="~amd64 ~hppa ~mips ~s390 ~sh ~x86"
 IUSE="+debug device-mapper nls readline selinux static-libs test"
 
 # specific version for gettext needed





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-block/parted: ChangeLog parted-3.1-r1.ebuild
@ 2012-12-16 19:32 Raul Porcel (armin76)
  0 siblings, 0 replies; 3+ messages in thread
From: Raul Porcel (armin76) @ 2012-12-16 19:32 UTC (permalink / raw
  To: gentoo-commits

armin76     12/12/16 19:32:29

  Modified:             ChangeLog parted-3.1-r1.ebuild
  Log:
  Re-add ~alpha/~ia64/~s390/~sh/~sparc wrt #443048
  
  (Portage version: 2.1.11.38/cvs/Linux ia64, signed Manifest commit with key F6AD3240)

Revision  Changes    Path
1.26                 sys-block/parted/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	23 Nov 2012 18:17:46 -0000	1.25
+++ ChangeLog	16 Dec 2012 19:32:29 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for sys-block/parted
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v 1.25 2012/11/23 18:17:46 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v 1.26 2012/12/16 19:32:29 armin76 Exp $
+
+  16 Dec 2012; Raúl Porcel <armin76@gentoo.org> parted-3.1-r1.ebuild:
+  Re-add ~alpha/~ia64/~s390/~sh/~sparc wrt #443048
 
   23 Nov 2012; Anthony G. Basile <blueness@gentoo.org> parted-3.1-r1.ebuild:
   keyword ~arm ~ppc ~pp64, bug #443048



1.4                  sys-block/parted/parted-3.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild?r1=1.3&r2=1.4

Index: parted-3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- parted-3.1-r1.ebuild	23 Nov 2012 18:17:46 -0000	1.3
+++ parted-3.1-r1.ebuild	16 Dec 2012 19:32:29 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild,v 1.3 2012/11/23 18:17:46 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild,v 1.4 2012/12/16 19:32:29 armin76 Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="+debug device-mapper nls readline selinux static-libs test"
 
 # specific version for gettext needed





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-12-16 19:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-16 19:32 [gentoo-commits] gentoo-x86 commit in sys-block/parted: ChangeLog parted-3.1-r1.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2012-11-14 17:19 Jeroen Roovers (jer)
2012-11-14  3:31 Jeroen Roovers (jer)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox