# # spec file for package apache-commons-io # # Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # %define base_name io %define short_name commons-%{base_name} Name: apache-commons-io Version: 2.4 Release: 0 Summary: Utilities to assist with developing IO functionality License: Apache-2.0 Group: Development/Libraries/Java Url: http://commons.apache.org/%{base_name} Source0: http://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz #PATCH-FIX-OPENSUSE: fix the version property to 2.4 Patch0: commons-io-version-property.patch BuildRequires: ant >= 1.6 BuildRequires: javapackages-local BuildRequires: javapackages-tools Provides: %{short_name} = %{version}-%{release} Provides: jakarta-%{short_name} = %{version}-%{release} Obsoletes: jakarta-%{short_name} <= %{version} BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch %description Commons-IO contains utility classes, stream implementations, file filters, and endian classes. It is a library of utilities to assist with developing IO functionality. %package javadoc Summary: Commons IO Package Group: Development/Libraries/Java %description javadoc This package contains the API documentation for %{name}. %prep %setup -q -n %{short_name}-%{version}-src %patch0 -p1 # wrong end of line encoding sed -i -e 's/.$//' *.txt %build export OPT_JAR_LIST="junit" export CLASSPATH= CLASSPATH=target/classes:target/test-classes:$CLASSPATH ant -Dcompile.source=1.6 -Dcompile.target=1.6 \ -Dbuild.sysclasspath=only \ dist %install # jars install -d -m 0755 %{buildroot}%{_javadir} install -p -m 0644 target/%{short_name}-%{version}.jar \ %{buildroot}%{_javadir}/%{name}.jar ln -sf %{name}.jar %{buildroot}%{_javadir}/%{short_name}.jar # pom install -d -m 755 %{buildroot}%{_mavenpomdir} install -pm 644 pom.xml %{buildroot}%{_mavenpomdir}/JPP-%{short_name}.pom %add_maven_depmap JPP-%{short_name}.pom %{short_name}.jar -a "org.apache.commons:commons-io" # javadoc install -d -m 755 %{buildroot}%{_javadocdir}/%{name} cp -pr target/apidocs/* %{buildroot}%{_javadocdir}/%{name} %files %defattr(-,root,root,-) %doc LICENSE.txt NOTICE.txt RELEASE-NOTES.txt %{_javadir}/*.jar %{_mavenpomdir}/JPP-%{short_name}.pom %{_datadir}/maven-metadata/%{name}.xml* %files javadoc %defattr(-,root,root,-) %doc %{_javadocdir}/%{name} %changelog