summaryrefslogtreecommitdiff
path: root/dev-java/commons-vfs
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-java/commons-vfs
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-java/commons-vfs')
-rw-r--r--dev-java/commons-vfs/Manifest1
-rw-r--r--dev-java/commons-vfs/commons-vfs-2.0-r4.ebuild56
-rw-r--r--dev-java/commons-vfs/files/commons-vfs-2.0-incompatibility.patch39
-rw-r--r--dev-java/commons-vfs/files/commons-vfs-2.0-utf8.patch13
-rw-r--r--dev-java/commons-vfs/metadata.xml15
5 files changed, 0 insertions, 124 deletions
diff --git a/dev-java/commons-vfs/Manifest b/dev-java/commons-vfs/Manifest
deleted file mode 100644
index 5a785427a265..000000000000
--- a/dev-java/commons-vfs/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST commons-vfs-2.0-src.tar.gz 335255 BLAKE2B 01c8bba3340487672682af5c6b341ab1e8335070a9b711b5c85cca659854d05881a0ff10c4b168497e3a75867a7225740edc6e56019e55c499256401fb0a53c5 SHA512 433828b9eba73df14dbedaa4037e3da1c69bf1892553c1ae4d213ba864e4ee579e0c7799f39e3cb4ec087d7c9223f54442be46de9c4916d7b7ff8a51214d6346
diff --git a/dev-java/commons-vfs/commons-vfs-2.0-r4.ebuild b/dev-java/commons-vfs/commons-vfs-2.0-r4.ebuild
deleted file mode 100644
index a334d1d7e660..000000000000
--- a/dev-java/commons-vfs/commons-vfs-2.0-r4.ebuild
+++ /dev/null
@@ -1,56 +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
-
-DESCRIPTION="A single API for accessing various different file systems"
-HOMEPAGE="https://commons.apache.org/vfs/"
-SRC_URI="https://archive.apache.org/dist/commons/vfs/source/${P}-src.tar.gz"
-S="${WORKDIR}/${P}/core"
-
-LICENSE="Apache-2.0"
-SLOT="2"
-KEYWORDS="amd64 ppc64"
-
-CP_DEPEND="
- >=dev-java/ant-1.10.14-r3:0
- dev-java/commons-collections:0
- dev-java/commons-logging:0
- dev-java/commons-net:0
- dev-java/commons-httpclient:3
- dev-java/jackrabbit-webdav:0
- dev-java/jsch:0"
-
-DEPEND="${CP_DEPEND}
- >=virtual/jdk-1.8:*"
-
-RDEPEND="${CP_DEPEND}
- >=virtual/jre-1.8:*"
-
-PATCHES=(
- "${FILESDIR}"/${P}-incompatibility.patch
- "${FILESDIR}"/commons-vfs-2.0-utf8.patch
-)
-
-JAVA_RESOURCE_DIRS="resources/src/main/java"
-JAVA_SRC_DIR="src/main/java"
-
-# The build.xml is generated from maven and can't run the tests properly
-# Use maven test to execute these manually but that means downloading deps from
-# the internet. Also the tests need to login to some ftp servers and samba
-# shares so I doubt they work for everyone.
-#src_test() {
-# ANT_TASKS="ant-junit" eant test
-#}
-
-src_prepare() {
- default #780585
- java-pkg-2_src_prepare
- mkdir resources || die
- find src/main/java -type f ! -name '*.java' ! -name 'package.html' \
- | xargs cp --parent -t resources || die
-}
diff --git a/dev-java/commons-vfs/files/commons-vfs-2.0-incompatibility.patch b/dev-java/commons-vfs/files/commons-vfs-2.0-incompatibility.patch
deleted file mode 100644
index 59e2f287afdd..000000000000
--- a/dev-java/commons-vfs/files/commons-vfs-2.0-incompatibility.patch
+++ /dev/null
@@ -1,39 +0,0 @@
---- a/src/main/java/org/apache/commons/vfs2/provider/webdav/ExceptionConverter.java 2013-07-05 15:28:39.072739044 +0200
-+++ b/src/main/java/org/apache/commons/vfs2/provider/webdav/ExceptionConverter.java 2013-07-05 15:30:24.799404027 +0200
-@@ -50,7 +50,7 @@
- {
- try
- {
-- Element error = davExc.toXml(DomUtil.BUILDER_FACTORY.newDocumentBuilder().newDocument());
-+ Element error = davExc.toXml(DomUtil.createDocument());
- if (DomUtil.matches(error, DavException.XML_ERROR, DavConstants.NAMESPACE))
- {
- if (DomUtil.hasChildElement(error, "exception", null))
---- a/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileObject.java 2013-07-05 15:28:39.072739044 +0200
-+++ b/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileObject.java 2013-07-05 15:31:02.449403426 +0200
-@@ -63,6 +63,7 @@
- import org.apache.jackrabbit.webdav.client.methods.UncheckoutMethod;
- import org.apache.jackrabbit.webdav.client.methods.VersionControlMethod;
- import org.apache.jackrabbit.webdav.property.DavProperty;
-+import org.apache.jackrabbit.webdav.property.DavPropertyIterator;
- import org.apache.jackrabbit.webdav.property.DavPropertyName;
- import org.apache.jackrabbit.webdav.property.DavPropertyNameSet;
- import org.apache.jackrabbit.webdav.property.DavPropertySet;
-@@ -294,7 +294,7 @@
- DavPropertySet properties = getProperties(fileName, PropFindMethod.PROPFIND_ALL_PROP,
- new DavPropertyNameSet(), false);
- @SuppressWarnings("unchecked") // iterator() is documented to return DavProperty instances
-- Iterator<DavProperty> iter = properties.iterator();
-+ DavPropertyIterator iter = properties.iterator();
- while (iter.hasNext())
- {
- DavProperty property = iter.next();
-@@ -302,7 +302,7 @@
- }
- properties = getPropertyNames(fileName);
- @SuppressWarnings("unchecked") // iterator() is documented to return DavProperty instances
-- Iterator<DavProperty> iter2 = properties.iterator();
-+ DavPropertyIterator iter2 = properties.iterator();
- while (iter2.hasNext())
- {
- DavProperty property = iter2.next();
diff --git a/dev-java/commons-vfs/files/commons-vfs-2.0-utf8.patch b/dev-java/commons-vfs/files/commons-vfs-2.0-utf8.patch
deleted file mode 100644
index 199fb380c3cb..000000000000
--- a/dev-java/commons-vfs/files/commons-vfs-2.0-utf8.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/src/main/java/org/apache/commons/vfs2/FileSystemManager.java b/src/main/java/org/apache/commons/vfs2/FileSystemManager.java
-index bb8cc2a..1e26559 100644
---- a/src/main/java/org/apache/commons/vfs2/FileSystemManager.java
-+++ b/src/main/java/org/apache/commons/vfs2/FileSystemManager.java
-@@ -98,7 +98,7 @@ public interface FileSystemManager
- FileObject resolveFile(String name, FileSystemOptions fileSystemOptions)
- throws FileSystemException;
-
-- /** §
-+ /**
- * Locates a file by name. The name is resolved as described
- * <a href="#naming">above</a>. That is, the name can be either
- * an absolute URI, an absolute file name, or a relative path to
diff --git a/dev-java/commons-vfs/metadata.xml b/dev-java/commons-vfs/metadata.xml
deleted file mode 100644
index d6b7e7e7bca3..000000000000
--- a/dev-java/commons-vfs/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>java@gentoo.org</email>
- <name>Java</name>
- </maintainer>
- <longdescription lang="en">
- Commons VFS provides a single API for accessing various different file
- systems. It presents a uniform view of the files from various different
- sources, such as the files on local disk, on an HTTP server, or inside
- a Zip archive.
- </longdescription>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>