Hello community, here is the log from the commit of package python-sympy for openSUSE:Factory checked in at 2013-03-11 12:06:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-sympy (Old) and /work/SRC/openSUSE:Factory/.python-sympy.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sympy", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/python-sympy/python-sympy.changes 2013-01-03 19:40:55.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.python-sympy.new/python-sympy.changes 2013-03-11 12:06:23.000000000 +0100 @@ -1,0 +2,23 @@ +Tue Jan 15 17:39:02 UTC 2013 - [email protected] + +- Initial python3 support + +------------------------------------------------------------------- +Tue Jan 15 17:30:55 UTC 2013 - [email protected] + +- Update to 0.7.2 version: + * pep8 correction: don't include space around * and ** + * radsimp watches for pure radical in denominator + * pep8 E702: one statement per line + * add class name to hash value + * give more explicit error messages + * fix quality and ode constant numbering bug + * mprovements to euler equation solver + * Sparse hash now includes shape + * add hash to SparseMatrix + * raise notimplemented on MatrixExpr.conjugate + * removed cruft print statement +- Fix the shebang RPMLint without make python libraries executables, + it is not the good way + +------------------------------------------------------------------- New Changes file: --- /dev/null 2013-02-26 18:15:11.936010755 +0100 +++ /work/SRC/openSUSE:Factory/.python-sympy.new/python3-sympy.changes 2013-03-11 12:06:23.000000000 +0100 @@ -0,0 +1,11 @@ +------------------------------------------------------------------- +Mon Jan 28 14:01:37 UTC 2013 - [email protected] + +- Don't use URL in Source: the tarball does not exist there. Otherwise, + ractory-auto fail trying to download it + +------------------------------------------------------------------- +Tue Jan 15 17:39:14 UTC 2013 - [email protected] + +- Initial python3 support + Old: ---- sympy-0.7.1.tar.gz New: ---- python3-sympy.changes python3-sympy.spec sympy-0.7.2-py3.3.tar.gz sympy-0.7.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-sympy.spec ++++++ --- /var/tmp/diff_new_pack.IRrnXh/_old 2013-03-11 12:06:25.000000000 +0100 +++ /var/tmp/diff_new_pack.IRrnXh/_new 2013-03-11 12:06:25.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-sympy # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -15,14 +15,15 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + %define modname sympy Name: python-%{modname} -Version: 0.7.1 -Release: 1 -License: BSD-3-Clause +Version: 0.7.2 +Release: 0 Summary: Python library for symbolic mathematics -Url: http://code.google.com/p/%{modname}/ +License: BSD-3-Clause Group: Development/Libraries/Python +Url: http://code.google.com/p/%{modname}/ Source0: http://%{modname}.googlecode.com/files/%{modname}-%{version}.tar.gz BuildRequires: python-devel >= 2.5 Requires: python-base >= 2.5 @@ -43,18 +44,16 @@ %prep %setup -q -n %{modname}-%{version} +# For rpmlint warning: remove shebang from python library: +sed -i '/^#!/d' ./%{modname}/galgebra/GA.py +sed -i '/^#!/d' ./%{modname}/galgebra/tests/test_GA.py +sed -i '/^#!/d' ./%{modname}/mpmath/tests/runtests.py %build python setup.py build %install python setup.py install --root=%{buildroot} --prefix=%{_prefix} -chmod a+x %{buildroot}%{python_sitelib}/%{modname}/galgebra/GA.py -chmod a+x %{buildroot}%{python_sitelib}/%{modname}/galgebra/tests/test_GA.py -chmod a+x %{buildroot}%{python_sitelib}/%{modname}/mpmath/tests/runtests.py - -%clean -rm -rf %{buildroot} %files %defattr(-,root,root,-) @@ -63,5 +62,4 @@ %{python_sitelib}/%{modname} %{python_sitelib}/%{modname}-%{version}-py%{py_ver}.egg-info - %changelog ++++++ python3-sympy.spec ++++++ # # spec file for package python3-sympy # # Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # %define modname sympy Name: python3-%{modname} Version: 0.7.2 Release: 0 Summary: Python library for symbolic mathematics License: BSD-3-Clause Group: Development/Libraries/Python Url: http://code.google.com/p/%{modname}/ Source0: %{modname}-%{version}-py3.3.tar.gz BuildRequires: python3 BuildRequires: python3-devel BuildRequires: python3-distribute Requires: python3-base >= 3.2 BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch %description SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python and does not require any external libraries. %prep %setup -q -n %{modname}-%{version} # For rpmlint warning: remove shebang from python library: sed -i '/^#!/d' ./%{modname}/galgebra/GA.py sed -i '/^#!/d' ./%{modname}/galgebra/tests/test_GA.py sed -i '/^#!/d' ./%{modname}/mpmath/tests/runtests.py %build python3 setup.py build %install python3 setup.py install --root=%{buildroot} --prefix=%{_prefix} mv %{buildroot}/%{_bindir}/isympy %{buildroot}/%{_bindir}/isympy-python%{py3_ver} %files %defattr(-,root,root,-) %{_bindir}/isympy-python%{py3_ver} %{_mandir}/man1/isympy.1.gz %{python3_sitelib}/%{modname} %{python3_sitelib}/%{modname}-%{version}-py%{py3_ver}.egg-info %changelog ++++++ sympy-0.7.1.tar.gz -> sympy-0.7.2.tar.gz ++++++ ++++ 246144 lines of diff (skipped) -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
