Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/gmp-ecm: gmp-ecm-6.4.3-r3.ebuild ChangeLog
Date: Wed, 28 Nov 2012 09:47:37
Message-Id: 20121128094726.43E6F20C65@flycatcher.gentoo.org
1 patrick 12/11/28 09:47:26
2
3 Modified: gmp-ecm-6.4.3-r3.ebuild ChangeLog
4 Log:
5 Avoid parallel make failure
6
7 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.2 sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild?r1=1.1&r2=1.2
15
16 Index: gmp-ecm-6.4.3-r3.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- gmp-ecm-6.4.3-r3.ebuild 28 Nov 2012 08:11:17 -0000 1.1
23 +++ gmp-ecm-6.4.3-r3.ebuild 28 Nov 2012 09:47:26 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild,v 1.1 2012/11/28 08:11:17 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild,v 1.2 2012/11/28 09:47:26 patrick Exp $
29
30 EAPI=4
31 DESCRIPTION="Elliptic Curve Method for Integer Factorization"
32 @@ -34,13 +34,13 @@
33 if use custom-tune; then
34 use amd64 && cd x86_64
35 use x86 && cd pentium4
36 - emake || die # build libecm/libmulredc.la
37 + emake -j1 || die # build libecm/libmulredc.la
38 cd .. && make bench_mulredc || die
39 sed -i -e 's:#define TUNE_MULREDC_TABLE://#define TUNE_MULREDC_TABLE:g' `readlink ecm-params.h` || die
40 sed -i -e 's:#define TUNE_SQRREDC_TABLE://#define TUNE_SQRREDC_TABLE:g' `readlink ecm-params.h` || die
41 ./bench_mulredc | tail -n 4 >> `readlink ecm-params.h` || die
42 fi
43 - emake || die
44 + emake -j1 || die
45 }
46
47 src_install() {
48
49
50
51 1.5 sci-mathematics/gmp-ecm/ChangeLog
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gmp-ecm/ChangeLog?rev=1.5&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gmp-ecm/ChangeLog?rev=1.5&content-type=text/plain
55 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gmp-ecm/ChangeLog?r1=1.4&r2=1.5
56
57 Index: ChangeLog
58 ===================================================================
59 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/gmp-ecm/ChangeLog,v
60 retrieving revision 1.4
61 retrieving revision 1.5
62 diff -u -r1.4 -r1.5
63 --- ChangeLog 28 Nov 2012 08:11:17 -0000 1.4
64 +++ ChangeLog 28 Nov 2012 09:47:26 -0000 1.5
65 @@ -1,6 +1,9 @@
66 # ChangeLog for sci-mathematics/gmp-ecm
67 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
68 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gmp-ecm/ChangeLog,v 1.4 2012/11/28 08:11:17 patrick Exp $
69 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gmp-ecm/ChangeLog,v 1.5 2012/11/28 09:47:26 patrick Exp $
70 +
71 + 28 Nov 2012; Patrick Lauer <patrick@g.o> gmp-ecm-6.4.3-r3.ebuild:
72 + Avoid parallel make failure
73
74 *gmp-ecm-6.4.3-r3 (28 Nov 2012)