b7b518d
%global _docdir_fmt %{name}
Jerry James 22d259e
9825c0e
Name:           python-cvxopt
81c008c
Version:        1.3.2
20cd67e
Release:        5%{?dist}
326c440
Summary:        A Python Package for Convex Optimization
ef87c3a
01ea01f
License:        GPL-3.0-or-later
9a63a96
URL:            https://cvxopt.org/
9825c0e
Source0:        https://github.com/cvxopt/cvxopt/archive/%{version}/cvxopt-%{version}.tar.gz
5634a3b
# Use the flexiblas library instead of the system BLAS.
Jerry James 22d259e
Patch0:         %{name}-setup.patch
5634a3b
# Fix mixed signed/unsigned operations
b7b518d
Patch1:         %{name}-signed.patch
e4bf710
# Replace _PyUnicode_AsString with PyUnicode_AsUTF8 for python 3.13
e4bf710
# https://github.com/cvxopt/cvxopt/pull/247
e4bf710
Patch2:         %{name}-python3.13.patch
326c440
c9db7a5
# See https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
c9db7a5
ExcludeArch:    %{ix86}
c9db7a5
127afa8
BuildRequires:  DSDP-devel
1bf493b
BuildRequires:  gcc
326c440
BuildRequires:  glpk-devel
e073c86
BuildRequires:  flexiblas-devel
e307267
BuildRequires:  make
fc99474
BuildRequires:  pkgconfig(fftw3)
fc99474
BuildRequires:  pkgconfig(gsl)
1ff3e61
BuildRequires:  python3-devel
e307267
BuildRequires:  %{py3_dist pytest}
e307267
BuildRequires:  %{py3_dist sphinx}
e307267
BuildRequires:  %{py3_dist sphinx-rtd-theme}
326c440
BuildRequires:  suitesparse-devel
1bf493b
BuildRequires:  tex-dvipng
1bf493b
BuildRequires:  tex(anyfontsize.sty)
a3793af
BuildRequires:  tex(latex)
a3793af
BuildRequires:  tex(tex4ht.sty)
a3793af
BuildRequires:  tex(utf8x.def)
b78ea11
fc99474
Requires:       font(fontawesome)
fc99474
Requires:       font(lato)
fc99474
Requires:       font(robotoslab)
326c440
fc99474
%global _desc %{expand:
326c440
CVXOPT is a free software package for convex optimization based on
326c440
the Python programming language. Its main purpose is to make the
326c440
development of software for convex optimization applications
326c440
straightforward by building on Python's extensive standard library and
fc99474
on the strengths of Python as a high-level programming language.}
fc99474
fc99474
%description %_desc
326c440
9825c0e
%package -n     python3-cvxopt
5a35d67
Summary:        A Python3 Package for Convex Optimization
01ea01f
Provides:       bundled(js-jquery)
ef87c3a
Provides:       bundled(js-underscore)
5a35d67
9825c0e
%description -n python3-cvxopt %_desc
5a35d67
01ea01f
%package        doc
01ea01f
# The content is GPL-3.0-or-later.  Other licenses are due to files copied in
01ea01f
# by Sphinx.
01ea01f
# _static/_sphinx_javascript_frameworks_compat.js: BSD-2-Clause
01ea01f
# _static/basic.css: BSD-2-Clause
01ea01f
# _static/css: MIT
01ea01f
# _static/doctools.js: BSD-2-Clause
01ea01f
# _static/documentation_options.js: BSD-2-Clause
01ea01f
# _static/file.png: BSD-2-Clause
01ea01f
# _static/jquery*.js: MIT
01ea01f
# _static/js: MIT
01ea01f
# _static/language_data.js: BSD-2-Clause
01ea01f
# _static/minus.png: BSD-2-Clause
01ea01f
# _static/plus.png: BSD-2-Clause
01ea01f
# _static/searchtools.js: BSD-2-Clause
01ea01f
# _static/underscore*.js: MIT
01ea01f
# search.html: BSD-2-Clause
01ea01f
# searchindex.js: BSD-2-Clause
01ea01f
License:        GPL-3.0-or-later AND BSD-2-Clause AND MIT
01ea01f
Summary:        API documentation for python3-cvxopt
01ea01f
01ea01f
%description    doc
01ea01f
API documentation for python3-cvxopt.
01ea01f
ca9a313
%package        examples
ca9a313
Summary:        Examples of using %{name}
9825c0e
Requires:       python3-cvxopt = %{version}-%{release}
e307267
Requires:       %{py3_dist matplotlib}
ca9a313
BuildArch:      noarch
ca9a313
ca9a313
%description    examples
fc99474
Examples of using %{name}.
ca9a313
326c440
%prep
9825c0e
%autosetup -p0 -n cvxopt-%{version}
326c440
5a35d67
# Fix library path
fc99474
if [ "%{_lib}" != "lib" ]; then
1bf493b
  sed -i "s|%{_prefix}/lib|%{_libdir}|" setup.py
Jerry James b8d41d9
fi
b78ea11
fc99474
# Do not use env
fc99474
sed -i 's,bin/env python,bin/python3,' examples/filterdemo/filterdemo_{cli,gui}
fc99474
b78ea11
# Remove useless executable bits
b7b518d
find examples -name \*.py -perm /0111 -exec chmod a-x {} +
1bf493b
0c48fe4
%generate_buildrequires
ef87c3a
export SETUPTOOLS_SCM_PRETEND_VERSION='%{version}'
0c48fe4
%pyproject_buildrequires
0c48fe4
326c440
%build
ef87c3a
export LDSHARED='gcc -shared %{build_ldflags}'
ef87c3a
export SETUPTOOLS_SCM_PRETEND_VERSION='%{version}'
b7b518d
%pyproject_wheel
b78ea11
b78ea11
# Rebuild the documentation
b78ea11
make -C doc clean
fc99474
make -C doc -B html
b78ea11
rm -f doc/build/html/.buildinfo
326c440
326c440
%install
b7b518d
%pyproject_install
b7b518d
%pyproject_save_files cvxopt
Jerry James b5411c2
1bf493b
%check
79b9c02
%pytest
1bf493b
9825c0e
%files -n python3-cvxopt -f %{pyproject_files}
Jerry James b8d41d9
%license LICENSE
ef87c3a
%doc README.md
5a35d67
01ea01f
%files doc
01ea01f
%doc doc/build/html/
01ea01f
ca9a313
%files examples
1a81d4a
%doc examples/
326c440
326c440
%changelog
20cd67e
* Sun Feb 04 2024 Orion Poplawski <orion@nwra.com> - 1.3.2-5
20cd67e
- Rebuild with suitesparse 7.6.0
20cd67e
7956ab9
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-4
7956ab9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
7956ab9
98c3387
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-3
98c3387
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
98c3387
c9db7a5
* Tue Jan 16 2024 Jerry James <loganjerry@gmail.com> - 1.3.2-2
c9db7a5
- Stop building for 32-bit x86
c9db7a5
e4bf710
* Wed Oct 25 2023 Jerry James <loganjerry@gmail.com> - 1.3.2-2
e4bf710
- Adapt to python 3.13 (rhbz#2246130)
e4bf710
81c008c
* Fri Sep 15 2023 Jerry James <loganjerry@gmail.com> - 1.3.2-1
81c008c
- Version 1.3.2
81c008c
fd1f61a
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-3
fd1f61a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
fd1f61a
b09c3e1
* Thu Jun 15 2023 Python Maint <python-maint@redhat.com> - 1.3.1-2
b09c3e1
- Rebuilt for Python 3.12
b09c3e1
ef87c3a
* Wed May 10 2023 Jerry James <loganjerry@gmail.com> - 1.3.1-1
ef87c3a
- Version 1.3.1
ef87c3a
0c48fe4
* Thu Feb 23 2023 Jerry James <loganjerry@gmail.com> - 1.3.0-6
0c48fe4
- Dynamically generate BuildRequires
0c48fe4
26b33bd
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-6
26b33bd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
26b33bd
01ea01f
* Tue Dec 13 2022 Jerry James <loganjerry@gmail.com> - 1.3.0-5
01ea01f
- Split documentation out into separate doc subpackage
01ea01f
- Convert License tags to SPDX
01ea01f
cdf0b10
* Tue Aug 23 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.0-4
cdf0b10
- Rebuild for gsl-2.7.1
cdf0b10
70ecab8
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-3
70ecab8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
70ecab8
d212a35
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.3.0-2
d212a35
- Rebuilt for Python 3.11
d212a35
9a63a96
* Wed Mar  9 2022 Jerry James <loganjerry@gmail.com> - 1.3.0-1
9a63a96
- Version 1.3.0
9a63a96
012141a
* Tue Feb  1 2022 Jerry James <loganjerry@gmail.com> - 1.2.8-1
012141a
- Version 1.2.8
012141a
- Drop upstreamed -versioneer patch
012141a
db4c783
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.7-3
db4c783
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
db4c783
a14637c
* Fri Nov 19 2021 Jerry James <loganjerry@gmail.com> - 1.2.7-2
a14637c
- Add -versioneer patch to fix python 3.11 build
a14637c
b7b518d
* Tue Sep 21 2021 Jerry James <loganjerry@gmail.com> - 1.2.7-1
b7b518d
- Version 1.2.7
b7b518d
- Drop upstreamed -doc and -parens patches
b7b518d
ae923cb
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.6-4
ae923cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
ae923cb
2c8aa6f
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.2.6-3
2c8aa6f
- Rebuilt for Python 3.10
2c8aa6f
47e4dc1
* Mon Mar 22 2021 Jerry James <loganjerry@gmail.com> - 1.2.6-2
47e4dc1
- Add -parens patch to fix FTBFS with python 3.10 (bz 1941559)
47e4dc1
71d0347
* Fri Feb 19 2021 Jerry James <loganjerry@gmail.com> - 1.2.6-1
71d0347
- Version 1.2.6
71d0347
- Drop upstreamed -lto patch
71d0347
- Add -doc patch to fix cross references
71d0347
947324e
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-6
947324e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
947324e
5634a3b
* Thu Dec 24 2020 Jerry James <loganjerry@gmail.com> - 1.2.5-5
5634a3b
- Remove font unbundling now that sphinx_rtd_theme does that for us
5634a3b
- Add -lto and -signed patches
5634a3b
e073c86
* Sun Aug 16 2020 Iñaki Úcar <iucar@fedoraproject.org> - 1.2.5-4
e073c86
- https://fedoraproject.org/wiki/Changes/FlexiBLAS_as_BLAS/LAPACK_manager
e073c86
b0aaee7
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.5-3
b0aaee7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
b0aaee7
eb7e9fa
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.2.5-2
eb7e9fa
- Rebuilt for Python 3.9
eb7e9fa
21bd971
* Fri Apr 17 2020 Jerry James <loganjerry@gmail.com> - 1.2.5-1
21bd971
- Version 1.2.5
21bd971
- Drop upstreamed -parens patch
21bd971
- Use fc-match to find fonts more robustly
21bd971
f329756
* Sat Feb 29 2020 Jerry James <loganjerry@gmail.com> - 1.2.4-4
f329756
- Add -parens patch to fix build with python 3.9
f329756
db5cf46
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-3
db5cf46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
db5cf46
1387700
* Mon Jan 27 2020 Jerry James <loganjerry@gmail.com> - 1.2.4-2
1387700
- Reenable s390x tests now that DSDP has been fixed
1387700
fc99474
* Fri Jan 24 2020 Jerry James <loganjerry@gmail.com> - 1.2.4-1
fc99474
- Version 1.2.4
fc99474
- Drop upstreamed -bool patch
fc99474
- Unbundle sphinx_rtd_theme
fc99474
- Unbundle fonts from the documentation
3f5802e
- Temporarily disable tests on s390x until probable DSDP bug can be diagnosed
fc99474
8eb9669
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.2.3-6
8eb9669
- Rebuilt for Python 3.8.0rc1 (#1748018)
8eb9669
d2537c7
* Wed Aug 21 2019 Miro Hrončok <mhroncok@redhat.com> - 1.2.3-5
d2537c7
- Rebuilt for Python 3.8
d2537c7
f658308
* Tue Aug 20 2019 Susi Lehtola <jussilehtola@fedoraproject.org> - 1.2.3-4
f658308
- Rebuilt for GSL 2.6.
f658308
db9fbb6
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.2.3-3
db9fbb6
- Rebuilt for Python 3.8
db9fbb6
253bbab
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-2
253bbab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
253bbab
e6042ab
* Wed Feb 20 2019 Jerry James <loganjerry@gmail.com> - 1.2.3-1
e6042ab
- New upstream version
e6042ab
92d418b
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-2
92d418b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
92d418b
feb509c
* Tue Oct 30 2018 Jerry James <loganjerry@gmail.com> - 1.2.2-1
feb509c
- New upstream version
feb509c
- Add -bool patch
feb509c
1ff3e61
* Sat Oct 13 2018 Jerry James <loganjerry@gmail.com> - 1.2.1-1
1ff3e61
- New upstream version
1ff3e61
- Build with openblas instead of atlas (bz 1619053)
1ff3e61
- Drop the python2 subpackage
1ff3e61
0f23dde
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-3
0f23dde
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
0f23dde
a42320a
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.2.0-2
a42320a
- Rebuilt for Python 3.7
a42320a
7ef6363
* Sat Jun  2 2018 Jerry James <loganjerry@gmail.com> - 1.2.0-1
7ef6363
- New upstream version
7ef6363
1a81d4a
* Tue Mar 20 2018 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.1.9-8
1a81d4a
- Switch examples over to python3
1a81d4a
3fa0a88
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.9-7
3fa0a88
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3fa0a88
1606803
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.9-6
1606803
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
1606803
3f1ee72
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.9-5
3f1ee72
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
3f1ee72
01da12a
* Wed Apr  5 2017 Jerry James <loganjerry@gmail.com> - 1.1.9-4
01da12a
- Rebuild for glpk 4.61
01da12a
de91a64
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.9-3
de91a64
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
de91a64
6e04fa3
* Thu Dec 22 2016 Miro Hrončok <mhroncok@redhat.com> - 1.1.9-2
6e04fa3
- Rebuild for Python 3.6
6e04fa3
1bf493b
* Wed Nov 30 2016 Jerry James <loganjerry@gmail.com> - 1.1.9-1
1bf493b
- New upstream release
1bf493b
- Add a check script
1bf493b
Dominik 'Rathann' Mierzejewski 44a506d
* Mon Sep 26 2016 Dominik Mierzejewski <rpm@greysector.net> - 1.1.8-8
Dominik 'Rathann' Mierzejewski 44a506d
- rebuilt for matplotlib-2.0.0
Dominik 'Rathann' Mierzejewski 44a506d
a276e4c
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.8-7
a276e4c
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
a276e4c
1dad848
* Sat Mar 12 2016 Jerry James <loganjerry@gmail.com> - 1.1.8-6
1dad848
- Rebuild for glpk 4.59
1dad848
1dad848
* Mon Feb 22 2016 Orion Poplawski <orion@cora.nwra.com> - 1.1.8-5
Orion Poplawski 9b818d3
- Rebuild for gsl 2.1
Orion Poplawski 9b818d3
446c004
* Fri Feb 19 2016 Jerry James <loganjerry@gmail.com> - 1.1.8-4
446c004
- Rebuild for glpk 4.58
446c004
f8b6d15
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.8-3
f8b6d15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
f8b6d15
ca9a313
* Mon Feb  1 2016 Jerry James <loganjerry@gmail.com> - 1.1.8-2
ca9a313
- Comply with latest python packaging guidelines
ca9a313
87e8d27
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.8-2
87e8d27
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
87e8d27
5139657
* Thu Oct  8 2015 Jerry James <loganjerry@gmail.com> - 1.1.8-1
5139657
- New upstream release
5139657
9dbbb21
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.7-6
9dbbb21
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
9dbbb21
44aeabd
* Thu Jun 11 2015 Nils Philippsen <nils@redhat.com> - 1.1.7-5
44aeabd
- rebuild for suitesparse-4.4.4
44aeabd
8d8034a
* Sat Feb 21 2015 Jerry James <loganjerry@gmail.com> - 1.1.7-4
8d8034a
- Note bundled jquery
8d8034a
Jerry James b8d41d9
* Wed Sep 10 2014 Jerry James <loganjerry@gmail.com> - 1.1.7-3
Jerry James b8d41d9
- Rebuild for suitesparse 4.3.1
Jerry James b8d41d9
- Use a better test for lib64
Jerry James b8d41d9
- Fix license handling
Jerry James b8d41d9
cc67dab
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.7-2
cc67dab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
cc67dab
Jerry James 22d259e
* Tue Jun 17 2014 Jerry James <loganjerry@gmail.com> - 1.1.7-1
Jerry James 22d259e
- New upstream release
Jerry James 22d259e
- Drop upstreamed -fixglpkinclude and -glpk patches
Jerry James 22d259e
- Use better URL for Source0
Jerry James 22d259e
- Build documentation with python3
Jerry James 22d259e
- Minor spec file cleanups
Jerry James 22d259e
3e470de
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.6-6
3e470de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3e470de
91848f1
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 1.1.6-5
91848f1
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
91848f1
c4c0610
* Fri Dec 06 2013 Nils Philippsen <nils@redhat.com> - 1.1.6-4
c4c0610
- rebuild (suitesparse)
c4c0610
Jerry James 117023e
* Mon Sep 23 2013 Jerry James <loganjerry@gmail.com> - 1.1.6-3
Jerry James 117023e
- Rebuild for atlas 3.10.1
Jerry James 117023e
Jerry James d71679e
* Tue Jul 30 2013 Jerry James <loganjerry@gmail.com> - 1.1.6-2
Jerry James da36986
- New glpk drops obsolete API; add -glpk patch to move to new API
Jerry James d71679e
- Fix Source0 URL
Jerry James d71679e
Jerry James b5411c2
* Tue May 28 2013 Jerry James <loganjerry@gmail.com> - 1.1.6-1
Jerry James b5411c2
- New upstream release
Jerry James b5411c2
- New project URL
Jerry James b5411c2
73648d4
* Sat Feb  2 2013 Jerry James <loganjerry@gmail.com> - 1.1.5-7
73648d4
- Rebuild for new glpk
73648d4
a3793af
* Sat Nov 17 2012 Jerry James <loganjerry@gmail.com> - 1.1.5-6
a3793af
- Rebuild for new suitesparse
a3793af
- Update BRs for texlive 2012
a3793af
Jerry James 566810e
* Wed Oct 10 2012 Jerry James <loganjerry@gmail.com> - 1.1.5-5
Jerry James 566810e
- Add linkage to fix undefined symbols (bz 832475)
Jerry James 566810e
3037995
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 1.1.5-4
3037995
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
3037995
11e8681
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.5-3
11e8681
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
11e8681
3f6c17d
* Tue Apr  3 2012 Jerry James <loganjerry@gmail.com> - 1.1.5-2
3f6c17d
- Fix filtering of provides
3f6c17d
5a35d67
* Mon Apr  2 2012 Jerry James <loganjerry@gmail.com> - 1.1.5-1
5a35d67
- New upstream release
5a35d67
- Build python3 subpackage
5a35d67
0301591
* Tue Jan 10 2012 Jerry James <loganjerry@gmail.com> - 1.1.4-2
0301591
- Mass rebuild for Fedora 17
0301591
- Fix insufficiently escaped filter expression
0301591
e8a1732
* Mon Jan  2 2012 Jerry James <loganjerry@gmail.com> - 1.1.4-1
e8a1732
- New upstream release
e8a1732
- Use the RPM 4.9 way of filtering provides
e8a1732
127afa8
* Wed Jun 22 2011 Jerry James <loganjerry@gmail.com> - 1.1.3-2
127afa8
- Rebuild due to bz 712251
127afa8
- Enable the DSDP extension
127afa8
b78ea11
* Thu May 19 2011 Jerry James <loganjerry@gmail.com> - 1.1.3-1
b78ea11
- New upstream release (bz 700288)
b78ea11
- Ensure linking against ATLAS BLAS instead of system BLAS
b78ea11
- Eliminate unnecessary linkage
b78ea11
- BR python-sphinx and tex4ht for the documentation
b78ea11
- Filter provides from python .so files
b78ea11
- Examples also need pygobject2
b78ea11
- Build documentation in %%build instead of %%prep
b78ea11
- Remove unnecessary elements of the spec file (%%clean, BuildRoot, etc.)
b78ea11
9b93a38
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-11
9b93a38
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
9b93a38
74f8212
* Fri Jul 30 2010 Orcan Ogetbil <oget[dot]fedora[at[gmail[dot]com> - 1.1-10
74f8212
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
74f8212
07d2d2b
* Fri Jul 23 2010 Conrad Meyer <konrad@tylerc.org> - 1.1-9
07d2d2b
- Fix glpk include.
07d2d2b
ac3e58d
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.1-8
ac3e58d
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
ac3e58d
0b1b7e9
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-7
0b1b7e9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
0b1b7e9
72d48f2
* Thu Feb 26 2009 Conrad Meyer <konrad@tylerc.org> - 1.1-6
72d48f2
- Make examples subpackage noarch.
72d48f2
a49e9c5
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-5
a49e9c5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
a49e9c5
326c440
* Mon Dec 8 2008 Conrad Meyer <konrad@tylerc.org> - 1.1-4
326c440
- Add BR on suitesparse-devel.
326c440
- Migrate examples to subpackage.
326c440
326c440
* Mon Dec 8 2008 Conrad Meyer <konrad@tylerc.org> - 1.1-3
326c440
- Remove SuiteSparse (copy of system library).
326c440
326c440
* Mon Dec 8 2008 Conrad Meyer <konrad@tylerc.org> - 1.1-2
326c440
- Move examples to datadir/name.
326c440
- Include html documentation.
326c440
- Package as a proper python egg.
326c440
326c440
* Mon Dec 8 2008 Conrad Meyer <konrad@tylerc.org> - 1.1-1
326c440
- Bump to 1.1.
326c440
326c440
* Mon Oct 13 2008 Conrad Meyer <konrad@tylerc.org> - 1.0-1
326c440
- Initial package.