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 8B6E7158087 for ; Fri, 24 Dec 2021 18:03:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52C592BC035; Fri, 24 Dec 2021 18:03:18 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 747592BC028 for ; Fri, 24 Dec 2021 18:03:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7A164342EEF for ; Fri, 24 Dec 2021 18:03:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06EF3263 for ; Fri, 24 Dec 2021 18:03:13 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1640368961.5be2cbb6a5e892c0c23f8b278012091ace20d116.viorel_munteanu@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/keyrings-alt/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/keyrings-alt/Manifest dev-python/keyrings-alt/keyrings-alt-4.1.0.ebuild dev-python/keyrings-alt/metadata.xml X-VCS-Directories: dev-python/keyrings-alt/ X-VCS-Committer: viorel_munteanu X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 5be2cbb6a5e892c0c23f8b278012091ace20d116 X-VCS-Branch: dev Date: Fri, 24 Dec 2021 18:03:13 +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: 549b0cc4-1dec-45dc-b689-548d57332a1a X-Archives-Hash: b6283ff79ca000db2e89180bd64786f3 commit: 5be2cbb6a5e892c0c23f8b278012091ace20d116 Author: Viorel Munteanu gmail com> AuthorDate: Fri Dec 24 17:55:21 2021 +0000 Commit: Viorel Munteanu gmail com> CommitDate: Fri Dec 24 18:02:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5be2cbb6 dev-python/keyrings-alt: add new v4.1.0 dependency of net-misc/maestral Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Viorel Munteanu gmail.com> dev-python/keyrings-alt/Manifest | 1 + dev-python/keyrings-alt/keyrings-alt-4.1.0.ebuild | 31 +++++++++++++++++++++++ dev-python/keyrings-alt/metadata.xml | 12 +++++++++ 3 files changed, 44 insertions(+) diff --git a/dev-python/keyrings-alt/Manifest b/dev-python/keyrings-alt/Manifest new file mode 100644 index 000000000..931a5e32a --- /dev/null +++ b/dev-python/keyrings-alt/Manifest @@ -0,0 +1 @@ +DIST keyrings-alt-4.1.0.tar.gz 26104 BLAKE2B 51b2bfa7d67182fa47e2994f50a8a1c9a94c8eb138e4957f1f33296f4c8696c06405953f9b10a57154d1e32f606db14810612a3526d727a8a6bcd468dbb02523 SHA512 941793b72688b182002793c14e4df84c79d8864fa3033d25326af8fd8cc90c500b10b53827916240f242490f60a9fd638873cedc3b8b04455a2621c756228bf8 diff --git a/dev-python/keyrings-alt/keyrings-alt-4.1.0.ebuild b/dev-python/keyrings-alt/keyrings-alt-4.1.0.ebuild new file mode 100644 index 000000000..f3a4c6ee3 --- /dev/null +++ b/dev-python/keyrings-alt/keyrings-alt-4.1.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +MY_PN=${PN/-/.} +DESCRIPTION="Alternate keyring backend implementations for use with the keyring package" +HOMEPAGE="https://github.com/jaraco/keyrings.alt" +SRC_URI="https://github.com/jaraco/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + dev-python/keyring[${PYTHON_USEDEP}] +" +RDEPEND="${DEPEND}" +BDEPEND=" + test? ( dev-python/pytest[${PYTHON_USEDEP}] ) +" + +distutils_enable_tests pytest + +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} + +S="${WORKDIR}/${MY_PN}-${PV}" diff --git a/dev-python/keyrings-alt/metadata.xml b/dev-python/keyrings-alt/metadata.xml new file mode 100644 index 000000000..700850bce --- /dev/null +++ b/dev-python/keyrings-alt/metadata.xml @@ -0,0 +1,12 @@ + + + + + ceamac.paragon@gmail.com + Primary maintainer + + + jaraco/keyrings.alt + keyrings.alt + +