diff options
author | 2010-12-12 20:37:18 +0000 | |
---|---|---|
committer | 2010-12-12 20:37:18 +0000 | |
commit | bb57969fe872fc355cd7aa215726751bcf25c0b5 (patch) | |
tree | 45d0fb71afe4ee79486889e9df70a5bf5cf7e92b /www-servers | |
parent | add myself on metadata (diff) | |
download | historical-bb57969fe872fc355cd7aa215726751bcf25c0b5.tar.gz historical-bb57969fe872fc355cd7aa215726751bcf25c0b5.tar.bz2 historical-bb57969fe872fc355cd7aa215726751bcf25c0b5.zip |
Initial commit. Thanks to Johan Bergström (bug #303649)
Package-Manager: portage-2.2.0_alpha7/cvs/Linux x86_64
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/gunicorn/ChangeLog | 10 | ||||
-rw-r--r-- | www-servers/gunicorn/Manifest | 4 | ||||
-rw-r--r-- | www-servers/gunicorn/gunicorn-0.11.2.ebuild | 40 | ||||
-rw-r--r-- | www-servers/gunicorn/metadata.xml | 15 |
4 files changed, 69 insertions, 0 deletions
diff --git a/www-servers/gunicorn/ChangeLog b/www-servers/gunicorn/ChangeLog new file mode 100644 index 000000000000..4daf2540077b --- /dev/null +++ b/www-servers/gunicorn/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for www-servers/gunicorn +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v 1.1 2010/12/12 20:37:18 rafaelmartins Exp $ + +*gunicorn-0.11.2 (12 Dec 2010) + + 12 Dec 2010; Rafael G. Martins <rafaelmartins@gentoo.org> + +gunicorn-0.11.2.ebuild, +metadata.xml: + Initial commit. Thanks to Johan Bergström (bug #303649) + diff --git a/www-servers/gunicorn/Manifest b/www-servers/gunicorn/Manifest new file mode 100644 index 000000000000..dfbebb81de25 --- /dev/null +++ b/www-servers/gunicorn/Manifest @@ -0,0 +1,4 @@ +DIST gunicorn-0.11.2.tar.gz 247769 RMD160 89cc2a23766ae347c149c73d9446f5e351b148d8 SHA1 e92cdbfa17c450732c7e87667fd9c57ec22c9688 SHA256 f56a896ba894ff280a412817d7b2714705e1abf31cbc924c6d9b20c804b0d3f8 +EBUILD gunicorn-0.11.2.ebuild 1022 RMD160 32e593667ef20bc06b2200c54f711061ff567cf1 SHA1 5f74d52194cfaaa60629f4ce1db09287a337f20c SHA256 8900bee7d5f8d77ed1f49035e29f816af10ac32bda0473c29296a1d752c8b8b6 +MISC ChangeLog 414 RMD160 39c4e4a6a6c64e7a4014f835a968d6f01e5da2bf SHA1 9632d7e103c591ca8b0a8eb54cb06146ca10b5ab SHA256 b2e46fc21d5bc82c276c679067910074d8becfe5ad77145690519e8b6fd0589e +MISC metadata.xml 606 RMD160 a53ec657d62941ddd566ded849871aa24bdbc261 SHA1 20c8ee96cb5cec3c67f597e1305f3a7f9f8041d5 SHA256 c4cd0253187112f6cbd87cacbb923c79c64ea409e276961a5f734bbde9997f08 diff --git a/www-servers/gunicorn/gunicorn-0.11.2.ebuild b/www-servers/gunicorn/gunicorn-0.11.2.ebuild new file mode 100644 index 000000000000..7d7878ed3d4b --- /dev/null +++ b/www-servers/gunicorn/gunicorn-0.11.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-0.11.2.ebuild,v 1.1 2010/12/12 20:37:18 rafaelmartins Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +DESCRIPTION="A WSGI HTTP Server for UNIX, fast clients and nothing else" +HOMEPAGE="http://gunicorn.org" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +IUSE="doc examples test" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/setproctitle" +DEPEND="dev-python/setuptools + test? ( dev-python/nose )" + +RESTRICT_PYTHON_ABIS="3.*" +DOCS="README.rst" + +src_install() { + distutils_src_install + use doc && dohtml -r doc/htdocs/* + insinto "/usr/share/doc/${PF}" + use examples && doins -r examples +} + +src_test() { + # distutils_src_test doesn't works if gunicorn isn't installed yet + testing() { + PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" \ + setup.py test || die 'test failed.' + } + python_execute_function testing +} diff --git a/www-servers/gunicorn/metadata.xml b/www-servers/gunicorn/metadata.xml new file mode 100644 index 000000000000..ff718e00d981 --- /dev/null +++ b/www-servers/gunicorn/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>rafaelmartins@gentoo.org</email> + <name>Rafael G. Martins</name> + </maintainer> + <longdescription lang="en"> + Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's a + pre-fork worker model ported from Ruby's Unicorn project. The Gunicorn + server is broadly compatible with various web frameworks, simply + implemented, light on server resources, and fairly speedy. + </longdescription> +</pkgmetadata> |