diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-30 18:41:50 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-30 18:43:22 +0200 |
commit | c97304c8e3c9861d92e82b1aa9d0e4f64bc838e1 (patch) | |
tree | 049d6c7e6fdbed6b4312ad26147ec467f2e54307 /sci-libs/ipopt | |
parent | net-print/cups: Stabilize 2.4.2-r2 hppa, #867427 (diff) | |
download | gentoo-c97304c8e3c9861d92e82b1aa9d0e4f64bc838e1.tar.gz gentoo-c97304c8e3c9861d92e82b1aa9d0e4f64bc838e1.tar.bz2 gentoo-c97304c8e3c9861d92e82b1aa9d0e4f64bc838e1.zip |
sci-libs/ipopt: drop 3.12.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-libs/ipopt')
-rw-r--r-- | sci-libs/ipopt/Manifest | 1 | ||||
-rw-r--r-- | sci-libs/ipopt/ipopt-3.12.12.ebuild | 92 |
2 files changed, 0 insertions, 93 deletions
diff --git a/sci-libs/ipopt/Manifest b/sci-libs/ipopt/Manifest index 8004e88e371b..2b5d26909c54 100644 --- a/sci-libs/ipopt/Manifest +++ b/sci-libs/ipopt/Manifest @@ -1,2 +1 @@ -DIST Ipopt-3.12.12.tgz 4530034 BLAKE2B 8a8e24e4e5d8ad5bc1fcfa2de525e1e39c88a4c6dd77b51c0549249f517b3d6a1279e355a7cb606ebd8e606551031b653b78cd4d1cb51dd369e051ffa010011f SHA512 c543695feaa39a69b01e0025ebcd8a8772deb369ea1072f17da4ba34c1b522d322959067f3a6cfc40446e00c2e6dd2d6704a55623aba5d61dff44333727368cb DIST ipopt-3.14.4.tar.gz 1843885 BLAKE2B 83f6a983db282ced6e52237ff326c860a92df2c92dbd53db7581110d3003fd7b557a68453c74e48d780832d2c9c55d9eb4ea54e68f504c161952fce6bb81caaf SHA512 a27a08ae24c94da96efcfa236034cec79d79111d7dc9c028d808b412d5abb21495a0011f075a87db65b91ba69e191653552e7f99fe8da88c3b580d971eac3652 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 -} |