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 389FB15803E for ; Sun, 31 Dec 2023 15:28:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97F102BC058; Sun, 31 Dec 2023 15:28:50 +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 7C72D2BC058 for ; Sun, 31 Dec 2023 15:28:50 +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 96C5833E02F for ; Sun, 31 Dec 2023 15:28:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C653214AA for ; Sun, 31 Dec 2023 15:28:46 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1703945551.e0dd5a3978b6d302a5a0b9a9149cd641f35437b7.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/gemcall/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/gemcall/Manifest dev-python/gemcall/gemcall-0.9.2.ebuild X-VCS-Directories: dev-python/gemcall/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: e0dd5a3978b6d302a5a0b9a9149cd641f35437b7 X-VCS-Branch: master Date: Sun, 31 Dec 2023 15:28:46 +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: e7714e31-af90-40d2-8b85-43309ea6bb6a X-Archives-Hash: ca33dbc60d476bc977d6d89484c539c2 commit: e0dd5a3978b6d302a5a0b9a9149cd641f35437b7 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sat Dec 30 14:12:31 2023 +0000 Commit: David Roman gmail com> CommitDate: Sat Dec 30 14:12:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e0dd5a39 dev-python/gemcall: add 0.9.2 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/gemcall/Manifest | 1 + dev-python/gemcall/gemcall-0.9.2.ebuild | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/dev-python/gemcall/Manifest b/dev-python/gemcall/Manifest index 0fc276f7d2..2b4e45f43f 100644 --- a/dev-python/gemcall/Manifest +++ b/dev-python/gemcall/Manifest @@ -1 +1,2 @@ DIST gemcall-0.9.1.tar.gz 4758 BLAKE2B 7ad4bb54fa4cc62f365cd4fd4b5b0fbe3c3b500a9833bc765fc5813bee3e50442573ac28a22dc68d978061826868de589bc7601625c4f7ddd6dcde1e1b50b14f SHA512 e418a77e6896361b6f632e121d544ed5e7ce8ccd93c18dab51d7a2e6771f34031729c829d04193ecc1bafa70b7bb0de5a3a2d2e0856177be3fbb6b7c6c69022e +DIST gemcall-0.9.2.tar.gz 4778 BLAKE2B e846cac6c6fe4957e2222d7cfbdd07a65588b02e988f09654e12f56f7f9f93d54cfff237ac4c29d77aa3ebc86122fbd202eb4e18fd5cdaa3f3bdc2b099cca6e3 SHA512 9c65a97557f4f536c7146ea19f8f826bfe8e08986f9adf1add6026ae4f1a85d8845efc35eccdb84015a46426c5906ee2e9f76bd18432f5d0e17fc491b1585ed0 diff --git a/dev-python/gemcall/gemcall-0.9.2.ebuild b/dev-python/gemcall/gemcall-0.9.2.ebuild new file mode 100644 index 0000000000..7d17c0cea8 --- /dev/null +++ b/dev-python/gemcall/gemcall-0.9.2.ebuild @@ -0,0 +1,17 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} pypy3 ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 pypi + +DESCRIPTION="A library and CLI tool for making gemini requests" +HOMEPAGE="https://notabug.org/tinyrabbit/gemcall/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-python/pycryptodome[${PYTHON_USEDEP}]"