public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-mathematics/open-axiom/
@ 2013-12-29 10:11 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2013-12-29 10:11 UTC (permalink / raw
  To: gentoo-commits

commit:     d577482278bbadb32ce7f7731593c8a76adc81a0
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 29 10:10:54 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Dec 29 10:10:54 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d5774822

sci-mathematics/open-axiom: Drop src_install in favour of default and use DOCS

Package-Manager: portage-2.2.7

---
 sci-mathematics/open-axiom/ChangeLog               | 6 +++++-
 sci-mathematics/open-axiom/metadata.xml            | 4 ++--
 sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild | 7 ++-----
 3 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/sci-mathematics/open-axiom/ChangeLog b/sci-mathematics/open-axiom/ChangeLog
index f8d9884..ad2fb68 100644
--- a/sci-mathematics/open-axiom/ChangeLog
+++ b/sci-mathematics/open-axiom/ChangeLog
@@ -1,7 +1,11 @@
 # ChangeLog for sci-mathematics/open-axiom
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  29 Dec 2013; Justin Lecher <jlec@gentoo.org> open-axiom-1.4.2.ebuild,
+  metadata.xml:
+  Drop src_install in favour of default and use DOCS
+
 *open-axiom-1.3.0 (22 Jan 2010)
 
   22 Jan 2010; Sébastien Fabbro <bicatali@gentoo.org>

diff --git a/sci-mathematics/open-axiom/metadata.xml b/sci-mathematics/open-axiom/metadata.xml
index be6988b..7485722 100644
--- a/sci-mathematics/open-axiom/metadata.xml
+++ b/sci-mathematics/open-axiom/metadata.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<herd>sci-mathematics</herd>
-<longdescription lang="en">
+  <herd>sci-mathematics</herd>
+  <longdescription lang="en">
   OpenAxiom is an open source platform for symbolic, algebraic, and
   numerical computations. It offers an interactive environment, an expressive
   programming language, a compiler, a large set of mathematical libraries of

diff --git a/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild b/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
index ebcb994..972339a 100644
--- a/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
+++ b/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
@@ -19,6 +19,8 @@ DEPEND="${RDEPEND}
 	app-text/noweb
 	>=dev-lisp/sbcl-1.0.22"
 
+DOCS="MAINTAINERS TODO STYLES"
+
 src_configure() {
 	# There is an option to compile with other lisps. However:
 	# - gcl is getting obsolete and unmaintained and is hard masked
@@ -33,8 +35,3 @@ src_compile() {
 	# -j5 ok but -j30 sbcl stalled
 	emake -j1
 }
-
-src_install() {
-	emake DESTDIR="${D}" install
-	dodoc ChangeLog* NEWS README AUTHORS MAINTAINERS TODO STYLES
-}


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

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/open-axiom/
@ 2013-12-29 10:11 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2013-12-29 10:11 UTC (permalink / raw
  To: gentoo-commits

commit:     d6083b505183e3be523f0ce2f52c72556a8a34df
Author:     zcj <ustcscgy <AT> 163 <DOT> com>
AuthorDate: Sun Dec 29 00:26:58 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Dec 29 01:02:38 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d6083b50

sci-mathematics/open-axiom: version bump to 1.4.2

---
 sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild | 40 ++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild b/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
new file mode 100644
index 0000000..ebcb994
--- /dev/null
+++ b/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+DESCRIPTION="Symbolic and algebraic computations system"
+HOMEPAGE="http://www.open-axiom.org/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="X"
+
+RDEPEND="X? ( x11-libs/libXpm )"
+DEPEND="${RDEPEND}
+	app-text/noweb
+	>=dev-lisp/sbcl-1.0.22"
+
+src_configure() {
+	# There is an option to compile with other lisps. However:
+	# - gcl is getting obsolete and unmaintained and is hard masked
+	# - could not make it work with ecls
+	econf \
+		--with-lisp=sbcl \
+		$(use_with X x)
+}
+
+src_compile() {
+	# unfortunately could not track down the broken parallel build
+	# -j5 ok but -j30 sbcl stalled
+	emake -j1
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	dodoc ChangeLog* NEWS README AUTHORS MAINTAINERS TODO STYLES
+}


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

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/open-axiom/
@ 2015-06-08 12:19 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2015-06-08 12:19 UTC (permalink / raw
  To: gentoo-commits

commit:     08d6075144e65583739a6cfa4dbaaf6b380d1b6e
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Jun  8 11:40:59 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Jun  8 11:40:59 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=08d60751

sci-mathematics/open-axiom: Updating remote-id in metadata.xml

Package-Manager: portage-2.2.20

 sci-mathematics/open-axiom/ChangeLog    | 6 ++++--
 sci-mathematics/open-axiom/metadata.xml | 3 +++
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/open-axiom/ChangeLog b/sci-mathematics/open-axiom/ChangeLog
index ad2fb68..71aa09f 100644
--- a/sci-mathematics/open-axiom/ChangeLog
+++ b/sci-mathematics/open-axiom/ChangeLog
@@ -1,7 +1,10 @@
 # ChangeLog for sci-mathematics/open-axiom
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  08 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
+  sci-mathematics/open-axiom: Updating remote-id in metadata.xml
+
   29 Dec 2013; Justin Lecher <jlec@gentoo.org> open-axiom-1.4.2.ebuild,
   metadata.xml:
   Drop src_install in favour of default and use DOCS
@@ -11,4 +14,3 @@
   22 Jan 2010; Sébastien Fabbro <bicatali@gentoo.org>
   +open-axiom-1.3.0.ebuild, +metadata.xml:
   Initial experimental ebuild of open-axiom
-

diff --git a/sci-mathematics/open-axiom/metadata.xml b/sci-mathematics/open-axiom/metadata.xml
index 7485722..123d028 100644
--- a/sci-mathematics/open-axiom/metadata.xml
+++ b/sci-mathematics/open-axiom/metadata.xml
@@ -8,4 +8,7 @@
   programming language, a compiler, a large set of mathematical libraries of
   interest to researchers and practitioners of computational sciences.
 </longdescription>
+  <upstream>
+    <remote-id type="sourceforge">open-axiom</remote-id>
+  </upstream>
 </pkgmetadata>


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

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/open-axiom/
@ 2015-09-21 14:04 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2015-09-21 14:04 UTC (permalink / raw
  To: gentoo-commits

commit:     13759876f0bc80cdc97d4941eadf030cbf888319
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 21 14:02:03 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Sep 21 14:02:03 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=13759876

sci-mathematics/open-axiom: Fix SRC_URI

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 sci-mathematics/open-axiom/open-axiom-1.3.0.ebuild | 40 ----------------------
 sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild |  4 +--
 2 files changed, 2 insertions(+), 42 deletions(-)

diff --git a/sci-mathematics/open-axiom/open-axiom-1.3.0.ebuild b/sci-mathematics/open-axiom/open-axiom-1.3.0.ebuild
deleted file mode 100644
index ecfa7c1..0000000
--- a/sci-mathematics/open-axiom/open-axiom-1.3.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-
-DESCRIPTION="Symbolic and algebraic computations system"
-HOMEPAGE="http://www.open-axiom.org/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="X"
-
-RDEPEND="X? ( x11-libs/libXpm )"
-DEPEND="${RDEPEND}
-	app-text/noweb
-	>=dev-lisp/sbcl-1.0.22"
-
-src_configure() {
-	# There is an option to compile with other lisps. However:
-	# - gcl is getting obsolete and unmaintained and is hard masked
-	# - could not make it work with ecls
-	econf \
-		--with-lisp=sbcl \
-		$(use_with X x)
-}
-
-src_compile() {
-	# unfortunately could not track down the broken parallel build
-	# -j5 ok but -j30 sbcl stalled
-	emake -j1 || die "emake failed"
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die "emake install failed"
-	dodoc ChangeLog* NEWS README AUTHORS MAINTAINERS TODO STYLES
-}

diff --git a/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild b/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
index bf0db70..b4e5185 100644
--- a/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
+++ b/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -6,7 +6,7 @@ EAPI=5
 
 DESCRIPTION="Symbolic and algebraic computations system"
 HOMEPAGE="http://www.open-axiom.org/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${P}.tar.bz2"
 
 LICENSE="BSD"
 SLOT="0"


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

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/open-axiom/
@ 2018-04-02 20:26 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2018-04-02 20:26 UTC (permalink / raw
  To: gentoo-commits

commit:     47e64e1c34064dcdf511140d30a55de856473825
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  2 20:26:43 2018 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Apr  2 20:26:43 2018 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=47e64e1c

sci-mathematics/open-axiom: Broken deps, drop keyword

Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
Package-Manager: Portage-2.3.27, Repoman-2.3.9

 sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild b/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
index 77c3d0ee0..402e19eb2 100644
--- a/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
+++ b/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
 DESCRIPTION="Symbolic and algebraic computations system"
 HOMEPAGE="http://www.open-axiom.org/"
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${P}.tar.bz2"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
 
 IUSE="X"
 


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

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/open-axiom/
@ 2021-01-10 19:39 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-01-10 19:39 UTC (permalink / raw
  To: gentoo-commits

commit:     80430190326d3c224528f9106c0dc760786befc3
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Jan 10 19:39:10 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Jan 10 19:39:10 2021 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=80430190

sci-mathematics/open-axiom: add new snapshot

no keywords yet, because it doesn't compile

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 ...4.2.ebuild => open-axiom-1.4.2_p20180201.ebuild} | 21 ++++++++++-----------
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild b/sci-mathematics/open-axiom/open-axiom-1.4.2_p20180201.ebuild
similarity index 60%
rename from sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
rename to sci-mathematics/open-axiom/open-axiom-1.4.2_p20180201.ebuild
index 402e19eb2..8a0f64bd6 100644
--- a/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild
+++ b/sci-mathematics/open-axiom/open-axiom-1.4.2_p20180201.ebuild
@@ -1,11 +1,13 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
+
+COMMIT="d113f3f7ba119fecd9d946bced8d3dfe9456b933"
 
 DESCRIPTION="Symbolic and algebraic computations system"
-HOMEPAGE="http://www.open-axiom.org/"
-SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${P}.tar.bz2"
+HOMEPAGE="https://github.com/GabrielDosReis/open-axiom http://www.open-axiom.org/"
+SRC_URI="https://github.com/GabrielDosReis/open-axiom/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
@@ -16,10 +18,13 @@ IUSE="X"
 RDEPEND="X? ( x11-libs/libXpm )"
 DEPEND="${RDEPEND}
 	app-text/noweb
-	>=dev-lisp/sbcl-1.0.22"
+	>=dev-lisp/sbcl-1.0.22
+"
 
 DOCS="MAINTAINERS TODO STYLES"
 
+S="${WORKDIR}/${PN}-${COMMIT}"
+
 src_configure() {
 	# There is an option to compile with other lisps. However:
 	# - gcl is getting obsolete and unmaintained and is hard masked
@@ -28,9 +33,3 @@ src_configure() {
 		--with-lisp=sbcl \
 		$(use_with X x)
 }
-
-src_compile() {
-	# unfortunately could not track down the broken parallel build
-	# -j5 ok but -j30 sbcl stalled
-	emake -j1
-}


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

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/open-axiom/
@ 2021-02-04  9:16 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-02-04  9:16 UTC (permalink / raw
  To: gentoo-commits

commit:     103c34eaf3cd0292a1dddefeb70ee53a713e487a
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Feb  4 09:16:21 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Feb  4 09:16:21 2021 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=103c34ea

sci-mathematics/open-axiom: some steps towards fixing compilation

now I get: ../interp/interpsys: No such file or directory

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 sci-mathematics/open-axiom/open-axiom-1.4.2_p20180201.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-mathematics/open-axiom/open-axiom-1.4.2_p20180201.ebuild b/sci-mathematics/open-axiom/open-axiom-1.4.2_p20180201.ebuild
index 8a0f64bd6..d5c363ba6 100644
--- a/sci-mathematics/open-axiom/open-axiom-1.4.2_p20180201.ebuild
+++ b/sci-mathematics/open-axiom/open-axiom-1.4.2_p20180201.ebuild
@@ -18,7 +18,7 @@ IUSE="X"
 RDEPEND="X? ( x11-libs/libXpm )"
 DEPEND="${RDEPEND}
 	app-text/noweb
-	>=dev-lisp/sbcl-1.0.22
+	dev-lisp/ecls[cxx]
 "
 
 DOCS="MAINTAINERS TODO STYLES"
@@ -28,8 +28,8 @@ S="${WORKDIR}/${PN}-${COMMIT}"
 src_configure() {
 	# There is an option to compile with other lisps. However:
 	# - gcl is getting obsolete and unmaintained and is hard masked
-	# - could not make it work with ecls
+	# - could not make it work with sbcl
 	econf \
-		--with-lisp=sbcl \
+		--with-lisp=ecl \
 		$(use_with X x)
 }


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

* [gentoo-commits] proj/sci:master commit in: sci-mathematics/open-axiom/
@ 2022-01-24 19:51 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2022-01-24 19:51 UTC (permalink / raw
  To: gentoo-commits

commit:     4acf5ce61cdc3257f84d9f608fa382304965aa5a
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 24 17:35:58 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Jan 24 17:35:58 2022 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=4acf5ce6

sci-mathematics/open-axiom: remove dead package

Last release 2013, does not compile

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 sci-mathematics/open-axiom/metadata.xml            | 17 -----------
 .../open-axiom/open-axiom-1.4.2_p20180201.ebuild   | 35 ----------------------
 2 files changed, 52 deletions(-)

diff --git a/sci-mathematics/open-axiom/metadata.xml b/sci-mathematics/open-axiom/metadata.xml
deleted file mode 100644
index c9b1f5cd4..000000000
--- a/sci-mathematics/open-axiom/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>sci-mathematics@gentoo.org</email>
-		<name>Gentoo Mathematics Project</name>
-	</maintainer>
-	<longdescription lang="en">
-OpenAxiom is an open source platform for symbolic, algebraic, and
-numerical computations. It offers an interactive environment, an expressive
-programming language, a compiler, a large set of mathematical libraries of
-interest to researchers and practitioners of computational sciences.
-</longdescription>
-	<upstream>
-		<remote-id type="sourceforge">open-axiom</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/sci-mathematics/open-axiom/open-axiom-1.4.2_p20180201.ebuild b/sci-mathematics/open-axiom/open-axiom-1.4.2_p20180201.ebuild
deleted file mode 100644
index d5c363ba6..000000000
--- a/sci-mathematics/open-axiom/open-axiom-1.4.2_p20180201.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-COMMIT="d113f3f7ba119fecd9d946bced8d3dfe9456b933"
-
-DESCRIPTION="Symbolic and algebraic computations system"
-HOMEPAGE="https://github.com/GabrielDosReis/open-axiom http://www.open-axiom.org/"
-SRC_URI="https://github.com/GabrielDosReis/open-axiom/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS=""
-
-IUSE="X"
-
-RDEPEND="X? ( x11-libs/libXpm )"
-DEPEND="${RDEPEND}
-	app-text/noweb
-	dev-lisp/ecls[cxx]
-"
-
-DOCS="MAINTAINERS TODO STYLES"
-
-S="${WORKDIR}/${PN}-${COMMIT}"
-
-src_configure() {
-	# There is an option to compile with other lisps. However:
-	# - gcl is getting obsolete and unmaintained and is hard masked
-	# - could not make it work with sbcl
-	econf \
-		--with-lisp=ecl \
-		$(use_with X x)
-}


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

end of thread, other threads:[~2022-01-24 19:51 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-29 10:11 [gentoo-commits] proj/sci:master commit in: sci-mathematics/open-axiom/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2013-12-29 10:11 Justin Lecher
2015-06-08 12:19 Justin Lecher
2015-09-21 14:04 Justin Lecher
2018-04-02 20:26 Justin Lecher
2021-01-10 19:39 Andrew Ammerlaan
2021-02-04  9:16 Andrew Ammerlaan
2022-01-24 19:51 Andrew Ammerlaan

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