public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-physics/pythia: ChangeLog pythia-8.1.35.ebuild
@ 2010-03-23  3:35 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 7+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2010-03-23  3:35 UTC (permalink / raw
  To: gentoo-commits

bicatali    10/03/23 03:35:59

  Modified:             ChangeLog
  Added:                pythia-8.1.35.ebuild
  Log:
  Version bump
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.18                 sci-physics/pythia/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	8 Jan 2010 04:41:08 -0000	1.17
+++ ChangeLog	23 Mar 2010 03:35:58 -0000	1.18
@@ -1,6 +1,12 @@
 # ChangeLog for sci-physics/pythia
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.17 2010/01/08 04:41:08 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.18 2010/03/23 03:35:58 bicatali Exp $
+
+*pythia-8.1.35 (23 Mar 2010)
+
+  23 Mar 2010; Sébastien Fabbro <bicatali@gentoo.org>
+  +pythia-8.1.35.ebuild:
+  Version bump
 
   08 Jan 2010; Sébastien Fabbro <bicatali@gentoo.org> pythia-8.1.30.ebuild:
   Reduce the number of tests, closing bug #297512



1.1                  sci-physics/pythia/pythia-8.1.35.ebuild

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

Index: pythia-8.1.35.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v 1.1 2010/03/23 03:35:58 bicatali Exp $

EAPI=2

inherit eutils versionator

MV=$(get_major_version)
MY_P=${PN}$(replace_all_version_separators "" ${PV})

DESCRIPTION="Lund Monte Carlo high-energy physics event generator"
HOMEPAGE="http://home.thep.lu.se/~torbjorn/Pythia.html"
SRC_URI="http://home.thep.lu.se/~torbjorn/${PN}${MV}/${MY_P}.tgz"

LICENSE="GPL-2"
SLOT="8"
KEYWORDS="~amd64 ~hppa ~sparc ~x86"
IUSE="doc examples +hepmc"

DEPEND="hepmc? ( sci-physics/hepmc )"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${MY_P}"

src_configure() {
	use hepmc && export HEPMCVERSION=2 HEPMCLOCATION=/usr
	# homemade configure script creates a useless config.mk
	rm -f config.mk
	cat > config.mk <<-EOF
		SHAREDLIBS = yes
		LDFLAGSSHARED = -shared ${LDFLAGS}
		LDFLAGLIBNAME = -Wl,-soname
		SHAREDSUFFIX = so
	EOF
}

src_test() {
	cd "${S}"/examples
	# use emake for parallel instead of long runmains
	emake \
		$(ls main0{1..9}*.cc | sed -e 's/.cc//') \
		|| die "emake tests failed"
	for i in main0{1..9}*.exe; do
		./${i} > ${i}.out || die "test ${i} failed"
	done
	if use hepmc; then
		emake main31 main32 || die "emake tests for hepmc failed"
		./main31.exe > main31.exe.out || die
		./main32.exe main32.cmnd hepmcout32.dat > main32.exe.out || die
	fi
	emake clean && rm -f main*out
}

src_install() {
	dolib.so lib/*so || die "shared lib install failed"
	dolib.a lib/archive/* || die "static lib install failed"

	insinto /usr/include/${PN}
	doins include/* || die "headers install failed"

	# xmldoc needed by root
	insinto /usr/share/${PN}
	doins -r xmldoc || die "xmldoc install failed"
	echo PYTHIA8DATA=/usr/share/${PN}/xmldoc >> 99pythia8
	doenvd 99pythia8

	insinto /usr/share/doc/${PF}
	dodoc GUIDELINES AUTHORS README
	if use doc; then
		doins worksheet.pdf || die "doc install failed"
		mv htmldoc html
		doins -r html || die "html doc install failed"
	fi
	if use examples; then
		doins -r examples || die "examples install failed"
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in sci-physics/pythia: ChangeLog pythia-8.1.35.ebuild
@ 2010-05-13 14:05 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2010-05-13 14:05 UTC (permalink / raw
  To: gentoo-commits

jer         10/05/13 14:05:30

  Modified:             ChangeLog pythia-8.1.35.ebuild
  Log:
  Stable for HPPA (bug #318467).
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.20                 sci-physics/pythia/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	13 May 2010 06:28:18 -0000	1.19
+++ ChangeLog	13 May 2010 14:05:30 -0000	1.20
@@ -1,6 +1,9 @@
 # ChangeLog for sci-physics/pythia
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.19 2010/05/13 06:28:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.20 2010/05/13 14:05:30 jer Exp $
+
+  13 May 2010; Jeroen Roovers <jer@gentoo.org> pythia-8.1.35.ebuild:
+  Stable for HPPA (bug #318467).
 
   13 May 2010; Jeroen Roovers <jer@gentoo.org> pythia-6.4.22.ebuild:
   Stable for HPPA (bug #318465).



1.2                  sci-physics/pythia/pythia-8.1.35.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?r1=1.1&r2=1.2

Index: pythia-8.1.35.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pythia-8.1.35.ebuild	23 Mar 2010 03:35:58 -0000	1.1
+++ pythia-8.1.35.ebuild	13 May 2010 14:05:30 -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/sci-physics/pythia/pythia-8.1.35.ebuild,v 1.1 2010/03/23 03:35:58 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v 1.2 2010/05/13 14:05:30 jer Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="8"
-KEYWORDS="~amd64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 hppa ~sparc ~x86"
 IUSE="doc examples +hepmc"
 
 DEPEND="hepmc? ( sci-physics/hepmc )"






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

* [gentoo-commits] gentoo-x86 commit in sci-physics/pythia: ChangeLog pythia-8.1.35.ebuild
@ 2010-06-03 12:51 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-06-03 12:51 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/06/03 12:51:55

  Modified:             ChangeLog pythia-8.1.35.ebuild
  Log:
  Stable on amd64 wrt bug #318467
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.24                 sci-physics/pythia/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	25 May 2010 21:23:22 -0000	1.23
+++ ChangeLog	3 Jun 2010 12:51:55 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for sci-physics/pythia
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.23 2010/05/25 21:23:22 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.24 2010/06/03 12:51:55 hwoarang Exp $
+
+  03 Jun 2010; Markos Chandras <hwoarang@gentoo.org> pythia-8.1.35.ebuild:
+  Stable on amd64 wrt bug #318467
 
   25 May 2010; Pacho Ramos <pacho@gentoo.org> pythia-6.4.22.ebuild:
   stable amd64, bug 318465



1.3                  sci-physics/pythia/pythia-8.1.35.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?r1=1.2&r2=1.3

Index: pythia-8.1.35.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pythia-8.1.35.ebuild	13 May 2010 14:05:30 -0000	1.2
+++ pythia-8.1.35.ebuild	3 Jun 2010 12:51:55 -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/pythia/pythia-8.1.35.ebuild,v 1.2 2010/05/13 14:05:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v 1.3 2010/06/03 12:51:55 hwoarang Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="8"
-KEYWORDS="~amd64 hppa ~sparc ~x86"
+KEYWORDS="amd64 hppa ~sparc ~x86"
 IUSE="doc examples +hepmc"
 
 DEPEND="hepmc? ( sci-physics/hepmc )"






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

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

fauli       10/07/07 12:30:07

  Modified:             ChangeLog pythia-8.1.35.ebuild
  Log:
  stable x86, bug 318467
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.25                 sci-physics/pythia/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	3 Jun 2010 12:51:55 -0000	1.24
+++ ChangeLog	7 Jul 2010 12:30:07 -0000	1.25
@@ -1,6 +1,9 @@
 # ChangeLog for sci-physics/pythia
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.24 2010/06/03 12:51:55 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.25 2010/07/07 12:30:07 fauli Exp $
+
+  07 Jul 2010; Christian Faulhammer <fauli@gentoo.org> pythia-8.1.35.ebuild:
+  stable x86, bug 318467
 
   03 Jun 2010; Markos Chandras <hwoarang@gentoo.org> pythia-8.1.35.ebuild:
   Stable on amd64 wrt bug #318467



1.4                  sci-physics/pythia/pythia-8.1.35.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?r1=1.3&r2=1.4

Index: pythia-8.1.35.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pythia-8.1.35.ebuild	3 Jun 2010 12:51:55 -0000	1.3
+++ pythia-8.1.35.ebuild	7 Jul 2010 12:30:07 -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/pythia/pythia-8.1.35.ebuild,v 1.3 2010/06/03 12:51:55 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v 1.4 2010/07/07 12:30:07 fauli Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="8"
-KEYWORDS="amd64 hppa ~sparc ~x86"
+KEYWORDS="amd64 hppa ~sparc x86"
 IUSE="doc examples +hepmc"
 
 DEPEND="hepmc? ( sci-physics/hepmc )"






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

* [gentoo-commits] gentoo-x86 commit in sci-physics/pythia: ChangeLog pythia-8.1.35.ebuild
@ 2010-07-17 17:38 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2010-07-17 17:38 UTC (permalink / raw
  To: gentoo-commits

armin76     10/07/17 17:38:21

  Modified:             ChangeLog pythia-8.1.35.ebuild
  Log:
  sparc stable wrt #318467
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.28                 sci-physics/pythia/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	13 Jul 2010 17:01:28 -0000	1.27
+++ ChangeLog	17 Jul 2010 17:38:21 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for sci-physics/pythia
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.27 2010/07/13 17:01:28 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.28 2010/07/17 17:38:21 armin76 Exp $
+
+  17 Jul 2010; Raúl Porcel <armin76@gentoo.org> pythia-8.1.35.ebuild:
+  sparc stable wrt #318467
 
 *pythia-6.4.23 (13 Jul 2010)
 



1.5                  sci-physics/pythia/pythia-8.1.35.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?r1=1.4&r2=1.5

Index: pythia-8.1.35.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pythia-8.1.35.ebuild	7 Jul 2010 12:30:07 -0000	1.4
+++ pythia-8.1.35.ebuild	17 Jul 2010 17:38:21 -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/pythia/pythia-8.1.35.ebuild,v 1.4 2010/07/07 12:30:07 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v 1.5 2010/07/17 17:38:21 armin76 Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="8"
-KEYWORDS="amd64 hppa ~sparc x86"
+KEYWORDS="amd64 hppa sparc x86"
 IUSE="doc examples +hepmc"
 
 DEPEND="hepmc? ( sci-physics/hepmc )"






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

* [gentoo-commits] gentoo-x86 commit in sci-physics/pythia: ChangeLog pythia-8.1.35.ebuild
@ 2010-07-17 17:39 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2010-07-17 17:39 UTC (permalink / raw
  To: gentoo-commits

armin76     10/07/17 17:39:46

  Modified:             ChangeLog pythia-8.1.35.ebuild
  Log:
  Revert
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.29                 sci-physics/pythia/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	17 Jul 2010 17:38:21 -0000	1.28
+++ ChangeLog	17 Jul 2010 17:39:46 -0000	1.29
@@ -1,9 +1,6 @@
 # ChangeLog for sci-physics/pythia
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.28 2010/07/17 17:38:21 armin76 Exp $
-
-  17 Jul 2010; Raúl Porcel <armin76@gentoo.org> pythia-8.1.35.ebuild:
-  sparc stable wrt #318467
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.29 2010/07/17 17:39:46 armin76 Exp $
 
 *pythia-6.4.23 (13 Jul 2010)
 



1.6                  sci-physics/pythia/pythia-8.1.35.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?r1=1.5&r2=1.6

Index: pythia-8.1.35.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pythia-8.1.35.ebuild	17 Jul 2010 17:38:21 -0000	1.5
+++ pythia-8.1.35.ebuild	17 Jul 2010 17:39:46 -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/pythia/pythia-8.1.35.ebuild,v 1.5 2010/07/17 17:38:21 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v 1.6 2010/07/17 17:39:46 armin76 Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="8"
-KEYWORDS="amd64 hppa sparc x86"
+KEYWORDS="amd64 hppa ~sparc x86"
 IUSE="doc examples +hepmc"
 
 DEPEND="hepmc? ( sci-physics/hepmc )"






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

* [gentoo-commits] gentoo-x86 commit in sci-physics/pythia: ChangeLog pythia-8.1.35.ebuild
@ 2010-07-18 17:48 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2010-07-18 17:48 UTC (permalink / raw
  To: gentoo-commits

armin76     10/07/18 17:48:46

  Modified:             ChangeLog pythia-8.1.35.ebuild
  Log:
  sparc stable wrt #318467
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.30                 sci-physics/pythia/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	17 Jul 2010 17:39:46 -0000	1.29
+++ ChangeLog	18 Jul 2010 17:48:46 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for sci-physics/pythia
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.29 2010/07/17 17:39:46 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/ChangeLog,v 1.30 2010/07/18 17:48:46 armin76 Exp $
+
+  18 Jul 2010; Raúl Porcel <armin76@gentoo.org> pythia-8.1.35.ebuild:
+  sparc stable wrt #318467
 
 *pythia-6.4.23 (13 Jul 2010)
 



1.7                  sci-physics/pythia/pythia-8.1.35.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild?r1=1.6&r2=1.7

Index: pythia-8.1.35.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pythia-8.1.35.ebuild	17 Jul 2010 17:39:46 -0000	1.6
+++ pythia-8.1.35.ebuild	18 Jul 2010 17:48:46 -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/pythia/pythia-8.1.35.ebuild,v 1.6 2010/07/17 17:39:46 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/pythia/pythia-8.1.35.ebuild,v 1.7 2010/07/18 17:48:46 armin76 Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="8"
-KEYWORDS="amd64 hppa ~sparc x86"
+KEYWORDS="amd64 hppa sparc x86"
 IUSE="doc examples +hepmc"
 
 DEPEND="hepmc? ( sci-physics/hepmc )"






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

end of thread, other threads:[~2010-07-18 17:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-18 17:48 [gentoo-commits] gentoo-x86 commit in sci-physics/pythia: ChangeLog pythia-8.1.35.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2010-07-17 17:39 Raul Porcel (armin76)
2010-07-17 17:38 Raul Porcel (armin76)
2010-07-07 12:30 Christian Faulhammer (fauli)
2010-06-03 12:51 Markos Chandras (hwoarang)
2010-05-13 14:05 Jeroen Roovers (jer)
2010-03-23  3:35 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