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-r1.ebuild
@ 2010-05-17  0:29 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 3+ messages in thread
From: Robin H. Johnson (robbat2) @ 2010-05-17  0:29 UTC (permalink / raw
  To: gentoo-commits

robbat2     10/05/17 00:29:55

  Modified:             ChangeLog
  Added:                math-pari-2.01080604-r1.ebuild
  Log:
  Revbump with PARI_VER changed to allow 2.3.5 to be used. Passes testsuite.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -p -w -b -B -u -u -r1.61 -r1.62
--- ChangeLog	14 May 2010 16:03:37 -0000	1.61
+++ ChangeLog	17 May 2010 00:29:55 -0000	1.62
@@ -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.61 2010/05/14 16:03:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.62 2010/05/17 00:29:55 robbat2 Exp $
+
+*math-pari-2.01080604-r1 (17 May 2010)
+
+  17 May 2010; Robin H. Johnson <robbat2@gentoo.org>
+  +math-pari-2.01080604-r1.ebuild:
+  Revbump with PARI_VER changed to allow 2.3.5 to be used. Passes testsuite.
 
   14 May 2010; Jeroen Roovers <jer@gentoo.org> math-pari-2.01080604.ebuild:
   Stable for HPPA (bug #318669).



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

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

Index: math-pari-2.01080604-r1.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-r1.ebuild,v 1.1 2010/05/17 00:29:55 robbat2 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.5

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] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-perl/math-pari: ChangeLog math-pari-2.01080604-r1.ebuild
@ 2011-04-24 15:57 Fabian Groffen (grobian)
  0 siblings, 0 replies; 3+ messages in thread
From: Fabian Groffen (grobian) @ 2011-04-24 15:57 UTC (permalink / raw
  To: gentoo-commits

grobian     11/04/24 15:57:27

  Modified:             ChangeLog math-pari-2.01080604-r1.ebuild
  Log:
  Marked ~x86-solaris, bug #296509
  
  (Portage version: 2.2.01.18252-prefix/cvs/SunOS i386)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	22 Aug 2010 11:29:52 -0000	1.65
+++ ChangeLog	24 Apr 2011 15:57:27 -0000	1.66
@@ -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.65 2010/08/22 11:29:52 tove Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.66 2011/04/24 15:57:27 grobian Exp $
+
+  24 Apr 2011; Fabian Groffen <grobian@gentoo.org>
+  math-pari-2.01080604-r1.ebuild:
+  Marked ~x86-solaris, bug #296509
 
   22 Aug 2010; Torsten Veller <tove@gentoo.org>
   -files/math-pari-2.010702-hppa.patch:



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

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

Index: math-pari-2.01080604-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- math-pari-2.01080604-r1.ebuild	17 May 2010 00:29:55 -0000	1.1
+++ math-pari-2.01080604-r1.ebuild	24 Apr 2011 15:57:27 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 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-r1.ebuild,v 1.1 2010/05/17 00:29:55 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/math-pari-2.01080604-r1.ebuild,v 1.2 2011/04/24 15:57:27 grobian 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 ~x86-solaris"
 IUSE=""
 
 # Math::Pari requires that a copy of the pari source in a parallel






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

* [gentoo-commits] gentoo-x86 commit in dev-perl/math-pari: ChangeLog math-pari-2.01080604-r1.ebuild
@ 2011-07-29 10:58 Torsten Veller (tove)
  0 siblings, 0 replies; 3+ messages in thread
From: Torsten Veller (tove) @ 2011-07-29 10:58 UTC (permalink / raw
  To: gentoo-commits

tove        11/07/29 10:58:40

  Modified:             ChangeLog
  Removed:              math-pari-2.01080604-r1.ebuild
  Log:
  Cleanup
  
  (Portage version: 2.2.0_alpha47/cvs/Linux x86_64)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog	30 Apr 2011 07:31:07 -0000	1.67
+++ ChangeLog	29 Jul 2011 10:58:40 -0000	1.68
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/math-pari
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.67 2011/04/30 07:31:07 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.68 2011/07/29 10:58:40 tove Exp $
+
+  29 Jul 2011; Torsten Veller <tove@gentoo.org>
+  -math-pari-2.01080604-r1.ebuild:
+  Cleanup
 
 *math-pari-2.10.806.50 (30 Apr 2011)
 






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

end of thread, other threads:[~2011-07-29 10:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-24 15:57 [gentoo-commits] gentoo-x86 commit in dev-perl/math-pari: ChangeLog math-pari-2.01080604-r1.ebuild Fabian Groffen (grobian)
  -- strict thread matches above, loose matches on Subject: below --
2011-07-29 10:58 Torsten Veller (tove)
2010-05-17  0:29 Robin H. Johnson (robbat2)

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