From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3D71B158094 for ; Tue, 28 Jun 2022 04:34:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76A86E0BE8; Tue, 28 Jun 2022 04:34:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08EC6E0BE5 for ; Tue, 28 Jun 2022 04:34:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 19E113416BB for ; Tue, 28 Jun 2022 04:34:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 990B851D for ; Tue, 28 Jun 2022 04:34:31 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1656390868.625e424800120be4cbbaf5748889e9aa290daa22.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/types-paramiko/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/types-paramiko/Manifest dev-python/types-paramiko/types-paramiko-2.11.1.ebuild X-VCS-Directories: dev-python/types-paramiko/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 625e424800120be4cbbaf5748889e9aa290daa22 X-VCS-Branch: dev Date: Tue, 28 Jun 2022 04:34:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 42cd0bb4-69a0-4e4c-a81f-cb9759b66214 X-Archives-Hash: e976eac97eeeda2e9241943462d910b4 commit: 625e424800120be4cbbaf5748889e9aa290daa22 Author: Alessandro Barbieri gmail com> AuthorDate: Tue Jun 28 04:09:29 2022 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Tue Jun 28 04:34:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=625e4248 dev-python/types-paramiko: add 2.11.1 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/types-paramiko/Manifest | 1 + .../types-paramiko/types-paramiko-2.11.1.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-python/types-paramiko/Manifest b/dev-python/types-paramiko/Manifest index c585fdf3d..da549096f 100644 --- a/dev-python/types-paramiko/Manifest +++ b/dev-python/types-paramiko/Manifest @@ -1 +1,2 @@ DIST types-paramiko-2.10.0.tar.gz 20325 BLAKE2B c918598110ada99b739579d9fd0b968b272e7cb654df2fd24f3fbfa96b9730fab27c6575220b62d2a6680c4cd5c6122594e1d710afcb5cdde2444fcfeb7a77ea SHA512 e376f8fd060f6667c610c53cf42b7dbb38ab19cbc3e8ad68f9a68f982b7498c7e06201e4ff35b662fb0d7a17b24d12a245cdc8f5731cf21cf5c0a14085853fb0 +DIST types-paramiko-2.11.1.tar.gz 20406 BLAKE2B 84ee3c357044711c4252171d018bfc4e1fbedd0cefc7dc17da8a7ea5d215d72ea5ce58d272f0d44f6c5e4be316497833ad3e40800dcd2b1be37a7a8d74742120 SHA512 54c4566342919d9b890ca87ebb07177d31108e5d6f9408ef2939499db950f1a44fab8ab553465a676099c51a61169d6c5b60b3900388af48d675721e4d746f7c diff --git a/dev-python/types-paramiko/types-paramiko-2.11.1.ebuild b/dev-python/types-paramiko/types-paramiko-2.11.1.ebuild new file mode 100644 index 000000000..8b3f48095 --- /dev/null +++ b/dev-python/types-paramiko/types-paramiko-2.11.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Typing stubs for paramiko" +HOMEPAGE=" + https://pypi.org/project/types-paramiko/ + https://github.com/python/typeshed/tree/master/stubs/paramiko +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="Apache-2.0" +KEYWORDS="~amd64" + +RDEPEND=">=dev-python/cryptography-3.4.4[${PYTHON_USEDEP}]"