summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Martins <rafaelmartins@gentoo.org>2013-05-02 04:05:08 +0000
committerRafael Martins <rafaelmartins@gentoo.org>2013-05-02 04:05:08 +0000
commit748d3e9cddb567aff22c327edb01abb5293bdfd3 (patch)
tree7ebff87518e767f9003699836fdcb3a009f20cfa /www-servers
parentBump (diff)
downloadgentoo-2-748d3e9cddb567aff22c327edb01abb5293bdfd3.tar.gz
gentoo-2-748d3e9cddb567aff22c327edb01abb5293bdfd3.tar.bz2
gentoo-2-748d3e9cddb567aff22c327edb01abb5293bdfd3.zip
Version bump. Remove old. Removed proxy-maint.
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'www-servers')
-rw-r--r--www-servers/gunicorn/ChangeLog9
-rw-r--r--www-servers/gunicorn/gunicorn-0.13.4.ebuild43
-rw-r--r--www-servers/gunicorn/gunicorn-0.14.6.ebuild37
-rw-r--r--www-servers/gunicorn/gunicorn-0.15.0.ebuild28
-rw-r--r--www-servers/gunicorn/gunicorn-0.17.4.ebuild (renamed from www-servers/gunicorn/gunicorn-0.16.1.ebuild)4
-rw-r--r--www-servers/gunicorn/metadata.xml1
6 files changed, 10 insertions, 112 deletions
diff --git a/www-servers/gunicorn/ChangeLog b/www-servers/gunicorn/ChangeLog
index 861427a98f23..1199a5e8381d 100644
--- a/www-servers/gunicorn/ChangeLog
+++ b/www-servers/gunicorn/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for www-servers/gunicorn
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v 1.30 2013/03/26 11:42:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v 1.31 2013/05/02 04:05:08 rafaelmartins Exp $
+
+*gunicorn-0.17.4 (02 May 2013)
+
+ 02 May 2013; Rafael G. Martins <rafaelmartins@gentoo.org>
+ -gunicorn-0.13.4.ebuild, -gunicorn-0.14.6.ebuild, -gunicorn-0.15.0.ebuild,
+ -gunicorn-0.16.1.ebuild, +gunicorn-0.17.4.ebuild, metadata.xml:
+ Version bump. Remove old. Removed proxy-maint.
26 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gunicorn-0.17.2.ebuild:
Stable for x86, wrt bug #463154
diff --git a/www-servers/gunicorn/gunicorn-0.13.4.ebuild b/www-servers/gunicorn/gunicorn-0.13.4.ebuild
deleted file mode 100644
index 0bc727992b30..000000000000
--- a/www-servers/gunicorn/gunicorn-0.13.4.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-0.13.4.ebuild,v 1.3 2012/01/28 15:16:40 phajdan.jr Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2:2.5"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="2.4 3.* *-jython"
-
-inherit distutils
-
-DESCRIPTION="A WSGI HTTP Server for UNIX, fast clients and nothing else"
-HOMEPAGE="http://gunicorn.org http://pypi.python.org/pypi/gunicorn"
-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 )"
-
-# tests are failing randomly.
-RESTRICT="test"
-
-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
- }
- python_execute_function testing
-}
diff --git a/www-servers/gunicorn/gunicorn-0.14.6.ebuild b/www-servers/gunicorn/gunicorn-0.14.6.ebuild
deleted file mode 100644
index 6623c94ca277..000000000000
--- a/www-servers/gunicorn/gunicorn-0.14.6.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-0.14.6.ebuild,v 1.1 2012/07/30 05:30:20 rafaelmartins Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2:2.5"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="2.4 3.* *-jython"
-DISTUTILS_SRC_TEST="nosetests"
-
-inherit distutils eutils
-
-DESCRIPTION="A WSGI HTTP Server for UNIX"
-HOMEPAGE="http://gunicorn.org http://pypi.python.org/pypi/gunicorn"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="doc test"
-KEYWORDS="~amd64 ~x86"
-
-# tests are failing randomly.
-RESTRICT="test"
-
-RDEPEND="dev-python/setproctitle"
-DEPEND="dev-python/setuptools"
-
-DOCS="README.rst"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}"-0.14.0-noegg.patch || die
-}
-
-src_install() {
- distutils_src_install
- use doc && dohtml -r doc/htdocs/*
-}
diff --git a/www-servers/gunicorn/gunicorn-0.15.0.ebuild b/www-servers/gunicorn/gunicorn-0.15.0.ebuild
deleted file mode 100644
index 6bc113451a86..000000000000
--- a/www-servers/gunicorn/gunicorn-0.15.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-0.15.0.ebuild,v 1.3 2012/11/27 13:04:55 ago Exp $
-
-EAPI="3"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* *-jython"
-DISTUTILS_SRC_TEST="nosetests"
-
-inherit distutils eutils
-
-DESCRIPTION="A WSGI HTTP Server for UNIX"
-HOMEPAGE="http://gunicorn.org http://pypi.python.org/pypi/gunicorn"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-KEYWORDS="amd64 x86"
-
-RDEPEND="dev-python/setproctitle"
-DEPEND="dev-python/setuptools"
-
-DOCS="README.rst"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}"-0.14.0-noegg.patch || die
-}
diff --git a/www-servers/gunicorn/gunicorn-0.16.1.ebuild b/www-servers/gunicorn/gunicorn-0.17.4.ebuild
index fbf743eb341a..a5f51a949caa 100644
--- a/www-servers/gunicorn/gunicorn-0.16.1.ebuild
+++ b/www-servers/gunicorn/gunicorn-0.17.4.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-0.16.1.ebuild,v 1.1 2012/11/27 03:20:00 rafaelmartins Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-0.17.4.ebuild,v 1.1 2013/05/02 04:05:08 rafaelmartins Exp $
EAPI="5"
SUPPORT_PYTHON_ABIS="1"
diff --git a/www-servers/gunicorn/metadata.xml b/www-servers/gunicorn/metadata.xml
index bee4022ee297..9f4816df4ece 100644
--- a/www-servers/gunicorn/metadata.xml
+++ b/www-servers/gunicorn/metadata.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <herd>proxy-maintainers</herd>
<maintainer>
<email>rafaelmartins@gentoo.org</email>
<name>Rafael G. Martins</name>