public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-misc/fdutils: ChangeLog fdutils-5.5-r1.ebuild
@ 2010-01-10  9:48 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 2+ messages in thread
From: Robin H. Johnson (robbat2) @ 2010-01-10  9:48 UTC (permalink / raw
  To: gentoo-commits

robbat2     10/01/10 09:48:47

  Modified:             ChangeLog
  Added:                fdutils-5.5-r1.ebuild
  Log:
  Bug #251859: fix pre-stripped files. Thanks to Kevin Pyle <gentoo.8eaf7cd8e5128d8191fe@spamgourmet.com> for the patch.
  (Portage version: 2.2_rc61/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 app-misc/fdutils/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fdutils/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fdutils/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fdutils/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/fdutils/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -p -w -b -B -u -u -r1.22 -r1.23
--- ChangeLog	3 Sep 2008 08:50:52 -0000	1.22
+++ ChangeLog	10 Jan 2010 09:48:47 -0000	1.23
@@ -1,6 +1,12 @@
 # ChangeLog for app-misc/fdutils
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/fdutils/ChangeLog,v 1.22 2008/09/03 08:50:52 opfer Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/fdutils/ChangeLog,v 1.23 2010/01/10 09:48:47 robbat2 Exp $
+
+*fdutils-5.5-r1 (10 Jan 2010)
+
+  10 Jan 2010; Robin H. Johnson <robbat2@gentoo.org> +fdutils-5.5-r1.ebuild:
+  Bug #251859: fix pre-stripped files. Thanks to Kevin Pyle
+  <gentoo.8eaf7cd8e5128d8191fe@spamgourmet.com> for the patch.
 
   03 Sep 2008; Christian Faulhammer <opfer@gentoo.org>
   fdutils-5.4.20020222-r1.ebuild, fdutils-5.5.ebuild:



1.1                  app-misc/fdutils/fdutils-5.5-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fdutils/fdutils-5.5-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fdutils/fdutils-5.5-r1.ebuild?rev=1.1&content-type=text/plain

Index: fdutils-5.5-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/fdutils/fdutils-5.5-r1.ebuild,v 1.1 2010/01/10 09:48:47 robbat2 Exp $

inherit eutils flag-o-matic

DESCRIPTION="utilities for configuring and debugging the Linux floppy driver"
HOMEPAGE="http://fdutils.linux.lu/"
SRC_URI="http://fdutils.linux.lu/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE="doc"

DEPEND=">=sys-fs/mtools-3
	doc? ( virtual/texi2dvi )"

src_unpack() {
	unpack ${A}
	cd "${S}"
	# the man 4 fd manpage is better in the man-pages package, so stop it
	# from installing
	epatch "${FILESDIR}/${PN}-no-fd.4-manpage.diff"
	epatch "${FILESDIR}/${P}-destdirfix.patch"
	sed -i -e '/\$(INSTALL) -c/s/ -s / /' src/Makefile.in || die "Failed to sed upstream src/Makefile.in to prevent premature strip"
}

src_compile() {
	econf --enable-fdmount-floppy-only || die

	if use doc;
	then
		make || die
	else
		make compile || die
	fi
}

src_install() {
	dodoc Changelog
	use doc && dodir /usr/share/info/
	emake -j1 DESTDIR="${D}" install || die
}






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

* [gentoo-commits] gentoo-x86 commit in app-misc/fdutils: ChangeLog fdutils-5.5-r1.ebuild
@ 2010-04-16 11:03 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 2+ messages in thread
From: Diego Petteno (flameeyes) @ 2010-04-16 11:03 UTC (permalink / raw
  To: gentoo-commits

flameeyes    10/04/16 11:03:17

  Modified:             ChangeLog fdutils-5.5-r1.ebuild
  Log:
  Use -j1 for build (bug #315577).
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.24                 app-misc/fdutils/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fdutils/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fdutils/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fdutils/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/fdutils/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	10 Jan 2010 09:48:47 -0000	1.23
+++ ChangeLog	16 Apr 2010 11:03:17 -0000	1.24
@@ -1,6 +1,10 @@
 # ChangeLog for app-misc/fdutils
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/fdutils/ChangeLog,v 1.23 2010/01/10 09:48:47 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/fdutils/ChangeLog,v 1.24 2010/04/16 11:03:17 flameeyes Exp $
+
+  16 Apr 2010; Diego E. Pettenò <flameeyes@gentoo.org>
+  fdutils-5.5-r1.ebuild:
+  Use -j1 for build (bug #315577).
 
 *fdutils-5.5-r1 (10 Jan 2010)
 



1.2                  app-misc/fdutils/fdutils-5.5-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fdutils/fdutils-5.5-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fdutils/fdutils-5.5-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fdutils/fdutils-5.5-r1.ebuild?r1=1.1&r2=1.2

Index: fdutils-5.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/fdutils/fdutils-5.5-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fdutils-5.5-r1.ebuild	10 Jan 2010 09:48:47 -0000	1.1
+++ fdutils-5.5-r1.ebuild	16 Apr 2010 11:03:17 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/fdutils/fdutils-5.5-r1.ebuild,v 1.1 2010/01/10 09:48:47 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/fdutils/fdutils-5.5-r1.ebuild,v 1.2 2010/04/16 11:03:17 flameeyes Exp $
 
 inherit eutils flag-o-matic
 
@@ -28,11 +28,12 @@
 src_compile() {
 	econf --enable-fdmount-floppy-only || die
 
+	# parallel make unsafe (bug#315577)
 	if use doc;
 	then
-		make || die
+		emake -j1 || die
 	else
-		make compile || die
+		emake -j1 compile || die
 	fi
 }
 






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

end of thread, other threads:[~2010-04-16 11:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-10  9:48 [gentoo-commits] gentoo-x86 commit in app-misc/fdutils: ChangeLog fdutils-5.5-r1.ebuild Robin H. Johnson (robbat2)
  -- strict thread matches above, loose matches on Subject: below --
2010-04-16 11:03 Diego Petteno (flameeyes)

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