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 CC4641382C5 for ; Mon, 11 May 2020 17:49:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4CF64E089A; Mon, 11 May 2020 17:49:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 32E6CE089A for ; Mon, 11 May 2020 17:49:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C932B34FC51 for ; Mon, 11 May 2020 17:49:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10D42250 for ; Mon, 11 May 2020 17:48:59 +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: <1589219306.1fc3db2f441318a53b0fa25be9cd8a749ae4f84f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/whichcraft/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/whichcraft/Manifest dev-python/whichcraft/whichcraft-0.4.1.ebuild X-VCS-Directories: dev-python/whichcraft/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1fc3db2f441318a53b0fa25be9cd8a749ae4f84f X-VCS-Branch: master Date: Mon, 11 May 2020 17:48:59 +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: 4579dfa8-59e9-40b0-9600-1f055cd7fc19 X-Archives-Hash: c50eb628fc346534d934842661941559 commit: 1fc3db2f441318a53b0fa25be9cd8a749ae4f84f Author: Michał Górny gentoo org> AuthorDate: Mon May 11 17:48:26 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 11 17:48:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fc3db2f dev-python/whichcraft: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/whichcraft/Manifest | 1 - dev-python/whichcraft/whichcraft-0.4.1.ebuild | 26 -------------------------- 2 files changed, 27 deletions(-) diff --git a/dev-python/whichcraft/Manifest b/dev-python/whichcraft/Manifest index 0fbab889521..03433b6e20c 100644 --- a/dev-python/whichcraft/Manifest +++ b/dev-python/whichcraft/Manifest @@ -1,2 +1 @@ -DIST whichcraft-0.4.1.tar.gz 8095 BLAKE2B 666e4919698226e1f252f96323dd1fb56350e7b63424a0022fcf67f7afb83e3ec944b3689f1e58fbc29f1decbf8ce3d87aee9a9cb3a69621b2f65f235682068b SHA512 92633be99badd0ce06cf28b23366f89f2104ef2364ec8f637230fe46b378d1398a64f4d8b367358c833a2038159debc70b0498e94d2729918b95847defd59cae DIST whichcraft-0.6.1.tar.gz 8676 BLAKE2B c08dc453b1143da9c46f63d894526784724bff4861c1862a460f557c74e64bbde72c0127f9df0f6547a5c2183fe770e3ceaf417fed88ce70691ec28605f42e75 SHA512 3a8bf524437f3ee0b5b6ee16e4516ba1c75bee738edfef03316b1ef32a58d036734d75e626f113ad434acc29ccc0cce145668867148af7aa10de1fd5f739d5f6 diff --git a/dev-python/whichcraft/whichcraft-0.4.1.ebuild b/dev-python/whichcraft/whichcraft-0.4.1.ebuild deleted file mode 100644 index 2c9619db608..00000000000 --- a/dev-python/whichcraft/whichcraft-0.4.1.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python3_6 ) - -inherit distutils-r1 - -DESCRIPTION="This package provides cross-platform cross-python shutil.which functionality" -HOMEPAGE="https://github.com/pydanny/whichcraft" -SRC_URI="https://github.com/pydanny/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64" -IUSE="test" -RESTRICT="!test? ( test )" - -DOCS=( README.rst HISTORY.rst CONTRIBUTING.rst ) - -DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )" - -python_test() { - ${PYTHON} test_whichcraft.py || die -}