## START: Set by rpmautospec ## (rpmautospec version 0.6.0) ## RPMAUTOSPEC: autorelease, autochangelog %define autorelease(e:s:pb:n) %{?-p:0.}%{lua: release_number = 27; 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 # Upstream made a number of performance improvements after the last release # was tagged in 2017. %global commit 0dcf187a159c365b6d4e4e0ed5849f7b706da408 %global date 20181018 %global forgeurl https://github.com/coin-or/Csdp %global octavedir %{_datadir}/octave/site/m/Csdp Name: csdp Version: 6.2.0 Summary: C library for SemiDefinite Programming %forgemeta # The content is EPL-2.0. The remaining licenses cover the various fonts # embedded in PDFs. # CM: Knuth-CTAN License: EPL-2.0 AND Knuth-CTAN Release: %autorelease URL: %{forgeurl}/wiki VCS: %{forgeurl} Source0: %{forgesource} # Written by Jerry James for Octave Source1: Csdp.INDEX # Man pages written by Jerry James with text borrowed freely from the sources. # These man pages therefore have the same copyright and license as the code. Source2: %{name}.1 Source3: %{name}-theta.1 Source4: %{name}-graphtoprob.1 Source5: %{name}-complement.1 Source6: %{name}-rand_graph.1 # See https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval ExcludeArch: %{ix86} BuildRequires: gcc BuildRequires: make BuildRequires: pkgconfig(flexiblas) Provides: coin-or-Csdp = %{version}-%{release} %description CSDP is a library of routines that implements a predictor corrector variant of the semidefinite programming algorithm of Helmberg, Rendl, Vanderbei, and Wolkowicz. The main advantages of this code are that it is written to be used as a callable subroutine, it is written in C for efficiency, the code runs in parallel on shared memory multiprocessor systems, and it makes effective use of sparsity in the constraint matrices. %package devel Summary: Header files for CSDP License: EPL-2.0 Requires: %{name}%{?_isa} = %{version}-%{release} Provides: coin-or-Csdp-devel = %{version}-%{release} %description devel This package contains the header files necessary to develop programs that use the CSDP library. %package tools Summary: Command line tools for working with CSDP License: EPL-2.0 Requires: %{name}%{?_isa} = %{version}-%{release} Provides: coin-or-Csdp-tools = %{version}-%{release} %description tools This package contains command-line wrappers around the CSDP library, including a solver, a program for computing the Lovasz Theta number of a graph, and some graph manipulation programs. Note that "csdp-" has been prefixed to some of the binary names, due to the generic nature of the names. %package octave Summary: Octave interface to CSDP License: EPL-2.0 Requires: %{name}-tools = %{version}-%{release}, octave BuildArch: noarch %description octave This package contains an Octave interface to the C library for SemiDefinite Programming. %prep %forgeautosetup %build # We can't use the shipped build system. First, a static library is built, # but we want a shared library. Second, parallel make is broken; there are no # explicit dependencies between subdirectories. Third, the CFLAGS need to be # altered in various more-or-less drastic ways. Fourth, the existing makefiles # link all binaries with the entire set of libs, but not all binaries need all # libs. We build by hand to contain the pain. # Choose the CFLAGS we want CFLAGS="%{build_cflags} -I../include -I%{_includedir}/flexiblas -DNOSHORTS -DUSESIGTERM -DUSEGETTIME" if [ %{__isa_bits} = "64" ]; then CFLAGS+=" -DBIT64" fi LIBS='%{build_ldflags} -L../lib -lsdp' sed -i -e "s|^CFLAGS=.*|CFLAGS=${CFLAGS}|" \ -e "s|^LIBS=.*|LIBS=${LIBS} -lflexiblas -lm|" \ solver/Makefile theta/Makefile # Build the shared library cd lib gcc ${CFLAGS} -DUSEOPENMP -fopenmp -fPIC -shared -Wl,--soname=libsdp.so.6 *.c \ -o libsdp.so.%{version} %{build_ldflags} -lgomp -lflexiblas -lm ln -s libsdp.so.%{version} libsdp.so.6 ln -s libsdp.so.6 libsdp.so # Build the solver cd ../solver %make_build CFLAGS="$CFLAGS" LIBS="$LIBS" # Build theta, but don't necessarily link with everything cd ../theta gcc $CFLAGS -c complement.c gcc $CFLAGS -o complement %{build_ldflags} complement.o gcc $CFLAGS -c rand_graph.c gcc $CFLAGS -o rand_graph %{build_ldflags} rand_graph.o %make_build CFLAGS="$CFLAGS" LIBS="$LIBS" %install # Install the library mkdir -p %{buildroot}%{_libdir} cp -pP lib/libsdp* %{buildroot}%{_libdir} # Install the binaries mkdir -p %{buildroot}%{_bindir} cp -p solver/csdp %{buildroot}%{_bindir} cp -p theta/theta %{buildroot}%{_bindir}/csdp-theta cp -p theta/graphtoprob %{buildroot}%{_bindir}/csdp-graphtoprob cp -p theta/complement %{buildroot}%{_bindir}/csdp-complement cp -p theta/rand_graph %{buildroot}%{_bindir}/csdp-rand_graph # Install the header files mkdir -p %{buildroot}%{_includedir}/csdp cp -p include/*.h %{buildroot}%{_includedir}/csdp # Install the Octave interface mkdir -p %{buildroot}%{octavedir} cp -p matlab/*.m %{buildroot}%{octavedir} cp -p %{SOURCE1} %{buildroot}%{octavedir}/INDEX # Install the man pages mkdir -p %{buildroot}%{_mandir}/man1 cp -p %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} \ %{buildroot}%{_mandir}/man1 %files %doc AUTHORS README.md doc/csdpuser.pdf %license LICENSE %{_libdir}/libsdp.so.6* %files devel %doc doc/example.c %{_libdir}/libsdp.so %{_includedir}/%{name} %files tools %doc theta/README %{_bindir}/csdp* %{_mandir}/man1/csdp* %files octave %doc matlab/README %{octavedir} %changelog ## START: Generated by rpmautospec * Thu Mar 21 2024 Jerry James - 6.2.0-27 - Update to git HEAD for performance improvements - License change from CPL-1.0 to EPL-2.0 - Drop upstreamed printf patch - Stop building for 32-bit x86 - Minor spec file cleanups * Wed Jan 24 2024 Fedora Release Engineering - 6.2.0-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Fri Jan 19 2024 Fedora Release Engineering - 6.2.0-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Wed Jul 19 2023 Fedora Release Engineering - 6.2.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild * Thu Jan 19 2023 Fedora Release Engineering - 6.2.0-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild * Mon Aug 15 2022 Jerry James - 6.2.0-14 - Convert License tag to SPDX * Wed Jul 20 2022 Fedora Release Engineering - 6.2.0-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild * Thu Jan 20 2022 Fedora Release Engineering - 6.2.0-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild * Wed Jul 21 2021 Fedora Release Engineering - 6.2.0-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild * Tue Jan 26 2021 Fedora Release Engineering - 6.2.0-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild * Mon Aug 10 2020 Iñaki Úcar - 6.2.0-10 - https://fedoraproject.org/wiki/Changes/FlexiBLAS_as_BLAS/LAPACK_manager * Mon Jul 27 2020 Fedora Release Engineering - 6.2.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Tue Jan 28 2020 Fedora Release Engineering - 6.2.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild * Wed Jul 24 2019 Fedora Release Engineering - 6.2.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Thu Jun 27 2019 Jerry James - 6.2.0-6 - Change the project URL to github - Add more coin-or-Csdp-* provides * Thu Jan 31 2019 Fedora Release Engineering - 6.2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Thu Jul 12 2018 Fedora Release Engineering - 6.2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Wed Feb 07 2018 Fedora Release Engineering - 6.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Wed Aug 16 2017 Jerry James - 6.2.0-2 - Build with openblas instead of atlas * Sat Aug 5 2017 Jerry James - 6.2.0-1 - New upstream version - Provide coin-or-Csdp for parity with other coin-or packages - Add -printf patch to fix build failure - Switch from multithreaded atlas to single-threaded atlas * Wed Aug 02 2017 Fedora Release Engineering - 6.1.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Wed Jul 26 2017 Fedora Release Engineering - 6.1.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Fri Feb 10 2017 Fedora Release Engineering - 6.1.1-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Wed Dec 07 2016 Orion Poplawski - 6.1.1-12 - Rebuild for octave 4.2 * Wed Feb 03 2016 Fedora Release Engineering - 6.1.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Wed Jun 17 2015 Fedora Release Engineering - 6.1.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Thu Feb 12 2015 Jerry James - 6.1.1-9 - Link with RPM_LD_FLAGS - Use license macro - Minor spec file cleanups * Sat Aug 16 2014 Fedora Release Engineering - 6.1.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild * Sat Jun 07 2014 Fedora Release Engineering - 6.1.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Sat Sep 21 2013 Jerry James - 6.1.1-6 - Rebuild for atlas 3.10.1 * Sat Aug 03 2013 Fedora Release Engineering - 6.1.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Wed Feb 13 2013 Fedora Release Engineering - 6.1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild * Wed Jul 18 2012 Fedora Release Engineering - 6.1.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Sat Jan 7 2012 Jerry James - 6.1.1-2 - Rebuild for GCC 4.7 * Fri Mar 18 2011 Jerry James - 6.1.1-1 - Initial RPM ## END: Generated by rpmautospec