* [gentoo-commits] gentoo-x86 commit in app-benchmarks/contest: ChangeLog contest-0.61.ebuild
@ 2008-12-30 17:26 Christoph Mende (angelos)
0 siblings, 0 replies; 4+ messages in thread
From: Christoph Mende (angelos) @ 2008-12-30 17:26 UTC (permalink / raw
To: gentoo-commits
angelos 08/12/30 17:26:47
Modified: ChangeLog contest-0.61.ebuild
Log:
QA: Use correct CC (bug #243514) and respect LDFLAGS
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Revision Changes Path
1.8 app-benchmarks/contest/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?r1=1.7&r2=1.8
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog 21 Apr 2008 16:32:09 -0000 1.7
+++ ChangeLog 30 Dec 2008 17:26:47 -0000 1.8
@@ -1,6 +1,9 @@
# ChangeLog for app-benchmarks/contest
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v 1.7 2008/04/21 16:32:09 phreak Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v 1.8 2008/12/30 17:26:47 angelos Exp $
+
+ 30 Dec 2008; Christoph Mende <angelos@gentoo.org> contest-0.61.ebuild:
+ QA: Use correct CC (bug #243514) and respect LDFLAGS
21 Apr 2008; Christian Heim <phreak@gentoo.org> metadata.xml:
Fix up metadata.xml. If there's no maintainer for the package, the metadata
1.7 app-benchmarks/contest/contest-0.61.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?r1=1.6&r2=1.7
Index: contest-0.61.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- contest-0.61.ebuild 8 Jul 2005 14:19:56 -0000 1.6
+++ contest-0.61.ebuild 30 Dec 2008 17:26:47 -0000 1.7
@@ -1,10 +1,12 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v 1.6 2005/07/08 14:19:56 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v 1.7 2008/12/30 17:26:47 angelos Exp $
-DESCRIPTION="Test system responsiveness for compare different kernels"
+inherit toolchain-funcs
+
+DESCRIPTION="Test system responsiveness to compare different kernels"
HOMEPAGE="http://members.optusnet.com.au/ckolivas/contest/"
-SRC_URI="http://members.optusnet.com.au/ckolivas/contest/${P}.tar.gz"
+SRC_URI="http://members.optusnet.com.au/ckolivas/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
@@ -15,10 +17,13 @@
src_unpack () {
unpack ${A}
+ cd "${S}"
+
#Removing -g
- sed -i "s:-g::" ${S}/Makefile
+ sed -i "s:-g::" Makefile
#Adding our cflags
- sed -i "s:-O2:${CFLAGS}:" ${S}/Makefile
+ sed -i "s:-O2:${CFLAGS} ${LDFLAGS}:" Makefile
+ sed -i -e "/^CC/s/gcc/$(tc-getCC)/" Makefile
}
src_compile() {
emake || die
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-benchmarks/contest: ChangeLog contest-0.61.ebuild
@ 2009-03-02 0:20 Patrick Lauer (patrick)
0 siblings, 0 replies; 4+ messages in thread
From: Patrick Lauer (patrick) @ 2009-03-02 0:20 UTC (permalink / raw
To: gentoo-commits
patrick 09/03/02 00:20:32
Modified: ChangeLog contest-0.61.ebuild
Log:
Fix for gcc 4.3.3 / fortify_sources. Adding ~amd64 keyword. Patch by Magnus Granberg. Closes #260451
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.9 app-benchmarks/contest/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?r1=1.8&r2=1.9
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog 30 Dec 2008 17:26:47 -0000 1.8
+++ ChangeLog 2 Mar 2009 00:20:32 -0000 1.9
@@ -1,6 +1,11 @@
# ChangeLog for app-benchmarks/contest
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v 1.8 2008/12/30 17:26:47 angelos Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v 1.9 2009/03/02 00:20:32 patrick Exp $
+
+ 02 Mar 2009; Patrick Lauer <patrick@gentoo.org>
+ +files/contest-fortify_sources.patch, contest-0.61.ebuild:
+ Fix for gcc 4.3.3 / fortify_sources. Adding ~amd64 keyword. Patch by
+ Magnus Granberg. Closes #260451
30 Dec 2008; Christoph Mende <angelos@gentoo.org> contest-0.61.ebuild:
QA: Use correct CC (bug #243514) and respect LDFLAGS
1.8 app-benchmarks/contest/contest-0.61.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?r1=1.7&r2=1.8
Index: contest-0.61.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- contest-0.61.ebuild 30 Dec 2008 17:26:47 -0000 1.7
+++ contest-0.61.ebuild 2 Mar 2009 00:20:32 -0000 1.8
@@ -1,8 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v 1.7 2008/12/30 17:26:47 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v 1.8 2009/03/02 00:20:32 patrick Exp $
-inherit toolchain-funcs
+inherit toolchain-funcs eutils
DESCRIPTION="Test system responsiveness to compare different kernels"
HOMEPAGE="http://members.optusnet.com.au/ckolivas/contest/"
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~ppc ~x86"
+KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=app-benchmarks/dbench-2.0"
@@ -19,6 +19,8 @@
unpack ${A}
cd "${S}"
+ epatch "${FILESDIR}/contest-fortify_sources.patch"
+
#Removing -g
sed -i "s:-g::" Makefile
#Adding our cflags
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-benchmarks/contest: ChangeLog contest-0.61.ebuild
@ 2009-03-08 20:51 Markus Meier (maekke)
0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2009-03-08 20:51 UTC (permalink / raw
To: gentoo-commits
maekke 09/03/08 20:51:47
Modified: ChangeLog contest-0.61.ebuild
Log:
amd64/x86 stable, bug #261722
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Revision Changes Path
1.10 app-benchmarks/contest/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?r1=1.9&r2=1.10
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog 2 Mar 2009 00:20:32 -0000 1.9
+++ ChangeLog 8 Mar 2009 20:51:47 -0000 1.10
@@ -1,6 +1,9 @@
# ChangeLog for app-benchmarks/contest
# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v 1.9 2009/03/02 00:20:32 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v 1.10 2009/03/08 20:51:47 maekke Exp $
+
+ 08 Mar 2009; Markus Meier <maekke@gentoo.org> contest-0.61.ebuild:
+ amd64/x86 stable, bug #261722
02 Mar 2009; Patrick Lauer <patrick@gentoo.org>
+files/contest-fortify_sources.patch, contest-0.61.ebuild:
1.9 app-benchmarks/contest/contest-0.61.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?r1=1.8&r2=1.9
Index: contest-0.61.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- contest-0.61.ebuild 2 Mar 2009 00:20:32 -0000 1.8
+++ contest-0.61.ebuild 8 Mar 2009 20:51:47 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v 1.8 2009/03/02 00:20:32 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v 1.9 2009/03/08 20:51:47 maekke Exp $
inherit toolchain-funcs eutils
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
IUSE=""
RDEPEND=">=app-benchmarks/dbench-2.0"
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-benchmarks/contest: ChangeLog contest-0.61.ebuild
@ 2009-03-19 16:57 Joseph Jezak (josejx)
0 siblings, 0 replies; 4+ messages in thread
From: Joseph Jezak (josejx) @ 2009-03-19 16:57 UTC (permalink / raw
To: gentoo-commits
josejx 09/03/19 16:57:54
Modified: ChangeLog contest-0.61.ebuild
Log:
Marked ppc stable for bug #261722.
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Revision Changes Path
1.11 app-benchmarks/contest/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?r1=1.10&r2=1.11
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog 8 Mar 2009 20:51:47 -0000 1.10
+++ ChangeLog 19 Mar 2009 16:57:54 -0000 1.11
@@ -1,6 +1,9 @@
# ChangeLog for app-benchmarks/contest
# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v 1.10 2009/03/08 20:51:47 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v 1.11 2009/03/19 16:57:54 josejx Exp $
+
+ 19 Mar 2009; Joseph Jezak <josejx@gentoo.org> contest-0.61.ebuild:
+ Marked ppc stable for bug #261722.
08 Mar 2009; Markus Meier <maekke@gentoo.org> contest-0.61.ebuild:
amd64/x86 stable, bug #261722
1.10 app-benchmarks/contest/contest-0.61.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?r1=1.9&r2=1.10
Index: contest-0.61.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- contest-0.61.ebuild 8 Mar 2009 20:51:47 -0000 1.9
+++ contest-0.61.ebuild 19 Mar 2009 16:57:54 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v 1.9 2009/03/08 20:51:47 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v 1.10 2009/03/19 16:57:54 josejx Exp $
inherit toolchain-funcs eutils
@@ -10,7 +10,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND=">=app-benchmarks/dbench-2.0"
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-03-19 16:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-30 17:26 [gentoo-commits] gentoo-x86 commit in app-benchmarks/contest: ChangeLog contest-0.61.ebuild Christoph Mende (angelos)
-- strict thread matches above, loose matches on Subject: below --
2009-03-02 0:20 Patrick Lauer (patrick)
2009-03-08 20:51 Markus Meier (maekke)
2009-03-19 16:57 Joseph Jezak (josejx)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox