diff options
author | David Seifert <soap@gentoo.org> | 2019-12-29 09:51:31 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-29 09:51:31 +0100 |
commit | 4084e06baa6a50354c9dc94dca06a4d35f7df9d3 (patch) | |
tree | 3ba41109e5a8891cb206b0ff7090310a44a6b106 /dev-python/falcon/falcon-0.1.8.ebuild | |
parent | dev-python/cursive: Remove old (diff) | |
download | gentoo-4084e06baa6a50354c9dc94dca06a4d35f7df9d3.tar.gz gentoo-4084e06baa6a50354c9dc94dca06a4d35f7df9d3.tar.bz2 gentoo-4084e06baa6a50354c9dc94dca06a4d35f7df9d3.zip |
dev-python/falcon: Remove old
Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/falcon/falcon-0.1.8.ebuild')
-rw-r--r-- | dev-python/falcon/falcon-0.1.8.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-python/falcon/falcon-0.1.8.ebuild b/dev-python/falcon/falcon-0.1.8.ebuild deleted file mode 100644 index 4b28fa1e9913..000000000000 --- a/dev-python/falcon/falcon-0.1.8.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -# Python 2.6 is supported, but depends on ordereddict, which has been in -# improvise for months and is a minimal package. If needed -# please let me know. PyPy also works -PYTHON_COMPAT=( python2_7 pypy ) - -inherit distutils-r1 - -DESCRIPTION="A supersonic micro-framework for building cloud APIs" -HOMEPAGE="http://falconframework.org/ https://pypi.org/project/falcon/" -SRC_URI="https://github.com/racker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+cython test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/six[${PYTHON_USEDEP}] - dev-python/mimeparse[${PYTHON_USEDEP}] - cython? ( - dev-python/cython[$(python_gen_usedep python{2_7,3_3})] )" - -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/cython[$(python_gen_usedep python{2_7,3_3})] - dev-python/nose[${PYTHON_USEDEP}] - dev-python/testtools[${PYTHON_USEDEP}] )" - -python_test() { - nosetests || die "Testing failed with ${EPYTHON}" -} - -src_prepare() { - if ! use cython; then - sed -i -e 's/if with_cython:/if False:/' setup.py \ - || die 'sed failed.' - fi - - # fix tests installation : potential file collision - sed -e 's@^where = tests@where = falcon/tests@g' -i setup.cfg || die - mv tests falcon/ -} |