public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-cppad/
@ 2012-07-19 20:52 Sebastien Fabbro
  0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2012-07-19 20:52 UTC (permalink / raw
  To: gentoo-commits

commit:     7605f0a54003d27b28842562abb8f031be47a216
Author:     Sebastien Fabbro <sfabbro <AT> uvic <DOT> ca>
AuthorDate: Thu Jul 19 20:51:18 2012 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Jul 19 20:51:18 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7605f0a5

sci-libs/coinor-cppad: Initial import

(Portage version: 2.2.01.20757-prefix/git/Linux x86_64, unsigned Manifest commit)

---
 sci-libs/coinor-cppad/ChangeLog                    |    9 +++
 sci-libs/coinor-cppad/coinor-cppad-20120719.ebuild |   56 ++++++++++++++++++++
 sci-libs/coinor-cppad/metadata.xml                 |   14 +++++
 3 files changed, 79 insertions(+), 0 deletions(-)

diff --git a/sci-libs/coinor-cppad/ChangeLog b/sci-libs/coinor-cppad/ChangeLog
new file mode 100644
index 0000000..43376f0
--- /dev/null
+++ b/sci-libs/coinor-cppad/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sci-libs/coinor-cppad
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*coinor-cppad-20120719 (19 Jul 2012)
+
+  19 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org>
+  +coinor-cppad-20120719.ebuild, +metadata.xml:
+  sci-libs/coinor-cppad: Initial import

diff --git a/sci-libs/coinor-cppad/coinor-cppad-20120719.ebuild b/sci-libs/coinor-cppad/coinor-cppad-20120719.ebuild
new file mode 100644
index 0000000..bd98acb
--- /dev/null
+++ b/sci-libs/coinor-cppad/coinor-cppad-20120719.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit autotools-utils multilib
+
+MYP=cppad-${PV}
+
+DESCRIPTION="COIN-OR C++ Algorithmic Differentiation"
+HOMEPAGE="https://projects.coin-or.org/CppAD/"
+SRC_URI="http://www.coin-or.org/download/source/CppAD/${MYP}.gpl.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples test"
+
+RDEPEND="sci-libs/adolc
+	sci-libs/ipopt"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig
+	doc? ( app-doc/doxygen[dot] )"
+
+S="${WORKDIR}/${MYP}"
+
+src_configure() {
+	local myeconfargs=(
+		$(use doc Documentation)
+	)
+	autotools-utils_src_configure
+}
+
+src_compile() {
+	autotools-utils_src_compile
+	if use doc; then
+		./build.sh doxygen || die
+	fi
+}
+
+
+src_test() {
+	pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die
+	emake check test
+	popd > /dev/null || die
+}
+
+src_install() {
+	use doc && HTML_DOC=("${AUTOTOOLS_BUILD_DIR}/doxydocs/html/")
+	autotools-utils_src_install
+	if use examples; then
+		insinto /usr/share/doc/${PF}/examples
+		doins -r example/*
+	fi
+}

diff --git a/sci-libs/coinor-cppad/metadata.xml b/sci-libs/coinor-cppad/metadata.xml
new file mode 100644
index 0000000..b100a5b
--- /dev/null
+++ b/sci-libs/coinor-cppad/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<longdescription lang="en">
+  We refer to the step by step conversion from an algorithm that
+  computes function values to an algorithm that computes derivative
+  values as Algorithmic Differentiation (AD); often referred to as
+  automatic differentiation. Given a C++ algorithm that computes
+  function values, CppAD generates an algorithm that computes
+  corresponding derivative values (of arbitrary order using either
+  forward or reverse mode).
+</longdescription>
+</pkgmetadata>



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

* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-cppad/
@ 2013-01-29 22:30 Sebastien Fabbro
  0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2013-01-29 22:30 UTC (permalink / raw
  To: gentoo-commits

commit:     d4390382ebe22cbe28655df6b60945f30f0ead16
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 29 20:10:41 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Tue Jan 29 20:10:41 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d4390382

sci-libs/coinor-cppad: Version bump

Package-Manager: portage-2.2.01.21688-prefix

---
 sci-libs/coinor-cppad/ChangeLog                    |    8 +++++++-
 ...0120719.ebuild => coinor-cppad-20130127.ebuild} |    7 ++++---
 2 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/sci-libs/coinor-cppad/ChangeLog b/sci-libs/coinor-cppad/ChangeLog
index 43376f0..2ae1ebc 100644
--- a/sci-libs/coinor-cppad/ChangeLog
+++ b/sci-libs/coinor-cppad/ChangeLog
@@ -1,7 +1,13 @@
 # ChangeLog for sci-libs/coinor-cppad
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*coinor-cppad-20130127 (29 Jan 2013)
+
+  29 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org>
+  +coinor-cppad-20130127.ebuild, -coinor-cppad-20120719.ebuild:
+  sci-libs/coinor-cppad: Version bump
+
 *coinor-cppad-20120719 (19 Jul 2012)
 
   19 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org>

diff --git a/sci-libs/coinor-cppad/coinor-cppad-20120719.ebuild b/sci-libs/coinor-cppad/coinor-cppad-20130127.ebuild
similarity index 93%
rename from sci-libs/coinor-cppad/coinor-cppad-20120719.ebuild
rename to sci-libs/coinor-cppad/coinor-cppad-20130127.ebuild
index bd98acb..43c5816 100644
--- a/sci-libs/coinor-cppad/coinor-cppad-20120719.ebuild
+++ b/sci-libs/coinor-cppad/coinor-cppad-20130127.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 
 inherit autotools-utils multilib
 
@@ -17,7 +17,8 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
-RDEPEND="sci-libs/adolc
+RDEPEND="
+	sci-libs/adolc
 	sci-libs/ipopt"
 DEPEND="${RDEPEND}
 	virtual/pkgconfig


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-cppad/
@ 2013-03-03 17:52 Justin Lecher
  0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2013-03-03 17:52 UTC (permalink / raw
  To: gentoo-commits

commit:     c177ca367d82d1120000d3810c4257a2727f05a9
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Mar  3 16:15:13 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Mar  3 16:15:13 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c177ca36

sci-libs/coinor-cppad: Drop useless blank line

Package-Manager: portage-2.2.0_alpha164

---
 sci-libs/coinor-cppad/ChangeLog                    |    4 ++++
 sci-libs/coinor-cppad/coinor-cppad-20130127.ebuild |    7 ++-----
 sci-libs/coinor-cppad/metadata.xml                 |    4 ++--
 3 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/sci-libs/coinor-cppad/ChangeLog b/sci-libs/coinor-cppad/ChangeLog
index 2ae1ebc..032ebf6 100644
--- a/sci-libs/coinor-cppad/ChangeLog
+++ b/sci-libs/coinor-cppad/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  03 Mar 2013; Justin Lecher <jlec@gentoo.org> coinor-cppad-20130127.ebuild,
+  metadata.xml:
+  Drop useless blank line
+
 *coinor-cppad-20130127 (29 Jan 2013)
 
   29 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org>

diff --git a/sci-libs/coinor-cppad/coinor-cppad-20130127.ebuild b/sci-libs/coinor-cppad/coinor-cppad-20130127.ebuild
index 43c5816..168daa0 100644
--- a/sci-libs/coinor-cppad/coinor-cppad-20130127.ebuild
+++ b/sci-libs/coinor-cppad/coinor-cppad-20130127.ebuild
@@ -27,9 +27,7 @@ DEPEND="${RDEPEND}
 S="${WORKDIR}/${MYP}"
 
 src_configure() {
-	local myeconfargs=(
-		$(use doc Documentation)
-	)
+	local myeconfargs=( $(use doc Documentation) )
 	autotools-utils_src_configure
 }
 
@@ -40,7 +38,6 @@ src_compile() {
 	fi
 }
 
-
 src_test() {
 	pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die
 	emake check test
@@ -48,7 +45,7 @@ src_test() {
 }
 
 src_install() {
-	use doc && HTML_DOC=("${AUTOTOOLS_BUILD_DIR}/doxydocs/html/")
+	use doc && HTML_DOC=( "${AUTOTOOLS_BUILD_DIR}"/doxydocs/html/. )
 	autotools-utils_src_install
 	if use examples; then
 		insinto /usr/share/doc/${PF}/examples

diff --git a/sci-libs/coinor-cppad/metadata.xml b/sci-libs/coinor-cppad/metadata.xml
index b100a5b..d31eb17 100644
--- a/sci-libs/coinor-cppad/metadata.xml
+++ b/sci-libs/coinor-cppad/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</herd>
-<longdescription lang="en">
+  <herd>sci</herd>
+  <longdescription lang="en">
   We refer to the step by step conversion from an algorithm that
   computes function values to an algorithm that computes derivative
   values as Algorithmic Differentiation (AD); often referred to as


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-cppad/
@ 2013-05-26 17:38 Sebastien Fabbro
  0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2013-05-26 17:38 UTC (permalink / raw
  To: gentoo-commits

commit:     4137cdef41d3aca07db38d1131ae7f280e56fe30
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sun May 26 17:26:09 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sun May 26 17:26:09 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4137cdef

sci-libs/coinor-cppad: Version bump

Package-Manager: portage-2.2.01.21938-prefix
RepoMan-Options: --force

---
 sci-libs/coinor-cppad/ChangeLog                    |    6 ++++++
 ...0130127.ebuild => coinor-cppad-20130526.ebuild} |    0
 2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/sci-libs/coinor-cppad/ChangeLog b/sci-libs/coinor-cppad/ChangeLog
index 032ebf6..de9fd65 100644
--- a/sci-libs/coinor-cppad/ChangeLog
+++ b/sci-libs/coinor-cppad/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*coinor-cppad-20130526 (26 May 2013)
+
+  26 May 2013; Sébastien Fabbro <bicatali@gentoo.org>
+  +coinor-cppad-20130526.ebuild, -coinor-cppad-20130127.ebuild:
+  sci-libs/coinor-cppad: Version bump
+
   03 Mar 2013; Justin Lecher <jlec@gentoo.org> coinor-cppad-20130127.ebuild,
   metadata.xml:
   Drop useless blank line

diff --git a/sci-libs/coinor-cppad/coinor-cppad-20130127.ebuild b/sci-libs/coinor-cppad/coinor-cppad-20130526.ebuild
similarity index 100%
rename from sci-libs/coinor-cppad/coinor-cppad-20130127.ebuild
rename to sci-libs/coinor-cppad/coinor-cppad-20130526.ebuild


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-cppad/
@ 2013-07-17 23:42 Sebastien Fabbro
  0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2013-07-17 23:42 UTC (permalink / raw
  To: gentoo-commits

commit:     9f1f6486c3e458326aa4ef83beca41476288cd49
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 17 19:11:13 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jul 17 19:11:13 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9f1f6486

sci-libs/coinor-cppad: Version bump

Package-Manager: portage-2.2.01.22124-prefix
RepoMan-Options: --force

---
 sci-libs/coinor-cppad/ChangeLog                                     | 6 ++++++
 .../{coinor-cppad-20130526.ebuild => coinor-cppad-20130717.ebuild}  | 0
 2 files changed, 6 insertions(+)

diff --git a/sci-libs/coinor-cppad/ChangeLog b/sci-libs/coinor-cppad/ChangeLog
index de9fd65..804eec1 100644
--- a/sci-libs/coinor-cppad/ChangeLog
+++ b/sci-libs/coinor-cppad/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*coinor-cppad-20130717 (17 Jul 2013)
+
+  17 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>
+  +coinor-cppad-20130717.ebuild, -coinor-cppad-20130526.ebuild:
+  sci-libs/coinor-cppad: Version bump
+
 *coinor-cppad-20130526 (26 May 2013)
 
   26 May 2013; Sébastien Fabbro <bicatali@gentoo.org>

diff --git a/sci-libs/coinor-cppad/coinor-cppad-20130526.ebuild b/sci-libs/coinor-cppad/coinor-cppad-20130717.ebuild
similarity index 100%
rename from sci-libs/coinor-cppad/coinor-cppad-20130526.ebuild
rename to sci-libs/coinor-cppad/coinor-cppad-20130717.ebuild


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-cppad/
@ 2013-12-08  5:00 Sebastien Fabbro
  0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2013-12-08  5:00 UTC (permalink / raw
  To: gentoo-commits

commit:     639be70b0a9346c792f9e1b7ada41fd6c04c79d3
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sat Dec  7 16:20:36 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sat Dec  7 16:20:36 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=639be70b

sci-libs/coinor-cppad: Version bump

Package-Manager: portage-2.2.7-prefix

---
 sci-libs/coinor-cppad/ChangeLog                                     | 6 ++++++
 .../{coinor-cppad-20130717.ebuild => coinor-cppad-20131207.ebuild}  | 0
 2 files changed, 6 insertions(+)

diff --git a/sci-libs/coinor-cppad/ChangeLog b/sci-libs/coinor-cppad/ChangeLog
index 804eec1..8e2427f 100644
--- a/sci-libs/coinor-cppad/ChangeLog
+++ b/sci-libs/coinor-cppad/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*coinor-cppad-20131207 (07 Dec 2013)
+
+  07 Dec 2013; Sébastien Fabbro <bicatali@gentoo.org>
+  +coinor-cppad-20131207.ebuild, -coinor-cppad-20130717.ebuild:
+  sci-libs/coinor-cppad: Version bump
+
 *coinor-cppad-20130717 (17 Jul 2013)
 
   17 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>

diff --git a/sci-libs/coinor-cppad/coinor-cppad-20130717.ebuild b/sci-libs/coinor-cppad/coinor-cppad-20131207.ebuild
similarity index 100%
rename from sci-libs/coinor-cppad/coinor-cppad-20130717.ebuild
rename to sci-libs/coinor-cppad/coinor-cppad-20131207.ebuild


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

end of thread, other threads:[~2013-12-08  5:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-08  5:00 [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-cppad/ Sebastien Fabbro
  -- strict thread matches above, loose matches on Subject: below --
2013-07-17 23:42 Sebastien Fabbro
2013-05-26 17:38 Sebastien Fabbro
2013-03-03 17:52 Justin Lecher
2013-01-29 22:30 Sebastien Fabbro
2012-07-19 20:52 Sebastien Fabbro

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