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: Sun, 31 Oct 2021 22:16:11
Message-Id: 1635718559.6db3b67f68767bcfe587f37f8d91195440ba7291.sam@gentoo
1 commit: 6db3b67f68767bcfe587f37f8d91195440ba7291
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 31 22:15:53 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 31 22:15:59 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6db3b67f
7
8 app-portage/tatt: add 0.9
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-portage/tatt/Manifest | 1 +
13 app-portage/tatt/tatt-0.9.ebuild | 36 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/app-portage/tatt/Manifest b/app-portage/tatt/Manifest
17 index a1301b00ad2..d090e3ee0ed 100644
18 --- a/app-portage/tatt/Manifest
19 +++ b/app-portage/tatt/Manifest
20 @@ -1 +1,2 @@
21 DIST tatt-0.8.tar.gz 22215 BLAKE2B 6c21acb9378045679c4a03badcb7c60638c4007ba19857d7519f68d4d658cd1418e952cf15a64679c6a9b28090856a588e60e9db1abb360d0625a633491deb3d SHA512 31be6573e3d7c9a690e57d64adcbf87983d5dd226afd162c7bfa425847a84705beda530cd5b648ac85cf8cd3907d46ae638bb0ca0d903d8d1968d0ac30703703
22 +DIST tatt-0.9.tar.gz 22659 BLAKE2B c67da6d71bd46a7a1e73810f6f837cbe18b4fcfdf18da2401ab696e69d05c3ccbdeacaf152999dbf49d39c20e0e9e656e05c294a5eb7128015ee06d25bf95fcb SHA512 4f8d4f6d56ce1389caee8a67d1ae13967692fad90e1bc484ec9ffd9fa057e858c2fc4e6cefa496b33c7565b06e7f71e012a94653de4a501f3b25ec77d07cea92
23
24 diff --git a/app-portage/tatt/tatt-0.9.ebuild b/app-portage/tatt/tatt-0.9.ebuild
25 new file mode 100644
26 index 00000000000..b68190910f9
27 --- /dev/null
28 +++ b/app-portage/tatt/tatt-0.9.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{8,9} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Arch testing tool"
40 +HOMEPAGE="https://github.com/gentoo/tatt"
41 +SRC_URI="https://github.com/gentoo/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
46 +IUSE="+templates"
47 +
48 +RDEPEND="
49 + app-portage/eix
50 + app-portage/gentoolkit[${PYTHON_USEDEP}]
51 + app-portage/nattka[${PYTHON_USEDEP}]
52 + dev-python/configobj[${PYTHON_USEDEP}]
53 + dev-python/requests[${PYTHON_USEDEP}]
54 + www-client/pybugz
55 +"
56 +
57 +python_install_all() {
58 + distutils-r1_python_install_all
59 + if use templates; then
60 + insinto "/usr/share/${PN}"
61 + doins -r templates
62 + fi
63 + doman tatt.1
64 + doman tatt.5
65 +}