Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-engineio/
Date: Sat, 27 Feb 2016 00:49:52
Message-Id: 1456534153.98f9be4219d039a012728aaf021715a9a123d0c6.zmedico@gentoo
1 commit: 98f9be4219d039a012728aaf021715a9a123d0c6
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 27 00:49:13 2016 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 00:49:13 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f9be42
7
8 dev-python/python-engineio: version bump to 0.8.8
9
10 Package-Manager: portage-2.2.27
11
12 dev-python/python-engineio/Manifest | 1 +
13 .../python-engineio/python-engineio-0.8.8.ebuild | 28 ++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-python/python-engineio/Manifest b/dev-python/python-engineio/Manifest
17 index 185bed6..74a433a 100644
18 --- a/dev-python/python-engineio/Manifest
19 +++ b/dev-python/python-engineio/Manifest
20 @@ -1,2 +1,3 @@
21 DIST python-engineio-0.8.1.tar.gz 11608 SHA256 82973bcf1c32df594bb78c527d9406f301691ecc5ab93c38fc318c1b0142b9fd SHA512 71a6002753f77440fe118004e7ace11eeb348b2d63274e81fe66e8eace899b8b3f1b8b130f86cedb0d78c995f1f83053ab7811e68fbb6e977072d9491a35b6b7 WHIRLPOOL c2a62848b2a83adb5eea255c60c77d6355053a360d885dacfe117a104974987c9379236c62eed6f496e115c8181428a09ccd51720438b4110902b43c06778450
22 DIST python-engineio-0.8.6.tar.gz 11855 SHA256 cdb7381d6ba28d13e02cec61f3d1b254341b784452c629fba524784c0b774363 SHA512 4fd4e492655340798ca7c34127d26d0fcba864b95e3ab21c423867c21ee7d37dd3b5f564bd3013cc0f9f235a57b5dd4bf705648e21cf07fbe417e4fa69e632f2 WHIRLPOOL df96a513112a21b3dbc4262f156d4332ca71547d0882a0cc473a128a8c3a9ca1dd5a29b19e2b56f5b819fdc8ea415b8f092f974fd2d35f963e321dc2afdd0375
23 +DIST python-engineio-0.8.8.tar.gz 11792 SHA256 1dbe9ad8ca4b36b92d6c2f9c5c4a3ddc25e70858d39e90b9e5e1cb337f0c0924 SHA512 b411565b5144039e680ecb1ebb26c206f8b18f3fe10fd3e62efde5540fb84e80c9085bb9339ef214791921f3f62c46ad75379a0472430db2316a2388b0ecd398 WHIRLPOOL 638ebb4323c5e5c4e8854fdecf6cc187af744f5ba4a895f4d15c6874510512575d981d799660aa016d2638c7a5e5761340890ce0ecda759d7da592f4a349efc0
24
25 diff --git a/dev-python/python-engineio/python-engineio-0.8.8.ebuild b/dev-python/python-engineio/python-engineio-0.8.8.ebuild
26 new file mode 100644
27 index 0000000..8640ed9
28 --- /dev/null
29 +++ b/dev-python/python-engineio/python-engineio-0.8.8.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +MY_PN=""
41 +DESCRIPTION="Python implementation of the Engine.IO realtime server."
42 +HOMEPAGE="https://${PN}.readthedocs.org/ https://github.com/miguelgrinberg/${PN}/ https://pypi.python.org/pypi/${PN}"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="test"
48 +
49 +RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
50 +DEPEND="${RDEPEND}
51 + dev-python/setuptools[${PYTHON_USEDEP}]"
52 +
53 +# pypi tarball does not contain tests
54 +RESTRICT="test"
55 +
56 +python_test() {
57 + esetup.py test || die
58 +}