diff options
author | Ian Delaney <idella4@gentoo.org> | 2014-11-25 00:35:16 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2014-11-25 00:35:16 +0000 |
commit | 276c6f31f1ec658a364134a1deeb539f1b45f448 (patch) | |
tree | 45232d24d53246c55a62e630d6762c1089db5ecb /www-servers/gunicorn | |
parent | Version bump. (diff) | |
download | gentoo-2-276c6f31f1ec658a364134a1deeb539f1b45f448.tar.gz gentoo-2-276c6f31f1ec658a364134a1deeb539f1b45f448.tar.bz2 gentoo-2-276c6f31f1ec658a364134a1deeb539f1b45f448.zip |
clean old python impls, upgrade deps, endorsed by designated maintainers
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'www-servers/gunicorn')
-rw-r--r-- | www-servers/gunicorn/ChangeLog | 7 | ||||
-rw-r--r-- | www-servers/gunicorn/gunicorn-0.17.2.ebuild | 47 | ||||
-rw-r--r-- | www-servers/gunicorn/gunicorn-18.0-r1.ebuild | 52 | ||||
-rw-r--r-- | www-servers/gunicorn/gunicorn-18.0.ebuild | 47 | ||||
-rw-r--r-- | www-servers/gunicorn/gunicorn-19.0.0.ebuild | 8 | ||||
-rw-r--r-- | www-servers/gunicorn/gunicorn-19.1.1.ebuild | 8 |
6 files changed, 14 insertions, 155 deletions
diff --git a/www-servers/gunicorn/ChangeLog b/www-servers/gunicorn/ChangeLog index a1de0a01e372..bcd55ecd60bc 100644 --- a/www-servers/gunicorn/ChangeLog +++ b/www-servers/gunicorn/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-servers/gunicorn # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v 1.37 2014/11/10 05:56:33 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/ChangeLog,v 1.38 2014/11/25 00:35:16 idella4 Exp $ + + 25 Nov 2014; Ian Delaney <idella4@gentoo.org> -gunicorn-0.17.2.ebuild, + -gunicorn-18.0-r1.ebuild, -gunicorn-18.0.ebuild, gunicorn-19.0.0.ebuild, + gunicorn-19.1.1.ebuild: + clean old python impls, upgrade deps, endorsed by designated maintainers *gunicorn-19.1.1 (10 Nov 2014) diff --git a/www-servers/gunicorn/gunicorn-0.17.2.ebuild b/www-servers/gunicorn/gunicorn-0.17.2.ebuild deleted file mode 100644 index bbea3aa91410..000000000000 --- a/www-servers/gunicorn/gunicorn-0.17.2.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# 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.17.2.ebuild,v 1.3 2013/03/26 11:42:29 ago Exp $ - -EAPI="5" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.5 3.1 *-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" - -RDEPEND="dev-python/setproctitle" -DEPEND="dev-python/setuptools - doc? ( dev-python/sphinx ) - test? ( dev-python/pytest )" - -DOCS="README.rst" - -src_prepare() { - # these tests requires an already installed version of gunicorn - rm tests/test_003-config.py -} - -src_compile() { - distutils_src_compile - - if use doc; then - einfo "Generation of documentation" - cd docs - sphinx-build -b html source build || die "Generation of documentation failed" - fi -} - -src_install() { - distutils_src_install - - use doc && dohtml -r docs/build/ -} diff --git a/www-servers/gunicorn/gunicorn-18.0-r1.ebuild b/www-servers/gunicorn/gunicorn-18.0-r1.ebuild deleted file mode 100644 index fafe2ac2ccc9..000000000000 --- a/www-servers/gunicorn/gunicorn-18.0-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-18.0-r1.ebuild,v 1.1 2014/05/13 00:56:10 rafaelmartins Exp $ - -EAPI="5" -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy pypy2_0 ) - -inherit distutils-r1 - -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 examples test" -KEYWORDS="~amd64 ~x86" - -RDEPEND="dev-python/setproctitle" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx ) - test? ( dev-python/pytest[${PYTHON_USEDEP}] )" - -DOCS="README.rst" - -python_prepare() { - # these tests requires an already installed version of gunicorn - rm tests/test_003-config.py - - sed -ie "s/..\/bin/\/usr\/bin\//" docs/Makefile || die - - distutils-r1_python_prepare -} - -python_compile_all() { - use doc && emake -C docs html -} - -python_test() { - py.test -v || die "Testing failed with ${EPYTHON}" -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/build/html/. ) - - distutils-r1_python_install_all - - if use examples; then - insinto /usr/share/doc/${P} - doins -r examples - fi -} diff --git a/www-servers/gunicorn/gunicorn-18.0.ebuild b/www-servers/gunicorn/gunicorn-18.0.ebuild deleted file mode 100644 index 6ac66f024a32..000000000000 --- a/www-servers/gunicorn/gunicorn-18.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# 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-18.0.ebuild,v 1.1 2013/09/22 02:50:27 rafaelmartins Exp $ - -EAPI="5" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.5 3.1 *-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" - -RDEPEND="dev-python/setproctitle" -DEPEND="dev-python/setuptools - doc? ( dev-python/sphinx ) - test? ( dev-python/pytest )" - -DOCS="README.rst" - -src_prepare() { - # these tests requires an already installed version of gunicorn - rm tests/test_003-config.py -} - -src_compile() { - distutils_src_compile - - if use doc; then - einfo "Generation of documentation" - cd docs - sphinx-build -b html source build || die "Generation of documentation failed" - fi -} - -src_install() { - distutils_src_install - - use doc && dohtml -r docs/build/ -} diff --git a/www-servers/gunicorn/gunicorn-19.0.0.ebuild b/www-servers/gunicorn/gunicorn-19.0.0.ebuild index 387f0d4e35bb..31b0f43ace32 100644 --- a/www-servers/gunicorn/gunicorn-19.0.0.ebuild +++ b/www-servers/gunicorn/gunicorn-19.0.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-19.0.0.ebuild,v 1.1 2014/07/22 04:26:43 rafaelmartins Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-19.0.0.ebuild,v 1.2 2014/11/25 00:35:16 idella4 Exp $ EAPI="5" -PYTHON_COMPAT=( python{2_6,2_7,3_3,3_4} pypy pypy2_0 ) +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) inherit distutils-r1 @@ -16,9 +16,9 @@ SLOT="0" IUSE="doc examples test" KEYWORDS="~amd64 ~x86" -RDEPEND="dev-python/setproctitle" +RDEPEND="dev-python/setproctitle[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx ) + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) test? ( dev-python/pytest[${PYTHON_USEDEP}] )" DOCS="README.rst" diff --git a/www-servers/gunicorn/gunicorn-19.1.1.ebuild b/www-servers/gunicorn/gunicorn-19.1.1.ebuild index 7efbbf70217f..35a56f48fac5 100644 --- a/www-servers/gunicorn/gunicorn-19.1.1.ebuild +++ b/www-servers/gunicorn/gunicorn-19.1.1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-19.1.1.ebuild,v 1.1 2014/11/10 05:56:33 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/gunicorn/gunicorn-19.1.1.ebuild,v 1.2 2014/11/25 00:35:16 idella4 Exp $ EAPI="5" -PYTHON_COMPAT=( python{2_6,2_7,3_3,3_4} pypy pypy2_0 ) +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) inherit distutils-r1 @@ -16,9 +16,9 @@ SLOT="0" IUSE="doc examples test" KEYWORDS="~amd64 ~x86" -RDEPEND="dev-python/setproctitle" +RDEPEND="dev-python/setproctitle[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx ) + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) test? ( dev-python/pytest[${PYTHON_USEDEP}] )" DOCS="README.rst" |