From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 298811388C1 for ; Wed, 2 Mar 2016 09:22:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15EA5E07A3; Wed, 2 Mar 2016 09:22:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A3327E07A3 for ; Wed, 2 Mar 2016 09:22:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C811340BB0 for ; Wed, 2 Mar 2016 09:22:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C6FFCEB for ; Wed, 2 Mar 2016 09:22:42 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1456910485.4483c8106c4bc0a0c8280deaf9699015c9b88f95.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/yappi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/yappi/Manifest dev-python/yappi/yappi-0.94.ebuild X-VCS-Directories: dev-python/yappi/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: 4483c8106c4bc0a0c8280deaf9699015c9b88f95 X-VCS-Branch: master Date: Wed, 2 Mar 2016 09:22:42 +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-Archives-Salt: 62b7e0e0-268e-4e5f-82cd-54fa6c6ebd88 X-Archives-Hash: a72c700700c0c53c1b17df1f5bf5b77c commit: 4483c8106c4bc0a0c8280deaf9699015c9b88f95 Author: Patrick Lauer gentoo org> AuthorDate: Wed Mar 2 09:21:25 2016 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Wed Mar 2 09:21:25 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4483c810 dev-python/yappi: Bump Package-Manager: portage-2.2.27 dev-python/yappi/Manifest | 1 + dev-python/yappi/yappi-0.94.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/yappi/Manifest b/dev-python/yappi/Manifest index fc3a629..2c8c75d 100644 --- a/dev-python/yappi/Manifest +++ b/dev-python/yappi/Manifest @@ -1 +1,2 @@ DIST yappi-0.93.tar.gz 24367 SHA256 09c028fafb31423a46305d3dc55cf30734b66ec4607541d1b561a2ddb17d2081 SHA512 5e187c3502f44a83d2dd91809ba73d1509c3d9300a038a32ef18a128e8ad5582f888844ec9f3237606d09b447e9fa7b12add132aa723dbb1cea61d628f26331d WHIRLPOOL 4cd9a3f2a8f340a4d86d2aa0c08b56cc2531ac20887da587350b080422110331edb506626b43b902e2a5edc00a816e530920442f97f0c2fc18282d1402a4dfb5 +DIST yappi-0.94.tar.gz 25173 SHA256 15cc17dba1252ecaae29ced1e96c216165d93fd3e9ea05dff1f5e5866f16bd59 SHA512 420295f20b395229822a077848514db2138c7630a1cfc6207462e61eab3179e6fbad8b42569ae2557f0fa639fd8863bc876183554511b0dbf3d8664f8072bb28 WHIRLPOOL 2ebafad1489aa3e9d97d7c9bc6b51e9679941c783ea91ba06c82202d8500e69e7f1db2b1078c2becea2d548cbd65fb3b48774d18b1db388e1c80ee9faf311535 diff --git a/dev-python/yappi/yappi-0.94.ebuild b/dev-python/yappi/yappi-0.94.ebuild new file mode 100644 index 0000000..50f3c14 --- /dev/null +++ b/dev-python/yappi/yappi-0.94.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=(python{2_7,3_{3,4,5}}) +inherit distutils-r1 + +DESCRIPTION="Yet Another Python Profiler" +HOMEPAGE="https://bitbucket.org/sumerc/yappi/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="test" + +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +python_test() { + esetup.py test +}