public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/ginac: ginac-1.4.1.ebuild ginac-1.3.7.ebuild ChangeLog
@ 2008-04-01 14:45 99% Markus Dittrich (markusle)
  0 siblings, 0 replies; 1+ results
From: Markus Dittrich (markusle) @ 2008-04-01 14:45 UTC (permalink / raw
  To: gentoo-commits

markusle    08/04/01 14:45:12

  Modified:             ginac-1.4.1.ebuild ginac-1.3.7.ebuild ChangeLog
  Log:
  Fixed compile issues with gcc-4.3 (see bug #215570).
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.2                  sci-mathematics/ginac/ginac-1.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ginac-1.4.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ginac-1.4.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ginac-1.4.1.ebuild?r1=1.1&r2=1.2

Index: ginac-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.4.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ginac-1.4.1.ebuild	11 Jan 2008 09:54:10 -0000	1.1
+++ ginac-1.4.1.ebuild	1 Apr 2008 14:45:11 -0000	1.2
@@ -1,6 +1,8 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.4.1.ebuild,v 1.1 2008/01/11 09:54:10 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.4.1.ebuild,v 1.2 2008/04/01 14:45:11 markusle Exp $
+
+inherit eutils
 
 DESCRIPTION="C++ library and tools for symbolic calculations"
 SRC_URI="ftp://ftpthep.physik.uni-mainz.de/pub/GiNaC/${P}.tar.bz2"
@@ -16,6 +18,12 @@
 	dev-util/pkgconfig
 	doc? ( app-doc/doxygen media-gfx/transfig virtual/latex-base )"
 
+src_unpack() {
+	unpack ${A}
+	cd "${S}"
+	epatch "${FILESDIR}"/${P}-gcc4.3.patch
+}
+
 src_compile() {
 	econf \
 		--docdir=/usr/share/doc/${PF} \



1.5                  sci-mathematics/ginac/ginac-1.3.7.ebuild

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

Index: ginac-1.3.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.3.7.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ginac-1.3.7.ebuild	23 Oct 2007 19:22:17 -0000	1.4
+++ ginac-1.3.7.ebuild	1 Apr 2008 14:45:11 -0000	1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.3.7.ebuild,v 1.4 2007/10/23 19:22:17 welp Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.3.7.ebuild,v 1.5 2008/04/01 14:45:11 markusle Exp $
 
 inherit eutils
 



1.17                 sci-mathematics/ginac/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	11 Jan 2008 09:54:10 -0000	1.16
+++ ChangeLog	1 Apr 2008 14:45:11 -0000	1.17
@@ -1,6 +1,11 @@
 # ChangeLog for sci-mathematics/ginac
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ChangeLog,v 1.16 2008/01/11 09:54:10 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ChangeLog,v 1.17 2008/04/01 14:45:11 markusle Exp $
+
+  01 Apr 2008; Markus Dittrich <markusle@gentoo.org>
+  +files/ginac-1.4.1-gcc4.3.patch, ginac-1.4.1.ebuild:
+  Fixed compile issues with gcc-4.3 (see bug #215570). Thanks much to
+  <spasswolf@web.de> for his patch.
 
 *ginac-1.4.1 (11 Jan 2008)
 



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[relevance 99%]

Results 1-1 of 1 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2008-04-01 14:45 99% [gentoo-commits] gentoo-x86 commit in sci-mathematics/ginac: ginac-1.4.1.ebuild ginac-1.3.7.ebuild ChangeLog 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