mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-java/jctools-core: drop 4.0.1
Closes: https://bugs.gentoo.org/916967 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/34690 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
committed by
Miroslav Šulc
parent
5cc2c592bc
commit
a702115d2b
@@ -1,2 +1 @@
|
||||
DIST jctools-4.0.1.tar.gz 4234647 BLAKE2B 652cfc70d92a37e04056e306050b156632ba92b2cacd9b759556ea92e1b9b6dda3d766e33936cdd92ec690abb6fb51a562305f82746f500f89d9d797e27f9c54 SHA512 9c8f55be4640f7b1315e7f93c20cf6b4b8d84c542103d69a2e34c0abe00c25fb362b6d8c4042feb4462559e5f6babd90ab0a59a66c3d407e13004ff02ce95c8f
|
||||
DIST jctools-4.0.2.tar.gz 4237275 BLAKE2B 9bac4f8442f7a64aac47208ecf98799506244783d71a5444b6a3ff74ddca4e16232cf19dd5e7a9243dfcc3510674717982ef915759c8b6b2de74d4711d996302 SHA512 d19237929ab18360427efdf2844adc08589fc8ba2838b1f983118e1d6f1270bacad34477cb000e6bc85aeab38e7e337c397181b4351681f18977547c5b2e8f37
|
||||
|
||||
@@ -1,70 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
# Skeleton command:
|
||||
# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri https://github.com/JCTools/JCTools/archive/v4.0.1.tar.gz --slot 3 --keywords "~amd64 ~arm ~arm64 ~ppc64 ~x86" --ebuild jctools-core-4.0.1.ebuild
|
||||
|
||||
EAPI=8
|
||||
|
||||
JAVA_PKG_IUSE="doc source test"
|
||||
MAVEN_ID="org.jctools:jctools-core:4.0.1"
|
||||
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"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="3"
|
||||
KEYWORDS="amd64 ~arm arm64 ppc64 x86"
|
||||
|
||||
DEPEND=">=virtual/jdk-1.8:*
|
||||
test? (
|
||||
dev-java/guava-testlib:0
|
||||
dev-java/hamcrest-library:1.3
|
||||
)"
|
||||
|
||||
RDEPEND=">=virtual/jre-1.8:*"
|
||||
|
||||
DOCS=( ../{README,RELEASE-NOTES}.md )
|
||||
|
||||
S="${WORKDIR}/JCTools-${PV}/jctools-core"
|
||||
|
||||
JAVA_AUTOMATIC_MODULE_NAME="org.jctools.core"
|
||||
JAVA_SRC_DIR="src/main/java"
|
||||
|
||||
JAVA_TEST_GENTOO_CLASSPATH="guava-testlib,hamcrest-library-1.3,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