* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-symphony/
@ 2012-07-17 17:30 Sebastien Fabbro
0 siblings, 0 replies; 5+ messages in thread
From: Sebastien Fabbro @ 2012-07-17 17:30 UTC (permalink / raw
To: gentoo-commits
commit: 6ee703a2d609b7f0930b0d59ee414cc5a92511ee
Author: Sebastien Fabbro <sfabbro <AT> uvic <DOT> ca>
AuthorDate: Tue Jul 17 17:28:11 2012 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Tue Jul 17 17:28:11 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=6ee703a2
sci-libs/coinor-symphony: Initial import
(Portage version: 2.2.01.20757-prefix/git/Linux x86_64, unsigned Manifest commit)
---
sci-libs/coinor-symphony/ChangeLog | 9 ++
.../coinor-symphony/coinor-symphony-5.4.4.ebuild | 94 ++++++++++++++++++++
sci-libs/coinor-symphony/metadata.xml | 18 ++++
3 files changed, 121 insertions(+), 0 deletions(-)
diff --git a/sci-libs/coinor-symphony/ChangeLog b/sci-libs/coinor-symphony/ChangeLog
new file mode 100644
index 0000000..c4866cd
--- /dev/null
+++ b/sci-libs/coinor-symphony/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sci-libs/coinor-symphony
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*coinor-symphony-5.4.4 (17 Jul 2012)
+
+ 17 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org>
+ +coinor-symphony-5.4.4.ebuild, +metadata.xml:
+ sci-libs/coinor-symphony: Initial import
diff --git a/sci-libs/coinor-symphony/coinor-symphony-5.4.4.ebuild b/sci-libs/coinor-symphony/coinor-symphony-5.4.4.ebuild
new file mode 100644
index 0000000..56f33b1
--- /dev/null
+++ b/sci-libs/coinor-symphony/coinor-symphony-5.4.4.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit autotools-utils multilib
+
+MYPN=SYMPHONY
+
+DESCRIPTION="COIN-OR solver for mixed-integer linear programs"
+HOMEPAGE="https://projects.coin-or.org/SYMPHONY/"
+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-cgl
+ sci-libs/coinor-clp
+ sci-libs/coinor-dylp
+ sci-libs/coinor-osi
+ sci-libs/coinor-utils
+ sci-libs/coinor-vol
+ glpk? ( sci-mathematics/glpk )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? ( virtual/latex-base )
+ 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:\(libOsiSym_la_LIBADD.*=\).*:\1 $(top_builddir)/src/libSym.la:' \
+ src/OsiSym/Makefile.in || die
+ sed -i \
+ -e 's:\(libSym_la_LIBADD.*=\).*:\1 @SYMPHONYLIB_LIBS@:g' \
+ src/Makefile.in || die
+
+ # bug for later versions of subversions
+ sed -i \
+ -e 's/xexported/xexported -a "x$svn_rev_tmp" != "xUnversioned directory"/' \
+ configure || die
+}
+
+src_configure() {
+ local myeconfargs=()
+ 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() {
+ # hack for parallel build, to overcome not patching Makefile.am above
+ autotools-utils_src_compile -C src libSym.la
+ autotools-utils_src_compile
+ if use doc; then
+ pushd Doc /dev/null
+ pdflatex Walkthrough && pdflatex Walkthrough
+ # does not compile and doc is online
+ #pdflatex man && pdflatex man
+ popd > /dev/null
+ fi
+}
+
+src_test() {
+ pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die
+ emake test
+ popd > /dev/null || die
+}
+
+src_install() {
+ # hack for parallel install, to overcome not patching Makefile.am above
+ autotools-utils_src_install -C src install-am
+ autotools-utils_src_install
+ use doc && dodoc Doc/Walkthrough.pdf
+ # already installed
+ rm "${ED}"/usr/share/coin/doc/${MYPN}/{README,AUTHORS,LICENSE} || die
+ if use examples; then
+ insinto /usr/share/doc/${PF}/examples
+ doins -r Examples/*
+ fi
+}
diff --git a/sci-libs/coinor-symphony/metadata.xml b/sci-libs/coinor-symphony/metadata.xml
new file mode 100644
index 0000000..4940c67
--- /dev/null
+++ b/sci-libs/coinor-symphony/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<longdescription lang="en">
+ SYMPHONY is a generic mixed-integer linear programs
+ (MILP) solver, callable library, and extensible framework for implementing
+ customized solvers. SYMPHONY has a number of advanced capabilities,
+ including the ability to solve multi-objective MILPs, the ability to
+ warm start its solution procedure.
+ SYMPHONY is part of the larger COIN-OR initiative (Computational
+ Infrastructurefor Operations Research).
+</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-symphony/
@ 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: 2715a4b0e42cd4e8e90d2529bf207e9124af0597
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 29 20:14:27 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Tue Jan 29 20:14:27 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2715a4b0
sci-libs/coinor-symphony: Version bump
Package-Manager: portage-2.2.01.21688-prefix
---
sci-libs/coinor-symphony/ChangeLog | 8 +++++++-
...y-5.4.4.ebuild => coinor-symphony-5.4.6.ebuild} | 9 ++-------
2 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/sci-libs/coinor-symphony/ChangeLog b/sci-libs/coinor-symphony/ChangeLog
index c4866cd..fb79091 100644
--- a/sci-libs/coinor-symphony/ChangeLog
+++ b/sci-libs/coinor-symphony/ChangeLog
@@ -1,7 +1,13 @@
# ChangeLog for sci-libs/coinor-symphony
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*coinor-symphony-5.4.6 (29 Jan 2013)
+
+ 29 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org>
+ +coinor-symphony-5.4.6.ebuild, -coinor-symphony-5.4.4.ebuild:
+ sci-libs/coinor-symphony: Version bump
+
*coinor-symphony-5.4.4 (17 Jul 2012)
17 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org>
diff --git a/sci-libs/coinor-symphony/coinor-symphony-5.4.4.ebuild b/sci-libs/coinor-symphony/coinor-symphony-5.4.6.ebuild
similarity index 91%
rename from sci-libs/coinor-symphony/coinor-symphony-5.4.4.ebuild
rename to sci-libs/coinor-symphony/coinor-symphony-5.4.6.ebuild
index 56f33b1..06083e5 100644
--- a/sci-libs/coinor-symphony/coinor-symphony-5.4.4.ebuild
+++ b/sci-libs/coinor-symphony/coinor-symphony-5.4.6.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
@@ -41,11 +41,6 @@ src_prepare() {
sed -i \
-e 's:\(libSym_la_LIBADD.*=\).*:\1 @SYMPHONYLIB_LIBS@:g' \
src/Makefile.in || die
-
- # bug for later versions of subversions
- sed -i \
- -e 's/xexported/xexported -a "x$svn_rev_tmp" != "xUnversioned directory"/' \
- configure || die
}
src_configure() {
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-symphony/
@ 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: 33777583efa5a5936e28590c11ca927952083e72
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sun May 26 17:29:45 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sun May 26 17:29:45 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=33777583
sci-libs/coinor-symphony: Version bump
Package-Manager: portage-2.2.01.21938-prefix
RepoMan-Options: --force
---
sci-libs/coinor-symphony/ChangeLog | 6 ++++++
...y-5.4.6.ebuild => coinor-symphony-5.4.7.ebuild} | 0
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/sci-libs/coinor-symphony/ChangeLog b/sci-libs/coinor-symphony/ChangeLog
index fb79091..a670e0d 100644
--- a/sci-libs/coinor-symphony/ChangeLog
+++ b/sci-libs/coinor-symphony/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*coinor-symphony-5.4.7 (26 May 2013)
+
+ 26 May 2013; Sébastien Fabbro <bicatali@gentoo.org>
+ +coinor-symphony-5.4.7.ebuild, -coinor-symphony-5.4.6.ebuild:
+ sci-libs/coinor-symphony: Version bump
+
*coinor-symphony-5.4.6 (29 Jan 2013)
29 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org>
diff --git a/sci-libs/coinor-symphony/coinor-symphony-5.4.6.ebuild b/sci-libs/coinor-symphony/coinor-symphony-5.4.7.ebuild
similarity index 100%
rename from sci-libs/coinor-symphony/coinor-symphony-5.4.6.ebuild
rename to sci-libs/coinor-symphony/coinor-symphony-5.4.7.ebuild
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-symphony/
@ 2013-07-17 23:42 Sebastien Fabbro
0 siblings, 0 replies; 5+ messages in thread
From: Sebastien Fabbro @ 2013-07-17 23:42 UTC (permalink / raw
To: gentoo-commits
commit: fb748a43432eb3f32fb02111ecef77ba83cf18b8
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 17 19:14:57 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jul 17 19:14:57 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=fb748a43
sci-libs/coinor-symphony: Version bump
Package-Manager: portage-2.2.01.22124-prefix
RepoMan-Options: --force
---
sci-libs/coinor-symphony/ChangeLog | 6 ++++++
.../{coinor-symphony-5.4.7.ebuild => coinor-symphony-5.5.0.ebuild} | 0
2 files changed, 6 insertions(+)
diff --git a/sci-libs/coinor-symphony/ChangeLog b/sci-libs/coinor-symphony/ChangeLog
index a670e0d..fb5c52b 100644
--- a/sci-libs/coinor-symphony/ChangeLog
+++ b/sci-libs/coinor-symphony/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*coinor-symphony-5.5.0 (17 Jul 2013)
+
+ 17 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>
+ +coinor-symphony-5.5.0.ebuild, -coinor-symphony-5.4.7.ebuild:
+ sci-libs/coinor-symphony: Version bump
+
*coinor-symphony-5.4.7 (26 May 2013)
26 May 2013; Sébastien Fabbro <bicatali@gentoo.org>
diff --git a/sci-libs/coinor-symphony/coinor-symphony-5.4.7.ebuild b/sci-libs/coinor-symphony/coinor-symphony-5.5.0.ebuild
similarity index 100%
rename from sci-libs/coinor-symphony/coinor-symphony-5.4.7.ebuild
rename to sci-libs/coinor-symphony/coinor-symphony-5.5.0.ebuild
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/coinor-symphony/
@ 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: b0f52e0ca8058c220fe1ea8d4bc317882ca62d13
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 7 16:40:03 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sat Dec 7 16:40:03 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b0f52e0c
sci-libs/coinor-symphony: Version bump
Package-Manager: portage-2.2.7-prefix
---
sci-libs/coinor-symphony/ChangeLog | 6 ++++++
.../{coinor-symphony-5.5.0.ebuild => coinor-symphony-5.5.6.ebuild} | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/sci-libs/coinor-symphony/ChangeLog b/sci-libs/coinor-symphony/ChangeLog
index fb5c52b..7c916e9 100644
--- a/sci-libs/coinor-symphony/ChangeLog
+++ b/sci-libs/coinor-symphony/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*coinor-symphony-5.5.6 (07 Dec 2013)
+
+ 07 Dec 2013; Sébastien Fabbro <bicatali@gentoo.org>
+ +coinor-symphony-5.5.6.ebuild, -coinor-symphony-5.5.0.ebuild:
+ sci-libs/coinor-symphony: Version bump
+
*coinor-symphony-5.5.0 (17 Jul 2013)
17 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>
diff --git a/sci-libs/coinor-symphony/coinor-symphony-5.5.0.ebuild b/sci-libs/coinor-symphony/coinor-symphony-5.5.6.ebuild
similarity index 99%
rename from sci-libs/coinor-symphony/coinor-symphony-5.5.0.ebuild
rename to sci-libs/coinor-symphony/coinor-symphony-5.5.6.ebuild
index 5af9ff4..57b4088 100644
--- a/sci-libs/coinor-symphony/coinor-symphony-5.5.0.ebuild
+++ b/sci-libs/coinor-symphony/coinor-symphony-5.5.6.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://projects.coin-or.org/SYMPHONY/"
SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
LICENSE="EPL-1.0"
-SLOT="0"
+SLOT="0/3"
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:01 UTC | newest]
Thread overview: 5+ 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-symphony/ 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-17 17:30 Sebastien Fabbro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox