summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-tornado-swagger.spec152
-rw-r--r--sources1
3 files changed, 154 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..8f98c8c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/tornado-swagger-1.4.5.tar.gz
diff --git a/python-tornado-swagger.spec b/python-tornado-swagger.spec
new file mode 100644
index 0000000..210463d
--- /dev/null
+++ b/python-tornado-swagger.spec
@@ -0,0 +1,152 @@
+%global _empty_manifest_terminate_build 0
+Name: python-tornado-swagger
+Version: 1.4.5
+Release: 1
+Summary: Swagger API Documentation builder for tornado server
+License: MIT License
+URL: https://github.com/mrk-andreev/tornado-swagger
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/4f/1b/030f35a68d44843df916651d761a711faa3ffc87f573585dec7f44297d41/tornado-swagger-1.4.5.tar.gz
+BuildArch: noarch
+
+Requires: python3-tornado
+Requires: python3-PyYAML
+
+%description
+|Maintainability| |Snyk Vulnerabilities for GitHub Repo| |FOSSA Status|
+|GitHub| |Code style: black|
++--------+
+| PyPI |
++========+
+| |PyPI| |
++--------+
++-----------------------------------+-----------------------------------+
+| Linux | Windows |
++===================================+===================================+
+| |TravisCI| | |AppVeyor| |
++-----------------------------------+-----------------------------------+
+*tornado-swagger: Swagger API Documentation builder for tornado server.
+Inspired
+by*\ `aiohttp-swagger <https://github.com/cr0hn/aiohttp-swagger>`__\ *package
+(based on this package sources).*
++--------------------------------+-------------------------------------------------------+
+| Documentation | https://github.com/mrk-andreev/tornado-swagger/wiki |
++--------------------------------+-------------------------------------------------------+
+| Code | https://github.com/mrk-andreev/tornado-swagger |
++--------------------------------+-------------------------------------------------------+
+| Issues | https://github.com/mrk-andreev/tornado-swagger/issues |
++--------------------------------+-------------------------------------------------------+
+| Python version | Python 3.7, 3.8, 3.9, 3.10, 3.11 nightly |
++--------------------------------+-------------------------------------------------------+
+| Swagger Language Specification | https://swagger.io/specification/v2/ |
++--------------------------------+-------------------------------------------------------+
+
+%package -n python3-tornado-swagger
+Summary: Swagger API Documentation builder for tornado server
+Provides: python-tornado-swagger
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-tornado-swagger
+|Maintainability| |Snyk Vulnerabilities for GitHub Repo| |FOSSA Status|
+|GitHub| |Code style: black|
++--------+
+| PyPI |
++========+
+| |PyPI| |
++--------+
++-----------------------------------+-----------------------------------+
+| Linux | Windows |
++===================================+===================================+
+| |TravisCI| | |AppVeyor| |
++-----------------------------------+-----------------------------------+
+*tornado-swagger: Swagger API Documentation builder for tornado server.
+Inspired
+by*\ `aiohttp-swagger <https://github.com/cr0hn/aiohttp-swagger>`__\ *package
+(based on this package sources).*
++--------------------------------+-------------------------------------------------------+
+| Documentation | https://github.com/mrk-andreev/tornado-swagger/wiki |
++--------------------------------+-------------------------------------------------------+
+| Code | https://github.com/mrk-andreev/tornado-swagger |
++--------------------------------+-------------------------------------------------------+
+| Issues | https://github.com/mrk-andreev/tornado-swagger/issues |
++--------------------------------+-------------------------------------------------------+
+| Python version | Python 3.7, 3.8, 3.9, 3.10, 3.11 nightly |
++--------------------------------+-------------------------------------------------------+
+| Swagger Language Specification | https://swagger.io/specification/v2/ |
++--------------------------------+-------------------------------------------------------+
+
+%package help
+Summary: Development documents and examples for tornado-swagger
+Provides: python3-tornado-swagger-doc
+%description help
+|Maintainability| |Snyk Vulnerabilities for GitHub Repo| |FOSSA Status|
+|GitHub| |Code style: black|
++--------+
+| PyPI |
++========+
+| |PyPI| |
++--------+
++-----------------------------------+-----------------------------------+
+| Linux | Windows |
++===================================+===================================+
+| |TravisCI| | |AppVeyor| |
++-----------------------------------+-----------------------------------+
+*tornado-swagger: Swagger API Documentation builder for tornado server.
+Inspired
+by*\ `aiohttp-swagger <https://github.com/cr0hn/aiohttp-swagger>`__\ *package
+(based on this package sources).*
++--------------------------------+-------------------------------------------------------+
+| Documentation | https://github.com/mrk-andreev/tornado-swagger/wiki |
++--------------------------------+-------------------------------------------------------+
+| Code | https://github.com/mrk-andreev/tornado-swagger |
++--------------------------------+-------------------------------------------------------+
+| Issues | https://github.com/mrk-andreev/tornado-swagger/issues |
++--------------------------------+-------------------------------------------------------+
+| Python version | Python 3.7, 3.8, 3.9, 3.10, 3.11 nightly |
++--------------------------------+-------------------------------------------------------+
+| Swagger Language Specification | https://swagger.io/specification/v2/ |
++--------------------------------+-------------------------------------------------------+
+
+%prep
+%autosetup -n tornado-swagger-1.4.5
+
+%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-tornado-swagger -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 1.4.5-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..65661f0
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+cf87ee1b62e1b63ba7ff65cbeb23393d tornado-swagger-1.4.5.tar.gz