mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
dev-java/jctools-core: drop 4.0.2
Closes: https://bugs.gentoo.org/924135 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
committed by
Miroslav Šulc
parent
d4bf8684d4
commit
bb00754e44
@@ -1,2 +1 @@
|
||||
DIST jctools-4.0.2.tar.gz 4237275 BLAKE2B 9bac4f8442f7a64aac47208ecf98799506244783d71a5444b6a3ff74ddca4e16232cf19dd5e7a9243dfcc3510674717982ef915759c8b6b2de74d4711d996302 SHA512 d19237929ab18360427efdf2844adc08589fc8ba2838b1f983118e1d6f1270bacad34477cb000e6bc85aeab38e7e337c397181b4351681f18977547c5b2e8f37
|
||||
DIST jctools-4.0.3.tar.gz 4237279 BLAKE2B be74c2b0997ec68b90249c8d2b841737fffa4e09724a25b5f5e15b8c4bbf811215023358bc674ed20f81d06a10db3ac2428b29d159ac99ef6dff7e6c36bf7fe2 SHA512 3d7cede6beba54871365cc2f49dc30f014a6f36a5e1f66e9cebd523d202806d49f24c23dbfd6bef0c25cbea0ca230b5d1afefd2b83b0150d335e8e99b6cec90f
|
||||
|
||||
@@ -1,69 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
JAVA_PKG_IUSE="doc source test"
|
||||
MAVEN_ID="org.jctools:jctools-core:${PV}"
|
||||
JAVA_TESTING_FRAMEWORKS="junit-4"
|
||||
|
||||
inherit java-pkg-2 java-pkg-simple
|
||||
|
||||
DESCRIPTION="Java Concurrency Tools Core Library"
|
||||
HOMEPAGE="https://jctools.github.io/JCTools/"
|
||||
SRC_URI="https://github.com/JCTools/JCTools/archive/v${PV}.tar.gz -> jctools-${PV}.tar.gz"
|
||||
S="${WORKDIR}/JCTools-${PV}/jctools-core"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="3"
|
||||
KEYWORDS="amd64 ~arm arm64 ppc64 x86"
|
||||
|
||||
DEPEND="
|
||||
dev-java/osgi-annotation:0
|
||||
>=virtual/jdk-1.8:*
|
||||
test? (
|
||||
dev-java/guava-testlib:0
|
||||
dev-java/hamcrest:0
|
||||
)"
|
||||
|
||||
RDEPEND=">=virtual/jre-1.8:*"
|
||||
|
||||
DOCS=( ../{README,RELEASE-NOTES}.md )
|
||||
|
||||
JAVA_AUTOMATIC_MODULE_NAME="org.jctools.core"
|
||||
JAVA_CLASSPATH_EXTRA="osgi-annotation"
|
||||
JAVA_SRC_DIR="src/main/java"
|
||||
|
||||
JAVA_TEST_GENTOO_CLASSPATH="guava-testlib,hamcrest,junit-4"
|
||||
JAVA_TEST_SRC_DIR="src/test/java"
|
||||
|
||||
# Using the defaults of java-pkg-simple would skip more than half the number of tests.
|
||||
src_test() {
|
||||
# org.jetbrains.kotlinx.lincheck is not yet packaged
|
||||
rm -r src/test/java/org/jctools/maps/linearizability_test || die
|
||||
# These tests would fail and are not run by "mvn test".
|
||||
# "org.jctools.queues.MpqSanityTest"
|
||||
# "org.jctools.queues.QueueSanityTest"
|
||||
# "org.jctools.queues.ScQueueRemoveTest"
|
||||
# "org.jctools.util.TestUtil"
|
||||
# Test timeout on arm64, https://bugs.gentoo.org/863977
|
||||
# "org.jctools.queues.atomic.AtomicMpqSanityTestMpscLinked"
|
||||
# "org.jctools.queues.MpqSanityTestMpscLinked"
|
||||
pushd src/test/java || die
|
||||
local JAVA_TEST_RUN_ONLY=$(find * \
|
||||
\( -name "*Test*.java" \
|
||||
-o -name "nbsi_tester.java" \
|
||||
-o -name "nbhs_tester.java" \)\
|
||||
! -name "MpqSanityTest.java" \
|
||||
! -name "QueueSanityTest.java" \
|
||||
! -name "ScQueueRemoveTest.java" \
|
||||
! -name "TestUtil.java" \
|
||||
! -name "AtomicMpqSanityTestMpscLinked.java" \
|
||||
! -name "MpqSanityTestMpscLinked.java" \
|
||||
)
|
||||
popd
|
||||
JAVA_TEST_RUN_ONLY="${JAVA_TEST_RUN_ONLY//.java}"
|
||||
JAVA_TEST_RUN_ONLY="${JAVA_TEST_RUN_ONLY//\//.}"
|
||||
java-pkg-simple_src_test
|
||||
# OK (7226 tests)
|
||||
}
|
||||
Reference in New Issue
Block a user