mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-05-18 10:47:27 -07: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>
50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="5"
|
|
|
|
JAVA_PKG_IUSE="doc source"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
MY_PN="netty"
|
|
MY_P="${MY_PN}-${PV}"
|
|
DESCRIPTION="Async event-driven framework for high performance network applications"
|
|
HOMEPAGE="http://netty.io/"
|
|
SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${MY_P}.Final.tar.gz"
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
CDEPEND="~dev-java/${MY_PN}-common-${PV}:0"
|
|
|
|
RDEPEND=">=virtual/jre-1.7
|
|
${CDEPEND}"
|
|
|
|
DEPEND=">=virtual/jdk-1.7
|
|
${CDEPEND}
|
|
test? (
|
|
dev-java/easymock:3.2
|
|
dev-java/hamcrest-core:1.3
|
|
dev-java/hamcrest-library:1.3
|
|
dev-java/junit:4
|
|
)"
|
|
|
|
S="${WORKDIR}/${MY_PN}-${MY_P}.Final/${PN/${MY_PN}-}"
|
|
JAVA_SRC_DIR="src/main/java"
|
|
JAVA_GENTOO_CLASSPATH="${MY_PN}-common"
|
|
|
|
src_test() {
|
|
cd src/test/java || die
|
|
|
|
local CP=".:${S}/${PN}.jar:$(java-pkg_getjars --with-dependencies ${JAVA_GENTOO_CLASSPATH},easymock-3.2,hamcrest-core-1.3,hamcrest-library-1.3,junit-4)"
|
|
local TESTS=$(find * -name "*Test.java" ! -name "Abstract*")
|
|
TESTS="${TESTS//.java}"
|
|
TESTS="${TESTS//\//.}"
|
|
|
|
ejavac -cp "${CP}" -d . $(find * -name "*.java")
|
|
ejunit4 -classpath "${CP}" ${TESTS}
|
|
}
|