* [gentoo-commits] gentoo-x86 commit in sci-mathematics/octave: ChangeLog octave-3.2.4-r1.ebuild
@ 2010-03-06 18:40 Sebastien Fabbro (bicatali)
0 siblings, 0 replies; 7+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2010-03-06 18:40 UTC (permalink / raw
To: gentoo-commits
bicatali 10/03/06 18:40:20
Modified: ChangeLog
Added: octave-3.2.4-r1.ebuild
Log:
Added a possibility to view results of tests (bug #303537), fixed imread (bug #307693), removed hdf5 (bug #299876), and now respect LDFLAGS
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Revision Changes Path
1.85 sci-mathematics/octave/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/octave/ChangeLog?r1=1.84&r2=1.85
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog 17 Feb 2010 04:38:38 -0000 1.84
+++ ChangeLog 6 Mar 2010 18:40:19 -0000 1.85
@@ -1,6 +1,14 @@
# ChangeLog for sci-mathematics/octave
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.84 2010/02/17 04:38:38 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.85 2010/03/06 18:40:19 bicatali Exp $
+
+*octave-3.2.4-r1 (06 Mar 2010)
+
+ 06 Mar 2010; Sébastien Fabbro <bicatali@gentoo.org>
+ +octave-3.2.4-r1.ebuild, +files/octave-3.2.4-imread.patch,
+ +files/octave-3.2.4-ldflags.patch:
+ Added a possibility to view results of tests (bug #303537), fixed imread
+ (bug #307693), removed hdf5 (bug #299876), and now respect LDFLAGS
17 Feb 2010; Sébastien Fabbro <bicatali@gentoo.org> octave-3.2.4.ebuild:
Modified fltk automagic to no instead of empty string
1.1 sci-mathematics/octave/octave-3.2.4-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.1&content-type=text/plain
Index: octave-3.2.4-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.1 2010/03/06 18:40:19 bicatali Exp $
EAPI="2"
inherit flag-o-matic xemacs-elisp-common
DESCRIPTION="High-level interactive language for numerical computations"
LICENSE="GPL-3"
HOMEPAGE="http://www.octave.org/"
SRC_URI="ftp://ftp.gnu.org/pub/gnu/${PN}/${P}.tar.bz2"
SLOT="0"
IUSE="curl doc emacs fltk fftw opengl readline sparse test xemacs zlib"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
# add media-gfx/graphicsmagick[cxx] when keyworded in arches
RDEPEND="dev-libs/libpcre
media-libs/qhull
sci-libs/qrupdate
sci-mathematics/glpk
sci-visualization/gnuplot
sys-libs/ncurses
virtual/lapack
x11-libs/libX11
curl? ( net-misc/curl )
fltk? ( x11-libs/fltk:1.1[opengl?] )
fftw? ( sci-libs/fftw:3.0 )
opengl? ( virtual/opengl media-libs/ftgl )
sparse? ( sci-libs/arpack
sci-libs/camd
sci-libs/ccolamd
sci-libs/cholmod
sci-libs/colamd
sci-libs/cxsparse
sci-libs/umfpack )
xemacs? ( app-editors/xemacs )
zlib? ( sys-libs/zlib )
!sci-mathematics/octave-forge"
DEPEND="${RDEPEND}
virtual/latex-base
sys-apps/texinfo
|| ( dev-texlive/texlive-genericrecommended
app-text/ptex )
dev-util/gperf
dev-util/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${PN}-3.2.0_parallel_make.patch
epatch "${FILESDIR}"/${PN}-3.2.0_as_needed.patch
epatch "${FILESDIR}"/${PN}-3.2.4-imread.patch
epatch "${FILESDIR}"/${PN}-3.2.4-ldflags.patch
}
src_configure() {
use fltk || export FLTK_CONFIG="no"
# hdf5 disabled because not really useful (bug #)
econf \
--localstatedir=/var/state/octave \
--enable-shared \
--without-hdf5 \
--with-qrupdate \
--with-blas="$(pkg-config --libs blas)" \
--with-lapack="$(pkg-config --libs lapack)" \
$(use_enable readline) \
$(use_with curl) \
$(use_with fftw) \
$(use_with opengl framework-opengl) \
$(use_with sparse arpack) \
$(use_with sparse umfpack) \
$(use_with sparse colamd) \
$(use_with sparse ccolamd) \
$(use_with sparse cholmod) \
$(use_with sparse cxsparse) \
$(use_with zlib)
}
src_compile() {
emake || die "emake failed"
if use xemacs; then
cd "${S}/emacs"
xemacs-elisp-comp *.el
fi
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
if use doc; then
einfo "Installing documentation..."
insinto /usr/share/doc/${PF}
doins $(find doc -name \*.pdf)
fi
if use emacs || use xemacs; then
cd emacs
exeinto /usr/bin
doexe octave-tags || die "Failed to install octave-tags"
doman octave-tags.1 || die "Failed to install octave-tags.1"
if use xemacs; then
xemacs-elisp-install ${PN} *.el *.elc
fi
cd ..
fi
use test && dodoc test/fntests.log
echo "LDPATH=/usr/$(get_libdir)/octave-${PV}" > 99octave
doenvd 99octave || die
}
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/octave: ChangeLog octave-3.2.4-r1.ebuild
@ 2010-03-11 15:30 Sebastien Fabbro (bicatali)
0 siblings, 0 replies; 7+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2010-03-11 15:30 UTC (permalink / raw
To: gentoo-commits
bicatali 10/03/11 15:30:04
Modified: ChangeLog octave-3.2.4-r1.ebuild
Log:
Now added graphicsmagick since it is keyworded in all arches
(Portage version: 2.2_rc66/cvs/Linux x86_64)
Revision Changes Path
1.86 sci-mathematics/octave/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/octave/ChangeLog?r1=1.85&r2=1.86
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog 6 Mar 2010 18:40:19 -0000 1.85
+++ ChangeLog 11 Mar 2010 15:30:03 -0000 1.86
@@ -1,6 +1,10 @@
# ChangeLog for sci-mathematics/octave
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.85 2010/03/06 18:40:19 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.86 2010/03/11 15:30:03 bicatali Exp $
+
+ 11 Mar 2010; Sébastien Fabbro <bicatali@gentoo.org>
+ octave-3.2.4-r1.ebuild:
+ Now added graphicsmagick since it is keyworded in all arches
*octave-3.2.4-r1 (06 Mar 2010)
1.2 sci-mathematics/octave/octave-3.2.4-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?r1=1.1&r2=1.2
Index: octave-3.2.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- octave-3.2.4-r1.ebuild 6 Mar 2010 18:40:19 -0000 1.1
+++ octave-3.2.4-r1.ebuild 11 Mar 2010 15:30:03 -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/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.1 2010/03/06 18:40:19 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.2 2010/03/11 15:30:03 bicatali Exp $
EAPI="2"
inherit flag-o-matic xemacs-elisp-common
@@ -14,8 +14,9 @@
IUSE="curl doc emacs fltk fftw opengl readline sparse test xemacs zlib"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-# add media-gfx/graphicsmagick[cxx] when keyworded in arches
+
RDEPEND="dev-libs/libpcre
+ media-gfx/graphicsmagick[cxx]
media-libs/qhull
sci-libs/qrupdate
sci-mathematics/glpk
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/octave: ChangeLog octave-3.2.4-r1.ebuild
@ 2010-05-13 6:35 Jeroen Roovers (jer)
0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2010-05-13 6:35 UTC (permalink / raw
To: gentoo-commits
jer 10/05/13 06:35:13
Modified: ChangeLog octave-3.2.4-r1.ebuild
Log:
Stable for HPPA (bug #318649).
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.88 sci-mathematics/octave/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?r1=1.87&r2=1.88
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog 4 May 2010 23:40:04 -0000 1.87
+++ ChangeLog 13 May 2010 06:35:13 -0000 1.88
@@ -1,6 +1,9 @@
# ChangeLog for sci-mathematics/octave
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.87 2010/05/04 23:40:04 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.88 2010/05/13 06:35:13 jer Exp $
+
+ 13 May 2010; Jeroen Roovers <jer@gentoo.org> octave-3.2.4-r1.ebuild:
+ Stable for HPPA (bug #318649).
05 May 2010; Sébastien Fabbro <bicatali@gentoo.org>
-octave-2.1.57-r1.ebuild, -octave-2.1.69.ebuild, -octave-2.1.72.ebuild,
1.5 sci-mathematics/octave/octave-3.2.4-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?r1=1.4&r2=1.5
Index: octave-3.2.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- octave-3.2.4-r1.ebuild 4 May 2010 23:40:04 -0000 1.4
+++ octave-3.2.4-r1.ebuild 13 May 2010 06:35:13 -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/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.4 2010/05/04 23:40:04 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.5 2010/05/13 06:35:13 jer Exp $
EAPI="2"
inherit flag-o-matic xemacs-elisp-common autotools
@@ -12,7 +12,7 @@
SLOT="0"
IUSE="curl doc emacs fltk fftw opengl readline sparse test xemacs zlib"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 hppa ~ppc ~ppc64 ~sparc ~x86"
RDEPEND="dev-libs/libpcre
media-gfx/graphicsmagick[cxx]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/octave: ChangeLog octave-3.2.4-r1.ebuild
@ 2010-05-16 19:03 Markus Meier (maekke)
0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2010-05-16 19:03 UTC (permalink / raw
To: gentoo-commits
maekke 10/05/16 19:03:46
Modified: ChangeLog octave-3.2.4-r1.ebuild
Log:
amd64/x86 stable, bug #318649
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.89 sci-mathematics/octave/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?r1=1.88&r2=1.89
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog 13 May 2010 06:35:13 -0000 1.88
+++ ChangeLog 16 May 2010 19:03:46 -0000 1.89
@@ -1,6 +1,9 @@
# ChangeLog for sci-mathematics/octave
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.88 2010/05/13 06:35:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.89 2010/05/16 19:03:46 maekke Exp $
+
+ 16 May 2010; Markus Meier <maekke@gentoo.org> octave-3.2.4-r1.ebuild:
+ amd64/x86 stable, bug #318649
13 May 2010; Jeroen Roovers <jer@gentoo.org> octave-3.2.4-r1.ebuild:
Stable for HPPA (bug #318649).
1.6 sci-mathematics/octave/octave-3.2.4-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?r1=1.5&r2=1.6
Index: octave-3.2.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- octave-3.2.4-r1.ebuild 13 May 2010 06:35:13 -0000 1.5
+++ octave-3.2.4-r1.ebuild 16 May 2010 19:03:46 -0000 1.6
@@ -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/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.5 2010/05/13 06:35:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.6 2010/05/16 19:03:46 maekke Exp $
EAPI="2"
inherit flag-o-matic xemacs-elisp-common autotools
@@ -12,7 +12,7 @@
SLOT="0"
IUSE="curl doc emacs fltk fftw opengl readline sparse test xemacs zlib"
-KEYWORDS="~alpha ~amd64 hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 ~sparc x86"
RDEPEND="dev-libs/libpcre
media-gfx/graphicsmagick[cxx]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/octave: ChangeLog octave-3.2.4-r1.ebuild
@ 2010-05-24 12:44 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 7+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2010-05-24 12:44 UTC (permalink / raw
To: gentoo-commits
nixnut 10/05/24 12:44:46
Modified: ChangeLog octave-3.2.4-r1.ebuild
Log:
ppc stable #318649
(Portage version: 2.1.8.3/cvs/Linux ppc)
Revision Changes Path
1.90 sci-mathematics/octave/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?r1=1.89&r2=1.90
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog 16 May 2010 19:03:46 -0000 1.89
+++ ChangeLog 24 May 2010 12:44:46 -0000 1.90
@@ -1,6 +1,9 @@
# ChangeLog for sci-mathematics/octave
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.89 2010/05/16 19:03:46 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.90 2010/05/24 12:44:46 nixnut Exp $
+
+ 24 May 2010; <nixnut@gentoo.org> octave-3.2.4-r1.ebuild:
+ ppc stable #318649
16 May 2010; Markus Meier <maekke@gentoo.org> octave-3.2.4-r1.ebuild:
amd64/x86 stable, bug #318649
1.7 sci-mathematics/octave/octave-3.2.4-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?r1=1.6&r2=1.7
Index: octave-3.2.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- octave-3.2.4-r1.ebuild 16 May 2010 19:03:46 -0000 1.6
+++ octave-3.2.4-r1.ebuild 24 May 2010 12:44:46 -0000 1.7
@@ -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/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.6 2010/05/16 19:03:46 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.7 2010/05/24 12:44:46 nixnut Exp $
EAPI="2"
inherit flag-o-matic xemacs-elisp-common autotools
@@ -12,7 +12,7 @@
SLOT="0"
IUSE="curl doc emacs fltk fftw opengl readline sparse test xemacs zlib"
-KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 hppa ppc ~ppc64 ~sparc x86"
RDEPEND="dev-libs/libpcre
media-gfx/graphicsmagick[cxx]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/octave: ChangeLog octave-3.2.4-r1.ebuild
@ 2010-06-13 15:07 Raul Porcel (armin76)
0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2010-06-13 15:07 UTC (permalink / raw
To: gentoo-commits
armin76 10/06/13 15:07:46
Modified: ChangeLog octave-3.2.4-r1.ebuild
Log:
alpha/sparc stable wrt #318649
(Portage version: 2.1.8.3/cvs/Linux ia64)
Revision Changes Path
1.91 sci-mathematics/octave/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?r1=1.90&r2=1.91
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog 24 May 2010 12:44:46 -0000 1.90
+++ ChangeLog 13 Jun 2010 15:07:46 -0000 1.91
@@ -1,6 +1,9 @@
# ChangeLog for sci-mathematics/octave
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.90 2010/05/24 12:44:46 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.91 2010/06/13 15:07:46 armin76 Exp $
+
+ 13 Jun 2010; Raúl Porcel <armin76@gentoo.org> octave-3.2.4-r1.ebuild:
+ alpha/sparc stable wrt #318649
24 May 2010; <nixnut@gentoo.org> octave-3.2.4-r1.ebuild:
ppc stable #318649
1.8 sci-mathematics/octave/octave-3.2.4-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?r1=1.7&r2=1.8
Index: octave-3.2.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- octave-3.2.4-r1.ebuild 24 May 2010 12:44:46 -0000 1.7
+++ octave-3.2.4-r1.ebuild 13 Jun 2010 15:07:46 -0000 1.8
@@ -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/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.7 2010/05/24 12:44:46 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.8 2010/06/13 15:07:46 armin76 Exp $
EAPI="2"
inherit flag-o-matic xemacs-elisp-common autotools
@@ -12,7 +12,7 @@
SLOT="0"
IUSE="curl doc emacs fltk fftw opengl readline sparse test xemacs zlib"
-KEYWORDS="~alpha amd64 hppa ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 hppa ppc ~ppc64 sparc x86"
RDEPEND="dev-libs/libpcre
media-gfx/graphicsmagick[cxx]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/octave: ChangeLog octave-3.2.4-r1.ebuild
@ 2010-07-09 10:19 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 7+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-07-09 10:19 UTC (permalink / raw
To: gentoo-commits
ssuominen 10/07/09 10:19:55
Modified: ChangeLog octave-3.2.4-r1.ebuild
Log:
ppc64 stable wrt #318649
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.94 sci-mathematics/octave/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/ChangeLog?r1=1.93&r2=1.94
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog 24 Jun 2010 17:12:17 -0000 1.93
+++ ChangeLog 9 Jul 2010 10:19:55 -0000 1.94
@@ -1,6 +1,10 @@
# ChangeLog for sci-mathematics/octave
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.93 2010/06/24 17:12:17 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.94 2010/07/09 10:19:55 ssuominen Exp $
+
+ 09 Jul 2010; Samuli Suominen <ssuominen@gentoo.org>
+ octave-3.2.4-r1.ebuild:
+ ppc64 stable wrt #318649
24 Jun 2010; Sébastien Fabbro <bicatali@gentoo.org>
-files/octave-2.1.72-gcc4.1-gentoo.patch, -octave-2.1.73.ebuild,
1.9 sci-mathematics/octave/octave-3.2.4-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild?r1=1.8&r2=1.9
Index: octave-3.2.4-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- octave-3.2.4-r1.ebuild 13 Jun 2010 15:07:46 -0000 1.8
+++ octave-3.2.4-r1.ebuild 9 Jul 2010 10:19:55 -0000 1.9
@@ -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/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.8 2010/06/13 15:07:46 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-3.2.4-r1.ebuild,v 1.9 2010/07/09 10:19:55 ssuominen Exp $
EAPI="2"
inherit flag-o-matic xemacs-elisp-common autotools
@@ -12,7 +12,7 @@
SLOT="0"
IUSE="curl doc emacs fltk fftw opengl readline sparse test xemacs zlib"
-KEYWORDS="alpha amd64 hppa ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86"
RDEPEND="dev-libs/libpcre
media-gfx/graphicsmagick[cxx]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-07-09 10:19 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-13 15:07 [gentoo-commits] gentoo-x86 commit in sci-mathematics/octave: ChangeLog octave-3.2.4-r1.ebuild Raul Porcel (armin76)
-- strict thread matches above, loose matches on Subject: below --
2010-07-09 10:19 Samuli Suominen (ssuominen)
2010-05-24 12:44 Gysbert Wassenaar (nixnut)
2010-05-16 19:03 Markus Meier (maekke)
2010-05-13 6:35 Jeroen Roovers (jer)
2010-03-11 15:30 Sebastien Fabbro (bicatali)
2010-03-06 18:40 Sebastien Fabbro (bicatali)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox