Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/signature_dispatch/
Date: Thu, 01 Apr 2021 16:17:56
Message-Id: 1617293864.f8f806e4e0d1918d4adb2181c6a96e413044587d.mgorny@gentoo
1 commit: f8f806e4e0d1918d4adb2181c6a96e413044587d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 1 12:53:46 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 1 16:17:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8f806e4
7
8 dev-python/signature_dispatch: New dep of dev-python/autoprop
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/signature_dispatch/Manifest | 1 +
13 dev-python/signature_dispatch/metadata.xml | 12 ++++++++++++
14 .../signature_dispatch-0.1.0.ebuild | 20 ++++++++++++++++++++
15 3 files changed, 33 insertions(+)
16
17 diff --git a/dev-python/signature_dispatch/Manifest b/dev-python/signature_dispatch/Manifest
18 new file mode 100644
19 index 00000000000..8bc55852b1e
20 --- /dev/null
21 +++ b/dev-python/signature_dispatch/Manifest
22 @@ -0,0 +1 @@
23 +DIST signature_dispatch-0.1.0.tar.gz 8715 BLAKE2B c62f5d0b0b263e50215d588e83bab4b5ca6dff82f856ad6265a0bb2dd64e2a3a8dfd0b8989ec17424828575607bd4dccc5802ef072af271eddb88c2479e6b8e7 SHA512 687a1de540a61d274e93510d2c5a93c736a52587b0215aef91364e34ad8932b880361b53fb84e68f9c2083652fa97c759705b4d61bc74caeba73a4ff37b42785
24
25 diff --git a/dev-python/signature_dispatch/metadata.xml b/dev-python/signature_dispatch/metadata.xml
26 new file mode 100644
27 index 00000000000..1121e59ad09
28 --- /dev/null
29 +++ b/dev-python/signature_dispatch/metadata.xml
30 @@ -0,0 +1,12 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="project">
35 + <email>python@g.o</email>
36 + </maintainer>
37 + <stabilize-allarches/>
38 + <upstream>
39 + <remote-id type="github">kalekundert/signature_dispatch</remote-id>
40 + <remote-id type="pypi">signature-dispatch</remote-id>
41 + </upstream>
42 +</pkgmetadata>
43
44 diff --git a/dev-python/signature_dispatch/signature_dispatch-0.1.0.ebuild b/dev-python/signature_dispatch/signature_dispatch-0.1.0.ebuild
45 new file mode 100644
46 index 00000000000..6b816f74012
47 --- /dev/null
48 +++ b/dev-python/signature_dispatch/signature_dispatch-0.1.0.ebuild
49 @@ -0,0 +1,20 @@
50 +# Copyright 2021 Gentoo Authors
51 +# Distributed under the terms of the GNU General Public License v2
52 +
53 +EAPI=7
54 +
55 +DISTUTILS_USE_SETUPTOOLS=no
56 +PYTHON_COMPAT=( python3_{7..9} )
57 +inherit distutils-r1
58 +
59 +DESCRIPTION="Execute the first function that matches the given arguments"
60 +HOMEPAGE="
61 + https://github.com/kalekundert/signature_dispatch/
62 + https://pypi.org/project/signature-dispatch/"
63 +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
64 +
65 +LICENSE="MIT"
66 +SLOT="0"
67 +KEYWORDS="~amd64 ~x86"
68 +
69 +distutils_enable_tests pytest