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 9686D138353 for ; Mon, 4 May 2020 11:26:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D54C2E0A5B; Mon, 4 May 2020 11:26:35 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 A3A70E0A5B for ; Mon, 4 May 2020 11:26:34 +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 C53CD34F564 for ; Mon, 4 May 2020 11:26:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 315C821D for ; Mon, 4 May 2020 11:26:31 +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: <1588591573.e964279f054aa18eccf9461b71600dafa499a0ca.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nose_warnings_filters/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/nose_warnings_filters/nose_warnings_filters-0.1.5-r2.ebuild X-VCS-Directories: dev-python/nose_warnings_filters/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e964279f054aa18eccf9461b71600dafa499a0ca X-VCS-Branch: master Date: Mon, 4 May 2020 11:26:31 +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: 51d0f773-62a5-4e05-bcae-66ec75c760da X-Archives-Hash: 964e4559a03803e1de3588340aad4057 commit: e964279f054aa18eccf9461b71600dafa499a0ca Author: Michał Górny gentoo org> AuthorDate: Mon May 4 11:26:13 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 4 11:26:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e964279f dev-python/nose_warnings_filters: Remove old Signed-off-by: Michał Górny gentoo.org> .../nose_warnings_filters-0.1.5-r2.ebuild | 32 ---------------------- 1 file changed, 32 deletions(-) diff --git a/dev-python/nose_warnings_filters/nose_warnings_filters-0.1.5-r2.ebuild b/dev-python/nose_warnings_filters/nose_warnings_filters-0.1.5-r2.ebuild deleted file mode 100644 index 1a3527617a3..00000000000 --- a/dev-python/nose_warnings_filters/nose_warnings_filters-0.1.5-r2.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="A python module to inject warning filters during nosetest" -HOMEPAGE="https://github.com/Carreau/nose_warnings_filters" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~ppc x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/nose[${PYTHON_USEDEP}]" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( ${RDEPEND} )" - -python_test() { - # nose_warnings_filters doesn't have a proper - # testing suite, hence we run the only testing - # script available - distutils_install_for_testing - cd "${TEST_DIR}"/lib || die - "${EPYTHON}" "${S}"/${PN}/testing/test_config.py || die "Failed running test script" -}