gil 231e3f
%global base_name vfs
gil 231e3f
%global short_name commons-%{base_name}
gil 231e3f
Name:          apache-commons-vfs
gil 231e3f
Version:       2.0
Dennis Gilmore 699d9a
Release:       13%{?dist}
gil 231e3f
Summary:       Commons Virtual File System
gil 231e3f
License:       ASL 2.0
gil 231e3f
Url:           http://commons.apache.org/%{base_name}/
gil 231e3f
Source0:       http://www.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz
gil 4abefd
gil 4abefd
BuildRequires: maven-local
gil 4abefd
BuildRequires: mvn(com.jcraft:jsch)
gil 4abefd
BuildRequires: mvn(commons-collections:commons-collections)
gil 4abefd
BuildRequires: mvn(commons-httpclient:commons-httpclient)
gil 4abefd
BuildRequires: mvn(commons-logging:commons-logging)
gil 4abefd
BuildRequires: mvn(commons-net:commons-net)
gil 4abefd
BuildRequires: mvn(org.apache.ant:ant)
gil 4abefd
BuildRequires: mvn(org.apache.commons:commons-compress)
gil 4abefd
BuildRequires: mvn(org.apache.commons:commons-parent)
gil 4abefd
BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin)
gil 4abefd
BuildRequires: mvn(org.jdom:jdom)
gil 231e3f
gil 231e3f
# test deps
gil 4abefd
BuildRequires: mvn(junit:junit)
Michal Srb d80d2d
gil 231e3f
BuildArch:     noarch
gil 231e3f
Provides:      %{name}2 = %{version}-%{release}
gil 231e3f
gil 231e3f
%description
gil 231e3f
Commons VFS provides a single API for accessing various
gil 231e3f
different file systems. It presents a uniform view of the
gil 231e3f
files from various different sources, such as the files on
gil 231e3f
local disk, on an HTTP server, or inside a Zip archive.
gil 231e3f
Some of the features of Commons VFS are:
gil 231e3f
* A single consistent API for accessing files of different
gil 231e3f
 types.
gil 231e3f
* Support for numerous file system types.
gil 231e3f
* Caching of file information. Caches information in-JVM,
gil 231e3f
 and optionally can cache remote file information on the
gil 231e3f
 local file system.
gil 231e3f
* Event delivery.
gil 231e3f
* Support for logical file systems made up of files from
gil 231e3f
 various different file systems.
gil 231e3f
* Utilities for integrating Commons VFS into applications,
gil 231e3f
 such as a VFS-aware ClassLoader and URLStreamHandlerFactory.
gil 231e3f
* A set of VFS-enabled Ant tasks.
gil 231e3f
gil 231e3f
%package ant
gil 231e3f
Summary:       Development files for Commons VFS
gil 231e3f
Requires:      %{name} = %{version}-%{release}
gil 231e3f
gil 231e3f
%description ant
gil 231e3f
This package enables support for the Commons VFS ant tasks.
gil 231e3f
gil 231e3f
%package examples
gil 231e3f
Summary:       Commons VFS Examples
Michal Srb 0f82e9
Requires:      %{name} = %{version}-%{release}
gil 231e3f
gil 231e3f
%description examples
gil 231e3f
VFS is a Virtual File System library - Examples.
gil 231e3f
gil 231e3f
%package javadoc
gil 231e3f
Summary:       Javadoc for %{name}
gil 231e3f
gil 231e3f
%description javadoc
gil 231e3f
This package contains javadoc for %{name}.
gil 231e3f
gil 231e3f
%prep
gil 231e3f
%setup -q -n %{short_name}-%{version}
gil 231e3f
perl -pi -e 's/\r$//g;' *.txt
gil 231e3f
gil 4abefd
# Remove unused dependencies
gil 4abefd
%pom_remove_dep :maven-scm-api
gil 4abefd
%pom_remove_dep :maven-scm-provider-svnexe
gil 4abefd
# Remove not available module
gil 4abefd
%pom_remove_dep :commons-vfs-sandbox
gil 4abefd
# Disable unwanted module
gil 4abefd
%pom_disable_module dist
gil 4abefd
gil 4abefd
# Fix plugin configuration
gil 4abefd
%pom_xpath_inject "pom:project/pom:reporting/pom:plugins/pom:plugin[pom:artifactId='maven-javadoc-plugin']/pom:configuration" "
gil 4abefd
<excludePackageNames>*.webdav.*</excludePackageNames>"
gil 4abefd
# Fix ant gId
gil 375d95
%pom_xpath_set "pom:project/pom:dependencyManagement/pom:dependencies/pom:dependency[pom:artifactId='ant']/pom:groupId" "
gil 375d95
org.apache.ant"
gil 4abefd
gil 375d95
%pom_xpath_set "pom:project/pom:dependencies/pom:dependency[pom:artifactId='ant']/pom:groupId" "
gil 375d95
org.apache.ant" core
gil 4abefd
gil 4abefd
# Remove unwanted dependency
gil 4abefd
%pom_remove_dep :jackrabbit-webdav core
gil 4abefd
gil 4abefd
# Disable jackrabbit-webdav support
gil 4abefd
%pom_add_plugin org.apache.maven.plugins:maven-compiler-plugin core "
gil 4abefd
<executions>
gil 4abefd
  <execution>
gil 4abefd
    <id>default-compile</id>
gil 4abefd
    <phase>compile</phase>
gil 4abefd
    <configuration>
gil 4abefd
      <excludes>
gil 4abefd
       <exclude>**/webdav/*</exclude>
gil 4abefd
      </excludes>
gil 4abefd
    </configuration>
gil 4abefd
    <goals>
gil 4abefd
      <goal>compile</goal>
gil 4abefd
    </goals>
gil 4abefd
  </execution>
gil 4abefd
  <execution>
gil 4abefd
    <id>default-testCompile</id>
gil 4abefd
    <phase>test-compile</phase>
gil 4abefd
    <configuration>
gil 4abefd
      <testExcludes>
gil 4abefd
       <exclude>**/webdav/test/*</exclude>
gil 4abefd
      </testExcludes>
gil 4abefd
    </configuration>
gil 4abefd
    <goals>
gil 4abefd
      <goal>testCompile</goal>
gil 4abefd
    </goals>
gil 4abefd
  </execution>
gil 4abefd
</executions>"
gil 4abefd
gil 231e3f
rm -rf core/src/main/java/org/apache/commons/vfs2/provider/webdav
gil 231e3f
rm -rf core/src/test/java/org/apache/commons/vfs2/provider/webdav
gil 231e3f
sed -i 's|"webdav",||' core/src/test/java/org/apache/commons/vfs2/util/DelegatingFileSystemOptionsBuilderTest.java
gil 231e3f
gil d4f36a
rm -r core/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java
gil d4f36a
Michal Srb d80d2d
# not really needed
Michal Srb d80d2d
%pom_remove_plugin :maven-checkstyle-plugin
gil 4abefd
%pom_remove_plugin :commons-build-plugin
gil 4abefd
%pom_remove_plugin :findbugs-maven-plugin
gil 4abefd
gil 4abefd
# Fix installation directory and symlink
gil 4abefd
%mvn_file :%{short_name}2 %{name}
gil 4abefd
%mvn_file :%{short_name}2 %{name}2
gil 4abefd
%mvn_file :%{short_name}2 %{short_name}
gil 4abefd
%mvn_file :%{short_name}2 %{short_name}2
gil 4abefd
%mvn_file :%{short_name}2-examples %{name}-examples
gil 4abefd
%mvn_file :%{short_name}2-examples %{name}2-examples
gil 4abefd
%mvn_file :%{short_name}2-examples %{short_name}-examples
gil 4abefd
%mvn_file :%{short_name}2-examples %{short_name}2-examples
gil 231e3f
Michal Srb d80d2d
%mvn_alias :commons-vfs2 "org.apache.commons:%{short_name}" "%{short_name}:%{short_name}"
Michal Srb d80d2d
%mvn_alias :commons-vfs2-examples "org.apache.commons:%{short_name}-examples" "%{short_name}:%{short_name}-examples"
gil 231e3f
Michal Srb d80d2d
# main package wins parent POM
Michal Srb d80d2d
%mvn_package ":commons-vfs2-project" commons-vfs2
gil 231e3f
Michal Srb d80d2d
%build
Michal Srb d80d2d
%mvn_build -s
Michal Srb d80d2d
Michal Srb d80d2d
%install
Michal Srb d80d2d
%mvn_install
gil 231e3f
gil 231e3f
mkdir -p %{buildroot}%{_sysconfdir}/ant.d
gil 231e3f
echo "ant commons-logging %{short_name}" > %{short_name}
gil 231e3f
install -p -m 644 %{short_name} %{buildroot}%{_sysconfdir}/ant.d/%{short_name}
gil 231e3f
Michal Srb d80d2d
%files -f .mfiles-commons-vfs2
gil 231e3f
%doc LICENSE.txt NOTICE.txt README.txt RELEASE-NOTES.txt
gil 231e3f
Michal Srb d80d2d
%files examples -f .mfiles-commons-vfs2-examples
gil 231e3f
Michal Srb d80d2d
%files javadoc -f .mfiles-javadoc
gil 231e3f
%doc LICENSE.txt NOTICE.txt
gil 231e3f
gil 231e3f
%files ant
gil 231e3f
%config %{_sysconfdir}/ant.d/%{short_name}
gil 231e3f
gil 231e3f
%changelog
Dennis Gilmore 699d9a
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-13
Dennis Gilmore 699d9a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
Dennis Gilmore 699d9a
Stanislav Ochotnicky cdcbc2
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.0-12
Stanislav Ochotnicky cdcbc2
- Use Requires: java-headless rebuild (#1067528)
Stanislav Ochotnicky cdcbc2
Dennis Gilmore cba5ef
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-11
Dennis Gilmore cba5ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
Dennis Gilmore cba5ef
gil 375d95
* Fri Jun 28 2013 gil cattaneo <puntogil@libero.it> 2.0-10
gil 375d95
- used pom_xpath_set macro
gil 375d95
gil 4abefd
* Fri Jun 28 2013 gil cattaneo <puntogil@libero.it> 2.0-9
gil 4abefd
- swith to pom macros
gil 4abefd
- packaged in /usr/share/java instead of /usr/share/java/apache-commons-vfs
gil 4abefd
Michal Srb 0f82e9
* Fri Jun 28 2013 Michal Srb <msrb@redhat.com> - 2.0-8
Michal Srb 0f82e9
- Fix directory ownership
Michal Srb 0f82e9
Michal Srb d80d2d
* Thu Jun 27 2013 Michal Srb <msrb@redhat.com> - 2.0-7
Michal Srb d80d2d
- Build with XMvn
Michal Srb d80d2d
- Do not ignore test failures
Michal Srb d80d2d
- Fix BR
Michal Srb d80d2d
Dennis Gilmore 752350
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-6
Dennis Gilmore 752350
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
Dennis Gilmore 752350
Stanislav Ochotnicky 33a97c
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 2.0-5
Stanislav Ochotnicky 33a97c
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
Stanislav Ochotnicky 33a97c
- Replace maven BuildRequires with maven-local
Stanislav Ochotnicky 33a97c
Mikolaj Izdebski 7c1ff7
* Wed Aug  1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.0-4
Mikolaj Izdebski 7c1ff7
- Rebuild against javamail
Mikolaj Izdebski 7c1ff7
Dennis Gilmore d4ac61
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-3
Dennis Gilmore d4ac61
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
Dennis Gilmore d4ac61
gil 231e3f
* Mon Jun 18 2012 gil cattaneo <puntogil@libero.it> 2.0-2
gil 231e3f
- add subpackage ant
gil 231e3f
- install NOTICE.txt in javadocs subpackage
gil 231e3f
gil 231e3f
* Mon May 14 2012 gil cattaneo <puntogil@libero.it> 2.0-1
Mikolaj Izdebski 7c1ff7
- initial rpm