diff options
author | Ionen Wolkens <sudinave@gmail.com> | 2021-02-26 03:38:31 -0500 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-02-27 03:06:27 +0000 |
commit | fe1f7057bf855106d25f3cc591958eaa6a00be51 (patch) | |
tree | d30270605553da73148e493e1ff477b9b42ee63b /sci-libs/coinor-couenne | |
parent | sci-libs/coinor-couenne: bump to 0.5.8, ported to EAPI 7 (diff) | |
download | gentoo-fe1f7057bf855106d25f3cc591958eaa6a00be51.tar.gz gentoo-fe1f7057bf855106d25f3cc591958eaa6a00be51.tar.bz2 gentoo-fe1f7057bf855106d25f3cc591958eaa6a00be51.zip |
sci-libs/coinor-couenne: remove old
Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Ionen Wolkens <sudinave@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-libs/coinor-couenne')
-rw-r--r-- | sci-libs/coinor-couenne/Manifest | 1 | ||||
-rw-r--r-- | sci-libs/coinor-couenne/coinor-couenne-0.4.7.ebuild | 59 |
2 files changed, 0 insertions, 60 deletions
diff --git a/sci-libs/coinor-couenne/Manifest b/sci-libs/coinor-couenne/Manifest index ddca61f5d0eb..fd39c9add365 100644 --- a/sci-libs/coinor-couenne/Manifest +++ b/sci-libs/coinor-couenne/Manifest @@ -1,2 +1 @@ -DIST Couenne-0.4.7.tgz 12487353 BLAKE2B 795a1d04ee6186e519d57a59ccc7dfa77ec28717b3e3f75d1ed6513438e869d69970c27dc0de758d421e7f5c5f2dfb3308270b185c05b44ef214c760b1f25e39 SHA512 ae87ebee778d6782fffe9e6f6c7c8f604140f6134e29824f89e4f87bb86ac00ac1b2d8de274b23de16078a48a1444fbe7960b15ffefdc1798dca8972a8946deb DIST coinor-couenne-0.5.8.tar.gz 1321163 BLAKE2B 841a4af3d76fd308ef5abe481157fa1ecf307e7fae03fa0cb931483be74443febc7eb1ba7e85f47c3dca5d5447a74ae86dc0f3dbeb6c0f0032f543861462e0a1 SHA512 bf474503bd77be6536f9d00b40ff45041b3976ea2167d64e667fa580aa8ed6a383861ec67d57eec83623b6542f7779ed7d50d9b72347c3f77ef36a194a3f9e71 diff --git a/sci-libs/coinor-couenne/coinor-couenne-0.4.7.ebuild b/sci-libs/coinor-couenne/coinor-couenne-0.4.7.ebuild deleted file mode 100644 index 02c94288b5aa..000000000000 --- a/sci-libs/coinor-couenne/coinor-couenne-0.4.7.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools-utils multilib - -MYPN=Couenne - -DESCRIPTION="COIN-OR Convex Over and Under ENvelopes for Nonlinear Estimation" -HOMEPAGE="https://projects.coin-or.org/Couenne/" -SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz" - -LICENSE="EPL-1.0" -SLOT="0/1" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc static-libs test" -RESTRICT="!test? ( test )" - -RDEPEND="sci-libs/coinor-bonmin:=" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S="${WORKDIR}/${MYPN}-${PV}/${MYPN}" - -src_prepare() { - # needed for the --with-coin-instdir - dodir /usr - sed -i \ - -e "s:lib/pkgconfig:$(get_libdir)/pkgconfig:g" \ - configure || die - autotools-utils_src_prepare -} - -src_configure() { - local myeconfargs=( - --enable-dependency-linking - --with-coin-instdir="${ED}"/usr - ) - autotools-utils_src_configure -} - -src_compile() { - autotools-utils_src_compile - # resolve as-needed - # circular dependencies between libCouenne and libBonCouenne :( - pushd "${BUILD_DIR}"/src > /dev/null - rm libCouenne.la main/libBonCouenne.la || die - emake LIBS+=" -Lmain/.libs -lBonCouenne" libCouenne.la - emake -C main - popd > /dev/null -} - -src_install() { - autotools-utils_src_install - use doc && dodoc doc/couenne-user-manual.pdf - # already installed - rm "${ED}"/usr/share/coin/doc/${MYPN}/{README,AUTHORS,LICENSE} || die -} |