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: dev-python/clikit/
Date: Fri, 19 Aug 2022 10:49:04
Message-Id: 1660906133.1d352c26469e67fbae08c63d554d0d5c303f3048.mgorny@gentoo
1 commit: 1d352c26469e67fbae08c63d554d0d5c303f3048
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 19 10:47:36 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 19 10:48:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d352c26
7
8 dev-python/clikit: Modernize
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/clikit/Manifest | 1 +
13 dev-python/clikit/clikit-0.6.2-r1.ebuild | 43 ++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/dev-python/clikit/Manifest b/dev-python/clikit/Manifest
17 index cfef6b02db15..13e4aff894f5 100644
18 --- a/dev-python/clikit/Manifest
19 +++ b/dev-python/clikit/Manifest
20 @@ -1 +1,2 @@
21 +DIST clikit-0.6.2.gh.tar.gz 72115 BLAKE2B b72f245128c698375f97139cf245bdc8c017e3e2d142f6e3183a42620b23a024531e5b14f05163c6defa9ee54c52c19a64932c62484f2ec8da5c75ea1b7d3d27 SHA512 6f6e436b2161349ce03c705df594e564dbc594b03370dfd62e3b1c8f2accbbc12a1cda881ca392a096435ee243e4f772589ce6f6dfbd3af63d1656d49c3fcb04
22 DIST clikit-0.6.2.tar.gz 72115 BLAKE2B b72f245128c698375f97139cf245bdc8c017e3e2d142f6e3183a42620b23a024531e5b14f05163c6defa9ee54c52c19a64932c62484f2ec8da5c75ea1b7d3d27 SHA512 6f6e436b2161349ce03c705df594e564dbc594b03370dfd62e3b1c8f2accbbc12a1cda881ca392a096435ee243e4f772589ce6f6dfbd3af63d1656d49c3fcb04
23
24 diff --git a/dev-python/clikit/clikit-0.6.2-r1.ebuild b/dev-python/clikit/clikit-0.6.2-r1.ebuild
25 new file mode 100644
26 index 000000000000..3b1b46b4b24b
27 --- /dev/null
28 +++ b/dev-python/clikit/clikit-0.6.2-r1.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=poetry
36 +PYTHON_COMPAT=( python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Group of utilities to build beautiful and testable command line interfaces"
41 +HOMEPAGE="
42 + https://github.com/sdispater/clikit/
43 + https://pypi.org/project/clikit/
44 +"
45 +SRC_URI="
46 + https://github.com/sdispater/clikit/archive/${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
53 +
54 +RDEPEND="
55 + dev-python/pastel[${PYTHON_USEDEP}]
56 + dev-python/pylev[${PYTHON_USEDEP}]
57 +"
58 +BDEPEND="
59 + test? (
60 + dev-python/crashtest[${PYTHON_USEDEP}]
61 + dev-python/pytest-mock[${PYTHON_USEDEP}]
62 + )
63 +"
64 +
65 +distutils_enable_tests pytest
66 +
67 +python_test() {
68 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
69 + local -x PYTEST_PLUGINS=pytest_mock.plugin
70 + local -x COLUMNS=80
71 + epytest
72 +}