From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D1C4915808B for ; Thu, 10 Mar 2022 17:40:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAE50E0825; Thu, 10 Mar 2022 17:40:16 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 626BFE0825 for ; Thu, 10 Mar 2022 17:40:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E3E203432B1 for ; Thu, 10 Mar 2022 17:40:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49C3F1BD for ; Thu, 10 Mar 2022 17:40:13 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1646933782.f31297ae743c99a3e73f89a1be7209185719362e.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jchart2d/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jchart2d/jchart2d-3.2.2-r1.ebuild X-VCS-Directories: dev-java/jchart2d/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: f31297ae743c99a3e73f89a1be7209185719362e X-VCS-Branch: master Date: Thu, 10 Mar 2022 17:40:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7dae788b-def7-41d5-8065-b0c624751394 X-Archives-Hash: 208c1c3c336c2d53eb0549cc147a9fea commit: f31297ae743c99a3e73f89a1be7209185719362e Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Thu Mar 10 13:55:16 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Thu Mar 10 17:36:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f31297ae dev-java/jchart2d: EAPI 8, min java 1.8:* Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/24476 Signed-off-by: Florian Schmaus gentoo.org> dev-java/jchart2d/jchart2d-3.2.2-r1.ebuild | 56 ++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/dev-java/jchart2d/jchart2d-3.2.2-r1.ebuild b/dev-java/jchart2d/jchart2d-3.2.2-r1.ebuild new file mode 100644 index 000000000000..fe2e13524222 --- /dev/null +++ b/dev-java/jchart2d/jchart2d-3.2.2-r1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source" +MAVEN_ID="net.sf.jchart2d:jchart2d:3.2.2" +# JAVA_TESTING_FRAMEWORKS="junit-4" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="A minimalistic realtime charting library for Java" +HOMEPAGE="http://jchart2d.sourceforge.net" +SRC_URI="mirror://sourceforge/project/jchart2d/jchart2d/sources/jchart2d-eclipse-project-${PV}.zip" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +CP_DEPEND="dev-java/jide-oss:0 + dev-java/xmlgraphics-commons:2" + +DEPEND=">=virtual/jdk-1.8:* + ${CP_DEPEND}" + +RDEPEND=">=virtual/jre-1.8:* + ${CP_DEPEND}" + +BDEPEND=" + app-arch/unzip" + +S="${WORKDIR}/${PN}" + +DOCS=( ../NOTICE-apache-xmlgraphics-commons ) + +JAVA_SRC_DIR="src" + +# FAILURES!!! +# Tests run: 212, Failures: 119 +# JAVA_TEST_SRC_DIR="test" +# JAVA_TEST_GENTOO_CLASSPATH="junit-4" + +src_prepare() { + default + java-pkg_clean + + # src/Bug3553696.java:3: error: package info.monitorenter.gui.chart.tracepoints does not exist + # import info.monitorenter.gui.chart.tracepoints.TracePoint2D; + # ^ + rm src/Bug3553696.java || die +} + +src_install() { + default # https://bugs.gentoo.org/789582 + java-pkg-simple_src_install +}