public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/yacas: ChangeLog yacas-1.3.2.ebuild
@ 2012-03-02  5:59 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2012-03-02  5:59 UTC (permalink / raw
  To: gentoo-commits

bicatali    12/03/02 05:59:05

  Modified:             ChangeLog
  Added:                yacas-1.3.2.ebuild
  Log:
  Version bump
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.31                 sci-mathematics/yacas/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	25 Nov 2011 17:58:04 -0000	1.30
+++ ChangeLog	2 Mar 2012 05:59:05 -0000	1.31
@@ -1,6 +1,11 @@
 # ChangeLog for sci-mathematics/yacas
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v 1.30 2011/11/25 17:58:04 bicatali Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v 1.31 2012/03/02 05:59:05 bicatali Exp $
+
+*yacas-1.3.2 (02 Mar 2012)
+
+  02 Mar 2012; Sébastien Fabbro <bicatali@gentoo.org> +yacas-1.3.2.ebuild:
+  Version bump
 
 *yacas-1.3.1 (25 Nov 2011)
 



1.1                  sci-mathematics/yacas/yacas-1.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild?rev=1.1&content-type=text/plain

Index: yacas-1.3.2.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild,v 1.1 2012/03/02 05:59:05 bicatali Exp $

EAPI="4"

inherit eutils java-pkg-opt-2 autotools

DESCRIPTION="General purpose computer algebra system"
HOMEPAGE="http://yacas.sourceforge.net/"
SRC_URI="http://${PN}.sourceforge.net/backups/${P}.tar.gz"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"

IUSE="doc java server"

DEPEND="java? ( >=virtual/jdk-1.6 )"
RDEPEND="java? ( >=virtual/jre-1.6 )"

psrc_prepare() {
	epatch "${FILESDIR}"/${PN}-1.2.2-tests.patch
	# needs to rebuild because tests include file modify Makefile.am
	eautoreconf
}

src_configure() {
	econf \
		$(use_enable doc html-doc) \
		$(use_enable server) \
		--with-html-dir="/usr/share/doc/${PF}/html"
}

src_compile() {
	default
	if use java; then
		cd JavaYacas || die
		# -j1 because of file generation dependence
		emake -j1 -f makefile.yacas
	fi
}

src_install() {
	default
	if use java; then
		cd JavaYacas || die
		java-pkg_dojar yacas.jar
		java-pkg_dolauncher jyacas --main net.sf.yacas.YacasConsole
		insinto /usr/share/${PN}
		doins hints.txt yacasconsole.html
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/yacas: ChangeLog yacas-1.3.2.ebuild
@ 2012-06-09  4:51 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-06-09  4:51 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/06/09 04:51:49

  Modified:             ChangeLog yacas-1.3.2.ebuild
  Log:
  marked x86 per bug 419905
  
  (Portage version: 2.2.0_alpha110/cvs/Linux i686)

Revision  Changes    Path
1.32                 sci-mathematics/yacas/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	2 Mar 2012 05:59:05 -0000	1.31
+++ ChangeLog	9 Jun 2012 04:51:49 -0000	1.32
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/yacas
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v 1.31 2012/03/02 05:59:05 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v 1.32 2012/06/09 04:51:49 jdhore Exp $
+
+  09 Jun 2012; Jeff Horelick <jdhore@gentoo.org> yacas-1.3.2.ebuild:
+  marked x86 per bug 419905
 
 *yacas-1.3.2 (02 Mar 2012)
 



1.3                  sci-mathematics/yacas/yacas-1.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild?r1=1.2&r2=1.3

Index: yacas-1.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- yacas-1.3.2.ebuild	25 Apr 2012 17:08:36 -0000	1.2
+++ yacas-1.3.2.ebuild	9 Jun 2012 04:51:49 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild,v 1.2 2012/04/25 17:08:36 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild,v 1.3 2012/06/09 04:51:49 jdhore Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE="doc java server"
 
 DEPEND="java? ( >=virtual/jdk-1.6 )"






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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/yacas: ChangeLog yacas-1.3.2.ebuild
@ 2012-06-11  9:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-06-11  9:17 UTC (permalink / raw
  To: gentoo-commits

ago         12/06/11 09:17:21

  Modified:             ChangeLog yacas-1.3.2.ebuild
  Log:
  Stable for amd64, wrt bug #419905
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.33                 sci-mathematics/yacas/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	9 Jun 2012 04:51:49 -0000	1.32
+++ ChangeLog	11 Jun 2012 09:17:21 -0000	1.33
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/yacas
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v 1.32 2012/06/09 04:51:49 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v 1.33 2012/06/11 09:17:21 ago Exp $
+
+  11 Jun 2012; Agostino Sarubbo <ago@gentoo.org> yacas-1.3.2.ebuild:
+  Stable for amd64, wrt bug #419905
 
   09 Jun 2012; Jeff Horelick <jdhore@gentoo.org> yacas-1.3.2.ebuild:
   marked x86 per bug 419905



1.4                  sci-mathematics/yacas/yacas-1.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild?r1=1.3&r2=1.4

Index: yacas-1.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- yacas-1.3.2.ebuild	9 Jun 2012 04:51:49 -0000	1.3
+++ yacas-1.3.2.ebuild	11 Jun 2012 09:17:21 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild,v 1.3 2012/06/09 04:51:49 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.3.2.ebuild,v 1.4 2012/06/11 09:17:21 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="doc java server"
 
 DEPEND="java? ( >=virtual/jdk-1.6 )"






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

end of thread, other threads:[~2012-06-11  9:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-09  4:51 [gentoo-commits] gentoo-x86 commit in sci-mathematics/yacas: ChangeLog yacas-1.3.2.ebuild Jeff Horelick (jdhore)
  -- strict thread matches above, loose matches on Subject: below --
2012-06-11  9:17 Agostino Sarubbo (ago)
2012-03-02  5:59 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