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-couenne/
Date: Sat, 27 Feb 2021 03:08:19
Message-Id: 1614395187.fe1f7057bf855106d25f3cc591958eaa6a00be51.sam@gentoo
1 commit: fe1f7057bf855106d25f3cc591958eaa6a00be51
2 Author: Ionen Wolkens <sudinave <AT> gmail <DOT> com>
3 AuthorDate: Fri Feb 26 08:38:31 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 03:06:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe1f7057
7
8 sci-libs/coinor-couenne: 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-couenne/Manifest | 1 -
15 .../coinor-couenne/coinor-couenne-0.4.7.ebuild | 59 ----------------------
16 2 files changed, 60 deletions(-)
17
18 diff --git a/sci-libs/coinor-couenne/Manifest b/sci-libs/coinor-couenne/Manifest
19 index ddca61f5d0e..fd39c9add36 100644
20 --- a/sci-libs/coinor-couenne/Manifest
21 +++ b/sci-libs/coinor-couenne/Manifest
22 @@ -1,2 +1 @@
23 -DIST Couenne-0.4.7.tgz 12487353 BLAKE2B 795a1d04ee6186e519d57a59ccc7dfa77ec28717b3e3f75d1ed6513438e869d69970c27dc0de758d421e7f5c5f2dfb3308270b185c05b44ef214c760b1f25e39 SHA512 ae87ebee778d6782fffe9e6f6c7c8f604140f6134e29824f89e4f87bb86ac00ac1b2d8de274b23de16078a48a1444fbe7960b15ffefdc1798dca8972a8946deb
24 DIST coinor-couenne-0.5.8.tar.gz 1321163 BLAKE2B 841a4af3d76fd308ef5abe481157fa1ecf307e7fae03fa0cb931483be74443febc7eb1ba7e85f47c3dca5d5447a74ae86dc0f3dbeb6c0f0032f543861462e0a1 SHA512 bf474503bd77be6536f9d00b40ff45041b3976ea2167d64e667fa580aa8ed6a383861ec67d57eec83623b6542f7779ed7d50d9b72347c3f77ef36a194a3f9e71
25
26 diff --git a/sci-libs/coinor-couenne/coinor-couenne-0.4.7.ebuild b/sci-libs/coinor-couenne/coinor-couenne-0.4.7.ebuild
27 deleted file mode 100644
28 index 02c94288b5a..00000000000
29 --- a/sci-libs/coinor-couenne/coinor-couenne-0.4.7.ebuild
30 +++ /dev/null
31 @@ -1,59 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -inherit autotools-utils multilib
38 -
39 -MYPN=Couenne
40 -
41 -DESCRIPTION="COIN-OR Convex Over and Under ENvelopes for Nonlinear Estimation"
42 -HOMEPAGE="https://projects.coin-or.org/Couenne/"
43 -SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
44 -
45 -LICENSE="EPL-1.0"
46 -SLOT="0/1"
47 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 -IUSE="doc static-libs test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND="sci-libs/coinor-bonmin:="
52 -DEPEND="${RDEPEND}
53 - virtual/pkgconfig"
54 -
55 -S="${WORKDIR}/${MYPN}-${PV}/${MYPN}"
56 -
57 -src_prepare() {
58 - # needed for the --with-coin-instdir
59 - dodir /usr
60 - sed -i \
61 - -e "s:lib/pkgconfig:$(get_libdir)/pkgconfig:g" \
62 - configure || die
63 - autotools-utils_src_prepare
64 -}
65 -
66 -src_configure() {
67 - local myeconfargs=(
68 - --enable-dependency-linking
69 - --with-coin-instdir="${ED}"/usr
70 - )
71 - autotools-utils_src_configure
72 -}
73 -
74 -src_compile() {
75 - autotools-utils_src_compile
76 - # resolve as-needed
77 - # circular dependencies between libCouenne and libBonCouenne :(
78 - pushd "${BUILD_DIR}"/src > /dev/null
79 - rm libCouenne.la main/libBonCouenne.la || die
80 - emake LIBS+=" -Lmain/.libs -lBonCouenne" libCouenne.la
81 - emake -C main
82 - popd > /dev/null
83 -}
84 -
85 -src_install() {
86 - autotools-utils_src_install
87 - use doc && dodoc doc/couenne-user-manual.pdf
88 - # already installed
89 - rm "${ED}"/usr/share/coin/doc/${MYPN}/{README,AUTHORS,LICENSE} || die
90 -}