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

commit:     9311a75f2b2b38fcd8d3a69f390d731707a29dd5
Author:     Sebastien Fabbro <sfabbro <AT> uvic <DOT> ca>
AuthorDate: Mon Jul 16 21:30:10 2012 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Mon Jul 16 21:30:10 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9311a75f

sci-libs/coinor-utils: Initial import

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

---
 sci-libs/coinor-utils/ChangeLog                 |    9 +++
 sci-libs/coinor-utils/coinor-utils-2.8.6.ebuild |   84 +++++++++++++++++++++++
 sci-libs/coinor-utils/metadata.xml              |   15 ++++
 3 files changed, 108 insertions(+), 0 deletions(-)

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

diff --git a/sci-libs/coinor-utils/coinor-utils-2.8.6.ebuild b/sci-libs/coinor-utils/coinor-utils-2.8.6.ebuild
new file mode 100644
index 0000000..7aaca9d
--- /dev/null
+++ b/sci-libs/coinor-utils/coinor-utils-2.8.6.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit autotools-utils multilib
+
+MYPN=CoinUtils
+
+DESCRIPTION="COIN-OR Matrix, Vector and other utility classes"
+HOMEPAGE="https://projects.coin-or.org/CoinUtils/"
+SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
+
+LICENSE="EPL-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="bzip2 doc glpk blas lapack static-libs test zlib"
+
+RDEPEND="sys-libs/readline
+	bzip2? ( app-arch/bzip2 )
+	blas? ( virtual/blas )
+	glpk? ( sci-mathematics/glpk )
+	lapack? ( virtual/lapack )
+	zlib? ( sys-libs/zlib )"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig
+	doc? ( app-doc/doxygen[dot] )
+	test? ( sci-libs/coinor-sample )"
+
+S="${WORKDIR}/${MYPN}-${PV}/${MYPN}"
+
+src_prepare() {
+	# as-needed fix
+	# hack to avoid eautoreconf (coinor has its own weird autotools)
+	sed -i \
+		-e 's:\(libCoinUtils_la_LIBADD.*=\).*:\1 @COINUTILSLIB_LIBS@:' \
+		src/Makefile.in || die
+}
+
+src_configure() {
+	local myeconfargs=(
+		$(use_enable zlib)
+		$(use_enable bzip2 bzlib)
+		$(use_with doc dot)
+	)
+	if use blas; then
+		myeconfargs+=( --with-blas-lib="$(pkg-config --libs blas)" )
+	else
+		myeconfargs+=( --without-blas )
+	fi
+	if use glpk; then
+		myeconfargs+=(
+			--with-glpk-incdir="${EPREFIX}"/usr/include
+			--with-glpk-lib=-lglpk
+		)
+	else
+		myeconfargs+=( --without-glpk )
+	fi
+	if use lapack; then
+		myeconfargs+=( --with-blas-lapack="$(pkg-config --libs lapack)" )
+	else
+		myeconfargs+=( --without-lapack )
+	fi
+	PKG_CONFIG_PATH+="${ED}"/usr/$(get_libdir)/pkgconfig \
+		autotools-utils_src_configure
+}
+
+src_compile() {
+	autotools-utils_src_compile all $(use doc && echo doxydoc)
+}
+
+src_test() {
+	pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die
+	emake test
+	popd > /dev/null || die
+}
+
+src_install() {
+	use doc && HTML_DOC=("${AUTOTOOLS_BUILD_DIR}/doxydocs/html/")
+	autotools-utils_src_install
+	# already installed
+	rm "${ED}"/usr/share/coin/doc/${MYPN}/{README,AUTHORS,LICENSE} || die
+}

diff --git a/sci-libs/coinor-utils/metadata.xml b/sci-libs/coinor-utils/metadata.xml
new file mode 100644
index 0000000..fd84b06
--- /dev/null
+++ b/sci-libs/coinor-utils/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<longdescription lang="en">
+  CoinUtils (Coin-or Utilities) is a collection of classes that are
+  generally useful to COmputational INfrastructure for Operations
+  Research (COIN-OR) projects. These include vector, matrix, mps file
+  reading classes.
+</longdescription>
+<use>
+  <flag name='glpk'>Enable GNU Linear Programming Kit
+  <pkg>sci-mathematics/glpk</pkg> support</flag>
+</use>
+</pkgmetadata>



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

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

commit:     f55bf0989ee536fab8c0e46a76b9f677fe425235
Author:     Sebastien Fabbro <sfabbro <AT> uvic <DOT> ca>
AuthorDate: Mon Jul 16 23:19:07 2012 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Mon Jul 16 23:19:07 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f55bf098

syntax error in passing lapack

---
 sci-libs/coinor-utils/coinor-utils-2.8.6.ebuild |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sci-libs/coinor-utils/coinor-utils-2.8.6.ebuild b/sci-libs/coinor-utils/coinor-utils-2.8.6.ebuild
index 7aaca9d..01afcb6 100644
--- a/sci-libs/coinor-utils/coinor-utils-2.8.6.ebuild
+++ b/sci-libs/coinor-utils/coinor-utils-2.8.6.ebuild
@@ -58,7 +58,7 @@ src_configure() {
 		myeconfargs+=( --without-glpk )
 	fi
 	if use lapack; then
-		myeconfargs+=( --with-blas-lapack="$(pkg-config --libs lapack)" )
+		myeconfargs+=( --with-lapack="$(pkg-config --libs lapack)" )
 	else
 		myeconfargs+=( --without-lapack )
 	fi



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

* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-utils/
@ 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:     8d74523f0e852a63da058b001627686f7234d6dc
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 29 20:16:38 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Tue Jan 29 20:16:38 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8d74523f

sci-libs/coinor-utils: Version bump

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

---
 sci-libs/coinor-utils/ChangeLog                    |    8 +++++++-
 ...tils-2.8.6.ebuild => coinor-utils-2.8.8.ebuild} |   13 +++++++------
 2 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/sci-libs/coinor-utils/ChangeLog b/sci-libs/coinor-utils/ChangeLog
index b7f1927..ef6030c 100644
--- a/sci-libs/coinor-utils/ChangeLog
+++ b/sci-libs/coinor-utils/ChangeLog
@@ -1,7 +1,13 @@
 # ChangeLog for sci-libs/coinor-utils
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*coinor-utils-2.8.8 (29 Jan 2013)
+
+  29 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org>
+  +coinor-utils-2.8.8.ebuild, -coinor-utils-2.8.6.ebuild:
+  sci-libs/coinor-utils: Version bump
+
 *coinor-utils-2.8.6 (16 Jul 2012)
 
   16 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org>

diff --git a/sci-libs/coinor-utils/coinor-utils-2.8.6.ebuild b/sci-libs/coinor-utils/coinor-utils-2.8.8.ebuild
similarity index 86%
rename from sci-libs/coinor-utils/coinor-utils-2.8.6.ebuild
rename to sci-libs/coinor-utils/coinor-utils-2.8.8.ebuild
index 01afcb6..8109add 100644
--- a/sci-libs/coinor-utils/coinor-utils-2.8.6.ebuild
+++ b/sci-libs/coinor-utils/coinor-utils-2.8.8.ebuild
@@ -1,10 +1,10 @@
-# 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
+inherit autotools-utils multilib toolchain-funcs
 
 MYPN=CoinUtils
 
@@ -17,7 +17,8 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="bzip2 doc glpk blas lapack static-libs test zlib"
 
-RDEPEND="sys-libs/readline
+RDEPEND="
+	sys-libs/readline
 	bzip2? ( app-arch/bzip2 )
 	blas? ( virtual/blas )
 	glpk? ( sci-mathematics/glpk )
@@ -45,7 +46,7 @@ src_configure() {
 		$(use_with doc dot)
 	)
 	if use blas; then
-		myeconfargs+=( --with-blas-lib="$(pkg-config --libs blas)" )
+		myeconfargs+=( --with-blas-lib="$($(tc-getPKG_CONFIG) --libs blas)" )
 	else
 		myeconfargs+=( --without-blas )
 	fi
@@ -58,7 +59,7 @@ src_configure() {
 		myeconfargs+=( --without-glpk )
 	fi
 	if use lapack; then
-		myeconfargs+=( --with-lapack="$(pkg-config --libs lapack)" )
+		myeconfargs+=( --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" )
 	else
 		myeconfargs+=( --without-lapack )
 	fi


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-utils/
@ 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:     c5b8431e01dffd0f5f5d6a40189ab4434638023d
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sun May 26 15:59:37 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sun May 26 15:59:37 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c5b8431e

sci-libs/coinor-utils: Version bump

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

---
 sci-libs/coinor-utils/ChangeLog                    |    6 ++++++
 ...tils-2.8.8.ebuild => coinor-utils-2.9.0.ebuild} |    1 +
 2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/sci-libs/coinor-utils/ChangeLog b/sci-libs/coinor-utils/ChangeLog
index ef6030c..95a45ee 100644
--- a/sci-libs/coinor-utils/ChangeLog
+++ b/sci-libs/coinor-utils/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*coinor-utils-2.9.0 (26 May 2013)
+
+  26 May 2013; Sébastien Fabbro <bicatali@gentoo.org>
+  +coinor-utils-2.9.0.ebuild, -coinor-utils-2.8.8.ebuild:
+  sci-libs/coinor-utils: Version bump
+
 *coinor-utils-2.8.8 (29 Jan 2013)
 
   29 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org>

diff --git a/sci-libs/coinor-utils/coinor-utils-2.8.8.ebuild b/sci-libs/coinor-utils/coinor-utils-2.9.0.ebuild
similarity index 98%
rename from sci-libs/coinor-utils/coinor-utils-2.8.8.ebuild
rename to sci-libs/coinor-utils/coinor-utils-2.9.0.ebuild
index 8109add..24515f2 100644
--- a/sci-libs/coinor-utils/coinor-utils-2.8.8.ebuild
+++ b/sci-libs/coinor-utils/coinor-utils-2.9.0.ebuild
@@ -4,6 +4,7 @@
 
 EAPI=5
 
+AUTOTOOLS_IN_SOURCE_BUILD=yes
 inherit autotools-utils multilib toolchain-funcs
 
 MYPN=CoinUtils


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

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

commit:     f24d01882b5ed0c13fb9f14fc0120f88483d2679
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Jul  3 16:57:11 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jul  3 16:57:11 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f24d0188

sci-libs/coinor-utils: Version bump

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

---
 sci-libs/coinor-utils/ChangeLog                                     | 6 ++++++
 .../{coinor-utils-2.9.0.ebuild => coinor-utils-2.9.1.ebuild}        | 0
 2 files changed, 6 insertions(+)

diff --git a/sci-libs/coinor-utils/ChangeLog b/sci-libs/coinor-utils/ChangeLog
index 95a45ee..b6b8f71 100644
--- a/sci-libs/coinor-utils/ChangeLog
+++ b/sci-libs/coinor-utils/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*coinor-utils-2.9.1 (03 Jul 2013)
+
+  03 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>
+  +coinor-utils-2.9.1.ebuild, -coinor-utils-2.9.0.ebuild:
+  sci-libs/coinor-utils: Version bump
+
 *coinor-utils-2.9.0 (26 May 2013)
 
   26 May 2013; Sébastien Fabbro <bicatali@gentoo.org>

diff --git a/sci-libs/coinor-utils/coinor-utils-2.9.0.ebuild b/sci-libs/coinor-utils/coinor-utils-2.9.1.ebuild
similarity index 100%
rename from sci-libs/coinor-utils/coinor-utils-2.9.0.ebuild
rename to sci-libs/coinor-utils/coinor-utils-2.9.1.ebuild


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

* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-utils/
@ 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:     fe40b6da39c177c908c1536c71a5ee49700e038c
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 17 19:05:22 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jul 17 19:05:22 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=fe40b6da

sci-libs/coinor-utils: Version bump

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

---
 sci-libs/coinor-utils/ChangeLog                                     | 6 ++++++
 .../{coinor-utils-2.9.1.ebuild => coinor-utils-2.9.3.ebuild}        | 0
 2 files changed, 6 insertions(+)

diff --git a/sci-libs/coinor-utils/ChangeLog b/sci-libs/coinor-utils/ChangeLog
index b6b8f71..0cb6fa5 100644
--- a/sci-libs/coinor-utils/ChangeLog
+++ b/sci-libs/coinor-utils/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*coinor-utils-2.9.3 (17 Jul 2013)
+
+  17 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>
+  +coinor-utils-2.9.3.ebuild, -coinor-utils-2.9.1.ebuild:
+  sci-libs/coinor-utils: Version bump
+
 *coinor-utils-2.9.1 (03 Jul 2013)
 
   03 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>

diff --git a/sci-libs/coinor-utils/coinor-utils-2.9.1.ebuild b/sci-libs/coinor-utils/coinor-utils-2.9.3.ebuild
similarity index 100%
rename from sci-libs/coinor-utils/coinor-utils-2.9.1.ebuild
rename to sci-libs/coinor-utils/coinor-utils-2.9.3.ebuild


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

end of thread, other threads:[~2013-07-17 23:42 UTC | newest]

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

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