Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/coinor-alps/
Date: Sat, 27 Feb 2021 03:08:26
Message-Id: 1614395205.a6f0afcd8bffe43a4d49265e3ef7a2b3bf91d235.sam@gentoo
1 commit: a6f0afcd8bffe43a4d49265e3ef7a2b3bf91d235
2 Author: Ionen Wolkens <sudinave <AT> gmail <DOT> com>
3 AuthorDate: Fri Feb 26 20:18:28 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 03:06:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6f0afcd
7
8 sci-libs/coinor-alps: remove old
9
10 Package-Manager: Portage-3.0.15, Repoman-3.0.2
11 Signed-off-by: Ionen Wolkens <sudinave <AT> gmail.com>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 sci-libs/coinor-alps/Manifest | 1 -
15 sci-libs/coinor-alps/coinor-alps-1.5.4.ebuild | 62 ---------------------------
16 2 files changed, 63 deletions(-)
17
18 diff --git a/sci-libs/coinor-alps/Manifest b/sci-libs/coinor-alps/Manifest
19 index 30c0c754c55..ac4d5e0e894 100644
20 --- a/sci-libs/coinor-alps/Manifest
21 +++ b/sci-libs/coinor-alps/Manifest
22 @@ -1,2 +1 @@
23 -DIST Alps-1.5.4.tgz 5691940 BLAKE2B 9a1d78d8957a4fd2156d35ba348f7db442bf6f6128031b9dd0d2b0c1176e5eb408208d3c90fb8563c39efbf0f4aaa9daea705f25ed711a922ab32f1e1d0b8027 SHA512 eace2f0e3dde682ee92b8e185ba6ea226a681dbcecb5fcf5258334e6deed89705b2c61821896b07323459fbd8575a31fa91c3342becbc9f6173efdf094d39555
24 DIST coinor-alps-1.5.7.tar.gz 893834 BLAKE2B af881b9bd7db8b323ba7c7bd82f9180d3685a1b3d3b30b7b20c0d9c5d539caa8fb13e11b866f4f61e9baaf98d32e17953b3bdb408c32fc6aea20e3d83be57078 SHA512 7c3d838bfa8366f0a440dfe1cc9fbff1ca23e6528c3d89348fb4df8bab50b1a7c666523cde20ecd9f09ad54e599ffed1e6ed48631078dbd4d6885e2b10e9e495
25
26 diff --git a/sci-libs/coinor-alps/coinor-alps-1.5.4.ebuild b/sci-libs/coinor-alps/coinor-alps-1.5.4.ebuild
27 deleted file mode 100644
28 index fec354dd49a..00000000000
29 --- a/sci-libs/coinor-alps/coinor-alps-1.5.4.ebuild
30 +++ /dev/null
31 @@ -1,62 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit eutils ltprune
38 -
39 -MYPN=Alps
40 -
41 -DESCRIPTION="COIN-OR Framework for implementing parallel graph search algorithms"
42 -HOMEPAGE="https://projects.coin-or.org/CHiPPS/"
43 -SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
44 -
45 -LICENSE="CPL-1.0"
46 -SLOT="0/3"
47 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 -IUSE="doc examples static-libs test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND="
52 - sci-libs/coinor-utils:=
53 - sci-libs/coinor-clp:="
54 -DEPEND="${RDEPEND}
55 - virtual/pkgconfig
56 - doc? ( app-doc/doxygen[dot] )
57 - test? ( sci-libs/coinor-sample sci-libs/coinor-cgl )"
58 -
59 -S="${WORKDIR}/${MYPN}-${PV}/${MYPN}"
60 -
61 -src_prepare() {
62 - default
63 - # as-needed fix
64 - # hack to avoid eautoreconf (coinor has its own weird autotools)
65 - sed -i \
66 - -e 's:\(libAlps_la_LIBADD.*=\).*:\1 @ALPSLIB_LIBS@:g' \
67 - src/Makefile.in || die
68 - # bug for later versions of subversions
69 - sed -i \
70 - -e 's/xexported/xexported -a "x$svn_rev_tmp" != "xUnversioned directory"/' \
71 - configure || die
72 -}
73 -
74 -src_configure() {
75 - PKG_CONFIG_PATH+="${ED}"/usr/$(get_libdir)/pkgconfig
76 - export PKG_CONFIG_PATH
77 - econf \
78 - --enable-dependency-linking \
79 - $(use_with doc dot) \
80 - $(use_enable static-libs static)
81 -}
82 -
83 -src_compile() {
84 - emake all $(usex doc doxydoc "")
85 -}
86 -
87 -src_install() {
88 - default
89 - use examples && dodoc -r examples/
90 - use doc && dodoc -r doxydoc/html/
91 -
92 - prune_libtool_files --all
93 -}