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