commit IPython for openSUSE:Factory

2015-09-29 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2015-09-30 05:51:28

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2015-08-01 
11:38:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2015-09-30 
05:51:29.0 +0200
@@ -1,0 +2,16 @@
+Wed Sep 23 11:32:05 UTC 2015 - toddrme2...@gmail.com
+
+- Update to 3.2.2
+  * This is a critical security update.  
+Addresses vulnerabilities when files have maliciously crafted filenames 
(CVE-2015-6938),
+or vulnerability when opening text files with malicious binary content 
(CVE pending).
+
+---
+Mon Aug 31 09:40:19 UTC 2015 - toddrme2...@gmail.com
+
+- Implement update-alternatives
+  This avoids a conflict with the python3 version of the new 
+  jupyter packages.  The python3 version of jupyter should not
+  conflict with the python2 versions of IPython.
+
+---

Old:

  ipython-3.2.1.tar.gz

New:

  ipython-3.2.2.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.bpphNL/_old  2015-09-30 05:51:30.0 +0200
+++ /var/tmp/diff_new_pack.bpphNL/_new  2015-09-30 05:51:30.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:3.2.1
+Version:3.2.2
 Release:0
 Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 Source1:ipython-icons.tar.xz
@@ -71,6 +71,8 @@
 BuildRequires:  graphviz-gnome
 BuildRequires:  python-Sphinx >= 0.3
 BuildRequires:  python-numpydoc
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 
 %description
 IPython provides a replacement for the interactive python (Python)
@@ -114,6 +116,13 @@
 # Get rid of library shebangs
 find . -type f -name "*.py" -exec sed -i '/#!\/usr\/bin\/env/d' {} \;
 
+# Get the .desktop files ready
+mv examples/IPython\ Kernel/*.desktop ./
+sed -i 's/gnome-netstatus-idle/ipython/g' *.desktop
+sed -i 's/Exec=ipython/Exec=ipython-%{py_ver}/g' *.desktop
+mv ipython.desktop ipython-%{py_ver}.desktop
+mv ipython-qtconsole.desktop ipython-qtconsole-%{py_ver}.desktop
+
 %build
 export CFLAGS="%{optflags}"
 python setup.py build
@@ -151,14 +160,47 @@
 %fdupes %{buildroot}%{_docdir}/%{name}/
 
 # install .desktop files
-mv examples/IPython\ Kernel/*.desktop ./
-sed -i 's/gnome-netstatus-idle/ipython/g' *.desktop
-%suse_update_desktop_file -r -i ipython System TerminalEmulator
-%suse_update_desktop_file -r -i ipython-qtconsole System TerminalEmulator
+%suse_update_desktop_file -r -i ipython-%{py_ver} System TerminalEmulator
+%suse_update_desktop_file -r -i ipython-qtconsole-%{py_ver} System 
TerminalEmulator
 
 # install icons
 tar xf %{S:1} -C %{buildroot}%{_datadir}
 
+# Prepare for update-alternatives usage
+mkdir -p %{buildroot}%{_sysconfdir}/alternatives
+for p in ipython iptest ipengine ipcontroller ipcluster ; do
+mv %{buildroot}%{_bindir}/$p %{buildroot}%{_bindir}/$p-%{py_ver}
+ln -s -f %{_sysconfdir}/alternatives/$p %{buildroot}%{_bindir}/$p
+# create a dummy target for /etc/alternatives/$p
+touch %{buildroot}%{_sysconfdir}/alternatives/$p
+done
+
+# Prepare for update-alternatives usage
+mkdir -p %{buildroot}%{_sysconfdir}/alternatives
+for p in ipython ipengine ipcontroller ipcluster ; do
+mv %{buildroot}%{_mandir}/man1/$p.1 
%{buildroot}%{_mandir}/man1/$p-%{py_ver}.1
+ln -s -f %{_sysconfdir}/alternatives/$p.1.gz 
%{buildroot}%{_mandir}/man1/$p.1.gz
+# create a dummy target for /etc/alternatives/$p
+touch %{buildroot}%{_sysconfdir}/alternatives/$p.1.gz
+done
+
+%post
+%_sbindir/update-alternatives \
+   --install %{_bindir}/ipython ipython %{_bindir}/ipython-%{py_ver} 30 \
+   --slave %{_bindir}/iptest iptest %{_bindir}/iptest-%{py_ver} \
+   --slave %{_bindir}/ipengine ipengine %{_bindir}/ipengine-%{py_ver} \
+   --slave %{_bindir}/ipcontroller ipcontroller 
%{_bindir}/ipcontroller-%{py_ver} \
+   --slave %{_bindir}/ipcluster ipcluster %{_bindir}/ipcluster-%{py_ver} \
+   --slave %{_mandir}/man1/ipython.1.gz ipython.1.gz 
%{_mandir}/man1/ipython-%{py_ver}.1.gz \
+   --slave %{_mandir}/man1/ipengine.1.gz ipengine.1.gz 
%{_mandir}/man1/ipengine-%{py_ver}.1.gz \
+   --slave %{_mandir}/man1/ipcontroller.1.gz ipcontroller.1.gz 
%{_mandir}/man1/ipcontroller-%{py_ver}.1.gz \
+   --slave %{_mandir}/man1/ipcluster.1.gz ipcluster.1.gz 
%{_mandir}/man1/ipcluster-%{py_ver}.1.gz
+
+%postun
+if [ $1 -eq 0 ] ; then

commit IPython for openSUSE:Factory

2015-08-01 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2015-08-01 11:38:50

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2015-07-03 
00:01:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2015-08-01 
11:38:51.0 +0200
@@ -1,0 +2,9 @@
+Mon Jul 13 20:23:34 UTC 2015 - a...@gmx.de
+
+- update to version 3.2.1:
+  * IPython 3.2.1 is a small bugfix release, primarily for cross-site
+security fixes in the notebook. Users are strongly encouraged to
+upgrade immediately. There are also a few small unicode and
+nbconvert-related fixes
+
+---

Old:

  ipython-3.2.0.tar.gz

New:

  ipython-3.2.1.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.ljRQ3y/_old  2015-08-01 11:38:53.0 +0200
+++ /var/tmp/diff_new_pack.ljRQ3y/_new  2015-08-01 11:38:53.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:3.2.0
+Version:3.2.1
 Release:0
 Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 Source1:ipython-icons.tar.xz

++ ipython-3.2.0.tar.gz -> ipython-3.2.1.tar.gz ++
/work/SRC/openSUSE:Factory/IPython/ipython-3.2.0.tar.gz 
/work/SRC/openSUSE:Factory/.IPython.new/ipython-3.2.1.tar.gz differ: char 5, 
line 1




commit IPython for openSUSE:Factory

2015-07-02 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2015-07-02 22:51:09

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2015-03-05 
18:16:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2015-07-03 
00:01:02.0 +0200
@@ -1,0 +2,34 @@
+Wed Jul  1 16:13:20 UTC 2015 - toddrme2...@gmail.com
+
+- update to version 3.2.0:
+  * IPython 3.2 contains important security fixes. Users are 
+strongly encouraged to upgrade immediately.
+  * Highlights:
+- A security improvement that set the secure attribute to login cookie to 
prevent them to be sent over http
+- Revert the face color of matplotlib axes in the inline backend to not be 
transparent.
+- Enable mathjax safe mode by default
+- Fix XSS vulnerability in JSON error messages
+- Various widget-related fixes
+- update to version 3.1.0:
+  * Highlights:
++ Various focus jumping and scrolling fixes in the notebook.
++ Various message ordering and widget fixes in the notebook.
++ Images in markdown and output are confined to the notebook
+  width. An .unconfined CSS class is added to disable this
+  behavior per-image. The resize handle on output images is
+  removed.
++ Improved ordering of tooltip content for Python functions,
+  putting the signature at the top.
++ Fix UnicodeErrors when displaying some objects with unicode
+  reprs on Python 2.
++ Set the kernel’s working directory to the notebook directory
+  when running nbconvert --execute, so that behavior matches the
+  live notebook.
++ Allow setting custom SSL options for the tornado server with
+  NotebookApp.ssl_options, and protect against POODLE with default
+  settings by disabling SSLv3.
++ Fix memory leak in the IPython.parallel Controller on Python 3.
+  * See Issues closed in the 3.x development cycle for details.
+- Don't depend on wxwidgets for SLES 12
+
+---

Old:

  ipython-3.0.0.tar.gz

New:

  ipython-3.2.0.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.2pTD7d/_old  2015-07-03 00:01:04.0 +0200
+++ /var/tmp/diff_new_pack.2pTD7d/_new  2015-07-03 00:01:04.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:3.0.0
+Version:3.2.0
 Release:0
 Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 Source1:ipython-icons.tar.xz
@@ -37,7 +37,9 @@
 BuildRequires:  python-pexpect
 BuildRequires:  python-pymongo
 BuildRequires:  python-pyzmq-devel >= 2.1.11
+%if 0%{?suse_version} != 1315 
 BuildRequires:  python-wxWidgets
+%endif
 %if 0%{?suse_version}
 %py_requires
 BuildRequires:  fdupes

++ ipython-3.0.0.tar.gz -> ipython-3.2.0.tar.gz ++
/work/SRC/openSUSE:Factory/IPython/ipython-3.0.0.tar.gz 
/work/SRC/openSUSE:Factory/.IPython.new/ipython-3.2.0.tar.gz differ: char 5, 
line 1




commit IPython for openSUSE:Factory

2015-03-05 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2015-03-05 15:40:36

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2015-01-07 
09:38:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2015-03-05 
18:16:23.0 +0100
@@ -1,0 +2,17 @@
+Mon Mar  2 16:57:13 UTC 2015 - toddrme2...@gmail.com
+
+- specfile:
+  * added mistune, jsonschema requirement
+  * updated some version numbers for requirements
+  * removed pandoc requirement
+  * no longer build html documentation.  This requires the jsdoc
+package, which is not available from OBS and appears 
+complicated to set up.
+- update to version 3.0.0:
+  * Using different kernels
+  * typing unicode identifiers
+  * new widgets
+  * lots of other changes, see
+http://ipython.org/ipython-doc/3/whatsnew/version3.html
+
+---

Old:

  ipython-2.3.0.tar.gz

New:

  ipython-3.0.0.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.fpVHUU/_old  2015-03-05 18:16:25.0 +0100
+++ /var/tmp/diff_new_pack.fpVHUU/_new  2015-03-05 18:16:25.0 +0100
@@ -18,7 +18,7 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:2.3.0
+Version:3.0.0
 Release:0
 Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 Source1:ipython-icons.tar.xz
@@ -29,6 +29,7 @@
 Group:  Development/Languages/Python
 BuildArch:  noarch
 BuildRequires:  python
+BuildRequires:  python-setuptools
 BuildRequires:  python-Cython
 BuildRequires:  python-curses
 BuildRequires:  python-nose >= 0.10.1
@@ -36,7 +37,6 @@
 BuildRequires:  python-pexpect
 BuildRequires:  python-pymongo
 BuildRequires:  python-pyzmq-devel >= 2.1.11
-BuildRequires:  python-setuptools
 BuildRequires:  python-wxWidgets
 %if 0%{?suse_version}
 %py_requires
@@ -57,18 +57,17 @@
 Recommends: python-matplotlib
 Recommends: python-qt4
 # html notebook
-BuildRequires:  python-tornado >= 3.1
-Recommends: python-tornado >= 3.1
-%if 0%{?suse_version} > 1310
-# nbconvert, only available on factory
-BuildRequires:  pandoc >= 1.10
-Recommends: pandoc >= 1.10
-%endif
+BuildRequires:  python-tornado >= 4.0
+Recommends: python-tornado >= 4.0
+BuildRequires:  python-mistune >= 0.5
+Recommends: python-mistune >= 0.5
+#ipython nbformat
+BuildRequires:  python-jsonschema
+Requires:   python-jsonschema
 #documentation
 BuildRequires:  graphviz
 BuildRequires:  graphviz-gnome
 BuildRequires:  python-Sphinx >= 0.3
-BuildRequires:  python-matplotlib
 BuildRequires:  python-numpydoc
 
 %description
@@ -122,12 +121,13 @@
 
 install -d -m 755 %{buildroot}%{_docdir}/
 
+# docs now require jsdoc, a javascript package
 # make docs
-pushd docs
-PYTHONPATH=$PYTHONPATH:%{buildroot}%{python_sitelib} make html
-rm build/html/.buildinfo
-mv build/html %{buildroot}%{_docdir}/%{name}/
-popd
+# pushd docs
+# PYTHONPATH=$PYTHONPATH:%{buildroot}%{python_sitelib} make html
+# rm build/html/.buildinfo
+# mv build/html %{buildroot}%{_docdir}/%{name}/
+# popd
 # add examples
 cp -vr examples %{buildroot}%{_docdir}/%{name}/
 

++ ipython-2.3.0.tar.gz -> ipython-3.0.0.tar.gz ++
/work/SRC/openSUSE:Factory/IPython/ipython-2.3.0.tar.gz 
/work/SRC/openSUSE:Factory/.IPython.new/ipython-3.0.0.tar.gz differ: char 5, 
line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2015-01-07 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2015-01-07 09:38:29

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2014-10-14 
07:13:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2015-01-07 
09:38:31.0 +0100
@@ -1,0 +2,7 @@
+Sat Jan  3 20:12:18 UTC 2015 - a...@gmx.de
+
+- specfile:
+  * updated copyright year
+  * added Jinja2 requirement for notebook and nbconvert (bnc#911524)
+
+---



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.TiIlU3/_old  2015-01-07 09:38:32.0 +0100
+++ /var/tmp/diff_new_pack.TiIlU3/_new  2015-01-07 09:38:32.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package IPython
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -43,6 +43,7 @@
 BuildRequires:  fdupes
 BuildRequires:  update-desktop-files
 %endif
+Requires:   python-Jinja2
 Requires:   python-pexpect
 Requires:   python-pyzmq >= 2.1.11
 Recommends: python-curses

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2014-10-13 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2014-10-14 07:12:31

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2014-09-30 
19:42:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2014-10-14 
07:13:24.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 13 14:27:18 UTC 2014 - toddrme2...@gmail.com
+
+- Update to 2.3.0
+  * Bugfix release
+
+---

Old:

  ipython-2.2.0.tar.gz

New:

  ipython-2.3.0.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.HZBVoe/_old  2014-10-14 07:13:26.0 +0200
+++ /var/tmp/diff_new_pack.HZBVoe/_new  2014-10-14 07:13:26.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:2.2.0
+Version:2.3.0
 Release:0
 Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 Source1:ipython-icons.tar.xz

++ ipython-2.2.0.tar.gz -> ipython-2.3.0.tar.gz ++
/work/SRC/openSUSE:Factory/IPython/ipython-2.2.0.tar.gz 
/work/SRC/openSUSE:Factory/.IPython.new/ipython-2.3.0.tar.gz differ: char 5, 
line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2014-09-30 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2014-09-30 19:40:24

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2014-09-03 
19:29:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2014-09-30 
19:42:01.0 +0200
@@ -1,0 +2,7 @@
+Sat Aug 30 13:30:34 UTC 2014 - dims...@opensuse.org
+
+- Drop gnome-icon-theme BuildRequires: the theme no longer exists
+  (it was merged and renamed to Adwaita-icon-theme). Instead,
+  package the icons in a tarball and install them during build.
+
+---

New:

  ipython-icons.tar.xz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.XUIn9w/_old  2014-09-30 19:42:02.0 +0200
+++ /var/tmp/diff_new_pack.XUIn9w/_new  2014-09-30 19:42:02.0 +0200
@@ -21,13 +21,13 @@
 Version:2.2.0
 Release:0
 Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
+Source1:ipython-icons.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://ipython.scipy.org/
 Summary:An Enhanced Interactive Python Shell
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 BuildArch:  noarch
-BuildRequires:  gnome-icon-theme
 BuildRequires:  python
 BuildRequires:  python-Cython
 BuildRequires:  python-curses
@@ -43,7 +43,6 @@
 BuildRequires:  fdupes
 BuildRequires:  update-desktop-files
 %endif
-Requires:   gnome-icon-theme
 Requires:   python-pexpect
 Requires:   python-pyzmq >= 2.1.11
 Recommends: python-curses
@@ -155,14 +154,7 @@
 %suse_update_desktop_file -r -i ipython-qtconsole System TerminalEmulator
 
 # install icons
-for i in %{_datadir}/icons/gnome/*/status/gnome-netstatus-idle.*
-do
-NUM="$(basename $(dirname $(dirname $i)))"
-mkdir -p "%{buildroot}%{_datadir}/icons/hicolor/$NUM/apps/"
-pushd "%{buildroot}%{_datadir}/icons/hicolor/$NUM/apps/"
-ln -s "$i" ./ipython.png
-popd
-done
+tar xf %{S:1} -C %{buildroot}%{_datadir}
 
 %files
 %defattr(-,root,root)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2014-09-03 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2014-09-03 18:22:22

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2014-08-11 
10:07:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2014-09-03 
19:29:03.0 +0200
@@ -1,0 +2,8 @@
+Thu Aug 28 17:38:58 UTC 2014 - toddrme2...@gmail.com
+
+- Add pandoc dependency for nbconvert notebook converter.
+  This is only available for openSUSE > 13.1.
+- Change some dependencies that are not required for basic 
+  functionality to Recommends.
+
+---



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.QloqPF/_old  2014-09-03 19:29:05.0 +0200
+++ /var/tmp/diff_new_pack.QloqPF/_new  2014-09-03 19:29:05.0 +0200
@@ -53,12 +53,17 @@
 BuildRequires:  python-Pygments
 BuildRequires:  python-matplotlib
 BuildRequires:  python-qt4-devel
-Requires:   python-Pygments
-Requires:   python-matplotlib
-Requires:   python-qt4
+Recommends: python-Pygments
+Recommends: python-matplotlib
+Recommends: python-qt4
 # html notebook
 BuildRequires:  python-tornado >= 3.1
-Requires:   python-tornado >= 3.1
+Recommends: python-tornado >= 3.1
+%if 0%{?suse_version} > 1310
+# nbconvert, only available on factory
+BuildRequires:  pandoc >= 1.10
+Recommends: pandoc >= 1.10
+%endif
 #documentation
 BuildRequires:  graphviz
 BuildRequires:  graphviz-gnome

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2014-08-11 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2014-08-11 10:07:42

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2014-07-24 
00:21:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2014-08-11 
10:07:59.0 +0200
@@ -1,0 +2,6 @@
+Sat Aug  9 18:07:01 UTC 2014 - toddrme2...@gmail.com
+
+- Update to 2.2.0
+  * Bugfix release
+
+---

Old:

  ipython-2.1.0.tar.gz

New:

  ipython-2.2.0.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.3Nz2xe/_old  2014-08-11 10:08:00.0 +0200
+++ /var/tmp/diff_new_pack.3Nz2xe/_new  2014-08-11 10:08:00.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:2.1.0
+Version:2.2.0
 Release:0
 Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ipython-2.1.0.tar.gz -> ipython-2.2.0.tar.gz ++
/work/SRC/openSUSE:Factory/IPython/ipython-2.1.0.tar.gz 
/work/SRC/openSUSE:Factory/.IPython.new/ipython-2.2.0.tar.gz differ: char 5, 
line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2014-07-23 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2014-07-23 22:06:59

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2014-05-09 
20:30:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2014-07-24 
00:21:45.0 +0200
@@ -1,0 +2,6 @@
+Tue Jul 15 11:47:36 UTC 2014 - toddrme2...@gmail.com
+
+- Update to 2.1.0
+  * Bugfix release
+
+---

Old:

  ipython-2.0.0.tar.gz

New:

  ipython-2.1.0.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.R1Yo2q/_old  2014-07-24 00:21:47.0 +0200
+++ /var/tmp/diff_new_pack.R1Yo2q/_new  2014-07-24 00:21:47.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:2.0.0
+Version:2.1.0
 Release:0
 Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ ipython-2.0.0.tar.gz -> ipython-2.1.0.tar.gz ++
/work/SRC/openSUSE:Factory/IPython/ipython-2.0.0.tar.gz 
/work/SRC/openSUSE:Factory/.IPython.new/ipython-2.1.0.tar.gz differ: char 5, 
line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2014-05-09 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2014-05-09 20:30:22

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2014-05-08 
12:38:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2014-05-09 
20:30:23.0 +0200
@@ -1,0 +2,5 @@
+Thu May  8 20:57:06 UTC 2014 - h...@urpla.net
+
+- add examples to -doc package
+
+---



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.vqpSPR/_old  2014-05-09 20:30:24.0 +0200
+++ /var/tmp/diff_new_pack.vqpSPR/_new  2014-05-09 20:30:24.0 +0200
@@ -123,9 +123,8 @@
 rm build/html/.buildinfo
 mv build/html %{buildroot}%{_docdir}/%{name}/
 popd
-
-# move automatically installed documentation to the right directory
-#mv -f %{buildroot}/usr/share/doc/packages/IPython/ 
%{buildroot}%{_docdir}/%{name}
+# add examples
+cp -vr examples %{buildroot}%{_docdir}/%{name}/
 
 # set executable
 chmod a+x %{buildroot}%{python_sitelib}/%{name}/external/mathjax.py

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2014-05-08 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2014-05-08 12:38:39

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2014-03-09 
18:26:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2014-05-08 
12:38:41.0 +0200
@@ -1,0 +2,22 @@
+Thu Apr  3 00:21:54 UTC 2014 - a...@gmx.de
+
+- updated to 2.0.0
+
+  The principal milestones of 2.0 are:
+
+  *  interactive widgets for the notebook
+  *  directory navigation in the notebook dashboard
+  *  persistent URLs for notebooks
+  *  a new modal user interface in the notebook
+  *  a security model for notebooks
+
+  more details at http://ipython.org/ipython-doc/2/whatsnew/version2.0.html
+
+  * changes in spec file:
+- manual remove binaries that end in *2
+- added dependencies matplotlib, numpydoc, updated version for tornado
+- logger, color and irunner are not provided anymore, remove from file list
+- Copying is now in rst format
+- name and location of desktop files changed
+
+---

Old:

  ipython-1.2.1.tar.gz

New:

  ipython-2.0.0.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.4ez9B4/_old  2014-05-08 12:38:43.0 +0200
+++ /var/tmp/diff_new_pack.4ez9B4/_new  2014-05-08 12:38:43.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:1.2.1
+Version:2.0.0
 Release:0
 Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -57,12 +57,14 @@
 Requires:   python-matplotlib
 Requires:   python-qt4
 # html notebook
-BuildRequires:  python-tornado >= 2.0
-Requires:   python-tornado >= 2.0
+BuildRequires:  python-tornado >= 3.1
+Requires:   python-tornado >= 3.1
 #documentation
 BuildRequires:  graphviz
 BuildRequires:  graphviz-gnome
 BuildRequires:  python-Sphinx >= 0.3
+BuildRequires:  python-matplotlib
+BuildRequires:  python-numpydoc
 
 %description
 IPython provides a replacement for the interactive python (Python)
@@ -113,9 +115,7 @@
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
-# move automatically installed documentation to the right directory
 install -d -m 755 %{buildroot}%{_docdir}/
-mv -f %{buildroot}/usr/share/doc/ipython/ %{buildroot}%{_docdir}/%{name}
 
 # make docs
 pushd docs
@@ -124,10 +124,18 @@
 mv build/html %{buildroot}%{_docdir}/%{name}/
 popd
 
+# move automatically installed documentation to the right directory
+#mv -f %{buildroot}/usr/share/doc/packages/IPython/ 
%{buildroot}%{_docdir}/%{name}
+
 # set executable
-chmod a+x 
%{buildroot}%{python_sitelib}/%{name}/html/static/components/less.js/bin/lessc
 chmod a+x %{buildroot}%{python_sitelib}/%{name}/external/mathjax.py
-chmod a+x 
%{buildroot}%{python_sitelib}/%{name}/html/static/components/marked/bin/marked
+
+# remove all executables that end in *2
+rm %{buildroot}/%{_bindir}/ipcluster2
+rm %{buildroot}/%{_bindir}/ipcontroller2
+rm %{buildroot}/%{_bindir}/ipengine2
+rm %{buildroot}/%{_bindir}/iptest2
+rm %{buildroot}/%{_bindir}/ipython2
 
 # remove hidden files
 rm -f %{buildroot}%{python_sitelib}/%{name}/.git_commit_info.ini
@@ -137,7 +145,7 @@
 %fdupes %{buildroot}%{_docdir}/%{name}/
 
 # install .desktop files
-mv examples/core/*.desktop ./
+mv examples/IPython\ Kernel/*.desktop ./
 sed -i 's/gnome-netstatus-idle/ipython/g' *.desktop
 %suse_update_desktop_file -r -i ipython System TerminalEmulator
 %suse_update_desktop_file -r -i ipython-qtconsole System TerminalEmulator
@@ -154,36 +162,27 @@
 
 %files
 %defattr(-,root,root)
-%doc COPYING.txt README.rst
+%doc COPYING.rst README.rst
 %{_bindir}/ipcluster
 %{_bindir}/ipcontroller
 %{_bindir}/ipengine
-%{_bindir}/iplogger
 %{_bindir}/iptest
 %{_bindir}/ipython
-%{_bindir}/irunner
-%{_bindir}/pycolor
 %{_mandir}/man1/ipcluster.1.gz
 %{_mandir}/man1/ipcontroller.1.gz
 %{_mandir}/man1/ipengine.1.gz
-%{_mandir}/man1/iplogger.1.gz
 %{_mandir}/man1/ipython.1.gz
-%{_mandir}/man1/irunner.1.gz
-%{_mandir}/man1/pycolor.1.gz
 %{_datadir}/applications/ipython-qtconsole.desktop
 %{_datadir}/applications/ipython.desktop
 %{_datadir}/icons/hicolor/
 %{python_sitelib}/%{name}
 %{python_sitelib}/ipython-%{version}-py*.egg-info
-%exclude %{_docdir}/%{name}/html/
-%if 0%{?suse_version} > 1220
-%exclude %{_docdir}/%{name}/examples/
-%endif
+%exclude %{_docdir}/%{name}/
 
 %files doc
 %defattr(-,root,root)
 %{_docdir}/%{name}/
-%exclude %{_

commit IPython for openSUSE:Factory

2014-03-09 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2014-03-09 18:26:27

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2013-10-25 
11:09:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2014-03-09 
18:26:28.0 +0100
@@ -1,0 +2,68 @@
+Fri Mar  7 04:15:13 UTC 2014 - a...@gmx.de
+
+- - update to 1.2.1 (including 1.2.0)
+
+ Pull Requests (38):
+ 1.2.1:
+PR #4372: Don’t assume that SyntaxTB is always called with a SyntaxError
+PR #5166: remove mktemp usage
+PR #5163: Simplify implementation of TemporaryWorkingDirectory.
+PR #5105: add index to format to support py2.6
+ 1.2.0:
+PR #4972: Work around problem in doctest discovery in Python 3.4 with PyQt
+PR #4934: ipython profile create respects –ipython-dir
+PR #4845: Add Origin Checking.
+PR #4928: use importlib.machinery when available
+PR #4849: Various unicode fixes (mostly on Windows)
+PR #4880: set profile name from profile_dir
+PR #4908: detect builtin docstrings in oinspect
+PR #4909: sort dictionary keys before comparison, ordering is not 
guaranteed
+PR #4903: use https for all embeds
+PR #4868: Static path fixes
+PR #4820: fix regex for cleaning old logs with ipcluster
+PR #4840: Error in Session.send_raw()
+PR #4762: whitelist alphanumeric characters for cookie_name
+PR #4748: fix race condition in profiledir creation.
+PR #4720: never use ssh multiplexer in tunnels
+PR #4738: don’t inject help into user_ns
+PR #4722: allow purging local results as long as they are not outstanding
+PR #4668: Make non-ASCII docstring unicode
+PR #4639: Minor import fix to get qtconsole with –pylab=qt working
+PR #4453: Play nice with App Nap
+PR #4609: Fix bytes regex for Python 3.
+PR #4488: fix typo in message spec doc
+PR #4346: getpass() on Windows & Python 2 needs bytes prompt
+PR #4230: Switch correctly to the user’s default matplotlib backend after 
inline.
+PR #4214: engine ID metadata should be unicode, not bytes
+PR #4232: no highlight if no language specified
+PR #4218: Fix display of SyntaxError when .py file is modified
+PR #4217: avoid importing numpy at the module level
+PR #4213: fixed dead link in examples/notebooks readme to Part 3
+PR #4183: ESC should be handled by CM if tooltip is not on
+PR #4193: Update for #3549: Append Firefox overflow-x fix
+PR #4205: use TextIOWrapper when communicating with pandoc subprocess
+PR #4204: remove some extraneous print statements from IPython.parallel
+PR #4201: HeadingCells cannot be split or merged
+
+ Issues (17):
+ 1.2.1:
+#5101: IPython 1.2.0: notebook fail with “500 Internal Server Error”
+ 1.2.0:
+#4892: IPython.qt test failure with python3.4
+#4810: ipcluster bug in clean_logs flag
+#4765: missing build script for highlight.js
+#4761: ipv6 address triggers cookie exception
+#4721: purge_results with jobid crashing - looking for insight
+#4602: “ipcluster stop” fails after “ipcluster start –daemonize” using 
python3.3
+#3386: Magic %paste not working in Python 3.3.2. TypeError: Type str 
doesn’t support the buffer API
+#4485: Incorrect info in “Messaging in IPython” documentation.
+#4351: /parallel/apps/launcher.py error
+#4334: NotebookApp.webapp_settings static_url_prefix causes crash
+#4039: Celltoolbar example issue
+#4256: IPython no longer handles unicode file names
+#4122: Nbconvert [windows]: Inconsistent line endings in markdown cells 
exported to latex
+#3819: nbconvert add extra blank line to code block on Windows.
+#4203: remove spurious print statement from parallel annoted functions
+#4200: Notebook: merging a heading cell and markdown cell cannot be undone
+
+---

Old:

  ipython-1.1.0.tar.gz

New:

  ipython-1.2.1.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.0plBcA/_old  2014-03-09 18:26:29.0 +0100
+++ /var/tmp/diff_new_pack.0plBcA/_new  2014-03-09 18:26:29.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package IPython
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -18,7 +18,7 @@
 
 Name:   IPython
 BuildRequires:  python-de

commit IPython for openSUSE:Factory

2013-10-25 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2013-10-25 11:09:53

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2013-10-09 
09:44:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2013-10-25 
11:09:54.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct 24 10:51:01 UTC 2013 - speili...@suse.com
+
+- Require python-setuptools instead of distribute (upstreams merged)
+
+---



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.ee41v0/_old  2013-10-25 11:09:57.0 +0200
+++ /var/tmp/diff_new_pack.ee41v0/_new  2013-10-25 11:09:57.0 +0200
@@ -31,12 +31,12 @@
 BuildRequires:  python
 BuildRequires:  python-Cython
 BuildRequires:  python-curses
-BuildRequires:  python-distribute
 BuildRequires:  python-nose >= 0.10.1
 BuildRequires:  python-opengl
 BuildRequires:  python-pexpect
 BuildRequires:  python-pymongo
 BuildRequires:  python-pyzmq-devel >= 2.1.11
+BuildRequires:  python-setuptools
 BuildRequires:  python-wxWidgets
 %if 0%{?suse_version}
 %py_requires

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2013-10-09 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2013-10-09 09:44:09

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2013-08-13 
13:09:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2013-10-09 
09:44:10.0 +0200
@@ -1,0 +2,7 @@
+Tue Oct  8 14:30:43 UTC 2013 - toddrme2...@gmail.com
+
+- Update to 1.1.0
+  * Bugfixes
+- Fix building on openSUSE 12.2
+
+---

Old:

  ipython-1.0.0.tar.gz

New:

  ipython-1.1.0.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.RI3utG/_old  2013-10-09 09:44:12.0 +0200
+++ /var/tmp/diff_new_pack.RI3utG/_new  2013-10-09 09:44:12.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:1.0.0
+Version:1.1.0
 Release:0
 Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -124,11 +124,16 @@
 mv build/html %{buildroot}%{_docdir}/%{name}/
 popd
 
+# set executable
+chmod a+x 
%{buildroot}%{python_sitelib}/%{name}/html/static/components/less.js/bin/lessc
+chmod a+x %{buildroot}%{python_sitelib}/%{name}/external/mathjax.py
+chmod a+x 
%{buildroot}%{python_sitelib}/%{name}/html/static/components/marked/bin/marked
+
 # remove hidden files
-rm -f %{buildroot}/%{python_sitelib}/IPython/.git_commit_info.ini
-rm -f %{buildroot}/%{_docdir}/%{name}/manual/.buildinfo
+rm -f %{buildroot}%{python_sitelib}/%{name}/.git_commit_info.ini
+rm -f %{buildroot}%{python_sitelib}/%{name}/html/static/components/.gitignore
+rm -f %{buildroot}%{_docdir}/%{name}/manual/.buildinfo
 
-%if 0%{?suse_version} > 1010
 %fdupes %{buildroot}%{_docdir}/%{name}/
 
 # install .desktop files
@@ -146,7 +151,6 @@
 ln -s "$i" ./ipython.png
 popd
 done
-%endif
 
 %files
 %defattr(-,root,root)
@@ -172,7 +176,9 @@
 %{python_sitelib}/%{name}
 %{python_sitelib}/ipython-%{version}-py*.egg-info
 %exclude %{_docdir}/%{name}/html/
+%if 0%{?suse_version} > 1220
 %exclude %{_docdir}/%{name}/examples/
+%endif
 
 %files doc
 %defattr(-,root,root)

++ ipython-1.0.0.tar.gz -> ipython-1.1.0.tar.gz ++
/work/SRC/openSUSE:Factory/IPython/ipython-1.0.0.tar.gz 
/work/SRC/openSUSE:Factory/.IPython.new/ipython-1.1.0.tar.gz differ: char 5, 
line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2013-08-13 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2013-08-13 13:09:30

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2013-06-13 
16:46:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2013-08-13 
13:09:32.0 +0200
@@ -1,0 +2,23 @@
+Fri Aug  9 09:11:37 UTC 2013 - tzot...@opensuse.org
+
+- update to 1.0.0
+- The principal milestone is the addition of IPython.nbconvert.
+- Added IPython.kernel for all kernel-related code.
+- Removed the frontend subpackage, as it caused unnecessary depth. 
+- The IPython sphinx directives are now installed in IPython.sphinx.
+- The input transformation framework has been reworked. 
+- Exception types can now be displayed with a custom traceback.
+- A new command, ipython history trim can be used to delete everything but the 
last 1000 entries in the history database.
+- __file__ is defined in both config files at load time, and .ipy files 
executed with %run.
+- %logstart and %logappend are no longer broken.
+- Add glob expansion for %run, e.g. %run -g script.py *.txt.
+- Expand variables ($foo) in Cell Magic argument line.
+- By default, iptest will exclude various slow tests. All tests can be run 
with iptest –all.
+- SQLite history can be disabled in the various cases that it does not behave 
well.
+- %edit works on interactively defined variables.
+- editor hooks have been restored from quarantine, enabling TextMate as 
editor, etc.
+- The env variable PYTHONSTARTUP is respected by IPython.
+- The %matplotlib magic was added.
+- The --matplotlib command line flag was also added.
+
+---

Old:

  ipython-0.13.2.tar.gz

New:

  ipython-1.0.0.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.VFh5fN/_old  2013-08-13 13:09:33.0 +0200
+++ /var/tmp/diff_new_pack.VFh5fN/_new  2013-08-13 13:09:33.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:0.13.2
+Version:1.0.0
 Release:0
 Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -132,11 +132,10 @@
 %fdupes %{buildroot}%{_docdir}/%{name}/
 
 # install .desktop files
-mv %{buildroot}%{_docdir}/%{name}/examples/core/*.desktop ./
+mv examples/core/*.desktop ./
 sed -i 's/gnome-netstatus-idle/ipython/g' *.desktop
 %suse_update_desktop_file -r -i ipython System TerminalEmulator
 %suse_update_desktop_file -r -i ipython-qtconsole System TerminalEmulator
-%suse_update_desktop_file -r -i ipython-sh System TerminalEmulator
 
 # install icons
 for i in %{_datadir}/icons/gnome/*/status/gnome-netstatus-idle.*
@@ -168,7 +167,6 @@
 %{_mandir}/man1/irunner.1.gz
 %{_mandir}/man1/pycolor.1.gz
 %{_datadir}/applications/ipython-qtconsole.desktop
-%{_datadir}/applications/ipython-sh.desktop
 %{_datadir}/applications/ipython.desktop
 %{_datadir}/icons/hicolor/
 %{python_sitelib}/%{name}

++ ipython-0.13.2.tar.gz -> ipython-1.0.0.tar.gz ++
/work/SRC/openSUSE:Factory/IPython/ipython-0.13.2.tar.gz 
/work/SRC/openSUSE:Factory/.IPython.new/ipython-1.0.0.tar.gz differ: char 5, 
line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2013-06-21 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2013-06-21 10:21:15

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:


Old:

  python3-IPython.changes
  python3-IPython.spec



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.KXol71/_old  2013-06-21 10:50:56.0 +0200
+++ /var/tmp/diff_new_pack.KXol71/_new  2013-06-21 10:50:56.0 +0200
@@ -27,43 +27,42 @@
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 BuildArch:  noarch
+BuildRequires:  gnome-icon-theme
 BuildRequires:  python
+BuildRequires:  python-Cython
 BuildRequires:  python-curses
 BuildRequires:  python-distribute
 BuildRequires:  python-nose >= 0.10.1
-BuildRequires:  python-Cython
 BuildRequires:  python-opengl
 BuildRequires:  python-pexpect
 BuildRequires:  python-pymongo
 BuildRequires:  python-pyzmq-devel >= 2.1.11
 BuildRequires:  python-wxWidgets
-BuildRequires:  gnome-icon-theme
 %if 0%{?suse_version}
 %py_requires
 BuildRequires:  fdupes
 BuildRequires:  update-desktop-files
 %endif
+Requires:   gnome-icon-theme
 Requires:   python-pexpect
 Requires:   python-pyzmq >= 2.1.11
-Requires:   gnome-icon-theme
 Recommends: python-curses
 Recommends: python-pymongo
 Recommends: python-wxWidgets
 # qtconsole
 BuildRequires:  python-Pygments
-BuildRequires:  python-qt4-devel
 BuildRequires:  python-matplotlib
+BuildRequires:  python-qt4-devel
 Requires:   python-Pygments
-Requires:   python-qt4
 Requires:   python-matplotlib
+Requires:   python-qt4
 # html notebook
 BuildRequires:  python-tornado >= 2.0
 Requires:   python-tornado >= 2.0
 #documentation
-BuildRequires:  python-Sphinx >= 0.3
 BuildRequires:  graphviz
 BuildRequires:  graphviz-gnome
-
+BuildRequires:  python-Sphinx >= 0.3
 
 %description
 IPython provides a replacement for the interactive python (Python)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2013-06-13 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2013-06-13 16:46:23

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2013-05-28 
07:38:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2013-06-13 
16:46:25.0 +0200
@@ -1,0 +2,16 @@
+Wed Jun  5 11:46:27 UTC 2013 - toddrme2...@gmail.com
+
+- Install .desktop files
+- Add buildrequires so there is proper detection of dependencies
+  at build-time
+- Add python-distribute buildrequires for proper dependency 
+  detection
+- Build full documentation in python 2 version
+  (not yet working with python 3)
+- Include license file and README file
+- Change suggests to recommends since suggests are not well 
+  supported
+- Manually-specify executable and manual file names to better
+  identify conflicts between python 2 and python 3 versions
+
+---
python3-IPython.changes: same change



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.PNkB6N/_old  2013-06-13 16:46:26.0 +0200
+++ /var/tmp/diff_new_pack.PNkB6N/_new  2013-06-13 16:46:26.0 +0200
@@ -26,20 +26,44 @@
 Summary:An Enhanced Interactive Python Shell
 License:BSD-3-Clause
 Group:  Development/Languages/Python
-BuildRequires:  python-qt4
+BuildArch:  noarch
+BuildRequires:  python
+BuildRequires:  python-curses
+BuildRequires:  python-distribute
+BuildRequires:  python-nose >= 0.10.1
+BuildRequires:  python-Cython
+BuildRequires:  python-opengl
+BuildRequires:  python-pexpect
+BuildRequires:  python-pymongo
+BuildRequires:  python-pyzmq-devel >= 2.1.11
+BuildRequires:  python-wxWidgets
+BuildRequires:  gnome-icon-theme
 %if 0%{?suse_version}
 %py_requires
 BuildRequires:  fdupes
+BuildRequires:  update-desktop-files
 %endif
-Suggests:   python-wxWidgets
-BuildArch:  noarch
-
+Requires:   python-pexpect
+Requires:   python-pyzmq >= 2.1.11
+Requires:   gnome-icon-theme
+Recommends: python-curses
+Recommends: python-pymongo
+Recommends: python-wxWidgets
 # qtconsole
+BuildRequires:  python-Pygments
+BuildRequires:  python-qt4-devel
+BuildRequires:  python-matplotlib
 Requires:   python-Pygments
-Requires:   python-pyzmq > 2.1.4
 Requires:   python-qt4
-#ipython notebook
-Requires:   python-tornado
+Requires:   python-matplotlib
+# html notebook
+BuildRequires:  python-tornado >= 2.0
+Requires:   python-tornado >= 2.0
+#documentation
+BuildRequires:  python-Sphinx >= 0.3
+BuildRequires:  graphviz
+BuildRequires:  graphviz-gnome
+
 
 %description
 IPython provides a replacement for the interactive python (Python)
@@ -67,7 +91,7 @@
 %package doc
 Summary:An Enhanced Interactive Python Shell documentation
 Group:  Documentation/Other
-Suggests:   %{name} = %{version}
+Recommends: %{name} = %{version}
 
 %description doc
 IPython provides a replacement for the interactive python (Python)
@@ -81,9 +105,6 @@
 %setup -q -n ipython-%{version}
 
 # Get rid of library shebangs
-# for file in *.py; do
-#  sed -i '/\/usr\/bin\/env/d' $file
-# done
 find . -type f -name "*.py" -exec sed -i '/#!\/usr\/bin\/env/d' {} \;
 
 %build
@@ -92,24 +113,74 @@
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+
+# move automatically installed documentation to the right directory
 install -d -m 755 %{buildroot}%{_docdir}/
 mv -f %{buildroot}/usr/share/doc/ipython/ %{buildroot}%{_docdir}/%{name}
 
+# make docs
+pushd docs
+PYTHONPATH=$PYTHONPATH:%{buildroot}%{python_sitelib} make html
+rm build/html/.buildinfo
+mv build/html %{buildroot}%{_docdir}/%{name}/
+popd
+
+# remove hidden files
 rm -f %{buildroot}/%{python_sitelib}/IPython/.git_commit_info.ini
-rm -f %{buildroot}/%{_defaultdocdir}/IPython/manual/.buildinfo
+rm -f %{buildroot}/%{_docdir}/%{name}/manual/.buildinfo
 
 %if 0%{?suse_version} > 1010
-%fdupes %{buildroot}
+%fdupes %{buildroot}%{_docdir}/%{name}/
+
+# install .desktop files
+mv %{buildroot}%{_docdir}/%{name}/examples/core/*.desktop ./
+sed -i 's/gnome-netstatus-idle/ipython/g' *.desktop
+%suse_update_desktop_file -r -i ipython System TerminalEmulator
+%suse_update_desktop_file -r -i ipython-qtconsole System TerminalEmulator
+%suse_update_desktop_file -r -i ipython-sh System TerminalEmulator
+
+# install icons
+for i in %{_datadir}/icons/gnome/*/status/gnome-netstatus-idle.*
+do
+NUM="$(basename $(dirname $(dirname $i)))"
+mkdir -p "%{buildroot}%{_datadir}/icons/hicolor/$NUM/apps/"
+pushd "%{build

commit IPython for openSUSE:Factory

2013-05-27 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2013-05-28 07:38:29

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2013-03-17 
10:13:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2013-05-28 
07:38:30.0 +0200
@@ -1,0 +2,10 @@
+Fri May 17 17:33:56 UTC 2013 - jmate...@suse.com
+
+- update to 0.13.2
+- bugfix-release, 52 bugs fixed
+- improved compatibility with new Qt versions
+  (fixes bnc#819931, obsoletes ipython-fix-loading-newer-pyqt.diff)
+- drop conditionals for too-old SUSE releases
+- shorten summary
+
+---
python3-IPython.changes: same change

Old:

  ipython-0.13.1.tar.gz
  ipython-fix-loading-newer-pyqt.diff

New:

  ipython-0.13.2.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.Ry0SFb/_old  2013-05-28 07:38:31.0 +0200
+++ /var/tmp/diff_new_pack.Ry0SFb/_new  2013-05-28 07:38:31.0 +0200
@@ -18,9 +18,9 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:0.13.1
+Version:0.13.2
 Release:0
-Source0:ipython-%{version}.tar.gz
+Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://ipython.scipy.org/
 Summary:An Enhanced Interactive Python Shell
@@ -31,16 +31,9 @@
 %py_requires
 BuildRequires:  fdupes
 %endif
-%if 0%{?suse_version} > 1130
 Suggests:   python-wxWidgets
-%else
-Suggests:   python-wxGTK
-%endif
-%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
 BuildArch:  noarch
-%else
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%endif
+
 # qtconsole
 Requires:   python-Pygments
 Requires:   python-pyzmq > 2.1.4
@@ -48,42 +41,26 @@
 #ipython notebook
 Requires:   python-tornado
 
-%if 0%{?suse_version} > 1230
-# PATCH-FIX-UPSTREAM ipython-fix-loading-newer-pyqt.diff
-Patch0: ipython-fix-loading-newer-pyqt.diff
-%endif
-
 %description
 IPython provides a replacement for the interactive python (Python)
 interpreter with extra functionality.
 
 Main features:
-
 * Comprehensive object introspection.
-
 * Input history that is persistent across sessions.
-
 * Caching of output results during a session with automatically
generated references.
-
 * Readline-based name completion.
-
 * Extensible system of 'magic' commands for controlling the
environment and performing many tasks related either to IPython
or the operating system.
-
 * Configuration system with easy switching between different setups
(simpler than changing $PYTHONSTARTUP environment variables every
time).
-
 * Session logging and reloading.
-
 * Extensible syntax processing for special purpose situations.
-
 * Access to the system shell with user-extensible alias system.
-
 * Easily embeddable in other Python programs.
-
 * Integrated access to the pdb debugger and the Python profiler.
 
 
@@ -103,10 +80,6 @@
 %prep
 %setup -q -n ipython-%{version}
 
-%if 0%{?suse_version} > 1230
-%patch0 -p1
-%endif
-
 # Get rid of library shebangs
 # for file in *.py; do
 #  sed -i '/\/usr\/bin\/env/d' $file

++ python3-IPython.spec ++
--- /var/tmp/diff_new_pack.Ry0SFb/_old  2013-05-28 07:38:31.0 +0200
+++ /var/tmp/diff_new_pack.Ry0SFb/_new  2013-05-28 07:38:31.0 +0200
@@ -18,9 +18,9 @@
 
 %definemodname IPython
 Name:   python3-%{modname}
-Version:0.13.1
+Version:0.13.2
 Release:0
-Source0:ipython-%{version}.tar.gz
+Source0:
https://pypi.python.org/packages/source/i/ipython/ipython-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://ipython.scipy.org/
 Summary:An Enhanced Interactive Python Shell
@@ -35,11 +35,7 @@
 BuildRequires:  fdupes
 %endif
 # not available yet upstream
-#%if 0%{?suse_version} > 1130
 #Suggests:   python3-wxWidgets
-#%else
-#Suggests:   python3-wxGTK
-#%endif
 BuildArch:  noarch
 Requires:   python3-distribute
 Requires:   python3-xml
@@ -51,51 +47,32 @@
 #ipython notebook
 Requires:   python3-tornado
 
-%if 0%{?suse_version} > 1230
-# PATCH-FIX-UPSTREAM ipython-fix-loading-newer-pyqt.diff
-Patch0: ipython-fix-loading-newer-pyqt.diff
-%endif
-
 %description
 IPython provides a replacement for the interactive python (Python)
 interpreter

commit IPython for openSUSE:Factory

2013-03-17 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2013-03-17 10:06:49

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython", Maintainer is "jmate...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2013-03-08 
13:13:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2013-03-17 
10:06:50.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar 15 13:48:38 UTC 2013 - lbeltr...@kde.org
+
+- Add ipython-fix-loading-newer-pyqt.diff to make Qt console
+  load with PyQt 4.10 (fix already upstream)
+
+---
--- /work/SRC/openSUSE:Factory/IPython/python3-IPython.changes  2012-12-03 
09:40:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.IPython.new/python3-IPython.changes 
2013-03-17 10:06:50.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar 15 13:49:18 UTC 2013 - lbeltr...@kde.org
+
+- Add ipython-fix-loading-newer-pyqt.diff to make Qt console
+  load with PyQt 4.10 (fix already upstream)
+
+---

New:

  ipython-fix-loading-newer-pyqt.diff



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.iyZC5O/_old  2013-03-17 10:06:53.0 +0100
+++ /var/tmp/diff_new_pack.iyZC5O/_new  2013-03-17 10:06:53.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package IPython
 #
-# 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
@@ -48,6 +48,11 @@
 #ipython notebook
 Requires:   python-tornado
 
+%if 0%{?suse_version} > 1230
+# PATCH-FIX-UPSTREAM ipython-fix-loading-newer-pyqt.diff
+Patch0: ipython-fix-loading-newer-pyqt.diff
+%endif
+
 %description
 IPython provides a replacement for the interactive python (Python)
 interpreter with extra functionality.
@@ -98,6 +103,10 @@
 %prep
 %setup -q -n ipython-%{version}
 
+%if 0%{?suse_version} > 1230
+%patch0 -p1
+%endif
+
 # Get rid of library shebangs
 # for file in *.py; do
 #  sed -i '/\/usr\/bin\/env/d' $file

++ python3-IPython.spec ++
--- /var/tmp/diff_new_pack.iyZC5O/_old  2013-03-17 10:06:53.0 +0100
+++ /var/tmp/diff_new_pack.iyZC5O/_new  2013-03-17 10:06:53.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-IPython
 #
-# 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
@@ -51,6 +51,11 @@
 #ipython notebook
 Requires:   python3-tornado
 
+%if 0%{?suse_version} > 1230
+# PATCH-FIX-UPSTREAM ipython-fix-loading-newer-pyqt.diff
+Patch0: ipython-fix-loading-newer-pyqt.diff
+%endif
+
 %description
 IPython provides a replacement for the interactive python (Python)
 interpreter with extra functionality.
@@ -88,6 +93,9 @@
 
 %prep
 %setup -q -n ipython-%{version}
+%if 0%{?suse_version} > 1230
+%patch0 -p1
+%endif
 
 # Get rid of library shebangs
 # for file in *.py; do

++ ipython-fix-loading-newer-pyqt.diff ++
From: Luca Beltrame 
Date: Fri, 15 Mar 2013 14:43:18 +0100
Subject: Allow Qt console loading with PyQt > 4.9
Upstream: yes

diff --git a/IPython/external/qt.py b/IPython/external/qt.py
index 0c05e33..bbeea0c 100644
--- a/IPython/external/qt.py
+++ b/IPython/external/qt.py
@@ -7,7 +7,7 @@ Do not use this if you need PyQt with the old QString/QVariant 
API.
 """
 
 import os
-
+from IPython.utils.version import check_version
 # Available APIs.
 QT_API_PYQT = 'pyqt'
 QT_API_PYSIDE = 'pyside'
@@ -23,11 +23,20 @@ def prepare_pyqt4():
 # Select Qt binding, using the QT_API environment variable if available.
 QT_API = os.environ.get('QT_API')
 if QT_API is None:
+pyside_found = False
 try:
 import PySide
-if PySide.__version__ < '1.0.3':
+if not check_version(PySide.__version__, '1.0.3'):
 # old PySide, fallback on PyQt
 raise ImportError
+# we can't import an incomplete pyside and pyqt4
+# this will cause a crash in sip (#1431)
+# check for complete presence before importing
+import imp
+imp.find_module("QtCore", PySide.__path__)
+imp.find_module("QtGui", PySide.__path__)
+imp.find_module("QtSvg", PySide.__path__)
+pyside_found = True
 from PySide import QtCore, QtG

commit IPython for openSUSE:Factory

2013-03-08 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2013-03-08 13:13:26

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython", Maintainer is "jmate...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2012-10-25 
12:09:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2013-03-08 
13:13:28.0 +0100
@@ -1,0 +2,5 @@
+Wed Jan  2 19:44:41 UTC 2013 - toddrme2...@gmail.com
+
+- Fix building on SLES
+
+---



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.k8kLpV/_old  2013-03-08 13:13:33.0 +0100
+++ /var/tmp/diff_new_pack.k8kLpV/_new  2013-03-08 13:13:33.0 +0100
@@ -38,6 +38,8 @@
 %endif
 %if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
 BuildArch:  noarch
+%else
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
 %endif
 # qtconsole
 Requires:   python-Pygments

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2012-12-03 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2012-12-03 09:40:19

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython", Maintainer is "jmate...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/python3-IPython.changes  2012-11-24 
21:10:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.IPython.new/python3-IPython.changes 
2012-12-03 09:40:21.0 +0100
@@ -1,0 +2,5 @@
+Fri Nov 30 14:04:52 UTC 2012 - toddrme2...@gmail.com
+
+- Fix building on openSUSE 12.1 and 12.2
+
+---



Other differences:
--
++ python3-IPython.spec ++
--- /var/tmp/diff_new_pack.g9jCo4/_old  2012-12-03 09:40:22.0 +0100
+++ /var/tmp/diff_new_pack.g9jCo4/_new  2012-12-03 09:40:22.0 +0100
@@ -26,6 +26,7 @@
 Summary:An Enhanced Interactive Python Shell
 License:LGPL-2.1+
 Group:  Development/Languages/Python
+BuildRequires:  python3
 BuildRequires:  python3-2to3
 BuildRequires:  python3-devel
 BuildRequires:  python3-distribute

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2012-11-24 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2012-11-24 21:10:37

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython", Maintainer is "jmate...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/python3-IPython.changes  2012-10-25 
12:09:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/python3-IPython.changes 
2012-11-24 21:10:37.0 +0100
@@ -1,0 +2,5 @@
+Thu Nov 22 09:39:27 UTC 2012 - toddrme2...@gmail.com
+
+- Remove openSUSE 11.4 spec file workarounds
+
+---



Other differences:
--
++ python3-IPython.spec ++
--- /var/tmp/diff_new_pack.ghCEWb/_old  2012-11-24 21:10:39.0 +0100
+++ /var/tmp/diff_new_pack.ghCEWb/_new  2012-11-24 21:10:39.0 +0100
@@ -26,7 +26,6 @@
 Summary:An Enhanced Interactive Python Shell
 License:LGPL-2.1+
 Group:  Development/Languages/Python
-BuildRequires:  python3
 BuildRequires:  python3-2to3
 BuildRequires:  python3-devel
 BuildRequires:  python3-distribute
@@ -40,14 +39,6 @@
 #%else
 #Suggests:   python3-wxGTK
 #%endif
-%if 0%{?suse_version} <= 1140
-%{!?python3_sitelib: %global python3_sitelib %(python3 -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
-%{!?py3_ver: %global py3_ver %(python3 -c "import sys; 
version=str(sys.version_info[0]) + '.' + str(sys.version_info[1]); 
print(version)" 2>/dev/null || echo PYTHON-NOT-FOUND)}
-%ifarch x86_64
-# to allow ownership of noarch python directories
-BuildRequires:  python3-32bit
-%endif
-%endif
 BuildArch:  noarch
 Requires:   python3-distribute
 Requires:   python3-xml

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2012-10-25 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2012-10-25 12:09:52

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython", Maintainer is "jmate...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2012-05-08 
12:10:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2012-10-25 
12:09:55.0 +0200
@@ -1,0 +2,9 @@
+Wed Oct 24 07:38:43 UTC 2012 - ei...@heavensinferno.net
+
+- Update to 0.13.1
+  - New major upstream release
+  - Major notebook improvements
+  - Major improvements to the Qt console
+  - Improvement of parallel tools
+
+---
--- /work/SRC/openSUSE:Factory/IPython/python3-IPython.changes  2012-05-08 
12:10:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/python3-IPython.changes 
2012-10-25 12:09:55.0 +0200
@@ -1,0 +2,16 @@
+Wed Oct 24 08:24:47 UTC 2012 - ei...@heavensinferno.net
+
+- Remove the renames (now setuptools adds a -3 suffix automatically) 
+- Fix man pages (rename them accordingly, fixes rpmlint warning)
+---
+Wed Oct 24 07:41:21 UTC 2012 - ei...@heavensinferno.net
+
+- Update to 0.13.1
+  - New major upstream release
+  - Major notebook improvements
+  - Major improvements to the Qt console
+  - Improvement of parallel tools
+ - Spec file adjustment: remove docs, since IPython-doc already
+   provides them
+
+---

Old:

  ipython-0.12.1.tar.gz

New:

  ipython-0.13.1.tar.gz



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.BD5zlD/_old  2012-10-25 12:09:57.0 +0200
+++ /var/tmp/diff_new_pack.BD5zlD/_new  2012-10-25 12:09:57.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:0.12.1
+Version:0.13.1
 Release:0
 Source0:ipython-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ python3-IPython.spec ++
--- /var/tmp/diff_new_pack.BD5zlD/_old  2012-10-25 12:09:57.0 +0200
+++ /var/tmp/diff_new_pack.BD5zlD/_new  2012-10-25 12:09:57.0 +0200
@@ -18,7 +18,7 @@
 
 %definemodname IPython
 Name:   python3-%{modname}
-Version:0.12.1
+Version:0.13.1
 Release:0
 Source0:ipython-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -105,12 +105,18 @@
 
 %build
 export CFLAGS="%{optflags}"
-python3 setup.py build
+/usr/bin/python3 setup.py build
 
 %install
 python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
 rm -f %{buildroot}%{python3_sitelib}/IPython/.git_commit_info.ini
-for i in %{buildroot}%{_bindir}/*; do mv "$i" "${i}-python%{py3_ver}"; done # 
add -python3 suffix to executables
+
+# Remove docs
+rm -rf %{buildroot}/usr/share/doc/ipython/
+
+# Fix man pages
+
+for i in %{buildroot}%{_mandir}/man1/*; do mv "$i" "${i%%.1}3.1"; done
 
 %if 0%{?suse_version}
 %fdupes %{buildroot}
@@ -118,8 +124,9 @@
 
 %files
 %defattr(-,root,root)
-%{_bindir}/*-python%{py3_ver}
+%{_bindir}/*
 %{python3_sitelib}/%{modname}
 %{python3_sitelib}/ipython-%{version}-py%{py3_ver}.egg-info
+%{_mandir}/man1/*
 
 %changelog

++ ipython-0.12.1.tar.gz -> ipython-0.13.1.tar.gz ++
 87270 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2012-05-08 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2012-05-08 12:09:59

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython", Maintainer is "jmate...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2012-02-16 
14:57:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2012-05-08 
12:10:04.0 +0200
@@ -1,0 +2,38 @@
+Thu May  3 11:26:14 UTC 2012 - cfarr...@suse.com
+
+- license update: BSD-3-Clause
+  See http://ipython.org/ipython-doc/dev/about/license_and_copyright.html
+
+---
+Mon Apr 30 13:06:58 UTC 2012 - toddrme2...@gmail.com
+
+- Fix building python 3 package on openSUSE 11.4 x86_64
+
+---
+Sat Apr 28 07:17:08 UTC 2012 - highwaystar...@gmail.com
+
+- added python-tornado Requires for ipython notebook mode 
+
+---
+Fri Apr 27 11:13:00 UTC 2012 - toddrme2...@gmail.com
+
+- Update to 0.12.1
+  Bugfixes
+- Comment out non-existant wxpython-related python 3 packages
+- Change python 3 binary names so they don't conflict with the 
+  python 2 ones
+- Fix removal of hidden git info in python3 package
+- Small python 2 package spec file cleanups
+
+---
+Fri Apr 27 08:38:48 UTC 2012 - highwaystar...@gmail.com
+
+- added build dependency python3-2to3 
+   without it files just not converted silently
+
+---
+Thu Feb  9 02:26:35 UTC 2012 - highwaystar...@gmail.com
+
+- added python3-IPython package
+
+---
New Changes file:

--- /dev/null   2012-05-03 01:24:41.895590051 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/python3-IPython.changes 
2012-05-08 12:10:04.0 +0200
@@ -0,0 +1,36 @@
+---
+Mon Apr 30 13:06:58 UTC 2012 - toddrme2...@gmail.com
+
+- Fix building python 3 package on openSUSE 11.4 x86_64
+
+---
+Sat Apr 28 07:17:45 UTC 2012 - highwaystar...@gmail.com
+
+- added python3-tornado Requires for ipython3 notebook mode 
+
+---
+Sat Apr 28 03:19:01 UTC 2012 - highwaystar...@gmail.com
+
+- fixed runtime Requires python3-xml and python3-distribute 
+
+---
+Fri Apr 27 11:13:00 UTC 2012 - toddrme2...@gmail.com
+
+- Update to 0.12.1
+  Bugfixes
+- Comment out non-existant wxpython-related python 3 packages
+- Change python 3 binary names so they don't conflict with the 
+  python 2 ones
+- Fix removal of hidden git info in python3 package
+- Small python 2 package spec file cleanups
+
+---
+Fri Apr 27 08:38:48 UTC 2012 - highwaystar...@gmail.com
+
+- added build dependency python3-2to3 
+   without it files just not converted silently
+
+---
+Thu Feb  9 02:26:35 UTC 2012 - highwaystar...@gmail.com
+
+- added python3-IPython package

Old:

  ipython-0.12.tar.bz2

New:

  ipython-0.12.1.tar.gz
  python3-IPython.changes
  python3-IPython.spec



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.gzY081/_old  2012-05-08 12:10:20.0 +0200
+++ /var/tmp/diff_new_pack.gzY081/_new  2012-05-08 12:10:20.0 +0200
@@ -15,23 +15,22 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   IPython
 BuildRequires:  python-devel
-Version:0.12
+Version:0.12.1
 Release:0
-Source0:ipython-%{version}.tar.bz2
+Source0:ipython-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://ipython.scipy.org/
 Summary:An Enhanced Interactive Python Shell
-License:LGPL-2.1+
+License:BSD-3-Clause
 Group:  Development/Languages/Python
 BuildRequires:  python-qt4
 %if 0%{?suse_version}
 %py_requires
-%if 0%{?suse_version} > 1010
 BuildRequires:  fdupes
 %endif
-%endif
 %if 0%{?suse_version} > 1130
 Suggests:   python-wxWidgets
 %else
@@ -41,9 +40,11 @@
 BuildArch:  noarch
 %endif
 # qtconsole
-Requires:   python-pyzmq > 2.1.4
 Requires:   python-Pygments
+Requires:   python-pyzmq > 2.1.4
 Requires:   python-qt4
+#ipython notebook

commit IPython for openSUSE:Factory

2012-02-16 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2012-02-16 14:57:13

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython", Maintainer is "jmate...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/IPython/IPython.changes  2011-09-23 
01:50:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.IPython.new/IPython.changes 2012-02-16 
14:57:14.0 +0100
@@ -1,0 +2,15 @@
+Wed Feb  8 15:15:26 UTC 2012 - ei...@heavensinferno.net
+
+- updated to 0.12
+  IPython 0.12 contains several major new features, as well as a large amount
+  of bug and regression fixes.
+
+  New features:
+  * An interactive browser-based Notebook with rich media support
+  * Two-process terminal console
+  * Tabbed QtConsole
+  * Full Python 3 compatibility
+  * Standalone Kernel
+  * PyPy support
+
+---

Old:

  ipython-0.11.tar.bz2

New:

  ipython-0.12.tar.bz2



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.BSC787/_old  2012-02-16 14:57:16.0 +0100
+++ /var/tmp/diff_new_pack.BSC787/_new  2012-02-16 14:57:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package IPython
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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,19 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   IPython
 BuildRequires:  python-devel
-Version:0.11
-Release:1
+Version:0.12
+Release:0
 Source0:ipython-%{version}.tar.bz2
-License:LGPL-2.1+
-Group:  Development/Languages/Python
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://ipython.scipy.org/
 Summary:An Enhanced Interactive Python Shell
+License:LGPL-2.1+
+Group:  Development/Languages/Python
 BuildRequires:  python-qt4
 %if 0%{?suse_version}
 %py_requires
@@ -83,7 +80,6 @@
 
 
 %package doc
-License:LGPL-2.1+
 Summary:An Enhanced Interactive Python Shell documentation
 Group:  Documentation/Other
 Suggests:   %{name} = %{version}

++ ipython-0.11.tar.bz2 -> ipython-0.12.tar.bz2 ++
/work/SRC/openSUSE:Factory/IPython/ipython-0.11.tar.bz2 
/work/SRC/openSUSE:Factory/.IPython.new/ipython-0.12.tar.bz2 differ: char 11, 
line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package IPython for openSUSE:Factory checked 
in at 2011-12-06 18:19:40

Comparing /work/SRC/openSUSE:Factory/IPython (Old)
 and  /work/SRC/openSUSE:Factory/.IPython.new (New)


Package is "IPython", Maintainer is "jmate...@suse.com"

Changes:




Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.zwNKPw/_old  2011-12-06 18:28:49.0 +0100
+++ /var/tmp/diff_new_pack.zwNKPw/_new  2011-12-06 18:28:49.0 +0100
@@ -23,7 +23,7 @@
 Version:0.11
 Release:1
 Source0:ipython-%{version}.tar.bz2
-License:LGPLv2.1+
+License:LGPL-2.1+
 Group:  Development/Languages/Python
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://ipython.scipy.org/
@@ -83,7 +83,7 @@
 
 
 %package doc
-License:LGPLv2.1+
+License:LGPL-2.1+
 Summary:An Enhanced Interactive Python Shell documentation
 Group:  Documentation/Other
 Suggests:   %{name} = %{version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2011-09-05 Thread h_root

Hello community,

here is the log from the commit of package IPython for openSUSE:Factory
checked in at Mon Sep 5 16:06:37 CEST 2011.




--- IPython/IPython.changes 2011-07-18 18:06:54.0 +0200
+++ /mounts/work_src_done/STABLE/IPython/IPython.changes2011-07-31 
22:10:19.0 +0200
@@ -1,0 +2,26 @@
+Sun Jul 31 19:28:17 UTC 2011 - ocef...@yahoo.com.br
+
+- updated to 0.11
+  IPython 0.11 is a *major* overhaul of IPython, two years in the making.  Most
+  of the code base has been rewritten or at least reorganized, breaking 
backward
+  compatibility with several APIs in previous versions.
+
+  Since the internal APIs have changed so much, projects using IPython as a
+  library (as opposed to end-users of the application) are the most likely to
+  encounter regressions or changes that break their existing use patterns.
+
+  A quick summary:
+* Standalone Qt console.
+* High-level parallel computing with ZeroMQ.
+* New model for GUI/plotting support in the terminal.
+* A two-process architecture.
+* Vim integration.
+* Integration into Microsoft Visual Studio
+* Improved unicode support.
+* Python 3 support.
+* New profile model.
+* SQLite storage for history.
+* New configuration system.
+* Pasting of code with prompts. 
+
+---

calling whatdependson for head-i586


Old:

  ipython-0.10.2.tar.bz2

New:

  ipython-0.11.tar.bz2



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.GKCrIu/_old  2011-09-05 16:05:52.0 +0200
+++ /var/tmp/diff_new_pack.GKCrIu/_new  2011-09-05 16:05:52.0 +0200
@@ -20,16 +20,21 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:0.10.2
+Version:0.11
 Release:1
-%define tarname ipython
-Source0:%{tarname}-%{version}.tar.bz2
+Source0:ipython-%{version}.tar.bz2
 License:LGPLv2.1+
 Group:  Development/Languages/Python
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://ipython.scipy.org/
 Summary:An Enhanced Interactive Python Shell
-%{py_requires}
+BuildRequires:  python-qt4
+%if 0%{?suse_version}
+%py_requires
+%if 0%{?suse_version} > 1010
+BuildRequires:  fdupes
+%endif
+%endif
 %if 0%{?suse_version} > 1130
 Suggests:   python-wxWidgets
 %else
@@ -38,6 +43,10 @@
 %if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
 BuildArch:  noarch
 %endif
+# qtconsole
+Requires:   python-pyzmq > 2.1.4
+Requires:   python-Pygments
+Requires:   python-qt4
 
 %description
 IPython provides a replacement for the interactive python (Python)
@@ -76,7 +85,7 @@
 %package doc
 License:LGPLv2.1+
 Summary:An Enhanced Interactive Python Shell documentation
-Group:  Documentation
+Group:  Documentation/Other
 Suggests:   %{name} = %{version}
 
 %description doc
@@ -90,24 +99,34 @@
 Fernando Perez 
 
 %prep
-%setup -q -n %{tarname}-%{version}
+%setup -q -n ipython-%{version}
+
+# Get rid of library shebangs
+# for file in *.py; do
+#  sed -i '/\/usr\/bin\/env/d' $file
+# done
+find . -type f -name "*.py" -exec sed -i '/#!\/usr\/bin\/env/d' {} \;
 
 %build
-export CFLAGS="$RPM_OPT_FLAGS" 
+export CFLAGS="%{optflags}"
 python setup.py build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT 
--record-rpm=INSTALLED_FILES
+python setup.py install --prefix=%{_prefix} --root=%{buildroot} 
--record-rpm=INSTALLED_FILES
 grep -v 'share/doc/ipython' INSTALLED_FILES > INSTALLED_FILES-nodoc
-install -d -m 755 $RPM_BUILD_ROOT%{_docdir}/%{name}
-mv -f $RPM_BUILD_ROOT/usr/share/doc/ipython/* $RPM_BUILD_ROOT%{_docdir}/%{name}
-rmdir $RPM_BUILD_ROOT/usr/share/doc/ipython
-rm $RPM_BUILD_ROOT%{_docdir}/%{name}/manual/ipython.pdf
+install -d -m 755 %{buildroot}%{_docdir}/%{name}
+mv -f %{buildroot}/usr/share/doc/ipython/* %{buildroot}%{_docdir}/%{name}
+rmdir %{buildroot}/usr/share/doc/ipython
 
-%clean
-rm -rf $RPM_BUILD_ROOT
+rm -f %{buildroot}/%{python_sitelib}/IPython/.git_commit_info.ini
+rm -f %{buildroot}/%{_defaultdocdir}/IPython/manual/.buildinfo
+
+%if 0%{?suse_version} > 1010
+%fdupes %{buildroot}
+%endif
 
 %files -f INSTALLED_FILES-nodoc
+%{python_sitelib}/*
 %defattr(-,root,root)
 #%%dir %%{python_sitelib}/IPython/UserConfig
 

++ ipython-0.10.2.tar.bz2 -> ipython-0.11.tar.bz2 ++
IPython/ipython-0.10.2.tar.bz2 
/mounts/work_src_done/STABLE/IPython/ipython-0.11.tar.bz2 differ: char 11, line 
1






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit IPython for openSUSE:Factory

2011-07-19 Thread h_root

Hello community,

here is the log from the commit of package IPython for openSUSE:Factory
checked in at Tue Jul 19 16:29:05 CEST 2011.




--- IPython/IPython.changes 2010-12-29 15:08:11.0 +0100
+++ IPython/IPython.changes 2011-07-18 18:06:54.0 +0200
@@ -1,0 +2,17 @@
+Sat Jul 16 01:38:19 UTC 2011 - ocef...@yahoo.com.br
+
+- updated to 0.10.2
+  * This is a minor bugfix and latst release of the 0.10.x series.
+  * Closing of github ticket #185, a major regression we had
+in 0.10.1 where pylab mode with GTK was not working correctly,
+hence plots were blocking with GTK.  Since this is the default matplotlib
+backend on Unix systems, this was a major annoyance for many users.  Many
+thanks to Paul Ivanov for helping resolve this issue.
+  * Fix IOError bug on Windows when used with -gthread.
+  * Work robustly if $HOME is missing from environment.
+  * Better POSIX support in ssh scripts (remove bash-specific idioms).
+  * Improved support for non-ascii characters in log files.
+  * Work correctly in environments where GTK can be imported but not started
+(such as a linux text console without X11).
+  
+---

calling whatdependson for head-i586


Old:

  ipython-0.10.tar.bz2

New:

  ipython-0.10.2.tar.bz2



Other differences:
--
++ IPython.spec ++
--- /var/tmp/diff_new_pack.W9hB37/_old  2011-07-19 16:28:34.0 +0200
+++ /var/tmp/diff_new_pack.W9hB37/_new  2011-07-19 16:28:34.0 +0200
@@ -20,8 +20,8 @@
 
 Name:   IPython
 BuildRequires:  python-devel
-Version:0.10
-Release:9
+Version:0.10.2
+Release:1
 %define tarname ipython
 Source0:%{tarname}-%{version}.tar.bz2
 License:LGPLv2.1+
@@ -109,7 +109,7 @@
 
 %files -f INSTALLED_FILES-nodoc
 %defattr(-,root,root)
-#%dir %{python_sitelib}/IPython/UserConfig
+#%%dir %%{python_sitelib}/IPython/UserConfig
 
 %files doc
 %defattr(-,root,root)

++ ipython-0.10.tar.bz2 -> ipython-0.10.2.tar.bz2 ++
 219279 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org