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 CB31115817D for ; Tue, 18 Jun 2024 18:45:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D332E2A3B; Tue, 18 Jun 2024 18:45:42 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 EA4DBE2A3B for ; Tue, 18 Jun 2024 18:45:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 37E53335DC2 for ; Tue, 18 Jun 2024 18:45:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 94F191D28 for ; Tue, 18 Jun 2024 18:45:39 +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: <1718736031.d605c5121bb325f85a066de67bd0521e55f6c700.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sh/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sh/Manifest dev-python/sh/sh-2.0.6.ebuild X-VCS-Directories: dev-python/sh/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d605c5121bb325f85a066de67bd0521e55f6c700 X-VCS-Branch: master Date: Tue, 18 Jun 2024 18:45:39 +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: ccdd843a-9cbe-4253-8d4a-f1afd24514e7 X-Archives-Hash: 76e8ceb23fec1cd041188fdfb2a97f2c commit: d605c5121bb325f85a066de67bd0521e55f6c700 Author: Michał Górny gentoo org> AuthorDate: Tue Jun 18 18:40:31 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jun 18 18:40:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d605c512 dev-python/sh: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/sh/Manifest | 1 - dev-python/sh/sh-2.0.6.ebuild | 26 -------------------------- 2 files changed, 27 deletions(-) diff --git a/dev-python/sh/Manifest b/dev-python/sh/Manifest index 0920adb67b01..af6bcb887e02 100644 --- a/dev-python/sh/Manifest +++ b/dev-python/sh/Manifest @@ -1,2 +1 @@ -DIST sh-2.0.6.tar.gz 345496 BLAKE2B 2352aa1c560a95e59446473658d0a95609f594417c8840c84cf1d65590aa94c2225dcd8782e75d82e92cdbf86f21dbbe03a1818a5ef1800a39444ce2918bc90b SHA512 717dae58ebd08b3a86e0d30ba2a6f3055592844d064265280b97a1d29bd7d0422c9e5500b6eb999cc1a97c1c2af04cf8ed214670bc08cb2bc45e418f69560c1d DIST sh-2.0.7.tar.gz 345477 BLAKE2B a7eb24e5cdc4543b5a44a523b101b5b103ad1fc26664b659cf84921d50112bac1a49d7ea19889d2157b2df941b67840373a9a4bc63e2cb7f94bb4cdfac85819c SHA512 331a3bdc027eeac7100ae6318a579c85fb11ce0e1922d1078c2f09b0523733b146a9bd5b9f030a2da23e3d2bb2a6970bd451d53224259967efdcf99e949f7b9f diff --git a/dev-python/sh/sh-2.0.6.ebuild b/dev-python/sh/sh-2.0.6.ebuild deleted file mode 100644 index 878923a7fd9c..000000000000 --- a/dev-python/sh/sh-2.0.6.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( pypy3 python3_{10..13} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Python subprocess interface" -HOMEPAGE=" - https://github.com/amoffat/sh/ - https://pypi.org/project/sh/ -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" - -distutils_enable_tests unittest - -python_test() { - local -x SH_TESTS_RUNNING=1 - eunittest -p "*_test.py" -}