## START: Set by rpmautospec ## (rpmautospec version 0.6.0) ## RPMAUTOSPEC: autorelease, autochangelog %define autorelease(e:s:pb:n) %{?-p:0.}%{lua: release_number = 3; base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); print(release_number + base_release_number - 1); }%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} ## END: Set by rpmautospec # Architectures that have libquadmath %ifarch x86_64 ppc64le %global quadmath 1 %else %global quadmath 0 %endif # The papilo binary depends on several solvers that transitively depend on the # papilo library. In a bootstrap situation, first build the binary without # solver support, build the solvers, then do a non-bootstrap build. %bcond bootstrap 0 Name: papilo Version: 2.2.0 Release: %autorelease Summary: Parallel presolve for integer and linear optimization # LGPL-3.0-or-later: the project as a whole # BSL-1.0: src/papilo/misc/extended_euclidean.hpp # Zlib: the header-only pdqsort project # MIT: the bundled fmt project License: LGPL-3.0-or-later AND BSL-1.0 AND Zlib AND MIT URL: https://www.scipopt.org/ VCS: https://github.com/scipopt/papilo/ Source0: %{vcs}/archive/v%{version}/%{name}-%{version}.tar.gz # Unbundle catch, LUSOL, pdqsort, and ska Patch0: %{name}-unbundle.patch # Build a shared library instead of a static library Patch1: %{name}-shared.patch # The list of tests in CMakeLists.txt doesn't match the actual tests Patch2: %{name}-test.patch # Avoid out-of-bounds vector access # https://github.com/scipopt/papilo/pull/48 Patch3: %{name}-vector-bounds.patch # See https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval ExcludeArch: %{ix86} BuildRequires: boost-devel BuildRequires: cmake BuildRequires: cmake(catch2) BuildRequires: cmake(tbb) BuildRequires: gcc-c++ BuildRequires: help2man %if %{quadmath} BuildRequires: libquadmath-devel %endif BuildRequires: lusol-devel BuildRequires: pdqsort-static BuildRequires: pkgconfig(gmp) %if %{without bootstrap} # Solver support BuildRequires: cmake(scip) BuildRequires: cmake(soplex) %endif Requires: libpapilo%{?_isa} = %{version}-%{release} %global _desc %{expand: PaPILO provides parallel presolve routines for (mixed integer) linear programming problems. The routines are implemented using templates which allows switching to higher precision or rational arithmetic using the boost multiprecision package.} %description %_desc %package -n libpapilo Summary: Library interface to PaPILO # The bundled version of fmt is incompatible with version 10 in Rawhide. Provides: bundled(fmt) = 6.1.2 %description -n libpapilo %_desc This package provides a library interface to the PaPILO functionality. %package -n libpapilo-devel Summary: Headers and library links for libpapilo Requires: libpapilo%{?_isa} = %{version}-%{release} Requires: boost-devel%{?_isa} Requires: lusol-devel%{?_isa} Requires: pdqsort-static Requires: tbb-devel%{?_isa} %description -n libpapilo-devel %_desc This package contains headers and library links to develop applications that use libpapilo. %prep %autosetup -p1 # Ensure none of the bundled code but fmt can be used rm -fr src/papilo/external/{catch,lusol,pdqsort,ska} # Fix installation directories if [ '%{_lib}' != 'lib' ]; then sed -i 's,\(DESTINATION \)lib,\1%{_lib},g' CMakeLists.txt fi %build %cmake -DQUADMATH:BOOL=%{?quadmath:ON}%{!?quadmath:OFF} %cmake_build %install %cmake_install # Generate man pages mkdir -p %{buildroot}%{_mandir}/man1 export LD_LIBRARY_PATH=$PWD/%{_vpath_builddir} cd %{_vpath_builddir}/bin help2man -N -h '' --version-string %{version} \ -n 'check for duplicate optimization problem instances' ./duplicates > \ %{buildroot}%{_mandir}/man1/duplicates.1 help2man -N -h '' --version-string %{version} \ -n 'parallel presolve for integer and linear optimization' ./papilo > \ %{buildroot}%{_mandir}/man1/papilo.1 cd - # Fix up the man pages a little sed -e 's,\./check_\(duplicates\),\1,' \ -e '/^\\&/i.TP' \ -i %{buildroot}%{_mandir}/man1/duplicates.1 sed -i 's,\./\(papilo\),\1,' %{buildroot}%{_mandir}/man1/papilo.1 %check %ctest %files %doc CHANGELOG README.md parameters.txt %{_bindir}/duplicates %{_bindir}/papilo %{_mandir}/man1/duplicates.1* %{_mandir}/man1/papilo.1* %files -n libpapilo %license COPYING COPYING.LESSER %{_libdir}/libpapilo-core.so.0* %files -n libpapilo-devel %{_includedir}/papilo/ %{_libdir}/cmake/papilo/ %{_libdir}/libpapilo-core.so %changelog ## START: Generated by rpmautospec * Wed Mar 13 2024 Jerry James - 2.2.0-3 - Work around out-of-bounds vector access * Mon Feb 26 2024 Jerry James - 2.2.0-2 - Build the binary with soplex and scip support * Wed Feb 21 2024 Jerry James - 2.2.0-1 - Version 2.2.0 * Fri Feb 16 2024 Jerry James - 2.1.4-1 - Initial RPM ## END: Generated by rpmautospec