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 168D7138351 for ; Sun, 9 Feb 2020 12:46:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15AF0E085A; Sun, 9 Feb 2020 12:46:30 +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 C61EBE085A for ; Sun, 9 Feb 2020 12:46:29 +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 B8A5B34E5BF for ; Sun, 9 Feb 2020 12:46:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E535132 for ; Sun, 9 Feb 2020 12:46:25 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1581252297.d9554e138693c7a68a0f7c63443753d31bf0be43.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/line_profiler/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/line_profiler/line_profiler-9999.ebuild X-VCS-Directories: dev-python/line_profiler/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: d9554e138693c7a68a0f7c63443753d31bf0be43 X-VCS-Branch: master Date: Sun, 9 Feb 2020 12:46:25 +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: 1e3f1006-e42c-4368-89f9-9a3a7dd2ac03 X-Archives-Hash: 55394ba9c6bda90c76f100b85958763a commit: d9554e138693c7a68a0f7c63443753d31bf0be43 Author: Benda Xu gentoo org> AuthorDate: Sun Feb 9 12:44:57 2020 +0000 Commit: Benda XU gentoo org> CommitDate: Sun Feb 9 12:44:57 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9554e13 dev-python/line_profiler: remove outdated -9999. Package-Manager: Portage-2.3.85, Repoman-2.3.18 Signed-off-by: Benda Xu gentoo.org> dev-python/line_profiler/line_profiler-9999.ebuild | 28 ---------------------- 1 file changed, 28 deletions(-) diff --git a/dev-python/line_profiler/line_profiler-9999.ebuild b/dev-python/line_profiler/line_profiler-9999.ebuild deleted file mode 100644 index d39393b5901..00000000000 --- a/dev-python/line_profiler/line_profiler-9999.ebuild +++ /dev/null @@ -1,28 +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 git-r3 - -DESCRIPTION="Line-by-line profiler" -HOMEPAGE="https://github.com/rkern/line_profiler" -EGIT_REPO_URI="https://github.com/rkern/${PN}.git" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND=" - dev-python/cython[${PYTHON_USEDEP}] - test? ( dev-python/pytest[${PYTHON_USEDEP}] ) - " - -python_test() { - "${PYTHON}" -m unittest discover -v "${S}"/tests/ \ - || die "Tests failed with ${EPYTHON}" -}