From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QVSIL-0004SK-6u for garchives@archives.gentoo.org; Sat, 11 Jun 2011 17:48:25 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1BF541C03B; Sat, 11 Jun 2011 17:48:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id CFA081C03B for ; Sat, 11 Jun 2011 17:48:16 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 564392AC013 for ; Sat, 11 Jun 2011 17:48:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 80D858003C for ; Sat, 11 Jun 2011 17:48:15 +0000 (UTC) From: "Kacper Kowalik" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kacper Kowalik" Message-ID: <2667ea16e960ea477d36720af1a14028fdc94cfc.xarthisius@gentoo> Subject: [gentoo-commits] dev/xarthisius:master commit in: dev-python/eventlet/ X-VCS-Repository: dev/xarthisius X-VCS-Files: dev-python/eventlet/Manifest dev-python/eventlet/eventlet-0.9.16.ebuild dev-python/eventlet/metadata.xml X-VCS-Directories: dev-python/eventlet/ X-VCS-Committer: xarthisius X-VCS-Committer-Name: Kacper Kowalik X-VCS-Revision: 2667ea16e960ea477d36720af1a14028fdc94cfc Date: Sat, 11 Jun 2011 17:48:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 2af3a1969c535974cd60c061e45bfce2 commit: 2667ea16e960ea477d36720af1a14028fdc94cfc Author: Kacper Kowalik (Xarthisius) gentoo org= > AuthorDate: Sat Jun 11 17:48:01 2011 +0000 Commit: Kacper Kowalik gentoo org> CommitDate: Sat Jun 11 17:48:01 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/xarthisius.git= ;a=3Dcommit;h=3D2667ea16 [dev-python/eventlet] initial import --- dev-python/eventlet/Manifest | 3 ++ dev-python/eventlet/eventlet-0.9.16.ebuild | 44 ++++++++++++++++++++++= ++++++ dev-python/eventlet/metadata.xml | 17 +++++++++++ 3 files changed, 64 insertions(+), 0 deletions(-) diff --git a/dev-python/eventlet/Manifest b/dev-python/eventlet/Manifest new file mode 100644 index 0000000..3902846 --- /dev/null +++ b/dev-python/eventlet/Manifest @@ -0,0 +1,3 @@ +DIST eventlet-0.9.16.tar.gz 317198 RMD160 591004a9bcf665813a35edfe82f5e4= 0a737de30c SHA1 7cda61fc4df79cc5491b6f447e971bcb3bc51658 SHA256 b2d380848= 09b2f2a8e3cc5815b10912870cdbe97d9a4e5c1ff231ebc8da0e430 +EBUILD eventlet-0.9.16.ebuild 844 RMD160 529e427c87ef10d4304ce0e65934c00= 7010c2a56 SHA1 4d68c07fd40df167e46878d01076ad06a91ab9fb SHA256 8e05e01bd7= b6602c534d1a11ac7dda244ca2bf56d28c75c285374bc4c898c477 +MISC metadata.xml 793 RMD160 7e2352ae30950cdd9d1f908025beb1cdb21e3705 SH= A1 646b30c8473e552cff0816f383d8faa6c8369bfb SHA256 60fb9a62e84c441a6b0560= ac6f9d992dcb66ee659d67fb403ef8c20bb3c845a6 diff --git a/dev-python/eventlet/eventlet-0.9.16.ebuild b/dev-python/even= tlet/eventlet-0.9.16.ebuild new file mode 100644 index 0000000..df190f4 --- /dev/null +++ b/dev-python/eventlet/eventlet-0.9.16.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D3 +PYTHON_DEPEND=3D"2" +SUPPORT_PYTHON_ABIS=3D"1" +RESTRICT_PYTHON_ABIS=3D"3.*" +DISTUTILS_SRC_TEST=3D"nosetests" + +inherit distutils + +DESCRIPTION=3D"Highly concurrent networking library" +HOMEPAGE=3D"http://pypi.python.org/pypi/eventlet" +SRC_URI=3D"http://pypi.python.org/packages/source/e/${PN}/${P}.tar.gz" + +LICENSE=3D"MIT" +SLOT=3D"0" +KEYWORDS=3D"~amd64" +IUSE=3D"doc examples test" + +DEPEND=3D"doc? ( dev-python/sphinx ) + test? ( dev-python/greenlet )" +RDEPEND=3D"dev-python/greenlet" + +src_compile() { + distutils_src_compile + + if use doc ; then + emake -C doc html || die + fi +} + +src_install() { + distutils_src_install + + use doc && dohtml -r doc/_build/html/* + + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples || die + fi +} + diff --git a/dev-python/eventlet/metadata.xml b/dev-python/eventlet/metad= ata.xml new file mode 100644 index 0000000..70d2bef --- /dev/null +++ b/dev-python/eventlet/metadata.xml @@ -0,0 +1,17 @@ + + + + python + + xarthisius@gentoo.org + Kacper Kowalik + + + Eventlet is a concurrent networking library for Python that allows you = to change=20 + how you run your code, not how you write it. It uses epoll or libevent = for highly=20 + scalable non-blocking I/O. Coroutines ensure that the developer uses a = blocking=20 + style of programming that is similar to threading, but provide the bene= fits of=20 + non-blocking I/O. The event dispatch is implicit, which means you can e= asily use=20 + Eventlet from the Python interpreter, or as a small part of a larger ap= plication. + +