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 67680158091 for ; Sat, 18 Jun 2022 19:20:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 377F1E0AD9; Sat, 18 Jun 2022 19:19:59 +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 145EFE0A8E for ; Sat, 18 Jun 2022 19:19:59 +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 E8AC1341956 for ; Sat, 18 Jun 2022 19:19:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F3734FA for ; Sat, 18 Jun 2022 19:19:56 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1655424612.6dfb43cad123c5698a5e2971eab5284cb3182d04.andrewammerlaan@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.ebuild X-VCS-Directories: dev-python/gemcall/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 6dfb43cad123c5698a5e2971eab5284cb3182d04 X-VCS-Branch: master Date: Sat, 18 Jun 2022 19:19:56 +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: b406ef05-8273-438b-a065-f52714a9e600 X-Archives-Hash: ef20bc5f5fce40c796130a0437d1427f commit: 6dfb43cad123c5698a5e2971eab5284cb3182d04 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Jun 15 00:47:34 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri Jun 17 00:10:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6dfb43ca dev-python/gemcall: add 0.9 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/gemcall/Manifest | 1 + dev-python/gemcall/gemcall-0.9.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/dev-python/gemcall/Manifest b/dev-python/gemcall/Manifest index 72aadaa0c..7c965c6f5 100644 --- a/dev-python/gemcall/Manifest +++ b/dev-python/gemcall/Manifest @@ -1 +1,2 @@ DIST gemcall-0.8.tar.gz 4689 BLAKE2B 724a48c1221f775e1f60af05b24e7d2bb0ed3ce355508f7a45b226e519edd19213a9a660de471de62043c9163cd40ca599ef63967146a054d43dcf2712c2b347 SHA512 6b078399d5301a4f01198eb474e5f5d280c7a98dbddc8f03104c09e1b25d5ded4353601ac4b80973cf5ca8e1255527c3696fe16a0bce60a85f7fb4f3db9d57ac +DIST gemcall-0.9.tar.gz 4741 BLAKE2B c7dcd6cf7260210382b3aebf5e87cbf5619f5038ebd6193b1deb2cb1a5f2b77f74cc327d5eef88f69dc775c9877e445eb1c7916b35584419d5d1123bc384a1fc SHA512 5c835538766a7c755163c751531bd33a776cc3f364f575dca4ffff3ab4ecfefb0cf49f8ffee5ea9ceb8300a8d7a19c943bcef3916f616c4f0a6875dcd6e431c4 diff --git a/dev-python/gemcall/gemcall-0.9.ebuild b/dev-python/gemcall/gemcall-0.9.ebuild new file mode 100644 index 000000000..e05430f82 --- /dev/null +++ b/dev-python/gemcall/gemcall-0.9.ebuild @@ -0,0 +1,18 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} pypy3 ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="A library and CLI tool for making gemini requests" +HOMEPAGE="https://notabug.org/tinyrabbit/gemcall/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-python/pycryptodome[${PYTHON_USEDEP}]"