Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove scotch/metis link #112

Merged
merged 5 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,8 @@ libblas:
- 3.9 *netlib
liblapack:
- 3.9 *netlib
metis:
- 5.1.0
mumps_seq:
- 5.7.3
scotch:
- 7.0.4
target_platform:
- linux-64
zip_keys:
Expand Down
4 changes: 0 additions & 4 deletions .ci_support/linux_aarch64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,8 @@ libblas:
- 3.9 *netlib
liblapack:
- 3.9 *netlib
metis:
- 5.1.0
mumps_seq:
- 5.7.3
scotch:
- 7.0.4
target_platform:
- linux-aarch64
zip_keys:
Expand Down
4 changes: 0 additions & 4 deletions .ci_support/linux_ppc64le_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,8 @@ libblas:
- 3.9 *netlib
liblapack:
- 3.9 *netlib
metis:
- 5.1.0
mumps_seq:
- 5.7.3
scotch:
- 7.0.4
target_platform:
- linux-ppc64le
zip_keys:
Expand Down
10 changes: 0 additions & 10 deletions .ci_support/migrations/mumps_mpi573.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,8 @@ liblapack:
- 3.9 *netlib
macos_machine:
- x86_64-apple-darwin13.4.0
metis:
- 5.1.0
mumps_seq:
- 5.7.3
scotch:
- 7.0.4
target_platform:
- osx-64
zip_keys:
Expand Down
4 changes: 0 additions & 4 deletions .ci_support/osx_arm64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,8 @@ liblapack:
- 3.9 *netlib
macos_machine:
- arm64-apple-darwin20.0.0
metis:
- 5.1.0
mumps_seq:
- 5.7.3
scotch:
- 7.0.4
target_platform:
- osx-arm64
zip_keys:
Expand Down
4 changes: 0 additions & 4 deletions .ci_support/win_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@ libblas:
- 3.9 *netlib
liblapack:
- 3.9 *netlib
metis:
- 5.1.0
mumps_seq:
- 5.7.3
scotch:
- 7.0.4
target_platform:
- win-64
2 changes: 1 addition & 1 deletion recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cd build
--disable-java \
--with-mumps \
--with-mumps-cflags="-I${PREFIX}/include/mumps_seq" \
--with-mumps-lflags="-ldmumps_seq -lmumps_common_seq -lpord_seq -lmpiseq_seq -lesmumps -lscotch -lscotcherr -lmetis -lgfortran" \
--with-mumps-lflags="$(pkg-config --libs dmumps_seq)" \
--with-asl \
--with-asl-cflags="-I${PREFIX}/include/asl" \
--with-asl-lflags="-lasl" \
Expand Down
8 changes: 3 additions & 5 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ source:
- pkg-config-do-not-add-requires-private.patch

build:
number: 6
number: 7
run_exports:
- {{ pin_subpackage('ipopt', max_pin='x.x.x') }}

Expand All @@ -26,13 +26,11 @@ requirements:
- cmake # [win]
- make # [not win]
- wget # [not win]
- pkgconfig
- pkg-config
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

btw, pkgconfig is a Python package, pkg-config is command-line tool

host:
- libblas
- liblapack
- metis
- mumps-seq
- scotch
- libspral # [linux]
- ampl-mp # [not win]

Expand All @@ -45,7 +43,7 @@ test:
- {{ compiler('fortran') }}
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- pkgconfig
- pkg-config

about:
home: https://projects.coin-or.org/Ipopt/
Expand Down