Gentoo Archives: gentoo-commits

From: Piotr Karbowski <slashbeast@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/ssh-import-id/
Date: Mon, 27 Feb 2023 22:31:05
Message-Id: 1677537059.e7a06624442ad25bdbb3b58f5192db021cb62900.slashbeast@gentoo
1 commit: e7a06624442ad25bdbb3b58f5192db021cb62900
2 Author: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 27 22:30:06 2023 +0000
4 Commit: Piotr Karbowski <slashbeast <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 22:30:59 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7a06624
7
8 sys-auth/ssh-import-id: 5.11-r1: py3.11 support; PEP517.
9
10 Closes: https://bugs.gentoo.org/897270
11 Signed-off-by: Piotr Karbowski <slashbeast <AT> gentoo.org>
12
13 .../ssh-import-id/ssh-import-id-5.11-r1.ebuild | 28 ++++++++++++++++++++++
14 1 file changed, 28 insertions(+)
15
16 diff --git a/sys-auth/ssh-import-id/ssh-import-id-5.11-r1.ebuild b/sys-auth/ssh-import-id/ssh-import-id-5.11-r1.ebuild
17 new file mode 100644
18 index 000000000000..5e367ecf4375
19 --- /dev/null
20 +++ b/sys-auth/ssh-import-id/ssh-import-id-5.11-r1.ebuild
21 @@ -0,0 +1,28 @@
22 +# Copyright 1999-2023 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +PYTHON_COMPAT=( python3_{9..11} )
28 +DISTUTILS_USE_PEP517=setuptools
29 +
30 +inherit distutils-r1
31 +
32 +DESCRIPTION="Utility to securely retrieve an SSH public key and install it locally"
33 +HOMEPAGE="https://launchpad.net/ssh-import-id"
34 +SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
35 +
36 +LICENSE="GPL-3"
37 +SLOT="0"
38 +KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~sparc ~x86"
39 +IUSE=""
40 +
41 +DEPEND="${PYTHON_DEPS}"
42 +RDEPEND="
43 + dev-python/distro[${PYTHON_USEDEP}]
44 +"
45 +
46 +src_install() {
47 + distutils-r1_src_install
48 + doman usr/share/man/man1/ssh-import-id.1
49 +}