Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyee/
Date: Thu, 18 Feb 2016 15:59:55
Message-Id: 1455811176.b792104f17f5623cdde1e9ec9ae8bc18d64673ed.aballier@gentoo
1 commit: b792104f17f5623cdde1e9ec9ae8bc18d64673ed
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 18 15:41:22 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 18 15:59:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b792104f
7
8 dev-python/pyee: bump to 1.0.2
9
10 Package-Manager: portage-2.2.27
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-python/pyee/Manifest | 1 +
14 dev-python/pyee/pyee-1.0.2.ebuild | 26 ++++++++++++++++++++++++++
15 2 files changed, 27 insertions(+)
16
17 diff --git a/dev-python/pyee/Manifest b/dev-python/pyee/Manifest
18 index cf3ef95..042d550 100644
19 --- a/dev-python/pyee/Manifest
20 +++ b/dev-python/pyee/Manifest
21 @@ -1 +1,2 @@
22 DIST pyee-1.0.1.tar.gz 4056 SHA256 445c9cd811a53eeee3dd5649a02960eef142cbbf8f6fa10e5d31ebc4f8c78f68 SHA512 3072bd60f1ba596a1e65796cab652eab2f84f58e77741329f5c92bab926c3a01ca169eb1c8aea9fcff4d1a547643d709aec0ad13e182832ac52e9c22c91abdc6 WHIRLPOOL bfd350052e5a31099ca252354ba32f99f90403d2c86de79b590c1ba2ad94f1e5d6cfe0080b4648ef48e96745653d07c6872a8b30b19180b8acf18108c963f912
23 +DIST pyee-1.0.2.tar.gz 4263 SHA256 16944f91eb37c0acf7a370feef2c09678220963f24f38134703911f80b33d79c SHA512 73cbb3cc7b06be9d4c92f6bc901fa55e1ca51271177672e8a1636eedc6f82fc940d7dd844d0f4a959e52185c0ef934e9fbe4760b70d62f39b94f5d1c3660ce2c WHIRLPOOL e09230d7e94533aef1b5f00f746e839cfd362eba8ce3a4f4929a323ff15fed4e85c11dc2ff9347c4b9eae7ce211d18e29f9248354394a381a53e45bb06ac0a51
24
25 diff --git a/dev-python/pyee/pyee-1.0.2.ebuild b/dev-python/pyee/pyee-1.0.2.ebuild
26 new file mode 100644
27 index 0000000..cd07ea5
28 --- /dev/null
29 +++ b/dev-python/pyee/pyee-1.0.2.ebuild
30 @@ -0,0 +1,26 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="A port of node.js's EventEmitter to python"
42 +HOMEPAGE="https://pypi.python.org/pypi/pyee https://github.com/jfhbrook/pyee"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +SLOT="0"
46 +LICENSE="MIT"
47 +KEYWORDS="~amd64"
48 +IUSE="test"
49 +
50 +RDEPEND=""
51 +DEPEND="${RDEPEND}
52 + test? ( dev-python/nose[${PYTHON_USEDEP}] )"
53 +
54 +python_test() {
55 + nosetests -v || die
56 +}