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 3A4E9138202 for ; Fri, 16 Nov 2012 23:52:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE29B21C002; Fri, 16 Nov 2012 23:52:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2FF8221C002 for ; Fri, 16 Nov 2012 23:52:35 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4134C33D90D for ; Fri, 16 Nov 2012 23:52:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A2856E5444 for ; Fri, 16 Nov 2012 23:52:31 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1353109945.6aa6315abc011d95189f413066d45ce959a3860d.sping@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: www-servers/pathod/ X-VCS-Repository: proj/betagarden X-VCS-Files: www-servers/pathod/pathod-0.3.ebuild X-VCS-Directories: www-servers/pathod/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 6aa6315abc011d95189f413066d45ce959a3860d X-VCS-Branch: master Date: Fri, 16 Nov 2012 23:52: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-Archives-Salt: 98d04ae0-1dc3-4be0-b809-b725f68bc380 X-Archives-Hash: 4b1c17e06c98c7e1ec107ae5ee788338 commit: 6aa6315abc011d95189f413066d45ce959a3860d Author: Sebastian Pipping pipping org> AuthorDate: Fri Nov 16 23:52:25 2012 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Fri Nov 16 23:52:25 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=6aa6315a www-servers/pathod: 0.3 --- www-servers/pathod/pathod-0.3.ebuild | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/www-servers/pathod/pathod-0.3.ebuild b/www-servers/pathod/pathod-0.3.ebuild new file mode 100644 index 0000000..e6bf4b3 --- /dev/null +++ b/www-servers/pathod/pathod-0.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="3" + +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" +inherit distutils + +DESCRIPTION="Pathological HTTP daemon (and client) for testing and torturing client software" +HOMEPAGE="http://pathod.net/" +SRC_URI="https://github.com/cortesi/${PN}/tarball/v${PV} -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=dev-python/netlib-0.2.2 + >=dev-python/requests-0.13 + dev-python/flask" + +S=${WORKDIR}/cortesi-pathod-b11260f + +src_install() { + distutils_src_install + + insinto /usr/share/doc/${PF}/ + doins -r examples || die +}