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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A2234158091 for ; Thu, 16 Jun 2022 11:24:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA88CE07EF; Thu, 16 Jun 2022 11:24:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E9BE9E085A for ; Thu, 16 Jun 2022 11:24:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CEE7A34208D for ; Thu, 16 Jun 2022 11:24:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55F32509 for ; Thu, 16 Jun 2022 11:24: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: <1655378644.372ac3371f7e6b56b8afb2d51c7fbc0cf3517246.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sh/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sh/sh-1.14.2.ebuild X-VCS-Directories: dev-python/sh/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 372ac3371f7e6b56b8afb2d51c7fbc0cf3517246 X-VCS-Branch: master Date: Thu, 16 Jun 2022 11:24: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: 44fffafe-fdcb-48a4-baa0-39b8709545ce X-Archives-Hash: 2ea8f22c1375e7d8ea16d1afcf88be3b commit: 372ac3371f7e6b56b8afb2d51c7fbc0cf3517246 Author: Michał Górny gentoo org> AuthorDate: Thu Jun 16 11:14:49 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jun 16 11:24:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=372ac337 dev-python/sh: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/sh/sh-1.14.2.ebuild | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/dev-python/sh/sh-1.14.2.ebuild b/dev-python/sh/sh-1.14.2.ebuild deleted file mode 100644 index 0d89eb85d313..000000000000 --- a/dev-python/sh/sh-1.14.2.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{7..10} ) - -inherit distutils-r1 - -DESCRIPTION="Python subprocess interface" -HOMEPAGE="https://github.com/amoffat/sh" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" - -PATCHES=( - "${FILESDIR}/sh-1.12.14-skip-unreliable-test.patch" - "${FILESDIR}/sh-1.14.0-skip-unreliable-test.patch" -) - -python_test() { - "${EPYTHON}" test.py || die "Tests fail with ${EPYTHON}" -}