Hello community,

here is the log from the commit of package python-ipdb for openSUSE:Factory 
checked in at 2019-08-13 13:20:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-ipdb (Old)
 and      /work/SRC/openSUSE:Factory/.python-ipdb.new.9556 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-ipdb"

Tue Aug 13 13:20:29 2019 rev:3 rq:722246 version:0.12.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-ipdb/python-ipdb.changes  2019-07-28 
10:23:09.484567215 +0200
+++ /work/SRC/openSUSE:Factory/.python-ipdb.new.9556/python-ipdb.changes        
2019-08-13 13:21:17.933417840 +0200
@@ -1,0 +2,6 @@
+Sun Aug 11 04:25:53 UTC 2019 - Todd R <toddrme2...@gmail.com>
+
+- Update to 0.12.2
+  * Avoid emitting term-title bytes
+
+-------------------------------------------------------------------

Old:
----
  ipdb-0.12.1.tar.gz

New:
----
  ipdb-0.12.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-ipdb.spec ++++++
--- /var/tmp/diff_new_pack.7zOowa/_old  2019-08-13 13:21:18.529417684 +0200
+++ /var/tmp/diff_new_pack.7zOowa/_new  2019-08-13 13:21:18.533417682 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-ipdb
-Version:        0.12.1
+Version:        0.12.2
 Release:        0
 Summary:        IPython-enabled pdb
 License:        BSD-3-Clause
@@ -32,7 +32,7 @@
 Requires(post): update-alternatives
 Requires(postun): update-alternatives
 Provides:       python-jupyter_ipdb = %{version}
-Obsoletes:      python-jupyter_ipdb <= %{version}
+Obsoletes:      python-jupyter_ipdb < %{version}
 BuildArch:      noarch
 %ifpython3
 Provides:       jupyter-ipdb = %{version}
@@ -63,7 +63,12 @@
 %postun
 %python_uninstall_alternative ipdb
 
+%check
+%python_exec setup.py test
+
 %files %{python_files}
+%doc AUTHORS HISTORY.txt README.rst
+%license COPYING.txt
 %python_alternative %{_bindir}/ipdb
 %{python_sitelib}/*
 

++++++ ipdb-0.12.1.tar.gz -> ipdb-0.12.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipdb-0.12.1/AUTHORS new/ipdb-0.12.2/AUTHORS
--- old/ipdb-0.12.1/AUTHORS     2019-07-26 13:22:57.000000000 +0200
+++ new/ipdb-0.12.2/AUTHORS     2019-07-30 18:11:15.000000000 +0200
@@ -1,4 +1,6 @@
 aldrik
+andreagrandi
+bmw
 dimasad
 emulbreh
 felixonmars
@@ -17,8 +19,7 @@
 pjdelport
 Psycojoker
 sas23
+steinnes
 Wilfred
 WouterVH
 zvodd
-andreagrandi
-bmw
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipdb-0.12.1/HISTORY.txt new/ipdb-0.12.2/HISTORY.txt
--- old/ipdb-0.12.1/HISTORY.txt 2019-07-26 13:22:57.000000000 +0200
+++ new/ipdb-0.12.2/HISTORY.txt 2019-07-30 18:11:15.000000000 +0200
@@ -1,6 +1,13 @@
 Changelog
 =========
 
+0.12.2 (2019-07-30)
+-------------------
+
+- Avoid emitting term-title bytes
+  [steinnes]
+
+
 0.12.1 (2019-07-26)
 -------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipdb-0.12.1/PKG-INFO new/ipdb-0.12.2/PKG-INFO
--- old/ipdb-0.12.1/PKG-INFO    2019-07-26 13:22:58.000000000 +0200
+++ new/ipdb-0.12.2/PKG-INFO    2019-07-30 18:11:15.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: ipdb
-Version: 0.12.1
+Version: 0.12.2
 Summary: IPython-enabled pdb
 Home-page: https://github.com/gotcha/ipdb
 Author: Godefroid Chapelle
@@ -137,6 +137,13 @@
         Changelog
         =========
         
+        0.12.2 (2019-07-30)
+        -------------------
+        
+        - Avoid emitting term-title bytes
+          [steinnes]
+        
+        
         0.12.1 (2019-07-26)
         -------------------
         
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipdb-0.12.1/ipdb/__main__.py 
new/ipdb-0.12.2/ipdb/__main__.py
--- old/ipdb-0.12.1/ipdb/__main__.py    2019-07-26 13:22:57.000000000 +0200
+++ new/ipdb-0.12.2/ipdb/__main__.py    2019-07-30 18:11:15.000000000 +0200
@@ -26,7 +26,7 @@
     ipapp = TerminalIPythonApp()
     # Avoid output (banner, prints)
     ipapp.interact = False
-    ipapp.initialize([])
+    ipapp.initialize(['--no-term-title'])
     shell = ipapp.shell
 else:
     # Running inside IPython
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipdb-0.12.1/ipdb.egg-info/PKG-INFO 
new/ipdb-0.12.2/ipdb.egg-info/PKG-INFO
--- old/ipdb-0.12.1/ipdb.egg-info/PKG-INFO      2019-07-26 13:22:58.000000000 
+0200
+++ new/ipdb-0.12.2/ipdb.egg-info/PKG-INFO      2019-07-30 18:11:15.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: ipdb
-Version: 0.12.1
+Version: 0.12.2
 Summary: IPython-enabled pdb
 Home-page: https://github.com/gotcha/ipdb
 Author: Godefroid Chapelle
@@ -137,6 +137,13 @@
         Changelog
         =========
         
+        0.12.2 (2019-07-30)
+        -------------------
+        
+        - Avoid emitting term-title bytes
+          [steinnes]
+        
+        
         0.12.1 (2019-07-26)
         -------------------
         
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipdb-0.12.1/setup.py new/ipdb-0.12.2/setup.py
--- old/ipdb-0.12.1/setup.py    2019-07-26 13:22:57.000000000 +0200
+++ new/ipdb-0.12.2/setup.py    2019-07-30 18:11:15.000000000 +0200
@@ -7,7 +7,7 @@
 from setuptools import setup, find_packages
 from sys import version_info
 
-version = '0.12.1'
+version = '0.12.2'
 
 long_description = (open('README.rst').read() +
     '\n\n' + open('HISTORY.txt').read())


Reply via email to