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 775FF1382C5 for ; Wed, 14 Apr 2021 07:19:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE37AE0B9F; Wed, 14 Apr 2021 07:19:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 B8812E0B9F for ; Wed, 14 Apr 2021 07:19:13 +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 B824A340D78 for ; Wed, 14 Apr 2021 07:19:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 086A96EB for ; Wed, 14 Apr 2021 07:19:10 +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: <1618384739.1d0fc656c85d7f0bfcceea27527e27ee66dcf900.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/timeout-decorator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/timeout-decorator/Manifest dev-python/timeout-decorator/metadata.xml dev-python/timeout-decorator/timeout-decorator-0.5.0.ebuild X-VCS-Directories: dev-python/timeout-decorator/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1d0fc656c85d7f0bfcceea27527e27ee66dcf900 X-VCS-Branch: master Date: Wed, 14 Apr 2021 07:19:10 +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: 9b52280c-72f8-4fc0-9b1b-f3f0c0e55a54 X-Archives-Hash: 699bd92ebc7a85fc25f19625f6c41953 commit: 1d0fc656c85d7f0bfcceea27527e27ee66dcf900 Author: Michał Górny gentoo org> AuthorDate: Wed Apr 14 07:08:37 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Apr 14 07:18:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d0fc656 dev-python/timeout-decorator: New dep of dev-python/requests-cache Signed-off-by: Michał Górny gentoo.org> dev-python/timeout-decorator/Manifest | 1 + dev-python/timeout-decorator/metadata.xml | 12 +++++++++++ .../timeout-decorator-0.5.0.ebuild | 25 ++++++++++++++++++++++ 3 files changed, 38 insertions(+) diff --git a/dev-python/timeout-decorator/Manifest b/dev-python/timeout-decorator/Manifest new file mode 100644 index 00000000000..0433da47fd4 --- /dev/null +++ b/dev-python/timeout-decorator/Manifest @@ -0,0 +1 @@ +DIST timeout-decorator-9fbc3ef5b6f8f8cba2eb7ba795813d6ec543e265.tar.gz 6178 BLAKE2B dc89ba8c4fb861d3e69322b531a944ce6587800ea1f6d871fd5bd95e69ce4fca74c403cc430adefeda08675972a11e872e2296e14b7d7819c78a46fa08db5fa9 SHA512 2e691d40fcbe55a3d6be81f9744c2a06c436b61a17d701ad0e9df7003e7cf41b6e4876b48d4bd4a5b429ae2139e8f6ef8ae05092b599d80b3b5aa05716bb124e diff --git a/dev-python/timeout-decorator/metadata.xml b/dev-python/timeout-decorator/metadata.xml new file mode 100644 index 00000000000..cd4c8cbfb2e --- /dev/null +++ b/dev-python/timeout-decorator/metadata.xml @@ -0,0 +1,12 @@ + + + + + python@gentoo.org + + + + pnpnpn/timeout-decorator + timeout-decorator + + diff --git a/dev-python/timeout-decorator/timeout-decorator-0.5.0.ebuild b/dev-python/timeout-decorator/timeout-decorator-0.5.0.ebuild new file mode 100644 index 00000000000..7b4bfb97067 --- /dev/null +++ b/dev-python/timeout-decorator/timeout-decorator-0.5.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +inherit distutils-r1 + +EGIT_COMMIT=9fbc3ef5b6f8f8cba2eb7ba795813d6ec543e265 +MY_P=${PN}-${EGIT_COMMIT} + +DESCRIPTION="Timeout decorator" +HOMEPAGE=" + https://pypi.org/project/timeout-decorator/ + https://github.com/pnpnpn/timeout-decorator/" +SRC_URI=" + https://github.com/pnpnpn/timeout-decorator/archive/${EGIT_COMMIT}.tar.gz + -> ${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests pytest