summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2013-07-03 13:14:24 +0000
committerJustin Lecher <jlec@gentoo.org>2013-07-03 13:14:24 +0000
commit66fdcdb9c82bc65c692b930d847f29b50057538b (patch)
tree46bbd1dc9e93f83ede2bbcd7e7248ac01ecbd7db /dev-python/wsgiintercept
parentreference upstream changeset (diff)
downloadgentoo-2-66fdcdb9c82bc65c692b930d847f29b50057538b.tar.gz
gentoo-2-66fdcdb9c82bc65c692b930d847f29b50057538b.tar.bz2
gentoo-2-66fdcdb9c82bc65c692b930d847f29b50057538b.zip
dev-python/wsgiintercept: New addition written by me
(Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'dev-python/wsgiintercept')
-rw-r--r--dev-python/wsgiintercept/ChangeLog10
-rw-r--r--dev-python/wsgiintercept/Manifest4
-rw-r--r--dev-python/wsgiintercept/metadata.xml15
-rw-r--r--dev-python/wsgiintercept/wsgiintercept-0.5.1.ebuild27
4 files changed, 56 insertions, 0 deletions
diff --git a/dev-python/wsgiintercept/ChangeLog b/dev-python/wsgiintercept/ChangeLog
new file mode 100644
index 000000000000..6a54a4f7133c
--- /dev/null
+++ b/dev-python/wsgiintercept/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-python/wsgiintercept
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v 1.1 2013/07/03 13:14:24 jlec Exp $
+
+*wsgiintercept-0.5.1 (03 Jul 2013)
+
+ 03 Jul 2013; Justin Lecher <jlec@gentoo.org> +wsgiintercept-0.5.1.ebuild,
+ +metadata.xml:
+ New addition written by me
+
diff --git a/dev-python/wsgiintercept/Manifest b/dev-python/wsgiintercept/Manifest
new file mode 100644
index 000000000000..9bdf11ae88ad
--- /dev/null
+++ b/dev-python/wsgiintercept/Manifest
@@ -0,0 +1,4 @@
+DIST wsgi_intercept-0.5.1.tar.gz 40797 SHA256 0603a5735152c6da7b31225fc659745838addc15231b39226d68039b6773ba2e SHA512 d1db66e8724cc7226198a3690294b32fa2b52cfd668a380b4feaa5a97d3587721da44733560ddfe45780df31eb898330f97d65da9332d2d84359d886171b29d5 WHIRLPOOL fb4616f2b04399b802c7baf8593128fb353d223da9bc031954df0d797d08c64e0a4630ac74a7276549c572e6f13345f922ecf68ef8fdfe2dba7ff324e9dc8040
+EBUILD wsgiintercept-0.5.1.ebuild 592 SHA256 eec4f412a22778d8f0c8f85d6a3f9187d6b9d8d9e930d5623eab48460c49e733 SHA512 b241f45a941a3701e59054b82eaeb053666908d3e077a96f2b619cf26e686cd69536b35b4470731f29114dfc38114897ce3e73f38b1f9587aa1dd9c98642d33a WHIRLPOOL fdfd6d7b437a2d542d0c5cf183cf4e13cb021fa49295b025a656524b71e495a96748bf0093b8cd6b8d266e3fb0815355d9164e7d611e244361da0a35b3e8b17d
+MISC ChangeLog 284 SHA256 89be5ef018db6a64979904233392d8a941876065cd9d4118564b211dea7d6b35 SHA512 ca0b6fa9e995fcf8264e8f5e8a973754d8f9eb8a935d6b77ce040ce02270c9b97027c00bd9cdfdcbdee9ea1c3f17b98e5b48237af0571e54d8319a13a796a092 WHIRLPOOL 72f1695d76fa51c24b69976b6b1e4b151e760ee8c87f87504761feded1961e0cd429c41b7cb6d95e0211022c33aa3a314b4e5c0cdcd568ef36d2be0ab32286f1
+MISC metadata.xml 646 SHA256 4a911f867df9be3cac5f6b46247f28371951d4cf2633ee115e38df6496995e48 SHA512 3761e72ef812c690d62cd2e10798bf7dbd37f0da3d04c8a8cd669f12d8b690bcfb309e890d700de3dd424e0ceb8d99d84bedb521150c94634d6f1dbcf9de2ff4 WHIRLPOOL 72662ff78969856894fe1afdb991f7fdc2b9e8cfc1152dc3687d0f730ee5e10faa6d00e11562b0f7923d3c8f9b8a4dc931791f3820d569a68eeef9d8619c6336
diff --git a/dev-python/wsgiintercept/metadata.xml b/dev-python/wsgiintercept/metadata.xml
new file mode 100644
index 000000000000..a9b11158d319
--- /dev/null
+++ b/dev-python/wsgiintercept/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>python</herd>
+ <maintainer>
+ <email>jlec@gentoo.org</email>
+ </maintainer>
+ <longdescription>
+Testing a WSGI application normally involves starting a server at a local host
+and port, then pointing your test code to that address. Instead, this library
+lets you intercept calls to any specific host/port combination and redirect
+them into a WSGI application importable by your test program. Thus, you can
+avoid spawning multiple processes or threads to test your Web app.
+</longdescription>
+</pkgmetadata>
diff --git a/dev-python/wsgiintercept/wsgiintercept-0.5.1.ebuild b/dev-python/wsgiintercept/wsgiintercept-0.5.1.ebuild
new file mode 100644
index 000000000000..4018dc266518
--- /dev/null
+++ b/dev-python/wsgiintercept/wsgiintercept-0.5.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.5.1.ebuild,v 1.1 2013/07/03 13:14:24 jlec Exp $
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_6,2_7} )
+
+inherit distutils-r1
+
+MY_PN="wsgi_intercept"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="WSGI application in place of a real URI for testing"
+HOMEPAGE="https://pypi.python.org/pypi/wsgi_intercept https://code.google.com/p/wsgi-intercept/"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+"
+
+S="${WORKDIR}"/${MY_P}