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-misc/chkcrontab/
Date: Tue, 31 May 2022 22:12:22
Message-Id: 1654035128.a0d4f1f14c8db221934ea0f1682fa9afe04c15a3.sam@gentoo
1 commit: a0d4f1f14c8db221934ea0f1682fa9afe04c15a3
2 Author: Tomáš Mózes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Tue May 31 20:23:09 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue May 31 22:12:08 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0d4f1f1
7
8 app-misc/chkcrontab: add python3.{10,11}
9
10 Closes: https://bugs.gentoo.org/845495
11 Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/25708
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 app-misc/chkcrontab/chkcrontab-1.7-r2.ebuild | 26 ++++++++++++++++++++++++++
16 1 file changed, 26 insertions(+)
17
18 diff --git a/app-misc/chkcrontab/chkcrontab-1.7-r2.ebuild b/app-misc/chkcrontab/chkcrontab-1.7-r2.ebuild
19 new file mode 100644
20 index 000000000000..7eeb1c6d8f32
21 --- /dev/null
22 +++ b/app-misc/chkcrontab/chkcrontab-1.7-r2.ebuild
23 @@ -0,0 +1,26 @@
24 +# Copyright 1999-2022 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=8
28 +
29 +PYTHON_COMPAT=( python3_{8..11} )
30 +DISTUTILS_USE_SETUPTOOLS=no
31 +
32 +inherit distutils-r1
33 +
34 +DESCRIPTION="A tool to detect crontab errors"
35 +HOMEPAGE="https://github.com/lyda/chkcrontab"
36 +SRC_URI="https://github.com/lyda/chkcrontab/archive/v${PV}.tar.gz -> ${P}.tar.gz"
37 +
38 +LICENSE="Apache-2.0"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +IUSE="test"
42 +RESTRICT="!test? ( test )"
43 +
44 +distutils_enable_tests setup.py
45 +
46 +python_install_all() {
47 + doman doc/${PN}.1
48 + distutils-r1_python_install_all
49 +}