Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pluggy/
Date: Mon, 01 Feb 2016 15:44:39
Message-Id: 1454341460.4b6c91faec35802d087130281d30a80b47671c4d.jlec@gentoo
1 commit: 4b6c91faec35802d087130281d30a80b47671c4d
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 1 14:12:07 2016 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 1 15:44:20 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b6c91fa
7
8 dev-python/pluggy: New package, ebuild written by me
9
10 Package-Manager: portage-2.2.27
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/pluggy/Manifest | 1 +
14 dev-python/pluggy/metadata.xml | 15 +++++++++++++++
15 dev-python/pluggy/pluggy-0.3.1.ebuild | 29 +++++++++++++++++++++++++++++
16 3 files changed, 45 insertions(+)
17
18 diff --git a/dev-python/pluggy/Manifest b/dev-python/pluggy/Manifest
19 new file mode 100644
20 index 0000000..76351b4
21 --- /dev/null
22 +++ b/dev-python/pluggy/Manifest
23 @@ -0,0 +1 @@
24 +DIST pluggy-0.3.1.tar.gz 15821 SHA256 159cc783e056c07da6552aa5aef6b1e6c0064b4f18bd49c531fd2d40aafb0ea3 SHA512 ebff28ef6d5eb78d8043fcf3860e43dd80bd800c12f6f744ae2a8757815f94034c858dbd6f4ab35dd4c609d4446aeb1783ace4f54ea6c3de6ec295ec06c7abb8 WHIRLPOOL a1b516135fa770c519994e0e1f045ac1c16e9166f169edc6b5fe79a0b68308273c8c28d6db138f7042dfe95d2e97e5bddd1d7fcfcc3b89cf5e4aee2da9d73c23
25
26 diff --git a/dev-python/pluggy/metadata.xml b/dev-python/pluggy/metadata.xml
27 new file mode 100644
28 index 0000000..9722362
29 --- /dev/null
30 +++ b/dev-python/pluggy/metadata.xml
31 @@ -0,0 +1,15 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="project">
36 + <email>python@g.o</email>
37 + <name>Python</name>
38 + </maintainer>
39 + <upstream>
40 + <remote-id type="pypi">pluggy</remote-id>
41 + <maintainer status="unknown">
42 + <email>holger@××××××××.eu</email>
43 + <name>Holger Krekel</name>
44 + </maintainer>
45 + </upstream>
46 +</pkgmetadata>
47
48 diff --git a/dev-python/pluggy/pluggy-0.3.1.ebuild b/dev-python/pluggy/pluggy-0.3.1.ebuild
49 new file mode 100644
50 index 0000000..cb12139
51 --- /dev/null
52 +++ b/dev-python/pluggy/pluggy-0.3.1.ebuild
53 @@ -0,0 +1,29 @@
54 +# Copyright 1999-2016 Gentoo Foundation
55 +# Distributed under the terms of the GNU General Public License v2
56 +# $Id$
57 +
58 +EAPI=6
59 +
60 +PYTHON_COMPAT=( python{2_7,3_{3,4,5}} pypy pypy3 )
61 +
62 +inherit distutils-r1
63 +
64 +DESCRIPTION="plugin and hook calling mechanisms for python"
65 +HOMEPAGE=" http://pypi.python.org/pypi/pluggy"
66 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
67 +
68 +LICENSE="MIT"
69 +SLOT="0"
70 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
71 +IUSE="test"
72 +
73 +RDEPEND=""
74 +DEPEND="${RDEPEND}
75 + dev-python/setuptools[${PYTHON_USEDEP}]
76 + test? (
77 + dev-python/pytest[${PYTHON_USEDEP}]
78 + )"
79 +
80 +python_test() {
81 + py.test -v -v || die
82 +}