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

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

sci-libs/coinor-osi: Initial import

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

---
 sci-libs/coinor-osi/ChangeLog                 |    9 +++
 sci-libs/coinor-osi/coinor-osi-0.105.3.ebuild |   75 +++++++++++++++++++++++++
 sci-libs/coinor-osi/metadata.xml              |   15 +++++
 3 files changed, 99 insertions(+), 0 deletions(-)

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

diff --git a/sci-libs/coinor-osi/coinor-osi-0.105.3.ebuild b/sci-libs/coinor-osi/coinor-osi-0.105.3.ebuild
new file mode 100644
index 0000000..cd3ea70
--- /dev/null
+++ b/sci-libs/coinor-osi/coinor-osi-0.105.3.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit autotools-utils multilib
+
+MYPN=Osi
+
+DESCRIPTION="COIN-OR Open Solver Interface"
+HOMEPAGE="https://projects.coin-or.org/Osi/"
+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="doc examples glpk static-libs test"
+
+RDEPEND="sci-libs/coinor-utils
+	glpk? ( sci-mathematics/glpk )"
+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:\(libOsi.*_la_LIBADD.*=\).*:\1 $(top_builddir)/src/Osi/libOsi.la:g' \
+		src/Osi*/Makefile.in || die
+	sed -i \
+		-e 's:\(libOsi_la_LIBADD.*=\).*:\1 @OSILIB_LIBS@:g' \
+		src/Osi/Makefile.in || die
+}
+
+src_configure() {
+	local myeconfargs=(
+		$(use_with doc dot)
+	)
+	if use glpk; then
+		myeconfargs+=(
+			--with-glpk-incdir="${EPREFIX}"/usr/include
+			--with-glpk-lib=-lglpk
+		)
+	else
+		myeconfargs+=( --without-glpk )
+	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
+	if use examples; then
+		insinto /usr/share/doc/${PF}
+		doins -r examples
+	fi
+}

diff --git a/sci-libs/coinor-osi/metadata.xml b/sci-libs/coinor-osi/metadata.xml
new file mode 100644
index 0000000..3bcaa06
--- /dev/null
+++ b/sci-libs/coinor-osi/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">
+  The COIN-OR Open Solver Interface is a uniform API for interacting with
+  callable solver libraries. It supports linear programming solvers as
+  well as the ability to "finish off" a mixed-integer problem calling the
+  solver library's MIP solver.
+</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] 5+ messages in thread

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

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

sci-libs/coinor-osi: Version bump

Package-Manager: portage-2.2.01.21688-prefix

---
 sci-libs/coinor-osi/ChangeLog                      |    8 +++++++-
 ...si-0.105.3.ebuild => coinor-osi-0.105.4.ebuild} |    7 ++++---
 2 files changed, 11 insertions(+), 4 deletions(-)

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

diff --git a/sci-libs/coinor-osi/coinor-osi-0.105.3.ebuild b/sci-libs/coinor-osi/coinor-osi-0.105.4.ebuild
similarity index 95%
rename from sci-libs/coinor-osi/coinor-osi-0.105.3.ebuild
rename to sci-libs/coinor-osi/coinor-osi-0.105.4.ebuild
index cd3ea70..b952e7e 100644
--- a/sci-libs/coinor-osi/coinor-osi-0.105.3.ebuild
+++ b/sci-libs/coinor-osi/coinor-osi-0.105.4.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 glpk static-libs test"
 
-RDEPEND="sci-libs/coinor-utils
+RDEPEND="
+	sci-libs/coinor-utils
 	glpk? ( sci-mathematics/glpk )"
 DEPEND="${RDEPEND}
 	virtual/pkgconfig


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

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

commit:     0902990739dcd3ae09dee4f631b43f6508d21a15
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sun May 26 16:07:06 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sun May 26 16:07:06 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=09029907

sci-libs/coinor-osi: Version bump

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

---
 sci-libs/coinor-osi/ChangeLog                      |    6 ++++++
 ...si-0.105.4.ebuild => coinor-osi-0.106.0.ebuild} |    1 +
 2 files changed, 7 insertions(+), 0 deletions(-)

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

diff --git a/sci-libs/coinor-osi/coinor-osi-0.105.4.ebuild b/sci-libs/coinor-osi/coinor-osi-0.106.0.ebuild
similarity index 98%
rename from sci-libs/coinor-osi/coinor-osi-0.105.4.ebuild
rename to sci-libs/coinor-osi/coinor-osi-0.106.0.ebuild
index b952e7e..e2daead 100644
--- a/sci-libs/coinor-osi/coinor-osi-0.105.4.ebuild
+++ b/sci-libs/coinor-osi/coinor-osi-0.106.0.ebuild
@@ -4,6 +4,7 @@
 
 EAPI=5
 
+AUTOTOOLS_IN_SOURCE_BUILD=yes
 inherit autotools-utils multilib
 
 MYPN=Osi


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

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

commit:     85cc42735d601eed6735b7349c00a332d2839c0a
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Jul  3 19:50:42 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jul  3 19:50:42 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=85cc4273

sci-libs/coinor-osi: Version bump

Package-Manager: portage-2.2.01.22097-prefix

---
 sci-libs/coinor-osi/ChangeLog                                       | 6 ++++++
 .../{coinor-osi-0.106.0.ebuild => coinor-osi-0.106.1.ebuild}        | 0
 2 files changed, 6 insertions(+)

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

diff --git a/sci-libs/coinor-osi/coinor-osi-0.106.0.ebuild b/sci-libs/coinor-osi/coinor-osi-0.106.1.ebuild
similarity index 100%
rename from sci-libs/coinor-osi/coinor-osi-0.106.0.ebuild
rename to sci-libs/coinor-osi/coinor-osi-0.106.1.ebuild


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

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

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

sci-libs/coinor-osi: Version bump

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

---
 sci-libs/coinor-osi/ChangeLog                                       | 6 ++++++
 .../{coinor-osi-0.106.1.ebuild => coinor-osi-0.106.4.ebuild}        | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/sci-libs/coinor-osi/ChangeLog b/sci-libs/coinor-osi/ChangeLog
index f939199..de2a756 100644
--- a/sci-libs/coinor-osi/ChangeLog
+++ b/sci-libs/coinor-osi/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*coinor-osi-0.106.4 (07 Dec 2013)
+
+  07 Dec 2013; Sébastien Fabbro <bicatali@gentoo.org>
+  +coinor-osi-0.106.4.ebuild, -coinor-osi-0.106.1.ebuild:
+  sci-libs/coinor-osi: Version bump
+
 *coinor-osi-0.106.1 (03 Jul 2013)
 
   03 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>

diff --git a/sci-libs/coinor-osi/coinor-osi-0.106.1.ebuild b/sci-libs/coinor-osi/coinor-osi-0.106.4.ebuild
similarity index 99%
rename from sci-libs/coinor-osi/coinor-osi-0.106.1.ebuild
rename to sci-libs/coinor-osi/coinor-osi-0.106.4.ebuild
index abd5a5c..a940c92 100644
--- a/sci-libs/coinor-osi/coinor-osi-0.106.1.ebuild
+++ b/sci-libs/coinor-osi/coinor-osi-0.106.4.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://projects.coin-or.org/Osi/"
 SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
 
 LICENSE="EPL-1.0"
-SLOT="0"
+SLOT="0/1"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples glpk static-libs test"
 


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

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

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-03 19:58 [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-osi/ Sebastien Fabbro
  -- strict thread matches above, loose matches on Subject: below --
2013-12-08  5:00 Sebastien Fabbro
2013-05-26 17:38 Sebastien Fabbro
2013-01-29 22:30 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