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

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

sci-libs/coinor-dylp: Initial import

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

---
 sci-libs/coinor-dylp/ChangeLog                |    9 +++
 sci-libs/coinor-dylp/coinor-dylp-1.8.3.ebuild |   66 +++++++++++++++++++++++++
 sci-libs/coinor-dylp/metadata.xml             |   12 +++++
 3 files changed, 87 insertions(+), 0 deletions(-)

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

diff --git a/sci-libs/coinor-dylp/coinor-dylp-1.8.3.ebuild b/sci-libs/coinor-dylp/coinor-dylp-1.8.3.ebuild
new file mode 100644
index 0000000..f62ad1a
--- /dev/null
+++ b/sci-libs/coinor-dylp/coinor-dylp-1.8.3.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit autotools-utils multilib
+
+MYPN=DyLP
+
+DESCRIPTION="COIN-OR using the dynamic simplex linear programming solver"
+HOMEPAGE="https://projects.coin-or.org/DyLP/"
+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 static-libs test"
+
+RDEPEND="sci-libs/coinor-osi"
+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:\(libOsiDylp_la_LIBADD.*=.*\)$:\1 $(top_builddir)/src/Dylp/libDylp.la @OSIDYLPLIB_LIBS@:g' \
+		src/OsiDylp/Makefile.in || die
+	sed -i \
+		-e 's:\(libDylpStdLib_la_LIBADD.*=.*\)$:\1 @DYLPLIB_LIBS@:g' \
+		src/DylpStdLib/Makefile.in || die
+}
+
+src_configure() {
+	local myeconfargs=(
+		$(use_with doc dot)
+	)
+	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-dylp/metadata.xml b/sci-libs/coinor-dylp/metadata.xml
new file mode 100644
index 0000000..148a97c
--- /dev/null
+++ b/sci-libs/coinor-dylp/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<longdescription lang="en">
+  DyLp is designed to find solutions of constrained linear mathematical
+  optimization problems. To this end, it is using a full implementation
+  of the so called dynamic simplex algorithm for linear programming.
+  DyLP is part of the larger COIN-OR initiative (Computational
+  Infrastructure for Operations Research).
+</longdescription>
+</pkgmetadata>



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

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

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

sci-libs/coinor-dylp: Version bump

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

---
 sci-libs/coinor-dylp/ChangeLog                                    | 8 +++++++-
 .../{coinor-dylp-1.8.3.ebuild => coinor-dylp-1.9.0.ebuild}        | 0
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/sci-libs/coinor-dylp/ChangeLog b/sci-libs/coinor-dylp/ChangeLog
index 1677e79..3a14b5a 100644
--- a/sci-libs/coinor-dylp/ChangeLog
+++ b/sci-libs/coinor-dylp/ChangeLog
@@ -1,7 +1,13 @@
 # ChangeLog for sci-libs/coinor-dylp
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*coinor-dylp-1.9.0 (17 Jul 2013)
+
+  17 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org> +coinor-dylp-1.9.0.ebuild,
+  -coinor-dylp-1.8.3.ebuild:
+  sci-libs/coinor-dylp: Version bump
+
 *coinor-dylp-1.8.3 (16 Jul 2012)
 
   16 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org> +coinor-dylp-1.8.3.ebuild,

diff --git a/sci-libs/coinor-dylp/coinor-dylp-1.8.3.ebuild b/sci-libs/coinor-dylp/coinor-dylp-1.9.0.ebuild
similarity index 100%
rename from sci-libs/coinor-dylp/coinor-dylp-1.8.3.ebuild
rename to sci-libs/coinor-dylp/coinor-dylp-1.9.0.ebuild


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

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

commit:     9c376bbe6673cd007bd09ddf91359b798ab132fc
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sat Dec  7 06:15:01 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sat Dec  7 06:15:01 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9c376bbe

sci-libs/coinor-dylp: Version bump

Package-Manager: portage-2.2.7-prefix

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

diff --git a/sci-libs/coinor-dylp/ChangeLog b/sci-libs/coinor-dylp/ChangeLog
index 3a14b5a..11d16e4 100644
--- a/sci-libs/coinor-dylp/ChangeLog
+++ b/sci-libs/coinor-dylp/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*coinor-dylp-1.9.3 (07 Dec 2013)
+
+  07 Dec 2013; Sébastien Fabbro <bicatali@gentoo.org> +coinor-dylp-1.9.3.ebuild,
+  -coinor-dylp-1.9.0.ebuild:
+  sci-libs/coinor-dylp: Version bump
+
 *coinor-dylp-1.9.0 (17 Jul 2013)
 
   17 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org> +coinor-dylp-1.9.0.ebuild,

diff --git a/sci-libs/coinor-dylp/coinor-dylp-1.9.0.ebuild b/sci-libs/coinor-dylp/coinor-dylp-1.9.3.ebuild
similarity index 99%
rename from sci-libs/coinor-dylp/coinor-dylp-1.9.0.ebuild
rename to sci-libs/coinor-dylp/coinor-dylp-1.9.3.ebuild
index 05cc679..d271e62 100644
--- a/sci-libs/coinor-dylp/coinor-dylp-1.9.0.ebuild
+++ b/sci-libs/coinor-dylp/coinor-dylp-1.9.3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://projects.coin-or.org/DyLP/"
 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 static-libs test"
 


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

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

Thread overview: 3+ 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-dylp/ Sebastien Fabbro
  -- strict thread matches above, loose matches on Subject: below --
2013-12-08  5:00 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