Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/sanic-routing/
Date: Fri, 28 May 2021 10:28:41
Message-Id: 1622126897.cc28fd6ab4cd4b19c8c7e3a900d77c8648212f7d.andrewammerlaan@gentoo
1 commit: cc28fd6ab4cd4b19c8c7e3a900d77c8648212f7d
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Thu May 27 14:03:37 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Thu May 27 14:48:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cc28fd6a
7
8 dev-python/sanic-routing: initial import
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-python/sanic-routing/Manifest | 1 +
13 dev-python/sanic-routing/metadata.xml | 11 ++++++++
14 .../sanic-routing/sanic-routing-0.6.2.ebuild | 30 ++++++++++++++++++++++
15 3 files changed, 42 insertions(+)
16
17 diff --git a/dev-python/sanic-routing/Manifest b/dev-python/sanic-routing/Manifest
18 new file mode 100644
19 index 000000000..2a45ff580
20 --- /dev/null
21 +++ b/dev-python/sanic-routing/Manifest
22 @@ -0,0 +1 @@
23 +DIST sanic-routing-0.6.2.tar.gz 14854 BLAKE2B c268244b18531b220eacaa4aa5d6b23612e9f3a27774df65c35b12645bcc18916142c304c07e59a64c950f1f1e7c8e0c34c9c605b1478293e22708c20ba3bc36 SHA512 8bbbae9424bd4e39c8549f70263f9a4847b5f81441152e671e7b8976372b4eecabfde90428bd4eb220f4a44e39239c63f3f2bf429b30ab0f649c80549966a65f
24
25 diff --git a/dev-python/sanic-routing/metadata.xml b/dev-python/sanic-routing/metadata.xml
26 new file mode 100644
27 index 000000000..059ada385
28 --- /dev/null
29 +++ b/dev-python/sanic-routing/metadata.xml
30 @@ -0,0 +1,11 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>lssndrbarbieri@×××××.com</email>
36 + <name>Alessandro Barbieri</name>
37 + </maintainer>
38 + <upstream>
39 + <remote-id type="github">sanic-org/sanic-routing</remote-id>
40 + </upstream>
41 +</pkgmetadata>
42
43 diff --git a/dev-python/sanic-routing/sanic-routing-0.6.2.ebuild b/dev-python/sanic-routing/sanic-routing-0.6.2.ebuild
44 new file mode 100644
45 index 000000000..7306101e8
46 --- /dev/null
47 +++ b/dev-python/sanic-routing/sanic-routing-0.6.2.ebuild
48 @@ -0,0 +1,30 @@
49 +# Copyright 1999-2021 Gentoo Authors
50 +# Distributed under the terms of the GNU General Public License v2
51 +
52 +EAPI="7"
53 +
54 +PYTHON_COMPAT=( python3_{7,8,9} )
55 +
56 +inherit distutils-r1
57 +
58 +DESCRIPTION="Internal handler routing for Sanic"
59 +HOMEPAGE="
60 + https://pypi.python.org/pypi/sanic-routing
61 + https://github.com/sanic-org/sanic-routing
62 +"
63 +SRC_URI="https://github.com/sanic-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
64 +
65 +LICENSE="MIT"
66 +SLOT="0"
67 +KEYWORDS="~amd64"
68 +
69 +RDEPEND=""
70 +DEPEND="
71 + ${RDEPEND}
72 + test? (
73 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
74 + dev-python/sanic[${PYTHON_USEDEP}]
75 + )
76 +"
77 +
78 +distutils_enable_tests pytest