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/attrs/
Date: Fri, 19 Feb 2016 09:45:33
Message-Id: 1455875123.656bc7085cffe90b6244d21f1366248333fcdb75.jlec@gentoo
1 commit: 656bc7085cffe90b6244d21f1366248333fcdb75
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 19 09:37:24 2016 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 19 09:45:23 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=656bc708
7
8 dev-python/attrs: New package, ebuild written by mee
9
10 Package-Manager: portage-2.2.27
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/attrs/Manifest | 1 +
14 dev-python/attrs/attrs-15.2.0.ebuild | 32 ++++++++++++++++++++++++++++++++
15 dev-python/attrs/metadata.xml | 15 +++++++++++++++
16 3 files changed, 48 insertions(+)
17
18 diff --git a/dev-python/attrs/Manifest b/dev-python/attrs/Manifest
19 new file mode 100644
20 index 0000000..15ff29a
21 --- /dev/null
22 +++ b/dev-python/attrs/Manifest
23 @@ -0,0 +1 @@
24 +DIST attrs-15.2.0.tar.gz 36766 SHA256 9f895d2ecefa0be054e29375769f1d0ee88e93ce820088cf5c49390529bf7ee7 SHA512 f34f70acbd01dc94c6f994ce7c764e169e26f5d71454522f4f88859b67309556e88e20504e2a6a63590e4ad8e55f04ba7cc9a90c024364c1bf932bfadd5a4491 WHIRLPOOL b2eb25ff59faae2d71965f9a8292372be6a02db42333bb8b0d04b9a6eae2924b2f363e4b486db8864ad0a9031968ada8edb3e1f3b8bbf8c2ca5be2c2b0972834
25
26 diff --git a/dev-python/attrs/attrs-15.2.0.ebuild b/dev-python/attrs/attrs-15.2.0.ebuild
27 new file mode 100644
28 index 0000000..30d0ade
29 --- /dev/null
30 +++ b/dev-python/attrs/attrs-15.2.0.ebuild
31 @@ -0,0 +1,32 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +
38 +PYTHON_COMPAT=( python{2_7,3_{3,4,5}} pypy )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Attributes without boilerplate"
43 +HOMEPAGE="
44 + https://github.com/hynek/attrs
45 + https://attrs.readthedocs.org/
46 + http://pypi.python.org/pypi/attrs"
47 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
48 +
49 +LICENSE="MIT"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
52 +IUSE="test"
53 +
54 +RDEPEND="dev-python/zope-interface[${PYTHON_USEDEP}]"
55 +DEPEND="${RDEPEND}
56 + dev-python/setuptools[${PYTHON_USEDEP}]
57 + test? (
58 + dev-python/pytest[${PYTHON_USEDEP}]
59 + )"
60 +
61 +python_test() {
62 + py.test -v -v || die
63 +}
64
65 diff --git a/dev-python/attrs/metadata.xml b/dev-python/attrs/metadata.xml
66 new file mode 100644
67 index 0000000..bb6f59e
68 --- /dev/null
69 +++ b/dev-python/attrs/metadata.xml
70 @@ -0,0 +1,15 @@
71 +<?xml version="1.0" encoding="UTF-8"?>
72 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
73 +<pkgmetadata>
74 + <maintainer type="project">
75 + <email>python@g.o</email>
76 + <name>Python</name>
77 + </maintainer>
78 + <upstream>
79 + <remote-id type="pypi">attrs</remote-id>
80 + <maintainer status="unknown">
81 + <email>hs@××.cx</email>
82 + <name>Hynek Schlawack</name>
83 + </maintainer>
84 + </upstream>
85 +</pkgmetadata>