public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-mathematics/maxima: ChangeLog maxima-5.18.1.ebuild
@ 2009-04-19 22:03 Andrey Grozin (grozin)
  0 siblings, 0 replies; 5+ messages in thread
From: Andrey Grozin (grozin) @ 2009-04-19 22:03 UTC (permalink / raw
  To: gentoo-commits

grozin      09/04/19 22:03:35

  Modified:             ChangeLog
  Added:                maxima-5.18.1.ebuild
  Log:
  Version bump
  (Portage version: 2.2_rc30/cvs/Linux i686)

Revision  Changes    Path
1.64                 sci-mathematics/maxima/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	1 Apr 2009 21:05:37 -0000	1.63
+++ ChangeLog	19 Apr 2009 22:03:35 -0000	1.64
@@ -1,10 +1,16 @@
 # ChangeLog for sci-mathematics/maxima
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.63 2009/04/01 21:05:37 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.64 2009/04/19 22:03:35 grozin Exp $
+
+  20 Apr 2009; Andrey Grozin <grozin@gentoo.org> ChangeLog:
+  Version bump
 
   01 Apr 2009; Ulrich Mueller <ulm@gentoo.org> maxima-5.17.1-r1.ebuild:
   Restore ~sparc after imaxima keywording, bug 262975.
 
+  26 Mar 2009; Andrey Grozin <grozin@gentoo.org> maxima-5.17.1-r1.ebuild:
+  ~sparc added back
+
 *maxima-5.17.1-r1 (19 Mar 2009)
 
   19 Mar 2009; Andrey Grozin <grozin@gentoo.org> files/50maxima-gentoo.el,



1.1                  sci-mathematics/maxima/maxima-5.18.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild?rev=1.1&content-type=text/plain

Index: maxima-5.18.1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v 1.1 2009/04/19 22:03:35 grozin Exp $
EAPI=2
inherit eutils elisp-common

DESCRIPTION="Free computer algebra environment based on Macsyma"
HOMEPAGE="http://maxima.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

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

# Supported lisps with readline
SUPP_RL="gcl clisp"
# Supported lisps without readline
SUPP_NORL="cmucl sbcl"
SUPP_LISPS="${SUPP_RL} ${SUPP_NORL}"
# Default lisp if none selected
DEF_LISP="sbcl"

IUSE="latex emacs tk nls unicode xemacs X ${SUPP_LISPS} ${IUSE}"

# Languages
LANGS="es pt pt_BR"
for lang in ${LANGS}; do
	IUSE="${IUSE} linguas_${lang}"
done

RDEPEND="X? ( x11-misc/xdg-utils
		 sci-visualization/gnuplot[gd]
		 tk? ( dev-lang/tk ) )
	latex? ( || ( dev-texlive/texlive-latexrecommended
				  >=app-text/tetex-3
				  app-text/ptex ) )
	emacs? ( virtual/emacs
		latex? ( app-emacs/auctex ) )
	xemacs? ( virtual/xemacs
		latex? ( app-emacs/auctex ) )"

PDEPEND="emacs? ( app-emacs/imaxima )"

# create lisp dependencies
for LISP in ${SUPP_LISPS}; do
	if [ "${LISP}" = "gcl" ]
	then
		RDEPEND="${RDEPEND} gcl? ( >=dev-lisp/gcl-2.6.8_pre[ansi] )"
	else
		RDEPEND="${RDEPEND} ${LISP}? ( dev-lisp/${LISP} )"
	fi
	DEF_DEP="${DEF_DEP} !${LISP}? ( "
done
DEF_DEP="${DEF_DEP} dev-lisp/${DEF_LISP}"
for LISP in ${SUPP_NORL}; do
	RDEPEND="${RDEPEND} ${LISP}? ( app-misc/rlwrap )"
	[[ ${LISP} = ${DEF_LISP} ]] && \
		DEF_DEP="${DEF_DEP} app-misc/rlwrap"
done
for LISP in ${SUPP_LISPS}; do
	DEF_DEP="${DEF_DEP} )"
done

RDEPEND="${RDEPEND}
	${DEF_DEP}"

DEPEND="${RDEPEND}
	sys-apps/texinfo"

TEXMF=/usr/share/texmf-site

pkg_setup() {
	LISPS=""

	for LISP in ${SUPP_LISPS}; do
		use ${LISP} && LISPS="${LISPS} ${LISP}"
	done

	RL=""

	for LISP in ${SUPP_NORL}; do
		use ${LISP} && RL="yes"
	done

	if [ -z "${LISPS}" ]; then
		ewarn "No lisp specified in USE flags, choosing ${DEF_LISP} as default"
		LISPS="${DEF_LISP}"
		RL="yes"
	fi
}

src_prepare() {
	# use xdg-open to view ps, pdf
	epatch "${FILESDIR}"/${PN}-xdg-utils.patch
	epatch "${FILESDIR}"/${PN}-no-init-files.patch
	# remove rmaxima if neither cmucl nor sbcl
	if [ -z "${RL}" ]; then
		sed -e '/^@WIN32_FALSE@bin_SCRIPTS/s/rmaxima//' \
			-i "${S}"/src/Makefile.in \
			|| die "sed for rmaxima failed"
	fi
	# don't install imaxima, since we have a separate package for it
	sed -i -e '/^SUBDIRS/s/imaxima//' interfaces/emacs/Makefile.in \
		|| die "sed for imaxima failed"
}

src_configure() {
	local myconf=""
	for LISP in ${LISPS}; do
		myconf="${myconf} --enable-${LISP}"
	done

	# remove xmaxima if no tk
	if use tk; then
		myconf="${myconf} --with-wish=wish"
	else
		myconf="${myconf} --with-wish=none"
		sed -i \
			-e '/^SUBDIRS/s/xmaxima//' \
			interfaces/Makefile.in || die "sed for tk failed"
	fi

	# enable existing translated doc
	if use nls; then
		for lang in ${LANGS}; do
			if use "linguas_${lang}"; then
				myconf="${myconf} --enable-lang-${lang}"
				use unicode && myconf="${myconf} --enable-lang-${lang}-utf8"
			fi
		done
	fi

	econf ${myconf}
}

src_install() {
	einstall emacsdir="${D}${SITELISP}/${PN}" || die "einstall failed"

	use tk && make_desktop_entry xmaxima xmaxima \
		/usr/share/${PN}/${PV}/xmaxima/maxima-new.png \
		"Science;Math;Education"

	if use latex; then
		insinto ${TEXMF}/tex/latex/emaxima
		doins interfaces/emacs/emaxima/emaxima.sty
	fi

	# do not use dodoc because interfaces can't read compressed files
	# read COPYING before attempt to remove it from dodoc
	insinto /usr/share/${PN}/${PV}/doc
	doins AUTHORS COPYING README README.lisps || die
	dodir /usr/share/doc
	dosym ../${PN}/${PV}/doc /usr/share/doc/${PF} || die

	if use emacs; then
		elisp-site-file-install "${FILESDIR}"/50maxima-gentoo.el || die
	fi
}

pkg_preinst() {
	# some lisps do not read compress info files (bug #176411)
	for infofile in "${D}"/usr/share/info/*.bz2 ; do
		bunzip2 "${infofile}"
	done
	for infofile in "${D}"/usr/share/info/*.gz ; do
		gunzip "${infofile}"
	done
}

pkg_postinst() {
	use emacs && elisp-site-regen
	use latex && mktexlsr
}

pkg_postrm() {
	use emacs && elisp-site-regen
}






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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/maxima: ChangeLog maxima-5.18.1.ebuild
@ 2009-07-21 16:37 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 5+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-07-21 16:37 UTC (permalink / raw
  To: gentoo-commits

fauli       09/07/21 16:37:20

  Modified:             ChangeLog maxima-5.18.1.ebuild
  Log:
  stable x86, bug 264649
  (Portage version: 2.1.6.13/cvs/Linux i686, RepoMan options: --force)

Revision  Changes    Path
1.67                 sci-mathematics/maxima/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	21 Jun 2009 18:40:32 -0000	1.66
+++ ChangeLog	21 Jul 2009 16:37:20 -0000	1.67
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/maxima
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.66 2009/06/21 18:40:32 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.67 2009/07/21 16:37:20 fauli Exp $
+
+  21 Jul 2009; Christian Faulhammer <fauli@gentoo.org> maxima-5.18.1.ebuild:
+  stable x86, bug 264649
 
   21 Jun 2009; Hans de Graaff <graaff@gentoo.org> maxima-5.14.0.ebuild,
   maxima-5.17.1-r1.ebuild, maxima-5.18.1.ebuild:



1.4                  sci-mathematics/maxima/maxima-5.18.1.ebuild

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

Index: maxima-5.18.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- maxima-5.18.1.ebuild	21 Jun 2009 18:40:32 -0000	1.3
+++ maxima-5.18.1.ebuild	21 Jul 2009 16:37:20 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v 1.3 2009/06/21 18:40:32 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v 1.4 2009/07/21 16:37:20 fauli Exp $
 EAPI=2
 inherit eutils elisp-common
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2 AECA"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc x86"
 
 # Supported lisps with readline
 SUPP_RL="gcl clisp"






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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/maxima: ChangeLog maxima-5.18.1.ebuild
@ 2009-08-03 21:38 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2009-08-03 21:38 UTC (permalink / raw
  To: gentoo-commits

maekke      09/08/03 21:38:07

  Modified:             ChangeLog maxima-5.18.1.ebuild
  Log:
  amd64 stable, bug #264649
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.68                 sci-mathematics/maxima/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog	21 Jul 2009 16:37:20 -0000	1.67
+++ ChangeLog	3 Aug 2009 21:38:07 -0000	1.68
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/maxima
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.67 2009/07/21 16:37:20 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.68 2009/08/03 21:38:07 maekke Exp $
+
+  03 Aug 2009; Markus Meier <maekke@gentoo.org> maxima-5.18.1.ebuild:
+  amd64 stable, bug #264649
 
   21 Jul 2009; Christian Faulhammer <fauli@gentoo.org> maxima-5.18.1.ebuild:
   stable x86, bug 264649



1.5                  sci-mathematics/maxima/maxima-5.18.1.ebuild

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

Index: maxima-5.18.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- maxima-5.18.1.ebuild	21 Jul 2009 16:37:20 -0000	1.4
+++ maxima-5.18.1.ebuild	3 Aug 2009 21:38:07 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v 1.4 2009/07/21 16:37:20 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v 1.5 2009/08/03 21:38:07 maekke Exp $
 EAPI=2
 inherit eutils elisp-common
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2 AECA"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
 
 # Supported lisps with readline
 SUPP_RL="gcl clisp"






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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/maxima: ChangeLog maxima-5.18.1.ebuild
@ 2009-10-07 16:22 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 5+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-10-07 16:22 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/10/07 16:22:36

  Modified:             ChangeLog maxima-5.18.1.ebuild
  Log:
  ppc stable #264649
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.71                 sci-mathematics/maxima/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	31 Aug 2009 14:42:03 -0000	1.70
+++ ChangeLog	7 Oct 2009 16:22:36 -0000	1.71
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/maxima
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.70 2009/08/31 14:42:03 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.71 2009/10/07 16:22:36 nixnut Exp $
+
+  07 Oct 2009; nixnut <nixnut@gentoo.org> maxima-5.18.1.ebuild:
+  ppc stable #264649
 
 *maxima-5.19.2 (31 Aug 2009)
 



1.6                  sci-mathematics/maxima/maxima-5.18.1.ebuild

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

Index: maxima-5.18.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- maxima-5.18.1.ebuild	3 Aug 2009 21:38:07 -0000	1.5
+++ maxima-5.18.1.ebuild	7 Oct 2009 16:22:36 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v 1.5 2009/08/03 21:38:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v 1.6 2009/10/07 16:22:36 nixnut Exp $
 EAPI=2
 inherit eutils elisp-common
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2 AECA"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ppc ~sparc x86"
 
 # Supported lisps with readline
 SUPP_RL="gcl clisp"






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

* [gentoo-commits] gentoo-x86 commit in sci-mathematics/maxima: ChangeLog maxima-5.18.1.ebuild
@ 2009-12-26 16:05 Raul Porcel (armin76)
  0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2009-12-26 16:05 UTC (permalink / raw
  To: gentoo-commits

armin76     09/12/26 16:05:57

  Modified:             ChangeLog maxima-5.18.1.ebuild
  Log:
  sparc stable wrt #264649
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.74                 sci-mathematics/maxima/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	24 Dec 2009 14:13:42 -0000	1.73
+++ ChangeLog	26 Dec 2009 16:05:56 -0000	1.74
@@ -1,6 +1,9 @@
 # ChangeLog for sci-mathematics/maxima
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.73 2009/12/24 14:13:42 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.74 2009/12/26 16:05:56 armin76 Exp $
+
+  26 Dec 2009; Raúl Porcel <armin76@gentoo.org> maxima-5.18.1.ebuild:
+  sparc stable wrt #264649
 
   24 Dec 2009; Andrey Grozin <grozin@gentoo.org> maxima-5.20.1.ebuild:
   Restored ~ppc ~sparc keywords



1.7                  sci-mathematics/maxima/maxima-5.18.1.ebuild

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

Index: maxima-5.18.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- maxima-5.18.1.ebuild	7 Oct 2009 16:22:36 -0000	1.6
+++ maxima-5.18.1.ebuild	26 Dec 2009 16:05:56 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v 1.6 2009/10/07 16:22:36 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.18.1.ebuild,v 1.7 2009/12/26 16:05:56 armin76 Exp $
 EAPI=2
 inherit eutils elisp-common
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2 AECA"
 SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
+KEYWORDS="amd64 ppc sparc x86"
 
 # Supported lisps with readline
 SUPP_RL="gcl clisp"






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

end of thread, other threads:[~2009-12-26 16:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-19 22:03 [gentoo-commits] gentoo-x86 commit in sci-mathematics/maxima: ChangeLog maxima-5.18.1.ebuild Andrey Grozin (grozin)
  -- strict thread matches above, loose matches on Subject: below --
2009-07-21 16:37 Christian Faulhammer (fauli)
2009-08-03 21:38 Markus Meier (maekke)
2009-10-07 16:22 Gysbert Wassenaar (nixnut)
2009-12-26 16:05 Raul Porcel (armin76)

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