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: Tue, 05 May 2020 14:24:59
Message-Id: 1588688687.a819ce86fc859892733f99c72c9c76f521d6c378.mgorny@gentoo
1 commit: a819ce86fc859892733f99c72c9c76f521d6c378
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 5 14:08:47 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 5 14:24:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a819ce86
7
8 app-portage/nattka: Bump to 0.2.5
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.5.ebuild | 38 ++++++++++++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/app-portage/nattka/Manifest b/app-portage/nattka/Manifest
17 index ab9e7effcfd..f840d2452b4 100644
18 --- a/app-portage/nattka/Manifest
19 +++ b/app-portage/nattka/Manifest
20 @@ -1 +1,2 @@
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
24 diff --git a/app-portage/nattka/nattka-0.2.5.ebuild b/app-portage/nattka/nattka-0.2.5.ebuild
25 new file mode 100644
26 index 00000000000..b3077c8bda2
27 --- /dev/null
28 +++ b/app-portage/nattka/nattka-0.2.5.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 +}