2015-01-06 16:18:59 +00:00
|
|
|
Summary: Integer point manipulation library
|
|
|
|
Name: isl
|
2017-02-02 17:41:37 +00:00
|
|
|
Version: 0.16.1
|
2015-01-06 16:18:59 +00:00
|
|
|
License: MIT
|
|
|
|
URL: http://isl.gforge.inria.fr/
|
|
|
|
|
2017-02-02 17:41:37 +00:00
|
|
|
%global libmajor 15
|
|
|
|
%global libversion %{libmajor}.1.1
|
|
|
|
|
|
|
|
%global oldversion 0.14
|
|
|
|
%global oldlibmajor 13
|
|
|
|
%global oldlibversion %{oldlibmajor}.1.0
|
2015-01-06 16:18:59 +00:00
|
|
|
|
|
|
|
# Please set buildid below when building a private version of this rpm to
|
|
|
|
# differentiate it from the stock rpm.
|
|
|
|
#
|
|
|
|
# % global buildid .local
|
|
|
|
|
2020-01-29 05:41:48 +00:00
|
|
|
Release: 10%{?buildid}%{?dist}
|
2015-01-06 16:18:59 +00:00
|
|
|
|
2018-07-09 17:06:46 +00:00
|
|
|
BuildRequires: gcc
|
2015-01-06 16:18:59 +00:00
|
|
|
BuildRequires: gmp-devel
|
|
|
|
BuildRequires: pkgconfig
|
2017-02-02 17:41:37 +00:00
|
|
|
Provides: isl = %{oldversion}
|
2015-01-06 16:18:59 +00:00
|
|
|
|
|
|
|
Source0: http://isl.gforge.inria.fr/isl-%{version}.tar.xz
|
|
|
|
|
2017-02-02 17:41:37 +00:00
|
|
|
# Current gcc requires exactly 0.14
|
|
|
|
Source1: http://isl.gforge.inria.fr/isl-%{oldversion}.tar.xz
|
|
|
|
|
2015-01-06 16:18:59 +00:00
|
|
|
%description
|
|
|
|
isl is a library for manipulating sets and relations of integer points
|
|
|
|
bounded by linear constraints. Supported operations on sets include
|
|
|
|
intersection, union, set difference, emptiness check, convex hull,
|
|
|
|
(integer) affine hull, integer projection, computing the lexicographic
|
|
|
|
minimum using parametric integer programming, coalescing and parametric
|
|
|
|
vertex enumeration. It also includes an ILP solver based on generalized
|
|
|
|
basis reduction, transitive closures on maps (which may encode infinite
|
|
|
|
graphs), dependence analysis and bounds on piecewise step-polynomials.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development for building integer point manipulation library
|
|
|
|
Requires: isl%{?_isa} == %{version}-%{release}
|
|
|
|
Requires: gmp-devel%{?_isa}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
isl is a library for manipulating sets and relations of integer points
|
|
|
|
bounded by linear constraints. Supported operations on sets include
|
|
|
|
intersection, union, set difference, emptiness check, convex hull,
|
|
|
|
(integer) affine hull, integer projection, computing the lexicographic
|
|
|
|
minimum using parametric integer programming, coalescing and parametric
|
|
|
|
vertex enumeration. It also includes an ILP solver based on generalized
|
|
|
|
basis reduction, transitive closures on maps (which may encode infinite
|
|
|
|
graphs), dependence analysis and bounds on piecewise step-polynomials.
|
|
|
|
|
|
|
|
%prep
|
2017-02-02 17:41:37 +00:00
|
|
|
%global docdir isl-%{version}
|
2017-09-25 13:57:19 +00:00
|
|
|
%setup -a 1 -q -n isl -c
|
2015-01-06 16:18:59 +00:00
|
|
|
|
|
|
|
%build
|
2017-02-02 17:41:37 +00:00
|
|
|
cd isl-%{oldversion}
|
|
|
|
%configure
|
|
|
|
make %{?_smp_mflags} V=1
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
cd isl-%{version}
|
2015-01-06 16:18:59 +00:00
|
|
|
%configure
|
|
|
|
make %{?_smp_mflags} V=1
|
|
|
|
|
|
|
|
%install
|
2017-02-02 17:41:37 +00:00
|
|
|
cd isl-%{oldversion}
|
|
|
|
%make_install INSTALL="install -p" install-libLTLIBRARIES
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
cd isl-%{version}
|
2015-01-06 16:18:59 +00:00
|
|
|
%make_install INSTALL="install -p"
|
|
|
|
rm -f %{buildroot}/%{_libdir}/libisl.a
|
|
|
|
rm -f %{buildroot}/%{_libdir}/libisl.la
|
|
|
|
mkdir -p %{buildroot}/%{_datadir}
|
|
|
|
%global gdbprettydir %{_datadir}/gdb/auto-load/%{_libdir}
|
|
|
|
mkdir -p %{buildroot}/%{gdbprettydir}
|
|
|
|
mv %{buildroot}/%{_libdir}/*-gdb.py* %{buildroot}/%{gdbprettydir}
|
|
|
|
|
|
|
|
%check
|
2017-02-02 17:41:37 +00:00
|
|
|
cd isl-%{oldversion}
|
|
|
|
#make check
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
cd isl-%{version}
|
|
|
|
#make check
|
2015-01-06 16:18:59 +00:00
|
|
|
|
2019-01-22 17:39:20 +00:00
|
|
|
%ldconfig_scriptlets
|
2015-01-06 16:18:59 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%{_libdir}/libisl.so.%{libmajor}
|
|
|
|
%{_libdir}/libisl.so.%{libversion}
|
2017-02-02 17:41:37 +00:00
|
|
|
%{_libdir}/libisl.so.%{oldlibmajor}
|
|
|
|
%{_libdir}/libisl.so.%{oldlibversion}
|
2015-01-06 16:18:59 +00:00
|
|
|
%{gdbprettydir}/*
|
2017-02-02 17:41:37 +00:00
|
|
|
%license %{docdir}/LICENSE
|
|
|
|
%doc %{docdir}/AUTHORS %{docdir}/ChangeLog %{docdir}/README
|
2015-01-06 16:18:59 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/*
|
|
|
|
%{_libdir}/libisl.so
|
|
|
|
%{_libdir}/pkgconfig/isl.pc
|
2017-02-02 17:41:37 +00:00
|
|
|
%doc %{docdir}/doc/manual.pdf
|
2015-01-06 16:18:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2020-01-29 05:41:48 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-07-25 09:45:34 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-02-01 03:36:03 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 05:52:36 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-02-09 08:04:44 +00:00
|
|
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.16.1-6
|
|
|
|
- Escape macros in %%changelog
|
|
|
|
|
2018-02-07 17:43:19 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-09-25 13:57:19 +00:00
|
|
|
* Fri Sep 15 2017 Troy Dawson <tdawson@redhat.com> - 0.16.1-4
|
2018-02-09 08:04:44 +00:00
|
|
|
- Fix %%setup options
|
2017-09-25 13:57:19 +00:00
|
|
|
|
2017-08-02 23:53:56 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 13:44:51 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-02 17:41:37 +00:00
|
|
|
* Thu Feb 02 2017 David Howells <dhowells@redhat.com> - 0.16.1-1
|
|
|
|
- Move to version 0.16.1.
|
|
|
|
- Build and install just the libraries from 0.14 so that gcc can work.
|
|
|
|
|
2017-02-02 17:17:08 +00:00
|
|
|
* Wed Feb 01 2017 Stephen Gallagher <sgallagh@redhat.com> - 0.14-6
|
|
|
|
- Add missing %%license macro (#1418512)
|
|
|
|
|
2016-02-04 00:41:23 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.14-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-17 11:37:02 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-01-06 16:18:59 +00:00
|
|
|
* Mon Jan 5 2015 David Howells <dhowells@redhat.com> - 0.14-3
|
|
|
|
- Initial packaging.
|