5a83ed
Name:           sympy
5a83ed
Version:        1.8
5a83ed
Release:        1%{?dist}
5a83ed
Summary:        A Python library for symbolic mathematics
5a83ed
License:        BSD
5a83ed
URL:            http://sympy.org/
5a83ed
Source0:        https://github.com/%{name}/%{name}/archive/%{name}-%{version}.tar.gz
5a83ed
# Skip tests that require a display
5a83ed
Patch0:         %{name}-circuitplot.patch
5a83ed
# Default to python3 in the Cython backend
5a83ed
Patch1:         %{name}-python3.patch
5a83ed
# Adapt to Theano-PyMC
5a83ed
Patch2:         %{name}-theano-pymc.patch
5a83ed
# Work around Fedora pyglet not including PNGImageDecoder
5a83ed
# https://github.com/sympy/sympy/pull/20600
5a83ed
Patch3:         %{name}-png-decoder.patch
5a83ed
5a83ed
BuildArch:      noarch
5a83ed
5a83ed
BuildRequires:  gcc
5a83ed
BuildRequires:  gcc-c++
5a83ed
BuildRequires:  gcc-gfortran
5a83ed
BuildRequires:  gettext
5a83ed
BuildRequires:  graphviz
5a83ed
BuildRequires:  ImageMagick
5a83ed
BuildRequires:  librsvg2-tools
5a83ed
BuildRequires:  make
5a83ed
BuildRequires:  parallel
5a83ed
BuildRequires:  procps
5a83ed
BuildRequires:  python3-devel
5a83ed
BuildRequires:  %{py3_dist cython}
5a83ed
BuildRequires:  %{py3_dist docutils}
5a83ed
BuildRequires:  %{py3_dist fastcache}
5a83ed
BuildRequires:  %{py3_dist gmpy2}
5a83ed
BuildRequires:  %{py3_dist matplotlib}
5a83ed
BuildRequires:  %{py3_dist mpmath}
5a83ed
BuildRequires:  %{py3_dist numexpr}
5a83ed
BuildRequires:  %{py3_dist numpy}
5a83ed
BuildRequires:  python3-numpy-f2py
5a83ed
BuildRequires:  %{py3_dist scipy}
5a83ed
BuildRequires:  %{py3_dist setuptools}
5a83ed
BuildRequires:  %{py3_dist sphinx}
5a83ed
#BuildRequires:  %{py3_dist sphinx-math-dollar}
5a83ed
#BuildRequires:  %{py3_dist theano-pymc}
5a83ed
#BuildRequires:  %{py3_dist wurlitzer}
5a83ed
BuildRequires:  tex(latex)
5a83ed
BuildRequires:  tex-dvipng
5a83ed
BuildRequires:  xorg-x11-fonts-Type1
5a83ed
BuildRequires:  xorg-x11-server-Xvfb
5a83ed
5a83ed
%global _description\
5a83ed
SymPy aims to become a full-featured computer algebra system (CAS)\
5a83ed
while keeping the code as simple as possible in order to be\
5a83ed
comprehensible and easily extensible. SymPy is written entirely in\
5a83ed
Python and does not require any external libraries.
5a83ed
5a83ed
%description %_description
5a83ed
5a83ed
%package -n python3-%{name}
5a83ed
Summary:        A Python3 library for symbolic mathematics
5a83ed
Requires:       mesa-libGLU
5a83ed
Requires:       %{py3_dist cython}
5a83ed
Requires:       %{py3_dist fastcache}
5a83ed
Requires:       %{py3_dist gmpy2}
5a83ed
Requires:       %{py3_dist matplotlib}
5a83ed
Requires:       %{py3_dist pyglet}
5a83ed
5a83ed
Recommends:     tex(latex)
5a83ed
Recommends:     tex(amsfonts.sty)
5a83ed
Recommends:     tex(amsmath.sty)
5a83ed
Recommends:     tex(euler.sty)
5a83ed
Recommends:     tex(eulervm.sty)
5a83ed
Recommends:     tex(standalone.cls)
5a83ed
Recommends:     %{py3_dist numexpr}
5a83ed
Recommends:     %{py3_dist scipy}
5a83ed
Recommends:     %{py3_dist theano-pymc}
5a83ed
5a83ed
# This can be removed when F38 reaches EOL
5a83ed
Obsoletes:      sympy-texmacs < 1.8
5a83ed
5a83ed
%description -n python3-%{name}
5a83ed
SymPy aims to become a full-featured computer algebra system (CAS)
5a83ed
while keeping the code as simple as possible in order to be
5a83ed
comprehensible and easily extensible. SymPy is written entirely in
5a83ed
Python and does not require any external libraries.
5a83ed
5a83ed
%package examples
5a83ed
Summary:        Sympy examples
5a83ed
Requires:       python3-%{name} = %{version}-%{release}
5a83ed
5a83ed
%description examples
5a83ed
This package contains example input for sympy.
5a83ed
5a83ed
%package doc
5a83ed
Summary:        Documentation for sympy
5a83ed
Provides:       bundled(jquery)
5a83ed
Provides:       bundled(js-underscore)
5a83ed
5a83ed
%description doc
5a83ed
HTML documentation for sympy.
5a83ed
5a83ed
%prep
5a83ed
%autosetup -p1 -n %{name}-%{name}-%{version}
5a83ed
sed -i "s/, 'sphinx_math_dollar'//" doc/src/conf.py
5a83ed
5a83ed
# Do not depend on env
5a83ed
for fil in $(grep -rl "^#\![[:blank:]]*%{_bindir}/env" .); do
5a83ed
  sed -i.orig 's,^\(#\![[:blank:]]*%{_bindir}/\)env python,\1python3,' $fil
5a83ed
  touch -r $fil.orig $fil
5a83ed
  rm -f $fil.orig
5a83ed
done
5a83ed
5a83ed
%build
5a83ed
%py3_build
5a83ed
5a83ed
# Build the documentation
5a83ed
pushd doc
5a83ed
make html SPHINXOPTS=%{?_smp_mflags} PYTHON=%{python3}
5a83ed
make cheatsheet
5a83ed
popd
5a83ed
5a83ed
%install
5a83ed
%py3_install
5a83ed
5a83ed
## Remove extra files
5a83ed
rm -f %{buildroot}%{_bindir}/{,doc}test
5a83ed
5a83ed
# Don't let an executable script go into the documentation
5a83ed
chmod -R a-x+X examples
5a83ed
5a83ed
# Install the HTML documentation
5a83ed
mkdir -p %{buildroot}%{_docdir}/%{name}-doc
5a83ed
cp -a doc/_build/html %{buildroot}%{_docdir}/%{name}-doc
5a83ed
rm -f %{buildroot}%{_docdir}/%{name}-doc/html/.buildinfo
5a83ed
rm -fr %{buildroot}%{_docdir}/%{name}-doc/i18n
5a83ed
5a83ed
# Try to get rid of pyc files, which aren't useful for documentation
5a83ed
find examples/ -name '*.py[co]' -print -delete
5a83ed
5a83ed
%check
5a83ed
# Many tests assume they are running on an x86_64 machine.  Some assume that
5a83ed
# native 64-bit integers are available.  Some assume that 80-bit floating point
5a83ed
# numbers are available.  Some assume that certain operations always produce
5a83ed
# numpy float64 values (but produce float32 values on some architectures).  I
5a83ed
# used to try to keep the test suite working on all architectures, but it has
5a83ed
# become too much of a burden.  Only run tests if we happen to build on x86_64.
5a83ed
if [ "$(uname -p)" = "x86_64" ]; then
5a83ed
  # Split into many small chunks to reduce waiting in the end-game
5a83ed
  jobs=%{?_smp_mflags}; jobs=${jobs#-j}; jobs=$((jobs * 3))
5a83ed
5a83ed
  xvfb-run -d \
5a83ed
      parallel %{?_smp_mflags} \
5a83ed
      %{python3} bin/test -v --split {}/$jobs \
5a83ed
      ::: $(bash -c "echo {1..$jobs}") || true
5a83ed
fi
5a83ed
5a83ed
%files -n python3-%{name}
5a83ed
%doc AUTHORS README.md
5a83ed
%doc doc/_build/cheatsheet/combinatoric_cheatsheet.pdf
5a83ed
%license LICENSE
5a83ed
%{python3_sitelib}/isympy.*
5a83ed
%{python3_sitelib}/__pycache__/isympy.*
5a83ed
%{python3_sitelib}/sympy/
5a83ed
%{python3_sitelib}/sympy-%{version}-*.egg-info
5a83ed
%{_bindir}/isympy
5a83ed
%{_mandir}/man1/isympy.1*
5a83ed
5a83ed
%files examples
5a83ed
%doc examples/*
5a83ed
5a83ed
%files doc
5a83ed
%docdir %{_docdir}/%{name}-doc/html
5a83ed
%{_docdir}/%{name}-doc/html
5a83ed
5a83ed
%changelog
5a83ed
* Mon Apr 12 2021 Jerry James <loganjerry@gmail.com> - 1.8-1
5a83ed
- Version 1.8
5a83ed
- Drop the -float patch and only run tests on x86_64
5a83ed
- Add -circuitplot patch to skip tests that fail with no display
5a83ed
- Drop the -texmacs subpackage; the TeXmacs package ships its own sympy plugin
5a83ed
5a83ed
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.1-2
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
5a83ed
5a83ed
* Sat Dec 12 2020 Jerry James <loganjerry@gmail.com> - 1.7.1-1
5a83ed
- Version 1.7.1
5a83ed
5a83ed
* Thu Dec 10 2020 Jerry James <loganjerry@gmail.com> - 1.7-2
5a83ed
- Fix preview of PNG images (bz 1906363)
5a83ed
- Add missing Recommends needed to preview images (bz 1906363)
5a83ed
5a83ed
* Sat Nov 28 2020 Jerry James <loganjerry@gmail.com> - 1.7-1
5a83ed
- Version 1.7
5a83ed
5a83ed
* Thu Nov 26 2020 Jerry James <loganjerry@gmail.com> - 1.6.2-2
5a83ed
- Update Theano dependency for Theano-PyMC
5a83ed
- Add -theano-pymc patch to adapt
5a83ed
5a83ed
* Mon Aug 10 2020 Jerry James <loganjerry@gmail.com> - 1.6.2-1
5a83ed
- Version 1.6.2
5a83ed
5a83ed
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-2
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
5a83ed
5a83ed
* Thu Jul  2 2020 Jerry James <loganjerry@gmail.com> - 1.6.1-1
5a83ed
- Version 1.6.1
5a83ed
- Drop upstreamed -ast patch
5a83ed
5a83ed
* Wed Jun 24 2020 Jerry James <loganjerry@gmail.com> - 1.6-2
5a83ed
- Add setuptools BR
5a83ed
- Add -ast patch to fix compilation with python 3.9
5a83ed
5a83ed
* Fri May 29 2020 Jerry James <loganjerry@gmail.com> - 1.6-1
5a83ed
- Version 1.6
5a83ed
- Drop upstreamed -doc and -sample-set patches
5a83ed
- Disable testing on 32-bit systems; too many tests need 64-bit integers
5a83ed
5a83ed
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.5.1-4
5a83ed
- Rebuilt for Python 3.9
5a83ed
5a83ed
* Mon May 11 2020 Jerry James <loganjerry@gmail.com> - 1.5.1-3
5a83ed
- Add -sample-set patch to fix test failure with python 3.9
5a83ed
5a83ed
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-2
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
5a83ed
5a83ed
* Wed Jan  8 2020 Jerry James <loganjerry@gmail.com> - 1.5.1-1
5a83ed
- Update to 1.5.1
5a83ed
- Drop upstreamed patches
5a83ed
- Drop upstreamed workaround for numpy with a release candidate version
5a83ed
5a83ed
* Mon Nov  4 2019 Jerry James <loganjerry@gmail.com> - 1.4-6
5a83ed
- Fix broken dependencies in the -texmacs subpackage
5a83ed
- Recommend numexpr
5a83ed
5a83ed
* Fri Sep 13 2019 Jerry James <loganjerry@gmail.com> - 1.4-5
5a83ed
- Add one more patch to fix a python 3.8 warning
5a83ed
5a83ed
* Sat Aug 24 2019 Robert-André Mauchin <zebob.m@gmail.com>  - 1.4-4
5a83ed
- Add patches to fix build with Python 3.8 and Numpy 1.17
5a83ed
5a83ed
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.4-3
5a83ed
- Rebuilt for Python 3.8
5a83ed
5a83ed
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-2
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
5a83ed
5a83ed
* Wed Apr 17 2019 Jerry James <loganjerry@gmail.com> - 1.4-1
5a83ed
- Update to 1.4
5a83ed
- Drop -factorial patch
5a83ed
5a83ed
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-3
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
5a83ed
5a83ed
* Wed Jan 30 2019 Jerry James <loganjerry@gmail.com> - 1.3-2
5a83ed
- Add -sympify and -factorial patches to work around test failures
5a83ed
5a83ed
* Mon Jan 14 2019 Jerry James <loganjerry@gmail.com> - 1.3-2
5a83ed
- Drop Requires from the -doc subpackage (bz 1665767)
5a83ed
5a83ed
* Sat Oct  6 2018 Jerry James <loganjerry@gmail.com> - 1.3-1
5a83ed
- Update to 1.3
5a83ed
- Drop upstreamed patches: subexpr-lambdify, test-code-quality, tex-encoding
5a83ed
- Drop the python2 subpackage
5a83ed
- Add -python3 patch to ask cython to generate python 3 code
5a83ed
5a83ed
* Tue Aug 14 2018 Miro Hrončok <mhroncok@redhat.com> - 1.2-2
5a83ed
- Fix _subexpr method in lambdify
5a83ed
5a83ed
* Sat Jul 21 2018 Jerry James <loganjerry@gmail.com> - 1.2-1
5a83ed
- Update to 1.2 (bz 1599502)
5a83ed
- Drop upstreamed -python3 patch
5a83ed
- Add -test-code-quality and -doc patches
5a83ed
5a83ed
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-6
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
5a83ed
5a83ed
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.1.1-5
5a83ed
- Rebuilt for Python 3.7
5a83ed
5a83ed
* Wed Feb 21 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.1.1-4
5a83ed
- Update Python 2 dependency declarations to new packaging standards
5a83ed
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
5a83ed
5a83ed
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-3
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
5a83ed
5a83ed
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.1.1-2
5a83ed
- Python 2 binary package renamed to python2-sympy
5a83ed
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
5a83ed
5a83ed
* Thu Jul 27 2017 Jerry James <loganjerry@gmail.com> - 1.1.1-1
5a83ed
- Update to 1.1.1 (bz 1468405)
5a83ed
5a83ed
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-4
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
5a83ed
5a83ed
* Mon Jul 24 2017 Jerry James <loganjerry@gmail.com> - 1.1-3
5a83ed
- Fix dependency on python2 from python3 package (bz 1471886)
5a83ed
5a83ed
* Sat Jul  8 2017 Jerry James <loganjerry@gmail.com> - 1.1-2
5a83ed
- Disable tests that fail due to overflow on some 32-bit architectures
5a83ed
5a83ed
* Fri Jul  7 2017 Jerry James <loganjerry@gmail.com> - 1.1-1
5a83ed
- Update to 1.1 (bz 1468405)
5a83ed
- All patches have been upstreamed; drop them all
5a83ed
5a83ed
* Sat Apr  1 2017 Jerry James <loganjerry@gmail.com> - 1.0-7
5a83ed
- Update theano test for theano 0.9
5a83ed
5a83ed
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-6
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5a83ed
5a83ed
* Fri Jan 20 2017 Iryna Shcherbina <ishcherb@redhat.com> - 1.0-5
5a83ed
- Make documentation scripts non-executable to avoid
5a83ed
  autogenerating Python 2 dependency in sympy-examples (#1360766)
5a83ed
5a83ed
* Fri Jan 13 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.0-4
5a83ed
- Run tests in parallel
5a83ed
- Work around some broken tests
5a83ed
- Use python3 in texmacs-sympy (#1360766)
5a83ed
5a83ed
* Thu Dec 22 2016 Miro Hrončok <mhroncok@redhat.com> - 1.0-4
5a83ed
- Rebuild for Python 3.6
5a83ed
5a83ed
* Fri Jul 22 2016 Jerry James <loganjerry@gmail.com> - 1.0-3
5a83ed
- Update the -test patch for the latest matplotlib release
5a83ed
5a83ed
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-3
5a83ed
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
5a83ed
5a83ed
* Sat Apr  2 2016 Jerry James <loganjerry@gmail.com> - 1.0-2
5a83ed
- Fix bad /usr/bin/env substitution
5a83ed
5a83ed
* Thu Mar 31 2016 Jerry James <loganjerry@gmail.com> - 1.0-1
5a83ed
- Update to 1.0
5a83ed
- All patches have been upstreamed; drop them all
5a83ed
- Add -test patch to fix test failures with recent mpmath
5a83ed
- Recommend scipy
5a83ed
5a83ed
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.6.1-3
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
5a83ed
5a83ed
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
5a83ed
5a83ed
* Thu Sep  3 2015 Jerry James <loganjerry@gmail.com> - 0.7.6.1-1
5a83ed
- Update to 0.7.6.1 (bz 1259971)
5a83ed
5a83ed
* Mon Jul  6 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.7.6-3
5a83ed
- Fix failure in tests (#1240097)
5a83ed
5a83ed
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.6-2
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
5a83ed
5a83ed
* Fri Dec  5 2014 Jerry James <loganjerry@gmail.com> - 0.7.6-1
5a83ed
- Update to 0.7.6
5a83ed
- Drop upstreamed -test and -is-tangent patches
5a83ed
- Drop obsolete bug workarounds
5a83ed
- Add python(3)-fastcache BR and R
5a83ed
- Recommend python-theano
5a83ed
- Fix executable bits on tm_sympy
5a83ed
5a83ed
* Tue Sep 16 2014 Jerry James <loganjerry@gmail.com> - 0.7.5-4
5a83ed
- Drop python3-six BR and R now that bz 1140413 is fixed
5a83ed
- Use gmpy2
5a83ed
5a83ed
* Wed Sep  3 2014 Jerry James <loganjerry@gmail.com> - 0.7.5-3
5a83ed
- Install both isympy and python3-isympy to comply with packaging standards
5a83ed
- Add -is-tangent patch (bz 1135677)
5a83ed
- Temporarily disable tests that fail due to mpmath bugs (bz 1127796)
5a83ed
- Fix license handling
5a83ed
- Add python3-six BR and R; see bz 1140413 for details
5a83ed
5a83ed
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.5-3
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
5a83ed
5a83ed
* Mon May 19 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 0.7.5-2
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
5a83ed
5a83ed
* Thu Mar 13 2014 Jerry James <loganjerry@gmail.com> - 0.7.5-1
5a83ed
- Update to 0.7.5 (bz 1066951)
5a83ed
- Binaries now default to using python3
5a83ed
- Use py3dir macro to simplify python3 build
5a83ed
- Add BRs for more comprehensive testing
5a83ed
- Workaround bz 1075826
5a83ed
- Add -test patch to fix Unicode problem in the tests
5a83ed
5a83ed
* Mon Dec  9 2013 Jerry James <loganjerry@gmail.com> - 0.7.4-1
5a83ed
- Update to 0.7.4
5a83ed
- Python 2 and 3 sources are now in the same tarball
5a83ed
5a83ed
* Fri Oct 18 2013 Jerry James <loganjerry@gmail.com> - 0.7.3-2
5a83ed
- Build a python3 subpackage (bz 982759)
5a83ed
5a83ed
* Fri Aug  2 2013 Jerry James <loganjerry@gmail.com> - 0.7.3-1
5a83ed
- Update to 0.7.3
5a83ed
- Upstream dropped all tutorial translations
5a83ed
- Add graphviz BR for documentation
5a83ed
- Sources now distributed from github instead of googlecode
5a83ed
- Adapt to versionless _docdir in Rawhide
5a83ed
5a83ed
* Mon Jun 17 2013 Jerry James <loganjerry@gmail.com> - 0.7.2-1
5a83ed
- Update to 0.7.2 (bz 866044)
5a83ed
- Add python-pyglet R (bz 890312)
5a83ed
- Package the TeXmacs integration
5a83ed
- Build and provide documentation
5a83ed
- Provide examples
5a83ed
- Minor spec file cleanups
5a83ed
5a83ed
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-4
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
5a83ed
5a83ed
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-3
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
5a83ed
5a83ed
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-2
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
5a83ed
5a83ed
* Tue Oct 11 2011 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.7.1-1
5a83ed
- Update to 0.7.1.
5a83ed
5a83ed
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-6
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
5a83ed
5a83ed
* Mon Aug 30 2010 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.6.7-5
5a83ed
- Patch around BZ #564504.
5a83ed
5a83ed
* Sat Jul 31 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.7-4
5a83ed
- fix a python 2.7 incompatibility
5a83ed
5a83ed
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.7-3
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
5a83ed
5a83ed
* Tue Apr 27 2010 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.6.7-2
5a83ed
- Added %%check phase.
5a83ed
5a83ed
* Tue Apr 27 2010 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.6.7-1
5a83ed
- Update to 0.6.7.
5a83ed
5a83ed
* Mon Feb 15 2010 Conrad Meyer <konrad@tylerc.org> - 0.6.6-3
5a83ed
- Patch around private copy nicely; avoid breakage from trying to replace
5a83ed
  a directory with a symlink.
5a83ed
5a83ed
* Mon Feb 15 2010 Conrad Meyer <konrad@tylerc.org> - 0.6.6-2
5a83ed
- Remove private copy of system lib 'mpmath' (rhbz #551576).
5a83ed
5a83ed
* Sun Dec 27 2009 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.6.6-1
5a83ed
- Update to 0.6.6.
5a83ed
5a83ed
* Sat Nov 07 2009 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.6.5-1
5a83ed
- Update to 0.6.5.
5a83ed
5a83ed
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-3
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
5a83ed
5a83ed
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-2
5a83ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
5a83ed
5a83ed
* Thu Dec 4 2008 Conrad Meyer <konrad@tylerc.org> - 0.6.3-1
5a83ed
- Bump to 0.6.3, supports python 2.6.
5a83ed
5a83ed
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.2-3
5a83ed
- Rebuild for Python 2.6
5a83ed
5a83ed
* Mon Oct 13 2008 Conrad Meyer <konrad@tylerc.org> - 0.6.2-2
5a83ed
- Patch to remove extraneous shebangs.
5a83ed
5a83ed
* Sun Oct 12 2008 Conrad Meyer <konrad@tylerc.org> - 0.6.2-1
5a83ed
- Initial package.