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, 16 Sep 2021 06:53:12
Message-Id: 1631775184.1a13d04af2dfa1a9ec529b51d75011e1783379ca.mgorny@gentoo
1 commit: 1a13d04af2dfa1a9ec529b51d75011e1783379ca
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 16 06:42:48 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 16 06:53:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a13d04a
7
8 dev-python/signature_dispatch: Bump to 1.0.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/signature_dispatch/Manifest | 1 +
13 .../signature_dispatch-1.0.0.ebuild | 23 ++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/dev-python/signature_dispatch/Manifest b/dev-python/signature_dispatch/Manifest
17 index 8cb04a2dcf8..e586ee04ef7 100644
18 --- a/dev-python/signature_dispatch/Manifest
19 +++ b/dev-python/signature_dispatch/Manifest
20 @@ -1,2 +1,3 @@
21 DIST signature_dispatch-0.1.0.tar.gz 8715 BLAKE2B c62f5d0b0b263e50215d588e83bab4b5ca6dff82f856ad6265a0bb2dd64e2a3a8dfd0b8989ec17424828575607bd4dccc5802ef072af271eddb88c2479e6b8e7 SHA512 687a1de540a61d274e93510d2c5a93c736a52587b0215aef91364e34ad8932b880361b53fb84e68f9c2083652fa97c759705b4d61bc74caeba73a4ff37b42785
22 DIST signature_dispatch-0.2.0.tar.gz 11422 BLAKE2B 3e3297ef34bb4f7352fe867edd2c804d627d5f8e854b1551c88dcdea2f83a6e2cde9c0f088d263e405f29ccd7114717c9348dc59d60ccd00a4ebb84db800d398 SHA512 e2fedfe3260be641c319364a8f79b2d1444179c824e409fb8304352cc9f73fc2cfb8fbdab6788c14d08e716d4655cda72bc15b406596d43520f959973fc612c5
23 +DIST signature_dispatch-1.0.0.tar.gz 15102 BLAKE2B d0fe384551136d23f815129849ec70c0d1bd8616dab571122b7407578f3cc0d614fc5c44f3de5d9541bed9e9e3a0887517fff1183fd6c782bde603d774fe09f1 SHA512 c13ac92f50a8bd7a9fcd0b231f74a14539fd9c0303fdb29860a93116512a20113708c3207c4b2d8f61a48a9632e8cd21f7ea3fcb49ae3a4b1c79eb6a71df4eab
24
25 diff --git a/dev-python/signature_dispatch/signature_dispatch-1.0.0.ebuild b/dev-python/signature_dispatch/signature_dispatch-1.0.0.ebuild
26 new file mode 100644
27 index 00000000000..73c2bc0b51b
28 --- /dev/null
29 +++ b/dev-python/signature_dispatch/signature_dispatch-1.0.0.ebuild
30 @@ -0,0 +1,23 @@
31 +# Copyright 2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_SETUPTOOLS=no
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Execute the first function that matches the given arguments"
41 +HOMEPAGE="
42 + https://github.com/kalekundert/signature_dispatch/
43 + https://pypi.org/project/signature-dispatch/"
44 +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +
50 +distutils_enable_tests pytest
51 +
52 +RDEPEND="
53 + dev-python/typeguard[${PYTHON_USEDEP}]"