From 28af7f48a2a86f29155241feeaaae3242d64c26d Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Tue, 11 Apr 2023 20:37:03 +0000 Subject: automatic import of python-domaintools-api --- .gitignore | 1 + python-domaintools-api.spec | 92 +++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 94 insertions(+) create mode 100644 python-domaintools-api.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..c7a5876 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/domaintools_api-1.0.1.tar.gz diff --git a/python-domaintools-api.spec b/python-domaintools-api.spec new file mode 100644 index 0000000..59bb115 --- /dev/null +++ b/python-domaintools-api.spec @@ -0,0 +1,92 @@ +%global _empty_manifest_terminate_build 0 +Name: python-domaintools-api +Version: 1.0.1 +Release: 1 +Summary: DomainTools Official Python API +License: MIT +URL: https://github.com/domaintools/python_api +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/a8/d4/7ac6e7c885d2433112bf14c8e8112f7804227bd59ff8f98d407229c46e35/domaintools_api-1.0.1.tar.gz +BuildArch: noarch + +Requires: python3-httpx +Requires: python3-dateparser + +%description +[![PyPI version](https://badge.fury.io/py/domaintools_api.svg)](http://badge.fury.io/py/domaintools_api) +[![CI Status](https://github.com/domaintools/python_api/workflows/Tests/badge.svg)](https://github.com/domaintools/python_api/actions) +[![Coverage Status](https://coveralls.io/repos/github/DomainTools/python_api/badge.svg?branch=main)](https://coveralls.io/github/DomainTools/python_api?branch=main) +[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://pypi.python.org/pypi/domaintools_api/) +DomainTools Official Python API +![domaintools Example](https://github.com/DomainTools/python_api/raw/main/artwork/example.gif) +The DomainTools Python API Wrapper provides an interface to work with our cybersecurity and related data tools provided by our Iris Investigate™, Iris Enrich™, and Iris Detect™ products. It is actively maintained and may be downloaded via GitHub or PyPI. See the included README file, the examples folder, and API documentation (https://app.swaggerhub.com/apis-docs/DomainToolsLLC/DomainTools_APIs/1.0#) for more info. + +%package -n python3-domaintools-api +Summary: DomainTools Official Python API +Provides: python-domaintools-api +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-domaintools-api +[![PyPI version](https://badge.fury.io/py/domaintools_api.svg)](http://badge.fury.io/py/domaintools_api) +[![CI Status](https://github.com/domaintools/python_api/workflows/Tests/badge.svg)](https://github.com/domaintools/python_api/actions) +[![Coverage Status](https://coveralls.io/repos/github/DomainTools/python_api/badge.svg?branch=main)](https://coveralls.io/github/DomainTools/python_api?branch=main) +[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://pypi.python.org/pypi/domaintools_api/) +DomainTools Official Python API +![domaintools Example](https://github.com/DomainTools/python_api/raw/main/artwork/example.gif) +The DomainTools Python API Wrapper provides an interface to work with our cybersecurity and related data tools provided by our Iris Investigate™, Iris Enrich™, and Iris Detect™ products. It is actively maintained and may be downloaded via GitHub or PyPI. See the included README file, the examples folder, and API documentation (https://app.swaggerhub.com/apis-docs/DomainToolsLLC/DomainTools_APIs/1.0#) for more info. + +%package help +Summary: Development documents and examples for domaintools-api +Provides: python3-domaintools-api-doc +%description help +[![PyPI version](https://badge.fury.io/py/domaintools_api.svg)](http://badge.fury.io/py/domaintools_api) +[![CI Status](https://github.com/domaintools/python_api/workflows/Tests/badge.svg)](https://github.com/domaintools/python_api/actions) +[![Coverage Status](https://coveralls.io/repos/github/DomainTools/python_api/badge.svg?branch=main)](https://coveralls.io/github/DomainTools/python_api?branch=main) +[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://pypi.python.org/pypi/domaintools_api/) +DomainTools Official Python API +![domaintools Example](https://github.com/DomainTools/python_api/raw/main/artwork/example.gif) +The DomainTools Python API Wrapper provides an interface to work with our cybersecurity and related data tools provided by our Iris Investigate™, Iris Enrich™, and Iris Detect™ products. It is actively maintained and may be downloaded via GitHub or PyPI. See the included README file, the examples folder, and API documentation (https://app.swaggerhub.com/apis-docs/DomainToolsLLC/DomainTools_APIs/1.0#) for more info. + +%prep +%autosetup -n domaintools-api-1.0.1 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-domaintools-api -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot - 1.0.1-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..4f2ceea --- /dev/null +++ b/sources @@ -0,0 +1 @@ +54a5dcfa6215303f7ab1699537e19699 domaintools_api-1.0.1.tar.gz -- cgit v1.2.3