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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DF3C015806E for ; Thu, 25 May 2023 23:13:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1690EE0805; Thu, 25 May 2023 23:13:36 +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 E3AD1E0805 for ; Thu, 25 May 2023 23:13:35 +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 B6BEE340FA1 for ; Thu, 25 May 2023 23:13:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E3D33A73 for ; Thu, 25 May 2023 23:13:32 +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: <1685056343.b55e0b4edfc03e6112d96f9358eba57a491d30f0.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/magic-wormhole-mailbox-server/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/magic-wormhole-mailbox-server/Manifest dev-python/magic-wormhole-mailbox-server/magic-wormhole-mailbox-server-0.4.1_p20230525.ebuild dev-python/magic-wormhole-mailbox-server/metadata.xml X-VCS-Directories: dev-python/magic-wormhole-mailbox-server/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: b55e0b4edfc03e6112d96f9358eba57a491d30f0 X-VCS-Branch: master Date: Thu, 25 May 2023 23:13:32 +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: 65963028-855e-4cb9-9244-f1d339cf9ee1 X-Archives-Hash: 6ff2d4694961229e10a7da10e9e5456c commit: b55e0b4edfc03e6112d96f9358eba57a491d30f0 Author: Matthias Maier gentoo org> AuthorDate: Wed May 24 22:36:49 2023 +0000 Commit: Matthias Maier gentoo org> CommitDate: Thu May 25 23:12:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b55e0b4e dev-python/magic-wormhole-mailbox-server: new package, add 0.4.1_p20230525 Revision: - move to latest upstream patches for python 3.11 support - enable testsuite - verified that the package installs cleanly for 3.10 and 3.11 Bug: https://bugs.gentoo.org/907117 Signed-off-by: Matthias Maier gentoo.org> dev-python/magic-wormhole-mailbox-server/Manifest | 1 + ...-wormhole-mailbox-server-0.4.1_p20230525.ebuild | 29 ++++++++++++++++++++++ .../magic-wormhole-mailbox-server/metadata.xml | 13 ++++++++++ 3 files changed, 43 insertions(+) diff --git a/dev-python/magic-wormhole-mailbox-server/Manifest b/dev-python/magic-wormhole-mailbox-server/Manifest new file mode 100644 index 000000000000..e8cc680fa013 --- /dev/null +++ b/dev-python/magic-wormhole-mailbox-server/Manifest @@ -0,0 +1 @@ +DIST magic-wormhole-mailbox-server-0.4.1_p20230525.gh.tar.gz 69218 BLAKE2B 10c85d41ebd3b9e4918ca6d85f7f69dfe945f3e3282fb83ab5c846d3a633b897a48ee3c91476292bf048fe56f39d3e7fc8b721a74ff56c060ef660d3b47ea122 SHA512 69ff60637092443fa458b4d5def9e99c4eb942046b6ea5023b63a85b4562a23fc0fc8e4137c1a59c0192e6820af60e75c27f616c70d75ee6e5afabcf52d81bd8 diff --git a/dev-python/magic-wormhole-mailbox-server/magic-wormhole-mailbox-server-0.4.1_p20230525.ebuild b/dev-python/magic-wormhole-mailbox-server/magic-wormhole-mailbox-server-0.4.1_p20230525.ebuild new file mode 100644 index 000000000000..f5769517ec9f --- /dev/null +++ b/dev-python/magic-wormhole-mailbox-server/magic-wormhole-mailbox-server-0.4.1_p20230525.ebuild @@ -0,0 +1,29 @@ +# 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 + +# Version 0.4.1 with additional upstream fixes for python 3.11 support +COMMIT_SHA1="39672ae95a2635ba9daaba62f483aa75bfd80a22" + +inherit distutils-r1 vcs-snapshot + +DESCRIPTION="Mailbox server for magic-wormhole" +HOMEPAGE="https://magic-wormhole.readthedocs.io/en/latest/ https://pypi.org/project/magic-wormhole-mailbox-server/" +SRC_URI="https://github.com/magic-wormhole/${PN}/archive/${COMMIT_SHA1}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +S="${WORKDIR}/${P}.gh" + +RDEPEND=" + dev-python/autobahn[${PYTHON_USEDEP}] + dev-python/twisted[ssl,${PYTHON_USEDEP}]" + +BDEPEND="test? ( dev-python/treq[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest diff --git a/dev-python/magic-wormhole-mailbox-server/metadata.xml b/dev-python/magic-wormhole-mailbox-server/metadata.xml new file mode 100644 index 000000000000..728440f94096 --- /dev/null +++ b/dev-python/magic-wormhole-mailbox-server/metadata.xml @@ -0,0 +1,13 @@ + + + + + tamiko@gentoo.org + Matthias Maier + + + + magic-wormhole-mailbox-server + magic-wormhole/magic-wormhole-mailbox-server + +