Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bashate/
Date: Mon, 11 Feb 2019 20:43:13
Message-Id: 1549917777.a9253961a21893cdbcd4249f2aba7741b39ceac4.prometheanfire@gentoo
1 commit: a9253961a21893cdbcd4249f2aba7741b39ceac4
2 Author: Nicolas Bock <nicolasbock <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 31 18:02:01 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 11 20:42:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9253961
7
8 dev-python/bashate: Version bump to 0.6.0
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.11
11 Signed-off-by: Nicolas Bock <nicolasbock <AT> gentoo.org>
12 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
13
14 dev-python/bashate/Manifest | 1 +
15 dev-python/bashate/bashate-0.6.0.ebuild | 34 +++++++++++++++++++++++++++++++++
16 2 files changed, 35 insertions(+)
17
18 diff --git a/dev-python/bashate/Manifest b/dev-python/bashate/Manifest
19 index e0d742a128f..17847e9b955 100644
20 --- a/dev-python/bashate/Manifest
21 +++ b/dev-python/bashate/Manifest
22 @@ -1 +1,2 @@
23 DIST bashate-0.3.1.tar.gz 16016 BLAKE2B 72bcb6ef2c8dda48b40351f37971473b9c2137f3a727a355f1742f20355aee8a3898d4aaf61e0e6538b22adbe3ebd34bb30d67d0fb6b5f3535c9b46c1544ce5d SHA512 dfa3e8f98879169cef445cc9a788b4ed051630330e2270c721e472f080899d6742cd3deb571049ba6b943ada0fc77a70f5a7e4742a54d1ca6d5f075a92a00ffb
24 +DIST bashate-0.6.0.tar.gz 30980 BLAKE2B 5b210edaa44a0652a03f30a641a072dba1482e1ca3b42c6b7140a52349ddb271f0137373a4d2f364032c22c176d6caf14be2635038df8a4e86585773d17a1f97 SHA512 bb64d8de0143bf2662497b1571ce654f4ceeb7d1dea3f625705b609ab70ed3b4bca6266c4eba7c2e7d99a1520fb9566a4a4daefa34c9c16538537b446c1da255
25
26 diff --git a/dev-python/bashate/bashate-0.6.0.ebuild b/dev-python/bashate/bashate-0.6.0.ebuild
27 new file mode 100644
28 index 00000000000..3348f8aac55
29 --- /dev/null
30 +++ b/dev-python/bashate/bashate-0.6.0.ebuild
31 @@ -0,0 +1,34 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
37 +DISTUTILS_IN_SOURCE_BUILD=TRUE
38 +
39 +# time
40 +RESTRICT="test"
41 +
42 +inherit distutils-r1
43 +
44 +DESCRIPTION="A pep8 equivalent for bash scripts"
45 +HOMEPAGE="https://pypi.org/project/bashate/"
46 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="Apache-2.0"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +IUSE="test"
52 +
53 +DEPEND="
54 + dev-python/setuptools[${PYTHON_USEDEP}]
55 + >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
56 + !~dev-python/pbr-2.1.0
57 +"
58 +RDEPEND="
59 + >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
60 + !~dev-pythn/Babel-2.4.0
61 +"
62 +
63 +python_install_all() {
64 + distutils-r1_python_install_all
65 +}