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 66BFC158087 for ; Sun, 17 Oct 2021 08:58:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BDFFDE0920; Sun, 17 Oct 2021 08:58:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A53DEE0920 for ; Sun, 17 Oct 2021 08:58:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F07EE3433D2 for ; Sun, 17 Oct 2021 08:58:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E3DF166 for ; Sun, 17 Oct 2021 08:58:12 +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: <1634461084.ba7d0b62ac8b8a1130131689fc51dc00ea174ee6.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.1.0.ebuild X-VCS-Directories: dev-python/itypes/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ba7d0b62ac8b8a1130131689fc51dc00ea174ee6 X-VCS-Branch: master Date: Sun, 17 Oct 2021 08:58:12 +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: dcfe81b6-7ea1-4433-a460-65d542fbef68 X-Archives-Hash: 386507ceaf7b96a4e8fad9e879b768aa commit: ba7d0b62ac8b8a1130131689fc51dc00ea174ee6 Author: Michał Górny gentoo org> AuthorDate: Sun Oct 17 08:56:40 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 17 08:58:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba7d0b62 dev-python/itypes: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/itypes/Manifest | 1 - dev-python/itypes/itypes-1.1.0.ebuild | 23 ----------------------- 2 files changed, 24 deletions(-) diff --git a/dev-python/itypes/Manifest b/dev-python/itypes/Manifest index 80980a85bf1..94c22396d98 100644 --- a/dev-python/itypes/Manifest +++ b/dev-python/itypes/Manifest @@ -1,2 +1 @@ -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.1.0.ebuild b/dev-python/itypes/itypes-1.1.0.ebuild deleted file mode 100644 index 7c0e5aa2244..00000000000 --- a/dev-python/itypes/itypes-1.1.0.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..9} ) -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 -}