mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-30 22:48:07 -07:00
dev-python/toro: initial import
Package-Manager: Portage-2.3.6, Repoman-2.3.2
This commit is contained in:
1
dev-python/toro/Manifest
Normal file
1
dev-python/toro/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST toro-1.0.1.tar.gz 57343 SHA256 c5452e477e0d20ec459612a3be9eeed93e8dc5253423b604f73692ce628c6bc4 SHA512 a8a498868ff32dbd8ba9a0adf62b1fa2e9dea4f34be4e2701c08c7b58ef28b8daf4eab93916855a711a557049e587e886d6ba362487c151c5db34f6135f4f3e5 WHIRLPOOL a31ab1a0b33281cc7e248e297e77825a2015f57727b8d58912fabb17996e3e5e9a737de5748966abaf3db102a37e89fad2be20ca7afdc94773288f8382940d35
|
||||
11
dev-python/toro/files/toro-1.0.1-no-test-install.patch
Normal file
11
dev-python/toro/files/toro-1.0.1-no-test-install.patch
Normal file
@@ -0,0 +1,11 @@
|
||||
--- a/setup.py.orig 2017-06-27 18:38:37.256325950 +0000
|
||||
+++ b/setup.py 2017-06-27 18:38:48.896243950 +0000
|
||||
@@ -45,8 +45,6 @@
|
||||
kwargs['use_2to3'] = True
|
||||
|
||||
packages = ['toro']
|
||||
-if "test" in sys.argv:
|
||||
- packages.append('test')
|
||||
|
||||
setup(name='toro',
|
||||
version='1.0.1',
|
||||
15
dev-python/toro/metadata.xml
Normal file
15
dev-python/toro/metadata.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>python@gentoo.org</email>
|
||||
<name>Python</name>
|
||||
</maintainer>
|
||||
<longdescription>
|
||||
A set of locking and synchronizing primitives analogous to those in Python’s
|
||||
threading module or Gevent’s coros, for use with Tornado’s gen.engine.
|
||||
</longdescription>
|
||||
<upstream>
|
||||
<remote-id type="pypi">toro</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
38
dev-python/toro/toro-1.0.1.ebuild
Normal file
38
dev-python/toro/toro-1.0.1.ebuild
Normal file
@@ -0,0 +1,38 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Synchronization primitives for Tornado coroutines"
|
||||
HOMEPAGE="https://github.com/ajdavis/toro/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
|
||||
IUSE="examples test"
|
||||
|
||||
RDEPEND="
|
||||
virtual/python-futures[${PYTHON_USEDEP}]
|
||||
www-servers/tornado[${PYTHON_USEDEP}]
|
||||
"
|
||||
DEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? ( dev-python/pytest[${PYTHON_USEDEP}] )
|
||||
"
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-no-test-install.patch
|
||||
)
|
||||
python_test() {
|
||||
esetup.py test
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
use examples && dodoc -r examples
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
Reference in New Issue
Block a user