From: "Rafael Martins" <rafaelmartins@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/gunicorn/
Date: Fri, 20 Apr 2018 15:46:12 +0000 (UTC) [thread overview]
Message-ID: <1524239102.c12e6b78971234b48f0daecb3be3fc3d98e5f83f.rafaelmartins@gentoo> (raw)
commit: c12e6b78971234b48f0daecb3be3fc3d98e5f83f
Author: Rafael G. Martins <rafaelmartins <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 20 15:45:02 2018 +0000
Commit: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
CommitDate: Fri Apr 20 15:45:02 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c12e6b78
www-servers/gunicorn: version bump (bug #653590)
also removed examples use flag, banned on EAPI 6
Package-Manager: Portage-2.3.19, Repoman-2.3.6
www-servers/gunicorn/Manifest | 1 +
www-servers/gunicorn/gunicorn-19.7.1.ebuild | 50 +++++++++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/www-servers/gunicorn/Manifest b/www-servers/gunicorn/Manifest
index e4ea77d20cf..99327531e52 100644
--- a/www-servers/gunicorn/Manifest
+++ b/www-servers/gunicorn/Manifest
@@ -2,3 +2,4 @@ DIST gunicorn-19.1.1.tar.gz 385155 BLAKE2B 683bff89e9f7037b22748c968f842cbd6328f
DIST gunicorn-19.3.0.tar.gz 395381 BLAKE2B cbdf0e4a8c5f107b3dbee9ac30b141142bd10e5a4d9046de3c2fe3af965e6b5f091ff29bdfd9f4a1da75ea409e6f9a3b9627f6069d5529dc9db4d6ad1e3f9860 SHA512 8c4e0bb1bf0b35aaf9160b9b7d87890a991451fbc86186454203f3483767858944704c1ec22dd52480ce1e4693e84b62b1428dd3b67b2ae925e0475dc08fcb50
DIST gunicorn-19.4.5.tar.gz 399066 BLAKE2B 046dd95170b3d6c6071c955462af5777ee0fbaa48d80c4a16b78fb1c9abd49bef98f7428e7f861b404a2791683074ae37a22a7e73d5b7f183fa6ac77d139123e SHA512 a255178a4ce7966af5883fc6c104e7c472c87ce91861caf976b52cfb0ccd90b34109130334afa6c1f6dd251a4b33b052b1f9a4f598c5cd1e7f26e332b92e9154
DIST gunicorn-19.6.0.tar.gz 404497 BLAKE2B 8edc6907daf9cced83ab4213146d468789a23b4428a562f9f5cc7d2aa8f7c57137ca9f163609b6a8955537dfc5a93910a7cef183fa6457c5017cbb3941f4e0c8 SHA512 50b69ae18acc6f60be6fc5c6f4a867d8415d32009a1f959155b58502d52403a057612e97d6c9b69ec068ee5af7b9b045952a636a5edf4713a1249492611be479
+DIST gunicorn-19.7.1.tar.gz 402658 BLAKE2B 8fd96ae3cc8c78beae8f3f84f960d75dc1a17134050fa7735cf0f01bd2a560bca733450d98c69e7c77b9679b3502df8e71dfe29d4127bd0f5086b7961b35e756 SHA512 ee01276028ad65c72076f09d95b6801a720700ec55d9b0bf929e0a6c0db546178a21c34f584ef1780f329218b2cfa3dc1e0c2d81bd4f7fcb0b328fbdfb0b9f0e
diff --git a/www-servers/gunicorn/gunicorn-19.7.1.ebuild b/www-servers/gunicorn/gunicorn-19.7.1.ebuild
new file mode 100644
index 00000000000..8aef7da541f
--- /dev/null
+++ b/www-servers/gunicorn/gunicorn-19.7.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="A WSGI HTTP Server for UNIX"
+HOMEPAGE="http://gunicorn.org https://pypi.org/project/gunicorn https://github.com/benoitc/gunicorn"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT PSF-2 doc? ( BSD )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc 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}]
+ dev-python/pytest-cov[${PYTHON_USEDEP}]
+ dev-python/unittest2[${PYTHON_USEDEP}]
+ )"
+
+DOCS="README.rst"
+
+python_prepare_all() {
+ 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/. )
+
+ distutils-r1_python_install_all
+}
next reply other threads:[~2018-04-20 15:46 UTC|newest]
Thread overview: 70+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-20 15:46 Rafael Martins [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-09-08 19:10 [gentoo-commits] repo/gentoo:master commit in: www-servers/gunicorn/ Arthur Zamarin
2024-08-31 9:21 Michał Górny
2024-08-31 8:00 Arthur Zamarin
2024-08-11 2:58 Michał Górny
2024-06-10 17:01 Michał Górny
2024-05-04 7:25 Michał Górny
2024-05-04 7:14 Arthur Zamarin
2024-04-17 13:52 Michał Górny
2023-08-19 17:53 Arthur Zamarin
2023-07-21 7:10 Michał Górny
2023-07-19 6:57 Michał Górny
2023-07-18 6:03 Michał Górny
2023-05-31 7:31 Michał Górny
2023-01-27 22:16 Marek Szuba
2023-01-24 11:00 Marek Szuba
2022-12-20 14:26 Jakov Smolić
2022-06-29 10:59 Marek Szuba
2022-06-29 7:58 Jakov Smolić
2022-05-18 16:59 Michał Górny
2022-05-18 16:59 Michał Górny
2022-04-25 18:41 Sam James
2021-07-27 23:11 Marek Szuba
2021-06-19 12:26 Michał Górny
2021-05-13 19:31 Michał Górny
2021-05-13 16:54 Sam James
2021-05-13 14:27 Marek Szuba
2021-04-04 18:55 Andreas Sturmlechner
2021-03-15 12:49 Marek Szuba
2020-12-07 19:52 Marek Szuba
2020-12-07 19:24 Marek Szuba
2020-11-30 21:12 Sergei Trofimovich
2020-11-28 15:26 Sam James
2020-11-28 15:26 Sam James
2020-11-26 19:08 Sam James
2020-11-26 13:21 Sam James
2020-10-07 1:02 Sam James
2020-10-02 15:22 Sergei Trofimovich
2020-10-01 17:29 Sergei Trofimovich
2020-09-30 20:26 Sam James
2020-09-27 6:42 Matt Turner
2020-09-13 4:55 Sam James
2020-08-25 10:23 Sam James
2020-08-21 15:36 Agostino Sarubbo
2020-08-19 9:29 Sergei Trofimovich
2020-08-18 21:53 Sergei Trofimovich
2020-08-18 8:04 Michał Górny
2020-06-12 19:32 Michał Górny
2020-06-12 19:32 Michał Górny
2020-06-12 15:40 Michał Górny
2020-02-11 12:25 Michał Górny
2019-12-30 21:54 Piotr Karbowski
2019-04-04 21:16 Aaron Bauman
2019-03-21 22:24 Aaron Bauman
2019-03-16 23:33 Anthony G. Basile
2018-12-07 2:41 Thomas Deutschmann
2018-12-04 11:56 Agostino Sarubbo
2018-05-14 22:47 Rafael Martins
2017-11-26 23:26 David Seifert
2017-06-28 9:38 Alexis Ballier
2017-02-22 16:08 Agostino Sarubbo
2017-02-22 15:06 Agostino Sarubbo
2017-02-13 8:55 Zac Medico
2016-11-10 0:14 Sebastian Pipping
2016-11-03 16:19 Göktürk Yüksek
2016-03-28 13:16 Ian Delaney
2016-01-26 3:32 Zac Medico
2016-01-26 3:31 Zac Medico
2015-08-09 12:30 Justin Lecher
2015-08-09 11:51 Justin Lecher
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=1524239102.c12e6b78971234b48f0daecb3be3fc3d98e5f83f.rafaelmartins@gentoo \
--to=rafaelmartins@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