media-gfx/plantuml: drop 1.2025.2

Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Part-of: https://github.com/gentoo/gentoo/pull/43670
Closes: https://github.com/gentoo/gentoo/pull/43670
Signed-off-by: Florian Schmaus <flow@gentoo.org>
This commit is contained in:
Volkmar W. Pogatzki
2025-09-05 07:31:14 +02:00
committed by Florian Schmaus
parent 6bb3e12035
commit 7e9b86938e
2 changed files with 0 additions and 56 deletions

View File

@@ -1,2 +1 @@
DIST plantuml-1.2025.2.tar.gz 12312056 BLAKE2B 92c75d30b5ecb7b1a5fac111ae3de0ec14cc7ec547b39daac14b32f1944b8eb6b8da567eaeeae8fe899c574205b9a6f2c18f315d5b642192e979cf4ad5885b42 SHA512 9d8a55d9fab5e8e4cf0eedb107c097034f6004bfefbf0f559e1e2c365c13c5e5beca46cd79f60b49f371c588deb83496022f57d7c5f9e2bc71ed94dd25450265
DIST plantuml-1.2025.4.tar.gz 13351571 BLAKE2B 46e0c9687206a6c791b3c93f4fb4e1ce441d4b0d159a1ea25d233327c3a7168227ababbc71eab5ecd3d9c2c80b64733da28d75d43176e78adb2815d3bbd80285 SHA512 56fba53211d182fa91bbc1ccce3db33921825d37b91df3bcc716b3ca38c775ef4f23400e261e01d0e3f1b6d5c80e50c21cd02a42ed7870a40416bf77d40e8151

View File

@@ -1,55 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-pkg-simple desktop xdg
DESCRIPTION="Draw UML diagrams using a simple and human readable text description"
HOMEPAGE="https://plantuml.com"
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${P}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64"
IUSE="ant-task"
DEPEND="
>=virtual/jdk-1.8:*
ant-task? ( >=dev-java/ant-1.10.14-r3:0 )
"
RDEPEND="
>=virtual/jre-1.8:*
media-gfx/graphviz
ant-task? ( >=dev-java/ant-1.10.14-r3:0 )
"
JAVA_AUTOMATIC_MODULE_NAME="net.sourceforge.plantuml"
JAVA_MAIN_CLASS="net.sourceforge.plantuml.Run"
JAVA_RESOURCE_DIRS="res"
JAVA_SRC_DIR="src"
src_prepare() {
java-pkg-2_src_prepare
if use ant-task; then
# src/net/sourceforge/plantuml/ant/readme.md
JAVA_GENTOO_CLASSPATH+="ant"
else
rm src/net/sourceforge/plantuml/ant/{CheckZip,PlantUml}Task.java || die
fi
# java-pkg-simple wants resources in a separate directory
cp -r src res || die
cp -r skin stdlib svg themes res || die
find res -type f \( -name '*.java' -o -iname 'readme.md' \
-o -name '*.ttf' -o -name '*.html' -o -name 'data.txt' \
-o -name '.editorconfig' \) -exec rm -rf {} + || die
}
src_install() {
java-pkg-simple_src_install
make_desktop_entry plantuml
}