dev-java/jctools-core: drop 3.3.0

Closes: https://bugs.gentoo.org/888811
Closes: https://bugs.gentoo.org/856688
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
Volkmar W. Pogatzki
2023-01-27 22:08:40 +01:00
committed by Arthur Zamarin
parent a3d8f721df
commit e7cd969df5
2 changed files with 0 additions and 70 deletions

View File

@@ -1,2 +1 @@
DIST jctools-3.3.0.tar.gz 4214717 BLAKE2B c9c5f5897ebf8bb7ac439b969f372c45b7652517cbc5369c07fe80d11f779eebe7fe5ffb5d93a18fe3df5d9ca9adf3cee7268c8c6ed962fccb4d84f5b0451c4b SHA512 ce212abacca6137a133f7a4e94370442d00bf73794fa7b9ce440631701a9a2fca31c4dda05e2a768fcf28f75e84f2a7f318a936e429c7f4ed20daa7b79d11a4a
DIST jctools-4.0.1.tar.gz 4234647 BLAKE2B 652cfc70d92a37e04056e306050b156632ba92b2cacd9b759556ea92e1b9b6dda3d766e33936cdd92ec690abb6fb51a562305f82746f500f89d9d797e27f9c54 SHA512 9c8f55be4640f7b1315e7f93c20cf6b4b8d84c542103d69a2e34c0abe00c25fb362b6d8c4042feb4462559e5f6babd90ab0a59a66c3d407e13004ff02ce95c8f

View File

@@ -1,69 +0,0 @@
# Copyright 1999-2022 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/v3.3.0.tar.gz --slot 0 --keywords "~amd64 ~arm ~arm64 ~ppc64 ~x86" --ebuild jctools-core-3.3.0.ebuild
EAPI=8
JAVA_PKG_IUSE="doc source test"
MAVEN_ID="org.jctools:jctools-core:3.3.0"
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_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)
}