Gentoo Archives: gentoo-commits

From: Alex Brandt <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/extras/
Date: Sat, 28 May 2016 15:26:24
Message-Id: 1464449148.cfe0bd4f1234a134c168811aca6087d49f27e851.alunduil@gentoo
1 commit: cfe0bd4f1234a134c168811aca6087d49f27e851
2 Author: Alex Brandt <alunduil <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 28 15:25:48 2016 +0000
4 Commit: Alex Brandt <alunduil <AT> gentoo <DOT> org>
5 CommitDate: Sat May 28 15:25:48 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfe0bd4f
7
8 dev-python/extras: add version 1.0.0
9
10 Package-Manager: portage-2.3.0_rc1
11
12 dev-python/extras/Manifest | 1 +
13 dev-python/extras/extras-1.0.0.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/extras/Manifest b/dev-python/extras/Manifest
17 index 5f95b34..ea162f3 100644
18 --- a/dev-python/extras/Manifest
19 +++ b/dev-python/extras/Manifest
20 @@ -1 +1,2 @@
21 DIST extras-0.0.3.tar.gz 6231 SHA256 7a60d84cb661b477c41a5ea35e931ae93860af8cd259ecc0a38a32ef1ae9ffc0 SHA512 7b08d094717a27fbb522d49c0c538e98baccef6540216479d176b55b94f3f0b97c4b70ed48f3802a1bf08a58fe9a319a113d4ca04d9dadcb85e3a99bf7490a3c WHIRLPOOL a80db53c4b536d1a98c03237cc56607ca477619d1789a4a4c4795c843212eb1bdc64f0fe2a0ae1d4a4bab351ec68e07acb9ae494e537630ba841826116121d2c
22 +DIST extras-1.0.0.tar.gz 6759 SHA256 132e36de10b9c91d5d4cc620160a476e0468a88f16c9431817a6729611a81b4e SHA512 510c796628f28db90bb96c7c9ba5fc9b2b950d2968e219efe67f3899bbe7ef68fe5de1494f8fd640f13a1ccd329e7dac9cd38aa965ab1e07c4cd287c04da50fb WHIRLPOOL e6b09b2be7225022587d26b5749e4b26282188c177c228e595843bf70c4eaa282698d9cea85afd23beef25ad97ee64dec0275957928be910e49c13e5e395f69d
23
24 diff --git a/dev-python/extras/extras-1.0.0.ebuild b/dev-python/extras/extras-1.0.0.ebuild
25 new file mode 100644
26 index 0000000..3141f3b
27 --- /dev/null
28 +++ b/dev-python/extras/extras-1.0.0.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5 pypy pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Useful extra bits for Python that should be in the standard library"
41 +HOMEPAGE="https://github.com/testing-cabal/extras/ https://pypi.python.org/pypi/extras/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
47 +IUSE="test"
48 +
49 +DEPEND="
50 + dev-python/setuptools[${PYTHON_USEDEP}]
51 + test? ( dev-python/testtools[${PYTHON_USEDEP}] )"
52 +RDEPEND=""
53 +
54 +python_test() {
55 + "${PYTHON}" ${PN}/tests/test_extras.py || die
56 +}