public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-physics/clhep: ChangeLog clhep-2.0.4.5.ebuild
@ 2009-12-13 17:51 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 7+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2009-12-13 17:51 UTC (permalink / raw
  To: gentoo-commits

bicatali    09/12/13 17:51:06

  Modified:             ChangeLog
  Added:                clhep-2.0.4.5.ebuild
  Log:
  Version bump and cosmetic fix (bug #296661)
  (Portage version: 2.2_rc58/cvs/Linux x86_64)

Revision  Changes    Path
1.14                 sci-physics/clhep/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	7 Dec 2009 18:16:11 -0000	1.13
+++ ChangeLog	13 Dec 2009 17:51:06 -0000	1.14
@@ -1,6 +1,12 @@
 # ChangeLog for sci-physics/clhep
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.13 2009/12/07 18:16:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.14 2009/12/13 17:51:06 bicatali Exp $
+
+*clhep-2.0.4.5 (13 Dec 2009)
+
+  13 Dec 2009; Sébastien Fabbro <bicatali@gentoo.org>
+  +clhep-2.0.4.5.ebuild:
+  Version bump and cosmetic fix (bug #296661)
 
   07 Dec 2009; Jeroen Roovers <jer@gentoo.org> clhep-2.0.4.3.ebuild:
   Stable for HPPA (bug #294442).



1.1                  sci-physics/clhep/clhep-2.0.4.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.1&content-type=text/plain

Index: clhep-2.0.4.5.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.1 2009/12/13 17:51:06 bicatali Exp $

EAPI=2
inherit autotools

DESCRIPTION="High Energy Physics C++ library"
HOMEPAGE="http://www.cern.ch/clhep"
SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz"
LICENSE="public-domain"
SLOT="2"
KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"

IUSE="exceptions"
RDEPEND=""
DEPEND="${RDEPEND}"

S="${WORKDIR}/${PV}/CLHEP"

src_prepare() {
	for d in $(find . -name configure.in); do
		# respect user flags and fix some compilers stuff
		sed -i \
			-e 's:^g++):*g++):g' \
			-e 's:^icc):icc|icpc):g' \
			-e '/AM_CXXFLAGS=/s:-O ::g' \
			${d} || die
		# need to rebuild because original configurations
		# have buggy detection
	done
	eautoreconf
}

src_configure() {
	econf $(use_enable exceptions)
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc README ChangeLog || die
}






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

* [gentoo-commits] gentoo-x86 commit in sci-physics/clhep: ChangeLog clhep-2.0.4.5.ebuild
@ 2010-01-19 20:22 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 7+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2010-01-19 20:22 UTC (permalink / raw
  To: gentoo-commits

bicatali    10/01/19 20:22:38

  Modified:             ChangeLog clhep-2.0.4.5.ebuild
  Log:
  Added patch for tests and gcc 4.3, and a fix for random parallel build failures, thanks Xarthisius for his work , bug #301491
  (Portage version: 2.2_rc61/cvs/Linux x86_64)

Revision  Changes    Path
1.15                 sci-physics/clhep/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	13 Dec 2009 17:51:06 -0000	1.14
+++ ChangeLog	19 Jan 2010 20:22:38 -0000	1.15
@@ -1,6 +1,11 @@
 # ChangeLog for sci-physics/clhep
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.14 2009/12/13 17:51:06 bicatali Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.15 2010/01/19 20:22:38 bicatali Exp $
+
+  19 Jan 2010; Sébastien Fabbro <bicatali@gentoo.org> clhep-2.0.4.5.ebuild,
+  +files/clhep-2.0.4.5-gcc4.3.patch:
+  Added patch for tests and gcc 4.3, and a fix for random parallel build
+  failures, thanks Xarthisius for his work , bug #301491
 
 *clhep-2.0.4.5 (13 Dec 2009)
 



1.2                  sci-physics/clhep/clhep-2.0.4.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?r1=1.1&r2=1.2

Index: clhep-2.0.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- clhep-2.0.4.5.ebuild	13 Dec 2009 17:51:06 -0000	1.1
+++ clhep-2.0.4.5.ebuild	19 Jan 2010 20:22:38 -0000	1.2
@@ -1,9 +1,9 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.1 2009/12/13 17:51:06 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.2 2010/01/19 20:22:38 bicatali Exp $
 
 EAPI=2
-inherit autotools
+inherit autotools eutils
 
 DESCRIPTION="High Energy Physics C++ library"
 HOMEPAGE="http://www.cern.ch/clhep"
@@ -29,6 +29,14 @@
 		# need to rebuild because original configurations
 		# have buggy detection
 	done
+	for d in $(find . -name Makefile.am | xargs grep -l ": %\.cc"); do
+		sed -i \
+			-e 's|: %\.cc|: %\.cc \$(shareddir)|' \
+			-e 's|all-local: \$(shareddir)|all-local: |' \
+			${d} || die
+		# fixing parallel build
+	done
+	epatch "${FILESDIR}/${P}-gcc4.3.patch"
 	eautoreconf
 }
 






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

* [gentoo-commits] gentoo-x86 commit in sci-physics/clhep: ChangeLog clhep-2.0.4.5.ebuild
@ 2010-01-20 17:55 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-01-20 17:55 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/01/20 17:55:38

  Modified:             ChangeLog clhep-2.0.4.5.ebuild
  Log:
  Stable on amd64 wrt bug #301491
  (Portage version: 2.2_rc61/cvs/Linux x86_64)

Revision  Changes    Path
1.16                 sci-physics/clhep/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	19 Jan 2010 20:22:38 -0000	1.15
+++ ChangeLog	20 Jan 2010 17:55:37 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for sci-physics/clhep
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.15 2010/01/19 20:22:38 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.16 2010/01/20 17:55:37 hwoarang Exp $
+
+  20 Jan 2010; <hwoarang@gentoo.org> clhep-2.0.4.5.ebuild:
+  Stable on amd64 wrt bug #301491
 
   19 Jan 2010; Sébastien Fabbro <bicatali@gentoo.org> clhep-2.0.4.5.ebuild,
   +files/clhep-2.0.4.5-gcc4.3.patch:



1.3                  sci-physics/clhep/clhep-2.0.4.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?r1=1.2&r2=1.3

Index: clhep-2.0.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- clhep-2.0.4.5.ebuild	19 Jan 2010 20:22:38 -0000	1.2
+++ clhep-2.0.4.5.ebuild	20 Jan 2010 17:55:37 -0000	1.3
@@ -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/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.2 2010/01/19 20:22:38 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.3 2010/01/20 17:55:37 hwoarang Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -10,7 +10,7 @@
 SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz"
 LICENSE="public-domain"
 SLOT="2"
-KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~sparc ~x86"
 
 IUSE="exceptions"
 RDEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in sci-physics/clhep: ChangeLog clhep-2.0.4.5.ebuild
@ 2010-01-21 14:07 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 7+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-01-21 14:07 UTC (permalink / raw
  To: gentoo-commits

fauli       10/01/21 14:07:48

  Modified:             ChangeLog clhep-2.0.4.5.ebuild
  Log:
  stable x86, bug 301491
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.17                 sci-physics/clhep/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	20 Jan 2010 17:55:37 -0000	1.16
+++ ChangeLog	21 Jan 2010 14:07:48 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for sci-physics/clhep
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.16 2010/01/20 17:55:37 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.17 2010/01/21 14:07:48 fauli Exp $
+
+  21 Jan 2010; Christian Faulhammer <fauli@gentoo.org> clhep-2.0.4.5.ebuild:
+  stable x86, bug 301491
 
   20 Jan 2010; <hwoarang@gentoo.org> clhep-2.0.4.5.ebuild:
   Stable on amd64 wrt bug #301491



1.4                  sci-physics/clhep/clhep-2.0.4.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?r1=1.3&r2=1.4

Index: clhep-2.0.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- clhep-2.0.4.5.ebuild	20 Jan 2010 17:55:37 -0000	1.3
+++ clhep-2.0.4.5.ebuild	21 Jan 2010 14:07:48 -0000	1.4
@@ -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/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.3 2010/01/20 17:55:37 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.4 2010/01/21 14:07:48 fauli Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -10,7 +10,7 @@
 SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz"
 LICENSE="public-domain"
 SLOT="2"
-KEYWORDS="amd64 ~hppa ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~sparc x86"
 
 IUSE="exceptions"
 RDEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in sci-physics/clhep: ChangeLog clhep-2.0.4.5.ebuild
@ 2010-01-22  3:51 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2010-01-22  3:51 UTC (permalink / raw
  To: gentoo-commits

jer         10/01/22 03:51:17

  Modified:             ChangeLog clhep-2.0.4.5.ebuild
  Log:
  Stable for HPPA (bug #301491).
  (Portage version: 2.2_rc61/cvs/Linux i686)

Revision  Changes    Path
1.18                 sci-physics/clhep/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	21 Jan 2010 14:07:48 -0000	1.17
+++ ChangeLog	22 Jan 2010 03:51:17 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for sci-physics/clhep
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.17 2010/01/21 14:07:48 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.18 2010/01/22 03:51:17 jer Exp $
+
+  22 Jan 2010; Jeroen Roovers <jer@gentoo.org> clhep-2.0.4.5.ebuild:
+  Stable for HPPA (bug #301491).
 
   21 Jan 2010; Christian Faulhammer <fauli@gentoo.org> clhep-2.0.4.5.ebuild:
   stable x86, bug 301491



1.5                  sci-physics/clhep/clhep-2.0.4.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?r1=1.4&r2=1.5

Index: clhep-2.0.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- clhep-2.0.4.5.ebuild	21 Jan 2010 14:07:48 -0000	1.4
+++ clhep-2.0.4.5.ebuild	22 Jan 2010 03:51:17 -0000	1.5
@@ -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/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.4 2010/01/21 14:07:48 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.5 2010/01/22 03:51:17 jer Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -10,7 +10,7 @@
 SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz"
 LICENSE="public-domain"
 SLOT="2"
-KEYWORDS="amd64 ~hppa ~ppc ~sparc x86"
+KEYWORDS="amd64 hppa ~ppc ~sparc x86"
 
 IUSE="exceptions"
 RDEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in sci-physics/clhep: ChangeLog clhep-2.0.4.5.ebuild
@ 2010-01-23 15:55 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2010-01-23 15:55 UTC (permalink / raw
  To: gentoo-commits

ranger      10/01/23 15:55:42

  Modified:             ChangeLog clhep-2.0.4.5.ebuild
  Log:
  stable ppc, bug 301491
  (Portage version: 2.1.6.13/cvs/Linux ppc64)

Revision  Changes    Path
1.19                 sci-physics/clhep/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	22 Jan 2010 03:51:17 -0000	1.18
+++ ChangeLog	23 Jan 2010 15:55:42 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for sci-physics/clhep
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.18 2010/01/22 03:51:17 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.19 2010/01/23 15:55:42 ranger Exp $
+
+  23 Jan 2010; Brent Baude <ranger@gentoo.org> clhep-2.0.4.5.ebuild:
+  stable ppc, bug 301491
 
   22 Jan 2010; Jeroen Roovers <jer@gentoo.org> clhep-2.0.4.5.ebuild:
   Stable for HPPA (bug #301491).



1.6                  sci-physics/clhep/clhep-2.0.4.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?r1=1.5&r2=1.6

Index: clhep-2.0.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- clhep-2.0.4.5.ebuild	22 Jan 2010 03:51:17 -0000	1.5
+++ clhep-2.0.4.5.ebuild	23 Jan 2010 15:55:42 -0000	1.6
@@ -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/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.5 2010/01/22 03:51:17 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.6 2010/01/23 15:55:42 ranger Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -10,7 +10,7 @@
 SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz"
 LICENSE="public-domain"
 SLOT="2"
-KEYWORDS="amd64 hppa ~ppc ~sparc x86"
+KEYWORDS="amd64 hppa ppc ~sparc x86"
 
 IUSE="exceptions"
 RDEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in sci-physics/clhep: ChangeLog clhep-2.0.4.5.ebuild
@ 2010-01-31 15:37 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2010-01-31 15:37 UTC (permalink / raw
  To: gentoo-commits

armin76     10/01/31 15:37:48

  Modified:             ChangeLog clhep-2.0.4.5.ebuild
  Log:
  sparc stable wrt #301491
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.20                 sci-physics/clhep/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	23 Jan 2010 15:55:42 -0000	1.19
+++ ChangeLog	31 Jan 2010 15:37:47 -0000	1.20
@@ -1,6 +1,9 @@
 # ChangeLog for sci-physics/clhep
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.19 2010/01/23 15:55:42 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.20 2010/01/31 15:37:47 armin76 Exp $
+
+  31 Jan 2010; Raúl Porcel <armin76@gentoo.org> clhep-2.0.4.5.ebuild:
+  sparc stable wrt #301491
 
   23 Jan 2010; Brent Baude <ranger@gentoo.org> clhep-2.0.4.5.ebuild:
   stable ppc, bug 301491



1.7                  sci-physics/clhep/clhep-2.0.4.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild?r1=1.6&r2=1.7

Index: clhep-2.0.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- clhep-2.0.4.5.ebuild	23 Jan 2010 15:55:42 -0000	1.6
+++ clhep-2.0.4.5.ebuild	31 Jan 2010 15:37:47 -0000	1.7
@@ -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/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.6 2010/01/23 15:55:42 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.5.ebuild,v 1.7 2010/01/31 15:37:47 armin76 Exp $
 
 EAPI=2
 inherit autotools eutils
@@ -10,7 +10,7 @@
 SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz"
 LICENSE="public-domain"
 SLOT="2"
-KEYWORDS="amd64 hppa ppc ~sparc x86"
+KEYWORDS="amd64 hppa ppc sparc x86"
 
 IUSE="exceptions"
 RDEPEND=""






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

end of thread, other threads:[~2010-01-31 15:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-21 14:07 [gentoo-commits] gentoo-x86 commit in sci-physics/clhep: ChangeLog clhep-2.0.4.5.ebuild Christian Faulhammer (fauli)
  -- strict thread matches above, loose matches on Subject: below --
2010-01-31 15:37 Raul Porcel (armin76)
2010-01-23 15:55 Brent Baude (ranger)
2010-01-22  3:51 Jeroen Roovers (jer)
2010-01-20 17:55 Markos Chandras (hwoarang)
2010-01-19 20:22 Sebastien Fabbro (bicatali)
2009-12-13 17:51 Sebastien Fabbro (bicatali)

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