Hello community,
here is the log from the commit of package python-jupyter_ipython for
openSUSE:Factory checked in at 2016-02-22 08:57:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-jupyter_ipython (Old)
and /work/SRC/openSUSE:Factory/.python-jupyter_ipython.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-jupyter_ipython"
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-jupyter_ipython/python-jupyter_ipython-doc.changes
2015-11-18 22:33:45.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.python-jupyter_ipython.new/python-jupyter_ipython-doc.changes
2016-02-22 08:57:48.000000000 +0100
@@ -1,0 +2,39 @@
+Wed Feb 17 14:43:15 UTC 2016 - [email protected]
+
+- specfile:
+ * update copyright year
+ * Simplify tests for determining whether to build pdf documentation
+- update to version 4.1.1:
+ * Backport #9209: Don't import IPython to check version number in
+ setup
+- Update to 4.1.0
+ * Release February, 2016. IPython 4.1 contain mostly bug fixes.
+ It though contain a few improvement.
+ * IPython debugger (IPdb) now supports the number of context
+ lines for the where (and w) commands. The context keyword is
+ also available in various APIs. See PR :ghpull:`9097`
+ * YouTube video will now show thumbnail when exported to a media
+ that do not support video. (:ghpull:`9086`)
+ * Add warning when running ipython <subcommand> when subcommand
+ is deprecated. jupyter should now be used.
+ * Code in %pinfo (also known as ??) are now highlighter
+ (:ghpull:`8947`)
+ * %aimport now support module completion. (:ghpull:`8884`)
+ * ipdb output is now colored ! (:ghpull:`8842`)
+ * Add ability to transpose columns for completion:
+ (:ghpull:`8748`)
+ * Many many docs improvements and bug fixes
+- update to version 4.0.3:
+ * Python 3.5 bug in that could crash during shutdown, triggered by
+ deprecations in traitlets 4.1.
+ * Typo in deprecation message for nbconvert
+- update to version 4.0.2:
+ * Fix backward-compatiblity shim for "IPython.Config", which
+ should have been deprecated instead of removed. This will be
+ removed in 5.0.
+- update to version 4.0.1:
+ * Installation on some systems
+ * Compatibility with CPython 3.4.4
+ * Compatibility with Qt5
+
+-------------------------------------------------------------------
python-jupyter_ipython.changes: same change
Old:
----
ipython-4.0.0.tar.gz
New:
----
ipython-4.1.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-jupyter_ipython-doc.spec ++++++
--- /var/tmp/diff_new_pack.bFOiSM/_old 2016-02-22 08:57:49.000000000 +0100
+++ /var/tmp/diff_new_pack.bFOiSM/_new 2016-02-22 08:57:49.000000000 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-jupyter_ipython-doc
#
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX 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,9 +15,22 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
+%if 0%{?suse_version} && ( 0%{?suse_version} != 1315 && 0%{?suse_version} >
1110 )
+# PDF documentation currently broken
+# %define build_pdf 1
+%define build_pdf 0
+%else
+%define build_pdf 0
+%endif
+
+%if 0%{?suse_version} && 0%{?suse_version} > 1320
+%define run_tests 1
+%else
+%define run_tests 0
+%endif
Name: python-jupyter_ipython-doc
-Version: 4.0.0
+Version: 4.1.1
Release: 0
Summary: Documentation for python-jupyter_ipython
License: BSD-3-Clause
@@ -27,7 +40,7 @@
BuildRequires: fdupes
BuildRequires: python-jupyter_ipython
BuildRequires: python-jupyter_ipykernel
-%if 0%{?suse_version} && 0%{?suse_version} > 1320
+%if %{run_tests}
# Test Requirements
BuildRequires: python-jupyter_ipython-iptest
%endif
@@ -39,28 +52,28 @@
BuildRequires: python-nose
BuildRequires: python-numpydoc
BuildRequires: python-requests
-%if 0%{?suse_version} && ( 0%{?suse_version} != 1315 && 0%{?suse_version} >
1110 )
+%if %{build_pdf}
BuildRequires: python-Sphinx-latex
%endif
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
-Documentation and help files for python-jupyter_ipython
+Documentation and help files for python-jupyter_ipython.
%package html
Summary: HTML documentation for python-jupyter_ipython
Recommends: python-jupyter_ipython = %{version}
%description html
-Documentation and help files for python-jupyter_ipython in HTML format
+Documentation and help files for python-jupyter_ipython in HTML format.
%package pdf
-Summary: HTML documentation for python-jupyter_ipython
+Summary: PDF documentation for python-jupyter_ipython
Recommends: python-jupyter_ipython = %{version}
%description pdf
-Documentation and help files for python-jupyter_ipython in PDF format
+Documentation and help files for python-jupyter_ipython in PDF format.
%prep
%setup -q -n ipython-%{version}
@@ -68,10 +81,9 @@
%build
# Build the documentation
pushd docs
-# PDF documentation not currently working
-#%if 0%{?suse_version} && ( 0%{?suse_version} != 1315 && 0%{?suse_version} >
1110 )
-# make pdf
-# %endif
+%if %{build_pdf}
+make pdf
+%endif
make html
rm -rf build/html/.buildinfo
popd
@@ -79,14 +91,14 @@
%install
mkdir -p %{buildroot}%{_docdir}/python-jupyter_ipython
-#%if 0%{?suse_version} && ( 0%{?suse_version} != 1315 && 0%{?suse_version} >
1110 )
-# cp docs/build/latex/jupyter_core.pdf
%{buildroot}%{_docdir}/python-jupyter_ipython/
-# %endif
+%if %{build_pdf}
+cp docs/build/latex/jupyter_core.pdf
%{buildroot}%{_docdir}/python-jupyter_ipython/
+%endif
cp -r docs/build/html %{buildroot}%{_docdir}/python-jupyter_ipython/
%fdupes %{buildroot}%{_docdir}/python-jupyter_ipython/html/
-%if 0%{?suse_version} && 0%{?suse_version} > 1320
+%if %{run_tests}
%check
export LANG="en_US.UTF-8"
pushd docs
@@ -99,11 +111,11 @@
%doc COPYING.rst
%{_docdir}/python-jupyter_ipython/html/
-# %if 0%{?suse_version} && ( 0%{?suse_version} != 1315 && 0%{?suse_version} >
1110 )
-# %files pdf
-# %defattr(-,root,root,-)
-# %doc COPYING.rst docs/source/about/license_and_copyright.rst
-# %{_docdir}/python-jupyter_ipython/jupyter_core.pdf
-# %endif
+%if %{build_pdf}
+%files pdf
+%defattr(-,root,root,-)
+%doc COPYING.rst docs/source/about/license_and_copyright.rst
+%{_docdir}/python-jupyter_ipython/jupyter_core.pdf
+%endif
%changelog
++++++ python-jupyter_ipython.spec ++++++
--- /var/tmp/diff_new_pack.bFOiSM/_old 2016-02-22 08:57:49.000000000 +0100
+++ /var/tmp/diff_new_pack.bFOiSM/_new 2016-02-22 08:57:49.000000000 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-jupyter_ipython
#
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: python-jupyter_ipython
-Version: 4.0.0
+Version: 4.1.1
Release: 0
Summary: Rich architecture for interactive computing with Python
License: BSD-3-Clause
++++++ ipython-4.0.0.tar.gz -> ipython-4.1.1.tar.gz ++++++
++++ 40536 lines of diff (skipped)