summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-06-20 07:38:25 +0000
committerCoprDistGit <infra@openeuler.org>2023-06-20 07:38:25 +0000
commit5babbcda5af07b5d877b076444168925e237961b (patch)
tree5643ffc884dc0c43707ede078767e8de89c9b5d5
parentefeddc8067202c6b828dcb3a8ec0f20f5135b43f (diff)
automatic import of python-django-hurricaneopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-django-hurricane.spec301
-rw-r--r--sources1
3 files changed, 303 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..5ba842a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/django-hurricane-1.3.4.tar.gz
diff --git a/python-django-hurricane.spec b/python-django-hurricane.spec
new file mode 100644
index 0000000..c8fdf5b
--- /dev/null
+++ b/python-django-hurricane.spec
@@ -0,0 +1,301 @@
+%global _empty_manifest_terminate_build 0
+Name: python-django-hurricane
+Version: 1.3.4
+Release: 1
+Summary: Hurricane is an initiative to fit Django perfectly with Kubernetes.
+License: MIT License
+URL: https://github.com/Blueshoe/django-hurricane
+Source0: https://mirrors.aliyun.com/pypi/web/packages/44/20/4a2c1b04825bd90b7b74ff528a0e121451c9c35bba76db15caaf1a2d8bbb/django-hurricane-1.3.4.tar.gz
+BuildArch: noarch
+
+Requires: python3-tornado
+Requires: python3-Django
+Requires: python3-asgiref
+Requires: python3-pika
+Requires: python3-requests
+Requires: python3-debugpy
+Requires: python3-pydevd-pycharm
+
+%description
+<br />
+<br />
+![Hurricane Logo](https://raw.githubusercontent.com/Blueshoe/django-hurricane/master/docs/_static/img/logo.png)
+<!-- PROJECT LOGO -->
+<br />
+<div align="center">
+ <h3 align="center">Hurricane</h3>
+ <p align="center">
+ An initiative to fit Django perfectly with Kubernetes. It is supposed to cover many capabilities in order to run
+ Django in a cloud-native environment, including a Tornado-powered Django app server.
+ <br />
+ <a href="https://django-hurricane.readthedocs.io/en/latest/"><strong>Explore the docs »</strong></a>
+ <br />
+ <br />
+ <a href="https://django-hurricane.io/">Hurricane website</a>
+ ·
+ <a href="https://django-hurricane.readthedocs.io/en/latest/usage.html">User's guide</a>
+ ·
+ <a href="https://django-hurricane.io/basic-app/">Guide to the first Hurricane-based Application</a>
+ </p>
+</div>
+## Intro
+Django was developed with the *batteries included*-approach and already handles most of the challenges around
+web development with grace. It was initially developed at a time when web applications got deployed and run on a server
+(physical or virtual). With its *pragmatic design* it enabled many developers to keep up with changing requirements,
+performance and maintenance work.
+However, service architectures have become quite popular for complex applications in the past few years. They provide
+a modular style based on the philosophy of dividing overwhelming software projects into smaller and more controllable
+parts. The advantage of highly specialized applications gained prominence among developers, but introduces new
+challenges to the IT-operation.
+However, with the advent of Kubernetes and the cloud-native development philosophy a couple of new possibilities emerged
+to run those service-based applications even better. Kubernetes is a wonderful answer for just as many IT-operation
+requirements as Django is for web development. The inherent monolithic design of Django can be tempting to roll out
+recurring operation patterns with each application. It's not about getting Django to run in a
+Kubernetes cluster (you may already solved this), it's about integrating Django as tightly as possible with Kubernetes
+in order to harness the full power of that platform. Creating the most robust, scalable and secure applications
+with Django by leveraging the existing expertise of our favorite framework is the main goal of this initiative.
+Hurricane is supposed to make the most out of the existing Django ecosystem without reinventing the wheel.
+We will collect best-practices and opinions about how to run Django in Kubernetes and put them on Hurricane's roadmap.
+### Application Server
+Why another app server instead of *uwsgi*, *gunicorn* or *mod_wsgi*? We need a cloud-native app server which is
+much more tidily coupled to the Django application itself. Think of special url routes for Kubernetes probes! Building a
+special View in each and every Django application is not an appropriate solution. What about the Kubernetes Metrics API?
+That's all something we **don't** want to take care of in our Django code.
+Those traditional app servers (i.e. uwsgi et.al.) have a highly optimized process model for bare-server deployments with
+many CPUs, multiple threads and so on. In Kubernetes the scaling of an application is done through the Replication-value
+in a workload description manifest. This is no longer something we configure with app server parameters.
+## Installation
+Hurricane can be installed from a Python Package Index:
+```bash
+pip3 install hurricane
+```
+Add *"hurricane"* to your *INSTALLED_APPS*:
+```python
+INSTALLED_APPS += (
+ 'hurricane',
+)
+```
+You can start the Hurricane server with a following command:
+```python
+python manage.py serve --autoreload --static
+```
+Ouput of this command looks as following:
+```
+System check identified some issues:
+2022-05-04 02:19:07,521 INFO hurricane.server.general Tornado-powered Django web server
+2022-05-04 02:19:07,521 INFO hurricane.server.general Starting probe application running on port 8001 with route liveness-probe: /alive, readiness-probe: /ready, startup-probe: /startup
+2022-05-04 02:19:07,523 INFO hurricane.server.general Starting HTTP Server on port 8000
+2022-05-04 02:19:07,524 INFO hurricane.server.general Startup time is 0.0026285648345947266 seconds
+```
+There are many options that can be used in a combination with the serve command. Please refer to the [documentation](https://django-hurricane.readthedocs.io/en/latest/usage.html) to learn more about the options.
+Django-hurricane works best in combination with Kubernetes, as it includes the inbuilt health-probes, i.e. liveness, readiness and startup probes. Additionally, it is possible to implement custom checks. These checks will be executed after the standard django checks. Follow our guide to learn [how to write a custom check](https://django-hurricane.io/custom-checks/).
+## Commercial Support
+Hurricane is developed and maintained by [Blueshoe](https://www.blueshoe.de).
+If you need any help implementing with hurricane or you want to tell us about the use-case, how you use hurricane, please contact us: hurricane@blueshoe.de.
+
+%package -n python3-django-hurricane
+Summary: Hurricane is an initiative to fit Django perfectly with Kubernetes.
+Provides: python-django-hurricane
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-django-hurricane
+<br />
+<br />
+![Hurricane Logo](https://raw.githubusercontent.com/Blueshoe/django-hurricane/master/docs/_static/img/logo.png)
+<!-- PROJECT LOGO -->
+<br />
+<div align="center">
+ <h3 align="center">Hurricane</h3>
+ <p align="center">
+ An initiative to fit Django perfectly with Kubernetes. It is supposed to cover many capabilities in order to run
+ Django in a cloud-native environment, including a Tornado-powered Django app server.
+ <br />
+ <a href="https://django-hurricane.readthedocs.io/en/latest/"><strong>Explore the docs »</strong></a>
+ <br />
+ <br />
+ <a href="https://django-hurricane.io/">Hurricane website</a>
+ ·
+ <a href="https://django-hurricane.readthedocs.io/en/latest/usage.html">User's guide</a>
+ ·
+ <a href="https://django-hurricane.io/basic-app/">Guide to the first Hurricane-based Application</a>
+ </p>
+</div>
+## Intro
+Django was developed with the *batteries included*-approach and already handles most of the challenges around
+web development with grace. It was initially developed at a time when web applications got deployed and run on a server
+(physical or virtual). With its *pragmatic design* it enabled many developers to keep up with changing requirements,
+performance and maintenance work.
+However, service architectures have become quite popular for complex applications in the past few years. They provide
+a modular style based on the philosophy of dividing overwhelming software projects into smaller and more controllable
+parts. The advantage of highly specialized applications gained prominence among developers, but introduces new
+challenges to the IT-operation.
+However, with the advent of Kubernetes and the cloud-native development philosophy a couple of new possibilities emerged
+to run those service-based applications even better. Kubernetes is a wonderful answer for just as many IT-operation
+requirements as Django is for web development. The inherent monolithic design of Django can be tempting to roll out
+recurring operation patterns with each application. It's not about getting Django to run in a
+Kubernetes cluster (you may already solved this), it's about integrating Django as tightly as possible with Kubernetes
+in order to harness the full power of that platform. Creating the most robust, scalable and secure applications
+with Django by leveraging the existing expertise of our favorite framework is the main goal of this initiative.
+Hurricane is supposed to make the most out of the existing Django ecosystem without reinventing the wheel.
+We will collect best-practices and opinions about how to run Django in Kubernetes and put them on Hurricane's roadmap.
+### Application Server
+Why another app server instead of *uwsgi*, *gunicorn* or *mod_wsgi*? We need a cloud-native app server which is
+much more tidily coupled to the Django application itself. Think of special url routes for Kubernetes probes! Building a
+special View in each and every Django application is not an appropriate solution. What about the Kubernetes Metrics API?
+That's all something we **don't** want to take care of in our Django code.
+Those traditional app servers (i.e. uwsgi et.al.) have a highly optimized process model for bare-server deployments with
+many CPUs, multiple threads and so on. In Kubernetes the scaling of an application is done through the Replication-value
+in a workload description manifest. This is no longer something we configure with app server parameters.
+## Installation
+Hurricane can be installed from a Python Package Index:
+```bash
+pip3 install hurricane
+```
+Add *"hurricane"* to your *INSTALLED_APPS*:
+```python
+INSTALLED_APPS += (
+ 'hurricane',
+)
+```
+You can start the Hurricane server with a following command:
+```python
+python manage.py serve --autoreload --static
+```
+Ouput of this command looks as following:
+```
+System check identified some issues:
+2022-05-04 02:19:07,521 INFO hurricane.server.general Tornado-powered Django web server
+2022-05-04 02:19:07,521 INFO hurricane.server.general Starting probe application running on port 8001 with route liveness-probe: /alive, readiness-probe: /ready, startup-probe: /startup
+2022-05-04 02:19:07,523 INFO hurricane.server.general Starting HTTP Server on port 8000
+2022-05-04 02:19:07,524 INFO hurricane.server.general Startup time is 0.0026285648345947266 seconds
+```
+There are many options that can be used in a combination with the serve command. Please refer to the [documentation](https://django-hurricane.readthedocs.io/en/latest/usage.html) to learn more about the options.
+Django-hurricane works best in combination with Kubernetes, as it includes the inbuilt health-probes, i.e. liveness, readiness and startup probes. Additionally, it is possible to implement custom checks. These checks will be executed after the standard django checks. Follow our guide to learn [how to write a custom check](https://django-hurricane.io/custom-checks/).
+## Commercial Support
+Hurricane is developed and maintained by [Blueshoe](https://www.blueshoe.de).
+If you need any help implementing with hurricane or you want to tell us about the use-case, how you use hurricane, please contact us: hurricane@blueshoe.de.
+
+%package help
+Summary: Development documents and examples for django-hurricane
+Provides: python3-django-hurricane-doc
+%description help
+<br />
+<br />
+![Hurricane Logo](https://raw.githubusercontent.com/Blueshoe/django-hurricane/master/docs/_static/img/logo.png)
+<!-- PROJECT LOGO -->
+<br />
+<div align="center">
+ <h3 align="center">Hurricane</h3>
+ <p align="center">
+ An initiative to fit Django perfectly with Kubernetes. It is supposed to cover many capabilities in order to run
+ Django in a cloud-native environment, including a Tornado-powered Django app server.
+ <br />
+ <a href="https://django-hurricane.readthedocs.io/en/latest/"><strong>Explore the docs »</strong></a>
+ <br />
+ <br />
+ <a href="https://django-hurricane.io/">Hurricane website</a>
+ ·
+ <a href="https://django-hurricane.readthedocs.io/en/latest/usage.html">User's guide</a>
+ ·
+ <a href="https://django-hurricane.io/basic-app/">Guide to the first Hurricane-based Application</a>
+ </p>
+</div>
+## Intro
+Django was developed with the *batteries included*-approach and already handles most of the challenges around
+web development with grace. It was initially developed at a time when web applications got deployed and run on a server
+(physical or virtual). With its *pragmatic design* it enabled many developers to keep up with changing requirements,
+performance and maintenance work.
+However, service architectures have become quite popular for complex applications in the past few years. They provide
+a modular style based on the philosophy of dividing overwhelming software projects into smaller and more controllable
+parts. The advantage of highly specialized applications gained prominence among developers, but introduces new
+challenges to the IT-operation.
+However, with the advent of Kubernetes and the cloud-native development philosophy a couple of new possibilities emerged
+to run those service-based applications even better. Kubernetes is a wonderful answer for just as many IT-operation
+requirements as Django is for web development. The inherent monolithic design of Django can be tempting to roll out
+recurring operation patterns with each application. It's not about getting Django to run in a
+Kubernetes cluster (you may already solved this), it's about integrating Django as tightly as possible with Kubernetes
+in order to harness the full power of that platform. Creating the most robust, scalable and secure applications
+with Django by leveraging the existing expertise of our favorite framework is the main goal of this initiative.
+Hurricane is supposed to make the most out of the existing Django ecosystem without reinventing the wheel.
+We will collect best-practices and opinions about how to run Django in Kubernetes and put them on Hurricane's roadmap.
+### Application Server
+Why another app server instead of *uwsgi*, *gunicorn* or *mod_wsgi*? We need a cloud-native app server which is
+much more tidily coupled to the Django application itself. Think of special url routes for Kubernetes probes! Building a
+special View in each and every Django application is not an appropriate solution. What about the Kubernetes Metrics API?
+That's all something we **don't** want to take care of in our Django code.
+Those traditional app servers (i.e. uwsgi et.al.) have a highly optimized process model for bare-server deployments with
+many CPUs, multiple threads and so on. In Kubernetes the scaling of an application is done through the Replication-value
+in a workload description manifest. This is no longer something we configure with app server parameters.
+## Installation
+Hurricane can be installed from a Python Package Index:
+```bash
+pip3 install hurricane
+```
+Add *"hurricane"* to your *INSTALLED_APPS*:
+```python
+INSTALLED_APPS += (
+ 'hurricane',
+)
+```
+You can start the Hurricane server with a following command:
+```python
+python manage.py serve --autoreload --static
+```
+Ouput of this command looks as following:
+```
+System check identified some issues:
+2022-05-04 02:19:07,521 INFO hurricane.server.general Tornado-powered Django web server
+2022-05-04 02:19:07,521 INFO hurricane.server.general Starting probe application running on port 8001 with route liveness-probe: /alive, readiness-probe: /ready, startup-probe: /startup
+2022-05-04 02:19:07,523 INFO hurricane.server.general Starting HTTP Server on port 8000
+2022-05-04 02:19:07,524 INFO hurricane.server.general Startup time is 0.0026285648345947266 seconds
+```
+There are many options that can be used in a combination with the serve command. Please refer to the [documentation](https://django-hurricane.readthedocs.io/en/latest/usage.html) to learn more about the options.
+Django-hurricane works best in combination with Kubernetes, as it includes the inbuilt health-probes, i.e. liveness, readiness and startup probes. Additionally, it is possible to implement custom checks. These checks will be executed after the standard django checks. Follow our guide to learn [how to write a custom check](https://django-hurricane.io/custom-checks/).
+## Commercial Support
+Hurricane is developed and maintained by [Blueshoe](https://www.blueshoe.de).
+If you need any help implementing with hurricane or you want to tell us about the use-case, how you use hurricane, please contact us: hurricane@blueshoe.de.
+
+%prep
+%autosetup -n django-hurricane-1.3.4
+
+%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-django-hurricane -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 1.3.4-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..fc53d32
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+d37134b2f0f194492887c4f78f2c7b4b django-hurricane-1.3.4.tar.gz