public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-java/laf-plugin/files/, profiles/, dev-java/laf-plugin/
@ 2022-02-10  9:18 Jakov Smolić
  0 siblings, 0 replies; only message in thread
From: Jakov Smolić @ 2022-02-10  9:18 UTC (permalink / raw
  To: gentoo-commits

commit:     65cff5e5780d8a0672954c5fd8a11fbf82b6dea1
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 10 09:14:40 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Feb 10 09:17:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65cff5e5

dev-java/laf-plugin: treeclean

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-java/laf-plugin/Manifest                       |  2 --
 .../laf-plugin/files/laf-plugin-0.2-enum.patch     | 42 ----------------------
 dev-java/laf-plugin/laf-plugin-0.2-r2.ebuild       | 31 ----------------
 dev-java/laf-plugin/laf-plugin-1.1-r1.ebuild       | 36 -------------------
 dev-java/laf-plugin/metadata.xml                   |  8 -----
 profiles/package.mask                              |  1 -
 6 files changed, 120 deletions(-)

diff --git a/dev-java/laf-plugin/Manifest b/dev-java/laf-plugin/Manifest
deleted file mode 100644
index cdc702d77434..000000000000
--- a/dev-java/laf-plugin/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST laf-plugin-0.2.tar.bz2 13799 BLAKE2B b466053ccc064cc067f408a2d57e9ff99ae1d0e421ec70fe789baa865aa8ad12dae0143591b06ee9f19ce7d59b3c41e75ccb2adfe597d40923f5e4a4f156e144 SHA512 91ac3f9f5ebfcd70e7cc76f2e028e9578c6113a848b0ccdc6b001fff006bf5aaa12af08b1752851693d218d4b2d7d053f62461481e49d5a0bde21e5a7d086331
-DIST laf-plugin-1.1.jar 8105 BLAKE2B 45d065389b25f2e6cf8a06058edba8f056bb02a8e1eb038d0e88c04e086ba09b4ede4064f7bd8c618a0daf328e20781fa15d4902cf7889d41110af92bcf5e5a7 SHA512 2ca265d23ac95e5d194e4905ead4c975cb8739a0aa30096c028d2f6467b148de2ac0ff71c6730752a666eee53551867d9d8c852d25238a873fbd4bd994cf80c0

diff --git a/dev-java/laf-plugin/files/laf-plugin-0.2-enum.patch b/dev-java/laf-plugin/files/laf-plugin-0.2-enum.patch
deleted file mode 100644
index 35d818ead30a..000000000000
--- a/dev-java/laf-plugin/files/laf-plugin-0.2-enum.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- a/src/org/jvnet/lafplugin/XMLElement.java	2017-03-24 19:08:40.320048066 +0000
-+++ b/src/org/jvnet/lafplugin/XMLElement.java	2017-03-24 19:10:18.490049991 +0000
-@@ -478,9 +478,9 @@
-         this.children = new Vector();
-         this.entities = entities;
-         this.lineNr = 0;
--        Enumeration enum = this.entities.keys();
--        while (enum.hasMoreElements()) {
--            Object key = enum.nextElement();
-+        Enumeration myEnum = this.entities.keys();
-+        while (myEnum.hasMoreElements()) {
-+            Object key = myEnum.nextElement();
-             Object value = this.entities.get(key);
-             if (value instanceof String) {
-                 value = ((String) value).toCharArray();
-@@ -2168,10 +2168,10 @@
-         writer.write('<');
-         writer.write(this.name);
-         if (! this.attributes.isEmpty()) {
--            Enumeration enum = this.attributes.keys();
--            while (enum.hasMoreElements()) {
-+            Enumeration myEnum = this.attributes.keys();
-+            while (myEnum.hasMoreElements()) {
-                 writer.write(' ');
--                String key = (String) enum.nextElement();
-+                String key = (String) myEnum.nextElement();
-                 String value = (String) this.attributes.get(key);
-                 writer.write(key);
-                 writer.write('='); writer.write('"');
-@@ -2189,9 +2189,9 @@
-             writer.write('/'); writer.write('>');
-         } else {
-             writer.write('>');
--            Enumeration enum = this.enumerateChildren();
--            while (enum.hasMoreElements()) {
--                XMLElement child = (XMLElement) enum.nextElement();
-+            Enumeration myEnum = this.enumerateChildren();
-+            while (myEnum.hasMoreElements()) {
-+                XMLElement child = (XMLElement) myEnum.nextElement();
-                 child.write(writer);
-             }
-             writer.write('<'); writer.write('/');

diff --git a/dev-java/laf-plugin/laf-plugin-0.2-r2.ebuild b/dev-java/laf-plugin/laf-plugin-0.2-r2.ebuild
deleted file mode 100644
index 27a2ea3f6544..000000000000
--- a/dev-java/laf-plugin/laf-plugin-0.2-r2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2019 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="Look'n'feel Java library"
-HOMEPAGE="http://laf-plugin.dev.java.net/"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-KEYWORDS="amd64 x86"
-SLOT="0"
-LICENSE="BSD"
-
-DEPEND=">=virtual/jdk-1.6"
-RDEPEND=">=virtual/jre-1.6"
-
-S="${WORKDIR}/${P}"
-
-PATCHES=( "${FILESDIR}/${P}-enum.patch" )
-
-src_prepare() {
-	default
-}
-
-src_install() {
-	java-pkg-simple_src_install
-}

diff --git a/dev-java/laf-plugin/laf-plugin-1.1-r1.ebuild b/dev-java/laf-plugin/laf-plugin-1.1-r1.ebuild
deleted file mode 100644
index 0c34f8779fc1..000000000000
--- a/dev-java/laf-plugin/laf-plugin-1.1-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# 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="Look'n'feel Java library"
-HOMEPAGE="http://laf-plugin.dev.java.net"
-SRC_URI="https://repo1.maven.org/maven2/net/java/dev/${PN}/${PN}/${PV}/${P}-sources.jar -> ${P}.jar"
-LICENSE="BSD"
-SLOT="1"
-KEYWORDS="~amd64 ~x86"
-
-CDEPEND="dev-java/nanoxml:0"
-
-DEPEND="
-	${CDEPEND}
-	>=virtual/jdk-1.6"
-
-RDEPEND="
-	${CDEPEND}
-	>=virtual/jre-1.6"
-
-JAVA_GENTOO_CLASSPATH="nanoxml"
-
-src_prepare() {
-	default
-	java-pkg_clean
-}
-
-src_install() {
-	java-pkg-simple_src_install
-}

diff --git a/dev-java/laf-plugin/metadata.xml b/dev-java/laf-plugin/metadata.xml
deleted file mode 100644
index 6021501589e0..000000000000
--- a/dev-java/laf-plugin/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/profiles/package.mask b/profiles/package.mask
index b7db65b274fd..0380cf2f539c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -270,7 +270,6 @@ sci-chemistry/molscript
 dev-java/myfaces-api
 dev-java/cdi-api
 dev-java/cofoja
-dev-java/laf-plugin
 
 # Brian Evans <grknight@gentoo.org> (2022-01-07)
 # The main consumer, phpunit, does not initiate the new timer correctly


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-02-10  9:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-10  9:18 [gentoo-commits] repo/gentoo:master commit in: dev-java/laf-plugin/files/, profiles/, dev-java/laf-plugin/ Jakov Smolić

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox