From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/gunicorn/
Date: Sun, 9 Aug 2015 11:51:42 +0000 (UTC) [thread overview]
Message-ID: <1439121096.73b6d43a9b0b11e395fe4f53c9a732b16ae084ab.jlec@gentoo> (raw)
commit: 73b6d43a9b0b11e395fe4f53c9a732b16ae084ab
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 9 11:50:43 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Aug 9 11:51:36 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73b6d43a
www-servers/gunicorn: Version Bump
Package-Manager: portage-2.2.20
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
www-servers/gunicorn/Manifest | 1 +
www-servers/gunicorn/gunicorn-19.3.0.ebuild | 53 +++++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/www-servers/gunicorn/Manifest b/www-servers/gunicorn/Manifest
index 1bc7ab3..4331aef 100644
--- a/www-servers/gunicorn/Manifest
+++ b/www-servers/gunicorn/Manifest
@@ -1,3 +1,4 @@
DIST gunicorn-0.17.4.tar.gz 372737 SHA256 0f5b63f87ab66b9aaca6938e2b97dd6e785498a0cb4567560996192d7e40ad21 SHA512 e227e2e3b1240d1090c0ef86db884ed68dea92f7d4de6a949afee00a0c258a1cf77309391fd88a6c9861942a246495018b81443e8be3055c14af2373e1f4d793 WHIRLPOOL 873220a9c0065ec5df81ad807d212b641dc3d5a4a9a0dceae28c17f07d1d9a63110a25fd1881bac765198cd10600ca5b802ba20f3a763da8db2ecf7d8bc0e25f
DIST gunicorn-19.0.0.tar.gz 382899 SHA256 0ccb71a2d9e0764fb3abc5dc6f7a44d5d44e3137545be8869befc8aedc02878e SHA512 5e041cfd65c664e687538c1ab1680949492fa76abe8e39f9ab3f8b5239f5ca4f1d91cbb9235e6d671ecd13eec1e58eb440c42f21534488c6acafb34c65288c41 WHIRLPOOL 21bf2f771125c575c85eb8c3c3a8c4b95a29f5e29a157affde2bf2446b29ccef1f192c9f93f5ebe86b1a1196c716a0d9101e94c4f2fcfa7f7304cf5e351b051c
DIST gunicorn-19.1.1.tar.gz 385155 SHA256 82715511fb6246fad4ba66d812eb93416ae8371b464fa88bf3867c9c177daa14 SHA512 1b42f0dadb8ced12954e821ad3dc7fad67ae6f1123218fe79e32d7089d9ae65bcd973613c226d9a16b11d7d35632990f2c9499594c7a383a79698a1c2db471de WHIRLPOOL 29c99b33b72d00dc248adedf89517804f58ee4ee36a3c9fdddb9d65ee047dd57d381d719e1ed44b7b5284f11ac703d29f3d66fd077f996de2ab9effa8fb15fda
+DIST gunicorn-19.3.0.tar.gz 395381 SHA256 8bc835082882ad9a012cd790c460011e4d96bf3512d98a04d3dabbe45393a089 SHA512 8c4e0bb1bf0b35aaf9160b9b7d87890a991451fbc86186454203f3483767858944704c1ec22dd52480ce1e4693e84b62b1428dd3b67b2ae925e0475dc08fcb50 WHIRLPOOL 7a840b5878b409d89a61dcca40632448e7b5a402b0e26ba03a65f3384a9491f06c2c69279cdfcc0013e2b6d7ee0de619d17437a60990d19f674653d29c83502a
diff --git a/www-servers/gunicorn/gunicorn-19.3.0.ebuild b/www-servers/gunicorn/gunicorn-19.3.0.ebuild
new file mode 100644
index 0000000..d50ed82
--- /dev/null
+++ b/www-servers/gunicorn/gunicorn-19.3.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="A WSGI HTTP Server for UNIX"
+HOMEPAGE="http://gunicorn.org http://pypi.python.org/pypi/gunicorn https://github.com/benoitc/gunicorn"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc examples test"
+
+RDEPEND="dev-python/setproctitle[${PYTHON_USEDEP}]"
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+ test? (
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}]
+ )"
+
+DOCS="README.rst"
+
+python_prepare_all() {
+ # these tests requires an already installed version of gunicorn
+ rm tests/test_003-config.py || die
+
+ sed -ie "s/..\/bin/\/usr\/bin\//" docs/Makefile || die
+
+ distutils-r1_python_prepare_all
+}
+
+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/. )
+ use examples && EXAMPLES=( examples/. )
+
+ distutils-r1_python_install_all
+}
next reply other threads:[~2015-08-09 11:51 UTC|newest]
Thread overview: 70+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-09 11:51 Justin Lecher [this message]
-- strict thread matches above, loose matches on Subject: below --
2015-08-09 12:30 [gentoo-commits] repo/gentoo:master commit in: www-servers/gunicorn/ Justin Lecher
2016-01-26 3:31 Zac Medico
2016-01-26 3:32 Zac Medico
2016-03-28 13:16 Ian Delaney
2016-11-03 16:19 Göktürk Yüksek
2016-11-10 0:14 Sebastian Pipping
2017-02-13 8:55 Zac Medico
2017-02-22 15:06 Agostino Sarubbo
2017-02-22 16:08 Agostino Sarubbo
2017-06-28 9:38 Alexis Ballier
2017-11-26 23:26 David Seifert
2018-04-20 15:46 Rafael Martins
2018-05-14 22:47 Rafael Martins
2018-12-04 11:56 Agostino Sarubbo
2018-12-07 2:41 Thomas Deutschmann
2019-03-16 23:33 Anthony G. Basile
2019-03-21 22:24 Aaron Bauman
2019-04-04 21:16 Aaron Bauman
2019-12-30 21:54 Piotr Karbowski
2020-02-11 12:25 Michał Górny
2020-06-12 15:40 Michał Górny
2020-06-12 19:32 Michał Górny
2020-06-12 19:32 Michał Górny
2020-08-18 8:04 Michał Górny
2020-08-18 21:53 Sergei Trofimovich
2020-08-19 9:29 Sergei Trofimovich
2020-08-21 15:36 Agostino Sarubbo
2020-08-25 10:23 Sam James
2020-09-13 4:55 Sam James
2020-09-27 6:42 Matt Turner
2020-09-30 20:26 Sam James
2020-10-01 17:29 Sergei Trofimovich
2020-10-02 15:22 Sergei Trofimovich
2020-10-07 1:02 Sam James
2020-11-26 13:21 Sam James
2020-11-26 19:08 Sam James
2020-11-28 15:26 Sam James
2020-11-28 15:26 Sam James
2020-11-30 21:12 Sergei Trofimovich
2020-12-07 19:24 Marek Szuba
2020-12-07 19:52 Marek Szuba
2021-03-15 12:49 Marek Szuba
2021-04-04 18:55 Andreas Sturmlechner
2021-05-13 14:27 Marek Szuba
2021-05-13 16:54 Sam James
2021-05-13 19:31 Michał Górny
2021-06-19 12:26 Michał Górny
2021-07-27 23:11 Marek Szuba
2022-04-25 18:41 Sam James
2022-05-18 16:59 Michał Górny
2022-05-18 16:59 Michał Górny
2022-06-29 7:58 Jakov Smolić
2022-06-29 10:59 Marek Szuba
2022-12-20 14:26 Jakov Smolić
2023-01-24 11:00 Marek Szuba
2023-01-27 22:16 Marek Szuba
2023-05-31 7:31 Michał Górny
2023-07-18 6:03 Michał Górny
2023-07-19 6:57 Michał Górny
2023-07-21 7:10 Michał Górny
2023-08-19 17:53 Arthur Zamarin
2024-04-17 13:52 Michał Górny
2024-05-04 7:14 Arthur Zamarin
2024-05-04 7:25 Michał Górny
2024-06-10 17:01 Michał Górny
2024-08-11 2:58 Michał Górny
2024-08-31 8:00 Arthur Zamarin
2024-08-31 9:21 Michał Górny
2024-09-08 19:10 Arthur Zamarin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1439121096.73b6d43a9b0b11e395fe4f53c9a732b16ae084ab.jlec@gentoo \
--to=jlec@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox