commit:     84ac438bf42a71a9eb3589c0369c539f29d8e62a
Author:     Ionen Wolkens <sudinave <AT> gmail <DOT> com>
AuthorDate: Fri Feb 26 20:18:13 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 27 03:06:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84ac438b

sci-libs/coinor-alps: bump to 1.5.7, ported to EAPI 7

Has reworked old workarounds and reviewed deps.

USE=examples removed, now installed unconditionally (small files).
USE=static-libs removed.

Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Ionen Wolkens <sudinave <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-libs/coinor-alps/Manifest                 |  1 +
 sci-libs/coinor-alps/coinor-alps-1.5.7.ebuild | 51 +++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/sci-libs/coinor-alps/Manifest b/sci-libs/coinor-alps/Manifest
index 1e572a16a1c..30c0c754c55 100644
--- a/sci-libs/coinor-alps/Manifest
+++ b/sci-libs/coinor-alps/Manifest
@@ -1 +1,2 @@
 DIST Alps-1.5.4.tgz 5691940 BLAKE2B 
9a1d78d8957a4fd2156d35ba348f7db442bf6f6128031b9dd0d2b0c1176e5eb408208d3c90fb8563c39efbf0f4aaa9daea705f25ed711a922ab32f1e1d0b8027
 SHA512 
eace2f0e3dde682ee92b8e185ba6ea226a681dbcecb5fcf5258334e6deed89705b2c61821896b07323459fbd8575a31fa91c3342becbc9f6173efdf094d39555
+DIST coinor-alps-1.5.7.tar.gz 893834 BLAKE2B 
af881b9bd7db8b323ba7c7bd82f9180d3685a1b3d3b30b7b20c0d9c5d539caa8fb13e11b866f4f61e9baaf98d32e17953b3bdb408c32fc6aea20e3d83be57078
 SHA512 
7c3d838bfa8366f0a440dfe1cc9fbff1ca23e6528c3d89348fb4df8bab50b1a7c666523cde20ecd9f09ad54e599ffed1e6ed48631078dbd4d6885e2b10e9e495

diff --git a/sci-libs/coinor-alps/coinor-alps-1.5.7.ebuild 
b/sci-libs/coinor-alps/coinor-alps-1.5.7.ebuild
new file mode 100644
index 00000000000..d4c00fae930
--- /dev/null
+++ b/sci-libs/coinor-alps/coinor-alps-1.5.7.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="COIN-OR Framework for implementing parallel graph search 
algorithms"
+HOMEPAGE="https://projects.coin-or.org/CHiPPS/";
+SRC_URI="https://github.com/coin-or/CHiPPS-ALPS/archive/releases/${PV}.tar.gz 
-> ${P}.tar.gz"
+S="${WORKDIR}/CHiPPS-ALPS-releases-${PV}/Alps"
+
+LICENSE="EPL-1.0"
+SLOT="0" # formerly 0/3, upstream went from so.3 to so.0
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="sci-libs/coinor-utils:="
+DEPEND="${RDEPEND}"
+BDEPEND="
+       virtual/pkgconfig
+       doc? ( app-doc/doxygen[dot] )
+       test? ( sci-libs/coinor-cgl )"
+
+src_prepare() {
+       default
+       # Prevent unneeded call to pkg-config that needs ${ED}'s in path.
+       sed -i '/--libs.*addlibs.txt/d' Makefile.in || die
+}
+
+src_configure() {
+       econf $(use_with doc dot)
+}
+
+src_compile() {
+       emake all $(usex doc doxydoc '')
+}
+
+src_test() {
+       # Needed given "make check" is a noop and it skips the working one.
+       emake test
+}
+
+src_install() {
+       default
+       dodoc -r examples
+       use doc && dodoc -r doxydoc/html
+
+       # Duplicate or irrelevant files.
+       rm -r "${ED}"/usr/share/coin/doc || die
+       find "${ED}" -name '*.la' -delete || die
+}

Reply via email to