118 lines
4.0 KiB
RPMSpec
118 lines
4.0 KiB
RPMSpec
|
#
|
||
|
# spec file for package apache-commons-compress
|
||
|
#
|
||
|
# Copyright (c) 2019 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 https://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
|
||
|
%global base_name compress
|
||
|
%global short_name commons-%{base_name}
|
||
|
Name: apache-%{short_name}
|
||
|
Version: 1.18
|
||
|
Release: 0
|
||
|
Summary: Java API for working with compressed files and archivers
|
||
|
License: Apache-2.0
|
||
|
Group: Development/Libraries/Java
|
||
|
URL: http://commons.apache.org/proper/commons-compress/
|
||
|
Source0: http://archive.apache.org/dist/commons/compress/source/%{short_name}-%{version}-src.tar.gz
|
||
|
Source1: %{name}-build.xml
|
||
|
Patch0: 0001-Remove-Brotli-compressor.patch
|
||
|
Patch1: 0002-Remove-ZSTD-compressor.patch
|
||
|
Patch2: fix_java_8_compatibility.patch
|
||
|
BuildRequires: ant
|
||
|
BuildRequires: apache-commons-parent
|
||
|
BuildRequires: fdupes
|
||
|
BuildRequires: javapackages-local
|
||
|
BuildRequires: xz-java
|
||
|
Requires: mvn(org.apache.commons:commons-parent:pom:)
|
||
|
Requires: mvn(org.tukaani:xz)
|
||
|
Provides: %{short_name} = %{version}-%{release}
|
||
|
Obsoletes: %{short_name} < %{version}-%{release}
|
||
|
Provides: jakarta-%{short_name} = %{version}-%{release}
|
||
|
Obsoletes: jakarta-%{short_name} < %{version}-%{release}
|
||
|
BuildArch: noarch
|
||
|
|
||
|
%description
|
||
|
The Apache Commons Compress library defines an API for working with
|
||
|
ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200 and bzip2 files.
|
||
|
In version 1.14 read-only support for Brotli decompression has been added,
|
||
|
but it has been removed form this package.
|
||
|
|
||
|
%package javadoc
|
||
|
Summary: API documentation for %{name}
|
||
|
|
||
|
%description javadoc
|
||
|
This package provides %{summary}.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n %{short_name}-%{version}-src
|
||
|
cp %{SOURCE1} build.xml
|
||
|
|
||
|
# Unavailable Google Brotli library (org.brotli.dec)
|
||
|
%patch0 -p1
|
||
|
%pom_remove_dep org.brotli:dec
|
||
|
rm -r src/{main,test}/java/org/apache/commons/compress/compressors/brotli
|
||
|
|
||
|
# Unavailable ZSTD JNI library
|
||
|
%patch1 -p1
|
||
|
%pom_remove_dep :zstd-jni
|
||
|
rm -r src/{main,test}/java/org/apache/commons/compress/compressors/zstandard
|
||
|
rm src/test/java/org/apache/commons/compress/compressors/DetectCompressorTestCase.java
|
||
|
|
||
|
# Restore Java 8 compatibility
|
||
|
%patch2 -p1
|
||
|
|
||
|
# remove osgi tests, we don't have deps for them
|
||
|
%pom_remove_dep org.ops4j.pax.exam:::test
|
||
|
%pom_remove_dep :org.apache.felix.framework::test
|
||
|
%pom_remove_dep :javax.inject::test
|
||
|
%pom_remove_dep :slf4j-api::test
|
||
|
rm src/test/java/org/apache/commons/compress/OsgiITest.java
|
||
|
|
||
|
# NPE with jdk10
|
||
|
%pom_remove_plugin :maven-javadoc-plugin
|
||
|
|
||
|
%pom_xpath_remove "pom:profiles/pom:profile[pom:id[text()='java9+']]"
|
||
|
|
||
|
%build
|
||
|
mkdir -p lib
|
||
|
build-jar-repository -s lib xz-java
|
||
|
%{ant} package javadoc
|
||
|
|
||
|
%install
|
||
|
# jar
|
||
|
install -dm 0755 %{buildroot}%{_javadir}
|
||
|
install -pm 0644 target/%{short_name}-%{version}.jar %{buildroot}%{_javadir}/%{short_name}.jar
|
||
|
ln -sf %{short_name}.jar %{buildroot}%{_javadir}/%{name}.jar
|
||
|
# pom
|
||
|
install -dm 0755 %{buildroot}%{_mavenpomdir}
|
||
|
install -pm 0644 pom.xml %{buildroot}%{_mavenpomdir}/%{short_name}.pom
|
||
|
%add_maven_depmap %{short_name}.pom %{short_name}.jar -a commons:commons-compress,commons-compress:commons-compress
|
||
|
# javadoc
|
||
|
install -dm 0755 %{buildroot}%{_javadocdir}/%{name}
|
||
|
cp -pr target/site/apidocs/* %{buildroot}%{_javadocdir}/%{name}
|
||
|
%fdupes -s %{buildroot}%{_javadocdir}
|
||
|
|
||
|
%files -f .mfiles
|
||
|
%{_javadir}/%{name}.jar
|
||
|
%license LICENSE.txt
|
||
|
%doc NOTICE.txt
|
||
|
|
||
|
%files javadoc
|
||
|
%{_javadocdir}/%{name}
|
||
|
%license LICENSE.txt
|
||
|
%doc NOTICE.txt
|
||
|
|
||
|
%changelog
|