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 724AC139360 for ; Thu, 5 Aug 2021 07:29:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8968E094A; Thu, 5 Aug 2021 07:29:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 AF140E0948 for ; Thu, 5 Aug 2021 07:29:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 9B246342C2F for ; Thu, 5 Aug 2021 07:29:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B976085B for ; Thu, 5 Aug 2021 07:29:13 +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: <1628148545.2eea6c0a753a007603c7556d337ce84b2743cb63.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/signature_dispatch/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/signature_dispatch/Manifest dev-python/signature_dispatch/signature_dispatch-0.2.0.ebuild X-VCS-Directories: dev-python/signature_dispatch/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2eea6c0a753a007603c7556d337ce84b2743cb63 X-VCS-Branch: master Date: Thu, 5 Aug 2021 07:29:13 +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: ba4c4514-21b7-48b0-8d2b-93228f53b964 X-Archives-Hash: c09cc649d7c1a577b4f972c74c602497 commit: 2eea6c0a753a007603c7556d337ce84b2743cb63 Author: Michał Górny gentoo org> AuthorDate: Thu Aug 5 06:29:12 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Aug 5 07:29:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eea6c0a dev-python/signature_dispatch: Bump to 0.2.0 Signed-off-by: Michał Górny gentoo.org> dev-python/signature_dispatch/Manifest | 1 + .../signature_dispatch-0.2.0.ebuild | 23 ++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-python/signature_dispatch/Manifest b/dev-python/signature_dispatch/Manifest index 8bc55852b1e..8cb04a2dcf8 100644 --- a/dev-python/signature_dispatch/Manifest +++ b/dev-python/signature_dispatch/Manifest @@ -1 +1,2 @@ DIST signature_dispatch-0.1.0.tar.gz 8715 BLAKE2B c62f5d0b0b263e50215d588e83bab4b5ca6dff82f856ad6265a0bb2dd64e2a3a8dfd0b8989ec17424828575607bd4dccc5802ef072af271eddb88c2479e6b8e7 SHA512 687a1de540a61d274e93510d2c5a93c736a52587b0215aef91364e34ad8932b880361b53fb84e68f9c2083652fa97c759705b4d61bc74caeba73a4ff37b42785 +DIST signature_dispatch-0.2.0.tar.gz 11422 BLAKE2B 3e3297ef34bb4f7352fe867edd2c804d627d5f8e854b1551c88dcdea2f83a6e2cde9c0f088d263e405f29ccd7114717c9348dc59d60ccd00a4ebb84db800d398 SHA512 e2fedfe3260be641c319364a8f79b2d1444179c824e409fb8304352cc9f73fc2cfb8fbdab6788c14d08e716d4655cda72bc15b406596d43520f959973fc612c5 diff --git a/dev-python/signature_dispatch/signature_dispatch-0.2.0.ebuild b/dev-python/signature_dispatch/signature_dispatch-0.2.0.ebuild new file mode 100644 index 00000000000..73c2bc0b51b --- /dev/null +++ b/dev-python/signature_dispatch/signature_dispatch-0.2.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_SETUPTOOLS=no +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Execute the first function that matches the given arguments" +HOMEPAGE=" + https://github.com/kalekundert/signature_dispatch/ + https://pypi.org/project/signature-dispatch/" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests pytest + +RDEPEND=" + dev-python/typeguard[${PYTHON_USEDEP}]"