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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2AEFB1382C5 for ; Fri, 28 May 2021 10:28:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84943E0A8F; Fri, 28 May 2021 10:28:40 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6EE84E0A8F for ; Fri, 28 May 2021 10:28:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 595B3340EA6 for ; Fri, 28 May 2021 10:28:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8291D79D for ; Fri, 28 May 2021 10:28:36 +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: <1622126897.cc28fd6ab4cd4b19c8c7e3a900d77c8648212f7d.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic-routing/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/sanic-routing/Manifest dev-python/sanic-routing/metadata.xml dev-python/sanic-routing/sanic-routing-0.6.2.ebuild X-VCS-Directories: dev-python/sanic-routing/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: cc28fd6ab4cd4b19c8c7e3a900d77c8648212f7d X-VCS-Branch: master Date: Fri, 28 May 2021 10:28:36 +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: a43dac72-900b-497f-84ad-608c30d7476c X-Archives-Hash: e2c8ec2e48dc66e8065f503c63690423 commit: cc28fd6ab4cd4b19c8c7e3a900d77c8648212f7d Author: Alessandro Barbieri gmail com> AuthorDate: Thu May 27 14:03:37 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Thu May 27 14:48:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cc28fd6a dev-python/sanic-routing: initial import Signed-off-by: Alessandro Barbieri gmail.com> dev-python/sanic-routing/Manifest | 1 + dev-python/sanic-routing/metadata.xml | 11 ++++++++ .../sanic-routing/sanic-routing-0.6.2.ebuild | 30 ++++++++++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/dev-python/sanic-routing/Manifest b/dev-python/sanic-routing/Manifest new file mode 100644 index 000000000..2a45ff580 --- /dev/null +++ b/dev-python/sanic-routing/Manifest @@ -0,0 +1 @@ +DIST sanic-routing-0.6.2.tar.gz 14854 BLAKE2B c268244b18531b220eacaa4aa5d6b23612e9f3a27774df65c35b12645bcc18916142c304c07e59a64c950f1f1e7c8e0c34c9c605b1478293e22708c20ba3bc36 SHA512 8bbbae9424bd4e39c8549f70263f9a4847b5f81441152e671e7b8976372b4eecabfde90428bd4eb220f4a44e39239c63f3f2bf429b30ab0f649c80549966a65f diff --git a/dev-python/sanic-routing/metadata.xml b/dev-python/sanic-routing/metadata.xml new file mode 100644 index 000000000..059ada385 --- /dev/null +++ b/dev-python/sanic-routing/metadata.xml @@ -0,0 +1,11 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + sanic-org/sanic-routing + + diff --git a/dev-python/sanic-routing/sanic-routing-0.6.2.ebuild b/dev-python/sanic-routing/sanic-routing-0.6.2.ebuild new file mode 100644 index 000000000..7306101e8 --- /dev/null +++ b/dev-python/sanic-routing/sanic-routing-0.6.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="Internal handler routing for Sanic" +HOMEPAGE=" + https://pypi.python.org/pypi/sanic-routing + https://github.com/sanic-org/sanic-routing +" +SRC_URI="https://github.com/sanic-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="" +DEPEND=" + ${RDEPEND} + test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/sanic[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest