Hello community,
here is the log from the commit of package python-PrettyTable for
openSUSE:Factory checked in at 2017-09-07 22:11:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-PrettyTable (Old)
and /work/SRC/openSUSE:Factory/.python-PrettyTable.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-PrettyTable"
Thu Sep 7 22:11:43 2017 rev:6 rq:521506 version:0.7.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-PrettyTable/python-PrettyTable.changes
2017-08-24 18:18:16.221837877 +0200
+++
/work/SRC/openSUSE:Factory/.python-PrettyTable.new/python-PrettyTable.changes
2017-09-07 22:11:45.923226610 +0200
@@ -1,0 +2,12 @@
+Tue Sep 5 12:25:58 UTC 2017 - [email protected]
+
+- Make description neutral.
+
+-------------------------------------------------------------------
+Fri Sep 1 15:02:31 UTC 2017 - [email protected]
+
+- activate tests
+- remove shebang from prettytable.py
+- run spec-cleaner
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-PrettyTable.spec ++++++
--- /var/tmp/diff_new_pack.Cdygrn/_old 2017-09-07 22:11:47.087062580 +0200
+++ /var/tmp/diff_new_pack.Cdygrn/_new 2017-09-07 22:11:47.095061453 +0200
@@ -22,7 +22,7 @@
Name: python-PrettyTable
Version: 0.7.2
Release: 0
-Summary: Library for displaying tabular data in a visually appealing
ASCII format
+Summary: Library for displaying tabular data in formatted fashion
License: BSD-2-Clause
Group: Development/Languages/Python
Url:
https://prettytable.googlecode.com/files/prettytable-%{version}.tar.bz2
@@ -30,25 +30,23 @@
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: python-rpm-macros
+BuildArch: noarch
%ifpython2
Provides: %{oldpython}-prettytable = 0.7.2
Obsoletes: %{oldpython}-prettytable < 0.7.2
%endif
-BuildRoot: %{_tmppath}/%{name}-%{version}-build
-BuildArch: noarch
-
%python_subpackages
%description
-PrettyTable is a simple Python library designed to make it quick and easy to
-represent tabular data in visually appealing ASCII tables. It was inspired by
-the ASCII tables used in the PostgreSQL shell psql. PrettyTable allows for
-selection of which columns are to be printed, independent alignment of columns
-(left or right justified or centred) and printing of "sub-tables" by
-specifying a row range.
+PrettyTable is a Python library for representing tabular data in
+ASCII tables, inspired by the tables emitted by the PostgreSQL shell,
+psql. PrettyTable allows for selection of which columns are to be
+printed, independent alignment of columns (left or right justified or
+centred) and printing of "sub-tables" by specifying a row range.
%prep
-%setup -n prettytable-%{version}
+%setup -q -n prettytable-%{version}
+sed -i '1s/^#!.*//' prettytable.py
%build
%python_build
@@ -57,11 +55,10 @@
%python_install
%check
-# disable tests - does not work with python3
-#%%python_exec setup.py test
+export LANG=en_US.UTF-8
+%python_exec setup.py test
%files %{python_files}
-%defattr(-,root,root,-)
%doc CHANGELOG COPYING README
%{python_sitelib}/*