public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-libs/adolc/
@ 2012-06-28 23:32 Sebastien Fabbro
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro @ 2012-06-28 23:32 UTC (permalink / raw
  To: gentoo-commits

commit:     54d4f130bba953f8d3c80683b77425b04e215ef6
Author:     Sébastien Fabbro <sebfabbro <AT> gmail <DOT> com>
AuthorDate: Thu Jun 28 23:28:30 2012 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Jun 28 23:28:30 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=54d4f130

initial import

---
 sci-libs/adolc/ChangeLog          |   17 +++++++++++++++++
 sci-libs/adolc/adolc-2.3.0.ebuild |   37 +++++++++++++++++++++++++++++++++++++
 sci-libs/adolc/metadata.xml       |   11 +++++++++++
 3 files changed, 65 insertions(+), 0 deletions(-)

diff --git a/sci-libs/adolc/ChangeLog b/sci-libs/adolc/ChangeLog
new file mode 100644
index 0000000..1ea2f37
--- /dev/null
+++ b/sci-libs/adolc/ChangeLog
@@ -0,0 +1,17 @@
+# ChangeLog for sci-libs/adolc
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*adolc-2.3.0 (28 Jun 2012)
+
+  28 Jun 2012; Sébastien Fabbro <bicatali@gentoo.org> +adolc-2.3.0.ebuild,
+  +metadata.xml:
+  Version bump and import to the sci overlay
+
+*adolc-2.1.12 (30 Mar 2011)
+
+  30 Mar 2011; Sébastien Fabbro <bicatali@gentoo.org> +adolc-2.1.12.ebuild,
+  +files/adolc-2.1.12-autotools.patch, +files/adolc-2.1.12-sparse-openmp.patch,
+  +metadata.xml:
+  Initial import
+

diff --git a/sci-libs/adolc/adolc-2.3.0.ebuild b/sci-libs/adolc/adolc-2.3.0.ebuild
new file mode 100644
index 0000000..44a09d8
--- /dev/null
+++ b/sci-libs/adolc/adolc-2.3.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+AUTOTOOLS_AUTORECONF=yes
+AUTOTOOLS_IN_SOURCE_BUILD=yes
+inherit autotools-utils toolchain-funcs
+
+MYPN=ADOL-C
+
+DESCRIPTION="Automatic differentiation system for C/C++"
+HOMEPAGE="https://projects.coin-or.org/ADOL-C/"
+SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
+
+LICENSE="|| ( CPL GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="sparse static-libs"
+
+RDEPEND="sparse? ( sci-libs/colpack )"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MYPN}-${PV}"
+
+src_configure() {
+	 local myeconfargs+=(
+		 $(use_enable sparse)
+		 $(use_with sparse colpack "${EPREFIX}"/usr)
+	 )
+	 autotools-utils_src_configure
+}
+
+src_test() {
+	emake test
+}

diff --git a/sci-libs/adolc/metadata.xml b/sci-libs/adolc/metadata.xml
new file mode 100644
index 0000000..e5dda79
--- /dev/null
+++ b/sci-libs/adolc/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<longdescription lang="en">
+  The ADOLC system automatically calculates exact derivatives of a
+  C/C++ function.  It uses C++ overloading to record arithmetic
+  operations, which it plays back later in various ways to calculate
+  the requested values.
+</longdescription>
+</pkgmetadata>



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

* [gentoo-commits] proj/sci:master commit in: sci-libs/adolc/
@ 2012-06-28 23:32 Sebastien Fabbro
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro @ 2012-06-28 23:32 UTC (permalink / raw
  To: gentoo-commits

commit:     3a75c79ec1f1338662ce8e8a8025a9aa64768734
Author:     Sébastien Fabbro <sebfabbro <AT> gmail <DOT> com>
AuthorDate: Thu Jun 28 23:31:40 2012 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Jun 28 23:31:40 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=3a75c79e

fix license and add flag desc

---
 sci-libs/adolc/adolc-2.3.0.ebuild |    2 +-
 sci-libs/adolc/metadata.xml       |    3 +++
 2 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/sci-libs/adolc/adolc-2.3.0.ebuild b/sci-libs/adolc/adolc-2.3.0.ebuild
index 44a09d8..07c230c 100644
--- a/sci-libs/adolc/adolc-2.3.0.ebuild
+++ b/sci-libs/adolc/adolc-2.3.0.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="Automatic differentiation system for C/C++"
 HOMEPAGE="https://projects.coin-or.org/ADOL-C/"
 SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
 
-LICENSE="|| ( CPL GPL-2 )"
+LICENSE="|| ( EPL-1.0 GPL-2 )"
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="sparse static-libs"

diff --git a/sci-libs/adolc/metadata.xml b/sci-libs/adolc/metadata.xml
index e5dda79..7c103ed 100644
--- a/sci-libs/adolc/metadata.xml
+++ b/sci-libs/adolc/metadata.xml
@@ -8,4 +8,7 @@
   operations, which it plays back later in various ways to calculate
   the requested values.
 </longdescription>
+<use>
+  <flag name='sparse'>Add support for sparse matrix algebra with <pkg>sci-libs/colpack</pkg></flag>
+</use>
 </pkgmetadata>



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

* [gentoo-commits] proj/sci:master commit in: sci-libs/adolc/
@ 2012-07-09 18:47 Sebastien Fabbro
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro @ 2012-07-09 18:47 UTC (permalink / raw
  To: gentoo-commits

commit:     dd774bf6f7ab1ad912fca68a9bca59801970edea
Author:     Sebastien Fabbro <sfabbro <AT> uvic <DOT> ca>
AuthorDate: Mon Jul  9 18:47:00 2012 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Mon Jul  9 18:47:00 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=dd774bf6

sci-libs/adolc: to main tree

---
 sci-libs/adolc/ChangeLog          |   17 -----------------
 sci-libs/adolc/adolc-2.3.0.ebuild |   37 -------------------------------------
 sci-libs/adolc/metadata.xml       |   14 --------------
 3 files changed, 0 insertions(+), 68 deletions(-)

diff --git a/sci-libs/adolc/ChangeLog b/sci-libs/adolc/ChangeLog
deleted file mode 100644
index 1ea2f37..0000000
--- a/sci-libs/adolc/ChangeLog
+++ /dev/null
@@ -1,17 +0,0 @@
-# ChangeLog for sci-libs/adolc
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-*adolc-2.3.0 (28 Jun 2012)
-
-  28 Jun 2012; Sébastien Fabbro <bicatali@gentoo.org> +adolc-2.3.0.ebuild,
-  +metadata.xml:
-  Version bump and import to the sci overlay
-
-*adolc-2.1.12 (30 Mar 2011)
-
-  30 Mar 2011; Sébastien Fabbro <bicatali@gentoo.org> +adolc-2.1.12.ebuild,
-  +files/adolc-2.1.12-autotools.patch, +files/adolc-2.1.12-sparse-openmp.patch,
-  +metadata.xml:
-  Initial import
-

diff --git a/sci-libs/adolc/adolc-2.3.0.ebuild b/sci-libs/adolc/adolc-2.3.0.ebuild
deleted file mode 100644
index 07c230c..0000000
--- a/sci-libs/adolc/adolc-2.3.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-AUTOTOOLS_AUTORECONF=yes
-AUTOTOOLS_IN_SOURCE_BUILD=yes
-inherit autotools-utils toolchain-funcs
-
-MYPN=ADOL-C
-
-DESCRIPTION="Automatic differentiation system for C/C++"
-HOMEPAGE="https://projects.coin-or.org/ADOL-C/"
-SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
-
-LICENSE="|| ( EPL-1.0 GPL-2 )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="sparse static-libs"
-
-RDEPEND="sparse? ( sci-libs/colpack )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MYPN}-${PV}"
-
-src_configure() {
-	 local myeconfargs+=(
-		 $(use_enable sparse)
-		 $(use_with sparse colpack "${EPREFIX}"/usr)
-	 )
-	 autotools-utils_src_configure
-}
-
-src_test() {
-	emake test
-}

diff --git a/sci-libs/adolc/metadata.xml b/sci-libs/adolc/metadata.xml
deleted file mode 100644
index 7c103ed..0000000
--- a/sci-libs/adolc/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>sci</herd>
-<longdescription lang="en">
-  The ADOLC system automatically calculates exact derivatives of a
-  C/C++ function.  It uses C++ overloading to record arithmetic
-  operations, which it plays back later in various ways to calculate
-  the requested values.
-</longdescription>
-<use>
-  <flag name='sparse'>Add support for sparse matrix algebra with <pkg>sci-libs/colpack</pkg></flag>
-</use>
-</pkgmetadata>



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

end of thread, other threads:[~2012-07-09 21:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-28 23:32 [gentoo-commits] proj/sci:master commit in: sci-libs/adolc/ Sebastien Fabbro
  -- strict thread matches above, loose matches on Subject: below --
2012-06-28 23:32 Sebastien Fabbro
2012-07-09 18:47 Sebastien Fabbro

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