From 6cef603bfc4353c863a1a0b460a0aa882d2dc51c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 30 Aug 2022 22:49:20 +0100 Subject: gentoo auto-resync : 30:08:2022 - 22:49:20 --- sci-libs/ipopt/Manifest | 2 - sci-libs/ipopt/ipopt-3.12.12.ebuild | 92 ------------------------------------- 2 files changed, 94 deletions(-) delete mode 100644 sci-libs/ipopt/ipopt-3.12.12.ebuild (limited to 'sci-libs/ipopt') diff --git a/sci-libs/ipopt/Manifest b/sci-libs/ipopt/Manifest index db5add955e48..33108d3f8679 100644 --- a/sci-libs/ipopt/Manifest +++ b/sci-libs/ipopt/Manifest @@ -1,5 +1,3 @@ -DIST Ipopt-3.12.12.tgz 4530034 BLAKE2B 8a8e24e4e5d8ad5bc1fcfa2de525e1e39c88a4c6dd77b51c0549249f517b3d6a1279e355a7cb606ebd8e606551031b653b78cd4d1cb51dd369e051ffa010011f SHA512 c543695feaa39a69b01e0025ebcd8a8772deb369ea1072f17da4ba34c1b522d322959067f3a6cfc40446e00c2e6dd2d6704a55623aba5d61dff44333727368cb DIST ipopt-3.14.4.tar.gz 1843885 BLAKE2B 83f6a983db282ced6e52237ff326c860a92df2c92dbd53db7581110d3003fd7b557a68453c74e48d780832d2c9c55d9eb4ea54e68f504c161952fce6bb81caaf SHA512 a27a08ae24c94da96efcfa236034cec79d79111d7dc9c028d808b412d5abb21495a0011f075a87db65b91ba69e191653552e7f99fe8da88c3b580d971eac3652 -EBUILD ipopt-3.12.12.ebuild 2070 BLAKE2B 5499b8e25acd936d2e032e34f729715da09208ac6b162a029506c1fb514c3209df8a81b955adb4e6b6d30caf86de85667adfb73a801862241cf2427560596ad8 SHA512 a25e572863c12af79e1a22801bb71a0eaedd153bf6ef0d17e6d737716ac26c19a93397400eef46f3718ddfe5253ad92dda0696dda34a96648cfce847a4a1e8d5 EBUILD ipopt-3.14.4.ebuild 1739 BLAKE2B 34423fb9e7f814e03ddbefc5b4a69008f6de833e6826d98c21e8dd3ca89d018707f1cbf6d8eeb290a645cd6fcfc695990879e41f05eb4d563ab50075e627e4cb SHA512 defe9e435be58fd9b266bed01938dcfe54c8737b3e7a041b58eca30ca43a90638b014e4e3400a37434a7f4a4742dc5c140e62b7006b19a11bc24d50626e5735d MISC metadata.xml 967 BLAKE2B 8a3fc8addf0130148ddca1bcfb4732e1bf60b52d5de28e2ee6ce9b8e4352358424b39aa585ba177592b4a5744bf2f52e16ab393e2a80617333a48e385eb55a2d SHA512 aa538e824ce3cc926f28554dc268f6d109bebd382b35bb2db8aee75fa82cc81bf9171ace022aaf441602bf8b150fa7bf80ad04e4563d2c3b83e25d80d8780574 diff --git a/sci-libs/ipopt/ipopt-3.12.12.ebuild b/sci-libs/ipopt/ipopt-3.12.12.ebuild deleted file mode 100644 index c546084ce831..000000000000 --- a/sci-libs/ipopt/ipopt-3.12.12.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -FORTRAN_NEEDED="mumps" - -inherit fortran-2 toolchain-funcs - -MY_PN=${PN^} -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Interior-Point Optimizer for large-scale nonlinear optimization" -HOMEPAGE="https://projects.coin-or.org/Ipopt/" -SRC_URI="http://www.coin-or.org/download/source/${MY_PN}/${MY_P}.tgz" - -LICENSE="EPL-1.0 hsl? ( HSL )" -SLOT="0/1" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc examples hsl lapack mpi mumps static-libs test" -RESTRICT="test" # Fails to compile - -RDEPEND=" - virtual/blas - hsl? ( sci-libs/coinhsl:0= ) - lapack? ( virtual/lapack ) - mpi? ( virtual/mpi ) - mumps? ( sci-libs/mumps:0=[mpi=] )" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( app-doc/doxygen[dot] ) - test? ( sci-libs/coinor-sample sci-libs/mumps )" - -S="${WORKDIR}/${MY_PN}-${PV}/${MY_PN}" - -src_prepare() { - if use mpi ; then - export CXX=mpicxx FC=mpif77 F77=mpif77 CC=mpicc - fi - default -} - -src_configure() { - # needed for --with-coin-instdir - dodir /usr - local myeconfargs=( - --enable-dependency-linking - --with-blas-lib="$($(tc-getPKG_CONFIG) --libs blas)" - --with-coin-instdir="${ED%/}"/usr - $(use_with doc dot) - ) - - if use lapack; then - myeconfargs+=( --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" ) - else - myeconfargs+=( --without-lapack ) - fi - if use mumps; then - myeconfargs+=( - --with-mumps-incdir="${EPREFIX}"/usr/include$(usex mpi '' '/mpiseq') - --with-mumps-lib="-lmumps_common -ldmumps -lzmumps -lsmumps -lcmumps" ) - else - myeconfargs+=( --without-mumps ) - fi - if use hsl; then - myeconfargs+=( - --with-hsl-incdir="${EPREFIX}"/usr/include - --with-hsl-lib="$($(tc-getPKG_CONFIG) --libs coinhsl)" ) - else - myeconfargs+=( --without-hsl ) - fi - econf "${myeconfargs[@]}" -} - -src_compile() { - emake all - use doc && emake doxydoc -} - -src_test() { - emake test -} - -src_install() { - default - local HTML_DOCS DOCS - use doc && HTML_DOCS=("${S}/doxydoc/html/.") - use examples && DOCS+=( examples ) - einstalldocs - - rm -r "${ED%/}"/usr/share/coin || die -} -- cgit v1.2.3