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/clint/
Date: Sat, 29 Aug 2015 23:35:05
Message-Id: 1440891267.c80d82c3db117c867d2a21178a56ab74402abf39.alunduil@gentoo
1 commit: c80d82c3db117c867d2a21178a56ab74402abf39
2 Author: Alex Brandt <alunduil <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 29 23:25:52 2015 +0000
4 Commit: Alex Brandt <alunduil <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 29 23:34:27 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c80d82c3
7
8 dev-python/clint: add version 0.5.1
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-python/clint/Manifest | 1 +
13 dev-python/clint/clint-0.5.1.ebuild | 39 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-python/clint/Manifest b/dev-python/clint/Manifest
17 index c660d25..d1c99ab 100644
18 --- a/dev-python/clint/Manifest
19 +++ b/dev-python/clint/Manifest
20 @@ -1,3 +1,4 @@
21 DIST clint-0.3.1.tar.gz 147154 SHA256 faa94e073e1c8d26e67b34ef1d69d6cd92bd06e87a94cc451d587b4c8b965e1e SHA512 c7a1ccca82d1530e9501f2f854a90f4840cdb4bc2536c8eca30832f156c0898d02d9b839be6b9bf0425b1fa0f94940ef223c55cfd50c183c89b3822ca90b4aba WHIRLPOOL 2da1e651c8b9f038261de3c8908cbbc737debea6475c9268d1b1c48bef8bfe5795ba6b931bbc614431e7798823db6e1ab1e7aead3db91141a3b9752076f24b0c
22 DIST clint-0.3.7.tar.gz 149553 SHA256 efef49442bc18de26aea4f76aeef09f9ffc90d4d99f06109e6dd2390ae58d98c SHA512 7d0becec7d412077f0fff7b2bfb278b835cfa271c89ed5fe8cce5116c1be6ae393a3e7146691c55470c57b29d82e9895e41ac292801e3720fe2b1797a67438d0 WHIRLPOOL f4bdf5e5892359db24550ac052396e585753ad62fd99feb245bf2a63153e3c8b70e095532a54ca11fc8134a3517e48e1fd7eaea4edb1005c7ace6f2ee253da6a
23 DIST clint-0.4.1.tar.gz 80383 SHA256 6709b638fd13fc2395284d0d42fe857ce97fdb6f03929ceb7ece28393933b4ea SHA512 8ee4fb8d7e5416c0c1c6c23abddb255521a7d682cb855a9fe2446137e83f739a1c44c135a05803632b896fa39400c33f44e5a78442af21bebd3cf66d28fbc9fc WHIRLPOOL 0dd5c062d025bc6ebfd304b056f75294eaac5868afec2c0c2403f380c6e2043478280b2c5ce575060af3939cdcae71d4ebc62b40edb011216535b115ef29c379
24 +DIST clint-0.5.1.tar.gz 81140 SHA256 cc2ac47fca097d6235fd12e70a4984a63c4ea1992eb0cee04fe8ed13c88544cd SHA512 3ad8bfc587acb1322c7d7c3e73756a07c98f3b4215a3d4dc409b5a2067bc70dce2dd98d19250b8122b319b7bcf5e2859251de2829780345de06f93b35447c4e8 WHIRLPOOL 46d92ae120ffc6b36237d13e3b8036f7d0a8d8f5b79ae9a0f9a3cbfa7c6f4853a5d4227efaa74d451525fd07df9cc3992c7d99309e08af44ff173b174105d0e7
25
26 diff --git a/dev-python/clint/clint-0.5.1.ebuild b/dev-python/clint/clint-0.5.1.ebuild
27 new file mode 100644
28 index 0000000..68adb16
29 --- /dev/null
30 +++ b/dev-python/clint/clint-0.5.1.ebuild
31 @@ -0,0 +1,39 @@
32 +# Copyright 1999-2015 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
38 +
39 +inherit distutils-r1 vcs-snapshot
40 +
41 +DESCRIPTION="Python Command-line Application Tools"
42 +HOMEPAGE="https://github.com/kennethreitz/clint"
43 +SRC_URI="https://github.com/kennethreitz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="ISC"
46 +SLOT="0"
47 +KEYWORDS="~x86 ~amd64"
48 +IUSE="doc examples test"
49 +
50 +DEPEND="
51 + dev-python/setuptools[${PYTHON_USEDEP}]
52 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
53 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )
54 +"
55 +RDEPEND="dev-python/args[${PYTHON_USEDEP}]"
56 +
57 +python_compile_all() {
58 + use doc && emake -C docs html
59 +}
60 +
61 +python_test() {
62 + py.test || die "Tests failed under ${EPYTHON}"
63 +}
64 +
65 +python_install_all() {
66 + use doc && local HTML_DOCS=( docs/_build/html/. )
67 + use examples && local EXAMPLES=( examples/. )
68 +
69 + distutils-r1_python_install_all
70 +}