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 7657A138825 for ; Sun, 9 Nov 2014 17:56:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54335E0A96; Sun, 9 Nov 2014 17:56:49 +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 F0D7BE0A96 for ; Sun, 9 Nov 2014 17:56:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A87D9340511 for ; Sun, 9 Nov 2014 17:56:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 549B19C78 for ; Sun, 9 Nov 2014 17:56:46 +0000 (UTC) From: "Alexys Jacob" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexys Jacob" Message-ID: <1415555800.7df6df7b5cc25dc028cbb9484b822b5e3839f1fc.ultrabug@gentoo> Subject: [gentoo-commits] dev/ultrabug:master commit in: dev-python/circus/ X-VCS-Repository: dev/ultrabug X-VCS-Files: dev-python/circus/Manifest dev-python/circus/circus-0.11.1.ebuild X-VCS-Directories: dev-python/circus/ X-VCS-Committer: ultrabug X-VCS-Committer-Name: Alexys Jacob X-VCS-Revision: 7df6df7b5cc25dc028cbb9484b822b5e3839f1fc X-VCS-Branch: master Date: Sun, 9 Nov 2014 17:56:46 +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: 018e2719-56bb-49fc-9231-7eb20a2bfab9 X-Archives-Hash: c4999b1c47d938248bfb4edf878f3302 commit: 7df6df7b5cc25dc028cbb9484b822b5e3839f1fc Author: Ultrabug gentoo org> AuthorDate: Sun Nov 9 17:56:40 2014 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Sun Nov 9 17:56:40 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=dev/ultrabug.git;a=commit;h=7df6df7b new dev-python/circus ebuild by @Lujeni --- dev-python/circus/Manifest | 2 ++ dev-python/circus/circus-0.11.1.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/dev-python/circus/Manifest b/dev-python/circus/Manifest new file mode 100644 index 0000000..19841fb --- /dev/null +++ b/dev-python/circus/Manifest @@ -0,0 +1,2 @@ +DIST circus-0.11.1.tar.gz 135934 SHA256 3757344aa5073ea29e6e2607b3de8ba1652502c61964316116931884293fe846 SHA512 cb799ebf7348af3bdde86447a12ff0715045fc15d762a28dde024ff80238806d881ad37f39eb35bcdeb677eaf9c8ed1a60380d92b6d686840fd0627bc95a1e41 WHIRLPOOL 6ebd19761c440487567f22a671c6f1190c8be0450c5497ff034d0453de53d405d6d69eb4a505dccd4868f4c0a9050abf7686dc7a18453371ea028186c0a0129b +EBUILD circus-0.11.1.ebuild 664 SHA256 b832b9b41429033f1af13a1b1bb37fa4f560e711fc7761d2f7ade032361fe6a2 SHA512 aab801a0496a689c1cadf51f890f3982f7e4844f8df9347f648d5c48168272623b93bf07dc50ecd010477ed073906a43e60b7a4085a44f1920d5425deae11568 WHIRLPOOL 460881f81b4bd65bac1b50ab5168c8613e1179f1bd3fe94b0fac24caf24197c8f25d5ed122e6192b2a54316ce0ed2c96b187449b22eea7f4a0799ce4a4aaf666 diff --git a/dev-python/circus/circus-0.11.1.ebuild b/dev-python/circus/circus-0.11.1.ebuild new file mode 100644 index 0000000..14b6a7d --- /dev/null +++ b/dev-python/circus/circus-0.11.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: + +EAPI="5" +PYTHON_COMPAT=( python{2_7,3_2,3_3} ) +DISTUTILS_SRC_TEST="nosetests" + +inherit distutils + +DESCRIPTION="Circus is a program that will let you run and watch multiple processes and sockets" +HOMEPAGE="http://circus.readthedocs.org" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="dev-python/psutil + dev-python/pyzmq + >=www-servers/tornado-3.0 + test? ( dev-python/mock )" +RDEPEND="${DEPEND}" + +python_test() { + nosetests -sw "${BUILD_DIR}/lib/" +}