2021-05-17 16:01:41 +00:00
|
|
|
%bcond_with bootstrap
|
2010-05-11 07:44:54 +00:00
|
|
|
|
2019-09-02 06:56:58 +00:00
|
|
|
Name: apache-commons-compress
|
2020-03-02 10:52:28 +00:00
|
|
|
Version: 1.20
|
2021-05-17 13:49:26 +00:00
|
|
|
Release: 6%{?dist}
|
2013-01-08 15:47:53 +00:00
|
|
|
Summary: Java API for working with compressed files and archivers
|
|
|
|
License: ASL 2.0
|
2020-03-04 08:30:16 +00:00
|
|
|
URL: https://commons.apache.org/proper/commons-compress/
|
2013-01-08 15:47:53 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
|
2020-03-04 08:30:16 +00:00
|
|
|
Source0: https://archive.apache.org/dist/commons/compress/source/commons-compress-%{version}-src.tar.gz
|
2015-06-09 12:48:57 +00:00
|
|
|
|
2018-02-12 10:02:38 +00:00
|
|
|
Patch0: 0001-Remove-Brotli-compressor.patch
|
|
|
|
Patch1: 0002-Remove-ZSTD-compressor.patch
|
2019-02-07 15:00:38 +00:00
|
|
|
Patch2: 0003-Avoid-use-of-internal-Mockito-API.patch
|
2017-06-14 12:52:16 +00:00
|
|
|
|
2013-02-07 08:43:43 +00:00
|
|
|
BuildRequires: maven-local
|
2021-04-16 13:33:12 +00:00
|
|
|
%if %{with bootstrap}
|
|
|
|
BuildRequires: javapackages-bootstrap
|
|
|
|
%else
|
2014-03-14 13:20:17 +00:00
|
|
|
BuildRequires: mvn(junit:junit)
|
2014-07-30 14:38:43 +00:00
|
|
|
BuildRequires: mvn(org.apache.commons:commons-parent:pom:)
|
2014-03-14 13:20:17 +00:00
|
|
|
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
2018-02-12 10:02:38 +00:00
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin)
|
2019-08-14 13:59:27 +00:00
|
|
|
BuildRequires: mvn(org.mockito:mockito-core)
|
2018-06-05 08:40:40 +00:00
|
|
|
BuildRequires: mvn(org.osgi:org.osgi.core)
|
2014-03-14 13:20:17 +00:00
|
|
|
BuildRequires: mvn(org.tukaani:xz)
|
2021-04-16 13:33:12 +00:00
|
|
|
%endif
|
2013-01-08 15:47:53 +00:00
|
|
|
|
2010-05-11 07:44:54 +00:00
|
|
|
%description
|
2013-01-08 15:47:53 +00:00
|
|
|
The Apache Commons Compress library defines an API for working with
|
|
|
|
ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200 and bzip2 files.
|
2017-06-14 12:52:16 +00:00
|
|
|
In version 1.14 read-only support for Brotli decompression has been added,
|
|
|
|
but it has been removed form this package.
|
2010-05-11 07:44:54 +00:00
|
|
|
|
|
|
|
%package javadoc
|
2013-01-08 15:47:53 +00:00
|
|
|
Summary: API documentation for %{name}
|
2010-05-31 21:36:39 +00:00
|
|
|
|
2010-05-11 07:44:54 +00:00
|
|
|
%description javadoc
|
2013-01-08 15:47:53 +00:00
|
|
|
This package provides %{summary}.
|
2010-05-11 07:44:54 +00:00
|
|
|
|
|
|
|
%prep
|
2019-09-02 06:56:58 +00:00
|
|
|
%setup -q -n commons-compress-%{version}-src
|
2018-02-12 10:02:38 +00:00
|
|
|
|
|
|
|
# Unavailable Google Brotli library (org.brotli.dec)
|
2017-06-14 12:52:16 +00:00
|
|
|
%patch0 -p1
|
|
|
|
%pom_remove_dep org.brotli:dec
|
2018-02-12 10:02:38 +00:00
|
|
|
rm -r src/{main,test}/java/org/apache/commons/compress/compressors/brotli
|
2010-05-11 07:44:54 +00:00
|
|
|
|
2018-02-12 10:02:38 +00:00
|
|
|
# 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
|
2017-01-02 07:38:36 +00:00
|
|
|
|
2019-02-07 15:00:38 +00:00
|
|
|
# Avoid using internal Mockito APIs
|
|
|
|
%patch2 -p1
|
|
|
|
|
2018-06-05 08:40:40 +00:00
|
|
|
# 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
|
|
|
|
|
2019-08-14 13:59:27 +00:00
|
|
|
# Remove test that requires powermock
|
|
|
|
%pom_remove_dep org.powermock:
|
|
|
|
%pom_add_dep org.mockito:mockito-core::test
|
|
|
|
rm src/test/java/org/apache/commons/compress/compressors/z/ZCompressorInputStreamTest.java
|
2018-06-05 08:40:40 +00:00
|
|
|
|
2010-05-11 07:44:54 +00:00
|
|
|
%build
|
2019-09-02 06:56:58 +00:00
|
|
|
%mvn_file : commons-compress %{name}
|
2013-01-08 15:47:53 +00:00
|
|
|
%mvn_alias : commons:
|
2019-02-14 16:52:30 +00:00
|
|
|
%mvn_build -- -Dcommons.osgi.symbolicName=org.apache.commons.compress
|
2010-05-11 07:44:54 +00:00
|
|
|
|
|
|
|
%install
|
2013-01-08 15:47:53 +00:00
|
|
|
%mvn_install
|
2010-05-11 07:44:54 +00:00
|
|
|
|
2013-01-08 15:47:53 +00:00
|
|
|
%files -f .mfiles
|
2010-05-11 07:44:54 +00:00
|
|
|
%doc LICENSE.txt NOTICE.txt
|
|
|
|
|
2013-01-08 15:47:53 +00:00
|
|
|
%files javadoc -f .mfiles-javadoc
|
2011-08-04 08:56:36 +00:00
|
|
|
%doc LICENSE.txt NOTICE.txt
|
2011-08-04 08:43:12 +00:00
|
|
|
|
2010-05-11 07:44:54 +00:00
|
|
|
%changelog
|
2021-05-17 13:49:26 +00:00
|
|
|
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.20-6
|
|
|
|
- Bootstrap build
|
2021-05-17 16:01:41 +00:00
|
|
|
- Non-bootstrap build
|
2021-05-17 13:49:26 +00:00
|
|
|
|
2021-01-26 00:13:38 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.20-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-07-27 12:09:47 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.20-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-16 10:24:42 +00:00
|
|
|
* Thu Jul 16 2020 Mat Booth <mat.booth@redhat.com> - 1.20-3
|
|
|
|
- Ensure Java 8 level bytecode when built on Java 11
|
|
|
|
|
2020-07-10 13:20:03 +00:00
|
|
|
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 1.20-2
|
|
|
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
|
|
|
|
2020-03-04 08:30:16 +00:00
|
|
|
* Wed Mar 04 2020 Marian Koncek <mkoncek@redhat.com> - 1.20-1
|
|
|
|
- Update to upstream version 1.20
|
|
|
|
|
2020-03-02 10:52:28 +00:00
|
|
|
* Mon Mar 02 2020 Fabio Valentini <decathorpe@gmail.com> - 1.20-1
|
|
|
|
- Update to version 1.20.
|
|
|
|
|
2020-01-28 11:43:10 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.19-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-11-05 16:29:27 +00:00
|
|
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.19-2
|
|
|
|
- Mass rebuild for javapackages-tools 201902
|
|
|
|
|
2019-10-04 10:37:31 +00:00
|
|
|
* Fri Oct 04 2019 Fabio Valentini <decathorpe@gmail.com> - 1.19-1
|
|
|
|
- Update to version 1.19.
|
|
|
|
|
2019-09-18 11:08:38 +00:00
|
|
|
* Wed Sep 18 2019 Fabio Valentini <decathorpe@gmail.com> - 1.18-7
|
|
|
|
- Migrate from the obsolete felix-osgi-core to osgi-core.
|
|
|
|
|
2019-09-02 06:56:58 +00:00
|
|
|
* Mon Sep 02 2019 Marian Koncek <mkoncek@redhat.com> - 1.19-1
|
|
|
|
- Update to upstream version 1.19
|
|
|
|
|
2019-08-14 13:59:27 +00:00
|
|
|
* Wed Aug 14 2019 Fabio Valentini <decathorpe@gmail.com> - 1.18-6
|
|
|
|
- Remove build-dependency on powermock
|
|
|
|
|
2019-07-24 18:01:43 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.18-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-24 15:00:16 +00:00
|
|
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.18-6
|
|
|
|
- Mass rebuild for javapackages-tools 201901
|
|
|
|
|
2019-05-24 14:35:48 +00:00
|
|
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.18-5
|
|
|
|
- Remove build-dependency on powermock
|
|
|
|
|
2019-02-14 16:52:30 +00:00
|
|
|
* Thu Feb 14 2019 Mat Booth <mat.booth@redhat.com> - 1.18-4
|
|
|
|
- Rebuild to regenerate OSGi metadata
|
|
|
|
|
2019-02-07 15:00:38 +00:00
|
|
|
* Thu Feb 07 2019 Mat Booth <mat.booth@redhat.com> - 1.18-3
|
|
|
|
- Fix test suite build against Mockito 2.x
|
|
|
|
|
2019-01-31 13:26:04 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.18-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-10-05 07:29:37 +00:00
|
|
|
* Fri Oct 05 2018 Marian Koncek <mkoncek@redhat.com> - 1.18-1
|
|
|
|
- Update to upstream version 1.18
|
|
|
|
- Resolves: CVE-2018-11771
|
|
|
|
|
2018-07-12 20:18:08 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.17-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-05 08:40:40 +00:00
|
|
|
* Tue Jun 05 2018 Michael Simacek <msimacek@redhat.com> - 1.17-1
|
|
|
|
- Update to upstream version 1.17
|
|
|
|
|
2018-02-12 10:02:38 +00:00
|
|
|
* Mon Feb 12 2018 Michael Simacek <msimacek@redhat.com> - 1.16.1-1
|
|
|
|
- Update to upstream version 1.16.1
|
|
|
|
|
2018-02-07 02:25:16 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-10-22 10:42:47 +00:00
|
|
|
* Sun Oct 22 2017 Michael Simacek <msimacek@redhat.com> - 1.15-1
|
|
|
|
- Update to upstream version 1.15
|
|
|
|
|
2017-07-26 02:57:43 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.14-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-14 12:52:16 +00:00
|
|
|
* Wed Jun 14 2017 Roman Vais <rvais@redhat.com> - 1.14-1
|
|
|
|
- Update to upstream version 1.14
|
|
|
|
- Remove Brotli support, it is not packaged for fedora
|
|
|
|
|
2017-02-10 06:03:01 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.13-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-02 07:38:36 +00:00
|
|
|
* Mon Jan 02 2017 Michael Simacek <msimacek@redhat.com> - 1.13-1
|
|
|
|
- Update to upstream version 1.13
|
|
|
|
|
2016-06-22 10:21:53 +00:00
|
|
|
* Wed Jun 22 2016 Michael Simacek <msimacek@redhat.com> - 1.12-1
|
|
|
|
- Update to upstream version 1.12
|
|
|
|
|
2016-05-02 11:33:34 +00:00
|
|
|
* Mon May 02 2016 Michael Simacek <msimacek@redhat.com> - 1.11-1
|
|
|
|
- Update to upstream version 1.11
|
|
|
|
|
2016-02-03 16:16:08 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.10-0.3.svn1684406
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-17 00:00:58 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-0.2.svn1684406
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-09 12:48:57 +00:00
|
|
|
* Tue Jun 9 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.10-0.1.svn1684406
|
|
|
|
- Update to latest upstream snapshot
|
|
|
|
|
2014-10-14 06:55:02 +00:00
|
|
|
* Tue Oct 14 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.9-2
|
|
|
|
- Remove legacy Obsoletes/Provides for jakarta-commons
|
|
|
|
|
2014-10-13 07:10:13 +00:00
|
|
|
* Mon Oct 13 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.9-1
|
|
|
|
- Update to upstream version 1.9
|
|
|
|
|
2014-07-30 14:38:43 +00:00
|
|
|
* Wed Jul 30 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.8.1-3
|
|
|
|
- Fix build-requires on apache-commons-parent
|
|
|
|
|
2014-06-07 00:52:31 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-23 12:25:41 +00:00
|
|
|
* Fri May 23 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.8.1-1
|
|
|
|
- Update to upstream version 1.8.1
|
|
|
|
|
2014-03-17 14:11:43 +00:00
|
|
|
* Mon Mar 17 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.8-2
|
|
|
|
- Remove dependency on maven-scm-publish-plugin
|
|
|
|
|
2014-03-14 13:20:17 +00:00
|
|
|
* Fri Mar 14 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.8-1
|
|
|
|
- Update to upstream version 1.8
|
|
|
|
|
2014-03-04 08:04:57 +00:00
|
|
|
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 1.7-2
|
|
|
|
- Use Requires: java-headless rebuild (#1067528)
|
|
|
|
|
2014-01-20 08:02:37 +00:00
|
|
|
* Mon Jan 20 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.7-1
|
|
|
|
- Update to upstream version 1.7
|
|
|
|
|
2013-10-29 09:37:29 +00:00
|
|
|
* Tue Oct 29 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.6-1
|
|
|
|
- Update to upstream version 1.6
|
|
|
|
|
2013-08-03 00:58:36 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-03-14 14:48:58 +00:00
|
|
|
* Thu Mar 14 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.5-1
|
|
|
|
- Update to upstream version 1.5
|
|
|
|
|
2013-02-13 16:41:44 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-02-06 18:29:56 +00:00
|
|
|
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 1.4.1-5
|
|
|
|
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
|
|
|
|
- Replace maven BuildRequires with maven-local
|
|
|
|
|
2013-01-09 15:59:36 +00:00
|
|
|
* Wed Jan 9 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.4.1-4
|
|
|
|
- Bump release tag
|
|
|
|
|
2013-01-08 15:47:53 +00:00
|
|
|
* Tue Jan 8 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.4.1-3
|
|
|
|
- Build with xmvn
|
|
|
|
- Update to current packaging guidelines
|
|
|
|
|
2012-07-18 16:11:27 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-05-24 18:03:08 +00:00
|
|
|
* Thu May 24 2012 Sandro Mathys <red at fedoraproject.org> - 1.4.1-1
|
|
|
|
- Updated to 1.4.1
|
|
|
|
- Fixes CVE-2012-2098 Low: Denial of Service
|
|
|
|
|
2012-04-27 10:23:57 +00:00
|
|
|
* Fri Apr 27 2012 Sandro Mathys <red at fedoraproject.org> - 1.4-1
|
|
|
|
- Updated to 1.4
|
|
|
|
|
2012-01-12 21:21:23 +00:00
|
|
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-11-01 12:54:01 +00:00
|
|
|
* Tue Nov 01 2011 Sandro Mathys <red at fedoraproject.org> - 1.3-1
|
|
|
|
- Updated to 1.3
|
|
|
|
|
2011-08-04 08:56:36 +00:00
|
|
|
* Thu Aug 04 2011 Sandro Mathys <red at fedoraproject.org> - 1.2-2
|
|
|
|
- Fixing mistake where different versions of the spec file got mixed up
|
2011-04-16 07:54:39 +00:00
|
|
|
|
2011-08-04 08:56:36 +00:00
|
|
|
* Thu Aug 04 2011 Sandro Mathys <red at fedoraproject.org> - 1.2-1
|
|
|
|
- Updated to 1.2
|
|
|
|
|
|
|
|
* Sat Apr 16 2011 Chris Spike <spike@fedoraproject.org> 1.1-1
|
|
|
|
- Updated to 1.1
|
|
|
|
- Adapted to current java packaging guidelines
|
|
|
|
|
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
2011-02-08 01:25:30 +00:00
|
|
|
|
2010-07-11 00:30:01 +00:00
|
|
|
* Sun Jul 11 2010 Sandro Mathys <red at fedoraproject.org> - 1.0-8
|
|
|
|
- Fixed the Maven depmap line by replacing org.apache.maven by org.apache.commons
|
|
|
|
|
2010-05-31 21:36:39 +00:00
|
|
|
* Mon May 31 2010 Sandro Mathys <red at fedoraproject.org> - 1.0-7
|
|
|
|
- Fixed regression with missing Provides/Obsoletes for javadocs
|
|
|
|
- Fixed changelog format
|
|
|
|
|
2010-05-23 21:51:03 +00:00
|
|
|
* Sun May 23 2010 Sandro Mathys <red at fedoraproject.org> - 1.0-6
|
2010-05-31 21:36:39 +00:00
|
|
|
- Fixed Maven depmap to use commons-compress
|
2010-05-13 22:06:36 +00:00
|
|
|
|
2010-05-23 21:51:03 +00:00
|
|
|
* Thu May 13 2010 Sandro Mathys <red at fedoraproject.org> - 1.0-5
|
|
|
|
- Added missing Provides/Obsoletes for javadocs
|
|
|
|
|
2010-05-11 07:44:54 +00:00
|
|
|
* Mon May 10 2010 Sandro Mathys <red at fedoraproject.org> - 1.0-4
|
2010-05-31 21:36:39 +00:00
|
|
|
- Cleared some problems after the review
|
2010-05-11 07:44:54 +00:00
|
|
|
|
|
|
|
* Thu May 06 2010 Sandro Mathys <red at fedoraproject.org> - 1.0-3
|
|
|
|
- Now using maven2 (mvn-jpp) instead of directly calling javac & co
|
|
|
|
|
|
|
|
* Tue May 04 2010 Sandro Mathys <red at fedoraproject.org> - 1.0-2
|
|
|
|
- Renamed from jakarta-commons-compress
|