public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/pari: pari-2.3.2.ebuild ChangeLog
@ 2007-09-22 12:44 Markus Dittrich (markusle)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Dittrich (markusle) @ 2007-09-22 12:44 UTC (permalink / raw
  To: gentoo-commits

markusle    07/09/22 12:44:21

  Modified:             pari-2.3.2.ebuild ChangeLog
  Log:
  Fixed pari's emacs support (see bug #193378).
  (Portage version: 2.1.3.9)

Revision  Changes    Path
1.4                  sci-mathematics/pari/pari-2.3.2.ebuild

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

Index: pari-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pari-2.3.2.ebuild	15 Sep 2007 12:38:36 -0000	1.3
+++ pari-2.3.2.ebuild	22 Sep 2007 12:44:21 -0000	1.4
@@ -1,10 +1,10 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v 1.3 2007/09/15 12:38:36 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v 1.4 2007/09/22 12:44:21 markusle Exp $
 
-inherit eutils toolchain-funcs flag-o-matic
+inherit elisp-common eutils flag-o-matic multilib toolchain-funcs
 
-DESCRIPTION="pari (or pari-gp) : a software package for computer-aided number theory"
+DESCRIPTION="A software package for computer-aided number theory"
 HOMEPAGE="http://pari.math.u-bordeaux.fr/"
 SRC_URI="http://pari.math.u-bordeaux.fr/pub/pari/unix/${P}.tar.gz"
 
@@ -15,7 +15,9 @@
 
 DEPEND="doc? ( virtual/tetex )
 		sys-libs/readline
-		X? ( x11-libs/libX11 )"
+		X? ( x11-libs/libX11 )
+		emacs? ( virtual/emacs )"
+SITEFILE=50${PN}-gentoo.el
 
 src_unpack() {
 	unpack ${A}
@@ -66,6 +68,11 @@
 		cd "${S}"
 		emake docpdf || die "Failed to generate docs"
 	fi
+
+	if use emacs; then
+		cd "${S}/emacs"
+		elisp-comp *.el || die "elisp-comp failed"
+	fi
 }
 
 src_test() {
@@ -76,23 +83,31 @@
 }
 
 src_install() {
-	make DESTDIR=${D} LIBDIR=${D}/usr/$(get_libdir) install || \
+	emake DESTDIR="${D}" LIBDIR="${D}/usr/$(get_libdir)" install || \
 		die "Install failed"
 
 	if use emacs; then
-		insinto /usr/share/emacs/site-lisp
-		doins emacs/pari.el
+		elisp-install ${PN} emacs/*.el emacs/*.elc || die "elisp-install failed"
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
 	fi
 
 	dodoc AUTHORS Announce.2.1 CHANGES README TODO NEW
 	if use doc; then
-		make DESTDIR=${D} LIBDIR=${D}/usr/$(get_libdir) install-doc \
+		emake DESTDIR="${D}" LIBDIR="${D}/usr/$(get_libdir)" install-doc \
 			|| die "Failed to install docs"
 		insinto /usr/share/doc/${PF}
 		doins doc/*.pdf || die "Failed to install pdf docs"
 	fi
 
 	#remove superfluous doc directory
-	rm -fr ${D}/usr/share/${P}/doc || \
+	rm -fr "${D}/usr/share/${P}/doc" || \
 		die "Failed to clean up doc directory"
 }
+
+pkg_postinst() {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}



1.45                 sci-mathematics/pari/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?r1=1.44&r2=1.45

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	15 Sep 2007 12:38:36 -0000	1.44
+++ ChangeLog	22 Sep 2007 12:44:21 -0000	1.45
@@ -1,6 +1,11 @@
 # ChangeLog for sci-mathematics/pari
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.44 2007/09/15 12:38:36 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.45 2007/09/22 12:44:21 markusle Exp $
+
+  22 Sep 2007; Markus Dittrich <markusle@gentoo.org>
+  +files/50pari-gentoo.el, pari-2.3.2.ebuild:
+  Fixed pari's emacs support (see bug #193378). Thanks much to 
+  Christian Faulhammer <opfer@gentoo.org> for his patches.
 
   15 Sep 2007; Markus Dittrich <markusle@gentoo.org> pari-2.3.2.ebuild:
   Added fix to allow test routines to pass on sparc (see bug #141206).



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/pari: pari-2.3.2.ebuild ChangeLog
@ 2007-09-30 13:30 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 6+ messages in thread
From: Ferris McCormick (fmccor) @ 2007-09-30 13:30 UTC (permalink / raw
  To: gentoo-commits

fmccor      07/09/30 13:30:56

  Modified:             pari-2.3.2.ebuild ChangeLog
  Log:
  Sparc stable --- Bug #194265 --- now tests as good.
  (Portage version: 2.1.3.11)

Revision  Changes    Path
1.5                  sci-mathematics/pari/pari-2.3.2.ebuild

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

Index: pari-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pari-2.3.2.ebuild	22 Sep 2007 12:44:21 -0000	1.4
+++ pari-2.3.2.ebuild	30 Sep 2007 13:30:56 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v 1.4 2007/09/22 12:44:21 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v 1.5 2007/09/30 13:30:56 fmccor Exp $
 
 inherit elisp-common eutils flag-o-matic multilib toolchain-funcs
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc sparc ~x86"
 IUSE="doc emacs X"
 
 DEPEND="doc? ( virtual/tetex )



1.46                 sci-mathematics/pari/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?r1=1.45&r2=1.46

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	22 Sep 2007 12:44:21 -0000	1.45
+++ ChangeLog	30 Sep 2007 13:30:56 -0000	1.46
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/pari
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.45 2007/09/22 12:44:21 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.46 2007/09/30 13:30:56 fmccor Exp $
+
+  30 Sep 2007; Ferris McCormick <fmccor@gentoo.org> pari-2.3.2.ebuild:
+  Sparc stable --- Bug #194265 --- now tests as good.
 
   22 Sep 2007; Markus Dittrich <markusle@gentoo.org>
   +files/50pari-gentoo.el, pari-2.3.2.ebuild:



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/pari: pari-2.3.2.ebuild ChangeLog
@ 2007-09-30 15:51 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2007-09-30 15:51 UTC (permalink / raw
  To: gentoo-commits

maekke      07/09/30 15:51:43

  Modified:             pari-2.3.2.ebuild ChangeLog
  Log:
  x86 stable, bug #194265
  (Portage version: 2.1.3.11)

Revision  Changes    Path
1.6                  sci-mathematics/pari/pari-2.3.2.ebuild

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

Index: pari-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pari-2.3.2.ebuild	30 Sep 2007 13:30:56 -0000	1.5
+++ pari-2.3.2.ebuild	30 Sep 2007 15:51:42 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v 1.5 2007/09/30 13:30:56 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v 1.6 2007/09/30 15:51:42 maekke Exp $
 
 inherit elisp-common eutils flag-o-matic multilib toolchain-funcs
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc sparc x86"
 IUSE="doc emacs X"
 
 DEPEND="doc? ( virtual/tetex )



1.47                 sci-mathematics/pari/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?r1=1.46&r2=1.47

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	30 Sep 2007 13:30:56 -0000	1.46
+++ ChangeLog	30 Sep 2007 15:51:42 -0000	1.47
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/pari
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.46 2007/09/30 13:30:56 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.47 2007/09/30 15:51:42 maekke Exp $
+
+  30 Sep 2007; Markus Meier <maekke@gentoo.org> pari-2.3.2.ebuild:
+  x86 stable, bug #194265
 
   30 Sep 2007; Ferris McCormick <fmccor@gentoo.org> pari-2.3.2.ebuild:
   Sparc stable --- Bug #194265 --- now tests as good.



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/pari: pari-2.3.2.ebuild ChangeLog
@ 2007-09-30 17:24 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2007-09-30 17:24 UTC (permalink / raw
  To: gentoo-commits

armin76     07/09/30 17:24:15

  Modified:             pari-2.3.2.ebuild ChangeLog
  Log:
  alpha stable wrt #194265
  (Portage version: 2.1.3.9)

Revision  Changes    Path
1.7                  sci-mathematics/pari/pari-2.3.2.ebuild

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

Index: pari-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pari-2.3.2.ebuild	30 Sep 2007 15:51:42 -0000	1.6
+++ pari-2.3.2.ebuild	30 Sep 2007 17:24:14 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v 1.6 2007/09/30 15:51:42 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v 1.7 2007/09/30 17:24:14 armin76 Exp $
 
 inherit elisp-common eutils flag-o-matic multilib toolchain-funcs
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc sparc x86"
+KEYWORDS="alpha ~amd64 ~hppa ~mips ~ppc sparc x86"
 IUSE="doc emacs X"
 
 DEPEND="doc? ( virtual/tetex )



1.48                 sci-mathematics/pari/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?r1=1.47&r2=1.48

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	30 Sep 2007 15:51:42 -0000	1.47
+++ ChangeLog	30 Sep 2007 17:24:14 -0000	1.48
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/pari
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.47 2007/09/30 15:51:42 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.48 2007/09/30 17:24:14 armin76 Exp $
+
+  30 Sep 2007; Raúl Porcel <armin76@gentoo.org> pari-2.3.2.ebuild:
+  alpha stable wrt #194265
 
   30 Sep 2007; Markus Meier <maekke@gentoo.org> pari-2.3.2.ebuild:
   x86 stable, bug #194265



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/pari: pari-2.3.2.ebuild ChangeLog
@ 2007-10-01 17:03 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2007-10-01 17:03 UTC (permalink / raw
  To: gentoo-commits

jer         07/10/01 17:03:37

  Modified:             pari-2.3.2.ebuild ChangeLog
  Log:
  DON'T hide build output.
  (Portage version: 2.1.3.9)

Revision  Changes    Path
1.8                  sci-mathematics/pari/pari-2.3.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild?r1=1.7&r2=1.8

Index: pari-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pari-2.3.2.ebuild	30 Sep 2007 17:24:14 -0000	1.7
+++ pari-2.3.2.ebuild	1 Oct 2007 17:03:36 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v 1.7 2007/09/30 17:24:14 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v 1.8 2007/10/01 17:03:36 jer Exp $
 
 inherit elisp-common eutils flag-o-matic multilib toolchain-funcs
 
@@ -78,7 +78,7 @@
 src_test() {
 	cd "${S}"
 	ebegin "Testing pari kernel"
-	make test-kernel > /dev/null
+	make test-kernel
 	eend $?
 }
 



1.49                 sci-mathematics/pari/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?r1=1.48&r2=1.49

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	30 Sep 2007 17:24:14 -0000	1.48
+++ ChangeLog	1 Oct 2007 17:03:36 -0000	1.49
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/pari
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.48 2007/09/30 17:24:14 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.49 2007/10/01 17:03:36 jer Exp $
+
+  01 Oct 2007; Jeroen Roovers <jer@gentoo.org> pari-2.3.2.ebuild:
+  DON'T hide build output.
 
   30 Sep 2007; Raúl Porcel <armin76@gentoo.org> pari-2.3.2.ebuild:
   alpha stable wrt #194265



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/pari: pari-2.3.2.ebuild ChangeLog
@ 2007-10-09 15:02 Christoph Mende (angelos)
  0 siblings, 0 replies; 6+ messages in thread
From: Christoph Mende (angelos) @ 2007-10-09 15:02 UTC (permalink / raw
  To: gentoo-commits

angelos     07/10/09 15:02:45

  Modified:             pari-2.3.2.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #194265
  (Portage version: 2.1.3.12)

Revision  Changes    Path
1.9                  sci-mathematics/pari/pari-2.3.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild?r1=1.8&r2=1.9

Index: pari-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- pari-2.3.2.ebuild	1 Oct 2007 17:03:36 -0000	1.8
+++ pari-2.3.2.ebuild	9 Oct 2007 15:02:44 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v 1.8 2007/10/01 17:03:36 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.2.ebuild,v 1.9 2007/10/09 15:02:44 angelos Exp $
 
 inherit elisp-common eutils flag-o-matic multilib toolchain-funcs
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~hppa ~mips ~ppc sparc x86"
+KEYWORDS="alpha amd64 ~hppa ~mips ~ppc sparc x86"
 IUSE="doc emacs X"
 
 DEPEND="doc? ( virtual/tetex )



1.52                 sci-mathematics/pari/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/pari/ChangeLog?r1=1.51&r2=1.52

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog	3 Oct 2007 05:00:19 -0000	1.51
+++ ChangeLog	9 Oct 2007 15:02:44 -0000	1.52
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/pari
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.51 2007/10/03 05:00:19 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.52 2007/10/09 15:02:44 angelos Exp $
+
+  09 Oct 2007; Christoph Mende <angelos@gentoo.org> pari-2.3.2.ebuild:
+  Stable on amd64 wrt bug #194265
 
   03 Oct 2007; Jeroen Roovers <jer@gentoo.org> pari-2.3.2-r1.ebuild:
   Stable for HPPA (bug #194265).



-- 
gentoo-commits@gentoo.org mailing list



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

end of thread, other threads:[~2007-10-09 15:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-09 15:02 [gentoo-commits] gentoo-x86 commit in sci-mathematics/pari: pari-2.3.2.ebuild ChangeLog Christoph Mende (angelos)
  -- strict thread matches above, loose matches on Subject: below --
2007-10-01 17:03 Jeroen Roovers (jer)
2007-09-30 17:24 Raul Porcel (armin76)
2007-09-30 15:51 Markus Meier (maekke)
2007-09-30 13:30 Ferris McCormick (fmccor)
2007-09-22 12:44 Markus Dittrich (markusle)

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