Hello community,

here is the log from the commit of package python-ipdb for openSUSE:Factory 
checked in at 2019-07-28 10:23:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-ipdb (Old)
 and      /work/SRC/openSUSE:Factory/.python-ipdb.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-ipdb"

Sun Jul 28 10:23:06 2019 rev:2 rq:719300 version:0.12.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-ipdb/python-ipdb.changes  2019-05-22 
11:07:39.686589524 +0200
+++ /work/SRC/openSUSE:Factory/.python-ipdb.new.4126/python-ipdb.changes        
2019-07-28 10:23:09.484567215 +0200
@@ -1,0 +2,6 @@
+Sat Jul 27 03:12:41 UTC 2019 - Todd R <[email protected]>
+
+- Update to 0.12.1
+  * Fix --help 
+
+-------------------------------------------------------------------

Old:
----
  ipdb-0.12.tar.gz

New:
----
  ipdb-0.12.1.tar.gz

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

Other differences:
------------------
++++++ python-ipdb.spec ++++++
--- /var/tmp/diff_new_pack.Sn1gvO/_old  2019-07-28 10:23:10.124567200 +0200
+++ /var/tmp/diff_new_pack.Sn1gvO/_new  2019-07-28 10:23:10.124567200 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-ipdb
-Version:        0.12
+Version:        0.12.1
 Release:        0
 Summary:        IPython-enabled pdb
 License:        BSD-3-Clause

++++++ ipdb-0.12.tar.gz -> ipdb-0.12.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipdb-0.12/HISTORY.txt new/ipdb-0.12.1/HISTORY.txt
--- old/ipdb-0.12/HISTORY.txt   2019-03-20 11:22:46.000000000 +0100
+++ new/ipdb-0.12.1/HISTORY.txt 2019-07-26 13:22:57.000000000 +0200
@@ -1,12 +1,21 @@
 Changelog
 =========
 
+0.12.1 (2019-07-26)
+-------------------
+
+- Fix --help 
+  [native-api]
+
+
 0.12 (2019-03-20)
 -----------------
 
 - Drop support for Python 3.3.x
+  [bmw]
 - Stop deprecation warnings from being raised when IPython >= 5.1 is used.
   Support for IPython < 5.1 has been dropped.
+  [bmw]
 
 
 0.11 (2018-02-15)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipdb-0.12/PKG-INFO new/ipdb-0.12.1/PKG-INFO
--- old/ipdb-0.12/PKG-INFO      2019-03-20 11:22:46.000000000 +0100
+++ new/ipdb-0.12.1/PKG-INFO    2019-07-26 13:22:58.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: ipdb
-Version: 0.12
+Version: 0.12.1
 Summary: IPython-enabled pdb
 Home-page: https://github.com/gotcha/ipdb
 Author: Godefroid Chapelle
@@ -137,12 +137,21 @@
         Changelog
         =========
         
+        0.12.1 (2019-07-26)
+        -------------------
+        
+        - Fix --help 
+          [native-api]
+        
+        
         0.12 (2019-03-20)
         -----------------
         
         - Drop support for Python 3.3.x
+          [bmw]
         - Stop deprecation warnings from being raised when IPython >= 5.1 is 
used.
           Support for IPython < 5.1 has been dropped.
+          [bmw]
         
         
         0.11 (2018-02-15)
@@ -389,4 +398,5 @@
 Classifier: Operating System :: POSIX :: Linux
 Classifier: Operating System :: Microsoft :: Windows
 Classifier: Topic :: Software Development :: Debuggers
+Classifier: License :: OSI Approved :: BSD License
 Requires-Python: >=2.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipdb-0.12/ipdb/__main__.py 
new/ipdb-0.12.1/ipdb/__main__.py
--- old/ipdb-0.12/ipdb/__main__.py      2019-03-20 11:22:46.000000000 +0100
+++ new/ipdb-0.12.1/ipdb/__main__.py    2019-07-26 13:22:57.000000000 +0200
@@ -134,12 +134,8 @@
         class Restart(Exception):
             pass
     
-    opts, args = getopt.getopt(sys.argv[1:], 'hc:', ['--help', '--command='])
+    opts, args = getopt.getopt(sys.argv[1:], 'hc:', ['help', 'command='])
 
-    if not args:
-        print(_usage)
-        sys.exit(2)
-    
     commands = []
     for opt, optarg in opts:
         if opt in ['-h', '--help']:
@@ -148,6 +144,10 @@
         elif opt in ['-c', '--command']:
             commands.append(optarg)
 
+    if not args:
+        print(_usage)
+        sys.exit(2)
+    
     mainpyfile = args[0]     # Get script filename
     if not os.path.exists(mainpyfile):
         print('Error:', mainpyfile, 'does not exist')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipdb-0.12/ipdb.egg-info/PKG-INFO 
new/ipdb-0.12.1/ipdb.egg-info/PKG-INFO
--- old/ipdb-0.12/ipdb.egg-info/PKG-INFO        2019-03-20 11:22:46.000000000 
+0100
+++ new/ipdb-0.12.1/ipdb.egg-info/PKG-INFO      2019-07-26 13:22:58.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: ipdb
-Version: 0.12
+Version: 0.12.1
 Summary: IPython-enabled pdb
 Home-page: https://github.com/gotcha/ipdb
 Author: Godefroid Chapelle
@@ -137,12 +137,21 @@
         Changelog
         =========
         
+        0.12.1 (2019-07-26)
+        -------------------
+        
+        - Fix --help 
+          [native-api]
+        
+        
         0.12 (2019-03-20)
         -----------------
         
         - Drop support for Python 3.3.x
+          [bmw]
         - Stop deprecation warnings from being raised when IPython >= 5.1 is 
used.
           Support for IPython < 5.1 has been dropped.
+          [bmw]
         
         
         0.11 (2018-02-15)
@@ -389,4 +398,5 @@
 Classifier: Operating System :: POSIX :: Linux
 Classifier: Operating System :: Microsoft :: Windows
 Classifier: Topic :: Software Development :: Debuggers
+Classifier: License :: OSI Approved :: BSD License
 Requires-Python: >=2.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ipdb-0.12/setup.py new/ipdb-0.12.1/setup.py
--- old/ipdb-0.12/setup.py      2019-03-20 11:22:46.000000000 +0100
+++ new/ipdb-0.12.1/setup.py    2019-07-26 13:22:57.000000000 +0200
@@ -7,7 +7,7 @@
 from setuptools import setup, find_packages
 from sys import version_info
 
-version = '0.12'
+version = '0.12.1'
 
 long_description = (open('README.rst').read() +
     '\n\n' + open('HISTORY.txt').read())
@@ -32,6 +32,7 @@
         'Operating System :: POSIX :: Linux',
         'Operating System :: Microsoft :: Windows',
         'Topic :: Software Development :: Debuggers',
+        'License :: OSI Approved :: BSD License',
       ],
       keywords='pdb ipython',
       author='Godefroid Chapelle',


Reply via email to