Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/tatt/
Date: Wed, 02 Dec 2020 22:39:16
Message-Id: 1606948737.76f5d26eaf5c5abc424056255b72cd13d335b29c.sam@gentoo
1 commit: 76f5d26eaf5c5abc424056255b72cd13d335b29c
2 Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
3 AuthorDate: Wed Dec 2 17:16:06 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 2 22:38:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76f5d26e
7
8 app-portage/tatt: version bump 0.8
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 app-portage/tatt/Manifest | 1 +
15 app-portage/tatt/tatt-0.8.ebuild | 36 ++++++++++++++++++++++++++++++++++++
16 2 files changed, 37 insertions(+)
17
18 diff --git a/app-portage/tatt/Manifest b/app-portage/tatt/Manifest
19 index c236134700c..de293be8cce 100644
20 --- a/app-portage/tatt/Manifest
21 +++ b/app-portage/tatt/Manifest
22 @@ -1 +1,2 @@
23 DIST tatt-0.7.tar.gz 21802 BLAKE2B a0195f253e2777a8756fd7d1f83804bf3a4ca90fdeb07b2f8dc28dcb6f1d1f3c47fd948e0d001103f7972dc8cb8ee45a237dd24b3dc149392aa9841fe3d6532a SHA512 1f2a144512801d50585d40074553049ebd08bc5f084a0623b89d901acb9448657e7f42f2c8da5f613e0b2ff5c3fe59fbada1ad911c9693846923e256a2e97ecd
24 +DIST tatt-0.8.tar.gz 22215 BLAKE2B 6c21acb9378045679c4a03badcb7c60638c4007ba19857d7519f68d4d658cd1418e952cf15a64679c6a9b28090856a588e60e9db1abb360d0625a633491deb3d SHA512 31be6573e3d7c9a690e57d64adcbf87983d5dd226afd162c7bfa425847a84705beda530cd5b648ac85cf8cd3907d46ae638bb0ca0d903d8d1968d0ac30703703
25
26 diff --git a/app-portage/tatt/tatt-0.8.ebuild b/app-portage/tatt/tatt-0.8.ebuild
27 new file mode 100644
28 index 00000000000..4966a0e29da
29 --- /dev/null
30 +++ b/app-portage/tatt/tatt-0.8.ebuild
31 @@ -0,0 +1,36 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{6,7,8,9} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Arch testing tool"
42 +HOMEPAGE="https://github.com/gentoo/tatt"
43 +SRC_URI="https://github.com/gentoo/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-2"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
48 +IUSE="+templates"
49 +
50 +RDEPEND="
51 + app-portage/eix
52 + app-portage/gentoolkit[${PYTHON_USEDEP}]
53 + app-portage/nattka[${PYTHON_USEDEP}]
54 + dev-python/configobj[${PYTHON_USEDEP}]
55 + dev-python/requests[${PYTHON_USEDEP}]
56 + www-client/pybugz
57 +"
58 +
59 +python_install_all() {
60 + distutils-r1_python_install_all
61 + if use templates; then
62 + insinto "/usr/share/${PN}"
63 + doins -r templates
64 + fi
65 + doman tatt.1
66 + doman tatt.5
67 +}