summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Karbowski <slashbeast@gentoo.org>2022-06-14 23:10:29 +0200
committerPiotr Karbowski <slashbeast@gentoo.org>2022-06-14 23:10:29 +0200
commit77739ec12222cbcfc3f320c13e414e9b18594ee3 (patch)
treee7daa011c31b9903c3b6692c3b46cfbb15ca7f6d /sys-auth/ssh-import-id
parentnet-ftp/pure-ftpd: Bump to version 1.0.51 (diff)
downloadgentoo-77739ec12222cbcfc3f320c13e414e9b18594ee3.tar.gz
gentoo-77739ec12222cbcfc3f320c13e414e9b18594ee3.tar.bz2
gentoo-77739ec12222cbcfc3f320c13e414e9b18594ee3.zip
sys-auth/ssh-import-id: new package; 5.11 version added.
KEYWORDS matching app-misc/livecd-tools for later livecd inclusion. Signed-off-by: Piotr Karbowski <slashbeast@gentoo.org>
Diffstat (limited to 'sys-auth/ssh-import-id')
-rw-r--r--sys-auth/ssh-import-id/Manifest1
-rw-r--r--sys-auth/ssh-import-id/metadata.xml8
-rw-r--r--sys-auth/ssh-import-id/ssh-import-id-5.11.ebuild27
3 files changed, 36 insertions, 0 deletions
diff --git a/sys-auth/ssh-import-id/Manifest b/sys-auth/ssh-import-id/Manifest
new file mode 100644
index 000000000000..59eced6b8f3b
--- /dev/null
+++ b/sys-auth/ssh-import-id/Manifest
@@ -0,0 +1 @@
+DIST ssh-import-id-5.11.tar.gz 146064 BLAKE2B d869ec480d224aa906ef08b5b9acfbf9324d67bffafadcf1c0adae108ad53e76cdfbcf0d1905a947bda5df507fbd69e7ee121890bc48e452ca67c5acd92ac18c SHA512 49703b8b9c127f13bf0626fd013318b9498ec8a67a060fb7607c7a1894da3e3e3e7e995c9b68af8375237f4031d06abda20f2a9a73a1fabbe33055f2f434716b
diff --git a/sys-auth/ssh-import-id/metadata.xml b/sys-auth/ssh-import-id/metadata.xml
new file mode 100644
index 000000000000..8ac26ba5990d
--- /dev/null
+++ b/sys-auth/ssh-import-id/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>slashbeast@gentoo.org</email>
+ <name>Piotr Karbowski</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/sys-auth/ssh-import-id/ssh-import-id-5.11.ebuild b/sys-auth/ssh-import-id/ssh-import-id-5.11.ebuild
new file mode 100644
index 000000000000..4f66eb27a278
--- /dev/null
+++ b/sys-auth/ssh-import-id/ssh-import-id-5.11.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Utility to securely retrieve an SSH public key and install it locally"
+HOMEPAGE="https://launchpad.net/ssh-import-id"
+SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+DEPEND="${PYTHON_DEPS}"
+RDEPEND="
+ dev-python/distro[${PYTHON_USEDEP}]
+"
+
+src_install() {
+ distutils-r1_src_install
+ doman usr/share/man/man1/ssh-import-id.1
+}