Hello community,

here is the log from the commit of package python-cliff for openSUSE:Factory 
checked in at 2013-05-13 15:25:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-cliff (Old)
 and      /work/SRC/openSUSE:Factory/.python-cliff.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-cliff"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-cliff/python-cliff.changes        
2013-05-02 15:56:07.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-cliff.new/python-cliff.changes   
2013-05-13 15:25:24.000000000 +0200
@@ -1,0 +2,8 @@
+Fri May  3 09:55:16 UTC 2013 - [email protected]
+
+- Update to version 1.3.3:
+  + Upstreamed:
+    - 0001-Restore-compatibility-with-Prettytable-0.7.2.patch 
+    - ignore-cmd2-requires.diff: 
+
+-------------------------------------------------------------------

Old:
----
  0001-Restore-compatibility-with-Prettytable-0.7.2.patch
  cliff-1.3.2.tar.gz
  ignore-cmd2-requires.diff

New:
----
  cliff-1.3.3.tar.gz

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

Other differences:
------------------
++++++ python-cliff.spec ++++++
--- /var/tmp/diff_new_pack.6TTnKG/_old  2013-05-13 15:25:25.000000000 +0200
+++ /var/tmp/diff_new_pack.6TTnKG/_new  2013-05-13 15:25:25.000000000 +0200
@@ -17,31 +17,29 @@
 
 
 Name:           python-cliff
-Version:        1.3.2
+Version:        1.3.3
 Release:        0
 Url:            https://github.com/dreamhost/cliff
 Summary:        Command Line Interface Formulation Framework
 License:        Apache-2.0
 Group:          Development/Languages/Python
 Source:         
http://pypi.python.org/packages/source/c/cliff/cliff-%{version}.tar.gz
-Patch0:         ignore-cmd2-requires.diff
-Patch1:         0001-Restore-compatibility-with-Prettytable-0.7.2.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-argparse
 BuildRequires:  python-devel
 BuildRequires:  python-distribute
 BuildRequires:  python-tablib
 # Test requirements:
+BuildRequires:  python-PrettyTable
 BuildRequires:  python-cmd2
 BuildRequires:  python-coverage
 BuildRequires:  python-mock >= 1.0.1
 BuildRequires:  python-nose
 BuildRequires:  python-pep8
-BuildRequires:  python-prettytable
 BuildRequires:  python-pyparsing == 1.5.7
+Requires:       python-PrettyTable >= 0.6
 Requires:       python-argparse
 Requires:       python-cmd2 >= 0.6.4
-Requires:       python-prettytable >= 0.6
 Requires:       python-pyparsing == 1.5.7
 Requires:       python-tablib
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110
@@ -66,8 +64,6 @@
 
 %prep
 %setup -q -n cliff-%{version}
-%patch0
-%patch1 -p1
 
 %build
 python setup.py build

++++++ cliff-1.3.2.tar.gz -> cliff-1.3.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cliff-1.3.2/PKG-INFO new/cliff-1.3.3/PKG-INFO
--- old/cliff-1.3.2/PKG-INFO    2013-04-02 21:57:22.000000000 +0200
+++ new/cliff-1.3.3/PKG-INFO    2013-05-02 20:23:39.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: cliff
-Version: 1.3.2
+Version: 1.3.3
 Summary: Command Line Interface Formulation Framework
 Home-page: https://github.com/dreamhost/cliff
 Author: Doug Hellmann
@@ -30,6 +30,7 @@
 Classifier: Programming Language :: Python :: 2.7
 Classifier: Programming Language :: Python :: 3
 Classifier: Programming Language :: Python :: 3.2
+Classifier: Programming Language :: Python :: 3.3
 Classifier: Intended Audience :: Developers
 Classifier: Environment :: Console
 Provides: cliff
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cliff-1.3.2/cliff/formatters/table.py 
new/cliff-1.3.3/cliff/formatters/table.py
--- old/cliff-1.3.2/cliff/formatters/table.py   2013-03-16 18:59:43.000000000 
+0100
+++ new/cliff-1.3.3/cliff/formatters/table.py   2013-05-02 20:18:54.000000000 
+0200
@@ -22,7 +22,7 @@
         pass
 
     def emit_list(self, column_names, data, stdout, parsed_args):
-        x = prettytable.PrettyTable(column_names)
+        x = prettytable.PrettyTable(column_names, print_empty=False)
         x.padding_width = 1
         # Figure out the types of the columns in the
         # first row and set the alignment of the
@@ -46,7 +46,8 @@
         return
 
     def emit_one(self, column_names, data, stdout, parsed_args):
-        x = prettytable.PrettyTable(field_names=('Field', 'Value'))
+        x = prettytable.PrettyTable(field_names=('Field', 'Value'),
+                                    print_empty=False)
         x.padding_width = 1
         # Align all columns left because the values are
         # not all the same type.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cliff-1.3.2/cliff.egg-info/PKG-INFO 
new/cliff-1.3.3/cliff.egg-info/PKG-INFO
--- old/cliff-1.3.2/cliff.egg-info/PKG-INFO     2013-04-02 21:57:22.000000000 
+0200
+++ new/cliff-1.3.3/cliff.egg-info/PKG-INFO     2013-05-02 20:23:38.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: cliff
-Version: 1.3.2
+Version: 1.3.3
 Summary: Command Line Interface Formulation Framework
 Home-page: https://github.com/dreamhost/cliff
 Author: Doug Hellmann
@@ -30,6 +30,7 @@
 Classifier: Programming Language :: Python :: 2.7
 Classifier: Programming Language :: Python :: 3
 Classifier: Programming Language :: Python :: 3.2
+Classifier: Programming Language :: Python :: 3.3
 Classifier: Intended Audience :: Developers
 Classifier: Environment :: Console
 Provides: cliff
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cliff-1.3.2/cliff.egg-info/requires.txt 
new/cliff-1.3.3/cliff.egg-info/requires.txt
--- old/cliff-1.3.2/cliff.egg-info/requires.txt 2013-04-02 21:57:22.000000000 
+0200
+++ new/cliff-1.3.3/cliff.egg-info/requires.txt 2013-05-02 20:23:38.000000000 
+0200
@@ -1,4 +1,4 @@
 distribute
 PrettyTable>=0.6,<0.8
-cmd2==0.6.4
+cmd2>=0.6.4
 pyparsing==1.5.7
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cliff-1.3.2/docs/source/history.rst 
new/cliff-1.3.3/docs/source/history.rst
--- old/cliff-1.3.2/docs/source/history.rst     2013-04-02 21:55:06.000000000 
+0200
+++ new/cliff-1.3.3/docs/source/history.rst     2013-05-02 20:21:26.000000000 
+0200
@@ -2,6 +2,13 @@
  Release History
 =================
 
+1.3.3
+
+  - Restore compatibility with prettytable < 0.7.2 by forcing no
+    output if there is no data (instead of printing an empty
+    table). Contributed by Dirk Mueller.
+  - Update to allow cmd2 version 0.6.5.1. Contributed by Dirk Mueller.
+
 1.3.2
 
   - Add ``convert_underscores`` parameter to ``CommandManager`` ``__init__``
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cliff-1.3.2/setup.py new/cliff-1.3.3/setup.py
--- old/cliff-1.3.2/setup.py    2013-04-02 21:48:35.000000000 +0200
+++ new/cliff-1.3.3/setup.py    2013-05-02 20:22:02.000000000 +0200
@@ -3,7 +3,7 @@
 PROJECT = 'cliff'
 
 # Change docs/source/conf.py too!
-VERSION = '1.3.2'
+VERSION = '1.3.3'
 
 # Bootstrap installation of Distribute
 import distribute_setup
@@ -24,7 +24,7 @@
 install_requires = [
     'distribute',
     'PrettyTable>=0.6,<0.8',
-    'cmd2==0.6.4',
+    'cmd2>=0.6.4',
 ]
 
 # We need a different version of PyParsing, depending on which version
@@ -157,6 +157,7 @@
                  'Programming Language :: Python :: 2.7',
                  'Programming Language :: Python :: 3',
                  'Programming Language :: Python :: 3.2',
+                 'Programming Language :: Python :: 3.3',
                  'Intended Audience :: Developers',
                  'Environment :: Console',
                  ],

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to