axs 14/08/22 15:44:03 Modified: ChangeLog Added: math-pari-2.10.806.50-r1.ebuild Removed: math-pari-2.10.806.50.ebuild Log: bumped EAPI to 5; committed directly to stable as no other changes present and revbump helps stable systems to keep from dieing on perl-5.18 upgrade (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 2B6559ED)
Revision Changes Path 1.78 dev-perl/math-pari/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/ChangeLog?rev=1.78&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/ChangeLog?rev=1.78&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/ChangeLog?r1=1.77&r2=1.78 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v retrieving revision 1.77 retrieving revision 1.78 diff -u -r1.77 -r1.78 --- ChangeLog 26 Jan 2014 15:59:06 -0000 1.77 +++ ChangeLog 22 Aug 2014 15:44:03 -0000 1.78 @@ -1,6 +1,13 @@ # ChangeLog for dev-perl/math-pari # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.77 2014/01/26 15:59:06 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.78 2014/08/22 15:44:03 axs Exp $ + +*math-pari-2.10.806.50-r1 (22 Aug 2014) + + 22 Aug 2014; Ian Stakenvicius (_AxS_) <[email protected]> + +math-pari-2.10.806.50-r1.ebuild, -math-pari-2.10.806.50.ebuild: + bumped EAPI to 5; committed directly to stable as no other changes present and + revbump helps stable systems to keep from dieing on perl-5.18 upgrade 26 Jan 2014; Mikle Kolyada <[email protected]> -math-pari-2.01080604.ebuild, math-pari-2.10.806.50.ebuild: 1.1 dev-perl/math-pari/math-pari-2.10.806.50-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/math-pari-2.10.806.50-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/math-pari/math-pari-2.10.806.50-r1.ebuild?rev=1.1&content-type=text/plain Index: math-pari-2.10.806.50-r1.ebuild =================================================================== # Copyright 1999-2014 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.10.806.50-r1.ebuild,v 1.1 2014/08/22 15:44:03 axs Exp $ EAPI=5 MODULE_AUTHOR=ILYAZ MODULE_SECTION=modules MODULE_VERSION=2.01080605 MY_PN=Math-Pari inherit perl-module toolchain-funcs 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 ~x86-solaris" 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_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 } src_compile() { emake AR="$(tc-getAR)" OTHERLDFLAGS="${LDFLAGS}" }
