diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2021-01-17 12:50:51 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-01-17 12:50:51 +0100 |
commit | 96ea0c0b132a1c8d96773fbb3689d108be67051f (patch) | |
tree | adf1d55dfca9210cba6e22911ccce0adb186a18d /sci-libs | |
parent | dev-lang/php: stable 7.4.14 for sparc, bug #764314 (diff) | |
download | gentoo-96ea0c0b132a1c8d96773fbb3689d108be67051f.tar.gz gentoo-96ea0c0b132a1c8d96773fbb3689d108be67051f.tar.bz2 gentoo-96ea0c0b132a1c8d96773fbb3689d108be67051f.zip |
sci-libs/ipopt: Remove old
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/ipopt/Manifest | 2 | ||||
-rw-r--r-- | sci-libs/ipopt/ipopt-3.11.7.ebuild | 97 | ||||
-rw-r--r-- | sci-libs/ipopt/ipopt-3.11.8.ebuild | 98 |
3 files changed, 0 insertions, 197 deletions
diff --git a/sci-libs/ipopt/Manifest b/sci-libs/ipopt/Manifest index bc13ac4fb942..88b452baabea 100644 --- a/sci-libs/ipopt/Manifest +++ b/sci-libs/ipopt/Manifest @@ -1,3 +1 @@ -DIST Ipopt-3.11.7.tgz 4749511 BLAKE2B c344634e427a6603544e50d661cafcf6004b4192a3912453dee96cfa143ca5f290f0efc39f46e983dcba6fe5b8a0becb2fa75bd6cc6f27be5c8ea8dc05f1ec4c SHA512 a9edd33b59c9744dc4e09d709519be1fc3d014cc4f50254402784aa8035d21617323f2879c430245886f2a13165cc81d26779331dc1601f0edfc406953dca56f -DIST Ipopt-3.11.8.tgz 4749758 BLAKE2B c5ee5d3f01f1e8b4b6a1cd7606e2ad1a24c09fb0a8d8ed93fda7af61d543ac4f4579d7bb8817607d916223d9214693e1156f908cef1233a75df8759a1099b5d2 SHA512 1f60ea769dd7305348af3a5d4ed56938f04e59c36fb7a3fa0b808e4788dccee4711f82c3767e2aae87d21618d2a840d0bb22491c21c40bc2f9ebdf4b3a01aeec DIST Ipopt-3.12.12.tgz 4530034 BLAKE2B 8a8e24e4e5d8ad5bc1fcfa2de525e1e39c88a4c6dd77b51c0549249f517b3d6a1279e355a7cb606ebd8e606551031b653b78cd4d1cb51dd369e051ffa010011f SHA512 c543695feaa39a69b01e0025ebcd8a8772deb369ea1072f17da4ba34c1b522d322959067f3a6cfc40446e00c2e6dd2d6704a55623aba5d61dff44333727368cb diff --git a/sci-libs/ipopt/ipopt-3.11.7.ebuild b/sci-libs/ipopt/ipopt-3.11.7.ebuild deleted file mode 100644 index c0838cc7dedc..000000000000 --- a/sci-libs/ipopt/ipopt-3.11.7.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -AUTOTOOLS_IN_SOURCE_BUILD=yes -FORTRAN_NEEDED="mumps" -inherit eutils autotools-utils multilib toolchain-funcs fortran-2 - -MYPN=Ipopt -MYP=${MYPN}-${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/${MYPN}/${MYP}.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? ( test )" - -RDEPEND=" - virtual/blas - hsl? ( sci-libs/coinhsl ) - lapack? ( virtual/lapack ) - mumps? ( sci-libs/mumps[mpi=] )" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( app-doc/doxygen[dot] ) - test? ( sci-libs/coinor-sample sci-libs/mumps )" - -S="${WORKDIR}/${MYPN}-${PV}/${MYPN}" - -src_prepare() { - if use mumps && ! use mpi; then - ln -s "${EPREFIX}"/usr/include/mpiseq/mpi.h \ - src/Algorithm/LinearSolvers/ - elif use mpi; then - export CXX=mpicxx FC=mpif77 F77=mpif77 CC=mpicc - fi - sed -i \ - -e "s:lib/pkgconfig:$(get_libdir)/pkgconfig:g" \ - configure || die - autotools-utils_src_prepare -} - -src_configure() { - # needed for the --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 - --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 - autotools-utils_src_configure -} - -src_compile() { - autotools-utils_src_compile all $(use doc && echo doxydoc) -} - -src_test() { - autotools-utils_src_test test -} - -src_install() { - use doc && HTML_DOC=("${AUTOTOOLS_BUILD_DIR}/doxydocs/html/") - autotools-utils_src_install - # already installed - rm "${ED}"/usr/share/coin/doc/${MYPN}/{README,AUTHORS,LICENSE} || die - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples - fi -} diff --git a/sci-libs/ipopt/ipopt-3.11.8.ebuild b/sci-libs/ipopt/ipopt-3.11.8.ebuild deleted file mode 100644 index 00636336536d..000000000000 --- a/sci-libs/ipopt/ipopt-3.11.8.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -AUTOTOOLS_IN_SOURCE_BUILD=yes -FORTRAN_NEEDED="mumps" - -inherit eutils autotools-utils multilib toolchain-funcs fortran-2 - -MYPN=Ipopt -MYP=${MYPN}-${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/${MYPN}/${MYP}.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? ( test )" - -RDEPEND=" - virtual/blas - hsl? ( sci-libs/coinhsl:0= ) - lapack? ( virtual/lapack ) - 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}/${MYPN}-${PV}/${MYPN}" - -src_prepare() { - if use mumps && ! use mpi; then - ln -s "${EPREFIX}"/usr/include/mpiseq/mpi.h \ - src/Algorithm/LinearSolvers/ - elif use mpi; then - export CXX=mpicxx FC=mpif77 F77=mpif77 CC=mpicc - fi - sed -i \ - -e "s:lib/pkgconfig:$(get_libdir)/pkgconfig:g" \ - configure || die - autotools-utils_src_prepare -} - -src_configure() { - # needed for the --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 - --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 - autotools-utils_src_configure -} - -src_compile() { - autotools-utils_src_compile all $(use doc && echo doxydoc) -} - -src_test() { - autotools-utils_src_test test -} - -src_install() { - use doc && HTML_DOC=("${AUTOTOOLS_BUILD_DIR}/doxydocs/html/") - autotools-utils_src_install - # already installed - rm "${ED}"/usr/share/coin/doc/${MYPN}/{README,AUTHORS,LICENSE} || die - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples - fi -} |