Skip to content

Commit 33fa871

Browse files
author
Release Manager
committed
Trac #34742: Optional package soplex (dependency of scip)
https://github.com/scipopt/soplex URL: https://trac.sagemath.org/34742 Reported by: mkoeppe Ticket author(s): Matthias Koeppe Reviewer(s): Dima Pasechnik
2 parents f84915f + dbff7a0 commit 33fa871

11 files changed

+87
-0
lines changed

build/pkgs/soplex/SPKG.rst

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
soplex: Linear optimization solver using the revised simplex method
2+
===================================================================
3+
4+
Description
5+
-----------
6+
7+
SoPlex is an optimization package for solving linear programming
8+
problems (LPs) based on an advanced implementation of the primal and
9+
dual revised simplex algorithm. It provides special support for the
10+
exact solution of LPs with rational input data.
11+
12+
13+
License
14+
-------
15+
16+
Apache License, Version 2.0
17+
18+
19+
Upstream Contact
20+
----------------
21+
22+
https://github.com/scipopt/soplex

build/pkgs/soplex/checksums.ini

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
tarball=soplex-VERSION.tar.gz
2+
sha1=6777fa6e7fd02ea6805901dbf60d873b4c312b62
3+
md5=2865c3a95ee903307d4bd32b0c9594e7
4+
cksum=278250056
5+
upstream_url=https://github.com/scipopt/soplex/archive/refs/tags/release-VERSION.tar.gz

build/pkgs/soplex/dependencies

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
$(MP_LIBRARY) mpfr boost_cropped zlib | cmake

build/pkgs/soplex/distros/conda.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
soplex

build/pkgs/soplex/distros/freebsd.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
math/SoPlex
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
soplex

build/pkgs/soplex/package-version.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
602
+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
commit 0c2527842fe4eaed8d9e5107d6a6621b3d6a716f
2+
Author: Matthias Koeppe <[email protected]>
3+
Date: Sat Nov 26 17:08:40 2022 -0800
4+
5+
CMakeLists.txt, src/CMakeLists.txt: Remove hardcoded RPATH settings
6+
7+
diff --git a/CMakeLists.txt b/CMakeLists.txt
8+
index 4f8635fc..6f7a6e1b 100644
9+
--- a/CMakeLists.txt
10+
+++ b/CMakeLists.txt
11+
@@ -64,9 +64,6 @@ if(NOT CMAKE_BUILD_TYPE)
12+
set(CMAKE_BUILD_TYPE Release)
13+
endif()
14+
15+
-# set the correct rpath for OS X
16+
-set(CMAKE_MACOSX_RPATH ON)
17+
-
18+
# use C++14 standard
19+
set(CMAKE_CXX_STANDARD 14)
20+
21+
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
22+
index 27d52f14..fd3705ed 100644
23+
--- a/src/CMakeLists.txt
24+
+++ b/src/CMakeLists.txt
25+
@@ -3,8 +3,7 @@
26+
#
27+
function(setLibProperties targetname outputname)
28+
set_target_properties(${targetname} PROPERTIES
29+
- OUTPUT_NAME ${outputname}
30+
- MACOSX_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
31+
+ OUTPUT_NAME ${outputname})
32+
endfunction(setLibProperties)
33+
34+
include_directories(BEFORE ${CMAKE_CURRENT_SOURCE_DIR})
35+
@@ -200,9 +199,6 @@ endif()
36+
add_executable(example EXCLUDE_FROM_ALL example.cpp)
37+
target_link_libraries(example libsoplex)
38+
39+
-# set the install rpath to the installed destination
40+
-set_target_properties(soplex PROPERTIES INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
41+
-
42+
# install the header files of soplex
43+
install(FILES ${headers} ${PROJECT_BINARY_DIR}/soplex/config.h DESTINATION include/soplex)
44+
install(FILES soplex.h soplex.hpp soplex_interface.h DESTINATION include)

build/pkgs/soplex/spkg-check.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
cd src/build
2+
sdh_make test

build/pkgs/soplex/spkg-install.in

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
cd src
2+
mkdir build
3+
cd build
4+
sdh_cmake -DCMAKE_BUILD_WITH_INSTALL_NAME_DIR=ON \
5+
-DMPFR=ON \
6+
..
7+
sdh_make
8+
sdh_make_install

build/pkgs/soplex/type

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
optional

0 commit comments

Comments
 (0)