Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pluggy/
Date: Wed, 26 Oct 2016 23:05:27
Message-Id: 1477523078.5d0690c19f69c36e995d96a7399750deeac1a390.radhermit@gentoo
1 commit: 5d0690c19f69c36e995d96a7399750deeac1a390
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 26 23:04:38 2016 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 26 23:04:38 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d0690c1
7
8 dev-python/pluggy: version bump to 0.4.0
9
10 dev-python/pluggy/Manifest | 1 +
11 dev-python/pluggy/pluggy-0.4.0.ebuild | 30 ++++++++++++++++++++++++++++++
12 2 files changed, 31 insertions(+)
13
14 diff --git a/dev-python/pluggy/Manifest b/dev-python/pluggy/Manifest
15 index 76351b4..98165e6 100644
16 --- a/dev-python/pluggy/Manifest
17 +++ b/dev-python/pluggy/Manifest
18 @@ -1 +1,2 @@
19 DIST pluggy-0.3.1.tar.gz 15821 SHA256 159cc783e056c07da6552aa5aef6b1e6c0064b4f18bd49c531fd2d40aafb0ea3 SHA512 ebff28ef6d5eb78d8043fcf3860e43dd80bd800c12f6f744ae2a8757815f94034c858dbd6f4ab35dd4c609d4446aeb1783ace4f54ea6c3de6ec295ec06c7abb8 WHIRLPOOL a1b516135fa770c519994e0e1f045ac1c16e9166f169edc6b5fe79a0b68308273c8c28d6db138f7042dfe95d2e97e5bddd1d7fcfcc3b89cf5e4aee2da9d73c23
20 +DIST pluggy-0.4.0.zip 19054 SHA256 dd841b5d290b252cf645f75f3bd37ceecfa0f36394ab313e4f785fe68a4081a4 SHA512 1a6e28df05751767df1ac3dfac4c29ba0367f05ae9c8c6a7f5163bb53de36f90226ed18baedeb41bc8ca23504ca61a9b32ef907d3ec3fee7512bcdf45a56d19c WHIRLPOOL 6fe852f807f8966d5df39a118871097758885c95c7aa1e722278704c8ccfaee14e6c18abf7e2033e4801aa0934a2ff0eb64ac3a8db5a53fc86841f6a9cf688cc
21
22 diff --git a/dev-python/pluggy/pluggy-0.4.0.ebuild b/dev-python/pluggy/pluggy-0.4.0.ebuild
23 new file mode 100644
24 index 00000000..8d24c3a
25 --- /dev/null
26 +++ b/dev-python/pluggy/pluggy-0.4.0.ebuild
27 @@ -0,0 +1,30 @@
28 +# Copyright 1999-2016 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=6
33 +
34 +PYTHON_COMPAT=( python{2_7,3_{4,5}} pypy pypy3 )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="plugin and hook calling mechanisms for python"
39 +HOMEPAGE=" http://pypi.python.org/pypi/pluggy"
40 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.zip"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
45 +IUSE="test"
46 +
47 +RDEPEND=""
48 +DEPEND="${RDEPEND}
49 + app-arch/unzip
50 + dev-python/setuptools[${PYTHON_USEDEP}]
51 + test? (
52 + dev-python/pytest[${PYTHON_USEDEP}]
53 + )"
54 +
55 +python_test() {
56 + py.test -v -v || die
57 +}