commit
546712af9d
@ -0,0 +1 @@
|
|||||||
|
SOURCES/plexus-archiver-4.9.1.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
213aeb9b429118bb2c5daca98b410fdad6f3e77b SOURCES/plexus-archiver-4.9.1.tar.gz
|
@ -0,0 +1,56 @@
|
|||||||
|
From b69df21577ded31859da039434bab79cb7c5b5e6 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mikolaj Izdebski <mizdebsk@redhat.com>
|
||||||
|
Date: Sat, 23 Sep 2017 11:43:45 +0200
|
||||||
|
Subject: [PATCH] Remove support for snappy
|
||||||
|
|
||||||
|
Forwarded: not-needed
|
||||||
|
---
|
||||||
|
.../java/org/codehaus/plexus/archiver/tar/TarArchiver.java | 3 +--
|
||||||
|
.../java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java | 3 +--
|
||||||
|
2 files changed, 2 insertions(+), 4 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java b/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java
|
||||||
|
index cae07804..7fc30ba1 100644
|
||||||
|
--- a/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java
|
||||||
|
+++ b/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java
|
||||||
|
@@ -42,7 +42,6 @@
|
||||||
|
import org.codehaus.plexus.components.io.resources.PlexusIoResource;
|
||||||
|
import org.codehaus.plexus.util.IOUtil;
|
||||||
|
import org.codehaus.plexus.util.StringUtils;
|
||||||
|
-import org.iq80.snappy.SnappyOutputStream;
|
||||||
|
|
||||||
|
import static org.codehaus.plexus.archiver.util.Streams.bufferedOutputStream;
|
||||||
|
|
||||||
|
@@ -426,7 +425,7 @@ private OutputStream compress(TarCompressionMethod tarCompressionMethod, final O
|
||||||
|
} else if (TarCompressionMethod.bzip2.equals(tarCompressionMethod)) {
|
||||||
|
return new BZip2CompressorOutputStream(bufferedOutputStream(ostream));
|
||||||
|
} else if (TarCompressionMethod.snappy.equals(tarCompressionMethod)) {
|
||||||
|
- return new SnappyOutputStream(bufferedOutputStream(ostream));
|
||||||
|
+ throw new UnsupportedOperationException("This version of plexus-archiver does not upport snappy compression");
|
||||||
|
} else if (TarCompressionMethod.xz.equals(tarCompressionMethod)) {
|
||||||
|
return new XZCompressorOutputStream(bufferedOutputStream(ostream));
|
||||||
|
} else if (TarCompressionMethod.zstd.equals(tarCompressionMethod)) {
|
||||||
|
diff --git a/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java b/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java
|
||||||
|
index 1b0b7950..52cae0c9 100644
|
||||||
|
--- a/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java
|
||||||
|
+++ b/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java
|
||||||
|
@@ -32,7 +32,6 @@
|
||||||
|
import org.codehaus.plexus.archiver.ArchiverException;
|
||||||
|
import org.codehaus.plexus.archiver.util.Streams;
|
||||||
|
import org.codehaus.plexus.components.io.filemappers.FileMapper;
|
||||||
|
-import org.iq80.snappy.SnappyFramedInputStream;
|
||||||
|
|
||||||
|
import static org.codehaus.plexus.archiver.util.Streams.bufferedInputStream;
|
||||||
|
import static org.codehaus.plexus.archiver.util.Streams.fileInputStream;
|
||||||
|
@@ -137,7 +136,7 @@ private InputStream decompress(UntarCompressionMethod compression, final File fi
|
||||||
|
} else if (compression == UntarCompressionMethod.BZIP2) {
|
||||||
|
return new BZip2CompressorInputStream(istream);
|
||||||
|
} else if (compression == UntarCompressionMethod.SNAPPY) {
|
||||||
|
- return new SnappyFramedInputStream(istream, true);
|
||||||
|
+ throw new UnsupportedOperationException("This version of plexus-archiver does not upport snappy compression");
|
||||||
|
} else if (compression == UntarCompressionMethod.XZ) {
|
||||||
|
return new XZCompressorInputStream(istream);
|
||||||
|
} else if (compression == UntarCompressionMethod.ZSTD) {
|
||||||
|
--
|
||||||
|
2.41.0
|
||||||
|
|
@ -0,0 +1,56 @@
|
|||||||
|
From 01dc5709a908158ca5f59e4312df772f81d2fef8 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Mari=C3=A1n=20Kon=C4=8Dek?= <marian.koncek@mailbox.org>
|
||||||
|
Date: Fri, 11 Aug 2023 14:04:26 +0200
|
||||||
|
Subject: [PATCH] Remove support for zstd
|
||||||
|
|
||||||
|
Forwarded: not-needed
|
||||||
|
---
|
||||||
|
.../java/org/codehaus/plexus/archiver/tar/TarArchiver.java | 3 +--
|
||||||
|
.../java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java | 3 +--
|
||||||
|
2 files changed, 2 insertions(+), 4 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java b/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java
|
||||||
|
index 7fc30ba1..68433734 100644
|
||||||
|
--- a/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java
|
||||||
|
+++ b/src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java
|
||||||
|
@@ -29,7 +29,6 @@
|
||||||
|
import org.apache.commons.compress.archivers.tar.TarArchiveOutputStream;
|
||||||
|
import org.apache.commons.compress.compressors.bzip2.BZip2CompressorOutputStream;
|
||||||
|
import org.apache.commons.compress.compressors.xz.XZCompressorOutputStream;
|
||||||
|
-import org.apache.commons.compress.compressors.zstandard.ZstdCompressorOutputStream;
|
||||||
|
import org.codehaus.plexus.archiver.AbstractArchiver;
|
||||||
|
import org.codehaus.plexus.archiver.ArchiveEntry;
|
||||||
|
import org.codehaus.plexus.archiver.ArchiverException;
|
||||||
|
@@ -429,7 +428,7 @@ private OutputStream compress(TarCompressionMethod tarCompressionMethod, final O
|
||||||
|
} else if (TarCompressionMethod.xz.equals(tarCompressionMethod)) {
|
||||||
|
return new XZCompressorOutputStream(bufferedOutputStream(ostream));
|
||||||
|
} else if (TarCompressionMethod.zstd.equals(tarCompressionMethod)) {
|
||||||
|
- return new ZstdCompressorOutputStream(bufferedOutputStream(ostream));
|
||||||
|
+ throw new UnsupportedOperationException("This version of plexus-archiver does not upport zstd compression");
|
||||||
|
}
|
||||||
|
|
||||||
|
return ostream;
|
||||||
|
diff --git a/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java b/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java
|
||||||
|
index 52cae0c9..4c0e70c1 100644
|
||||||
|
--- a/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java
|
||||||
|
+++ b/src/main/java/org/codehaus/plexus/archiver/tar/TarUnArchiver.java
|
||||||
|
@@ -27,7 +27,6 @@
|
||||||
|
import org.apache.commons.compress.archivers.tar.TarArchiveInputStream;
|
||||||
|
import org.apache.commons.compress.compressors.bzip2.BZip2CompressorInputStream;
|
||||||
|
import org.apache.commons.compress.compressors.xz.XZCompressorInputStream;
|
||||||
|
-import org.apache.commons.compress.compressors.zstandard.ZstdCompressorInputStream;
|
||||||
|
import org.codehaus.plexus.archiver.AbstractUnArchiver;
|
||||||
|
import org.codehaus.plexus.archiver.ArchiverException;
|
||||||
|
import org.codehaus.plexus.archiver.util.Streams;
|
||||||
|
@@ -140,7 +139,7 @@ private InputStream decompress(UntarCompressionMethod compression, final File fi
|
||||||
|
} else if (compression == UntarCompressionMethod.XZ) {
|
||||||
|
return new XZCompressorInputStream(istream);
|
||||||
|
} else if (compression == UntarCompressionMethod.ZSTD) {
|
||||||
|
- return new ZstdCompressorInputStream(istream);
|
||||||
|
+ throw new UnsupportedOperationException("This version of plexus-archiver does not upport zstd compression");
|
||||||
|
}
|
||||||
|
return istream;
|
||||||
|
}
|
||||||
|
--
|
||||||
|
2.41.0
|
||||||
|
|
@ -0,0 +1,404 @@
|
|||||||
|
%bcond_with bootstrap
|
||||||
|
|
||||||
|
Name: plexus-archiver
|
||||||
|
Version: 4.9.1
|
||||||
|
Release: 3%{?dist}
|
||||||
|
Summary: Plexus Archiver Component
|
||||||
|
License: Apache-2.0
|
||||||
|
URL: https://codehaus-plexus.github.io/plexus-archiver
|
||||||
|
BuildArch: noarch
|
||||||
|
ExclusiveArch: %{java_arches} noarch
|
||||||
|
|
||||||
|
Source0: https://github.com/codehaus-plexus/plexus-archiver/archive/plexus-archiver-%{version}.tar.gz
|
||||||
|
|
||||||
|
Patch1: 0001-Remove-support-for-snappy.patch
|
||||||
|
Patch2: 0002-Remove-support-for-zstd.patch
|
||||||
|
|
||||||
|
%if %{with bootstrap}
|
||||||
|
BuildRequires: javapackages-bootstrap
|
||||||
|
%else
|
||||||
|
BuildRequires: maven-local
|
||||||
|
BuildRequires: mvn(com.google.code.findbugs:jsr305)
|
||||||
|
BuildRequires: mvn(com.google.inject:guice)
|
||||||
|
BuildRequires: mvn(commons-io:commons-io)
|
||||||
|
BuildRequires: mvn(javax.inject:javax.inject)
|
||||||
|
BuildRequires: mvn(org.apache.commons:commons-compress)
|
||||||
|
BuildRequires: mvn(org.assertj:assertj-core)
|
||||||
|
BuildRequires: mvn(org.codehaus.plexus:plexus-io)
|
||||||
|
BuildRequires: mvn(org.codehaus.plexus:plexus-utils)
|
||||||
|
BuildRequires: mvn(org.codehaus.plexus:plexus:pom:)
|
||||||
|
BuildRequires: mvn(org.eclipse.sisu:org.eclipse.sisu.inject)
|
||||||
|
BuildRequires: mvn(org.eclipse.sisu:sisu-maven-plugin)
|
||||||
|
BuildRequires: mvn(org.junit.jupiter:junit-jupiter-api)
|
||||||
|
BuildRequires: mvn(org.junit.jupiter:junit-jupiter-params)
|
||||||
|
BuildRequires: mvn(org.slf4j:slf4j-api)
|
||||||
|
BuildRequires: mvn(org.slf4j:slf4j-simple)
|
||||||
|
BuildRequires: mvn(org.tukaani:xz)
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description
|
||||||
|
The Plexus project seeks to create end-to-end developer tools for
|
||||||
|
writing applications. At the core is the container, which can be
|
||||||
|
embedded or for a full scale application server. There are many
|
||||||
|
reusable components for hibernate, form processing, jndi, i18n,
|
||||||
|
velocity, etc. Plexus also includes an application server which
|
||||||
|
is like a J2EE application server, without all the baggage.
|
||||||
|
|
||||||
|
%package javadoc
|
||||||
|
Summary: Javadoc for %{name}
|
||||||
|
|
||||||
|
%description javadoc
|
||||||
|
Javadoc for %{name}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n %{name}-%{name}-%{version}
|
||||||
|
%patch 1 -p1
|
||||||
|
%patch 2 -p1
|
||||||
|
|
||||||
|
%mvn_file :%{name} plexus/archiver
|
||||||
|
|
||||||
|
%pom_remove_dep org.iq80.snappy:snappy
|
||||||
|
rm -r src/main/java/org/codehaus/plexus/archiver/snappy
|
||||||
|
rm -r src/test/java/org/codehaus/plexus/archiver/snappy
|
||||||
|
rm src/main/java/org/codehaus/plexus/archiver/tar/SnappyTarFile.java
|
||||||
|
rm src/main/java/org/codehaus/plexus/archiver/tar/PlexusIoTarSnappyFileResourceCollection.java
|
||||||
|
rm src/test/java/org/codehaus/plexus/archiver/tar/TarSnappyUnArchiverTest.java
|
||||||
|
|
||||||
|
%pom_remove_dep com.github.luben:zstd-jni
|
||||||
|
rm -r src/main/java/org/codehaus/plexus/archiver/zstd
|
||||||
|
rm -r src/test/java/org/codehaus/plexus/archiver/zstd
|
||||||
|
rm src/main/java/org/codehaus/plexus/archiver/tar/ZstdTarFile.java
|
||||||
|
rm src/main/java/org/codehaus/plexus/archiver/tar/PlexusIoTarZstdFileResourceCollection.java
|
||||||
|
rm src/main/java/org/codehaus/plexus/archiver/tar/PlexusIoTZstdFileResourceCollection.java
|
||||||
|
rm src/test/java/org/codehaus/plexus/archiver/tar/TarZstdUnArchiverTest.java
|
||||||
|
|
||||||
|
# Fails due to previously removed compressors
|
||||||
|
rm src/test/java/org/codehaus/plexus/archiver/manager/ArchiverManagerTest.java
|
||||||
|
|
||||||
|
%build
|
||||||
|
%mvn_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%mvn_install
|
||||||
|
|
||||||
|
%files -f .mfiles
|
||||||
|
%license LICENSE
|
||||||
|
|
||||||
|
%files javadoc -f .mfiles-javadoc
|
||||||
|
%license LICENSE
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Oct 25 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 4.9.1-3
|
||||||
|
- Rebuilt for MSVSphere 10
|
||||||
|
|
||||||
|
* Thu Aug 01 2024 Troy Dawson <tdawson@redhat.com> - 4.9.1-3
|
||||||
|
- Bump release for Aug 2024 java mass rebuild
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 4.9.1-2
|
||||||
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
* Thu Feb 01 2024 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.9.1-1
|
||||||
|
- Update to upstream version 4.9.1
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.9.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.9.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 04 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.9.0-1
|
||||||
|
- Update to upstream version 4.9.0
|
||||||
|
|
||||||
|
* Fri Sep 01 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.8.0-2
|
||||||
|
- Rebuild
|
||||||
|
|
||||||
|
* Thu Aug 17 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.8.0-1
|
||||||
|
- Update to upstream version 4.8.0
|
||||||
|
|
||||||
|
* Thu Aug 17 2023 Marian Koncek <mkoncek@redhat.com> - 4.7.1-1
|
||||||
|
- Update to upstream version 4.7.1
|
||||||
|
|
||||||
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.7-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.7-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.7-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Apr 24 2022 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.7-1
|
||||||
|
- Update to upstream version 4.2.7
|
||||||
|
|
||||||
|
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 4.2.4-5
|
||||||
|
- Rebuilt for java-17-openjdk as system jdk
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.4-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.4-3
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.4-2
|
||||||
|
- Bootstrap build
|
||||||
|
- Non-bootstrap build
|
||||||
|
|
||||||
|
* Fri Feb 12 2021 Marian Koncek <mkoncek@redhat.com> - 4.2.4-1
|
||||||
|
- Update to upstream version 4.2.4
|
||||||
|
|
||||||
|
* Sat Jan 30 2021 Fabio Valentini <decathorpe@gmail.com> - 0:4.2.4-1
|
||||||
|
- Update to version 4.2.4.
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0:4.2.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Dec 4 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.3-1
|
||||||
|
- Update to upstream version 4.2.3
|
||||||
|
|
||||||
|
* Sat Oct 24 2020 Fabio Valentini <decathorpe@gmail.com> - 0:4.2.3-1
|
||||||
|
- Update to version 4.2.3.
|
||||||
|
|
||||||
|
* Mon Aug 03 2020 Marian Koncek <mkoncek@redhat.com> - 4.2.2-1
|
||||||
|
- Update to upstream version 4.2.2
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:4.2.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 0:4.2.2-2
|
||||||
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||||||
|
|
||||||
|
* Mon Mar 02 2020 Fabio Valentini <decathorpe@gmail.com> - 0:4.2.2-1
|
||||||
|
- Update to version 4.2.2.
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:4.2.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Nov 20 2019 Marian Koncek <mkoncek@redhat.com> - 4.2.1-1
|
||||||
|
- Update to upstream version 4.2.1
|
||||||
|
|
||||||
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.0-2
|
||||||
|
- Mass rebuild for javapackages-tools 201902
|
||||||
|
|
||||||
|
* Mon Oct 28 2019 Fabio Valentini <decathorpe@gmail.com> - 0:4.2.1-1
|
||||||
|
- Update to version 4.2.1.
|
||||||
|
|
||||||
|
* Thu Oct 24 2019 Fabio Valentini <decathorpe@gmail.com> - 0:4.2.0-1
|
||||||
|
- Update to version 4.2.0.
|
||||||
|
|
||||||
|
* Wed Oct 23 2019 Marian Koncek <mkoncek@redhat.com> - 4.2.0-1
|
||||||
|
- Update to upstream version 4.2.0
|
||||||
|
|
||||||
|
* Wed Aug 07 2019 Marian Koncek <mkoncek@redhat.com> - 0:4.1.0-1
|
||||||
|
- Update to upstream version 4.1.0
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:3.6.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.1.0-2
|
||||||
|
- Mass rebuild for javapackages-tools 201901
|
||||||
|
|
||||||
|
* Wed Feb 27 2019 Marian Koncek <mkoncek@redhat.com> - 0:4.1.0-1
|
||||||
|
- Update to upstream version 4.1.0
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:3.6.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:3.6.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed May 09 2018 Michael Simacek <msimacek@redhat.com> - 0:3.6.0-1
|
||||||
|
- Update to upstream version 3.6.0
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:3.5-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Sep 23 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.5-4
|
||||||
|
- Add conditional patch for removing snappy support
|
||||||
|
|
||||||
|
* Sat Sep 23 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.5-3
|
||||||
|
- Remove dependency on snappy when building without it
|
||||||
|
|
||||||
|
* Sat Sep 23 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.5-2
|
||||||
|
- Conditionally allow building without snappy
|
||||||
|
|
||||||
|
* Mon Sep 11 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.5-1
|
||||||
|
- Update to upstream version 3.5
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:3.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:3.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 20 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.4-1
|
||||||
|
- Update to upstream version 3.4
|
||||||
|
|
||||||
|
* Mon May 30 2016 Michael Simacek <msimacek@redhat.com> - 0:3.3-1
|
||||||
|
- Update to upstream version 3.3
|
||||||
|
|
||||||
|
* Tue Apr 19 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.1.1-1
|
||||||
|
- Update to upstream version 3.1.1
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0:3.0.1-0.3.gitdc873a4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 16 2015 Mat Booth <mat.booth@redhat.com> - 0:3.0.1-0.2.gitdc873a4
|
||||||
|
- Patch out use of ParallelScatterZipCreator
|
||||||
|
|
||||||
|
* Tue Jun 9 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.0.1-0.1.gitdc873a4
|
||||||
|
- Update to latest 3.0.1 upstream snapshot
|
||||||
|
|
||||||
|
* Tue Jun 9 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.0-4
|
||||||
|
- Backport overloaded Charset methods from 2.x
|
||||||
|
|
||||||
|
* Wed Apr 1 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:3.0-3
|
||||||
|
- Update upstream URL
|
||||||
|
|
||||||
|
* Thu Mar 26 2015 Michael Simacek <msimacek@redhat.com> - 0:3.0-2
|
||||||
|
- Remove temporary bootstrap part
|
||||||
|
|
||||||
|
* Tue Feb 17 2015 Michael Simacek <msimacek@redhat.com> - 0:3.0-1
|
||||||
|
- Update to upstream version 3.0
|
||||||
|
|
||||||
|
* Mon Nov 3 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.8.2-1
|
||||||
|
- Update to upstream version 2.8.2
|
||||||
|
|
||||||
|
* Fri Oct 24 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.8-1
|
||||||
|
- Update to upstream version 2.8
|
||||||
|
|
||||||
|
* Fri Oct 24 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.1-1
|
||||||
|
- Update to upstream version 2.7.1
|
||||||
|
|
||||||
|
* Mon Oct 13 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7-1
|
||||||
|
- Update to upstream version 2.7
|
||||||
|
|
||||||
|
* Fri Oct 3 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.6.3-1
|
||||||
|
- Update to upstream version 2.6.3
|
||||||
|
|
||||||
|
* Wed Oct 1 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.6.2-1
|
||||||
|
- Update to upstream version 2.6.2
|
||||||
|
|
||||||
|
* Mon Sep 29 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.6.1-1
|
||||||
|
- Update to upstream version 2.6.1
|
||||||
|
- Remove patch for PLXCOMP-64 and PLXCOMP-113
|
||||||
|
|
||||||
|
* Tue Sep 2 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.4-4
|
||||||
|
- Add patch for extracting symbolic links
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.4.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.4.4-2
|
||||||
|
- Use Requires: java-headless rebuild (#1067528)
|
||||||
|
|
||||||
|
* Tue Dec 3 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.4-1
|
||||||
|
- Update to upstream version 2.4.4
|
||||||
|
|
||||||
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.4.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 13 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.4.2-2
|
||||||
|
- Update to latest packaging guidelines
|
||||||
|
- Remove MIT license (only applies to test cases not binary rpm)
|
||||||
|
|
||||||
|
* Fri May 24 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.4.2-1
|
||||||
|
- Update to upstream version 2.4.2
|
||||||
|
- Remove patch for CVE-2012-2098 (accepted upstream)
|
||||||
|
|
||||||
|
* Thu Apr 11 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.3-1
|
||||||
|
- Update to upstream version 2.3
|
||||||
|
- Use apache-commons-compress for bzip2 (de)compression
|
||||||
|
- Resolves: CVE-2012-2098
|
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.2-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 0:2.2-5
|
||||||
|
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
|
||||||
|
- Replace maven BuildRequires with maven-local
|
||||||
|
|
||||||
|
* Fri Nov 23 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.2-4
|
||||||
|
- Add ASL 2.0 license text to packages
|
||||||
|
|
||||||
|
* Thu Nov 22 2012 Jaromir Capik <jcapik@redhat.com> - 0:2.2-3
|
||||||
|
- Migration to plexus-containers-container-default
|
||||||
|
|
||||||
|
* Mon Nov 19 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.2-2
|
||||||
|
- Fix source URL to be stable
|
||||||
|
|
||||||
|
* Wed Oct 10 2012 Alexander Kurtakov <akurtako@redhat.com> 0:2.2-1
|
||||||
|
- Update to upstream 2.2.
|
||||||
|
|
||||||
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.1.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Apr 18 2012 Alexander Kurtakov <akurtako@redhat.com> 0:2.1.1-1
|
||||||
|
- Update to latest upstream release.
|
||||||
|
|
||||||
|
* Wed Feb 15 2012 Alexander Kurtakov <akurtako@redhat.com> 0:2.1-1
|
||||||
|
- Update to latest upstream release.
|
||||||
|
|
||||||
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.0.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Sep 8 2011 Alexander Kurtakov <akurtako@redhat.com> 0:2.0.1-2
|
||||||
|
- BR maven-surefire-provider-junit4.
|
||||||
|
|
||||||
|
* Thu Sep 8 2011 Alexander Kurtakov <akurtako@redhat.com> 0:2.0.1-1
|
||||||
|
- Update to 2.0.1 version.
|
||||||
|
|
||||||
|
* Wed Jul 27 2011 Jaromir Capik <jcapik@redhat.com> - 0:1.2-2
|
||||||
|
- Removal of plexus-maven-plugin dependency (not needed)
|
||||||
|
- Minor spec file changes according to the latest guidelines
|
||||||
|
|
||||||
|
* Tue May 17 2011 Alexander Kurtakov <akurtako@redhat.com> 0:1.2-1
|
||||||
|
- Update to 1.2.
|
||||||
|
|
||||||
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Oct 6 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.1-1
|
||||||
|
- Update to 1.1.
|
||||||
|
|
||||||
|
* Mon Dec 28 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.0-0.4.a12.4
|
||||||
|
- Install depmap and pom to override common poms.
|
||||||
|
|
||||||
|
* Thu Dec 24 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.0-0.4.a12.3
|
||||||
|
- Really ignore test failures.
|
||||||
|
|
||||||
|
* Thu Dec 24 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.0-0.4.a12.2
|
||||||
|
- Ignore test failures.
|
||||||
|
|
||||||
|
* Wed Dec 23 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.0-0.4.a12.1
|
||||||
|
- Update to alpha 12.
|
||||||
|
|
||||||
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.0-0.4.a7.1.2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.0-0.3.a7.1.2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0:1.0-0.2.a7.1.2
|
||||||
|
- drop repotag
|
||||||
|
- fix license tag
|
||||||
|
|
||||||
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0:1.0-0.2.a7.1jpp.1
|
||||||
|
- Autorebuild for GCC 4.3
|
||||||
|
|
||||||
|
* Fri Jan 04 2008 Deepak Bhole <dbhole@redhat.com> 1.0-0.1.a7.1jpp.1
|
||||||
|
- Update to alpha 7
|
||||||
|
|
||||||
|
* Thu Feb 15 2007 Matt Wrigne <mwringe@redhat.com> - 0:1.0-0.1.a6.1jpp.1
|
||||||
|
- Fix rpmlint issues
|
||||||
|
- Version package to new jpp versioning standards
|
||||||
|
- Remove javadoc post and postun sections
|
||||||
|
|
||||||
|
* Mon Jun 19 2006 Deepak Bhole <dbhole@redhat.com> - 0:1.0-0.a6.1jpp
|
||||||
|
- Upgrade to 1.0-alpha-6
|
||||||
|
|
||||||
|
* Wed May 31 2006 Ralph Apel <r.apel at r-apel.de> - 0:1.0-0.a3.2jpp
|
||||||
|
- First JPP-1.7 release
|
||||||
|
|
||||||
|
* Mon Nov 07 2005 Ralph Apel <r.apel at r-apel.de> - 0:1.0-0.a3.1jpp
|
||||||
|
- First JPackage build
|
Loading…
Reference in new issue