[python-gunicorn/el6] initial version

Dan Callaghan dcallagh at fedoraproject.org
Thu Feb 9 06:50:55 UTC 2012


commit 796c86358bc6b5795e634155c0ccdf23b4ab21cc
Author: Dan Callaghan <dcallagh at redhat.com>
Date:   Mon Jan 30 16:49:52 2012 +1000

    initial version

 .gitignore    |    1 +
 gunicorn.spec |   41 +++++++++++++++++++++++++++++++++++++++++
 sources       |    1 +
 3 files changed, 43 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..5ec3a34 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/gunicorn-0.13.4.tar.gz
diff --git a/gunicorn.spec b/gunicorn.spec
new file mode 100644
index 0000000..8a5ecce
--- /dev/null
+++ b/gunicorn.spec
@@ -0,0 +1,41 @@
+Name:           gunicorn
+Version:        0.13.4
+Release:        1%{?dist}
+Summary:        Python WSGI application server
+
+Group:          Applications/Internet
+License:        MIT
+URL:            http://gunicorn.org/
+Source0:        http://pypi.python.org/packages/source/g/gunicorn/gunicorn-%{version}.tar.gz
+
+BuildArch:      noarch
+BuildRequires:  python-setuptools-devel
+BuildRequires:  python-nose
+
+%description
+Gunicorn ("Green Unicorn") is a Python WSGI HTTP server for UNIX. It uses the 
+pre-fork worker model, ported from Ruby's Unicorn project. It supports WSGI, 
+Django, and Paster applications.
+
+%prep
+%setup -q
+
+%build
+%{__python} setup.py build
+
+%install
+%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
+
+%check
+%{__python} setup.py test
+
+%files
+%doc LICENSE NOTICE README.rst THANKS
+%{python_sitelib}/%{name}*
+%{_bindir}/%{name}
+%{_bindir}/%{name}_django
+%{_bindir}/%{name}_paster
+
+%changelog
+* Mon Jan 30 2012 Dan Callaghan <dcallagh at redhat.com> - 0.13.4-1
+- initial version
diff --git a/sources b/sources
index e69de29..522b471 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+e18f3fdaa94ef2dce2f2d53e1f7aaadc  gunicorn-0.13.4.tar.gz


More information about the scm-commits mailing list