Compare commits

..

16 commits

Author SHA1 Message Date
Fedora Release Engineering
38ddfd155d Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-16 03:48:05 +00:00
Jiri Vanek
8401bdae1c Rebuilt for java-25-openjdk as preffered jdk
https://fedoraproject.org/wiki/Changes/Java25AndNoMoreSystemJdk
Note, that since f43, you should be always explicit on what jdk to use.
This commit should do exactly that.
2025-07-29 19:39:18 +02:00
Fedora Release Engineering
1c3cd26c38 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-23 17:06:51 +00:00
Fedora Release Engineering
15e35bd029 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-16 11:17:59 +00:00
Jerry James
344f3f825a Move configuration steps to %conf 2025-01-13 09:35:33 -07:00
Jerry James
b4f3c4c39c Avoid unexpanded macro in package %description 2024-11-20 10:49:31 -07:00
Fedora Release Engineering
2ec99d8b1a Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-17 17:13:00 +00:00
Jerry James
f344e56046 Minor spec file simplifications 2024-07-16 11:29:24 -06:00
Jiri Vanek
5c44cace7a Rebuilt for java-21-openjdk as system jdk
https://fedoraproject.org/wiki/Changes/Java21
2024-02-27 14:50:04 +01:00
Fedora Release Engineering
beeaa680c6 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-22 23:15:27 +00:00
Fedora Release Engineering
57a7c7de06 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-19 13:16:58 +00:00
Fedora Release Engineering
26e1c88def Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-19 13:30:47 +00:00
Jerry James
7bcb2f5650 Version 2.9.0 2023-07-13 10:07:27 -06:00
60529da115 Unretirement request: https://pagure.io/releng/issue/11535 2023-07-13 16:14:01 +02:00
Miro Hrončok
29d0eb0ffb Orphaned for 6+ weeks 2020-06-29 00:43:37 +02:00
Fabio Valentini
eca30124da
update to version 2.6.0 2020-05-08 13:47:43 +02:00
7 changed files with 9755 additions and 200 deletions

7
.gitignore vendored
View file

@ -1,6 +1,3 @@
/results_*
/*.src.rpm /*.src.rpm
/commons-vfs-*-src.tar.gz
/commons-vfs-2.0-src.tar.gz /commons-vfs-*-src.tar.gz.asc
/commons-vfs-2.1-src.tar.gz
/commons-vfs-2.4.1-src.tar.gz

View file

@ -1,12 +0,0 @@
diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/zip/ZipFileProvider.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/zip/ZipFileProvider.java
index 30ada1a..35acab2 100644
--- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/zip/ZipFileProvider.java
+++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/zip/ZipFileProvider.java
@@ -31,7 +31,6 @@ import org.apache.commons.vfs2.FileType;
import org.apache.commons.vfs2.provider.AbstractFileName;
import org.apache.commons.vfs2.provider.AbstractLayeredFileProvider;
import org.apache.commons.vfs2.provider.LayeredFileName;
-import org.apache.commons.vfs2.provider.hdfs.HdfsFileSystemConfigBuilder;
/**
* A file system provider for ZIP files. Provides read-only file systems.

9451
KEYS Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,84 @@
--- commons-vfs-2.9.0/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/URLFileName.java.orig 2020-01-22 08:10:15.000000000 -0700
+++ commons-vfs-2.9.0/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/URLFileName.java 2023-06-11 21:45:22.283275117 -0600
@@ -16,8 +16,9 @@
*/
package org.apache.commons.vfs2.provider;
-import org.apache.commons.httpclient.URIException;
-import org.apache.commons.httpclient.util.URIUtil;
+import java.net.URISyntaxException;
+import java.nio.charset.Charset;
+import org.apache.http.client.utils.URIBuilder;
import org.apache.commons.vfs2.FileName;
import org.apache.commons.vfs2.FileSystemException;
import org.apache.commons.vfs2.FileType;
@@ -68,22 +69,28 @@ public class URLFileName extends Generic
*
* @param charset the charset used for the path encoding
* @return The encoded path.
- * @throws URIException If an error occurs encoding the URI.
+ * @throws URISyntaxException If an error occurs encoding the URI.
* @throws FileSystemException If some other error occurs.
*/
- public String getPathQueryEncoded(final String charset) throws URIException, FileSystemException {
+ public String getPathQueryEncoded(final String charset) throws URISyntaxException, FileSystemException {
+ final String path = getPathDecoded();
if (getQueryString() == null) {
+ if (path == "") {
+ return "";
+ }
if (charset != null) {
- return URIUtil.encodePath(getPathDecoded(), charset);
+ final Charset cset = Charset.forName(charset);
+ return new URIBuilder(path, cset).toString();
}
- return URIUtil.encodePath(getPathDecoded());
+ return new URIBuilder(path).toString();
}
final StringBuilder sb = new StringBuilder(BUFFER_SIZE);
if (charset != null) {
- sb.append(URIUtil.encodePath(getPathDecoded(), charset));
+ final Charset cset = Charset.forName(charset);
+ sb.append(new URIBuilder(path, cset).toString());
} else {
- sb.append(URIUtil.encodePath(getPathDecoded()));
+ sb.append(new URIBuilder(path).toString());
}
sb.append("?");
sb.append(getQueryString());
@@ -128,9 +135,9 @@ public class URLFileName extends Generic
* @param charset The character set.
* @return The encoded URI
* @throws FileSystemException if some other exception occurs.
- * @throws URIException if an exception occurs encoding the URI.
+ * @throws URISyntaxException if an exception occurs encoding the URI.
*/
- public String getURIEncoded(final String charset) throws FileSystemException, URIException {
+ public String getURIEncoded(final String charset) throws FileSystemException, URISyntaxException {
final StringBuilder sb = new StringBuilder(BUFFER_SIZE);
appendRootUri(sb, true);
sb.append(getPathQueryEncoded(charset));
--- commons-vfs-2.9.0/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileObject.java.orig 2020-01-22 08:10:15.000000000 -0700
+++ commons-vfs-2.9.0/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileObject.java 2023-06-11 21:36:11.292184559 -0600
@@ -20,10 +20,10 @@ import java.io.FileNotFoundException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
+import java.net.URISyntaxException;
import java.net.URL;
import java.net.URLConnection;
-import org.apache.commons.httpclient.URIException;
import org.apache.commons.vfs2.FileName;
import org.apache.commons.vfs2.FileSystemException;
import org.apache.commons.vfs2.FileType;
@@ -59,7 +59,7 @@ public class UrlFileObject extends Abstr
}
}
- protected URL createURL(final FileName name) throws MalformedURLException, FileSystemException, URIException {
+ protected URL createURL(final FileName name) throws MalformedURLException, FileSystemException, URISyntaxException {
if (name instanceof URLFileName) {
final URLFileName urlName = (URLFileName) getName();

View file

@ -1,137 +1,169 @@
%bcond_with hadoop %bcond cifs 0
%bcond_with ftp %bcond ftp 0
%bcond_without ssh %bcond hadoop 0
%bcond mina 0
Name: apache-commons-vfs Name: apache-commons-vfs
Version: 2.4.1 Version: 2.9.0
Release: 2%{?dist} Release: %autorelease
Summary: Commons Virtual File System Summary: Commons Virtual File System
License: ASL 2.0 License: Apache-2.0
Url: http://commons.apache.org/vfs/ BuildArch: noarch
Source0: http://www.apache.org/dist/commons/vfs/source/commons-vfs-%{version}-src.tar.gz ExclusiveArch: %{java_arches} noarch
# remove an unused import statement that breaks the build without hadoop URL: https://commons.apache.org/proper/commons-vfs/
Patch0: 00-remove-unused-import.patch VCS: git:https://github.com/apache/commons-vfs.git
Source0: https://archive.apache.org/dist/commons/vfs/source/commons-vfs-%{version}-src.tar.gz
Source1: https://archive.apache.org/dist/commons/vfs/source/commons-vfs-%{version}-src.tar.gz.asc
Source2: https://downloads.apache.org/commons/KEYS
BuildRequires: maven-local # Migrate from the old commons-httpclient, which is no longer available in
BuildRequires: mvn(commons-httpclient:commons-httpclient) # Fedora, to the newer httpcomponents httpclient.
Patch: %{name}-httpclient.patch
BuildRequires: gnupg2
BuildRequires: maven-local-openjdk25
BuildRequires: mvn(com.jcraft:jsch)
BuildRequires: mvn(com.sun.mail:jakarta.mail)
BuildRequires: mvn(commons-codec:commons-codec)
BuildRequires: mvn(commons-io:commons-io)
BuildRequires: mvn(commons-logging:commons-logging) BuildRequires: mvn(commons-logging:commons-logging)
BuildRequires: mvn(commons-net:commons-net) BuildRequires: mvn(commons-net:commons-net)
BuildRequires: mvn(junit:junit)
BuildRequires: mvn(org.apache.ant:ant) BuildRequires: mvn(org.apache.ant:ant)
BuildRequires: mvn(org.apache.commons:commons-collections4) BuildRequires: mvn(org.apache.commons:commons-collections4)
BuildRequires: mvn(org.apache.commons:commons-compress) BuildRequires: mvn(org.apache.commons:commons-compress)
BuildRequires: mvn(org.apache.commons:commons-lang3)
BuildRequires: mvn(org.apache.commons:commons-parent:pom:) BuildRequires: mvn(org.apache.commons:commons-parent:pom:)
BuildRequires: mvn(org.apache.httpcomponents:httpclient) BuildRequires: mvn(org.apache.httpcomponents:httpclient)
BuildRequires: mvn(org.apache.httpcomponents:httpcore-nio)
BuildRequires: mvn(org.apache.logging.log4j:log4j-core)
BuildRequires: mvn(org.apache.logging.log4j:log4j-slf4j-impl)
BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin) BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin)
BuildRequires: mvn(org.apache.maven.plugins:maven-assembly-plugin)
BuildRequires: mvn(org.apache.maven.plugins:maven-surefire-plugin)
BuildRequires: mvn(org.apache.sshd:sshd-core)
BuildRequires: mvn(org.bouncycastle:bcprov-jdk16)
BuildRequires: mvn(org.mockito:mockito-core)
BuildRequires: mvn(org.slf4j:jcl-over-slf4j)
BuildRequires: mvn(org.slf4j:slf4j-api)
%if %{with hadoop} %if %{with hadoop}
BuildRequires: mvn(javax.ws.rs:jsr311-api)
BuildRequires: mvn(org.apache.hadoop:hadoop-common) BuildRequires: mvn(org.apache.hadoop:hadoop-common)
BuildRequires: mvn(org.apache.hadoop:hadoop-hdfs) BuildRequires: mvn(org.apache.hadoop:hadoop-hdfs)
%endif BuildRequires: mvn(org.apache.hadoop:hadoop-hdfs-client)
%if %{with ssh}
BuildRequires: mvn(com.jcraft:jsch)
%endif %endif
%if %{with ftp} %if %{with ftp}
BuildRequires: mvn(org.apache.ftpserver:ftpserver-core) BuildRequires: mvn(org.apache.ftpserver:ftpserver-core)
%endif %endif
%if %{with cifs}
BuildRequires: mvn(jcifs:jcifs)
%endif
%if %{with mina}
BuildRequires: mvn(org.apache.mina:mina-core)
%endif
BuildArch: noarch Provides: %{name}2 = %{version}-%{release}
Provides: %{name}2 = %{version}-%{release}
%description %description
Commons VFS provides a single API for accessing various Commons VFS provides a single API for accessing various file systems.
different file systems. It presents a uniform view of the It presents a uniform view of the files from various sources, such as
files from various different sources, such as the files on the files on local disk, on an HTTP server, or inside a Zip archive.
local disk, on an HTTP server, or inside a Zip archive.
Some of the features of Commons VFS are: Some of the features of Commons VFS are:
* A single consistent API for accessing files of different * A single consistent API for accessing files of different types.
types.
* Support for numerous file system types. * Support for numerous file system types.
* Caching of file information. Caches information in-JVM, * Caching of file information. Caches information in-JVM, and
and optionally can cache remote file information on the optionally can cache remote file information on the local file
local file system. system (replicator).
* Event delivery. * Event delivery.
* Support for logical file systems made up of files from * Support for logical file systems made up of files from various file
various different file systems. systems.
* Utilities for integrating Commons VFS into applications, * Utilities for integrating Commons VFS into applications, such as a
such as a VFS-aware ClassLoader and URLStreamHandlerFactory. VFS-aware ClassLoader and URLStreamHandlerFactory.
* A set of VFS-enabled Ant tasks. * A set of VFS-enabled Ant tasks.
%package ant %package ant
Summary: Development files for Commons VFS Summary: Development files for Commons VFS
Requires: %{name} = %{version}-%{release} Requires: %{name} = %{version}-%{release}
Requires: ant-openjdk25
%description ant %description ant
This package enables support for the Commons VFS ant tasks. This package enables support for the Commons VFS ant tasks.
%package examples %package examples
Summary: Commons VFS Examples Summary: Commons VFS Examples
Requires: %{name} = %{version}-%{release}
%description examples %description examples
VFS is a Virtual File System library - Examples. VFS is a Virtual File System library - Examples.
%package project %package project
Summary: Commons VFS Parent POM Summary: Commons VFS Parent POM
%description project %description project
Commons VFS Parent POM. Commons VFS Parent POM.
%package javadoc %{?javadoc_package}
Summary: Javadoc for %{name}
%description javadoc
This package contains javadoc for %{name}.
%prep %prep
%setup -q -n commons-vfs-%{version} %{gpgverify} --data=%{SOURCE0} --signature=%{SOURCE1} --keyring=%{SOURCE2}
%patch0 -p1 %autosetup -n commons-vfs-%{version} -p1
%conf
# Not needed for RPM builds
%pom_xpath_remove //pom:reporting
%pom_remove_plugin :apache-rat-plugin %pom_remove_plugin :apache-rat-plugin
%pom_remove_plugin :japicmp-maven-plugin %pom_remove_plugin :japicmp-maven-plugin
%pom_remove_plugin :maven-checkstyle-plugin
# Convert from dos to unix line ending %pom_remove_plugin :maven-pmd-plugin
for file in LICENSE.txt NOTICE.txt README.txt RELEASE-NOTES.txt; do %pom_remove_plugin :maven-project-info-reports-plugin
sed -i.orig 's|\r||g' $file %pom_remove_plugin :spotbugs-maven-plugin
touch -r $file.orig $file
rm $file.orig
done
# Disable unwanted module # Disable unwanted module
%pom_disable_module commons-vfs2-distribution %pom_disable_module commons-vfs2-distribution
# Fix ant gId # Fix ant gId
%pom_change_dep -r :ant org.apache.ant: %pom_change_dep -r :ant org.apache.ant:
# Upadate bouncycastle aId
%pom_change_dep -r :bcprov-jdk16 :bcprov-jdk15on
# Remove unwanted dependency jackrabbit-{standalone,webdav} # Remove webdav client (jackrabbit not packaged)
%pom_remove_dep -r org.apache.jackrabbit: %pom_remove_dep -r org.apache.jackrabbit:
%pom_disable_module commons-vfs2-jackrabbit1
%pom_disable_module commons-vfs2-jackrabbit2
rm -r commons-vfs2/src/{main,test}/java/org/apache/commons/vfs2/provider/webdav # Remove http3 client. It needs the old commons-httpclient, which is no
# longer available in Fedora. We support the http4 client.
%pom_remove_dep -r commons-httpclient:commons-httpclient
rm -r commons-vfs2/src/{main,test}/java/org/apache/commons/vfs2/provider/http
rm -r commons-vfs2/src/{main,test}/java/org/apache/commons/vfs2/provider/https
# Use old version of sshd-core # Remove http5 client (httpclient5 not packaged)
%pom_remove_dep -r :sshd-core %pom_remove_dep -r org.apache.httpcomponents.client5:httpclient5
rm -r commons-vfs2/src/{main,test}/java/org/apache/commons/vfs2/provider/http5
rm -r commons-vfs2/src/{main,test}/java/org/apache/commons/vfs2/provider/http5s
# hadoop has been retired # hadoop has been retired
%if %{without hadoop} %if %{without hadoop}
%pom_remove_dep -r org.apache.hadoop %pom_remove_dep -r org.apache.hadoop
%pom_remove_dep -r javax.ws.rs
rm -r commons-vfs2/src/{main,test}/java/org/apache/commons/vfs2/provider/hdfs rm -r commons-vfs2/src/{main,test}/java/org/apache/commons/vfs2/provider/hdfs
%endif %endif
# not really needed # ftpserver is not available
%pom_remove_plugin :maven-checkstyle-plugin
%pom_remove_plugin :findbugs-maven-plugin
%if %{without ssh}
%pom_remove_dep -r :jsch
rm -r commons-vfs2/src/{main,test}/java/org/apache/commons/vfs2/provider/sftp
rm examples/src/main/java/org/apache/commons/vfs2/libcheck/SftpCheck.java
%endif
%if %{without ftp} %if %{without ftp}
%pom_remove_dep -r :ftpserver-core %pom_remove_dep -r :ftpserver-core
rm -r commons-vfs2/src/{main,test}/java/org/apache/commons/vfs2/provider/ftps rm -r commons-vfs2/src/{main,test}/java/org/apache/commons/vfs2/provider/ftps
%endif %endif
# jcifs not packaged and also export controlled in the US
%if %{without cifs}
%pom_remove_dep :jcifs
%endif
# mina is not available
%if %{without mina}
%pom_remove_dep :mina-core
%endif
# Fix installation directory and symlink # Fix installation directory and symlink
%mvn_file :commons-vfs2 %{name} %mvn_file :commons-vfs2 %{name}
@ -157,126 +189,16 @@ echo "ant commons-logging commons-vfs" > commons-vfs
install -p -m 644 commons-vfs %{buildroot}%{_sysconfdir}/ant.d/commons-vfs install -p -m 644 commons-vfs %{buildroot}%{_sysconfdir}/ant.d/commons-vfs
%files -f .mfiles-commons-vfs2 %files -f .mfiles-commons-vfs2
%doc README.txt RELEASE-NOTES.txt %doc README.md RELEASE-NOTES.txt
%license LICENSE.txt NOTICE.txt %license LICENSE.txt NOTICE.txt
%files examples -f .mfiles-commons-vfs2-examples %files examples -f .mfiles-commons-vfs2-examples
%files project -f .mfiles-commons-vfs2-project %files project -f .mfiles-commons-vfs2-project
%license LICENSE.txt NOTICE.txt %license LICENSE.txt NOTICE.txt
%files javadoc -f .mfiles-javadoc
%license LICENSE.txt NOTICE.txt
%files ant %files ant
%config %{_sysconfdir}/ant.d/commons-vfs %config(noreplace) %{_sysconfdir}/ant.d/commons-vfs
%changelog %changelog
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.1-2 %autochangelog
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Sat Oct 05 2019 Fabio Valentini <decathorpe@gmail.com> - 2.4.1-1
- Update to version 2.4.1.
* Fri Jul 26 2019 Fabio Valentini <decathorpe@gmail.com> - 2.1-16
- Disable ftp support by default.
* Wed Jul 24 2019 Fabio Valentini <decathorpe@gmail.com> - 2.1-15
- Disable hadoop support by default.
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-14
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Mon Feb 06 2017 Michael Simacek <msimacek@redhat.com> - 2.1-10
- Add conditionals for ftp and ssh
* Mon Feb 06 2017 Michael Simacek <msimacek@redhat.com> - 2.1-9
- Remove rat-plugin
* Sun Jan 29 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1-8
- Fix hadoop build conditionals
* Fri Oct 28 2016 gil cattaneo <puntogil@libero.it> 2.1-7
- enable HDFS support (rhbz#1387108)
* Mon Oct 3 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1-6
- Remove build-requires on perl
* Thu Jul 21 2016 gil cattaneo <puntogil@libero.it> 2.1-5
- add missing BR
* Sat Jun 25 2016 gil cattaneo <puntogil@libero.it> 2.1-4
- disable tests failure
* Thu Jun 02 2016 gil cattaneo <puntogil@libero.it> 2.1-3
- disable hadoop stuff with bcond
* Thu Jun 02 2016 Michael Simacek <msimacek@redhat.com> - 2.1-2
- Remove support for retired hadoop
* Sun May 22 2016 gil cattaneo <puntogil@libero.it> 2.1-1
- update to 2.1
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-17
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-16
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Thu Jan 29 2015 gil cattaneo <puntogil@libero.it> 2.0-15
- introduce license macro
* Wed Jul 30 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.0-14
- Fix build-requires on apache-commons-parent
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.0-12
- Use Requires: java-headless rebuild (#1067528)
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Fri Jun 28 2013 gil cattaneo <puntogil@libero.it> 2.0-10
- used pom_xpath_set macro
* Fri Jun 28 2013 gil cattaneo <puntogil@libero.it> 2.0-9
- swith to pom macros
- packaged in /usr/share/java instead of /usr/share/java/apache-commons-vfs
* Fri Jun 28 2013 Michal Srb <msrb@redhat.com> - 2.0-8
- Fix directory ownership
* Thu Jun 27 2013 Michal Srb <msrb@redhat.com> - 2.0-7
- Build with XMvn
- Do not ignore test failures
- Fix BR
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 2.0-5
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
- Replace maven BuildRequires with maven-local
* Wed Aug 1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.0-4
- Rebuild against javamail
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Mon Jun 18 2012 gil cattaneo <puntogil@libero.it> 2.0-2
- add subpackage ant
- install NOTICE.txt in javadocs subpackage
* Mon May 14 2012 gil cattaneo <puntogil@libero.it> 2.0-1
- initial rpm

112
changelog Normal file
View file

@ -0,0 +1,112 @@
* Fri May 08 2020 Fabio Valentini <decathorpe@gmail.com> - 2.6.0-1
- Update to version 2.6.0.
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Sat Oct 05 2019 Fabio Valentini <decathorpe@gmail.com> - 2.4.1-1
- Update to version 2.4.1.
* Fri Jul 26 2019 Fabio Valentini <decathorpe@gmail.com> - 2.1-16
- Disable ftp support by default.
* Wed Jul 24 2019 Fabio Valentini <decathorpe@gmail.com> - 2.1-15
- Disable hadoop support by default.
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-14
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Mon Feb 06 2017 Michael Simacek <msimacek@redhat.com> - 2.1-10
- Add conditionals for ftp and ssh
* Mon Feb 06 2017 Michael Simacek <msimacek@redhat.com> - 2.1-9
- Remove rat-plugin
* Sun Jan 29 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1-8
- Fix hadoop build conditionals
* Fri Oct 28 2016 gil cattaneo <puntogil@libero.it> 2.1-7
- enable HDFS support (rhbz#1387108)
* Mon Oct 3 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.1-6
- Remove build-requires on perl
* Thu Jul 21 2016 gil cattaneo <puntogil@libero.it> 2.1-5
- add missing BR
* Sat Jun 25 2016 gil cattaneo <puntogil@libero.it> 2.1-4
- disable tests failure
* Thu Jun 02 2016 gil cattaneo <puntogil@libero.it> 2.1-3
- disable hadoop stuff with bcond
* Thu Jun 02 2016 Michael Simacek <msimacek@redhat.com> - 2.1-2
- Remove support for retired hadoop
* Sun May 22 2016 gil cattaneo <puntogil@libero.it> 2.1-1
- update to 2.1
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-17
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-16
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Thu Jan 29 2015 gil cattaneo <puntogil@libero.it> 2.0-15
- introduce license macro
* Wed Jul 30 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.0-14
- Fix build-requires on apache-commons-parent
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.0-12
- Use Requires: java-headless rebuild (#1067528)
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Fri Jun 28 2013 gil cattaneo <puntogil@libero.it> 2.0-10
- used pom_xpath_set macro
* Fri Jun 28 2013 gil cattaneo <puntogil@libero.it> 2.0-9
- swith to pom macros
- packaged in /usr/share/java instead of /usr/share/java/apache-commons-vfs
* Fri Jun 28 2013 Michal Srb <msrb@redhat.com> - 2.0-8
- Fix directory ownership
* Thu Jun 27 2013 Michal Srb <msrb@redhat.com> - 2.0-7
- Build with XMvn
- Do not ignore test failures
- Fix BR
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 2.0-5
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
- Replace maven BuildRequires with maven-local
* Wed Aug 1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.0-4
- Rebuild against javamail
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Mon Jun 18 2012 gil cattaneo <puntogil@libero.it> 2.0-2
- add subpackage ant
- install NOTICE.txt in javadocs subpackage
* Mon May 14 2012 gil cattaneo <puntogil@libero.it> 2.0-1
- initial rpm

View file

@ -1 +1,2 @@
SHA512 (commons-vfs-2.4.1-src.tar.gz) = b8360cb79534d3285fc76808ba360bb39c4e5077b1216ad5b35838e39856daa3b45e99ecfa02f7d094b074acede71323027f4cf2b8514a0bfbd4b4c0b01165c8 SHA512 (commons-vfs-2.9.0-src.tar.gz) = 8ecff4867ec512d5b0cd6339867d9d9a2d94746b5d39e025025341c447b0d1cdee48ddba7824735698026c5f8e848e740f6216270596079016d26f0a0a026468
SHA512 (commons-vfs-2.9.0-src.tar.gz.asc) = 2780f06c890b03124dfd71ee1d59c8d5b585caca7e552257317bfcfcd46e5688ca50c9bf21b4bf7c6516afac753b6cf7f0cf68fc20f03158b4f0a74632c93b70