Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/tatt/
Date: Wed, 06 Dec 2017 10:43:32
Message-Id: 1512557000.a7db567e562a06ea8c13dc0fd5ea2356eb12673a.kensington@gentoo
1 commit: a7db567e562a06ea8c13dc0fd5ea2356eb12673a
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 6 10:42:52 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 6 10:43:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7db567e
7
8 app-portage/tatt: version bump 0.5
9
10 Package-Manager: Portage-2.3.14, Repoman-2.3.6
11
12 app-portage/tatt/Manifest | 3 ++-
13 app-portage/tatt/tatt-0.5.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+), 1 deletion(-)
15
16 diff --git a/app-portage/tatt/Manifest b/app-portage/tatt/Manifest
17 index e3e24febf7a..4811702da63 100644
18 --- a/app-portage/tatt/Manifest
19 +++ b/app-portage/tatt/Manifest
20 @@ -1 +1,2 @@
21 -DIST tatt-0.4.tar.gz 23397 SHA256 53ed63685187acc55241698dac26a7cadbdf846dfc72709a9d67db65572dc2ef SHA512 57df8cdda9b6711da36e3635182fcfb64a376d7c3a76a29ea0252fc17597defe921d90bf9989f4fc199ab9848fae6fc4f53623140825f79368e90723a5562dd6 WHIRLPOOL a152e6cdee833d892eb0ff1b6c24d107b99ac4b7c92510d230fdbb6e1375825c1294a7008e1e09c496115f6116f3de48a4500dcc3a257998c8ee5bb0a29c08b0
22 +DIST tatt-0.4.tar.gz 23397 BLAKE2B dc6efaf866b059567d11c2a91929b025e74f73ae5ad81a98a632c3b2393025e2e35320ed223ae84b28a8770c713536afe73289d66f7c1396118a975867a56161 SHA512 57df8cdda9b6711da36e3635182fcfb64a376d7c3a76a29ea0252fc17597defe921d90bf9989f4fc199ab9848fae6fc4f53623140825f79368e90723a5562dd6
23 +DIST tatt-0.5.tar.gz 23249 BLAKE2B d98456bab4ec4d820bddc2ec614e02582f5b0385d806c876a5155cb09bd1468908ded3f5c879fc38f2cb4211f8415dddd640dd20b6b123c926b02387d49dced1 SHA512 0e2fa0dc12339be2ee2408a9dfa06201857bd2ef570b1c5ab46f0c4f0dc07492fc16d74c8f05cdef9232361b77843703d5f7e6752bff17a1ca2c3aa3cb1c1f29
24
25 diff --git a/app-portage/tatt/tatt-0.5.ebuild b/app-portage/tatt/tatt-0.5.ebuild
26 new file mode 100644
27 index 00000000000..45eba8259de
28 --- /dev/null
29 +++ b/app-portage/tatt/tatt-0.5.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="arch testing tool"
41 +HOMEPAGE="https://github.com/gentoo/tatt"
42 +SRC_URI="https://github.com/gentoo/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
47 +IUSE="+templates"
48 +
49 +RDEPEND="
50 + app-portage/eix
51 + app-portage/gentoolkit
52 + dev-python/configobj[${PYTHON_USEDEP}]
53 + dev-python/requests[${PYTHON_USEDEP}]
54 + www-client/pybugz
55 +"
56 +DEPEND="${RDEPEND}
57 + dev-python/setuptools[${PYTHON_USEDEP}]
58 +"
59 +
60 +python_install_all() {
61 + distutils-r1_python_install_all
62 + if use templates; then
63 + insinto "/usr/share/${PN}"
64 + doins -r templates
65 + fi
66 + doman tatt.1
67 + doman tatt.5
68 +}