* [gentoo-commits] repo/gentoo:master commit in: profiles/, dev-java/xp/files/, dev-java/xp/
@ 2022-02-23 9:40 Jakov Smolić
0 siblings, 0 replies; only message in thread
From: Jakov Smolić @ 2022-02-23 9:40 UTC (permalink / raw
To: gentoo-commits
commit: 3052e5a45887b5d86843bd23db332639b2a07c3b
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 23 09:39:30 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Feb 23 09:40:09 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3052e5a4
dev-java/xp: treeclean
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-java/xp/Manifest | 1 -
dev-java/xp/files/xp-0.5-fix-jdk-1.7-enum.patch | 30 ------------------------
dev-java/xp/metadata.xml | 8 -------
dev-java/xp/xp-0.5-r4.ebuild | 31 -------------------------
profiles/package.mask | 1 -
5 files changed, 71 deletions(-)
diff --git a/dev-java/xp/Manifest b/dev-java/xp/Manifest
deleted file mode 100644
index 43de144548a2..000000000000
--- a/dev-java/xp/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST xp-0.5.zip 281324 BLAKE2B c9bf54836b67773f2bcdf34cd0548acc9e2cad039aaae1ff397f63b9f3715742ad9e0494b696415f83ffc50d14e47462c0efcf52e9332f8cf469441094bceb74 SHA512 5bf354967a1135209d5c6b3be979a311aa5c909493dea16a0efd31a1838dda12be4005ac7e919620ed68266a333fdc93a07853ec1e0af0e83b329bd40bda74b6
diff --git a/dev-java/xp/files/xp-0.5-fix-jdk-1.7-enum.patch b/dev-java/xp/files/xp-0.5-fix-jdk-1.7-enum.patch
deleted file mode 100644
index d2c11ab3ed59..000000000000
--- a/dev-java/xp/files/xp-0.5-fix-jdk-1.7-enum.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff --git a/com/jclark/xml/sax/Driver.java b/com/jclark/xml/sax/Driver.java
-index 2b0d90a..d1efd3e 100644
---- a/com/jclark/xml/sax/Driver.java
-+++ b/com/jclark/xml/sax/Driver.java
-@@ -160,9 +160,9 @@ public class Driver extends ApplicationImpl
-
- DTD dtd = event.getDTD();
-
-- for (Enumeration enum = dtd.entityNames(DTD.NOTATION);
-- enum.hasMoreElements(); ) {
-- String name = (String)enum.nextElement();
-+ for (Enumeration enumx = dtd.entityNames(DTD.NOTATION);
-+ enumx.hasMoreElements(); ) {
-+ String name = (String)enumx.nextElement();
- Entity entity = dtd.getEntity(DTD.NOTATION, name);
- String systemId = entity.getSystemId();
- if (systemId != null) {
-@@ -173,9 +173,9 @@ public class Driver extends ApplicationImpl
- }
- dtdHandler.notationDecl(name, entity.getPublicId(), systemId);
- }
-- for (Enumeration enum = dtd.entityNames(DTD.GENERAL_ENTITY);
-- enum.hasMoreElements();) {
-- String name = (String)enum.nextElement();
-+ for (Enumeration enumx = dtd.entityNames(DTD.GENERAL_ENTITY);
-+ enumx.hasMoreElements();) {
-+ String name = (String)enumx.nextElement();
- Entity entity = dtd.getEntity(DTD.GENERAL_ENTITY, name);
- String notationName = entity.getNotationName();
- if (notationName != null) {
diff --git a/dev-java/xp/metadata.xml b/dev-java/xp/metadata.xml
deleted file mode 100644
index 4221e170cbc0..000000000000
--- a/dev-java/xp/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>java@gentoo.org</email>
- <name>Java</name>
- </maintainer>
-</pkgmetadata>
diff --git a/dev-java/xp/xp-0.5-r4.ebuild b/dev-java/xp/xp-0.5-r4.ebuild
deleted file mode 100644
index ae0095ad000a..000000000000
--- a/dev-java/xp/xp-0.5-r4.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-JAVA_PKG_IUSE="doc source"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="XP is an XML 1.0 parser written in Java"
-HOMEPAGE="http://www.jclark.com/xml/xp"
-SRC_URI="ftp://ftp.jclark.com/pub/xml/${PN}.zip -> ${P}.zip"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=virtual/jre-1.6"
-DEPEND="
- app-arch/unzip
- >=virtual/jdk-1.6
-"
-
-PATCHES=(
- "${FILESDIR}/${P}-fix-jdk-1.7-enum.patch"
-)
-
-src_prepare() {
- default
- java-pkg_clean
-}
diff --git a/profiles/package.mask b/profiles/package.mask
index c85cf0571020..a962937dcfea 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -163,7 +163,6 @@ dev-java/jsr223
# Java-libraries with no consumers and depending on virtual/{jdk,jre}-1.6
# Removal in 30 days.
dev-java/yanfs
-dev-java/xp
# Eray Aslan <eras@gentoo.org> (2022-01-24)
# Mask experimental software
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2022-02-23 9:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-23 9:40 [gentoo-commits] repo/gentoo:master commit in: profiles/, dev-java/xp/files/, dev-java/xp/ Jakov Smolić
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox