commit python-shodan for openSUSE:Factory
Hello community, here is the log from the commit of package python-shodan for openSUSE:Factory checked in at 2019-04-30 13:03:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-shodan (Old) and /work/SRC/openSUSE:Factory/.python-shodan.new.5536 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "python-shodan" Tue Apr 30 13:03:53 2019 rev:11 rq:697759 version:1.12.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-shodan/python-shodan.changes 2019-04-18 09:57:17.513374032 +0200 +++ /work/SRC/openSUSE:Factory/.python-shodan.new.5536/python-shodan.changes 2019-04-30 13:03:54.522068714 +0200 @@ -1,0 +2,6 @@ +Wed Apr 24 13:17:29 UTC 2019 - pgajdos@suse.com + +- version update to 1.12.1 + * Fix Excel file conversion that resulted in empty .xlsx files + +------------------------------------------------------------------- Old: ---- shodan-1.12.0.tar.gz New: ---- shodan-1.12.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-shodan.spec ++++++ --- /var/tmp/diff_new_pack.P72fx7/_old 2019-04-30 13:03:56.754066527 +0200 +++ /var/tmp/diff_new_pack.P72fx7/_new 2019-04-30 13:03:56.754066527 +0200 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %{!?license: %global license %doc} Name: python-shodan -Version: 1.12.0 +Version: 1.12.1 Release: 0 Summary: Python library and command-line utility for Shodan License: MIT @@ -35,6 +35,7 @@ Requires: python-click-plugins Requires: python-colorama Requires: python-requests >= 2.2.1 +Requires: python-setuptools Recommends: python-curses Suggests: %{name}-doc BuildArch: noarch @@ -69,7 +70,10 @@ install -Dm 644 docs/_build/man/shodan-python.1 %{buildroot}%{_mandir}/man1/shodan.1 %python_expand %fdupes %{buildroot}%{$python_sitelib} -# Tests need network access, skip them +%check +# Tests need network access, skip them: +# https://developer.shodan.io/api/requirements +# SHODAN-API-KEY file required by tests %files %{python_files} %defattr(-,root,root,-) ++++++ shodan-1.12.0.tar.gz -> shodan-1.12.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shodan-1.12.0/CHANGELOG.md new/shodan-1.12.1/CHANGELOG.md --- old/shodan-1.12.0/CHANGELOG.md 2019-04-07 01:21:20.000000000 +0200 +++ new/shodan-1.12.1/CHANGELOG.md 2019-04-11 22:37:54.000000000 +0200 @@ -1,6 +1,10 @@ CHANGELOG ========= +1.12.1 +------ +* Fix Excel file conversion that resulted in empty .xlsx files + 1.12.0 ------ * Add new methods to ignore/ unignore trigger notifications diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shodan-1.12.0/PKG-INFO new/shodan-1.12.1/PKG-INFO --- old/shodan-1.12.0/PKG-INFO 2019-04-07 02:24:56.000000000 +0200 +++ new/shodan-1.12.1/PKG-INFO 2019-04-11 22:39:24.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: shodan -Version: 1.12.0 +Version: 1.12.1 Summary: Python library and command-line utility for Shodan (https://developer.shodan.io) Home-page: http://github.com/achillean/shodan-python/tree/master Author: John Matherly diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shodan-1.12.0/setup.py new/shodan-1.12.1/setup.py --- old/shodan-1.12.0/setup.py 2019-04-07 01:19:40.000000000 +0200 +++ new/shodan-1.12.1/setup.py 2019-04-11 22:37:02.000000000 +0200 @@ -7,7 +7,7 @@ setup( name='shodan', - version='1.12.0', + version='1.12.1', description='Python library and command-line utility for Shodan (https://developer.shodan.io)', long_description=README, long_description_content_type='text/x-rst', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shodan-1.12.0/shodan/cli/converter/excel.py new/shodan-1.12.1/shodan/cli/converter/excel.py --- old/shodan-1.12.0/shodan/cli/converter/excel.py 2019-02-11 03:14:03.000000000 +0100 +++ new/shodan-1.12.1/shodan/cli/converter/excel.py 2019-04-11 22:36:28.000000000 +0200 @@ -109,6 +109,8 @@ summary_sheet.write(row, col, key) summary_sheet.write(row, col + 1, value) row += 1 + + workbook.close() def banner_field(self, banner, flat_field): # The provided field is a collapsed form of the actual field diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shodan-1.12.0/shodan.egg-info/PKG-INFO new/shodan-1.12.1/shodan.egg-info/PKG-INFO --- old/shodan-1.12.0/shodan.egg-info/PKG-INFO 2019-04-07 02:24:56.000000000 +0200 +++ new/shodan-1.12.1/shodan.egg-info/PKG-INFO 2019-04-11 22:39:24.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: shodan -Version: 1.12.0 +Version: 1.12.1 Summary: Python library and command-line utility for Shodan (https://developer.shodan.io) Home-page: http://github.com/achillean/shodan-python/tree/master Author: John Matherly
participants (1)
-
root