Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cookiecutter/
Date: Mon, 06 Feb 2017 17:23:47
Message-Id: 1486401777.42f9641744c84e4fb535ebc5f6a24e93bb8feec8.mrueg@gentoo
1 commit: 42f9641744c84e4fb535ebc5f6a24e93bb8feec8
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 6 17:22:57 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 6 17:22:57 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42f96417
7
8 dev-util/cookiecutter: Version bump to 1.5.1
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-util/cookiecutter/Manifest | 1 +
13 dev-util/cookiecutter/cookiecutter-1.5.1.ebuild | 43 +++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/dev-util/cookiecutter/Manifest b/dev-util/cookiecutter/Manifest
17 index b7bac0d..524379b 100644
18 --- a/dev-util/cookiecutter/Manifest
19 +++ b/dev-util/cookiecutter/Manifest
20 @@ -1,2 +1,3 @@
21 DIST cookiecutter-1.4.0.tar.gz 226136 SHA256 7697b1d64cd9b8eb5abd9e7594e318a80f1382f45d879c425944175697b29db2 SHA512 21cc9293b81c21f9256a73728310bd7898b2132bc007ef650ba94394e872aa97dfba83b93018923e773b908f8822f5f9d992e5cc078936e2f9ba032f3cc83f9d WHIRLPOOL d1b01766fa42eaa46b6fefe2b82ebe7712c83327e08704ddc938c8dc8f5fb0167e2d1cfe47373274f2ef387c4a253d9f88b46ac57804ed7557b8585da94b7590
22 DIST cookiecutter-1.5.0.tar.gz 246654 SHA256 553d00dcbdb6eed252ff15b5622ed98b2a22ffa96fc1b49717b4fbea32378526 SHA512 4b80577966e735da688e8a8c924a4692cf09b1e6c63dbadcac428dd60511bf917a9fe7cd4b00ed06b0f0636501e335dd8acc61c5df435b860ce130a5f52b6b62 WHIRLPOOL c7637e7b0dc0982c1b9189d9a2ab9717c2f6f25f574b608b5a1c40a36ff8b8a497a6488a0a58ccfb014b3a70fd4923271b47dbce8f29acc8a2a5e5c3f5e39e81
23 +DIST cookiecutter-1.5.1.tar.gz 247703 SHA256 eaf8c67c75335b899e58c608562536b4159284e8078cb59591505526aab7bbea SHA512 f40c38c0162ba7e2b5b65685509955d7949bca9497b18cbddcbf98926cd3afdc4b9cca5cf62fe1d4ee80175429df124b483c32912b883c34b13a783c227188d2 WHIRLPOOL 3a3a173eb986811fdcfd24faccfb0f1212e8095fa3f2ea35cd2abae8585cdf2046424075db8b078ae5089232aaa70369814a187ba911e863a0ba35ae3a203f95
24
25 diff --git a/dev-util/cookiecutter/cookiecutter-1.5.1.ebuild b/dev-util/cookiecutter/cookiecutter-1.5.1.ebuild
26 new file mode 100644
27 index 00000000..926ded1
28 --- /dev/null
29 +++ b/dev-util/cookiecutter/cookiecutter-1.5.1.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python{2_7,3_4} )
38 +
39 +inherit vcs-snapshot distutils-r1
40 +
41 +DESCRIPTION="Command-line utility to create projects from cookiecutters (project templates)"
42 +HOMEPAGE="https://github.com/audreyr/cookiecutter"
43 +
44 +SRC_URI="https://github.com/audreyr/cookiecutter/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="BSD"
47 +SLOT="0"
48 +KEYWORDS="~amd64"
49 +IUSE="test"
50 +
51 +RESTRICT="test" # tests currently fail here
52 +
53 +RDEPEND=">=dev-python/binaryornot-0.2.0[${PYTHON_USEDEP}]
54 + >=dev-python/future-0.15.2[${PYTHON_USEDEP}]
55 + >=dev-python/jinja-2.7[${PYTHON_USEDEP}]
56 + >=dev-python/click-5.0[${PYTHON_USEDEP}]
57 + >=dev-python/whichcraft-0.1.1[${PYTHON_USEDEP}]
58 + >=dev-python/poyo-0.4.0[${PYTHON_USEDEP}]
59 + >=dev-python/jinja2-time-0.1.0[${PYTHON_USEDEP}]
60 + dev-python/setuptools[${PYTHON_USEDEP}]"
61 +
62 +DEPEND="${RDEPEND}
63 + test? (
64 + dev-python/pytest[${PYTHON_USEDEP}]
65 + >=dev-python/pytest-mock-1.1[${PYTHON_USEDEP}]
66 + dev-python/pytest-capturelog[${PYTHON_USEDEP}]
67 + dev-python/freezegun[${PYTHON_USEDEP}] )"
68 +
69 +DOCS=( README.rst HISTORY.rst CONTRIBUTING.rst )
70 +
71 +python_test() {
72 + py.test || die
73 +}