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 E854A15806E for ; Wed, 24 May 2023 22:05:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF8C9E0784; Wed, 24 May 2023 22:05:46 +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 8C2B3E0784 for ; Wed, 24 May 2023 22:05:46 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6CB7F340CAA for ; Wed, 24 May 2023 22:05:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CCC1A77 for ; Wed, 24 May 2023 22:05:43 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1684965799.08bdbf8f0f1fb4e813f3c6e790478fcf54d2bcfa.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/txtorcon/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/txtorcon/Manifest dev-python/txtorcon/metadata.xml dev-python/txtorcon/txtorcon-23.5.0.ebuild X-VCS-Directories: dev-python/txtorcon/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: 08bdbf8f0f1fb4e813f3c6e790478fcf54d2bcfa X-VCS-Branch: master Date: Wed, 24 May 2023 22:05:43 +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: 69bddbc2-1c23-4118-9920-43b516081abf X-Archives-Hash: c3d6d05b1850b18ed25bf1ba17de2fde commit: 08bdbf8f0f1fb4e813f3c6e790478fcf54d2bcfa Author: Matthias Maier gentoo org> AuthorDate: Wed May 24 21:56:05 2023 +0000 Commit: Matthias Maier gentoo org> CommitDate: Wed May 24 22:03:19 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08bdbf8f dev-python/txtorcon: new package, add 23.5.0 Signed-off-by: Matthias Maier gentoo.org> dev-python/txtorcon/Manifest | 1 + dev-python/txtorcon/metadata.xml | 13 +++++++++++++ dev-python/txtorcon/txtorcon-23.5.0.ebuild | 21 +++++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/dev-python/txtorcon/Manifest b/dev-python/txtorcon/Manifest new file mode 100644 index 000000000000..021c0fbb9e57 --- /dev/null +++ b/dev-python/txtorcon/Manifest @@ -0,0 +1 @@ +DIST txtorcon-23.5.0.gh.tar.gz 394188 BLAKE2B ee63d2815a9b697aa37d27697ef6085dc91e750ba0cad854c8610eed7afcfec9b50cf5aead24f75676e2b0ee39167c50fbebc43a51911a3ebe17eb784b18d31e SHA512 33610c043084273f5dc06b797fff11bb0fccaae14229dbd07286e13e40ebc199594f6e52c64b87e4060e37bcb44bd90ccf7ff7217d923fdb33a581fb95144d56 diff --git a/dev-python/txtorcon/metadata.xml b/dev-python/txtorcon/metadata.xml new file mode 100644 index 000000000000..41f36acb77d0 --- /dev/null +++ b/dev-python/txtorcon/metadata.xml @@ -0,0 +1,13 @@ + + + + + tamiko@gentoo.org + Matthias Maier + + + + txtorcon + meejah/txtorcon + + diff --git a/dev-python/txtorcon/txtorcon-23.5.0.ebuild b/dev-python/txtorcon/txtorcon-23.5.0.ebuild new file mode 100644 index 000000000000..5222bc094733 --- /dev/null +++ b/dev-python/txtorcon/txtorcon-23.5.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..11} ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 + +DESCRIPTION="Twisted-based Tor controller client, with state-tracking abstractions" +HOMEPAGE="https://txtorcon.readthedocs.org https://pypi.org/project/txtorcon/" +SRC_URI="https://github.com/meejah/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/automat[${PYTHON_USEDEP}] + dev-python/twisted[${PYTHON_USEDEP}]"