mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-03-06 09:47:28 -08:00
The result was achieved via the following pipeline:
pkgcheck scan -c RestrictTestCheck -R FormatReporter \
--format '{category}/{package}/{package}-{version}.ebuild' |
xargs -n32 grep -L RESTRICT |
xargs -n32 sed -i -e '/^IUSE=.*test/aRESTRICT="!test? ( test )"'
The resulting metadata was compared before and after the change.
Few Go ebuilds had to be fixed manually due to implicit RESTRICT=strip
added by the eclass. Two ebuilds have to be fixed because of multiline
IUSE.
Suggested-by: Robin H. Johnson <robbat2@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/13942
Signed-off-by: Michał Górny <mgorny@gentoo.org>
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python2_7 python3_{5,6} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A wrapper around PyFlakes, pep8 & mccabe"
|
|
HOMEPAGE="https://bitbucket.org/tarek/flake8"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 x86 ~amd64-linux ~x86-linux"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
# requires.txt inc. mccabe however that creates a circular dep
|
|
RDEPEND=">=dev-python/pyflakes-0.7.3[${PYTHON_USEDEP}]
|
|
>=dev-python/pep8-1.4.6[${PYTHON_USEDEP}]"
|
|
PDEPEND=">=dev-python/mccabe-0.2.1[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
test? ( ${PDEPEND}
|
|
dev-python/nose[${PYTHON_USEDEP}]
|
|
dev-python/mock[${PYTHON_USEDEP}] )"
|
|
|
|
python_prepare_all() {
|
|
# This tests requires / assumes this version is already installed.
|
|
sed -e 's:test_register_extensions:_&:' -i flake8/tests/test_engine.py || die
|
|
distutils-r1_python_prepare_all
|
|
}
|
|
|
|
python_test() {
|
|
esetup.py test
|
|
}
|