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 9347F139347 for ; Thu, 8 Jul 2021 06:55:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1BD7E0F85; Thu, 8 Jul 2021 06:55:40 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 0DF64E0F85 for ; Thu, 8 Jul 2021 06:55:40 +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 27260340FD8 for ; Thu, 8 Jul 2021 06:55:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5622C7D1 for ; Thu, 8 Jul 2021 06:55:36 +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: <1625727325.db4f00a1f7fa2ed7683c796d8f295601fb3c392b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/itypes/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/itypes/Manifest dev-python/itypes/itypes-1.2.0.ebuild X-VCS-Directories: dev-python/itypes/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: db4f00a1f7fa2ed7683c796d8f295601fb3c392b X-VCS-Branch: master Date: Thu, 8 Jul 2021 06:55:36 +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: 31544ae1-8789-4b04-a417-7c210e780fb7 X-Archives-Hash: bec569490aa76f5845a01fea928fa168 commit: db4f00a1f7fa2ed7683c796d8f295601fb3c392b Author: Michał Górny gentoo org> AuthorDate: Thu Jul 8 06:41:49 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jul 8 06:55:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db4f00a1 dev-python/itypes: Bump to 1.2.0 Signed-off-by: Michał Górny gentoo.org> dev-python/itypes/Manifest | 1 + dev-python/itypes/itypes-1.2.0.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-python/itypes/Manifest b/dev-python/itypes/Manifest index 9c75194091f..80980a85bf1 100644 --- a/dev-python/itypes/Manifest +++ b/dev-python/itypes/Manifest @@ -1 +1,2 @@ DIST itypes-1.1.0.gh.tar.gz 4403 BLAKE2B 62f7d1a96154f313c43764306ab7ea235e0ed8a60180e56760588f03ffbdb948a56b7bec9c63c861b743f6aa1510b0442d41015b944ef777655e7b152f15bbcb SHA512 2f6dd5d655f1031059df8dcfd0a2f76875796a800144e887fb66cb5585949097edb6b9f5e973de2280f43cfeb25ab99d3ca428372fe239c8cd70f385304bcdd7 +DIST itypes-1.2.0.gh.tar.gz 5578 BLAKE2B c4025c2ad54203c4f3bbcd6f369fc6a86d21bd54a63c42acd68a98b6b44404340c3242e3c7a896483860eaa7f3df156fec79a71974e3cbb7b984fd83aa631eb2 SHA512 94421fa3f9ec7d18989332ca518607f09bd9d674e80bbca4a3c7324c20c3ae4e0679457e6a328e50ffe3d94c6db733f092798293133d42c1f07d959e0f837891 diff --git a/dev-python/itypes/itypes-1.2.0.ebuild b/dev-python/itypes/itypes-1.2.0.ebuild new file mode 100644 index 00000000000..56c99da9904 --- /dev/null +++ b/dev-python/itypes/itypes-1.2.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="basic immutable container types for python" +HOMEPAGE="https://github.com/PavanTatikonda/itypes/" +SRC_URI=" + https://github.com/PavanTatikonda/itypes/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +distutils_enable_tests pytest + +python_test() { + epytest tests.py +}