a55edf4
Name:           sympy
c6c6e1b
Version:        1.1.1
d1f53a2
Release:        4%{?dist}
a55edf4
Summary:        A Python library for symbolic mathematics
a55edf4
License:        BSD
Jerry James a2507d0
URL:            http://sympy.org/
d681cf5
Source0:        https://github.com/%{name}/%{name}/archive/%{name}-%{version}.tar.gz
22c87ae
a55edf4
BuildArch:      noarch
Jerry James a2507d0
Jerry James ff2f215
BuildRequires:  gcc-gfortran
Jerry James a2507d0
BuildRequires:  gettext
Jerry James 33d1430
BuildRequires:  graphviz
Jerry James ff2f215
BuildRequires:  ImageMagick
Jerry James ff2f215
BuildRequires:  librsvg2-tools
d1f53a2
BuildRequires:  python2-numpy python3-numpy
d1f53a2
BuildRequires:  python2-numpy-f2py python3-numpy-f2py
Jerry James 35262a6
BuildRequires:  python2-devel python3-devel
9819633
BuildRequires:  python2-docutils
d681cf5
BuildRequires:  python2-fastcache python3-fastcache
d681cf5
BuildRequires:  python2-gmpy2 python3-gmpy2
d681cf5
BuildRequires:  python2-matplotlib python3-matplotlib
d1f53a2
BuildRequires:  python2-mpmath python3-mpmath
d681cf5
BuildRequires:  python2-scipy python3-scipy
9819633
BuildRequires:  python3-sphinx
978bbc8
BuildRequires:  python2-theano python3-theano
Jerry James a2507d0
BuildRequires:  tex(latex)
Jerry James a2507d0
BuildRequires:  tex-dvipng
Jerry James ff2f215
BuildRequires:  xorg-x11-fonts-Type1
Jerry James ff2f215
BuildRequires:  xorg-x11-server-Xvfb
a6942f1
BuildRequires:  parallel
Jerry James a2507d0
5abf2c8
%global _description\
5abf2c8
SymPy aims to become a full-featured computer algebra system (CAS)\
5abf2c8
while keeping the code as simple as possible in order to be\
5abf2c8
comprehensible and easily extensible. SymPy is written entirely in\
5abf2c8
Python and does not require any external libraries.
5abf2c8
5abf2c8
%description %_description
5abf2c8
5abf2c8
%package -n python2-%{name}
5abf2c8
Summary: %summary
d681cf5
Requires:       mesa-libGLU
d681cf5
Requires:       python2-fastcache
d681cf5
Requires:       python2-gmpy2
d681cf5
Requires:       python2-matplotlib
d1f53a2
Requires:       python2-mpmath
d1f53a2
Requires:       python2-pyglet
d681cf5
Recommends:     python2-scipy
d681cf5
Recommends:     python2-theano
5abf2c8
%{?python_provide:%python_provide python2-%{name}}
5abf2c8
# Remove before F30
5abf2c8
Provides: sympy%{?_isa} = %{version}-%{release}
5abf2c8
Obsoletes: sympy < %{version}-%{release}
Jerry James b37cad1
5abf2c8
%description -n python2-%{name} %_description
a55edf4
Jerry James 35262a6
%package -n python3-%{name}
Jerry James 35262a6
Summary:        A Python3 library for symbolic mathematics
d681cf5
Requires:       mesa-libGLU
Jerry James b37cad1
Requires:       python3-fastcache
Jerry James df3a4c6
Requires:       python3-gmpy2
Jerry James 35262a6
Requires:       python3-matplotlib
Jerry James 35262a6
Requires:       python3-mpmath
Jerry James 35262a6
Requires:       python3-pyglet
Jerry James 35262a6
d681cf5
Recommends:     python3-scipy
Jerry James b37cad1
Recommends:     python3-theano
Jerry James b37cad1
Jerry James 35262a6
%description -n python3-%{name}
Jerry James 35262a6
SymPy aims to become a full-featured computer algebra system (CAS)
Jerry James 35262a6
while keeping the code as simple as possible in order to be
Jerry James 35262a6
comprehensible and easily extensible. SymPy is written entirely in
Jerry James 35262a6
Python and does not require any external libraries.
Jerry James 35262a6
Jerry James a2507d0
%package texmacs
Jerry James a2507d0
Summary:        TeXmacs integration for sympy
4976757
Requires:       %{name} = %{version}-%{release}
4976757
Requires:       texmacs
Jerry James a2507d0
Jerry James a2507d0
%description texmacs
Jerry James a2507d0
This package contains a TeXmacs plugin for sympy.
Jerry James a2507d0
Jerry James a2507d0
%package examples
Jerry James a2507d0
Summary:        Sympy examples
Jerry James a2507d0
Requires:       %{name} = %{version}-%{release}
9819633
# once rich dependencies are allowed, add "or python3-sympy = %%{version}-%%{release}"
Jerry James a2507d0
Jerry James a2507d0
%description examples
Jerry James a2507d0
This package contains example input for sympy.
Jerry James a2507d0
Jerry James a2507d0
%package doc
Jerry James a2507d0
Summary:        Documentation for sympy
Jerry James a2507d0
Requires:       %{name} = %{version}-%{release}
Jerry James b37cad1
Provides:       bundled(jquery)
Jerry James a2507d0
Jerry James a2507d0
%description doc
Jerry James a2507d0
HTML documentation for sympy.
Jerry James a2507d0
d681cf5
%global sympydir %{name}-%{name}-%{version}
d681cf5
a55edf4
%prep
d681cf5
%setup -q -c
d681cf5
44f30c7
# If running on a 32-bit system, disable a test that requires 64-bit integers.
24077a4
%global maxpyint %(python3 -c 'import sys;print("%x" % sys.maxsize)')
44f30c7
if [ "%{maxpyint}" = "7fffffff" ]; then
9744996
  sed -i '/issue 6393/,/assert b == -d/d' \
9744996
    %{sympydir}/sympy/polys/tests/test_rootoftools.py
44f30c7
fi
44f30c7
e942db7
# If not running on x86 with a floating point coprocessor, disable a test that
e942db7
# requires 80-bit long doubles.
e942db7
%ifnarch i686
e942db7
sed -i '585,586d' %{sympydir}/sympy/core/tests/test_sympify.py
e942db7
%endif
e942db7
46118a3
# Allow building with a numpy that has a release candidate version number
46118a3
sed -i 's/StrictVersion/LooseVersion/g' %{sympydir}/sympy/external/importtools.py
46118a3
Jerry James 6c6d8a1
# Make a copy for building the python3 version
d681cf5
cp -a %{sympydir} python3
d681cf5
46118a3
# One test gets an extra warning with python3
46118a3
sed -i '/Adaptive meshing could not be applied/d' \
46118a3
    python3/sympy/plotting/tests/test_plot_implicit.py
46118a3
7c17afb
# Do not depend on env
7c17afb
for fil in $(grep -rl "^#\![[:blank:]]*%{_bindir}/env" %{sympydir}); do
7c17afb
  sed -i.orig 's,^\(#\![[:blank:]]*%{_bindir}/\)env python,\1python2,' $fil
7c17afb
  touch -r $fil.orig $fil
7c17afb
  rm -f $fil.orig
7c17afb
done
7c17afb
for fil in $(grep -rl "^#\![[:blank:]]*%{_bindir}/env" python3); do
7c17afb
  sed -i.orig 's,^\(#\![[:blank:]]*%{_bindir}/\)env python,\1python3,' $fil
7c17afb
  touch -r $fil.orig $fil
7c17afb
  rm -f $fil.orig
7c17afb
done
7c17afb
a55edf4
%build
Jerry James 35262a6
# Build the python2 version
d681cf5
pushd %{sympydir}
39f457b
%py2_build
d681cf5
popd
Jerry James 35262a6
Jerry James 35262a6
# Build the python3 version
d681cf5
pushd python3
39f457b
%py3_build
Jerry James ff2f215
popd
a55edf4
Jerry James a2507d0
# Build the documentation
d681cf5
pushd %{sympydir}/doc
9819633
sed -i 's/sphinx-build/&-%{python3_version}/' Makefile
84b8afd
make html SPHINXOPTS=%{?_smp_mflags}
Jerry James a2507d0
make cheatsheet
d681cf5
popd
d681cf5
pushd python3/doc
Jerry James 35262a6
make cheatsheet
Jerry James ff2f215
popd
Jerry James a2507d0
a55edf4
%install
Jerry James ff2f215
# Install the python3 version
d681cf5
pushd python3
39f457b
%py3_install
Jerry James bb69373
mv %{buildroot}%{_bindir}/isympy %{buildroot}%{_bindir}/python3-isympy
Jerry James b37cad1
mv %{buildroot}%{_mandir}/man1/isympy.1 \
Jerry James b37cad1
   %{buildroot}%{_mandir}/man1/python3-isympy.1
Jerry James ff2f215
popd
Jerry James ff2f215
Jerry James bb69373
# Install the python2 version
d681cf5
pushd %{sympydir}
39f457b
%py2_install
d681cf5
popd
Jerry James bb69373
Jerry James 35262a6
## Remove extra files
28422ac
rm -f %{buildroot}%{_bindir}/{,doc}test
3eb9aba
Jerry James 35262a6
## Install the TeXmacs integration
d681cf5
pushd %{sympydir}
4976757
sed 's/python/python3/' data/TeXmacs/bin/tm_sympy > \
Jerry James ff2f215
  %{buildroot}%{_bindir}/tm_sympy
Jerry James b37cad1
chmod a+x %{buildroot}%{_bindir}/tm_sympy
Jerry James ff2f215
touch -r data/TeXmacs/bin/tm_sympy %{buildroot}%{_bindir}/tm_sympy
Jerry James a2507d0
mkdir -p %{buildroot}%{_datadir}/TeXmacs/plugins/sympy
Jerry James a2507d0
cp -a data/TeXmacs/progs %{buildroot}%{_datadir}/TeXmacs/plugins/sympy
d681cf5
chmod a-x %{buildroot}%{_datadir}/TeXmacs/plugins/sympy/progs/*.scm
Jerry James a2507d0
Jerry James a2507d0
# Don't let an executable script go into the documentation
Iryna Shcherbina 7ba795f
chmod -R a-x+X examples
Jerry James a2507d0
d681cf5
# Convert the README to HTML
4976757
rst2html --no-datestamp README.rst README.html
d681cf5
Jerry James a2507d0
# Install the HTML documentation
Jerry James 1f8e051
mkdir -p %{buildroot}%{_docdir}/%{name}-doc
Jerry James 1f8e051
cp -a doc/_build/html %{buildroot}%{_docdir}/%{name}-doc
Jerry James 1f8e051
rm -f %{buildroot}%{_docdir}/%{name}-doc/html/.buildinfo
Jerry James 1f8e051
rm -fr %{buildroot}%{_docdir}/%{name}-doc/i18n
d681cf5
popd
Jerry James b37cad1
4976757
# Try to get rid of pyc files, which aren't useful for documentation
4976757
find %{sympydir}/examples/ -name '*.py[co]' -print -delete
4976757
9819633
# Fix some executable bits
9819633
chmod a+x \
9819633
  %{buildroot}%{python2_sitelib}/sympy/benchmarks/bench_symbench.py \
f5d93e9
  %{buildroot}%{python2_sitelib}/sympy/physics/mechanics/models.py \
9819633
  %{buildroot}%{python2_sitelib}/sympy/utilities/tests/diagnose_imports.py \
9819633
  %{buildroot}%{python3_sitelib}/sympy/benchmarks/bench_symbench.py \
f5d93e9
  %{buildroot}%{python3_sitelib}/sympy/physics/mechanics/models.py \
9819633
  %{buildroot}%{python3_sitelib}/sympy/utilities/tests/diagnose_imports.py
9819633
3eb9aba
%check
Jerry James ff2f215
let "dnum = $RANDOM % 90 + 10"
a6942f1
# Split into many small chunks to reduce waiting in the end-game
a6942f1
jobs=%{?_smp_mflags}; jobs=${jobs#-j}; jobs=$((jobs * 3))
a6942f1
d681cf5
pushd %{sympydir}
a6942f1
xvfb-run -a -n $dnum \
a6942f1
    parallel %{?_smp_mflags} \
a6942f1
    %{__python2} bin/test -v --split {}/$jobs \
a6942f1
    ::: $(bash -c "echo {1..$jobs}")
d681cf5
popd
a6942f1
d681cf5
pushd python3
a6942f1
xvfb-run -a -n $dnum \
a6942f1
    parallel %{?_smp_mflags} \
a6942f1
    %{__python3} bin/test -v --split {}/$jobs \
a6942f1
    ::: $(bash -c "echo {1..$jobs}")
Jerry James ff2f215
popd
a55edf4
 
5abf2c8
%files -n python2-%{name}
d681cf5
%doc %{sympydir}/AUTHORS %{sympydir}/CODE_OF_CONDUCT.md %{sympydir}/README.html
d681cf5
%doc %{sympydir}/doc/_build/cheatsheet/combinatoric_cheatsheet.pdf
d681cf5
%license %{sympydir}/LICENSE
Jerry James 35262a6
%{python2_sitelib}/sympy/
Jerry James 35262a6
%{python2_sitelib}/sympy-%{version}-*.egg-info
Jerry James bb69373
%{_bindir}/isympy
Jerry James bb69373
%{_mandir}/man1/isympy.1*
a55edf4
Jerry James 35262a6
%files -n python3-%{name}
d681cf5
%doc python3/AUTHORS python3/CODE_OF_CONDUCT.md %{sympydir}/README.html
d681cf5
%doc python3/doc/_build/cheatsheet/combinatoric_cheatsheet.pdf
d681cf5
%license python3/LICENSE
Jerry James 35262a6
%{python3_sitelib}/sympy/
Jerry James 35262a6
%{python3_sitelib}/sympy-%{version}-*.egg-info
Jerry James bb69373
%{_bindir}/python3-isympy
Jerry James bb69373
%{_mandir}/man1/python3-isympy.1*
Jerry James 35262a6
Jerry James a2507d0
%files texmacs
d681cf5
%license %{sympydir}/data/TeXmacs/LICENSE
Jerry James a2507d0
%{_bindir}/tm_sympy
Jerry James a2507d0
%{_datadir}/TeXmacs/plugins/sympy/
Jerry James a2507d0
Jerry James a2507d0
%files examples
d681cf5
%doc %{sympydir}/examples/*
Jerry James a2507d0
Jerry James a2507d0
%files doc
Jerry James 1f8e051
%docdir %{_docdir}/%{name}-doc/html
Jerry James 1f8e051
%{_docdir}/%{name}-doc/html
Jerry James a2507d0
a55edf4
%changelog
d1f53a2
* Wed Feb 21 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.1.1-4
d1f53a2
- Update Python 2 dependency declarations to new packaging standards
d1f53a2
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
d1f53a2
d3f3fa3
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-3
d3f3fa3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d3f3fa3
5abf2c8
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.1.1-2
5abf2c8
- Python 2 binary package renamed to python2-sympy
5abf2c8
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
5abf2c8
c6c6e1b
* Thu Jul 27 2017 Jerry James <loganjerry@gmail.com> - 1.1.1-1
c6c6e1b
- Update to 1.1.1 (bz 1468405)
c6c6e1b
1724a74
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-4
1724a74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1724a74
7c17afb
* Mon Jul 24 2017 Jerry James <loganjerry@gmail.com> - 1.1-3
7c17afb
- Fix dependency on python2 from python3 package (bz 1471886)
7c17afb
63856f7
* Sat Jul  8 2017 Jerry James <loganjerry@gmail.com> - 1.1-2
63856f7
- Disable tests that fail due to overflow on some 32-bit architectures
63856f7
9819633
* Fri Jul  7 2017 Jerry James <loganjerry@gmail.com> - 1.1-1
9819633
- Update to 1.1 (bz 1468405)
9819633
- All patches have been upstreamed; drop them all
9819633
d55f2d8
* Sat Apr  1 2017 Jerry James <loganjerry@gmail.com> - 1.0-7
d55f2d8
- Update theano test for theano 0.9
d55f2d8
51855d1
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-6
51855d1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
51855d1
Iryna Shcherbina 7ba795f
* Fri Jan 20 2017 Iryna Shcherbina <ishcherb@redhat.com> - 1.0-5
Iryna Shcherbina 7ba795f
- Make documentation scripts non-executable to avoid
Iryna Shcherbina 7ba795f
  autogenerating Python 2 dependency in sympy-examples (#1360766)
Iryna Shcherbina 7ba795f
a6942f1
* Fri Jan 13 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.0-4
a6942f1
- Run tests in parallel
22c87ae
- Work around some broken tests
4976757
- Use python3 in texmacs-sympy (#1360766)
a6942f1
c9a7982
* Thu Dec 22 2016 Miro Hrončok <mhroncok@redhat.com> - 1.0-4
c9a7982
- Rebuild for Python 3.6
c9a7982
f76269a
* Fri Jul 22 2016 Jerry James <loganjerry@gmail.com> - 1.0-3
f76269a
- Update the -test patch for the latest matplotlib release
f76269a
46d2385
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-3
46d2385
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
46d2385
97e1adc
* Sat Apr  2 2016 Jerry James <loganjerry@gmail.com> - 1.0-2
97e1adc
- Fix bad /usr/bin/env substitution
97e1adc
d681cf5
* Thu Mar 31 2016 Jerry James <loganjerry@gmail.com> - 1.0-1
d681cf5
- Update to 1.0
d681cf5
- All patches have been upstreamed; drop them all
d681cf5
- Add -test patch to fix test failures with recent mpmath
d681cf5
- Recommend scipy
d681cf5
4679266
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.6.1-3
4679266
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
4679266
0e10ede
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
0e10ede
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
0e10ede
d6d6e52
* Thu Sep  3 2015 Jerry James <loganjerry@gmail.com> - 0.7.6.1-1
d6d6e52
- Update to 0.7.6.1 (bz 1259971)
d6d6e52
8016ad0
* Mon Jul  6 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.7.6-3
8016ad0
- Fix failure in tests (#1240097)
8016ad0
8df8892
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.6-2
8df8892
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8df8892
Jerry James b37cad1
* Fri Dec  5 2014 Jerry James <loganjerry@gmail.com> - 0.7.6-1
Jerry James b37cad1
- Update to 0.7.6
Jerry James b37cad1
- Drop upstreamed -test and -is-tangent patches
Jerry James b37cad1
- Drop obsolete bug workarounds
Jerry James b37cad1
- Add python(3)-fastcache BR and R
Jerry James b37cad1
- Recommend python-theano
Jerry James b37cad1
- Fix executable bits on tm_sympy
Jerry James b37cad1
Jerry James df3a4c6
* Tue Sep 16 2014 Jerry James <loganjerry@gmail.com> - 0.7.5-4
Jerry James b37cad1
- Drop python3-six BR and R now that bz 1140413 is fixed
Jerry James df3a4c6
- Use gmpy2
Jerry James df3a4c6
Jerry James df3a4c6
* Wed Sep  3 2014 Jerry James <loganjerry@gmail.com> - 0.7.5-3
Jerry James bb69373
- Install both isympy and python3-isympy to comply with packaging standards
Jerry James bb69373
- Add -is-tangent patch (bz 1135677)
Jerry James bb69373
- Temporarily disable tests that fail due to mpmath bugs (bz 1127796)
Jerry James bb69373
- Fix license handling
Jerry James 6c6d8a1
- Add python3-six BR and R; see bz 1140413 for details
Jerry James bb69373
8562f02
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.5-3
8562f02
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8562f02
b90233b
* Mon May 19 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 0.7.5-2
b90233b
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
b90233b
Jerry James ff2f215
* Thu Mar 13 2014 Jerry James <loganjerry@gmail.com> - 0.7.5-1
Jerry James ff2f215
- Update to 0.7.5 (bz 1066951)
Jerry James ff2f215
- Binaries now default to using python3
Jerry James ff2f215
- Use py3dir macro to simplify python3 build
Jerry James ff2f215
- Add BRs for more comprehensive testing
Jerry James ff2f215
- Workaround bz 1075826
Jerry James ff2f215
- Add -test patch to fix Unicode problem in the tests
Jerry James ff2f215
Jerry James db28264
* Mon Dec  9 2013 Jerry James <loganjerry@gmail.com> - 0.7.4-1
Jerry James db28264
- Update to 0.7.4
Jerry James db28264
- Python 2 and 3 sources are now in the same tarball
Jerry James db28264
Jerry James 35262a6
* Fri Oct 18 2013 Jerry James <loganjerry@gmail.com> - 0.7.3-2
Jerry James 35262a6
- Build a python3 subpackage (bz 982759)
Jerry James 35262a6
Jerry James 33d1430
* Fri Aug  2 2013 Jerry James <loganjerry@gmail.com> - 0.7.3-1
Jerry James 33d1430
- Update to 0.7.3
Jerry James 33d1430
- Upstream dropped all tutorial translations
Jerry James 33d1430
- Add graphviz BR for documentation
Jerry James 33d1430
- Sources now distributed from github instead of googlecode
Jerry James 1f8e051
- Adapt to versionless _docdir in Rawhide
Jerry James 33d1430
Jerry James a2507d0
* Mon Jun 17 2013 Jerry James <loganjerry@gmail.com> - 0.7.2-1
Jerry James a2507d0
- Update to 0.7.2 (bz 866044)
Jerry James a2507d0
- Add python-pyglet R (bz 890312)
Jerry James a2507d0
- Package the TeXmacs integration
Jerry James a2507d0
- Build and provide documentation
Jerry James a2507d0
- Provide examples
Jerry James a2507d0
- Minor spec file cleanups
Jerry James a2507d0
234ea9e
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-4
234ea9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
234ea9e
bff5512
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-3
bff5512
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
bff5512
3bf0ee8
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-2
3bf0ee8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
3bf0ee8
aa12597
* Tue Oct 11 2011 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.7.1-1
aa12597
- Update to 0.7.1.
aa12597
951fb14
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.7-6
951fb14
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
951fb14
704bb4e
* Mon Aug 30 2010 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.6.7-5
704bb4e
- Patch around BZ #564504.
704bb4e
65c1ebf
* Sat Jul 31 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.7-4
65c1ebf
- fix a python 2.7 incompatibility
65c1ebf
8a11328
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.7-3
8a11328
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
8a11328
3eb9aba
* Tue Apr 27 2010 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.6.7-2
3eb9aba
- Added %%check phase.
3eb9aba
80ac130
* Tue Apr 27 2010 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.6.7-1
80ac130
- Update to 0.6.7.
80ac130
e65fb65
* Mon Feb 15 2010 Conrad Meyer <konrad@tylerc.org> - 0.6.6-3
e65fb65
- Patch around private copy nicely; avoid breakage from trying to replace
e65fb65
  a directory with a symlink.
e65fb65
610697d
* Mon Feb 15 2010 Conrad Meyer <konrad@tylerc.org> - 0.6.6-2
610697d
- Remove private copy of system lib 'mpmath' (rhbz #551576).
610697d
17919bf
* Sun Dec 27 2009 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.6.6-1
17919bf
- Update to 0.6.6.
17919bf
c0302f0
* Sat Nov 07 2009 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.6.5-1
c0302f0
- Update to 0.6.5.
c0302f0
1bc68db
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-3
1bc68db
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1bc68db
11383e7
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-2
11383e7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
11383e7
e0f3f3c
* Thu Dec 4 2008 Conrad Meyer <konrad@tylerc.org> - 0.6.3-1
e0f3f3c
- Bump to 0.6.3, supports python 2.6.
e0f3f3c
ee4dd55
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.2-3
ee4dd55
- Rebuild for Python 2.6
ee4dd55
a55edf4
* Mon Oct 13 2008 Conrad Meyer <konrad@tylerc.org> - 0.6.2-2
a55edf4
- Patch to remove extraneous shebangs.
a55edf4
a55edf4
* Sun Oct 12 2008 Conrad Meyer <konrad@tylerc.org> - 0.6.2-1
a55edf4
- Initial package.