Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/nattka/
Date: Thu, 30 Apr 2020 09:45:30
Message-Id: 1588239910.4c914af89ec08477e7b460ec780e2d01aabd2a2a.mgorny@gentoo
1 commit: 4c914af89ec08477e7b460ec780e2d01aabd2a2a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 30 07:06:13 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 30 09:45:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c914af8
7
8 app-portage/nattka: Bump to 0.2.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-portage/nattka/Manifest | 1 +
13 app-portage/nattka/nattka-0.2.3.ebuild | 38 ++++++++++++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/app-portage/nattka/Manifest b/app-portage/nattka/Manifest
17 index c736789ec57..bd653f1eff9 100644
18 --- a/app-portage/nattka/Manifest
19 +++ b/app-portage/nattka/Manifest
20 @@ -1 +1,2 @@
21 DIST nattka-0.2.2.tar.gz 85213 BLAKE2B f940287f3d781d60c1d32cd4ac913e3a290e4438ab45b786cd715a4f61e48eb066a3380c5343f1cde12cc003d16bd25ae94dfb9129f0fd414add90c8ec016c5f SHA512 c83c8138843a52487f45a5d1c78839bfb40d918c9cff0feced9a6e43cb5760a21ac0faef342ee3d9ba0c58f22ac1be51fd764770d3ab7a148da92c565b964c89
22 +DIST nattka-0.2.3.tar.gz 87275 BLAKE2B 6ad8ddd6d629326a9f71427fe1a0efae2418bc5b1df2c1e24d79acb19ce7a909b8536747f4214444fea3721e5169e476471a1cc76844f4a0620ff10582f66ccb SHA512 d9122eb002136754d3307867069032f5b3ffbde9ab1e1bafac5678e6e4527ae285a5fd2c88b8f8d0c3af7282e324710dd2627e1c893fed2bd6d086fecd6d1c05
23
24 diff --git a/app-portage/nattka/nattka-0.2.3.ebuild b/app-portage/nattka/nattka-0.2.3.ebuild
25 new file mode 100644
26 index 00000000000..b3077c8bda2
27 --- /dev/null
28 +++ b/app-portage/nattka/nattka-0.2.3.ebuild
29 @@ -0,0 +1,38 @@
30 +# Copyright 2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +DISTUTILS_USE_SETUPTOOLS=rdepend
36 +PYTHON_COMPAT=( python3_{6,7,8} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A New Arch Tester Toolkit -- open-source stable-bot replacement"
41 +HOMEPAGE="https://github.com/mgorny/nattka/"
42 +SRC_URI="https://github.com/mgorny/nattka/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="BSD-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~s390 ~sparc ~x86"
47 +
48 +RDEPEND="
49 + dev-python/lxml[${PYTHON_USEDEP}]
50 + dev-python/requests[${PYTHON_USEDEP}]
51 + dev-util/pkgcheck[${PYTHON_USEDEP}]
52 + dev-vcs/git
53 + sys-apps/pkgcore[${PYTHON_USEDEP}]"
54 +BDEPEND="
55 + test? (
56 + dev-python/freezegun[${PYTHON_USEDEP}]
57 + dev-python/vcrpy[${PYTHON_USEDEP}]
58 + )"
59 +
60 +distutils_enable_sphinx doc --no-autodoc
61 +distutils_enable_tests pytest
62 +
63 +pkg_postinst() {
64 + elog "NATTkA can optionally use:"
65 + elog " dev-python/networkx"
66 + elog "to sort 'apply' output in dependency order."
67 +}