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 6562F158069 for ; Fri, 10 Mar 2023 04:47:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 337FAE087A; Fri, 10 Mar 2023 04:47:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1407DE0877 for ; Fri, 10 Mar 2023 04:47:47 +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 2616E3407AF for ; Fri, 10 Mar 2023 04:47:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 465588DD for ; Fri, 10 Mar 2023 04:47:44 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1678422947.7068c29a235d0fe5053b79d5830c4b2b6df2a538.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/a2wsgi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/a2wsgi/Manifest dev-python/a2wsgi/a2wsgi-1.7.0.ebuild dev-python/a2wsgi/metadata.xml X-VCS-Directories: dev-python/a2wsgi/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7068c29a235d0fe5053b79d5830c4b2b6df2a538 X-VCS-Branch: master Date: Fri, 10 Mar 2023 04:47:44 +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: 2c97cf84-3b6f-4279-83ca-c73a42959155 X-Archives-Hash: e44d55a52bca1ea2c11dc3a6e60ed991 commit: 7068c29a235d0fe5053b79d5830c4b2b6df2a538 Author: Michał Górny gentoo org> AuthorDate: Fri Mar 10 04:35:38 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 10 04:35:47 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7068c29a dev-python/a2wsgi: New package, v1.7.0 New dependency of dev-python/uvicorn. Signed-off-by: Michał Górny gentoo.org> dev-python/a2wsgi/Manifest | 1 + dev-python/a2wsgi/a2wsgi-1.7.0.ebuild | 30 ++++++++++++++++++++++++++++++ dev-python/a2wsgi/metadata.xml | 13 +++++++++++++ 3 files changed, 44 insertions(+) diff --git a/dev-python/a2wsgi/Manifest b/dev-python/a2wsgi/Manifest new file mode 100644 index 000000000000..5895e9b820f5 --- /dev/null +++ b/dev-python/a2wsgi/Manifest @@ -0,0 +1 @@ +DIST a2wsgi-1.7.0.tar.gz 12933 BLAKE2B 20dc3eb0a836e47cab98810fbaa343a0ac2070a0aba3e80667e32a14a72c8838acd2c3f082d4ca2ef639b37086523c2ce18020f5ec3acfa08d0b593e9cf5d196 SHA512 f2971bfebceec7a0b91fcc3d5916455917a4f05e39f61cfde8027b1e7051c21e5ba389b86b223fb9fd875471994eee3f4455c6634b5b207417d3ec13c9452f4c diff --git a/dev-python/a2wsgi/a2wsgi-1.7.0.ebuild b/dev-python/a2wsgi/a2wsgi-1.7.0.ebuild new file mode 100644 index 000000000000..9766d4c1494b --- /dev/null +++ b/dev-python/a2wsgi/a2wsgi-1.7.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=pdm +PYTHON_COMPAT=( pypy3 python3_{9..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Convert WSGI app to ASGI app or ASGI app to WSGI app" +HOMEPAGE=" + https://github.com/abersheeran/a2wsgi/ + https://pypi.org/project/a2wsgi/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +BDEPEND=" + test? ( + =dev-python/asgiref-3.2.7[${PYTHON_USEDEP}] + =dev-python/httpx-0.22.0[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest diff --git a/dev-python/a2wsgi/metadata.xml b/dev-python/a2wsgi/metadata.xml new file mode 100644 index 000000000000..b5e8f0959b7a --- /dev/null +++ b/dev-python/a2wsgi/metadata.xml @@ -0,0 +1,13 @@ + + + + + python@gentoo.org + Python + + + + abersheeran/a2wsgi + a2wsgi + +