public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-perl/math-pari: ChangeLog math-pari-2.01080604.ebuild
@ 2010-03-05  7:56 Torsten Veller (tove)
  0 siblings, 0 replies; 5+ messages in thread
From: Torsten Veller (tove) @ 2010-03-05  7:56 UTC (permalink / raw
  To: gentoo-commits

tove        10/03/05 07:56:03

  Modified:             ChangeLog
  Added:                math-pari-2.01080604.ebuild
  Log:
  Version bump
  (Portage version: 2.2_rc64/cvs/Linux x86_64)

Revision  Changes    Path
1.56                 dev-perl/math-pari/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/ChangeLog?r1=1.55&r2=1.56

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	22 Feb 2010 09:28:05 -0000	1.55
+++ ChangeLog	5 Mar 2010 07:56:00 -0000	1.56
@@ -1,6 +1,12 @@
 # ChangeLog for dev-perl/math-pari
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.55 2010/02/22 09:28:05 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.56 2010/03/05 07:56:00 tove Exp $
+
+*math-pari-2.01080604 (05 Mar 2010)
+
+  05 Mar 2010; Torsten Veller <tove@gentoo.org>
+  +math-pari-2.01080604.ebuild:
+  Version bump
 
   22 Feb 2010; Torsten Veller <tove@gentoo.org> -math-pari-2.010702.ebuild,
   -math-pari-2.010709.ebuild, -math-pari-2.01080602.ebuild:



1.1                  dev-perl/math-pari/math-pari-2.01080604.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?rev=1.1&content-type=text/plain

Index: math-pari-2.01080604.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild,v 1.1 2010/03/05 07:56:00 tove Exp $

EAPI=2

MODULE_AUTHOR=ILYAZ
MODULE_SECTION=modules
MY_PN=Math-Pari
MY_P=${MY_PN}-${PV}
inherit perl-module

PARI_VER=2.3.4

DESCRIPTION="Perl interface to PARI"
SRC_URI="${SRC_URI}
	http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-${PARI_VER}.tar.gz"

LICENSE="|| ( Artistic GPL-2 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""

# Math::Pari requires that a copy of the pari source in a parallel
# directory to where you build it. It does not need to compile it, but
# it does need to be the same version as is installed, hence the hard
# DEPEND below
RDEPEND="~sci-mathematics/pari-${PARI_VER}"
DEPEND="${RDEPEND}"

S=${WORKDIR}/${MY_P}
S_PARI=${WORKDIR}/pari-${PARI_VER}
SRC_TEST=do

src_prepare() {
	# On 64-bit hardware, these files are needed in both the 64/ and 32/
	# directories for the testsuite to pass.
	cd "${S_PARI}"/src/test/
	for t in analyz compat ellglobalred elliptic galois graph intnum kernel \
		linear nfields number objets ploth polyser program qfbsolve rfrac \
		round4 stark sumiter trans ; do
		i="in/${t}"
		o32="32/${t}"
		o64="64/${t}"
		[ -f "$i" -a ! -f "$o32" ] && cp -al "$i" "$o32"
		[ -f "$i" -a ! -f "$o64" ] && cp -al "$i" "$o64"
	done
	perl-module_src_prepare
}

src_configure() {
	# Unfortunately the assembly routines math-pari has for SPARC do not appear
	# to be working at current.  Perl cannot test math-pari or anything that
	# pulls in the math-pari module as DynaLoader cannot load the resulting
	# .so files math-pari generates.  As such, we have to use the generic
	# non-machine specific assembly methods here.
	use sparc && myconf="${myconf} machine=none"

	perl-module_src_configure
}






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

* [gentoo-commits] gentoo-x86 commit in dev-perl/math-pari: ChangeLog math-pari-2.01080604.ebuild
@ 2010-04-17  8:09 Torsten Veller (tove)
  0 siblings, 0 replies; 5+ messages in thread
From: Torsten Veller (tove) @ 2010-04-17  8:09 UTC (permalink / raw
  To: gentoo-commits

tove        10/04/17 08:09:08

  Modified:             ChangeLog math-pari-2.01080604.ebuild
  Log:
  Stable on amd64, x86 (#314467)
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.57                 dev-perl/math-pari/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/ChangeLog?rev=1.57&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/ChangeLog?rev=1.57&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/ChangeLog?r1=1.56&r2=1.57

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	5 Mar 2010 07:56:00 -0000	1.56
+++ ChangeLog	17 Apr 2010 08:09:08 -0000	1.57
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/math-pari
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.56 2010/03/05 07:56:00 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.57 2010/04/17 08:09:08 tove Exp $
+
+  17 Apr 2010; Torsten Veller <tove@gentoo.org> math-pari-2.01080604.ebuild:
+  Stable on amd64, x86 (#314467)
 
 *math-pari-2.01080604 (05 Mar 2010)
 



1.2                  dev-perl/math-pari/math-pari-2.01080604.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?r1=1.1&r2=1.2

Index: math-pari-2.01080604.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- math-pari-2.01080604.ebuild	5 Mar 2010 07:56:00 -0000	1.1
+++ math-pari-2.01080604.ebuild	17 Apr 2010 08:09:08 -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/dev-perl/math-pari/math-pari-2.01080604.ebuild,v 1.1 2010/03/05 07:56:00 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild,v 1.2 2010/04/17 08:09:08 tove Exp $
 
 EAPI=2
 
@@ -18,7 +18,7 @@
 
 LICENSE="|| ( Artistic GPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 # Math::Pari requires that a copy of the pari source in a parallel






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

* [gentoo-commits] gentoo-x86 commit in dev-perl/math-pari: ChangeLog math-pari-2.01080604.ebuild
@ 2010-05-08 18:14 Raul Porcel (armin76)
  0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2010-05-08 18:14 UTC (permalink / raw
  To: gentoo-commits

armin76     10/05/08 18:14:54

  Modified:             ChangeLog math-pari-2.01080604.ebuild
  Log:
  alpha/sparc stable wrt #314467
  (Portage version: 2.1.7.17/cvs/Linux ia64, RepoMan options: --force)

Revision  Changes    Path
1.60                 dev-perl/math-pari/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/ChangeLog?r1=1.59&r2=1.60

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	5 May 2010 18:52:30 -0000	1.59
+++ ChangeLog	8 May 2010 18:14:54 -0000	1.60
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/math-pari
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.59 2010/05/05 18:52:30 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.60 2010/05/08 18:14:54 armin76 Exp $
+
+  08 May 2010; Raúl Porcel <armin76@gentoo.org>
+  math-pari-2.01080604.ebuild:
+  alpha/sparc stable wrt #314467
 
   05 May 2010; Mark Loeser <halcy0n@gentoo.org> +math-pari-2.010801.ebuild:
   Revert removal of math-pari version



1.3                  dev-perl/math-pari/math-pari-2.01080604.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?r1=1.2&r2=1.3

Index: math-pari-2.01080604.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- math-pari-2.01080604.ebuild	17 Apr 2010 08:09:08 -0000	1.2
+++ math-pari-2.01080604.ebuild	8 May 2010 18:14:54 -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/dev-perl/math-pari/math-pari-2.01080604.ebuild,v 1.2 2010/04/17 08:09:08 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild,v 1.3 2010/05/08 18:14:54 armin76 Exp $
 
 EAPI=2
 
@@ -18,7 +18,7 @@
 
 LICENSE="|| ( Artistic GPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~hppa ~mips ~ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 # Math::Pari requires that a copy of the pari source in a parallel






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

* [gentoo-commits] gentoo-x86 commit in dev-perl/math-pari: ChangeLog math-pari-2.01080604.ebuild
@ 2010-05-14 16:03 Jeroen Roovers (jer)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeroen Roovers (jer) @ 2010-05-14 16:03 UTC (permalink / raw
  To: gentoo-commits

jer         10/05/14 16:03:37

  Modified:             ChangeLog math-pari-2.01080604.ebuild
  Log:
  Stable for HPPA (bug #318669).
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.61                 dev-perl/math-pari/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	8 May 2010 18:14:54 -0000	1.60
+++ ChangeLog	14 May 2010 16:03:37 -0000	1.61
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/math-pari
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.60 2010/05/08 18:14:54 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.61 2010/05/14 16:03:37 jer Exp $
+
+  14 May 2010; Jeroen Roovers <jer@gentoo.org> math-pari-2.01080604.ebuild:
+  Stable for HPPA (bug #318669).
 
   08 May 2010; Raúl Porcel <armin76@gentoo.org>
   math-pari-2.01080604.ebuild:



1.4                  dev-perl/math-pari/math-pari-2.01080604.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?r1=1.3&r2=1.4

Index: math-pari-2.01080604.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- math-pari-2.01080604.ebuild	8 May 2010 18:14:54 -0000	1.3
+++ math-pari-2.01080604.ebuild	14 May 2010 16:03:37 -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/dev-perl/math-pari/math-pari-2.01080604.ebuild,v 1.3 2010/05/08 18:14:54 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild,v 1.4 2010/05/14 16:03:37 jer Exp $
 
 EAPI=2
 
@@ -18,7 +18,7 @@
 
 LICENSE="|| ( Artistic GPL-2 )"
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ~mips ~ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 hppa ~mips ~ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 # Math::Pari requires that a copy of the pari source in a parallel






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

* [gentoo-commits] gentoo-x86 commit in dev-perl/math-pari: ChangeLog math-pari-2.01080604.ebuild
@ 2010-06-26 17:10 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 5+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2010-06-26 17:10 UTC (permalink / raw
  To: gentoo-commits

nixnut      10/06/26 17:10:47

  Modified:             ChangeLog math-pari-2.01080604.ebuild
  Log:
  ppc stable #318669
  (Portage version: 2.1.8.3/cvs/Linux ppc)

Revision  Changes    Path
1.63                 dev-perl/math-pari/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	17 May 2010 00:29:55 -0000	1.62
+++ ChangeLog	26 Jun 2010 17:10:47 -0000	1.63
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/math-pari
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.62 2010/05/17 00:29:55 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.63 2010/06/26 17:10:47 nixnut Exp $
+
+  26 Jun 2010; <nixnut@gentoo.org> math-pari-2.01080604.ebuild:
+  ppc stable #318669
 
 *math-pari-2.01080604-r1 (17 May 2010)
 



1.5                  dev-perl/math-pari/math-pari-2.01080604.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild?r1=1.4&r2=1.5

Index: math-pari-2.01080604.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- math-pari-2.01080604.ebuild	14 May 2010 16:03:37 -0000	1.4
+++ math-pari-2.01080604.ebuild	26 Jun 2010 17:10:47 -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/dev-perl/math-pari/math-pari-2.01080604.ebuild,v 1.4 2010/05/14 16:03:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604.ebuild,v 1.5 2010/06/26 17:10:47 nixnut Exp $
 
 EAPI=2
 
@@ -18,7 +18,7 @@
 
 LICENSE="|| ( Artistic GPL-2 )"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ~mips ~ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE=""
 
 # Math::Pari requires that a copy of the pari source in a parallel






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

end of thread, other threads:[~2010-06-26 17:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-08 18:14 [gentoo-commits] gentoo-x86 commit in dev-perl/math-pari: ChangeLog math-pari-2.01080604.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2010-06-26 17:10 Gysbert Wassenaar (nixnut)
2010-05-14 16:03 Jeroen Roovers (jer)
2010-04-17  8:09 Torsten Veller (tove)
2010-03-05  7:56 Torsten Veller (tove)

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