forked from pool/python-shodan
* Allow a single network alert to monitor multiple IP ranges (#93) - update to version 1.11.0: * New command **shodan scan list** to list recently launched scans * New command **shodan alert triggers** to list the available notification triggers * New command **shodan alert enable** to enable a notification trigger * New command **shodan alert disable** to disable a notification trigger * New command **shodan alert info** to show details of a specific alert * Include timestamp, vulns and tags in CSV converter (#85) * Fixed bug that caused an exception when parsing uncompressed data files in Python3 * Code quality improvements OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-shodan?expand=0&rev=23
86 lines
2.7 KiB
RPMSpec
86 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package python-shodan
|
|
#
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
%{!?license: %global license %doc}
|
|
Name: python-shodan
|
|
Version: 1.11.1
|
|
Release: 0
|
|
Summary: Python library and command-line utility for Shodan
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
Url: http://github.com/achillean/shodan-python/
|
|
Source: https://files.pythonhosted.org/packages/source/s/shodan/shodan-%{version}.tar.gz
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: python3-Sphinx
|
|
Requires: python-XlsxWriter
|
|
Requires: python-click
|
|
Requires: python-click-plugins
|
|
Requires: python-colorama
|
|
Requires: python-requests >= 2.2.1
|
|
Recommends: python-curses
|
|
Suggests: %{name}-doc
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
%package -n %{name}-doc
|
|
Summary: Documentation files for %name
|
|
Group: Documentation/HTML
|
|
Provides: %{python_module shodan-doc = %{version}}
|
|
|
|
%description
|
|
Shodan is a search engine for Internet-connected devices. Google lets you search for websites, Shodan lets you search for devices. This library provides developers easy access to all of the data stored in Shodan in order to automate tasks and integrate into existing tools.
|
|
|
|
%description -n %{name}-doc
|
|
HTML documentation on the API and examples for %name.
|
|
|
|
%prep
|
|
%setup -q -n shodan-%{version}
|
|
sed -i '1s/^#!.*//' shodan/cli/worldmap.py
|
|
|
|
%build
|
|
%python_build
|
|
pushd docs
|
|
make html
|
|
rm -r _build/html/.buildinfo _build/html/_sources/
|
|
make man
|
|
popd
|
|
|
|
%install
|
|
%python_install
|
|
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
|
|
|
|
%files %{python_files}
|
|
%defattr(-,root,root,-)
|
|
%doc AUTHORS README.rst
|
|
%%license LICENSE
|
|
%python3_only %{_bindir}/shodan
|
|
%{python_sitelib}/*
|
|
%python3_only %{_mandir}/man1/shodan.1%{ext_man}
|
|
|
|
%files -n %{name}-doc
|
|
%doc docs/_build/html
|
|
|
|
%changelog
|