jer 14/07/29 18:16:15 Modified: ChangeLog parted-3.2.ebuild Log: Clean up ebuild. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path 1.48 sys-block/parted/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?rev=1.48&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?rev=1.48&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/ChangeLog?r1=1.47&r2=1.48 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- ChangeLog 29 Jul 2014 17:14:10 -0000 1.47 +++ ChangeLog 29 Jul 2014 18:16:15 -0000 1.48 @@ -1,6 +1,9 @@ # ChangeLog for sys-block/parted # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v 1.47 2014/07/29 17:14:10 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/ChangeLog,v 1.48 2014/07/29 18:16:15 jer Exp $ + + 29 Jul 2014; Jeroen Roovers <[email protected]> parted-3.2.ebuild: + Clean up ebuild. *parted-3.2 (29 Jul 2014) 1.2 sys-block/parted/parted-3.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.2.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.2.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-block/parted/parted-3.2.ebuild?r1=1.1&r2=1.2 Index: parted-3.2.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.2.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- parted-3.2.ebuild 29 Jul 2014 17:14:10 -0000 1.1 +++ parted-3.2.ebuild 29 Jul 2014 18:16:15 -0000 1.2 @@ -1,8 +1,8 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.2.ebuild,v 1.1 2014/07/29 17:14:10 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.2.ebuild,v 1.2 2014/07/29 18:16:15 jer Exp $ -EAPI="4" +EAPI=5 inherit autotools eutils @@ -36,15 +36,19 @@ 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' \ + sed -i \ + -e 's|t3000-symlink.sh||g' \ + libparted/tests/Makefile.am || die + + sed -i \ -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 + -e '/t4100-msdos-partition-limits.sh/d' \ + -e '/t6000-dm.sh/d' \ + tests/Makefile.am || die + # There is no configure flag for controlling the dev-libs/check test + sed -i \ + -e "s:have_check=[a-z]*:have_check=$(usex test):g" \ + configure.ac || die epatch "${FILESDIR}"/${PN}-3.2-devmapper.patch @@ -65,17 +69,14 @@ 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." + ewarn "Skipping tests because USE=-debug is set" fi } +DOCS=( AUTHORS BUGS ChangeLog NEWS README THANKS TODO doc/{API,FAT,USER.jp} ) 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 {} + + default + prune_libtool_files }
