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 7FC7D1388C1 for ; Thu, 17 Dec 2015 14:49:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 715AE21C025; Thu, 17 Dec 2015 14:49:00 +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 3C23F21C026 for ; Thu, 17 Dec 2015 14:48:59 +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 AF86934045C for ; Thu, 17 Dec 2015 14:48:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25632CE9 for ; Thu, 17 Dec 2015 14:48:54 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1450363726.fdc56ab8a28d506fc8b279bd12572dd5fd0a1362.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/httpbin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/httpbin/Manifest dev-python/httpbin/httpbin-0.4.0.ebuild dev-python/httpbin/metadata.xml X-VCS-Directories: dev-python/httpbin/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: fdc56ab8a28d506fc8b279bd12572dd5fd0a1362 X-VCS-Branch: master Date: Thu, 17 Dec 2015 14:48:54 +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: 21dcefc0-f827-46c2-a4a2-557a54c8a7ec X-Archives-Hash: 03800322cdb0264f35f51348029eddfc commit: fdc56ab8a28d506fc8b279bd12572dd5fd0a1362 Author: Justin Lecher gentoo org> AuthorDate: Thu Dec 17 14:08:14 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Dec 17 14:48:46 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdc56ab8 dev-python/httpbin: New package, ebuild written by me Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher gentoo.org> dev-python/httpbin/Manifest | 1 + dev-python/httpbin/httpbin-0.4.0.ebuild | 36 +++++++++++++++++++++++++++++++++ dev-python/httpbin/metadata.xml | 12 +++++++++++ 3 files changed, 49 insertions(+) diff --git a/dev-python/httpbin/Manifest b/dev-python/httpbin/Manifest new file mode 100644 index 0000000..32b446f --- /dev/null +++ b/dev-python/httpbin/Manifest @@ -0,0 +1 @@ +DIST httpbin-0.4.0.tar.gz 88000 SHA256 697e6ff51996699231782ec3519e936c57f34185d33dfadbe131536a6eced9b8 SHA512 ce239c7c2a7715dce340f04aab417b0c73773e9ff6b33edb81540abc63be9c861c4386d1310e9ae46dcdeeff24a6b71b7b93d9b2120cb1533e7da2c10f177830 WHIRLPOOL 11e9407ab88175212a66b4f47d9baeaa36ab281c5258f024e2375e5f7039fe013d246b2ac5f0a35da2a11a48e6fca91f9cdfee98cc36b21ad8cf89a57e8f7469 diff --git a/dev-python/httpbin/httpbin-0.4.0.ebuild b/dev-python/httpbin/httpbin-0.4.0.ebuild new file mode 100644 index 0000000..e80b3b2 --- /dev/null +++ b/dev-python/httpbin/httpbin-0.4.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="HTTP Request and Response Service" +HOMEPAGE="https://github.com/Runscope/httpbin http://pypi.python.org/pypi/httpbin" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + dev-python/decorator[${PYTHON_USEDEP}] + dev-python/flask[${PYTHON_USEDEP}] + dev-python/itsdangerous[${PYTHON_USEDEP}] + dev-python/markupsafe[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}]" +DEPEND="${REDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/werkzeug[${PYTHON_USEDEP}] )" + +# Not included +# Someone needs to file a bug upstream +RESTRICT=test + +python_test() { + ${PYTHON} test_httpbin.py || die +} diff --git a/dev-python/httpbin/metadata.xml b/dev-python/httpbin/metadata.xml new file mode 100644 index 0000000..b3fab06 --- /dev/null +++ b/dev-python/httpbin/metadata.xml @@ -0,0 +1,12 @@ + + + + python + + httpbin + + httpbin@runscope.com + Runscope + + +