diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-python/futures | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-python/futures')
-rw-r--r-- | dev-python/futures/Manifest | 3 | ||||
-rw-r--r-- | dev-python/futures/futures-2.2.0.ebuild | 39 | ||||
-rw-r--r-- | dev-python/futures/futures-3.0.2.ebuild | 39 | ||||
-rw-r--r-- | dev-python/futures/futures-3.0.3.ebuild | 39 | ||||
-rw-r--r-- | dev-python/futures/metadata.xml | 8 |
5 files changed, 128 insertions, 0 deletions
diff --git a/dev-python/futures/Manifest b/dev-python/futures/Manifest new file mode 100644 index 000000000000..e03eb7c9c4fd --- /dev/null +++ b/dev-python/futures/Manifest @@ -0,0 +1,3 @@ +DIST futures-2.2.0.tar.gz 26786 SHA256 151c057173474a3a40f897165951c0e33ad04f37de65b6de547ddef107fd0ed3 SHA512 5f2a835b4b3f6bf1c4f086984a2e1d6ab30004b9af9298ef8afb23549014695ba26b43500dad3ee873e52aacd75911a42cd4ec9dfae6522cb99476a480dc83ee WHIRLPOOL 5c38f64759d0f2a15a536e8a5cb5c7473ce61d46242fc0c0bc737dfe91ce9b6573c1291a6f305953b96cd6298e1e41f7e27b45a2f0c2647315826ad9a1246ccd +DIST futures-3.0.2.tar.gz 24908 SHA256 dc3fc91508e49e0fd2f8625f0132d16e49c80f882e7e1d565c56b0d5dfbae257 SHA512 01525c16914506d1e82910c5994aacc011d1ed01e91b7e403203ed1aa22a8caa3ff759ff399dd72628bc211dcab0893852ac177f792711ee9f9037a64c7e5723 WHIRLPOOL a59740472ca7cf339beb9ed44095d7f02b5701fcb2a28e41adc4dc6da63f23e5a629602010183ed611c4f60ba1a109563bd87242adb729ece12b57d63379e160 +DIST futures-3.0.3.tar.gz 24959 SHA256 2fe2342bb4fe8b8e217f0d21b5921cbe5408bf966d9f92025e707e881b198bed SHA512 2fa14df90e583ca86c47441b170a93435eb82fd37bb2e15d98e79c32fbe40fc3f602d762805de05fa8007df4a3ce92840915be59481b94ab4863aae884da74bd WHIRLPOOL 661a1174815766717eb7b130929c7aeef08079228df8f092093ee6cf40f84041ae6729cc7c0f2b05080efd0d80c0f7885c3ae333f7e5f3d21ccf2cfc20cbaa44 diff --git a/dev-python/futures/futures-2.2.0.ebuild b/dev-python/futures/futures-2.2.0.ebuild new file mode 100644 index 000000000000..2ef8e01104d6 --- /dev/null +++ b/dev-python/futures/futures-2.2.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 pypy ) +inherit distutils-r1 + +DESCRIPTION="Backport of the concurrent.futures package from Python 3.2" +HOMEPAGE="http://code.google.com/p/pythonfutures http://pypi.python.org/pypi/futures" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="doc" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + # tests that fail under pypy + # http://code.google.com/p/pythonfutures/issues/detail?id=27 + if [[ "${EPYTHON}" == pypy ]]; then + sed -e 's:test_del_shutdown:_&:g' \ + -e 's:test_repr:_&:' -i test_futures.py || die + fi + "${PYTHON}" test_futures.py || die "Tests fail with ${EPYTHON}" +} + +python_install_all() { + local DOCS=( CHANGES ) + use doc && local HTML_DOCS=( docs/_build/html/. ) + distutils-r1_python_install_all +} diff --git a/dev-python/futures/futures-3.0.2.ebuild b/dev-python/futures/futures-3.0.2.ebuild new file mode 100644 index 000000000000..4f46c60f1235 --- /dev/null +++ b/dev-python/futures/futures-3.0.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 pypy ) +inherit distutils-r1 + +DESCRIPTION="Backport of the concurrent.futures package from Python 3.2" +HOMEPAGE="http://code.google.com/p/pythonfutures http://pypi.python.org/pypi/futures" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + # tests that fail under pypy + # http://code.google.com/p/pythonfutures/issues/detail?id=27 + if [[ "${EPYTHON}" == pypy ]]; then + sed -e 's:test_del_shutdown:_&:g' \ + -e 's:test_repr:_&:' -i test_futures.py || die + fi + "${PYTHON}" test_futures.py || die "Tests fail with ${EPYTHON}" +} + +python_install_all() { + local DOCS=( CHANGES ) + use doc && local HTML_DOCS=( docs/_build/html/. ) + distutils-r1_python_install_all +} diff --git a/dev-python/futures/futures-3.0.3.ebuild b/dev-python/futures/futures-3.0.3.ebuild new file mode 100644 index 000000000000..d96d2e8c333b --- /dev/null +++ b/dev-python/futures/futures-3.0.3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 pypy ) +inherit distutils-r1 + +DESCRIPTION="Backport of the concurrent.futures package from Python 3.2" +HOMEPAGE="http://code.google.com/p/pythonfutures http://pypi.python.org/pypi/futures" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="doc" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + # tests that fail under pypy + # http://code.google.com/p/pythonfutures/issues/detail?id=27 + if [[ "${EPYTHON}" == pypy ]]; then + sed -e 's:test_del_shutdown:_&:g' \ + -e 's:test_repr:_&:' -i test_futures.py || die + fi + "${PYTHON}" test_futures.py || die "Tests fail with ${EPYTHON}" +} + +python_install_all() { + local DOCS=( CHANGES ) + use doc && local HTML_DOCS=( docs/_build/html/. ) + distutils-r1_python_install_all +} diff --git a/dev-python/futures/metadata.xml b/dev-python/futures/metadata.xml new file mode 100644 index 000000000000..ed9c72e53753 --- /dev/null +++ b/dev-python/futures/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>python</herd> + <upstream> + <remote-id type="pypi">futures</remote-id> + </upstream> +</pkgmetadata> |