summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ipopt/package.py
AgeCommit message (Collapse)AuthorFilesLines
2018-10-17relicense: replace LGPL headers with Apache-2.0/MIT SPDX headersTodd Gamblin1-23/+4
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
2018-10-09Make builtin flag handlers available in package scope (#8668)Greg Becker1-1/+1
* Push default flag handlers into module scope * Preserve backwards compatibility of builtin flag handler names Ensure Spack continues to work for packages using the `Package.env_flags` idiom and equivalent. * update docs and tests to match * Update packages to match new syntax
2018-09-14ipopt: add debug variant (#9223)Geoffrey Oxberry1-0/+10
2018-08-29ipopt@3.12.10: new version (#9120)Geoffrey Oxberry1-0/+1
2018-03-24Update copyright on LLNL files for 2018. (#7592)Todd Gamblin1-1/+1
2018-02-14ipopt: fix lmod global name 'prefix' undefined bug (#7224)Geoffrey Oxberry1-1/+1
Running `spack module refresh -m lmod --delete-tree -y` throws the following warning: ```console ==> Warning: Could not write module file [/Users/oxberry1/spack/share/spack/lmod/darwin-sierra-x86_64/openblas/0.2.20-ibhtl5q/clang/5.0.1/ipopt/3.12.9.lua] ==> Warning: --> global name 'prefix' is not defined <-- ``` This warning arises because the variable expansions in `spack.modules.BaseFileWriter` occur at module/package scope. Even though `prefix` is an argument to `install` methods in e.g., `MakefilePackage`, so using this argument within package methods is legal, doing so defeats the introspection logic in `spack.modules.BaseFileWriter`. Replacing `prefix` with `self.prefix` resolves the problem, because the introspection logic in `spack.modules.BaseFileWriter` can use introspection to query IPOPT's prefix.
2018-01-20ipopt: add version 3.12.9 (#6982)Geoffrey Oxberry1-0/+1
2018-01-18ipopt package: set compiler flags in configure (#6714)junkudo1-11/+13
This makes use of the new flag_handler logic from 28d8784a to set compiler flags for ipopt by passing them as arguments to the build system rather than injecting them into the compiler wrappers. This avoids conflicts between flags that are chosen by the build system and flags that are set by the user.
2018-01-15ipopt: add version 3.12.8, relax metis version requirements (#6936)Geoffrey Oxberry1-1/+2
* ipopt: add version 3.12.8 * ipopt: allow linking with metis 5
2017-11-23Introduce virtual dependency pkgconfig (#5198)Michael Kuhn1-1/+1
There are two providers, pkgconf and pkg-config, with the former being the default provider.
2017-11-04Replace github.com/llnl/spack with github.com/spack/spack (#6142)Todd Gamblin1-1/+1
We moved to a new GitHub org! Now make the code and docs reflect that.
2017-09-06Update copyright notices for 2017 (#5295)Michael Kuhn1-1/+1
2017-06-24Make LICENSE recognizable by GitHub. (#4598)Todd Gamblin1-1/+1
2017-06-21Modified ipopt package to support build on ppc64le (#4561)Jonathan Wong1-0/+2
Added line in package.py to patch using ipopt_ppc_build.patch. The patch simply adds support in config.guess and Ipopt/config.guess to build ipopt on ppc64le.
2017-06-13ipopt 3.12.7 (#4490)Geoffrey Oxberry1-0/+20
* ipopt: update version to 3.12.7 * ipopt: add +coinhsl option * ipopt: add +metis option
2017-04-26ipopt: fix build with Linux clang (#3995)futuretristan1-0/+1
2017-03-02New interface for passing build information among specs (#1875)Massimiliano Culpo1-2/+2
- Added a new interface for Specs to pass build information - Calls forwarded from Spec to Package are now explicit - Added descriptor within Spec to manage forwarding - Added state in Spec to maintain query information - Modified a few packages (the one involved in spack install pexsi) to showcase changes - This uses an object wrapper to `spec` to implement the `libs` sub-calls. - wrapper is returned from `__getitem__` only if spec is concrete - allows packagers to access build information easily
2016-09-26some fixes to blas/lapack usage in packages (#1852)Denis Davydov1-3/+2
* atlas: fix unit test * openblas: remove symlinks; use lapack_libs.ld_flags in the test * mkl: fix openmp variant of blas/lapack libs * intel-parallel-studio: fix openmp variant of blas/lapack libs * netlib-scalapack: fix blas/lapack for multilib case (e.g. mkl) * arpack-ng: fix blas/lapack for multilib case (e.g. mkl) * petsc: explicitly specify blas/lapack * minor * cantera: fix blas/lapack usage * ipopt: fix blas/lapack usage * netlib-lapack: fix external blas usage * mfem: fix lapack/blas usage * superlu-mt: fix blas usage * flake8 fixes
2016-08-10Spack packages now PEP8 compliant.Todd Gamblin1-5/+6
2016-07-14deptypes: mark deptypes in packagesBen Boeckel1-1/+1
2016-05-11Correct LLNL LGPL license template for clarity.Todd Gamblin1-0/+24
2016-04-01Add ipopt v3.12.4 package.Geoffrey Oxberry1-0/+51
Add package for the nonlinear programming solver IPOPT. This commit depends on the changes made in GitHub PR #711, since IPOPT requires the headers that correspond to the fake MPI implementation in sequential MUMPS.